doc: update users.txt
[pspp] / ChangeLog
1 2010-04-06  Giuseppe Scrivano <gscrivano@gnu.org>
2
3         doc: update users.txt
4         * users.txt: Add gcal.
5
6 2010-04-06  Jim Meyering  <meyering@redhat.com>
7
8         init.sh: simply unset TMPDIR rather than risking env -i
9         * tests/init.sh (mktempd_): Using env -i is rather harsh, and
10         although it probably works fine on all Unix-based systems, some
11         systems (Cygwin?) cannot tolerate a totally cleared environment.
12         Suggestion from Eric Blake.
13
14 2010-04-06  Jim Meyering  <meyering@redhat.com>
15
16         init.sh: portability fix: use env's POSIX-specified -i option not -u
17         * tests/init.sh (mktempd_): Use env -i and set PATH explicitly rather
18         than unportable env -u.  Solaris 5.11's env lacks support for -u.
19
20 2010-04-05  Bruno Haible  <bruno@clisp.org>
21
22         btowc: Work around Cygwin 1.7.2 bug.
23         * m4/btowc.m4 (gl_FUNC_BTOWC): Set REPLACE_BTOWC to 1 if the function
24         does not map NUL to 0.
25         * doc/posix-functions/btowc.texi: Mention the Cygwin bug.
26
27 2010-04-05  Bruno Haible  <bruno@clisp.org>
28
29         Make the multithread modules work on Cygwin 1.7.2.
30         * m4/threadlib.m4 (gl_THREADLIB_BODY): Improve the test whether
31         imported symbols can be declared weak, so that it returns "no" on
32         Cygwin 1.7.2.
33
34 2010-04-05  Bruno Haible  <bruno@clisp.org>
35
36         Use the module 'strncat'.
37         * modules/unistr/u8-strncat (Depends-on): Add strncat.
38
39         Tests for module 'strncat'.
40         * modules/strncat-tests: New file.
41         * tests/test-strncat.c: New file.
42
43         New module 'strncat'.
44         * lib/string.in.h (strncat): New declaration.
45         * lib/strncat.c: New file, based on lib/unistr/u-strncat.h.
46         * m4/strncat.m4: New file, based on m4/memchr.m4.
47         * modules/strncat: New file.
48         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Also check whether strncat
49         is declared.
50         (gl_HEADER_STRING_H_DEFAULTS): Initialize GNULIB_STRNCAT,
51         REPLACE_STRNCAT.
52         * modules/string (Makefile.am): Substitute GNULIB_STRNCAT,
53         REPLACE_STRNCAT.
54         * doc/posix-functions/strncat.texi: Mention the Solaris bug and the new
55         module.
56         * tests/test-string-c++.cc: Check signature of strncat.
57
58 2010-04-05  Jim Meyering  <meyering@redhat.com>
59
60         xstrtoumax-tests: convert to use init.sh
61         * modules/xstrtoumax-tests (Files): Add tests/init.sh.
62         * tests/test-xstrtoumax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
63         Use Exit, not exit.
64         Remove uses of $EXEEXT and "./" to run a program in the current dir.
65
66         xstrtoimax-tests: convert to use init.sh
67         * modules/xstrtoimax-tests (Files): Add tests/init.sh.
68         * tests/test-xstrtoimax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
69         Use Exit, not exit.
70         Remove uses of $EXEEXT and "./" to run a program in the current dir.
71
72 2010-04-05  Bruno Haible  <bruno@clisp.org>
73
74         sys_socket: Avoid #define replacements in C++ mode.
75         * lib/sys_socket.in.h (close, gethostname, select): In C++, attach a
76         warning to the function if possible, rather than #defining the symbol
77         to a dysfunctional alias.
78
79 2010-04-05  Bruno Haible  <bruno@clisp.org>
80
81         fseeko: Fix C++ test error on mingw.
82         * m4/fseeko.m4 (gl_HAVE_FSEEKO): New macro, extracted from
83         gl_FUNC_FSEEKO.
84         (gl_REPLACE_FSEEKO): Also set REPLACE_FSEEKO if appropriate.
85         (gl_FUNC_FSEEKO): Require gl_HAVE_FSEEKO. Update.
86         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't fiddle with internals of the
87         fseeko module. Instead, invoke gl_REPLACE_FSEEKO.
88
89 2010-04-05  Bruno Haible  <bruno@clisp.org>
90
91         duplocale: Improve test output.
92         * tests/test-duplocale.c (main): Print reason for skipped test.
93
94 2010-04-05  Bruno Haible  <bruno@clisp.org>
95
96         Assume rmdir exists.
97         * m4/rmdir.m4 (gl_FUNC_RMDIR): Remove test whether rmdir exists.
98         * doc/posix-functions/rmdir.texi: Remove mention of "old platforms".
99
100 2010-04-05  Bruno Haible  <bruno@clisp.org>
101
102         Fix link error on Solaris 8 with cc.
103         * modules/pty-c++-tests (test_pty_c___LDADD): Add LIBINTL.
104
105 2010-04-05  Bruno Haible  <bruno@clisp.org>
106
107         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
108         * lib/math.in.h (frexpl): Fix condition on _GL_CXXALIASWARN invocation.
109
110 2010-04-05  Bruno Haible  <bruno@clisp.org>
111
112         vasprintf: Update documentation.
113         * doc/glibc-functions/asprintf.texi: Mention the 'vasprintf' module.
114
115 2010-04-05  Bruno Haible  <bruno@clisp.org>
116
117         ptsname: Improve test.
118         * tests/test-ptsname.c (main): Also try the various master names of BSD
119         systems.
120
121 2010-04-05  Bruno Haible  <bruno@clisp.org>
122
123         memchr: Avoid a possible C++ test error.
124         * lib/string.in.h (memchr): Provide declaration if function is missing.
125         * m4/memchr.m4 (gl_FUNC_MEMCHR): If the function is missing, set
126         HAVE_MEMCHR to 0, not REPLACE_MEMCHR to 1.
127         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MEMCHR.
128         * modules/string (Makefile.am): Substitute HAVE_MEMCHR.
129
130 2010-04-05  Bruno Haible  <bruno@clisp.org>
131
132         strtok_r: Improve idiom.
133         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Invoke gl_PREREQ_STRDUP only when
134         AC_LIBOBJ is used.
135
136 2010-04-05  Bruno Haible  <bruno@clisp.org>
137
138         strdup: Improve idiom.
139         * m4/strdup.m4 (gl_FUNC_STRDUP): Invoke gl_PREREQ_STRDUP only when
140         AC_LIBOBJ is used.
141         (gl_FUNC_STRDUP_POSIX): When strdup is missing and malloc is not POSIX
142         compliant, don't set REPLACE_STRDUP to 1. Invoke gl_PREREQ_STRDUP only
143         when AC_LIBOBJ is used.
144
145 2010-04-05  Bruno Haible  <bruno@clisp.org>
146
147         mbsinit, mbrtowc, wcrtomb: Improve idioms.
148         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): When the function does not exist,
149         don't set REPLACE_MBSINIT to 1.
150         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): When the function does not exist,
151         don't set REPLACE_MBRTOWC to 1.
152         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): When the function does not
153         exist, don't set REPLACE_MBSRTOWCS to 1.
154         * m4/mbsnrtowcs.m4 (gl_FUNC_MBSNRTOWCS): When the function does not
155         exist, don't set REPLACE_MBSNRTOWCS to 1.
156         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): When the function does not exist,
157         don't set REPLACE_WCRTOMB to 1.
158         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): When the function does not
159         exist, don't set REPLACE_WCSRTOMBS to 1.
160         * m4/wcsnrtombs.m4 (gl_FUNC_WCSNRTOMBS): When the function does not
161         exist, don't set REPLACE_WCSNRTOMBS to 1.
162
163 2010-04-05  Bruno Haible  <bruno@clisp.org>
164
165         ldexpl: Improve idiom.
166         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): When the function is not declared,
167         make sure to set HAVE_DECL_LDEXPL to 0.
168
169 2010-04-05  Jim Meyering  <meyering@redhat.com>
170
171         xstrtol-tests: convert to use init.sh
172         * modules/xstrtol-tests (Files): Add tests/init.sh.
173         * tests/test-xstrtol.sh: Invoke "$srcdir/init.sh" and path_prepend_.
174         Use Exit, not exit.
175         Remove uses of $EXEEXT and "./" to run a program in the current dir.
176
177         atexit-tests: convert to use init.sh
178         * modules/atexit-tests (Files): Add tests/init.sh.
179         * tests/test-atexit.sh: Invoke "$srcdir/init.sh" and path_prepend_.
180         Use Exit, not exit.
181         Remove uses of $EXEEXT and "./" to run a program in the current dir.
182
183         init.sh: fix typo
184         * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
185
186         init.sh: make it easier for a test script to write to the tty, ...
187         when using automake's parallel-tests mode.
188         * tests/init.sh (stderr_fileno_): Define overridable variable.
189         (warn_): New function, to use it.
190         (fail_, skip_, framework_failure_): Use warn_.
191
192 2010-04-04  Bruno Haible  <bruno@clisp.org>
193
194         btowc: Avoid warning.
195         * lib/btowc.c: Include <stdlib.h>.
196         Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
197
198 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
199             Bruno Haible  <bruno@clisp.org>
200
201         wchar: Port to NetBSD 1.5.
202         * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
203         * lib/wctype.in.h (WEOF): Likewise.
204
205 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
206             Bruno Haible  <bruno@clisp.org>
207
208         Port extended stdio to NetBSD 1.5.
209         * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
210         (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
211         older.
212
213 2010-04-04  Bruno Haible  <bruno@clisp.org>
214
215         string: Remove unused substitution.
216         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
217         HAVE_DECL_STRERROR.
218         * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
219
220 2010-04-04  Bruno Haible  <bruno@clisp.org>
221
222         strtod: Avoid a possible C++ test error.
223         * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
224         set REPLACE_STRTOD.
225
226 2010-04-04  Bruno Haible  <bruno@clisp.org>
227
228         strerror: Update documentation.
229         * doc/posix-functions/strerror.texi: Remove mention of old platforms.
230
231 2010-04-04  Bruno Haible  <bruno@clisp.org>
232
233         stdio: Fix some C++ test errors on Solaris 8 with GCC.
234         * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
235         _GL_CXXALIAS_SYS_CAST.
236
237 2010-04-04  Bruno Haible  <bruno@clisp.org>
238
239         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
240         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
241         function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
242         REPLACE_FREXPL to 1.
243         * doc/posix-functions/frexpl.texi: Update documentation.
244
245 2010-04-04  Bruno Haible  <bruno@clisp.org>
246
247         math: Fix some C++ test errors on Solaris 8 and Cygwin.
248         * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
249
250 2010-04-04  Bruno Haible  <bruno@clisp.org>
251
252         Implement nanosleep for native Windows.
253         * lib/nanosleep.c (nanosleep): New implementation for native Windows.
254
255 2010-04-04  Bruno Haible  <bruno@clisp.org>
256
257         math: Fix some C++ test errors on Solaris 8.
258         * lib/math.in.h (truncf, trunc): Use simpler idiom.
259
260 2010-04-04  Bruno Haible  <bruno@clisp.org>
261
262         math: Fix some C++ test errors on Cygwin.
263         * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
264         truncl): Provide declaration if the system does not have it.
265         * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
266         HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
267         * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
268         HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
269         * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
270         HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
271         * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
272         HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
273         * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
274         HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
275         * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
276         HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
277         * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
278         HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
279         * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
280         HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
281         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
282         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
283         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
284         * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
285         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
286         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
287
288 2010-04-04  Bruno Haible  <bruno@clisp.org>
289
290         * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
291         * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
292         * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
293         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
294         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
295         * m4/isinf.m4 (gl_ISINF): Likewise.
296         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
297
298 2010-04-04  Bruno Haible  <bruno@clisp.org>
299
300         * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
301         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
302
303 2010-04-04  Bruno Haible  <bruno@clisp.org>
304
305         * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
306         * modules/tmpfile (configure.ac): Update.
307
308         tmpfile: Fix C++ test error on mingw.
309         * lib/stdio.in.h (tmpfile): New declaration.
310         * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
311         REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
312         * modules/tmpfile (Depends-on): Add stdio.
313         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
314         * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
315         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
316         * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
317         REPLACE_TMPFILE.
318         * tests/test-stdio-c++.cc (tmpfile): Verify signature.
319
320 2010-04-04  Bruno Haible  <bruno@clisp.org>
321
322         ioctl: Fix C++ test error on mingw.
323         * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
324         * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
325         use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
326
327 2010-04-03  Bruno Haible  <bruno@clisp.org>
328
329         wcwidth: Fix C++ test error on mingw.
330         * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
331         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
332         exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
333
334 2010-04-03  Bruno Haible  <bruno@clisp.org>
335
336         nanosleep: Fix C++ test error on mingw.
337         * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
338         * lib/time.in.h (nanosleep): Use modern idiom.
339         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
340         nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
341         REPLACE_NANOSLEEP to 1.
342         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
343         * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
344
345 2010-04-03  Bruno Haible  <bruno@clisp.org>
346
347         strptime: Fix C++ test error on mingw.
348         * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
349         * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
350         REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
351         (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
352         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
353         not REPLACE_STRPTIME.
354         * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
355         REPLACE_STRPTIME.
356
357 2010-04-03  Bruno Haible  <bruno@clisp.org>
358
359         timegm: Fix C++ test error on mingw.
360         * lib/time.in.h (timegm): Use modern idiom.
361         * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
362         HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
363         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
364         * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
365
366 2010-04-03  Bruno Haible  <bruno@clisp.org>
367
368         timegm: Assume declaration if function exists.
369         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
370         if it exists. Don't clobber ac_cv_func_timegm.
371
372 2010-04-03  Bruno Haible  <bruno@clisp.org>
373
374         time_r: Fix C++ test error on mingw.
375         * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
376         * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
377         HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
378         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
379         * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
380
381 2010-04-03  Bruno Haible  <bruno@clisp.org>
382
383         time_r: Minor updates.
384         * modules/time_r (Description): Mention the provided functions.
385         * lib/time_r.c: Don't include <string.h>.
386         * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
387         * doc/posix-functions/localtime_r.texi: Likewise.
388
389 2010-04-03  Bruno Haible  <bruno@clisp.org>
390
391         time: Fix regression introduced on 2010-03-08.
392         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
393         gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
394
395 2010-04-03  Jim Meyering  <meyering@redhat.com>
396
397         maint.mk: don't silently disable project-specific syntax-check rules
398         * top/maint.mk (_prohibit_regexp): Define, to help people realize
399         that they need to convert their project-specific syntax-check rules
400         to use the new _sc_search_regexp.
401
402 2010-04-03  Bruno Haible  <bruno@clisp.org>
403
404         fchdir: Fix regression introduced on 2010-03-08.
405         * lib/unistd.in.h (fchdir): Fix declaration.
406         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
407         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
408         REPLACE_FCHDIR.
409         * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
410         REPLACE_FCHDIR.
411
412 2010-04-03  Bruno Haible  <bruno@clisp.org>
413
414         getpagesize: Fix C++ test error on mingw.
415         * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
416         system does not declare the function.
417         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
418         declared.
419         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
420         HAVE_DECL_GETPAGESIZE.
421         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
422
423 2010-04-03  Bruno Haible  <bruno@clisp.org>
424
425         stdio: Make C++ tests work on mingw.
426         * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
427         does not declare the function.
428
429 2010-04-03  Bruno Haible  <bruno@clisp.org>
430
431         ftello: Fix C++ test error on mingw.
432         * lib/stdio.in.h (ftello): Use modern idiom.
433         * lib/ftello.c (ftello): Renamed from rpl_ftello.
434         * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
435         is missing and that it needs to be replaced.
436         (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
437         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
438         * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
439
440 2010-04-03  Bruno Haible  <bruno@clisp.org>
441
442         fseeko: Fix C++ test error on mingw.
443         * lib/stdio.in.h (fseeko): Use modern idiom.
444         * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
445         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
446         is missing and that it needs to be replaced.
447         (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
448         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
449         * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
450
451 2010-04-03  Bruno Haible  <bruno@clisp.org>
452
453         mkstemp: Fix C++ test error on mingw.
454         * lib/stdlib.in.h (mkstemp): Use modern idiom.
455         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
456         function is missing and that it needs to be replaced.
457         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
458         * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
459
460 2010-04-03  Bruno Haible  <bruno@clisp.org>
461
462         stpncpy: Fix C++ test error on mingw.
463         * lib/string.in.h (stpncpy): Use modern idiom.
464         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
465         function is missing and that it needs to be replaced.
466         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
467         REPLACE_STPNCPY.
468         * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
469
470 2010-04-03  Bruno Haible  <bruno@clisp.org>
471
472         sys_stat: Fix C++ test error on mingw.
473         * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
474         * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
475
476 2010-04-03  Bruno Haible  <bruno@clisp.org>
477
478         pty: Update doc.
479         * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
480
481 2010-04-03  Bruno Haible  <bruno@clisp.org>
482
483         unistd: Fix C++ test error on mingw.
484         * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
485
486 2010-04-03  Bruno Haible  <bruno@clisp.org>
487
488         Update doc regarding mingw.
489         * doc/glibc-functions/openpty.texi: Update regarding mingw.
490         * doc/glibc-functions/login_tty.texi: Likewise.
491         * doc/glibc-functions/forkpty.texi: Likewise.
492
493 2010-04-03  Bruno Haible  <bruno@clisp.org>
494
495         stdlib: Avoid compilation failure of c-strtold on mingw.
496         * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
497
498 2010-04-03  Bruno Haible  <bruno@clisp.org>
499
500         locale: Make C++ tests work on Cygwin and mingw.
501         * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
502         cannot provide the function.
503         Reported by Simon Josefsson.
504
505 2010-04-03  Bruno Haible  <bruno@clisp.org>
506
507         localename: Port to MacOS X 10.6.
508         * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
509         memory layout of the locales in MacOS X 10.6 as well.
510         Reported by Panu Kekäläinen <panu@kekalainen.eu>.
511
512 2010-04-02  Bruno Haible  <bruno@clisp.org>
513
514         gnulib-tool: Ensure that long-running tests are executed last.
515         * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
516         running tests after the one for the other tests.
517
518 2010-04-02  Bruno Haible  <bruno@clisp.org>
519
520         gnulib-tool: Ensure the tests in the main directory are executed first.
521         * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
522         start with the current directory.
523
524 2010-04-02  Bruno Haible  <bruno@clisp.org>
525
526         Tests for module 'havelib', moved here from GNU gettext.
527         * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
528         modifications.
529         * tests/havelib/README: New file, from gettext/autoconf-lib-link.
530         * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
531         with modifications.
532         * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
533         modifications.
534         * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
535         * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
536         * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
537         with modifications.
538         * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
539         with modifications.
540         * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
541         * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
542         * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
543         * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
544         * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
545         * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
546         * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
547         * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
548         * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
549         * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
550         * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
551         * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
552         * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
553         * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
554         * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
555         * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
556         * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
557         with modifications.
558         * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
559         with modifications.
560         * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
561         * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
562         * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
563         * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
564         * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
565         * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
566         * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
567         * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
568         * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
569         * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
570         * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
571         * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
572         * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
573         * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
574         * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
575         * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
576         * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
577         * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
578         * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
579         * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
580         * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
581         * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
582         * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
583         * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
584         * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
585         * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
586         * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
587         * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
588         * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
589         * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
590         * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
591         * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
592         * tests/havelib/rpathx/rpathx.c: New file, from
593         gettext/autoconf-lib-link.
594         * tests/havelib/rpathx/Makefile.am: New file, from
595         gettext/autoconf-lib-link.
596         * tests/havelib/rpathx/configure.ac: New file, from
597         gettext/autoconf-lib-link with modifications.
598         * tests/havelib/rpathy/rpathy.c: New file, from
599         gettext/autoconf-lib-link.
600         * tests/havelib/rpathy/Makefile.am: New file, from
601         gettext/autoconf-lib-link.
602         * tests/havelib/rpathy/configure.ac: New file, from
603         gettext/autoconf-lib-link with modifications.
604         * tests/havelib/rpathz/rpathz.c: New file, from
605         gettext/autoconf-lib-link.
606         * tests/havelib/rpathz/Makefile.am: New file, from
607         gettext/autoconf-lib-link.
608         * tests/havelib/rpathz/configure.ac: New file, from
609         gettext/autoconf-lib-link with modifications.
610         * tests/havelib/rpathlx/usex.c: New file, from
611         gettext/autoconf-lib-link.
612         * tests/havelib/rpathlx/Makefile.am: New file, from
613         gettext/autoconf-lib-link.
614         * tests/havelib/rpathlx/configure.ac: New file, from
615         gettext/autoconf-lib-link with modifications.
616         * tests/havelib/rpathly/usey.c: New file, from
617         gettext/autoconf-lib-link.
618         * tests/havelib/rpathly/Makefile.am: New file, from
619         gettext/autoconf-lib-link.
620         * tests/havelib/rpathly/configure.ac: New file, from
621         gettext/autoconf-lib-link with modifications.
622         * tests/havelib/rpathlz/usez.c: New file, from
623         gettext/autoconf-lib-link.
624         * tests/havelib/rpathlz/Makefile.am: New file, from
625         gettext/autoconf-lib-link.
626         * tests/havelib/rpathlz/configure.ac: New file, from
627         gettext/autoconf-lib-link with modifications.
628         * tests/havelib/rpathlyx/usey.c: New file, from
629         gettext/autoconf-lib-link.
630         * tests/havelib/rpathlyx/Makefile.am: New file, from
631         gettext/autoconf-lib-link.
632         * tests/havelib/rpathlyx/configure.ac: New file, from
633         gettext/autoconf-lib-link with modifications.
634         * tests/havelib/rpathlzyx/usez.c: New file, from
635         gettext/autoconf-lib-link.
636         * tests/havelib/rpathlzyx/Makefile.am: New file, from
637         gettext/autoconf-lib-link.
638         * tests/havelib/rpathlzyx/configure.ac: New file, from
639         gettext/autoconf-lib-link with modifications.
640         * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
641         with modifications.
642
643 2010-04-02  Bruno Haible  <bruno@clisp.org>
644
645         gnulib-tool: Create distributed built sources also for the tests.
646         * gnulib-tool (func_create_testdir): Also generate distributed built
647         sources in the tests directory.
648
649 2010-04-02  Bruno Haible  <bruno@clisp.org>
650
651         gnulib-tool: Obey user's environment variables.
652         * gnulib-tool (func_create_testdir): When creating built sources,
653         respect the environment variables for autoconf, automake, etc. given by
654         the user.
655
656 2010-04-02  Bruno Haible  <bruno@clisp.org>
657
658         gnulib-tool: Provide the value of --m4-base to modules.
659         * gnulib-tool (func_import, func_create_testdir): Emit a definition
660         of gl_m4_base.
661
662 2010-04-02  Eric Blake  <eblake@redhat.com>
663
664         maint.mk: fix some fallout
665         * NEWS: Document the incompatible change, and its effect on cfg.mk.
666         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
667
668 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
669
670         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
671         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
672         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
673         (sc_cast_of_x_alloc_return_value): Likewise.
674         (sc_cast_of_alloca_return_value): Likewise.
675         (sc_space_tab): Likewise.
676         (sc_prohibit_atoi_atof): Likewise.
677         (sc_prohibit_magic_number_exit): Likewise.
678         (sc_error_exit_success): Likewise.
679         (sc_file_system): Likewise.
680         (sc_prohibit_have_config_h): Likewise.
681         (sc_require_config_h): Likewise.
682         (sc_prohibit_HAVE_MBRTOWC): Likewise.
683         (sc_obsolete_symbols): Likewise.
684         (sc_changelog): Likewise.
685         (sc_program_name): Likewise.
686         (sc_the_the): Likewise.
687         (sc_trailing_blank): Likewise.
688         (sc_two_space_separator_in_usage): Likewise.
689         (sc_useless_cpp_parens): Likewise.
690         (sc_GPL_version): Likewise.
691         (sc_GFDL_version): Likewise.
692         (sc_texinfo_acronym): Likewise.
693         (sc_prohibit_cvs_keyword): Likewise.
694         (sc_prohibit_stat_st_blocks): Likewise.
695         (sc_prohibit_S_IS_definition): Likewise.
696         (sc_redundant_const): Likewise.
697         (sc_makefile_TAB_only_indentation): Likewise.
698         (sc_m4_quote_check): Likewise.
699         (sc_makefile_path_separator_check): Likewise.
700         (sc_copyright_check): Likewise.
701         (sc_Wundef_boolean): Likewise.
702         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
703
704         maint.mk: match 0 or more whitespace-before-function-call '('
705         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
706         that have zero or two-and-more spaces between the function name
707         and the open parenthesis.
708         (sc_error_message_warn_fatal): Likewise.
709         (sc_error_message_uppercase): Likewise.
710         (sc_error_message_period): Likewise.
711
712 2010-03-31  Eric Blake  <eblake@redhat.com>
713
714         maint.mk: check for [ as well as test
715         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
716         Based on a libvirt report by Matthias Bolte.
717
718         gnumakefile: don't squelch _version output
719         * top/GNUmakefile (_version): Create one-shot dependency rather
720         than using $(shell) when version must be regenerated.
721         (_autoreconf): Run verbosely, by default.
722
723         sys_time: avoid compiler warnings
724         * lib/sys_time.in.h (includes): Ensure gcc pragma is
725         unconditional, fixing regression from 2010-03-29.
726         Reported by Simon Josefsson.
727
728 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
729
730         maint.mk: s/_header_without_use/_sc_header_without_use/
731         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
732         (sc_prohibit_assert_without_use): Use the new name.
733         (sc_prohibit_close_stream_without_use): Likewise.
734         (sc_prohibit_getopt_without_use): Likewise.
735         (sc_prohibit_quotearg_without_use): Likewise.
736         (sc_prohibit_quote_without_use): Likewise.
737         (sc_prohibit_long_options_without_use): Likewise.
738         (sc_prohibit_inttostr_without_use): Likewise.
739         (sc_prohibit_ignore_value_without_use): Likewise.
740         (sc_prohibit_error_without_use): Likewise.
741         (sc_prohibit_xalloc_without_use): Likewise.
742         (sc_prohibit_hash_without_use): Likewise.
743         (sc_prohibit_hash_pjw_without_use): Likewise.
744         (sc_prohibit_safe_read_without_use): Likewise.
745         (sc_prohibit_argmatch_without_use): Likewise.
746         (sc_prohibit_canonicalize_without_use): Likewise.
747         (sc_prohibit_root_dev_ino_without_use): Likewise.
748         (sc_prohibit_openat_without_use): Likewise.
749         (sc_prohibit_c_ctype_without_use): Likewise.
750         (sc_prohibit_signal_without_use): Likewise.
751         (sc_prohibit_intprops_without_use): Likewise.
752
753 2010-03-30  Eric Blake  <eblake@redhat.com>
754
755         maint: improve module indicators
756         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
757         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
758         columns, and avoid extra macro expansion.
759
760         fdopendir: work around FreeBSD bug
761         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
762         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
763         * modules/dirent (Makefile.am): Substitute it.
764         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
765         declaration.
766         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
767         fix.
768         Reported by Christian Weisgerber <naddy@mips.inka.de>.
769
770 2010-03-29  Bruno Haible  <bruno@clisp.org>
771
772         Emit #pragma system_header after the inclusion guard, not before.
773         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
774         guard that spans the entire file, not before. This enables an
775         optimization in GCC's preprocessor.
776         * lib/ctype.in.h: Likewise.
777         * lib/dirent.in.h: Likewise.
778         * lib/errno.in.h: Likewise.
779         * lib/float.in.h: Likewise.
780         * lib/getopt.in.h: Likewise.
781         * lib/iconv.in.h: Likewise.
782         * lib/langinfo.in.h: Likewise.
783         * lib/locale.in.h: Likewise.
784         * lib/math.in.h: Likewise.
785         * lib/netdb.in.h: Likewise.
786         * lib/netinet_in.in.h: Likewise.
787         * lib/pty.in.h: Likewise.
788         * lib/sched.in.h: Likewise.
789         * lib/se-selinux.in.h: Likewise.
790         * lib/search.in.h: Likewise.
791         * lib/spawn.in.h: Likewise.
792         * lib/stdarg.in.h: Likewise.
793         * lib/stdint.in.h: Likewise.
794         * lib/string.in.h: Likewise.
795         * lib/strings.in.h: Likewise.
796         * lib/sys_file.in.h: Likewise.
797         * lib/sys_ioctl.in.h: Likewise.
798         * lib/sys_time.in.h: Likewise.
799         * lib/sys_times.in.h: Likewise.
800         * lib/sys_utsname.in.h: Likewise.
801         * lib/sys_wait.in.h: Likewise.
802         * lib/sysexits.in.h: Likewise.
803         * lib/wctype.in.h: Likewise.
804
805 2010-03-28  James Youngman  <jay@gnu.org>
806
807         save-cwd: don't leak a file descriptor when the caller execs.
808         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
809         saved file descriptor.
810         * modules/save-cwd (Depends-on): Depend on cloexec.
811
812 2010-03-29  Bruno Haible  <bruno@clisp.org>
813
814         Remove vestiges of fts-lgpl module.
815         * lib/fts_.h: Assume GNULIB_FTS is 1.
816         * lib/fts.c: Likewise.
817         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
818
819 2010-03-28  Bruno Haible  <bruno@clisp.org>
820
821         Fix definition of tests witness macro.
822         * gnulib-tool (func_import): Fix definition of witness macro.
823
824 2010-03-28  Bruno Haible  <bruno@clisp.org>
825
826         Fix ioctl's protoype on glibc systems.
827         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
828         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
829         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
830         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
831         signature. If not, arrange to replace the ioctl function.
832         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
833         REPLACE_IOCTL.
834         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
835         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
836         Reported by Ludovic Courtès <ludo@gnu.org>.
837
838 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
839
840         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
841         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
842         made it so grep -r --include=GLOB* ... did not work.
843
844 2010-03-26  Jim Meyering  <meyering@redhat.com>
845             Eric Blake  <eblake@redhat.com>
846
847         maint.mk: prohibit use of test's -o and -a operators
848         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
849
850 2010-03-28  Bruno Haible  <bruno@clisp.org>
851
852         Remove unused GNULIB_XYZ macro definitions.
853         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
854         invocation.
855
856 2010-03-28  Bruno Haible  <bruno@clisp.org>
857
858         Mark privileged tests modules.
859         * modules/idpriv-drop-tests (Status): New section.
860         * modules/idpriv-droptemp-tests (Status): New section.
861
862 2010-03-28  Bruno Haible  <bruno@clisp.org>
863
864         Split C++ tests into separate tests modules.
865         * modules/dirent-c++-tests: New file, extracted from
866         modules/dirent-tests.
867         * modules/dirent-tests: Depend on it.
868         * modules/fcntl-h-c++-tests: New file, extracted from
869         modules/fcntl-h-tests.
870         * modules/fcntl-h-tests: Depend on it.
871         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
872         * modules/glob-tests: Depend on it.
873         * modules/iconv-h-c++-tests: New file, extracted from
874         modules/iconv-h-tests.
875         * modules/iconv-h-tests: Depend on it.
876         * modules/langinfo-c++-tests: New file, extracted from
877         modules/langinfo-tests.
878         * modules/langinfo-tests: Depend on it.
879         * modules/locale-c++-tests: New file, extracted from
880         modules/locale-tests.
881         * modules/locale-tests: Depend on it.
882         * modules/math-c++-tests: New file, extracted from modules/math-tests.
883         * modules/math-tests: Depend on it.
884         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
885         * modules/pty-tests: Depend on it.
886         * modules/search-c++-tests: New file, extracted from
887         modules/search-tests.
888         * modules/search-tests: Depend on it.
889         * modules/signal-c++-tests: New file, extracted from
890         modules/signal-tests.
891         * modules/signal-tests: Depend on it.
892         * modules/spawn-c++-tests: New file, extracted from
893         modules/spawn-tests.
894         * modules/spawn-tests: Depend on it.
895         * modules/stdio-c++-tests: New file, extracted from
896         modules/stdio-tests.
897         * modules/stdio-tests: Depend on it.
898         * modules/stdlib-c++-tests: New file, extracted from
899         modules/stdlib-tests.
900         * modules/stdlib-tests: Depend on it.
901         * modules/string-c++-tests: New file, extracted from
902         modules/string-tests.
903         * modules/string-tests: Depend on it.
904         * modules/sys_ioctl-c++-tests: New file, extracted from
905         modules/sys_ioctl-tests.
906         * modules/sys_ioctl-tests: Depend on it.
907         * modules/sys_select-c++-tests: New file, extracted from
908         modules/sys_select-tests.
909         * modules/sys_select-tests: Depend on it.
910         * modules/sys_socket-c++-tests: New file, extracted from
911         modules/sys_socket-tests.
912         * modules/sys_socket-tests: Depend on it.
913         * modules/sys_stat-c++-tests: New file, extracted from
914         modules/sys_stat-tests.
915         * modules/sys_stat-tests: Depend on it.
916         * modules/sys_time-c++-tests: New file, extracted from
917         modules/sys_time-tests.
918         * modules/sys_time-tests: Depend on it.
919         * modules/time-c++-tests: New file, extracted from modules/time-tests.
920         * modules/time-tests: Depend on it.
921         * modules/unistd-c++-tests: New file, extracted from
922         modules/unistd-tests.
923         * modules/unistd-tests: Depend on it.
924         * modules/wchar-c++-tests: New file, extracted from
925         modules/wchar-tests.
926         * modules/wchar-tests: Depend on it.
927         * modules/wctype-c++-tests: New file, extracted from
928         modules/wctype-tests.
929         * modules/wctype-tests: Depend on it.
930         Reported by Simon Josefsson.
931
932 2010-03-28  Bruno Haible  <bruno@clisp.org>
933
934         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
935         * gnulib-tool (func_exists_module): New function, extracted from
936         func_verify_module.
937         (func_verify_module): Use it.
938         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
939         'foo' only if 'foo' exists.
940         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
941         module.
942
943 2010-03-28  Bruno Haible  <bruno@clisp.org>
944
945         gnulib-tool: Add support for special categories of tests.
946         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
947         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
948         (func_usage): Document them.
949         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
950         inc_unportable_tests, inc_all_tests): New variables.
951         (func_acceptable): Consider these variables.
952         (func_modules_transitive_closure): Make it work when the 'Status' field
953         consists of multiple words.
954         (func_import): Store and restore the values of inc_cxx_tests,
955         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
956         inc_all_tests in gnulib-comp.m4.
957         (func_create_testdir): Set inc_all_tests to true.
958         * doc/gnulib.texi (Extra tests modules): New section.
959         Suggested by Jim Meyering.
960
961 2010-03-28  Bruno Haible  <bruno@clisp.org>
962
963         ansi-c++-opt: Allow turning off the C++ build by default.
964         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
965         gl_CXX_CHOICE_DEFAULT_NO is defined.
966         Requested by Eric Blake.
967
968 2010-03-28  Bruno Haible  <bruno@clisp.org>
969
970         unistd: Avoid #define replacements in C++ mode.
971         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
972         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
973         setsockopt, shutdown, select): In C++, attach a warning to the function
974         if possible, rather than #defining the symbol to a dysfunctional alias.
975         Reported by John W. Eaton <jwe@gnu.org>.
976
977 2010-03-28  Bruno Haible  <bruno@clisp.org>
978
979         Fix link errors on mingw.
980         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
981         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
982         $(LIBSOCKET).
983         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
984         $(LIBSOCKET).
985
986 2010-03-28  Bruno Haible  <bruno@clisp.org>
987             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
988
989         lib-ignore: Determine different options for different compilers.
990         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
991         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
992         Add comments.
993         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
994         * NEWS: Mention the change.
995
996 2010-03-27  Bruno Haible  <bruno@clisp.org>
997
998         Remove unused GNULIB_XYZ macro definitions.
999         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
1000         * modules/fseek (configure.ac): Likewise.
1001         * modules/ioctl (configure.ac): Likewise.
1002         * modules/open (configure.ac): Likewise.
1003         * modules/stdlib-safer (configure.ac): Likewise.
1004
1005 2010-03-27  Bruno Haible  <bruno@clisp.org>
1006
1007         Add a remark about certain modules.
1008         * modules/malloc (Comment): New section.
1009         * modules/realloc (Comment): Likewise.
1010         * modules/sigpipe (Comment): Likewise.
1011
1012 2010-03-27  Bruno Haible  <bruno@clisp.org>
1013
1014         Resolve conflict between the two kinds of module indicators.
1015         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
1016         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
1017         * modules/canonicalize (configure.ac): Invoke
1018         gl_MODULE_INDICATOR_FOR_TESTS.
1019         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
1020         GNULIB_XYZ.
1021         * tests/test-dirent-c++.cc: Likewise.
1022         * tests/test-dirent-safer.c: Likewise.
1023         * tests/test-dup2.c: Likewise.
1024         * tests/test-fchdir.c: Likewise.
1025         * tests/test-fcntl-h-c++.cc: Likewise.
1026         * tests/test-getopt.c: Likewise.
1027         * tests/test-getopt.h: Likewise.
1028         * tests/test-langinfo-c++.cc: Likewise.
1029         * tests/test-locale-c++.cc: Likewise.
1030         * tests/test-math-c++.cc: Likewise.
1031         * tests/test-pty-c++.cc: Likewise.
1032         * tests/test-search-c++.cc: Likewise.
1033         * tests/test-signal-c++.cc: Likewise.
1034         * tests/test-spawn-c++.cc: Likewise.
1035         * tests/test-stdio-c++.cc: Likewise.
1036         * tests/test-stdlib-c++.cc: Likewise.
1037         * tests/test-string-c++.cc: Likewise.
1038         * tests/test-sys_ioctl-c++.cc: Likewise.
1039         * tests/test-sys_select-c++.cc: Likewise.
1040         * tests/test-sys_socket-c++.cc: Likewise.
1041         * tests/test-sys_stat-c++.cc: Likewise.
1042         * tests/test-sys_time-c++.cc: Likewise.
1043         * tests/test-time-c++.cc: Likewise.
1044         * tests/test-unistd-c++.cc: Likewise.
1045         * tests/test-wchar-c++.cc: Likewise.
1046         * tests/uninorm/test-u8-nfc.c: Likewise.
1047         * tests/uninorm/test-u8-nfd.c: Likewise.
1048         * tests/uninorm/test-u8-nfkc.c: Likewise.
1049         * tests/uninorm/test-u8-nfkd.c: Likewise.
1050         * tests/uninorm/test-u16-nfc.c: Likewise.
1051         * tests/uninorm/test-u16-nfd.c: Likewise.
1052         * tests/uninorm/test-u16-nfkc.c: Likewise.
1053         * tests/uninorm/test-u16-nfkd.c: Likewise.
1054         * tests/uninorm/test-u32-nfc.c: Likewise.
1055         * tests/uninorm/test-u32-nfc-big.c: Likewise.
1056         * tests/uninorm/test-u32-nfd.c: Likewise.
1057         * tests/uninorm/test-u32-nfd-big.c: Likewise.
1058         * tests/uninorm/test-u32-nfkc.c: Likewise.
1059         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
1060         * tests/uninorm/test-u32-nfkd.c: Likewise.
1061         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
1062         * tests/uninorm/test-u32-normalize-big.c: Likewise.
1063
1064 2010-03-27  Bruno Haible  <bruno@clisp.org>
1065
1066         Distinguish two kinds of module indicators.
1067         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
1068         gl_MODULE_INDICATOR.
1069         (gl_MODULE_INDICATOR): New macro.
1070         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1071         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
1072         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1073         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1074         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1075         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1076         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1077         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1078         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1079         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1080         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1081         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1082         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1083         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1084         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1085         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1086         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1087         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1088         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1089         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1090         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1091         * modules/cloexec (configure.ac): Likewise.
1092         * modules/getopt-gnu (configure.ac): Likewise.
1093         * modules/uninorm/u8-normalize (configure.ac): Likewise.
1094         * modules/uninorm/u16-normalize (configure.ac): Likewise.
1095         * modules/uninorm/u32-normalize (configure.ac): Likewise.
1096         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
1097
1098 2010-03-27  Bruno Haible  <bruno@clisp.org>
1099
1100         New module description field 'Comment'.
1101         * gnulib-tool: New option --extract-comment.
1102         (func_usage): Document it.
1103         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
1104         (func_get_comment): New function.
1105         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
1106
1107 2010-03-27  Bruno Haible  <bruno@clisp.org>
1108
1109         Addendum to 2010-02-07 commit.
1110         * gnulib-tool (func_usage): Document --extract-applicability option.
1111
1112 2010-03-27  Bruno Haible  <bruno@clisp.org>
1113
1114         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
1115         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
1116         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
1117         rather than link errors.
1118
1119 2010-03-27  Bruno Haible  <bruno@clisp.org>
1120
1121         Avoid side effects from tests-related modules on the compilation of lib.
1122         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
1123         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
1124         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
1125         parameter. Emit into AM_CPPFLAGS a definition of the designated C
1126         macro.
1127         (func_import): Define a witness macro. Assign it a value that depends
1128         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
1129         tests-related modules.
1130         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
1131         Reported by Jim Meyering.
1132
1133 2010-03-27  Bruno Haible  <bruno@clisp.org>
1134
1135         Factorize common .m4 code.
1136         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
1137         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
1138         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
1139         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
1140         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1141         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
1142         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
1143         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1144         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1145         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1146         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
1147         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1148         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1149         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1150         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1151         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
1152         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1153         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1154         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1155         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
1156         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
1157         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1158         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1159         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1160         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1161         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1162         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
1163         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
1164         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
1165         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1166         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1167         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1168
1169 2010-03-27  Bruno Haible  <bruno@clisp.org>
1170
1171         Fix a compilation error on Cygwin with g++ >= 4.3.
1172         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
1173         if it is undefined or if we alias it to chmod.
1174         (lstat): Don't warn about the use of this function if it is undefined
1175         or if we alias it to stat.
1176         Reported by Simon Josefsson.
1177
1178 2010-03-27  Bruno Haible  <bruno@clisp.org>
1179
1180         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
1181         * modules/getlogin (configure.ac): Update.
1182
1183         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
1184         * modules/getlogin_r (configure.ac): Update.
1185
1186         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
1187         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
1188         * modules/inet_ntop (configure.ac): Update.
1189
1190         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
1191         * modules/inet_pton (configure.ac): Update.
1192
1193         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
1194         * modules/mbslen (configure.ac): Update.
1195
1196         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
1197         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
1198         * modules/forkpty (configure.ac): Update.
1199         * modules/openpty (configure.ac): Update.
1200
1201 2010-03-26  Simon Josefsson  <simon@josefsson.org>
1202
1203         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
1204         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
1205
1206 2010-03-25  Eric Blake  <eblake@redhat.com>
1207
1208         maint: use pragma consistently across replacement headers
1209         * lib/ctype.in.h (system_header): Hoist for consistent placement.
1210         * lib/dirent.in.h (system_header): Likewise.
1211         * lib/errno.in.h (system_header): Likewise.
1212         * lib/float.in.h (system_header): Likewise.
1213         * lib/getopt.in.h (system_header): Likewise.
1214         * lib/iconv.in.h (system_header): Likewise.
1215         * lib/inttypes.in.h (system_header): Likewise.
1216         * lib/langinfo.in.h (system_header): Likewise.
1217         * lib/locale.in.h (system_header): Likewise.
1218         * lib/math.in.h (system_header): Likewise.
1219         * lib/netdb.in.h (system_header): Likewise.
1220         * lib/netinet_in.in.h (system_header): Likewise.
1221         * lib/pty.in.h (system_header): Likewise.
1222         * lib/sched.in.h (system_header): Likewise.
1223         * lib/se-selinux.in.h (system_header): Likewise.
1224         * lib/search.in.h (system_header): Likewise.
1225         * lib/spawn.in.h (system_header): Likewise.
1226         * lib/stdarg.in.h (system_header): Likewise.
1227         * lib/stdint.in.h (system_header): Likewise.
1228         * lib/string.in.h (system_header): Likewise.
1229         * lib/strings.in.h (system_header): Likewise.
1230         * lib/sys_file.in.h (system_header): Likewise.
1231         * lib/sys_ioctl.in.h (system_header): Likewise.
1232         * lib/sys_socket.in.h (system_header): Likewise.
1233         * lib/sys_times.in.h (system_header): Likewise.
1234         * lib/sys_utsname.in.h (system_header): Likewise.
1235         * lib/sys_wait.in.h (system_header): Likewise.
1236         * lib/sysexits.in.h (system_header): Likewise.
1237         * lib/unistd.in.h (system_header): Likewise.
1238         * lib/wctype.in.h (system_header): Likewise.
1239
1240         arpa/inet: fix mingw compilation warning
1241         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
1242         Reported by Matthew Bolte.
1243
1244 2010-03-25  Bruno Haible  <bruno@clisp.org>
1245
1246         Avoid collision between gnulib wrapper and libintl wrapper.
1247         * lib/printf.c (printf): Don't define if a printf wrapper is already
1248         defined in intl/printf.c.
1249         Reported by Michel Boaventura <michel@michelboaventura.com>.
1250
1251 2010-03-25  Bruno Haible  <bruno@clisp.org>
1252
1253         Use ANSI C.
1254         * lib/readutmp.h (getutent): Provide ANSI C prototype.
1255
1256 2010-03-25  Bruno Haible  <bruno@clisp.org>
1257
1258         Minor formatting changes.
1259         * lib/acosl.c: Insert space before function argument list.
1260         * lib/argz.c: Likewise.
1261         * lib/asinl.c: Likewise.
1262         * lib/expl.c: Likewise.
1263         * lib/gen-uni-tables.c: Likewise.
1264         * lib/gettext.h: Likewise.
1265         * lib/glthread/lock.h: Likewise.
1266         * lib/tanl.c: Likewise.
1267         * lib/uniname/uniname.c: Likewise.
1268         * tests/test-idpriv-drop.c: Likewise.
1269         * tests/test-idpriv-droptemp.c: Likewise.
1270         * tests/test-lock.c: Likewise.
1271         * tests/test-tls.c: Likewise.
1272         * lib/argp-help.c: Insert space before function-like macro argument
1273         list.
1274         * lib/memcmp.c: Likewise.
1275         * tests/test-base64.c: Likewise.
1276         * lib/localename.c: Insert space before sizeof's argument list.
1277         * lib/safe-alloc.h: Likewise.
1278         * lib/file-set.h: Insert space before macro argument list.
1279         * tests/test-argp.c: Likewise.
1280         * lib/argp-namefrob.h: Insert space before function parameter list.
1281         * lib/getaddrinfo.c: Likewise.
1282         * lib/netdb.in.h: Likewise.
1283         * lib/parse-duration.h: Likewise.
1284         * lib/parse-duration.c: Likewise.
1285         * lib/poll.c: Likewise.
1286         * lib/select.c: Likewise.
1287         * lib/trim.h: Likewise.
1288         * tests/test-usleep.c: Likewise.
1289         * lib/ldexpl.c: Insert space before function parameter list and before
1290         function argument list.
1291         * lib/logl.c: Likewise.
1292         * lib/sqrtl.c: Likewise.
1293         * lib/trim.c: Likewise.
1294         * lib/cosl.c: Use GNU style indentation. Insert space before function
1295         argument list.
1296         * lib/sinl.c: Likewise.
1297         * lib/tsearch.c: Insert space after 'for'.
1298         Reported by Jim Meyering.
1299
1300 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
1301
1302         * maint.mk (sc_Wundef_boolean): Check for the presence of the
1303         config header before grepping, as it's not present before
1304         autoreconf/configure are run.  Reported by Simon Josefsson.
1305
1306 2010-03-23  Bruno Haible  <bruno@clisp.org>
1307
1308         pt_chown: Make it work with automake < 1.11.
1309         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
1310         Reported by Simon Josefsson.
1311
1312 2010-03-23  Bruno Haible  <bruno@clisp.org>
1313
1314         pt_chown: Don't depend on GPLed modules.
1315         * lib/pt_chown.c: Don't include idpriv.h.
1316         (main): Don't drop privileges.
1317         * modules/pt_chown (Depends-on): Remove idpriv-drop.
1318         Reported by Simon Josefsson.
1319
1320 2010-03-24  Simon Josefsson  <simon@josefsson.org>
1321
1322         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
1323         suggestions from karl@freefriends.org (Karl Berry).
1324
1325 2010-03-22  Eric Blake  <eblake@redhat.com>
1326
1327         gethostname: further tweaks
1328         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
1329         are overriding gethostname.
1330         Suggested by Bruno Haible.
1331
1332 2010-03-21  Bruno Haible  <bruno@clisp.org>
1333
1334         Fix comments.
1335         * lib/forkpty.c (rpl_forkpty): Fix comment.
1336         * lib/openpty.c (rpl_openpty): Likewise.
1337         Reported by Eric Blake.
1338
1339 2010-03-22  Eric Blake  <eblake@redhat.com>
1340
1341         gethostname: fix build on mingw
1342         * lib/unistd.in.h (includes): Work around fact that mingw
1343         <winsock2.h> re-includes <unistd.h>, by avoiding any
1344         redeclarations if we are being included by <winsock2.h>.
1345         Reported by Matthias Bolte.
1346
1347 2010-03-21  Bruno Haible  <bruno@clisp.org>
1348
1349         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
1350         * lib/forkpty.c (forkpty): New replacement function, from glibc with
1351         modifications.
1352         * lib/pty.in.h (forkpty): Update declaration. Add comments.
1353         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
1354         provide the replacement.
1355         * modules/forkpty (Depends-on): Add openpty, login_tty.
1356         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
1357         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
1358         * doc/glibc-functions/forkpty.texi: More supported platforms.
1359         * config/srclist.txt: Add forkpty.c (commented).
1360
1361 2010-03-21  Bruno Haible  <bruno@clisp.org>
1362
1363         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
1364         (Makefile.am): Verify that PTY_LIB is defined.
1365
1366         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
1367
1368 2010-03-21  Bruno Haible  <bruno@clisp.org>
1369
1370         Tests for module 'login_tty'.
1371         * modules/login_tty-tests: New file.
1372         * tests/test-login_tty.c: New file.
1373
1374         New module 'login_tty'.
1375         * lib/login_tty.c: New file.
1376         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
1377         * modules/login_tty: New file.
1378         * doc/glibc-functions/login_tty.texi: Mention the new module.
1379
1380 2010-03-21  Bruno Haible  <bruno@clisp.org>
1381
1382         login_tty: Documentation.
1383         * doc/glibc-functions/login_tty.texi: New file.
1384         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
1385
1386 2010-03-21  Bruno Haible  <bruno@clisp.org>
1387
1388         pty: Consistent macro naming.
1389         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
1390         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
1391         * modules/pty (configure.ac): Update.
1392
1393 2010-03-21  Bruno Haible  <bruno@clisp.org>
1394
1395         Tests for openpty: Make stricter.
1396         * tests/test-openpty.c (main): Add test of canonical processing and
1397         erase.
1398         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
1399
1400         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
1401         * lib/openpty.c (openpty): New replacement function.
1402         * lib/pty.in.h: Include <termios.h>.
1403         (openpty): Update declaration. Add comments.
1404         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
1405         is not declared, arrange to provide the replacement. Check for _getpty
1406         and posix_openpt.
1407         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
1408         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
1409         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
1410         * modules/pty-tests (test_pty_c___LDADD): New variable.
1411         * doc/glibc-functions/openpty.texi: More supported platforms.
1412
1413 2010-03-21  Bruno Haible  <bruno@clisp.org>
1414
1415         setenv: Tweaks.
1416         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
1417         the test program.
1418         * doc/posix-functions/setenv.texi: Update platforms list.
1419
1420 2010-03-21  Bruno Haible  <bruno@clisp.org>
1421
1422         New module 'unlockpt'.
1423         * lib/unlockpt.c: New file, from glibc with modifications.
1424         * m4/unlockpt.m4: New file.
1425         * modules/unlockpt: New file.
1426         * lib/stdlib.in.h (unlockpt): New declaration.
1427         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
1428         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
1429         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
1430         HAVE_UNLOCKPT.
1431         * doc/posix-functions/unlockpt.texi: Mention the new module.
1432         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
1433         * config/srclist.txt: Add unlockpt.c (commented).
1434
1435 2010-03-21  Jim Meyering  <meyering@redhat.com>
1436
1437         maint.mk: prohibit inclusion of "intprops.h" without use
1438         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
1439
1440 2010-03-21  Bruno Haible  <bruno@clisp.org>
1441
1442         New module 'grantpt'.
1443         * lib/grantpt.c: New file, from glibc with modifications.
1444         * m4/grantpt.m4: New file.
1445         * modules/grantpt: New file.
1446         * lib/stdlib.in.h (grantpt): New declaration.
1447         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
1448         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
1449         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
1450         HAVE_GRANTPT.
1451         * doc/posix-functions/grantpt.texi: Mention the new module.
1452         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
1453         * config/srclist.txt: Add grantpt.c (commented).
1454
1455 2010-03-21  Bruno Haible  <bruno@clisp.org>
1456
1457         New module 'pt_chown'.
1458         * lib/pt_chown.c: New file, from glibc with modifications.
1459         * lib/pty-private.h: New file, from glibc with modifications.
1460         * modules/pt_chown: New file.
1461         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
1462
1463 2010-03-21  Bruno Haible  <bruno@clisp.org>
1464
1465         Tests for module 'ptsname'.
1466         * modules/ptsname-tests: New file.
1467         * tests/test-ptsname.c: New file.
1468
1469         New module 'ptsname'.
1470         * lib/ptsname.c: New file, from glibc with modifications.
1471         * m4/ptsname.m4: New file.
1472         * modules/ptsname: New file.
1473         * lib/stdlib.in.h (ptsname): New declaration.
1474         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
1475         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
1476         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
1477         HAVE_PTSNAME.
1478         * doc/posix-functions/ptsname.texi: Mention the new module.
1479         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
1480         * config/srclist.txt: Add ptsname.c (commented).
1481
1482 2010-03-21  Bruno Haible  <bruno@clisp.org>
1483
1484         Tests for module 'ttyname_r'.
1485         * modules/ttyname_r-tests: New file.
1486         * tests/test-ttyname_r.c: New file.
1487
1488         New module 'ttyname_r'.
1489         * lib/ttyname_r.c: New file.
1490         * m4/ttyname_r.m4: New file.
1491         * modules/ttyname_r: New file.
1492         * lib/unistd.in.h (ttyname_r): New declaration.
1493         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
1494         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
1495         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
1496         HAVE_TTYNAME_R.
1497         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
1498         * doc/posix-functions/ttyname_r.texi: Mention the new module.
1499
1500 2010-03-20  Bruno Haible  <bruno@clisp.org>
1501
1502         signal: Undefine macro definitions in C++ mode.
1503         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
1504         sigfillset): Undefine macro definitions from the system header in C++
1505         mode.
1506         Reported by John W. Eaton <jwe@gnu.org>.
1507
1508 2010-03-20  Bruno Haible  <bruno@clisp.org>
1509
1510         Ensure no #include statements inside extern "C" { ... }.
1511         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
1512         contain #include statements.
1513         * lib/time.in.h: Likewise.
1514
1515 2010-03-20  Bruno Haible  <bruno@clisp.org>
1516
1517         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
1518         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
1519         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
1520         Reported by John W. Eaton <jwe@gnu.org>.
1521
1522 2010-03-20  Bruno Haible  <bruno@clisp.org>
1523
1524         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
1525         Reported by Jim Meyering.
1526
1527 2010-03-20  Bruno Haible  <bruno@clisp.org>
1528
1529         pipe: Set errno upon failure.
1530         * lib/pipe.h: Specify that when -1 is returned, errno is set.
1531         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
1532         errno value in error message.
1533
1534 2010-03-20  Bruno Haible  <bruno@clisp.org>
1535             Jim Meyering  <meyering@redhat.com>
1536
1537         lchown: Avoid "unused variable" warning.
1538         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
1539
1540 2010-03-20  Bruno Haible  <bruno@clisp.org>
1541
1542         Work around unlink() bug on MacOS X 10.5.6.
1543         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
1544         attempting to unlink a parent directory.
1545         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
1546         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
1547         activate for the replacement function.
1548         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
1549
1550 2010-03-20  Bruno Haible  <bruno@clisp.org>
1551
1552         Fix link errors on Solaris 8.
1553         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
1554         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
1555
1556 2010-03-19  Jim Meyering  <meyering@redhat.com>
1557
1558         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
1559         The _LIBC implementation of build_range_exp correctly honors the
1560         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
1561         However, the non-_LIBC implementation would ignore that syntax-bit
1562         flag and return REG_ERANGE unconditionally.
1563         This change makes it honor that flag.
1564         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
1565         Make two pointer parameters "const".
1566         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
1567         (parse_bracket_exp): Update caller.
1568
1569         regex.m4: correct the reversed range endpoint ([b-a]) test
1570         * m4/regex.m4: When requiring that [b-a] evoke failure,
1571         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
1572         test pass once again for x86-based systems.
1573
1574 2010-03-19  Bruno Haible  <bruno@clisp.org>
1575
1576         scandir: Fix link error on Solaris 8.
1577         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
1578         macros.
1579
1580 2010-03-19  Bruno Haible  <bruno@clisp.org>
1581
1582         getusershell: Fix documentation.
1583         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
1584         module.
1585         * doc/glibc-functions/setusershell.texi: Likewise.
1586
1587         getusershell: Provide declaration, missing on Solaris 9.
1588         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
1589         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
1590         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
1591         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
1592         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1593         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
1594         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
1595         HAVE_GETUSERSHELL.
1596         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
1597
1598 2010-03-19  Bruno Haible  <bruno@clisp.org>
1599
1600         wctype: Provide iswblank function.
1601         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
1602         exists and is fine.
1603         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
1604         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
1605         * tests/test-wctype.c (main): Re-enable the iswblank tests.
1606         * doc/posix-functions/iswblank.texi: Update.
1607
1608 2010-03-19  Bruno Haible  <bruno@clisp.org>
1609
1610         Tests of module 'pty' in C++ mode.
1611         * modules/pty-tests: New file.
1612         * tests/test-pty-c++.cc: New file.
1613         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1614
1615 2010-03-19  Eric Blake  <eblake@redhat.com>
1616
1617         logb: fix documentation
1618         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
1619         1.5 declaration bug.
1620
1621         forkpty, openpty: prefer glibc's const-safe prototype
1622         * lib/forkpty.c (rpl_forkpty): New file.
1623         * lib/openpty.c (rpl_openpty): Likewise.
1624         * modules/forkpty (Files): Distribute it.
1625         * modules/openpty (Files): Likewise.
1626         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
1627         check...
1628         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
1629         replacement for for non-const BSD signature.
1630         * modules/pty (Makefile.am): Substitute witnesses.
1631         * lib/pty.in.h (forkpty, openpty): Declare replacements.
1632         * tests/test-forkpty.c: Update signature check.
1633         * tests/test-openpty.c: Likewise.
1634         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
1635         * doc/glibc-functions/openpty.texi (openpty): Likewise.
1636
1637         forkpty, openpty: split functions into new modules
1638         * modules/pty (Makefile.am): Substitute new witnesses.
1639         (Libraries): Move library detection...
1640         * modules/forkpty: ...into new module.
1641         * modules/openpty: Another new module.
1642         * modules/pty-tests: Rename and split...
1643         * modules/forkpty-tests: ...to this...
1644         * modules/openpty-tests: ...and this.
1645         * tests/test-pty.c: Rename and split...
1646         * tests/test-forkpty.c: ...to this...
1647         * tests/test-openpty.c: ...and this.
1648         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
1649         (gl_PTY): Split library searching...
1650         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
1651         (gl_FORKPTY, gl_OPENPTY): New macros.
1652         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
1653         * NEWS: Mention the split.
1654         * MODULES.html.sh (Misc): Document the modules.
1655         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
1656         * doc/glibc-functions/openpty.texi (openpty): Likewise.
1657
1658         pty: improve replacement header
1659         * lib/pty.in.h: New file.
1660         * modules/pty (Files): Ship it.
1661         (Makefile.am): Always build replacement.
1662         * m4/pty.m4: Rename...
1663         * m4/pty_h.m4: ...to this.
1664         (gl_PTY): Modernize setting of witness macros; update check of
1665         forkpty to take proper advantage of cache.
1666         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
1667
1668         getopt: avoid compiler warning
1669         * lib/getopt.c (attribute_hidden): Remove unused macro.
1670
1671 2010-03-18  Bruno Haible  <bruno@clisp.org>
1672
1673         Fix link errors on Solaris 8.
1674         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
1675         * modules/search-tests (test_search_c___LDADD): Likewise.
1676         * modules/signal-tests (test_signal_c___LDADD): Likewise.
1677         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
1678         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
1679         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
1680         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
1681         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
1682         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
1683
1684 2010-03-18  Bruno Haible  <bruno@clisp.org>
1685
1686         Fix bug introduced on 2010-03-14.
1687         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
1688         (gl_SPAWN_H): Require it.
1689         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
1690         Reported by Simon Josefsson.
1691
1692 2010-03-18  Bruno Haible  <bruno@clisp.org>
1693
1694         Fix typo introduced on 2009-12-31.
1695         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
1696         posix_spawn_file_actions_adddup2.
1697
1698 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
1699         and Eric Blake  <eblake@redhat.com>
1700
1701         test-vc-list-files-git: make more robust
1702         * tests/test-vc-list-files-git.sh: Unset problematic environment
1703         variables.  Chain commands together.
1704
1705 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
1706
1707         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
1708         `AC_CHECK_DECL' invocation.
1709
1710 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
1711
1712         * lib/inttostr.c (inttostr): Make sure the invocation of verify
1713         appears before executable statements. Suggested by Petr Sumbera
1714         <Petr.Sumbera@Sun.COM>.
1715
1716 2010-03-14  Bruno Haible  <bruno@clisp.org>
1717
1718         * tests/test-flock.c (test_exclusive): Comment out a test that causes
1719         portability problems. Instead use a simpler test.
1720         (main): Check that invalid arguments are rejected only on Linux.
1721
1722 2010-03-14  Bruno Haible  <bruno@clisp.org>
1723
1724         Fix bug introduced on 2009-12-31.
1725         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
1726         gl_PREREQ_SYS_H_WINSOCK2 always.
1727         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
1728         SYS_SOCKET_H variable.
1729         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
1730         Update comments.
1731         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
1732         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
1733         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
1734         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
1735         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
1736
1737 2010-03-14  Bruno Haible  <bruno@clisp.org>
1738
1739         Fix values returned by sinl, cosl.
1740         * lib/trigl.h: Add specification comments.
1741         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
1742         that combines the values from the precomputed table with the values of
1743         the Chebyshev polynomials.
1744
1745 2010-03-14  Bruno Haible  <bruno@clisp.org>
1746
1747         Fix compilation error when modules 'posix_spawn[p]' are not used.
1748         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
1749         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
1750
1751 2010-03-14  Bruno Haible  <bruno@clisp.org>
1752
1753         Fix compilation error on mingw when module 'time_r' is not used.
1754         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
1755         is 1.
1756         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
1757         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1758         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
1759         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
1760
1761 2010-03-14  Bruno Haible  <bruno@clisp.org>
1762
1763         Fix compilation error with Sun C.
1764         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
1765         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
1766         instead of GCC specific ULONG_LONG_MAX.
1767         * lib/xstrtoll.c: Likewise.
1768         * lib/xstrtoull.c: Likewise.
1769
1770 2010-03-13  Bruno Haible  <bruno@clisp.org>
1771
1772         Allow the user to disable C++ code and tests.
1773         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
1774         (gl_PROG_ANSI_CXX): Require it.
1775
1776 2010-03-13  Bruno Haible  <bruno@clisp.org>
1777
1778         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
1779         cases.
1780
1781 2010-03-13  Bruno Haible  <bruno@clisp.org>
1782
1783         Test that gnulib does not break the standard C++ headers.
1784         * tests/test-locale-c++2.cc: New file.
1785         * modules/locale-tests (Files): Add it.
1786         (Makefile.am): Compile it for test-locale-c++.
1787         * tests/test-math-c++2.cc: New file.
1788         * modules/math-tests (Files): Add it.
1789         (Makefile.am): Compile it for test-math-c++.
1790         * tests/test-signal-c++2.cc: New file.
1791         * modules/signal-tests (Files): Add it.
1792         (Makefile.am): Compile it for test-signal-c++.
1793         * tests/test-stdio-c++2.cc: New file.
1794         * modules/stdio-tests (Files): Add it.
1795         (Makefile.am): Compile it for test-stdio-c++.
1796         * tests/test-stdlib-c++2.cc: New file.
1797         * modules/stdlib-tests (Files): Add it.
1798         (Makefile.am): Compile it for test-stdlib-c++.
1799         * tests/test-string-c++2.cc: New file.
1800         * modules/string-tests (Files): Add it.
1801         (Makefile.am): Compile it for test-string-c++.
1802         * tests/test-time-c++2.cc: New file.
1803         * modules/time-tests (Files): Add it.
1804         (Makefile.am): Compile it for test-time-c++.
1805         Reported by John W. Eaton <jwe@gnu.org>.
1806
1807 2010-03-13  Bruno Haible  <bruno@clisp.org>
1808
1809         * gnulib-tool (func_usage): Clarify which options are available for
1810         --create-testdir and --create-megatestdir.
1811
1812 2010-03-13  Bruno Haible  <bruno@clisp.org>
1813
1814         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
1815         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
1816         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
1817         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
1818         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
1819         when appropriate.
1820         Reported by Jim Meyering.
1821
1822 2010-03-12  Simon Josefsson  <simon@josefsson.org>
1823
1824         * gnulib-tool (func_import): Explain origin of code.
1825
1826 2010-03-12  Bruno Haible  <bruno@clisp.org>
1827
1828         Fix problem with automake's definition of CXXLINK.
1829         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
1830         Reported by Simon Josefsson and Ludovic Courtès.
1831
1832 2010-03-12  Bruno Haible  <bruno@clisp.org>
1833
1834         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
1835         stable releases.
1836
1837 2010-03-11  Bruno Haible  <bruno@clisp.org>
1838
1839         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
1840         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
1841         whether the system provides one variant or multiple variants of the
1842         function.
1843         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
1844         C++ compilers.
1845         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
1846         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
1847         Reported by Jim Meyering.
1848
1849 2010-03-09  Simon Josefsson  <simon@josefsson.org>
1850
1851         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
1852
1853 2010-03-08  Bruno Haible  <bruno@clisp.org>
1854
1855         gnulib-tool: Add support for --libtool in --create-testdir.
1856         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
1857         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
1858
1859 2010-03-08  Eric Blake  <eblake@redhat.com>
1860
1861         gnulib-tool.texi: mention possibility of git submodule
1862         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
1863         submodules.
1864         * doc/.gitignore: Ignore another generated file.
1865
1866 2010-03-08  Karl Berry  <karl@gnu.org>
1867
1868         * doc/gnulib-tool.texi (VCS Issues): Mention third option
1869         of committing gnulib files while skipping others.
1870
1871 2010-03-07  Bruno Haible  <bruno@clisp.org>
1872
1873         Tests of module 'wctype' in C++ mode.
1874         * tests/test-wctype-c++.cc: New file.
1875         * modules/wctype-tests (Files): Add it and tests/signature.h.
1876         (Depends-on): Add ansi-c++-opt.
1877         (Makefile.am): Arrange to compile and run test-wctype-c++.
1878
1879         Tests of module 'wchar' in C++ mode.
1880         * tests/test-wchar-c++.cc: New file.
1881         * modules/wchar-tests (Files): Add it and tests/signature.h.
1882         (Depends-on): Add ansi-c++-opt.
1883         (Makefile.am): Arrange to compile and run test-wchar-c++.
1884         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
1885         gl_MODULE_INDICATOR.
1886
1887         Tests of module 'unistd' in C++ mode.
1888         * tests/test-unistd-c++.cc: New file.
1889         * modules/unistd-tests (Files): Add it and tests/signature.h.
1890         (Depends-on): Add ansi-c++-opt.
1891         (Makefile.am): Arrange to compile and run test-unistd-c++.
1892         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
1893         gl_MODULE_INDICATOR.
1894
1895         Tests of module 'time' in C++ mode.
1896         * tests/test-time-c++.cc: New file.
1897         * modules/time-tests (Files): Add it and tests/signature.h.
1898         (Depends-on): Add ansi-c++-opt.
1899         (Makefile.am): Arrange to compile and run test-time-c++.
1900         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1901
1902         Tests of module 'sys_time' in C++ mode.
1903         * tests/test-sys_time-c++.cc: New file.
1904         * modules/sys_time-tests (Files): Add it and tests/signature.h.
1905         (Depends-on): Add ansi-c++-opt.
1906         (Makefile.am): Arrange to compile and run test-sys_time-c++.
1907         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
1908         gl_MODULE_INDICATOR.
1909
1910         Tests of module 'sys_stat' in C++ mode.
1911         * tests/test-sys_stat-c++.cc: New file.
1912         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
1913         (Depends-on): Add ansi-c++-opt.
1914         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
1915         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
1916         gl_MODULE_INDICATOR.
1917
1918         Tests of module 'sys_socket' in C++ mode.
1919         * tests/test-sys_socket-c++.cc: New file.
1920         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
1921         (Depends-on): Add ansi-c++-opt.
1922         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
1923         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
1924         gl_MODULE_INDICATOR.
1925
1926         Tests of module 'sys_select' in C++ mode.
1927         * tests/test-sys_select-c++.cc: New file.
1928         * modules/sys_select-tests (Files): Add it and tests/signature.h.
1929         (Depends-on): Add ansi-c++-opt.
1930         (Makefile.am): Arrange to compile and run test-sys_select-c++.
1931         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
1932         gl_MODULE_INDICATOR.
1933
1934         Tests of module 'sys_ioctl' in C++ mode.
1935         * tests/test-sys_ioctl-c++.cc: New file.
1936         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
1937         (Depends-on): Add ansi-c++-opt.
1938         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
1939         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
1940         gl_MODULE_INDICATOR.
1941
1942         Tests of module 'string' in C++ mode.
1943         * tests/test-string-c++.cc: New file.
1944         * modules/string-tests (Files): Add it and tests/signature.h.
1945         (Depends-on): Add ansi-c++-opt.
1946         (Makefile.am): Arrange to compile and run test-string-c++.
1947         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
1948         gl_MODULE_INDICATOR.
1949
1950         Tests of module 'stdlib' in C++ mode.
1951         * tests/test-stdlib-c++.cc: New file.
1952         * modules/stdlib-tests (Files): Add it and tests/signature.h.
1953         (Depends-on): Add ansi-c++-opt.
1954         (Makefile.am): Arrange to compile and run test-stdlib-c++.
1955         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
1956         gl_MODULE_INDICATOR.
1957
1958         Tests of module 'stdio' in C++ mode.
1959         * tests/test-stdio-c++.cc: New file.
1960         * modules/stdio-tests (Files): Add it and tests/signature.h.
1961         (Depends-on): Add ansi-c++-opt.
1962         (Makefile.am): Arrange to compile and run test-stdio-c++.
1963         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
1964         gl_MODULE_INDICATOR.
1965
1966         Tests of module 'spawn' in C++ mode.
1967         * tests/test-spawn-c++.cc: New file.
1968         * modules/spawn-tests (Files): Add it and tests/signature.h.
1969         (Depends-on): Add ansi-c++-opt.
1970         (Makefile.am): Arrange to compile and run test-spawn-c++.
1971         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
1972         gl_MODULE_INDICATOR.
1973
1974         Tests of module 'signal' in C++ mode.
1975         * tests/test-signal-c++.cc: New file.
1976         * modules/signal-tests (Files): Add it and tests/signature.h.
1977         (Depends-on): Add ansi-c++-opt.
1978         (Makefile.am): Arrange to compile and run test-signal-c++.
1979         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
1980         gl_MODULE_INDICATOR.
1981
1982         Tests of module 'search' in C++ mode.
1983         * tests/test-search-c++.cc: New file.
1984         * modules/search-tests (Files): Add it and tests/signature.h.
1985         (Depends-on): Add ansi-c++-opt.
1986         (Makefile.am): Arrange to compile and run test-search-c++.
1987         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
1988         gl_MODULE_INDICATOR.
1989
1990         Tests of module 'math' in C++ mode.
1991         * tests/test-math-c++.cc: New file.
1992         * modules/math-tests (Files): Add it and tests/signature.h.
1993         (Depends-on): Add ansi-c++-opt.
1994         (Makefile.am): Arrange to compile and run test-math-c++.
1995         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1996
1997         Tests of module 'locale' in C++ mode.
1998         * tests/test-locale-c++.cc: New file.
1999         * modules/locale-tests (Files): Add it and tests/signature.h.
2000         (Depends-on): Add ansi-c++-opt.
2001         (Makefile.am): Arrange to compile and run test-locale-c++.
2002         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
2003         gl_MODULE_INDICATOR.
2004
2005         Tests of module 'langinfo' in C++ mode.
2006         * tests/test-langinfo-c++.cc: New file.
2007         * modules/langinfo-tests (Files): Add it and tests/signature.h.
2008         (Depends-on): Add ansi-c++-opt.
2009         (Makefile.am): Arrange to compile and run test-langinfo-c++.
2010         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
2011         gl_MODULE_INDICATOR.
2012
2013         Tests of module 'iconv-h' in C++ mode.
2014         * tests/test-iconv-h-c++.cc: New file.
2015         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
2016         (Depends-on): Add ansi-c++-opt.
2017         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
2018
2019         Tests of module 'glob' in C++ mode.
2020         * tests/test-glob-c++.cc: New file.
2021         * modules/glob-tests (Files): Add it.
2022         (Depends-on): Add ansi-c++-opt.
2023         (Makefile.am): Arrange to compile and run test-glob-c++.
2024
2025         Tests of module 'fcntl-h' in C++ mode.
2026         * tests/test-fcntl-h-c++.cc: New file.
2027         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
2028         (Depends-on): Add ansi-c++-opt.
2029         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
2030         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
2031         gl_MODULE_INDICATOR.
2032
2033         Tests of module 'dirent' in C++ mode.
2034         * tests/test-dirent-c++.cc: New file.
2035         * modules/dirent-tests (Files): Add it and tests/signature.h.
2036         (Depends-on): Add ansi-c++-opt.
2037         (Makefile.am): Arrange to compile and run test-dirent-c++.
2038         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
2039         gl_MODULE_INDICATOR.
2040
2041         New module 'ansi-c++-opt'.
2042         * modules/ansi-c++-opt: New file.
2043         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
2044
2045         Document C++ namespace mode.
2046         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
2047
2048         wctype: Avoid #define replacements in C++ mode.
2049         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
2050         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
2051         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
2052         In C++, define a namespaced alias symbol.
2053         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
2054         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
2055         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
2056         rule.
2057
2058         wchar: Avoid #define replacements in C++ mode.
2059         * lib/wchar.in.h: Include c++defs.h.
2060         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
2061         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
2062         symbol.
2063         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
2064         * modules/wchar (Depends-on): Add c++defs.
2065         (Makefile.am): Update wchar.h rule.
2066
2067         unistd: Avoid #define replacements in C++ mode.
2068         * lib/unistd.in.h: Include c++defs.h.
2069         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
2070         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
2071         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
2072         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
2073         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
2074         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
2075         symbol.
2076         (environ): Update.
2077         * modules/unistd (Depends-on): Add c++defs.
2078         (Makefile.am): Update unistd.h rule.
2079
2080         time: Avoid #define replacements in C++ mode.
2081         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
2082         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
2083         define a namespaced alias symbol.
2084         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
2085         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
2086         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
2087         * modules/time (Depends-on): Add c++defs, warn-on-use.
2088         (Makefile.am): Update time.h rule.
2089         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
2090         * modules/nanosleep (configure.ac): Likewise.
2091         * modules/strptime (configure.ac): Likewise.
2092         * modules/timegm (configure.ac): Likewise.
2093
2094         sys_time: Avoid #define replacements in C++ mode.
2095         * lib/sys_time.in.h: Include c++defs.h.
2096         (gettimeofday): In C++, define a namespaced alias symbol.
2097         * modules/sys_time (Depends-on): Add c++defs.
2098         (Makefile.am): Update sys/time.h rule.
2099
2100         sys_stat: Avoid #define replacements in C++ mode.
2101         * lib/sys_stat.in.h: Include c++defs.h.
2102         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
2103         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
2104         namespaced alias symbol.
2105         In C++, define a namespaced alias symbol.
2106         * modules/sys_stat (Depends-on): Add c++defs.
2107         (Makefile.am): Update sys/stat.h rule.
2108
2109         sys_socket: Avoid #define replacements in C++ mode.
2110         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
2111         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
2112         definitions also when the system has a <sys/socket.h>.
2113         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
2114         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
2115         In C++, define a namespaced alias symbol.
2116         * modules/sys_socket (Depends-on): Add c++defs.
2117         (Makefile.am): Update sys/socket.h rule.
2118
2119         sys_select: Avoid #define replacements in C++ mode.
2120         * lib/sys_select.in.h: Include c++defs.h. Enable the function
2121         definitions also when the system has a <sys/select.h>.
2122         (select): In C++, define a namespaced alias symbol.
2123         * modules/sys_select (Depends-on): Add c++defs.
2124         (Makefile.am): Update sys/select.h rule.
2125
2126         sys_ioctl: Avoid #define replacements in C++ mode.
2127         * lib/sys_ioctl.in.h: Include c++defs.h.
2128         (ioctl): In C++, define a namespaced alias symbol.
2129         * modules/sys_ioctl (Depends-on): Add c++defs.
2130         (Makefile.am): Update sys/ioctl.h rule.
2131
2132         string: Avoid #define replacements in C++ mode.
2133         * lib/string.in.h: Include c++defs.h.
2134         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
2135         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
2136         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
2137         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
2138         strsignal, strverscmp): In C++, define a namespaced alias symbol.
2139         * modules/string (Depends-on): Add c++defs.
2140         (Makefile.am): Update string.h rule.
2141
2142         stdlib: Avoid #define replacements in C++ mode.
2143         * lib/stdlib.in.h: Include c++defs.h.
2144         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
2145         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
2146         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
2147         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
2148         symbol.
2149         * modules/stdlib (Depends-on): Add c++defs.
2150         (Makefile.am): Update stdlib.h rule.
2151
2152         stdio: Avoid #define replacements in C++ mode.
2153         * lib/stdio.in.h: Include c++defs.h.
2154         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
2155         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
2156         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
2157         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
2158         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
2159         namespaced alias symbol.
2160         * modules/stdio (Depends-on): Add c++defs.
2161         (Makefile.am): Update stdio.h rule.
2162
2163         spawn: Avoid #define replacements in C++ mode.
2164         * lib/spawn.in.h: Include c++defs.h.
2165         (posix_spawn, posix_spawnp, posix_spawnattr_init,
2166         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
2167         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
2168         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
2169         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
2170         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
2171         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
2172         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
2173         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
2174         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
2175         In C++, define a namespaced alias symbol.
2176         * modules/spawn (Depends-on): Add c++defs.
2177         (Makefile.am): Update spawn.h rule.
2178
2179         signal: Avoid #define replacements in C++ mode.
2180         * lib/signal.in.h: Include c++defs.h.
2181         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
2182         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
2183         namespaced alias symbol.
2184         * modules/signal (Depends-on): Add c++defs.
2185         (Makefile.am): Update signal.h rule.
2186
2187         search: Avoid #define replacements in C++ mode.
2188         * lib/search.in.h: Include c++defs.h.
2189         (_gl_search_compar_fn, _gl_search_action_fn): New types.
2190         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
2191         symbol.
2192         * modules/search (Depends-on): Add c++defs.
2193         (Makefile.am): Update search.h rule.
2194
2195         math: Avoid #define replacements in C++ mode.
2196         * lib/math.in.h: Include c++defs.h.
2197         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
2198         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
2199         trunc, truncl): In C++, define a namespaced alias symbol.
2200         * modules/math (Depends-on): Add c++defs.
2201         (Makefile.am): Update math.h rule.
2202
2203         locale: Avoid #define replacements in C++ mode.
2204         * lib/locale.in.h: Include c++defs.h.
2205         (duplocale): In C++, define a namespaced alias symbol.
2206         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
2207         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
2208         * modules/locale (Depends-on): Add c++defs.
2209         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
2210
2211         langinfo: Avoid #define replacements in C++ mode.
2212         * lib/langinfo.in.h: Include c++defs.h.
2213         (nl_langinfo): In C++, define a namespaced alias symbol.
2214         * modules/langinfo (Depends-on): Add c++defs.
2215         (Makefile.am): Update langinfo.h rule.
2216
2217         iconv-h: Avoid #define replacements in C++ mode.
2218         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
2219         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
2220         symbol.
2221         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
2222         whenever iconv is present.
2223         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
2224         (Makefile.am): Update iconv.h rule.
2225
2226         glob: Avoid #define replacements in C++ mode.
2227         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
2228         (_gl_glob_errfunc_fn): New type.
2229         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
2230         symbol.
2231         * modules/glob (Depends-on): Add c++defs, warn-on-use.
2232         (Makefile.am): Update glob.h rule.
2233
2234         fcntl-h: Avoid #define replacements in C++ mode.
2235         * lib/fcntl.in.h: Include c++defs.h.
2236         (fcntl, open, openat): In C++, define a namespaced alias symbol.
2237         * modules/fcntl-h (Depends-on): Add c++defs.
2238         (Makefile.am): Update fcntl.h rule.
2239
2240         dirent: Avoid #define replacements in C++ mode.
2241         * lib/dirent.in.h: Include c++defs.h.
2242         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
2243         namespaced alias symbol.
2244         (dirfd): Update declaration.
2245         * modules/dirent (Depends-on): Add c++defs.
2246         (Makefile.am): Update dirent.h rule.
2247
2248         ctype: Make it usable in C++ code.
2249         * lib/ctype.in.h: Include c++defs.h.
2250         (isblank): Declare as extern "C".
2251         * modules/ctype (Depends-on): Add c++defs.
2252         (Makefile.am): Update ctype.h rule.
2253
2254         New module 'c++defs'.
2255         * modules/c++defs: New file.
2256         * build-aux/c++defs.h: New file.
2257         Reported by John W. Eaton <jwe@gnu.org>.
2258
2259 2010-03-07  Bruno Haible  <bruno@clisp.org>
2260
2261         logb: Provide missing declaration for Cygwin.
2262         * lib/math.in.h (logb): New declaration.
2263         * m4/logb.m4: New file.
2264         * modules/logb (Files): Add m4/logb.m4.
2265         (Depends-on): Add math.
2266         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
2267         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
2268         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
2269         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
2270         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
2271
2272 2010-03-07  Bruno Haible  <bruno@clisp.org>
2273
2274         Fix test-cond link error.
2275         * tests/test-cond.c: Include <stdio.h>.
2276
2277 2010-03-07  Bruno Haible  <bruno@clisp.org>
2278
2279         Fix test-dirent-safer link error.
2280         * modules/dirent-safer-tests (Makefile.am): Define
2281         test_dirent_safer_LDADD.
2282
2283 2010-03-07  Bruno Haible  <bruno@clisp.org>
2284
2285         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
2286         among default module list.
2287
2288 2010-03-07  Bruno Haible  <bruno@clisp.org>
2289
2290         Fix link error on platforms with GNU libiconv.
2291         * modules/unistr/u8-strcoll-tests (Makefile): Define
2292         test_u8_strcoll_LDADD.
2293         * modules/unistr/u16-strcoll-tests (Makefile): Define
2294         test_u16_strcoll_LDADD.
2295         * modules/unistr/u32-strcoll-tests (Makefile): Define
2296         test_u32_strcoll_LDADD.
2297
2298 2010-03-07  Bruno Haible  <bruno@clisp.org>
2299
2300         Use POSIX declarations for socket functions.
2301         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
2302         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
2303         rpl_sendto): Change declaration to match POSIX.
2304         * lib/connect.c (rpl_connect): Likewise.
2305         * lib/accept.c (rpl_accept): Likewise.
2306         * lib/bind.c (rpl_bind): Likewise.
2307         * lib/getpeername.c (rpl_getpeername): Likewise.
2308         * lib/getsockname.c (rpl_getsockname): Likewise.
2309         * lib/recv.c (rpl_recv): Likewise.
2310         * lib/send.c (rpl_send): Likewise.
2311         * lib/recvfrom.c (rpl_recvfrom): Likewise.
2312         * lib/sendto.c (rpl_sendto): Likewise.
2313
2314 2010-03-06  Bruno Haible  <bruno@clisp.org>
2315
2316         Clarify access, euidaccess, faccessat.
2317         * doc/posix-functions/faccessat.texi: Mention security problem under
2318         "Other problems", not "Portability problems".
2319         * doc/posix-functions/access.texi: Likewise. Mention a related security
2320         problem.
2321         * doc/glibc-functions/euidaccess.texi: Mention security problems.
2322         * lib/euidaccess.c: Add comments about platforms.
2323         * lib/unistd.in.h (access, euidaccess): Add warnings.
2324
2325 2010-03-07  Bruno Haible  <bruno@clisp.org>
2326
2327         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
2328         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
2329         (POSIX_SPAWN_SETSCHEDULER): Likewise.
2330         (POSIX_SPAWN_USEVFORK): Define in a way that works when
2331         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2332         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
2333         declare when POSIX_SPAWN_SETSCHEDULER is zero.
2334         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
2335         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
2336         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
2337         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
2338         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
2339         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
2340         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
2341         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
2342         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
2343         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
2344         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
2345         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
2346         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
2347         Likewise.
2348         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
2349         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
2350         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
2351         Likewise.
2352         * tests/test-spawn.c (main): Make it work when
2353         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2354
2355 2010-03-07  Bruno Haible  <bruno@clisp.org>
2356
2357         Fix incorrect Makefile.am generation in German locale.
2358         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2359         Execute sed command with character range in C locale.
2360
2361 2010-03-06  Bruno Haible  <bruno@clisp.org>
2362
2363         Tests for module 'iconv-h'.
2364         * modules/iconv-h-tests: New file.
2365         * tests/test-iconv-h.c: New file.
2366
2367         New module 'iconv-h'.
2368         * modules/iconv-h: New file.
2369         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
2370         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
2371         (configure.ac): Remove gl_ICONV_H.
2372         (Makefile.am): Remove rule for iconv.h.
2373
2374 2010-03-06  Bruno Haible  <bruno@clisp.org>
2375
2376         More consistent naming of *.m4 files.
2377         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
2378         * modules/wctype (Files): Update.
2379
2380         More consistent naming of *.m4 files.
2381         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
2382         * modules/wchar (Files): Update.
2383
2384 2010-03-06  Jim Meyering  <meyering@redhat.com>
2385
2386         euidaccess: relax license to LGPLv2+
2387         * modules/euidaccess (License): Relax to LGPLv2+.
2388
2389 2010-03-06  Bruno Haible  <bruno@clisp.org>
2390
2391         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
2392         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
2393         (Makefile.am): Augment lib_SOURCES instead.
2394
2395 2010-03-04  Jim Meyering  <meyering@redhat.com>
2396
2397         utime: remove obsolete module
2398         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
2399         unnecessary for years, and has been marked as obsolete for 10 months.
2400         * modules/utime: Remove file.
2401         * lib/utime.c: Remove file.
2402         * m4/utime.m4: Remove file.
2403         * m4/utimes-null.m4: Remove file.
2404         * doc/posix-functions/utime.texi (utime): Remove reference to
2405         the module.  Move the sole "fixed by gnulib" item into the
2406         "problems not fixed by Gnulib" list.
2407         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
2408
2409 2010-03-05  Simon Josefsson  <simon@josefsson.org>
2410
2411         * modules/exit (License): Relax license to LGPLv2+.
2412         (Status): Mark as obsolete.
2413         * NEWS: Mention deprecated 'exit' module.
2414         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
2415         of now obsolete 'exit'.
2416
2417 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2418
2419         fts-lgpl: remove unused module
2420         * modules/fts-lgpl: Remove.
2421         * MODULES.html.sh (func_all_modules): Adjust.
2422         * check-module (find_included_lib_files): Adjust.
2423         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
2424
2425 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
2426
2427         copy-acl: enhance Solaris ACL error handling
2428         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
2429         * lib/set-mode-acl.c (qset_acl): Likewise.
2430
2431 2010-03-02  Bruno Haible  <bruno@clisp.org>
2432
2433         spawn: Don't override the system defined values on FreeBSD 8.
2434         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
2435         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
2436         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
2437         if HAVE_POSIX_SPAWN is 1.
2438         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
2439
2440 2010-03-01  Bruno Haible  <bruno@clisp.org>
2441
2442         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
2443         regarding Automake.
2444
2445 2010-02-25  Bruno Haible  <bruno@clisp.org>
2446
2447         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
2448         * gnulib-tool: Define 'echo' as a function only before the ksh alias
2449         setting, not afterwards.
2450         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
2451
2452 2010-02-24  Eric Blake  <eblake@redhat.com>
2453
2454         bootstrap, git-version-gen: use timestamp
2455         * build-aux/git-version-gen (scriptversion): Force UTC.
2456         * build-aux/bootstrap (scriptversion): New variable.
2457
2458         bootstrap: allow older git
2459         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
2460         older than 1.6.4.  Requested by the libvirt project.
2461
2462 2010-02-23  Eric Blake  <eblake@redhat.com>
2463
2464         warn-on-use: work with old autoconf
2465         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
2466         AS_VAR semantics of autoconf 2.60.
2467         Reported by Bruno Haible.
2468
2469         bootstrap: improve some comments
2470         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
2471         clarification comments.
2472
2473         gettimeofday: provide correct function
2474         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
2475         when replacement is declared, otherwise provide gettimeofday.
2476         Reported by Michael Goffioul.
2477
2478 2010-02-23  Jim Meyering  <meyering@redhat.com>
2479
2480         lib-ignore: relax license to "unlimited", not LGPLv2+
2481         * modules/lib-ignore (License): Relax to "unlimited".
2482
2483 2010-02-23  Jim Meyering  <meyering@redhat.com>
2484
2485         lib-ignore: relax license to LGPLv2+
2486         * modules/lib-ignore (License): Relax to LGPLv2+.
2487
2488 2010-02-22  Eric Blake  <eblake@redhat.com>
2489
2490         lseek: avoid bash 3.2 broken pipe bug
2491         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
2492         warning from bash 3.2.
2493         Reported by Ben Pfaff, with analysis from Bruno Haible.
2494
2495         bootstrap: support non-FSF copyright holder
2496         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
2497         bootstrap.conf override of COPYRIGHT_HOLDER.
2498         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
2499
2500         bootstrap: interoperate with gettext 0.14.1
2501         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
2502
2503         bootstrap: allow for alternate submodule location
2504         * build-aux/bootstrap (gnulib_path): New variable; use instead of
2505         hardcoding submodule location.
2506         (gnulib_mk): Allow direct use of Makefile.am.
2507
2508         bootstrap: use GNULIB_SRCDIR to reduce disk usage
2509         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
2510         rather than reconfiguring where the submodule points.
2511
2512         gettimeofday: restore support for platforms that lack function
2513         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
2514         replacement if function is missing.
2515         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
2516         * modules/sys_time (Makefile.am): Substitute it.
2517         * lib/sys_time.in.h (gettimeofday): Check it.
2518         Reported by Michael Goffioul.
2519
2520 2010-02-21  Bruno Haible  <bruno@clisp.org>
2521
2522         * lib/stdio.in.h (obstack_printf): Fix typo.
2523
2524 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
2525
2526         vc-list-files: use bzr ls's -R option
2527         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
2528         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
2529
2530 2010-02-21  Jim Meyering  <meyering@redhat.com>
2531
2532         init.sh: fix EXEEXT shims to work also for names like test-prog
2533         * tests/init.sh: Re-exec a better shell, when needed.
2534         If the current shell lacks support for posix $(...), an init.sh-using
2535         test will now try to find a shell that supports that.  If EXEEXT is
2536         nonempty, we also require support for hyphen-in-alias-name and shell
2537         substitutions like ${var#glob}.  Failure to find such a shell results
2538         in a skipped test.
2539
2540 2010-02-21  Bruno Haible  <bruno@clisp.org>
2541
2542         Really work around around "broken pipe" error message from bash 3.2.
2543         * gnulib-tool (func_reset_sigpipe): Remove function.
2544         (echo): In bash 3.2, define to a function that uses printf.
2545         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
2546
2547 2010-02-20  Bruno Haible  <bruno@clisp.org>
2548
2549         Restore support for automake 1.9.6 with autoconf 2.61.
2550         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
2551         Reported by James Youngman <jay@gnu.org>.
2552
2553 2010-02-20  Bruno Haible  <bruno@clisp.org>
2554
2555         Improve *printf warning condition.
2556         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
2557         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
2558         and the function is overridden due to SIGPIPE emulation.
2559
2560 2010-02-20  Bruno Haible  <bruno@clisp.org>
2561
2562         * lib/stdio.in.h: Tweak comments.
2563
2564 2010-02-19  Bruno Haible  <bruno@clisp.org>
2565
2566         Make it easier to find modules. New gnulib-tool option '--find'.
2567         * gnulib-tool: New option --find.
2568         (func_usage): Document it.
2569         (func_sanitize_modulelist): New function, extracted from
2570         func_all_modules.
2571         (func_all_modules): Invoke it.
2572         * doc/gnulib-tool.texi (Which modules?): New node.
2573
2574 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
2575
2576         * lib/sys_select.in.h: Provide select replacement even if
2577         sys/select.h exists on a system, for Interix.
2578
2579 2010-02-18  Jim Meyering  <meyering@redhat.com>
2580
2581         init.sh: don't use $(...) just yet
2582         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
2583         to accommodate e.g., Solaris' /bin/sh.
2584
2585 2010-02-17  Bruno Haible  <bruno@clisp.org>
2586
2587         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
2588         Reported by Ludovic Courtès <ludo@gnu.org>.
2589
2590 2010-02-16  Simon Josefsson  <simon@josefsson.org>
2591
2592         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
2593         linking with -lintl.
2594
2595 2010-02-17  Simon Josefsson  <simon@josefsson.org>
2596
2597         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
2598         if not provided by the system's netdb.h.  Reported by
2599         ludo@gnu.org (Ludovic Courtès).
2600
2601 2010-02-15  Jim Meyering  <meyering@redhat.com>
2602
2603         init.sh: improve portability and efficiency
2604         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
2605         "dummy" in a for loop.
2606         Use '!', not '^' to select the complement of a character set used
2607         in a "case" statement.
2608         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
2609         Suggestions from Eric Blake.
2610
2611         init.sh: automatically accommodate programs with the .exe suffix
2612         Automatically arrange for an invocation of "prog" to execute the
2613         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
2614         may use the simpler "prog", yet still work when built on a system
2615         that requires specifying the added suffix.
2616         Do this by constructing a function named "prog" that invokes
2617         "prog.exe" for each .exe file in selected directories.
2618         * tests/init.sh (find_exe_basenames_): New function.
2619         (create_exe_shim_functions_): New function.
2620         (path_prepend_): Use it.
2621
2622         maint.mk: mark syntax-check sc_*.m rules as .PHONY
2623         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
2624         "make -t syntax-check" doesn't create a ton of sc_*.m files.
2625
2626 2010-02-14  Jim Meyering  <meyering@redhat.com>
2627
2628         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
2629         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
2630         (sc_prohibit_hash_pjw_without_use): New rule.
2631
2632         maint.mk: allow the default upload destination dir to be overridden
2633         * top/maint.mk (upload_dest_dir_): Define with a default that
2634         preserves the status quo.
2635         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
2636         Reported by Peter Simons.
2637
2638         maint.mk: prohibit inclusion of "hash.h" without_use
2639         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
2640
2641 2010-02-10  Jim Meyering  <meyering@redhat.com>
2642
2643         maint.mk: prohibit inclusion of "ignore-value.h" without_use
2644         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
2645
2646 2010-02-09  Eric Blake  <ebb9@byu.net>
2647         and Bruno Haible  <bruno@clisp.org>
2648
2649         obstack-printf-posix: ensure declaration
2650         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
2651         extracted from gl_FUNC_OBSTACK_PRINTF.
2652         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
2653         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
2654         Likewise.
2655         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
2656         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
2657         0.
2658
2659 2010-02-08  Bruno Haible  <bruno@clisp.org>
2660
2661         gnulib-tool: Fix typo in 2010-02-07 commit.
2662         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
2663         Reported by Eric Blake.
2664
2665 2010-02-07  Bruno Haible  <bruno@clisp.org>
2666
2667         gnulib-tool: Fix up caching patches.
2668         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
2669         option --no-cache. Use associative arrays when supported by the shell.
2670         (sed_comments): New variable.
2671         (modcache): Renamed from do_cache.
2672         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
2673         abbreviate unnecessarily.
2674         (have_associative): New variable.
2675         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
2676         way also for ksh and zsh.
2677         (func_init_sed_convert_to_cache_statements): New function, extracted
2678         from func_cache_lookup_module. Add support for associative arrays.
2679         Don't set the c_MODULE_cached variable here. Ignore all lines before
2680         the first field header. Remove only the final newline, not all trailing
2681         newlines. Support empty fields correctly. Limit the use of 'eval' to
2682         assignments.
2683         (func_get_description, func_get_status, func_get_notice,
2684         func_get_applicability, func_get_filelist, func_get_dependencies,
2685         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
2686         func_get_automake_snippet, func_get_include_directive,
2687         func_get_link_directive, func_get_license, func_get_maintainer):
2688         Update documentation. List the unoptimized code first. Add support for
2689         associative arrays. Limit the use of 'eval' to assignments.
2690         (func_get_applicability): Undo stylistic pessimisations.
2691         (func_get_automake_snippet, func_get_include_directive): Reduce code
2692         duplication.
2693         (func_modules_transitive_closure, func_modules_add_dummy,
2694         func_modules_notice, func_modules_to_filelist, func_add_file,
2695         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
2696         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
2697         func_create_testdir, func_create_megatestdir): Update documentation.
2698
2699 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2700
2701         * gnulib-tool (func_cache_lookup_module): Store the module name
2702         belonging to the cache variable; error out if two different
2703         module names map to the same cache variable name.
2704
2705 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2706
2707         gnulib-tool: Make caching optional.
2708         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
2709         Update matching short versions of --no-changelog.
2710         (func_usage): Update.
2711         (sed_extract_cache_prog): Renamed from ...
2712         (sed_extract_prog): ... this; revert to old extraction script.
2713         (func_get_description, func_get_status)
2714         (func_get_notice, func_get_applicability, func_get_filelist)
2715         (func_get_dependencies, func_get_autoconf_early_snippet)
2716         (func_get_autoconf_snippet, func_get_automake_snippet)
2717         (func_get_include_directive, func_get_link_directive)
2718         (func_get_license, func_get_maintainer): If $do_cache is false,
2719         use old, non-caching extraction scripts.
2720         Suggestion by Bruno Haible.
2721
2722 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2723
2724         gnulib-tool: cache module metainformation.
2725         * gnulib-tool (sed_extract_prog): Match newline before each
2726         header, and rewrite header to a shell variable suffix.
2727         (func_cache_var, func_cache_lookup_module): New functions,
2728         to turn a module name into a cache variable prefix, and to
2729         look up and cache module metainformation.
2730         (func_get_description, func_get_status)
2731         (func_get_notice, func_get_applicability, func_get_filelist)
2732         (func_get_dependencies, func_get_autoconf_early_snippet)
2733         (func_get_autoconf_snippet, func_get_automake_snippet)
2734         (func_get_include_directive, func_get_link_directive)
2735         (func_get_license, func_get_maintainer): Use
2736         func_cache_lookup_module.
2737
2738 2010-02-07  Bruno Haible  <bruno@clisp.org>
2739
2740         fnctl: Fix missing dependency.
2741         * modules/fcntl (Depends-on): Add getdtablesize.
2742         Reported by John W. Eaton <jwe@gnu.org>.
2743
2744 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2745
2746         Argp: fix recognition of short alias options.
2747
2748         * lib/argp-parse.c (convert_options): Fix improper use of
2749         `|' between character values.
2750         * tests/test-argp.c (group1_option): New alias option
2751         --read (-r).
2752         (group1_parser): Special handling for 'r'.
2753         (test15): New test case.
2754         (test_fun): Add test15.
2755         * tests/test-argp-2.sh: Update expected --help and --usage
2756         outputs.
2757
2758 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2759
2760         * tests/test-argp.c: Fix indentation.
2761
2762 2010-02-04  Eric Blake  <ebb9@byu.net>
2763
2764         gettimeofday: expose type of second argument
2765         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
2766         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
2767         * tests/test-gettimeofday.c: Use it to silence warning.
2768         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
2769         the issue.
2770
2771 2010-02-03  Jim Meyering  <meyering@redhat.com>
2772
2773         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
2774         * lib/regcomp.c (TYPE_SIGNED): Define.
2775         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
2776
2777         regcomp.c: avoid a new -Wshadow warning
2778         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
2779
2780 2010-02-01  Jim Meyering  <meyering@redhat.com>
2781
2782         removing useless parentheses in cpp #define directives
2783         For motivation, see commit c0221df4, "define STREQ(a,b)
2784         consistently, removing useless parentheses"
2785         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
2786         * lib/mountlist.c (MNT_IGNORE): Likewise.
2787         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
2788
2789 2010-02-01  Eric Blake  <ebb9@byu.net>
2790
2791         sys_time: use link-warning
2792         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
2793         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
2794         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
2795         * modules/sys_time (Depends-on): Add warn-on-use.
2796         (Makefile.am): Always build replacement.
2797         (configure.ac): Update substitutions.
2798         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
2799         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
2800         bother with SYS_TIME_H.
2801         * modules/gettimeofday (configure.ac): Declare indicator.
2802         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
2803         in use.
2804
2805         closein-tests: silence compiler warning
2806         * tests/test-closein.c (main): Ignore fread result.
2807         * modules/closein-tests (Depends-on): Add ignore-value.
2808
2809         tests: silence warning about system return
2810         * tests/test-areadlink-with-size.c (main): Ignore system result.
2811         * tests/test-areadlink.c (main): Likewise.
2812         * tests/test-areadlinkat-with-size.c (main): Likewise.
2813         * tests/test-areadlinkat.c (main): Likewise.
2814         * tests/test-canonicalize-lgpl.c (main): Likewise.
2815         * tests/test-canonicalize.c (main): Likewise.
2816         * tests/test-chown.c (main): Likewise.
2817         * tests/test-fchownat.c (main): Likewise.
2818         * tests/test-fdutimensat.c (main): Likewise.
2819         * tests/test-fstatat.c (main): Likewise.
2820         * tests/test-futimens.c (main): Likewise.
2821         * tests/test-lchown.c (main): Likewise.
2822         * tests/test-link.c (main): Likewise.
2823         * tests/test-linkat.c (main): Likewise.
2824         * tests/test-lstat.c (main): Likewise.
2825         * tests/test-mkdir.c (main): Likewise.
2826         * tests/test-mkdirat.c (main): Likewise.
2827         * tests/test-mkfifo.c (main): Likewise.
2828         * tests/test-mkfifoat.c (main): Likewise.
2829         * tests/test-mknod.c (main): Likewise.
2830         * tests/test-readlink.c (main): Likewise.
2831         * tests/test-remove.c (main): Likewise.
2832         * tests/test-rename.c (main): Likewise.
2833         * tests/test-renameat.c (main): Likewise.
2834         * tests/test-rmdir.c (main): Likewise.
2835         * tests/test-symlink.c (main): Likewise.
2836         * tests/test-symlinkat.c (main): Likewise.
2837         * tests/test-unlink.c (main): Likewise.
2838         * tests/test-unlinkat.c (main): Likewise.
2839         * tests/test-utimens.c (main): Likewise.
2840         * tests/test-utimensat.c (main): Likewise.
2841         * modules/areadlink-tests (Depends-on): Add ignore-value.
2842         * modules/areadlink-with-size-tests (Depends-on): Likewise.
2843         * modules/areadlinkat-tests (Depends-on): Likewise.
2844         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
2845         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2846         * modules/canonicalize-tests (Depends-on): Likewise.
2847         * modules/chown-tests (Depends-on): Likewise.
2848         * modules/fdutimensat-tests (Depends-on): Likewise.
2849         * modules/futimens-tests (Depends-on): Likewise.
2850         * modules/lchown-tests (Depends-on): Likewise.
2851         * modules/link-tests (Depends-on): Likewise.
2852         * modules/linkat-tests (Depends-on): Likewise.
2853         * modules/lstat-tests (Depends-on): Likewise.
2854         * modules/mkdir-tests (Depends-on): Likewise.
2855         * modules/mkfifo-tests (Depends-on): Likewise.
2856         * modules/mkfifoat-tests (Depends-on): Likewise.
2857         * modules/mknod-tests (Depends-on): Likewise.
2858         * modules/openat-tests (Depends-on): Likewise.
2859         * modules/readlink-tests (Depends-on): Likewise.
2860         * modules/remove-tests (Depends-on): Likewise.
2861         * modules/rename-tests (Depends-on): Likewise.
2862         * modules/renameat-tests (Depends-on): Likewise.
2863         * modules/rmdir-tests (Depends-on): Likewise.
2864         * modules/symlink-tests (Depends-on): Likewise.
2865         * modules/symlinkat-tests (Depends-on): Likewise.
2866         * modules/unlink-tests (Depends-on): Likewise.
2867         * modules/utimens-tests (Depends-on): Likewise.
2868         * modules/utimensat-tests (Depends-on): Likewise.
2869
2870 2010-01-31  Bruno Haible  <bruno@clisp.org>
2871
2872         Perform the same test for many <math.h> functions.
2873         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
2874         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
2875         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
2876         of gl_MATHFUNC.
2877         * modules/acos (configure.ac): Likewise.
2878         * modules/asin (configure.ac): Likewise.
2879         * modules/atan (configure.ac): Likewise.
2880         * modules/atan2 (configure.ac): Likewise.
2881         * modules/cbrt (configure.ac): Likewise.
2882         * modules/copysign (configure.ac): Likewise.
2883         * modules/cos (configure.ac): Likewise.
2884         * modules/cosh (configure.ac): Likewise.
2885         * modules/erf (configure.ac): Likewise.
2886         * modules/erfc (configure.ac): Likewise.
2887         * modules/exp (configure.ac): Likewise.
2888         * modules/fmod (configure.ac): Likewise.
2889         * modules/hypot (configure.ac): Likewise.
2890         * modules/j0 (configure.ac): Likewise.
2891         * modules/j1 (configure.ac): Likewise.
2892         * modules/jn (configure.ac): Likewise.
2893         * modules/lgamma (configure.ac): Likewise.
2894         * modules/log (configure.ac): Likewise.
2895         * modules/log10 (configure.ac): Likewise.
2896         * modules/log1p (configure.ac): Likewise.
2897         * modules/pow (configure.ac): Likewise.
2898         * modules/remainder (configure.ac): Likewise.
2899         * modules/sin (configure.ac): Likewise.
2900         * modules/sinh (configure.ac): Likewise.
2901         * modules/tan (configure.ac): Likewise.
2902         * modules/tanh (configure.ac): Likewise.
2903         * modules/y0 (configure.ac): Likewise.
2904         * modules/y1 (configure.ac): Likewise.
2905         * modules/yn (configure.ac): Likewise.
2906         Suggested by Paolo Bonzini.
2907
2908 2010-01-31  Bruno Haible  <bruno@clisp.org>
2909
2910         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
2911
2912 2010-01-31  Bruno Haible  <bruno@clisp.org>
2913
2914         Work around getdelim() bug on FreeBSD 8.0.
2915         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
2916         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
2917         not work.
2918         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
2919         is 1.
2920         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
2921         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
2922         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
2923         a non-zero size.
2924         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
2925
2926 2010-01-31  Bruno Haible  <bruno@clisp.org>
2927
2928         Work around getline() bug on FreeBSD 8.0.
2929         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
2930         and a non-zero size.
2931         * tests/test-getline.c (main): Likewise.
2932         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
2933         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
2934
2935 2010-01-28  Eric Blake  <ebb9@byu.net>
2936
2937         regex: fix build failure
2938         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
2939         platforms.
2940
2941 2010-01-28  Jim Meyering  <meyering@redhat.com>
2942
2943         regex: do not ignore memory allocation failure
2944         * lib/regex_internal.c (create_cd_newstate): Detect
2945         re_node_set_init_copy failure.   Extracted from glibc commit
2946         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2947
2948         regex: sync more white-space changes from libc
2949         * lib/regex_internal.c: White-space only changes.
2950         * lib/regexec.c: Likewise.
2951
2952         regex: add many uses of __attribute_warn_unused_result__
2953         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
2954         * lib/regexec.c: Likewise.
2955         Extracted from a messy glibc commit.
2956
2957         regcomp.c: spelling and merge-artifact from glibc
2958         * lib/regcomp.c: Merge remainder of glibc's
2959         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2960
2961         regcomp.c: sync white-space changes from glibc
2962         * lib/regcomp.c: Merge to accommodate white space
2963         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2964
2965         regcomp.c: do not ignore internal return values
2966         * lib/regcomp.c: Do not ignore internal return values.
2967         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
2968         but without its white-space changes and spelling fixes.
2969
2970         regex_internal.h: define __attribute_warn_unused_result__
2971         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
2972
2973         maint: add a syntax-check rule to check for vulnerable Makefile.in
2974         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
2975
2976 2010-01-27  Jim Meyering  <meyering@redhat.com>
2977
2978         ncftpput-ftp: clean up spaces
2979         * build-aux/ncftpput-ftp: Make Copyright line consistent.
2980         Remove trailing blanks.
2981
2982 2010-01-27  Simon Josefsson  <simon@josefsson.org>
2983
2984         * build-aux/git-version-gen: Fix copyright statement.
2985         * build-aux/gnupload: Likewise.
2986         * tests/test-arcfour.c: Likewise.
2987         * tests/test-arctwo.c: Likewise.
2988         * tests/test-count-one-bits.c: Likewise.
2989         * tests/test-crc.c: Likewise.
2990         * tests/test-des.c: Likewise.
2991         * tests/test-gc-arcfour.c: Likewise.
2992         * tests/test-gc-arctwo.c: Likewise.
2993         * tests/test-gc-des.c: Likewise.
2994         * tests/test-gc-hmac-md5.c: Likewise.
2995         * tests/test-gc-hmac-sha1.c: Likewise.
2996         * tests/test-gc-md2.c: Likewise.
2997         * tests/test-gc-md4.c: Likewise.
2998         * tests/test-gc-md5.c: Likewise.
2999         * tests/test-gc-pbkdf2-sha1.c: Likewise.
3000         * tests/test-gc-rijndael.c: Likewise.
3001         * tests/test-gc-sha1.c: Likewise.
3002         * tests/test-gc.c: Likewise.
3003         * tests/test-gethostname.c: Likewise.
3004         * tests/test-gettimeofday.c: Likewise.
3005         * tests/test-hash.c: Likewise.
3006         * tests/test-hmac-md5.c: Likewise.
3007         * tests/test-hmac-sha1.c: Likewise.
3008         * tests/test-md2.c: Likewise.
3009         * tests/test-md4.c: Likewise.
3010         * tests/test-md5.c: Likewise.
3011         * tests/test-memchr.c: Likewise.
3012         * tests/test-memchr2.c: Likewise.
3013         * tests/test-memcmp.c: Likewise.
3014         * tests/test-memmem.c: Likewise.
3015         * tests/test-memrchr.c: Likewise.
3016         * tests/test-rawmemchr.c: Likewise.
3017         * tests/test-read-file.c: Likewise.
3018         * tests/test-rijndael.c: Likewise.
3019         * tests/test-sockets.c: Likewise.
3020         * tests/test-strchrnul.c: Likewise.
3021         * tests/test-strstr.c: Likewise.
3022         * tests/test-strtod.c: Likewise.
3023         * build-aux/ncftpput-ftp: Likewise.
3024
3025 2010-01-26  Eric Blake  <ebb9@byu.net>
3026
3027         ignore-value: update recommended header name
3028         * modules/ignore-value (Include): Only use <> for headers that
3029         exist in glibc.
3030
3031 2010-01-26  Jim Meyering  <meyering@redhat.com>
3032
3033         test-userspec.c: avoid compiler warnings
3034         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
3035         and "initialization discards qualifiers..." warnings.
3036         Put the first "uid" in its own scope, and make char* members "const".
3037
3038 2010-01-25  Bruno Haible  <bruno@clisp.org>
3039
3040         gnulib-tool: Make warning diagnostics consistent.
3041         * gnulib-tool (func_warning): New function.
3042         Use it everywhere where gnulib-tool produces output to stderr and it is
3043         not a fatal error.
3044
3045 2010-01-25  Bruno Haible  <bruno@clisp.org>
3046
3047         Fix test dependencies.
3048         * modules/xstrtol-tests (Depends-on): Add inttypes.
3049         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
3050
3051 2010-01-25 Pádraig Brady <P@draigBrady.com>
3052
3053         syntax-check: detect incorrect boolean macro values in config.h
3054         * modules/maintainer-makefile (configure.ac): Parameterize the location
3055         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
3056         The logic is from Eric Blake and the location indicated by Jim Meyering.
3057         Note the more natural CONFIG_HEADER name is prohibited by automake
3058         for backwards compatibility reasons.
3059         * top/maint.mk (sc_Wundef_boolean): New rule.
3060
3061 2010-01-25  Jim Meyering  <meyering@redhat.com>
3062
3063         bootstrap: detect MacOS 10.6's shasum, too
3064         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
3065         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
3066
3067 2010-01-23  Jim Meyering  <meyering@redhat.com>
3068
3069         xstrtoll: new module
3070         * modules/xstrtoll: New file.
3071         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
3072         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
3073         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
3074         ./configure fails if you use this module and lack "long long".
3075         * modules/xstrtoll-tests: New module.
3076         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
3077         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
3078         new init.sh-based test framework.
3079
3080 2010-01-24  Bruno Haible  <bruno@clisp.org>
3081
3082         Tests for module 'yn'.
3083         * modules/yn-tests: New file.
3084         * tests/test-yn.c: New file.
3085
3086         Tests for module 'y1'.
3087         * modules/y1-tests: New file.
3088         * tests/test-y1.c: New file.
3089
3090         Tests for module 'y0'.
3091         * modules/y0-tests: New file.
3092         * tests/test-y0.c: New file.
3093
3094         Tests for module 'tanh'.
3095         * modules/tanh-tests: New file.
3096         * tests/test-tanh.c: New file.
3097
3098         Tests for module 'tan'.
3099         * modules/tan-tests: New file.
3100         * tests/test-tan.c: New file.
3101
3102         Tests for module 'sqrt'.
3103         * modules/sqrt-tests: New file.
3104         * tests/test-sqrt.c: New file.
3105
3106         Tests for module 'sinh'.
3107         * modules/sinh-tests: New file.
3108         * tests/test-sinh.c: New file.
3109
3110         Tests for module 'sin'.
3111         * modules/sin-tests: New file.
3112         * tests/test-sin.c: New file.
3113
3114         Tests for module 'rint'.
3115         * modules/rint-tests: New file.
3116         * tests/test-rint.c: New file.
3117
3118         Tests for module 'remainder'.
3119         * modules/remainder-tests: New file.
3120         * tests/test-remainder.c: New file.
3121
3122         Tests for module 'pow'.
3123         * modules/pow-tests: New file.
3124         * tests/test-pow.c: New file.
3125
3126         Tests for module 'nextafter'.
3127         * modules/nextafter-tests: New file.
3128         * tests/test-nextafter.c: New file.
3129
3130         Tests for module 'modf'.
3131         * modules/modf-tests: New file.
3132         * tests/test-modf.c: New file.
3133
3134         Tests for module 'logb'.
3135         * modules/logb-tests: New file.
3136         * tests/test-logb.c: New file.
3137
3138         Tests for module 'log1p'.
3139         * modules/log1p-tests: New file.
3140         * tests/test-log1p.c: New file.
3141
3142         Tests for module 'log10'.
3143         * modules/log10-tests: New file.
3144         * tests/test-log10.c: New file.
3145
3146         Tests for module 'log'.
3147         * modules/log-tests: New file.
3148         * tests/test-log.c: New file.
3149
3150         Tests for module 'lgamma'.
3151         * modules/lgamma-tests: New file.
3152         * tests/test-lgamma.c: New file.
3153
3154         Tests for module 'ldexp'.
3155         * modules/ldexp-tests: New file.
3156         * tests/test-ldexp.c: New file.
3157
3158         Tests for module 'jn'.
3159         * modules/jn-tests: New file.
3160         * tests/test-jn.c: New file.
3161
3162         Tests for module 'j1'.
3163         * modules/j1-tests: New file.
3164         * tests/test-j1.c: New file.
3165
3166         Tests for module 'j0'.
3167         * modules/j0-tests: New file.
3168         * tests/test-j0.c: New file.
3169
3170         Tests for module 'hypot'.
3171         * modules/hypot-tests: New file.
3172         * tests/test-hypot.c: New file.
3173
3174         Tests for module 'fmod'.
3175         * modules/fmod-tests: New file.
3176         * tests/test-fmod.c: New file.
3177
3178         Tests for module 'fabs'.
3179         * modules/fabs-tests: New file.
3180         * tests/test-fabs.c: New file.
3181
3182         Tests for module 'exp'.
3183         * modules/exp-tests: New file.
3184         * tests/test-exp.c: New file.
3185
3186         Tests for module 'erfc'.
3187         * modules/erfc-tests: New file.
3188         * tests/test-erfc.c: New file.
3189
3190         Tests for module 'erf'.
3191         * modules/erf-tests: New file.
3192         * tests/test-erf.c: New file.
3193
3194         Tests for module 'cosh'.
3195         * modules/cosh-tests: New file.
3196         * tests/test-cosh.c: New file.
3197
3198         Tests for module 'cos'.
3199         * modules/cos-tests: New file.
3200         * tests/test-cos.c: New file.
3201
3202         Tests for module 'copysign'.
3203         * modules/copysign-tests: New file.
3204         * tests/test-copysign.c: New file.
3205
3206         Tests for module 'cbrt'.
3207         * modules/cbrt-tests: New file.
3208         * tests/test-cbrt.c: New file.
3209
3210         Tests for module 'atan2'.
3211         * modules/atan2-tests: New file.
3212         * tests/test-atan2.c: New file.
3213
3214         Tests for module 'atan'.
3215         * modules/atan-tests: New file.
3216         * tests/test-atan.c: New file.
3217
3218         Tests for module 'asin'.
3219         * modules/asin-tests: New file.
3220         * tests/test-asin.c: New file.
3221
3222         Tests for module 'acos'.
3223         * modules/acos-tests: New file.
3224         * tests/test-acos.c: New file.
3225
3226 2010-01-24  Bruno Haible  <bruno@clisp.org>
3227
3228         Fix tests for common <math.h> functions.
3229         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
3230         code snippet that references the function pointer, rather than merely
3231         calling the function. Substitute the FUNC_LIBM variable.
3232         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
3233         * modules/acos (configure.ac): Likewise.
3234         * modules/asin (configure.ac): Likewise.
3235         * modules/atan (configure.ac): Likewise.
3236         * modules/atan2 (configure.ac): Likewise.
3237         * modules/cbrt (configure.ac): Likewise.
3238         * modules/copysign (configure.ac): Likewise.
3239         * modules/cos (configure.ac): Likewise.
3240         * modules/cosh (configure.ac): Likewise.
3241         * modules/erf (configure.ac): Likewise.
3242         * modules/erfc (configure.ac): Likewise.
3243         * modules/exp (configure.ac): Likewise.
3244         * modules/fabs (configure.ac): Likewise.
3245         * modules/fmod (configure.ac): Likewise.
3246         * modules/hypot (configure.ac): Likewise.
3247         * modules/j0 (configure.ac): Likewise.
3248         * modules/j1 (configure.ac): Likewise.
3249         * modules/jn (configure.ac): Likewise.
3250         * modules/ldexp (configure.ac): Likewise.
3251         * modules/lgamma (configure.ac): Likewise.
3252         * modules/log (configure.ac): Likewise.
3253         * modules/log10 (configure.ac): Likewise.
3254         * modules/log1p (configure.ac): Likewise.
3255         * modules/logb (configure.ac): Likewise.
3256         * modules/modf (configure.ac): Likewise.
3257         * modules/nextafter (configure.ac): Likewise.
3258         * modules/pow (configure.ac): Likewise.
3259         * modules/remainder (configure.ac): Likewise.
3260         * modules/rint (configure.ac): Likewise.
3261         * modules/sin (configure.ac): Likewise.
3262         * modules/sinh (configure.ac): Likewise.
3263         * modules/tan (configure.ac): Likewise.
3264         * modules/tanh (configure.ac): Likewise.
3265         * modules/y0 (configure.ac): Likewise.
3266         * modules/y1 (configure.ac): Likewise.
3267         * modules/yn (configure.ac): Likewise.
3268
3269 2010-01-24  Bruno Haible  <bruno@clisp.org>
3270
3271         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
3272         * tests/test-acosl.c (x): New variable.
3273         (main): Store argument in x and fetch it from x.
3274         * tests/test-asinl.c (x): New variable.
3275         (main): Store argument in x and fetch it from x.
3276         * tests/test-atanl.c (x): New variable.
3277         (main): Store argument in x and fetch it from x.
3278         * tests/test-cosl.c (x): New variable.
3279         (main): Store argument in x and fetch it from x.
3280         * tests/test-expl.c (x): New variable.
3281         (main): Store argument in x and fetch it from x.
3282         * tests/test-logl.c (x): New variable.
3283         (main): Store argument in x and fetch it from x.
3284         * tests/test-sinl.c (x): New variable.
3285         (main): Store argument in x and fetch it from x.
3286         * tests/test-sqrtl.c (x): New variable.
3287         (main): Store argument in x and fetch it from x.
3288         * tests/test-tanl.c (x): New variable.
3289         (main): Store argument in x and fetch it from x.
3290
3291 2010-01-24  Bruno Haible  <bruno@clisp.org>
3292
3293         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
3294         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
3295         assignments to the initial TESTS_ENVIRONMENT.
3296         * doc/gnulib.texi (Unit test modules): Document it.
3297         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
3298         TESTS_ENVIRONMENT.
3299         * modules/btowc-tests (Makefile.am): Likewise.
3300         * modules/c-stack-tests (Makefile.am): Likewise.
3301         * modules/c-strcase-tests (Makefile.am): Likewise.
3302         * modules/copy-file-tests (Makefile.am): Likewise.
3303         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
3304         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
3305         * modules/mbrtowc-tests (Makefile.am): Likewise.
3306         * modules/mbscasecmp-tests (Makefile.am): Likewise.
3307         * modules/mbscasestr-tests (Makefile.am): Likewise.
3308         * modules/mbschr-tests (Makefile.am): Likewise.
3309         * modules/mbscspn-tests (Makefile.am): Likewise.
3310         * modules/mbsinit-tests (Makefile.am): Likewise.
3311         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
3312         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
3313         * modules/mbspbrk-tests (Makefile.am): Likewise.
3314         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
3315         * modules/mbsrchr-tests (Makefile.am): Likewise.
3316         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
3317         * modules/mbsspn-tests (Makefile.am): Likewise.
3318         * modules/mbsstr-tests (Makefile.am): Likewise.
3319         * modules/nl_langinfo-tests (Makefile.am): Likewise.
3320         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
3321         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
3322         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
3323         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
3324         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
3325         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
3326         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
3327         * modules/wcrtomb-tests (Makefile.am): Likewise.
3328         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
3329         * modules/wcsrtombs-tests (Makefile.am): Likewise.
3330         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
3331         assignments from TESTS_ENVIRONMENT.
3332         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
3333         augmentation.
3334         * modules/argp-version-etc-tests (Makefile.am): Likewise.
3335         * modules/atexit-tests (Makefile.am): Likewise.
3336         * modules/binary-io-tests (Makefile.am): Likewise.
3337         * modules/closein-tests (Makefile.am): Likewise.
3338         * modules/dprintf-posix-tests (Makefile.am): Likewise.
3339         * modules/exclude-tests (Makefile.am): Likewise.
3340         * modules/fflush-tests (Makefile.am): Likewise.
3341         * modules/fpending-tests (Makefile.am): Likewise.
3342         * modules/fprintf-posix-tests (Makefile.am): Likewise.
3343         * modules/freadahead-tests (Makefile.am): Likewise.
3344         * modules/freadptr-tests (Makefile.am): Likewise.
3345         * modules/freadseek-tests (Makefile.am): Likewise.
3346         * modules/fseek-tests (Makefile.am): Likewise.
3347         * modules/fseeko-tests (Makefile.am): Likewise.
3348         * modules/ftell-tests (Makefile.am): Likewise.
3349         * modules/ftello-tests (Makefile.am): Likewise.
3350         * modules/idpriv-drop-tests (Makefile.am): Likewise.
3351         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
3352         * modules/lseek-tests (Makefile.am): Likewise.
3353         * modules/parse-duration-tests (Makefile.am): Likewise.
3354         * modules/perror-tests (Makefile.am): Likewise.
3355         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
3356         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
3357         * modules/pipe-tests (Makefile.am): Likewise.
3358         * modules/pread-tests (Makefile.am): Likewise.
3359         * modules/printf-posix-tests (Makefile.am): Likewise.
3360         * modules/select-tests (Makefile.am): Likewise.
3361         * modules/sigpipe-tests (Makefile.am): Likewise.
3362         * modules/tsearch-tests (Makefile.am): Likewise.
3363         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
3364         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
3365         * modules/uniname/uniname-tests (Makefile.am): Likewise.
3366         * modules/uniwidth/width-tests (Makefile.am): Likewise.
3367         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
3368         * modules/version-etc-tests (Makefile.am): Likewise.
3369         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
3370         * modules/vprintf-posix-tests (Makefile.am): Likewise.
3371         * modules/xalloc-die-tests (Makefile.am): Likewise.
3372         * modules/xprintf-posix-tests (Makefile.am): Likewise.
3373         * modules/xstrtoimax-tests (Makefile.am): Likewise.
3374         * modules/xstrtol-tests (Makefile.am): Likewise.
3375         * modules/xstrtoumax-tests (Makefile.am): Likewise.
3376         * modules/yesno-tests (Makefile.am): Likewise.
3377         Suggested by Jim Meyering.
3378
3379 2010-01-24  Bruno Haible  <bruno@clisp.org>
3380
3381         More documentation.
3382         * doc/gnulib.texi (Writing modules): New chapter.
3383         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
3384         the new chapter.
3385
3386 2010-01-24  Jim Meyering  <meyering@redhat.com>
3387
3388         maint.mk: do not prepend "./" after filtering
3389         * top/maint.mk (_prepend_srcdir_prefix): New variable
3390         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
3391         "./" when $(srcdir) is ".".
3392
3393         define STREQ(a,b) consistently, removing useless parentheses
3394         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
3395         since the only risk is that "a" or "b" contains an unparenthesized
3396         comma, but if either did that, STREQ would have 3 or more arguments.
3397         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
3398         * lib/fts.c (STREQ): Remove unnecessary parentheses.
3399         * lib/hash-triple.c (STREQ): Likewise.
3400         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
3401         * lib/getugroups.c (STREQ): Likewise.
3402
3403 2010-01-23  Jim Meyering  <meyering@redhat.com>
3404
3405         maint.mk: fix syntax-check in a non-srcdir build directory
3406         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
3407         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
3408
3409 2010-01-22  Jim Meyering  <meyering@redhat.com>
3410
3411         userspec: add unit tests
3412         * tests/test-userspec.c: New file.
3413         * modules/userspec-tests: Likewise.
3414
3415 2010-01-21  Jim Meyering  <meyering@redhat.com>
3416
3417         maint.mk: handle source file names containing "." robustly
3418         * top/maint.mk (_dot_escaped_srcdir): Define.
3419         (VC_LIST): Use it in LHS of sed substitution.
3420
3421 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
3422
3423         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
3424         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
3425         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
3426         from a non-srcdir build.
3427
3428 2010-01-20  Eric Blake  <ebb9@byu.net>
3429
3430         warn-on-use: use instead of link-warning
3431         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
3432         * modules/unistd (Depends-on, Makefile.am): Likewise.
3433         * modules/arpa_inet (Depends-on): Replace link-warning with
3434         warn-on-use.
3435         (Makefile.am): Update rules accordingly.
3436         * modules/ctype (Depends-on, Makefile.am): Likewise.
3437         * modules/dirent (Depends-on, Makefile.am): Likewise.
3438         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
3439         * modules/inttypes (Depends-on, Makefile.am): Likewise.
3440         * modules/langinfo (Depends-on, Makefile.am): Likewise.
3441         * modules/locale (Depends-on, Makefile.am): Likewise.
3442         * modules/math (Depends-on, Makefile.am): Likewise.
3443         * modules/search (Depends-on, Makefile.am): Likewise.
3444         * modules/signal (Depends-on, Makefile.am): Likewise.
3445         * modules/spawn (Depends-on, Makefile.am): Likewise.
3446         * modules/stdlib (Depends-on, Makefile.am): Likewise.
3447         * modules/string (Depends-on, Makefile.am): Likewise.
3448         * modules/strings (Depends-on, Makefile.am): Likewise.
3449         * modules/sys_file (Depends-on, Makefile.am): Likewise.
3450         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
3451         * modules/sys_select (Depends-on, Makefile.am): Likewise.
3452         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
3453         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
3454         * modules/sys_times (Depends-on, Makefile.am): Likewise.
3455         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
3456         * modules/wchar (Depends-on, Makefile.am): Likewise.
3457         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
3458         should be poisoned.
3459         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
3460         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
3461         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
3462         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
3463         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
3464         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
3465         * m4/math_h.m4 (gl_MATH_H): Likewise.
3466         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
3467         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
3468         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
3469         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
3470         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
3471         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
3472         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
3473         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
3474         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
3475         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
3476         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
3477         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
3478         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
3479         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
3480         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
3481         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
3482         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
3483         GL_LINK_WARNING.
3484         * lib/ctype.in.h: Likewise.
3485         * lib/dirent.in.h: Likewise.
3486         * lib/fcntl.in.h: Likewise.
3487         * lib/inttypes.in.h: Likewise.
3488         * lib/langinfo.in.h: Likewise.
3489         * lib/locale.in.h: Likewise.
3490         * lib/math.in.h: Likewise.
3491         * lib/search.in.h: Likewise.
3492         * lib/signal.in.h: Likewise.
3493         * lib/spawn.in.h: Likewise.
3494         * lib/stdio.in.h: Likewise.
3495         * lib/stdlib.in.h: Likewise.
3496         * lib/string.in.h: Likewise.
3497         * lib/strings.in.h: Likewise.
3498         * lib/sys_file.in.h: Likewise.
3499         * lib/sys_ioctl.in.h: Likewise.
3500         * lib/sys_select.in.h: Likewise.
3501         * lib/sys_socket.in.h: Likewise.
3502         * lib/sys_stat.in.h: Likewise.
3503         * lib/sys_times.in.h: Likewise.
3504         * lib/sys_utsname.in.h: Likewise.
3505         * lib/unistd.in.h: Likewise.
3506         * lib/wchar.in.h: Likewise.
3507
3508 2010-01-20  Bruno Haible  <bruno@clisp.org>
3509
3510         Avoid duplicate -lm.
3511         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
3512         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
3513         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
3514         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
3515         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
3516         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
3517         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
3518         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
3519         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
3520         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
3521         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
3522         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
3523         Reported by Paolo Bonzini.
3524
3525 2010-01-19  Bruno Haible  <bruno@clisp.org>
3526
3527         langinfo, nl_langinfo: Relicense under LGPLv2+.
3528         * modules/langinfo (License): Change to LGPLv2+.
3529         * modules/nl_langinfo (License): Likewise.
3530         Patch by David Lutterkort <lutter@redhat.com>.
3531
3532 2010-01-19  Bruno Haible  <bruno@clisp.org>
3533
3534         Avoid compilation error with cc on OSF/1 5.1.
3535         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
3536         statement, not before.
3537         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3538
3539 2010-01-18  Bruno Haible  <bruno@clisp.org>
3540
3541         Avoid a link error due to the __printf__ symbol.
3542         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
3543         and 2.6.x.
3544         (__format__, __printf__): Remove definitions.
3545         * lib/argp-fmtstream.h: Likewise.
3546         * lib/argp.h: Likewise.
3547         * lib/error.h: Likewise.
3548         * lib/vasnprintf.h: Likewise.
3549         * lib/xprintf.h: Likewise.
3550         * lib/xvasprintf.h: Likewise.
3551         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3552
3553 2010-01-18  Bruno Haible  <bruno@clisp.org>
3554
3555         Tests for module 'tanl'.
3556         * modules/tanl-tests: New file.
3557         * tests/test-tanl.c: New file.
3558
3559         Tests for module 'sqrtl'.
3560         * modules/sqrtl-tests: New file.
3561         * tests/test-sqrtl.c: New file.
3562
3563         Tests for module 'sinl'.
3564         * modules/sinl-tests: New file.
3565         * tests/test-sinl.c: New file.
3566
3567         Tests for module 'logl'.
3568         * modules/logl-tests: New file.
3569         * tests/test-logl.c: New file.
3570
3571         Tests for module 'expl'.
3572         * modules/expl-tests: New file.
3573         * tests/test-expl.c: New file.
3574
3575         Tests for module 'cosl'.
3576         * modules/cosl-tests: New file.
3577         * tests/test-cosl.c: New file.
3578
3579         Tests for module 'atanl'.
3580         * modules/atanl-tests: New file.
3581         * tests/test-atanl.c: New file.
3582
3583         Tests for module 'asinl'.
3584         * modules/asinl-tests: New file.
3585         * tests/test-asinl.c: New file.
3586
3587         Tests for module 'acosl'.
3588         * modules/acosl-tests: New file.
3589         * tests/test-acosl.c: New file.
3590
3591         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
3592         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
3593         tanl): Use the standard gnulib idiom.
3594         * lib/cosl.c: Don't include trigl.c and sincosl.c.
3595         * lib/sinl.c: Likewise.
3596         * lib/tanl.c: Don't include trigl.c.
3597         (kernel_tanl): Make static.
3598         * lib/sincosl.c: Include trigl.h first.
3599         * lib/trigl.c: Likewise.
3600         * m4/acosl.m4: New file.
3601         * m4/asinl.m4: New file.
3602         * m4/atanl.m4: New file.
3603         * m4/cosl.m4: New file.
3604         * m4/expl.m4: New file.
3605         * m4/logl.m4: New file.
3606         * m4/sinl.m4: New file.
3607         * m4/sqrtl.m4: New file.
3608         * m4/tanl.m4: New file.
3609         * m4/mathl.m4: Remove file.
3610         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
3611         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
3612         Don't initialize GNULIB_MATHL.
3613         * modules/acosl: New file.
3614         * modules/asinl: New file.
3615         * modules/atanl: New file.
3616         * modules/cosl: New file.
3617         * modules/expl: New file.
3618         * modules/logl: New file.
3619         * modules/sinl: New file.
3620         * modules/sqrtl: New file.
3621         * modules/tanl: New file.
3622         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
3623         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
3624         substitute GNULIB_MATHL.
3625         * modules/mathl: Rewritten.
3626         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
3627         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
3628         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
3629         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
3630         * doc/posix-functions/expl.texi: Mention the 'expl' module.
3631         * doc/posix-functions/logl.texi: Mention the 'logl' module.
3632         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
3633         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
3634         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
3635
3636 2010-01-18  Bruno Haible  <bruno@clisp.org>
3637
3638         sqrt: Make gl_FUNC_SQRT requirable.
3639         * m4/sqrt.m4: New file.
3640         * modules/sqrt (Files): Add it.
3641         (configure.ac): Invoke gl_FUNC_SQRT.
3642
3643 2010-01-18  Bruno Haible  <bruno@clisp.org>
3644
3645         New modules for common <math.h> functions.
3646         * m4/mathfunc.m4: New file.
3647         * modules/acos: New file.
3648         * modules/asin: New file.
3649         * modules/atan: New file.
3650         * modules/atan2: New file.
3651         * modules/cbrt: New file.
3652         * modules/copysign: New file.
3653         * modules/cos: New file.
3654         * modules/cosh: New file.
3655         * modules/erf: New file.
3656         * modules/erfc: New file.
3657         * modules/exp: New file.
3658         * modules/fabs: New file.
3659         * modules/fmod: New file.
3660         * modules/hypot: New file.
3661         * modules/j0: New file.
3662         * modules/j1: New file.
3663         * modules/jn: New file.
3664         * modules/ldexp: New file.
3665         * modules/lgamma: New file.
3666         * modules/log: New file.
3667         * modules/log10: New file.
3668         * modules/log1p: New file.
3669         * modules/logb: New file.
3670         * modules/modf: New file.
3671         * modules/nextafter: New file.
3672         * modules/pow: New file.
3673         * modules/remainder: New file.
3674         * modules/rint: New file.
3675         * modules/sin: New file.
3676         * modules/sinh: New file.
3677         * modules/sqrt: New file.
3678         * modules/tan: New file.
3679         * modules/tanh: New file.
3680         * modules/y0: New file.
3681         * modules/y1: New file.
3682         * modules/yn: New file.
3683         * doc/posix-functions/acos.texi: Mention the 'acos' module.
3684         * doc/posix-functions/asin.texi: Mention the 'asin' module.
3685         * doc/posix-functions/atan.texi: Mention the 'atan' module.
3686         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
3687         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
3688         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
3689         * doc/posix-functions/cos.texi: Mention the 'cos' module.
3690         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
3691         * doc/posix-functions/erf.texi: Mention the 'erf' module.
3692         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
3693         * doc/posix-functions/exp.texi: Mention the 'exp' module.
3694         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
3695         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
3696         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
3697         * doc/posix-functions/j0.texi: Mention the 'j0' module.
3698         * doc/posix-functions/j1.texi: Mention the 'j1' module.
3699         * doc/posix-functions/jn.texi: Mention the 'jn' module.
3700         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
3701         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
3702         * doc/posix-functions/log.texi: Mention the 'log' module.
3703         * doc/posix-functions/log10.texi: Mention the 'log10' module.
3704         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
3705         * doc/posix-functions/logb.texi: Mention the 'logb' module.
3706         * doc/posix-functions/modf.texi: Mention the 'modf' module.
3707         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
3708         * doc/posix-functions/pow.texi: Mention the 'pow' module.
3709         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
3710         * doc/posix-functions/rint.texi: Mention the 'rint' module.
3711         * doc/posix-functions/sin.texi: Mention the 'sin' module.
3712         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
3713         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
3714         * doc/posix-functions/tan.texi: Mention the 'tan' module.
3715         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
3716         * doc/posix-functions/y0.texi: Mention the 'y0' module.
3717         * doc/posix-functions/y1.texi: Mention the 'y1' module.
3718         * doc/posix-functions/yn.texi: Mention the 'yn' module.
3719
3720 2010-01-18  Jim Meyering  <meyering@redhat.com>
3721
3722         ignore-value: relax license to LGPLv2+
3723         * modules/ignore-value (License): Relax to LGPLv2+.
3724
3725         getdate: don't leak when TZ contains two or more '"'s
3726         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
3727         double quote in TZ after the first one.
3728
3729         readtokens: do not leak internal token_lengths buffer
3730         * lib/readtokens.c (readtokens): Free the local, lengths,
3731         when the supplied "token_lengths" parameter is NULL.
3732
3733 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3734
3735         Fix a couple of missing LIBTHREAD link failures on AIX.
3736         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
3737         $(LIBTHREAD).
3738         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
3739
3740         Link test-poll against INET_PTON_LIB.
3741         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
3742         for inet_pton on Solaris 10.
3743
3744 2010-01-17  Bruno Haible  <bruno@clisp.org>
3745
3746         unistdio/*-sprintf: Fix typo in module description.
3747         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
3748         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
3749         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
3750         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
3751         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
3752         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
3753         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
3754         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3755
3756 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3757
3758         gnulib-tool: fix filelist for AIX, HP-UX ksh.
3759         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
3760         variables in shell case patterns, for AIX and HP-UX ksh.
3761
3762         Split large sed scripts, for HP-UX sed.
3763         * modules/stdio: Split sed scripts around 50 sed commands,
3764         to avoid HP-UX limit of 99 commands, in the near future.
3765         * modules/string: Likewise.
3766         * modules/unistd: Likewise.
3767
3768         gnulib-tool: avoid writing in the current directory.
3769         * gnulib-tool (func_emit_lib_Makefile_am)
3770         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
3771         not in the current directory, so concurrent gnulib-tool
3772         instances do not interfere.
3773
3774 2010-01-16  Jim Meyering  <meyering@redhat.com>
3775
3776         doc: update users.txt
3777         * users.txt: Add grep.
3778         (diffutils, gzip): Update URLs.
3779
3780 2010-01-12  Bruno Haible  <bruno@clisp.org>
3781
3782         posix_spawn: Avoid test failure on Cygwin.
3783         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
3784         characters.
3785         Reported by Simon Josefsson.
3786
3787 2010-01-12  Bruno Haible  <bruno@clisp.org>
3788
3789         * tests/test-cond.c (main): When skipping the test, show the reason.
3790
3791 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3792
3793         * lib/striconv.c (str_cd_iconv): Avoid if before free.
3794
3795 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3796
3797         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
3798         VC_LIST_ALWAYS_EXCLUDE_REGEX.
3799
3800 2010-01-12  Eric Blake  <ebb9@byu.net>
3801
3802         build: guarantee AS_VAR_IF
3803         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
3804         (gl_AS_VAR_IF): Move...
3805         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
3806         Reported by Simon Josefsson.
3807
3808 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3809
3810         * lib/stdio.in.h: Fix typo.
3811
3812 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3813
3814         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
3815         libgpg-error.
3816
3817 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3818
3819         * tests/test-xalloc-die.sh: Use $EXEEXT.
3820
3821 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3822             Bruno Haible  <bruno@clisp.org>
3823
3824         getlogin, getlogin_r: Avoid test failure.
3825         * tests/test-getlogin.c: Include <stdio.h>.
3826         (main): Skip the test when the function fails because stdin is not a
3827         tty.
3828         * tests/test-getlogin_r.c: Include <stdio.h>.
3829         (main): Skip the test when the function fails because stdin is not a
3830         tty.
3831
3832 2010-01-11  Eric Blake  <ebb9@byu.net>
3833
3834         tests: avoid more large file warnings
3835         * tests/test-fflush.c: Avoid warning about ftell use.
3836         * tests/test-fseek.c: Avoid warning about fseek use.
3837
3838 2010-01-10  Bruno Haible  <bruno@clisp.org>
3839
3840         nproc: Work better on Linux when /proc and /sys are not mounted.
3841         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
3842         as lower bound when, on glibc/Linux systems,
3843         sysconf (_SC_NPROCESSORS_CONF) returns 1.
3844         Suggested by Pádraig Brady <P@draigbrady.com>.
3845         Reported by Dmitry V. Levin <ldv@altlinux.org>.
3846
3847         nproc: Refactor.
3848         * lib/nproc.c (num_processors_via_affinity_mask): New function,
3849         extracted from num_processors.
3850         (num_processors): Call it.
3851
3852 2010-01-11  Jim Meyering  <meyering@redhat.com>
3853
3854         utimecmp: avoid new warning from upcoming gcc-4.5.0
3855         * lib/utimecmp.c (BILLION): Define using #define rather than an
3856         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
3857
3858 2010-01-11  Eric Blake  <ebb9@byu.net>
3859
3860         math: add portability warnings for classification macros
3861         * modules/math (Depends-on): Add warn-on-use.
3862         (Makefile.am): Provide new substitutions.
3863         * m4/math_h.m4 (gl_MATH_H): Require inline.
3864         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
3865         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
3866         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
3867         implement warnings.
3868
3869         unistd: warn on use of environ without module
3870         * modules/unistd (Depends-on): Add warn-on-use.
3871         (Makefile.am): Provide new substitutions.
3872         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
3873         * lib/unistd.in.h (environ): Wrap with a warning helper function.
3874
3875         stdio: warn on suspicious uses
3876         * modules/stdio (Depends-on): Add warn-on-use.
3877         (Makefile.am): Provide new substitutions.
3878         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
3879         fseeko.
3880         * lib/stdio.in.h (gets): Always warn on use.
3881         (fseek, ftell): Adjust when warnings are issued, and honor
3882         _GL_NO_LARGE_FILES as a way to silence the warning.
3883         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
3884         any warning about large file offsets.
3885         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
3886         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
3887         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
3888         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
3889         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
3890         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
3891         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
3892         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
3893
3894         warn-on-use: new module
3895         * modules/warn-on-use: New file.
3896         * build-aux/warn-on-use.h: Likewise.
3897         * m4/warn-on-use.m4: Likewise.
3898         * MODULES.html.sh (Support for building): Mention it.
3899
3900 2010-01-10  Bruno Haible  <bruno@clisp.org>
3901
3902         Tests for module 'unistr/u32-strdup'.
3903         * modules/unistr/u32-strdup-tests: New file.
3904         * tests/unistr/test-u32-strdup.c: New file.
3905
3906         Tests for module 'unistr/u16-strdup'.
3907         * modules/unistr/u16-strdup-tests: New file.
3908         * tests/unistr/test-u16-strdup.c: New file.
3909
3910         Tests for module 'unistr/u8-strdup'.
3911         * modules/unistr/u8-strdup-tests: New file.
3912         * tests/unistr/test-u8-strdup.c: New file.
3913         * tests/unistr/test-strdup.h: New file.
3914
3915         Tests for module 'unistr/u32-strncmp'.
3916         * modules/unistr/u32-strncmp-tests: New file.
3917         * tests/unistr/test-u32-strncmp.c: New file.
3918
3919         Tests for module 'unistr/u16-strncmp'.
3920         * modules/unistr/u16-strncmp-tests: New file.
3921         * tests/unistr/test-u16-strncmp.c: New file.
3922
3923         Tests for module 'unistr/u8-strncmp'.
3924         * modules/unistr/u8-strncmp-tests: New file.
3925         * tests/unistr/test-u8-strncmp.c: New file.
3926         * tests/unistr/test-strncmp.h: New file.
3927
3928         Tests for module 'unistr/u32-strcoll'.
3929         * modules/unistr/u32-strcoll-tests: New file.
3930         * tests/unistr/test-u32-strcoll.c: New file.
3931
3932         Tests for module 'unistr/u16-strcoll'.
3933         * modules/unistr/u16-strcoll-tests: New file.
3934         * tests/unistr/test-u16-strcoll.c: New file.
3935
3936         Tests for module 'unistr/u8-strcoll'.
3937         * modules/unistr/u8-strcoll-tests: New file.
3938         * tests/unistr/test-u8-strcoll.c: New file.
3939
3940         Tests for module 'unistr/u32-strcmp'.
3941         * modules/unistr/u32-strcmp-tests: New file.
3942         * tests/unistr/test-u32-strcmp.c: New file.
3943         * tests/unistr/test-u32-strcmp.h: New file.
3944
3945         Tests for module 'unistr/u16-strcmp'.
3946         * modules/unistr/u16-strcmp-tests: New file.
3947         * tests/unistr/test-u16-strcmp.c: New file.
3948         * tests/unistr/test-u16-strcmp.h: New file.
3949
3950         Tests for module 'unistr/u8-strcmp'.
3951         * modules/unistr/u8-strcmp-tests: New file.
3952         * tests/unistr/test-u8-strcmp.c: New file.
3953         * tests/unistr/test-u8-strcmp.h: New file.
3954         * tests/unistr/test-strcmp.h: New file.
3955
3956         Tests for module 'unistr/u32-strncat'.
3957         * modules/unistr/u32-strncat-tests: New file.
3958         * tests/unistr/test-u32-strncat.c: New file.
3959
3960         Tests for module 'unistr/u16-strncat'.
3961         * modules/unistr/u16-strncat-tests: New file.
3962         * tests/unistr/test-u16-strncat.c: New file.
3963
3964         Tests for module 'unistr/u8-strncat'.
3965         * modules/unistr/u8-strncat-tests: New file.
3966         * tests/unistr/test-u8-strncat.c: New file.
3967         * tests/unistr/test-strncat.h: New file.
3968
3969         Tests for module 'unistr/u32-strcat'.
3970         * modules/unistr/u32-strcat-tests: New file.
3971         * tests/unistr/test-u32-strcat.c: New file.
3972
3973         Tests for module 'unistr/u16-strcat'.
3974         * modules/unistr/u16-strcat-tests: New file.
3975         * tests/unistr/test-u16-strcat.c: New file.
3976
3977         Tests for module 'unistr/u8-strcat'.
3978         * modules/unistr/u8-strcat-tests: New file.
3979         * tests/unistr/test-u8-strcat.c: New file.
3980         * tests/unistr/test-strcat.h: New file.
3981
3982         Tests for module 'unistr/u32-stpncpy'.
3983         * modules/unistr/u32-stpncpy-tests: New file.
3984         * tests/unistr/test-u32-stpncpy.c: New file.
3985
3986         Tests for module 'unistr/u16-stpncpy'.
3987         * modules/unistr/u16-stpncpy-tests: New file.
3988         * tests/unistr/test-u16-stpncpy.c: New file.
3989
3990         Tests for module 'unistr/u8-stpncpy'.
3991         * modules/unistr/u8-stpncpy-tests: New file.
3992         * tests/unistr/test-u8-stpncpy.c: New file.
3993         * tests/unistr/test-stpncpy.h: New file.
3994
3995         Tests for module 'unistr/u32-strncpy'.
3996         * modules/unistr/u32-strncpy-tests: New file.
3997         * tests/unistr/test-u32-strncpy.c: New file.
3998
3999         Tests for module 'unistr/u16-strncpy'.
4000         * modules/unistr/u16-strncpy-tests: New file.
4001         * tests/unistr/test-u16-strncpy.c: New file.
4002
4003         Tests for module 'unistr/u8-strncpy'.
4004         * modules/unistr/u8-strncpy-tests: New file.
4005         * tests/unistr/test-u8-strncpy.c: New file.
4006         * tests/unistr/test-strncpy.h: New file.
4007
4008         Tests for module 'unistr/u32-stpcpy'.
4009         * modules/unistr/u32-stpcpy-tests: New file.
4010         * tests/unistr/test-u32-stpcpy.c: New file.
4011
4012         Tests for module 'unistr/u16-stpcpy'.
4013         * modules/unistr/u16-stpcpy-tests: New file.
4014         * tests/unistr/test-u16-stpcpy.c: New file.
4015
4016         Tests for module 'unistr/u8-stpcpy'.
4017         * modules/unistr/u8-stpcpy-tests: New file.
4018         * tests/unistr/test-u8-stpcpy.c: New file.
4019         * tests/unistr/test-stpcpy.h: New file.
4020
4021         Tests for module 'unistr/u32-strcpy'.
4022         * modules/unistr/u32-strcpy-tests: New file.
4023         * tests/unistr/test-u32-strcpy.c: New file.
4024
4025         Tests for module 'unistr/u16-strcpy'.
4026         * modules/unistr/u16-strcpy-tests: New file.
4027         * tests/unistr/test-u16-strcpy.c: New file.
4028
4029         Tests for module 'unistr/u8-strcpy'.
4030         * modules/unistr/u8-strcpy-tests: New file.
4031         * tests/unistr/test-u8-strcpy.c: New file.
4032         * tests/unistr/test-strcpy.h: New file.
4033
4034         Tests for module 'unistr/u32-strnlen'.
4035         * modules/unistr/u32-strnlen-tests: New file.
4036         * tests/unistr/test-u32-strnlen.c: New file.
4037
4038         Tests for module 'unistr/u16-strnlen'.
4039         * modules/unistr/u16-strnlen-tests: New file.
4040         * tests/unistr/test-u16-strnlen.c: New file.
4041
4042         Tests for module 'unistr/u8-strnlen'.
4043         * modules/unistr/u8-strnlen-tests: New file.
4044         * tests/unistr/test-u8-strnlen.c: New file.
4045         * tests/unistr/test-strnlen.h: New file.
4046
4047         Tests for module 'unistr/u32-strlen'.
4048         * modules/unistr/u32-strlen-tests: New file.
4049         * tests/unistr/test-u32-strlen.c: New file.
4050
4051         Tests for module 'unistr/u16-strlen'.
4052         * modules/unistr/u16-strlen-tests: New file.
4053         * tests/unistr/test-u16-strlen.c: New file.
4054
4055         Tests for module 'unistr/u8-strlen'.
4056         * modules/unistr/u8-strlen-tests: New file.
4057         * tests/unistr/test-u8-strlen.c: New file.
4058
4059         Tests for module 'unistr/u32-prev'.
4060         * modules/unistr/u32-prev-tests: New file.
4061         * tests/unistr/test-u32-prev.c: New file.
4062
4063         Tests for module 'unistr/u16-prev'.
4064         * modules/unistr/u16-prev-tests: New file.
4065         * tests/unistr/test-u16-prev.c: New file.
4066
4067         Tests for module 'unistr/u8-prev'.
4068         * modules/unistr/u8-prev-tests: New file.
4069         * tests/unistr/test-u8-prev.c: New file.
4070
4071         Tests for module 'unistr/u32-next'.
4072         * modules/unistr/u32-next-tests: New file.
4073         * tests/unistr/test-u32-next.c: New file.
4074
4075         Tests for module 'unistr/u16-next'.
4076         * modules/unistr/u16-next-tests: New file.
4077         * tests/unistr/test-u16-next.c: New file.
4078
4079         Tests for module 'unistr/u8-next'.
4080         * modules/unistr/u8-next-tests: New file.
4081         * tests/unistr/test-u8-next.c: New file.
4082
4083         Tests for module 'unistr/u32-strmbtouc'.
4084         * modules/unistr/u32-strmbtouc-tests: New file.
4085         * tests/unistr/test-u32-strmbtouc.c: New file.
4086
4087         Tests for module 'unistr/u16-strmbtouc'.
4088         * modules/unistr/u16-strmbtouc-tests: New file.
4089         * tests/unistr/test-u16-strmbtouc.c: New file.
4090
4091         Tests for module 'unistr/u8-strmbtouc'.
4092         * modules/unistr/u8-strmbtouc-tests: New file.
4093         * tests/unistr/test-u8-strmbtouc.c: New file.
4094
4095         Tests for module 'unistr/u32-strmblen'.
4096         * modules/unistr/u32-strmblen-tests: New file.
4097         * tests/unistr/test-u32-strmblen.c: New file.
4098
4099         Tests for module 'unistr/u16-strmblen'.
4100         * modules/unistr/u16-strmblen-tests: New file.
4101         * tests/unistr/test-u16-strmblen.c: New file.
4102
4103         Tests for module 'unistr/u8-strmblen'.
4104         * modules/unistr/u8-strmblen-tests: New file.
4105         * tests/unistr/test-u8-strmblen.c: New file.
4106
4107         Tests for module 'unistr/u32-cpy-alloc'.
4108         * modules/unistr/u32-cpy-alloc-tests: New file.
4109         * tests/unistr/test-u32-cpy-alloc.c: New file.
4110
4111         Tests for module 'unistr/u16-cpy-alloc'.
4112         * modules/unistr/u16-cpy-alloc-tests: New file.
4113         * tests/unistr/test-u16-cpy-alloc.c: New file.
4114
4115         Tests for module 'unistr/u8-cpy-alloc'.
4116         * modules/unistr/u8-cpy-alloc-tests: New file.
4117         * tests/unistr/test-u8-cpy-alloc.c: New file.
4118         * tests/unistr/test-cpy-alloc.h: New file.
4119
4120         Tests for module 'unistr/u32-mbsnlen'.
4121         * modules/unistr/u32-mbsnlen-tests: New file.
4122         * tests/unistr/test-u32-mbsnlen.c: New file.
4123
4124         Tests for module 'unistr/u16-mbsnlen'.
4125         * modules/unistr/u16-mbsnlen-tests: New file.
4126         * tests/unistr/test-u16-mbsnlen.c: New file.
4127
4128         Tests for module 'unistr/u8-mbsnlen'.
4129         * modules/unistr/u8-mbsnlen-tests: New file.
4130         * tests/unistr/test-u8-mbsnlen.c: New file.
4131
4132         Tests for module 'unistr/u32-chr'.
4133         * modules/unistr/u32-chr-tests: New file.
4134         * tests/unistr/test-u32-chr.c: New file.
4135
4136         Tests for module 'unistr/u16-chr'.
4137         * modules/unistr/u16-chr-tests: New file.
4138         * tests/unistr/test-u16-chr.c: New file.
4139
4140         Tests for module 'unistr/u8-chr'.
4141         * modules/unistr/u8-chr-tests: New file.
4142         * tests/unistr/test-u8-chr.c: New file.
4143         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
4144
4145         Tests for module 'unistr/u32-cmp2'.
4146         * modules/unistr/u32-cmp2-tests: New file.
4147         * tests/unistr/test-u32-cmp2.c: New file.
4148
4149         Tests for module 'unistr/u16-cmp2'.
4150         * modules/unistr/u16-cmp2-tests: New file.
4151         * tests/unistr/test-u16-cmp2.c: New file.
4152
4153         Tests for module 'unistr/u8-cmp2'.
4154         * modules/unistr/u8-cmp2-tests: New file.
4155         * tests/unistr/test-u8-cmp2.c: New file.
4156         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
4157
4158         Tests for module 'unistr/u32-cmp'.
4159         * modules/unistr/u32-cmp-tests: New file.
4160         * tests/unistr/test-u32-cmp.c: New file.
4161
4162         Tests for module 'unistr/u16-cmp'.
4163         * modules/unistr/u16-cmp-tests: New file.
4164         * tests/unistr/test-u16-cmp.c: New file.
4165
4166         Tests for module 'unistr/u8-cmp'.
4167         * modules/unistr/u8-cmp-tests: New file.
4168         * tests/unistr/test-u8-cmp.c: New file.
4169         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
4170
4171         Tests for module 'unistr/u32-set'.
4172         * modules/unistr/u32-set-tests: New file.
4173         * tests/unistr/test-u32-set.c: New file.
4174
4175         Tests for module 'unistr/u16-set'.
4176         * modules/unistr/u16-set-tests: New file.
4177         * tests/unistr/test-u16-set.c: New file.
4178
4179         Tests for module 'unistr/u8-set'.
4180         * modules/unistr/u8-set-tests: New file.
4181         * tests/unistr/test-u8-set.c: New file.
4182         * tests/unistr/test-set.h: New file.
4183
4184         Tests for module 'unistr/u32-move'.
4185         * modules/unistr/u32-move-tests: New file.
4186         * tests/unistr/test-u32-move.c: New file.
4187
4188         Tests for module 'unistr/u16-move'.
4189         * modules/unistr/u16-move-tests: New file.
4190         * tests/unistr/test-u16-move.c: New file.
4191
4192         Tests for module 'unistr/u8-move'.
4193         * modules/unistr/u8-move-tests: New file.
4194         * tests/unistr/test-u8-move.c: New file.
4195         * tests/unistr/test-move.h: New file.
4196
4197         Tests for module 'unistr/u32-cpy'.
4198         * modules/unistr/u32-cpy-tests: New file.
4199         * tests/unistr/test-u32-cpy.c: New file.
4200
4201         Tests for module 'unistr/u16-cpy'.
4202         * modules/unistr/u16-cpy-tests: New file.
4203         * tests/unistr/test-u16-cpy.c: New file.
4204
4205         Tests for module 'unistr/u8-cpy'.
4206         * modules/unistr/u8-cpy-tests: New file.
4207         * tests/unistr/test-u8-cpy.c: New file.
4208         * tests/unistr/test-cpy.h: New file.
4209
4210 2010-01-09  Bruno Haible  <bruno@clisp.org>
4211
4212         Tests for module 'unistr/u32-uctomb'.
4213         * modules/unistr/u32-uctomb-tests: New file.
4214         * tests/unistr/test-u32-uctomb.c: New file.
4215
4216         Tests for module 'unistr/u16-uctomb'.
4217         * modules/unistr/u16-uctomb-tests: New file.
4218         * tests/unistr/test-u16-uctomb.c: New file.
4219
4220         Tests for module 'unistr/u8-uctomb'.
4221         * modules/unistr/u8-uctomb-tests: New file.
4222         * tests/unistr/test-u8-uctomb.c: New file.
4223
4224         Tests for module 'unistr/u32-mbtoucr'.
4225         * modules/unistr/u32-mbtoucr-tests: New file.
4226         * tests/unistr/test-u32-mbtoucr.c: New file.
4227
4228         Tests for module 'unistr/u16-mbtoucr'.
4229         * modules/unistr/u16-mbtoucr-tests: New file.
4230         * tests/unistr/test-u16-mbtoucr.c: New file.
4231
4232         Tests for module 'unistr/u8-mbtoucr'.
4233         * modules/unistr/u8-mbtoucr-tests: New file.
4234         * tests/unistr/test-u8-mbtoucr.c: New file.
4235
4236         Tests for module 'unistr/u32-mbtouc'.
4237         * modules/unistr/u32-mbtouc-tests: New file.
4238         * tests/unistr/test-u32-mbtouc.c: New file.
4239
4240         Tests for module 'unistr/u16-mbtouc'.
4241         * modules/unistr/u16-mbtouc-tests: New file.
4242         * tests/unistr/test-u16-mbtouc.c: New file.
4243
4244         Tests for module 'unistr/u8-mbtouc'.
4245         * modules/unistr/u8-mbtouc-tests: New file.
4246         * tests/unistr/test-u8-mbtouc.c: New file.
4247
4248         Tests for module 'unistr/u32-mbtouc-unsafe'.
4249         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
4250         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
4251         * tests/unistr/test-u32-mbtouc.h: New file.
4252
4253         Tests for module 'unistr/u16-mbtouc-unsafe'.
4254         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
4255         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
4256         * tests/unistr/test-u16-mbtouc.h: New file.
4257
4258         Tests for module 'unistr/u8-mbtouc-unsafe'.
4259         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
4260         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
4261         * tests/unistr/test-u8-mbtouc.h: New file.
4262
4263         Tests for module 'unistr/u32-mblen'.
4264         * modules/unistr/u32-mblen-tests: New file.
4265         * tests/unistr/test-u32-mblen.c: New file.
4266
4267         Tests for module 'unistr/u16-mblen'.
4268         * modules/unistr/u16-mblen-tests: New file.
4269         * tests/unistr/test-u16-mblen.c: New file.
4270
4271         Tests for module 'unistr/u8-mblen'.
4272         * modules/unistr/u8-mblen-tests: New file.
4273         * tests/unistr/test-u8-mblen.c: New file.
4274
4275         Tests for module 'unistr/u32-to-u16'.
4276         * modules/unistr/u32-to-u16-tests: New file.
4277         * tests/unistr/test-u32-to-u16.c: New file.
4278
4279         Tests for module 'unistr/u32-to-u8'.
4280         * modules/unistr/u32-to-u8-tests: New file.
4281         * tests/unistr/test-u32-to-u8.c: New file.
4282
4283         Tests for module 'unistr/u16-to-u32'.
4284         * modules/unistr/u16-to-u32-tests: New file.
4285         * tests/unistr/test-u16-to-u32.c: New file.
4286
4287         Tests for module 'unistr/u16-to-u8'.
4288         * modules/unistr/u16-to-u8-tests: New file.
4289         * tests/unistr/test-u16-to-u8.c: New file.
4290
4291         Tests for module 'unistr/u8-to-u32'.
4292         * modules/unistr/u8-to-u32-tests: New file.
4293         * tests/unistr/test-u8-to-u32.c: New file.
4294
4295         Tests for module 'unistr/u8-to-u16'.
4296         * modules/unistr/u8-to-u16-tests: New file.
4297         * tests/unistr/test-u8-to-u16.c: New file.
4298
4299         Tests for module 'unistr/u32-check'.
4300         * modules/unistr/u32-check-tests: New file.
4301         * tests/unistr/test-u32-check.c: New file.
4302
4303         Tests for module 'unistr/u16-check'.
4304         * modules/unistr/u16-check-tests: New file.
4305         * tests/unistr/test-u16-check.c: New file.
4306
4307         Tests for module 'unistr/u8-check'.
4308         * modules/unistr/u8-check-tests: New file.
4309         * tests/unistr/test-u8-check.c: New file.
4310
4311         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
4312         (category_equals): New function.
4313         (main): Add more tests.
4314         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
4315
4316         * tests/unictype/test-bidi_byname.c (main): Add more tests.
4317
4318 2010-01-10  Bruno Haible  <bruno@clisp.org>
4319
4320         unistr/u*-strcoll: Try harder to distinguish different strings.
4321         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
4322         compare s1 and s2 to see if they are different.
4323
4324 2010-01-10  Bruno Haible  <bruno@clisp.org>
4325
4326         unistr/u*-stpncpy: Fix the return value.
4327         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
4328         description of the return value consistent with stpncpy in glibc.
4329         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
4330         written non-NUL unit.
4331
4332 2010-01-10  Bruno Haible  <bruno@clisp.org>
4333
4334         unistr/u*-next: Add missing dependencies.
4335         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
4336         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
4337         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
4338
4339 2010-01-10  Bruno Haible  <bruno@clisp.org>
4340
4341         unistr/u8-mbsnlen: Fix return value for incomplete character.
4342         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
4343         u8_mblen.
4344         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
4345         Remove unistr/u8-mblen.
4346         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
4347         u16_mblen.
4348         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
4349         Remove unistr/u16-mblen.
4350
4351 2010-01-10  Bruno Haible  <bruno@clisp.org>
4352
4353         wchar: Fix compilation error when <wchar.h> is used from coreutils.
4354         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
4355         Reported by Brian Gough <bjg@gnu.org> and
4356         Chris Clayton <chris2553@googlemail.com> via
4357         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
4358
4359 2010-01-09  Bruno Haible  <bruno@clisp.org>
4360
4361         unistr/u16-to-u32: Reject invalid input.
4362         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
4363         u16_mbtouc.
4364         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
4365         Remove unistr/u16-mbtouc.
4366
4367         unistr/u16-to-u8: Reject invalid input.
4368         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
4369         u16_mbtouc.
4370         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
4371         Remove unistr/u16-mbtouc.
4372
4373         unistr/u8-to-u32: Reject invalid input.
4374         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
4375         u8_mbtouc.
4376         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
4377         Remove unistr/u8-mbtouc.
4378
4379         unistr/u8-to-u16: Reject invalid input.
4380         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
4381         u8_mbtouc.
4382         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
4383         Remove unistr/u8-mbtouc.
4384
4385 2010-01-09  Bruno Haible  <bruno@clisp.org>
4386
4387         Tests for module 'getlogin'.
4388         * modules/getlogin-tests: New file.
4389         * tests/test-getlogin.c: New file.
4390
4391         New module 'getlogin'.
4392         * lib/unistd.in.h (getlogin): New declaration.
4393         * lib/getlogin.c: New file.
4394         * m4/getlogin.m4: New file.
4395         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
4396         HAVE_GETLOGIN.
4397         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
4398         HAVE_GETLOGIN.
4399         * modules/getlogin: New file.
4400         * doc/posix-functions/getlogin.texi: Mention the new module.
4401         Reported by John W. Eaton <jwe@gnu.org>.
4402
4403 2010-01-09  Bruno Haible  <bruno@clisp.org>
4404
4405         getlogin_r: Support for native Windows.
4406         * lib/getlogin_r.c: Include <windows.h>
4407         (getlogin_r): Implement for native Windows.
4408         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
4409         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
4410         via John W. Eaton <jwe@gnu.org>.
4411
4412 2010-01-09  Bruno Haible  <bruno@clisp.org>
4413
4414         getlogin_r: Small fixes.
4415         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
4416         succeeds.
4417         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
4418         before testing whether getlogin_r is declared. No need to set
4419         HAVE_DECL_GETLOGIN_R to 1.
4420         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
4421
4422 2010-01-09  Bruno Haible  <bruno@clisp.org>
4423
4424         * lib/unistd.in.h (getlogin_r): Add comment.
4425
4426 2010-01-09  Bruno Haible  <bruno@clisp.org>
4427
4428         Tests for module 'getlogin_r'.
4429         * modules/getlogin_r-tests: New file.
4430         * tests/test-getlogin_r.c: New file.
4431
4432 2010-01-09  Jim Meyering  <meyering@redhat.com>
4433
4434         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
4435         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
4436         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
4437
4438 2010-01-08  Simon Josefsson  <simon@josefsson.org>
4439
4440         * lib/dup2.c (rpl_dup2): Improve comment.
4441
4442 2010-01-08  Eric Blake  <ebb9@byu.net>
4443
4444         maint.mk: allow packages to add makefile @@ exceptions
4445         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
4446         (sc_makefile_check): Rename...
4447         (sc_makefile_at_at_check): ...to this, and use hook.
4448
4449         dup2: work around mingw bug
4450         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
4451         Reported by Simon Josefsson.
4452
4453 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
4454
4455         glob: Fix C++ compilation.
4456         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
4457         C++.
4458
4459 2010-01-07  Bruno Haible  <bruno@clisp.org>
4460
4461         Fix indentation of wctype.in.h, broken since 2007-01-06.
4462         * lib/wctype.in.h: Fix indentation of preprocessor directives.
4463
4464 2010-01-07  Bruno Haible  <bruno@clisp.org>
4465
4466         mbslen: Avoid collision with system function.
4467         * lib/string.in.h [MirBSD]: Include <wchar.h>.
4468         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
4469         * m4/mbslen.m4: New file.
4470         * modules/mbslen (Files): Add it.
4471         (configure.ac): Invoke gl_MBSLEN.
4472         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
4473         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
4474         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
4475         via Ian Beckwith <ianb@erislabs.net>.
4476
4477 2010-01-07  Bruno Haible  <bruno@clisp.org>
4478
4479         dirent: Document the last fix.
4480         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
4481
4482 2010-01-07  Bruno Haible  <bruno@clisp.org>
4483
4484         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
4485         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
4486         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
4487         va_list are defined.
4488         * doc/posix-headers/stdio.texi: Document the bug of missing types.
4489         Reported by Eric Blake.
4490
4491 2010-01-07  Bruno Haible  <bruno@clisp.org>
4492
4493         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
4494         * modules/xlist (Depends-on): Add 'list',
4495         * modules/xoset (Depends-on): Add 'oset'.
4496         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4497
4498 2010-01-07  Bruno Haible  <bruno@clisp.org>
4499
4500         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
4501         * doc/posix-functions/strncasecmp.texi: Likewise.
4502
4503 2010-01-07  Bruno Haible  <bruno@clisp.org>
4504
4505         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
4506
4507 2010-01-07  John W. Eaton  <jwe@octave.org>
4508
4509         wctype: allow C++ use
4510         * lib/wctype.in.h: Add extern "C" block for C++.
4511
4512 2010-01-06  Eric Blake  <ebb9@byu.net>
4513
4514         maint.mk: detect incorrect GFDL usage
4515         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
4516
4517 2010-01-06  Jim Meyering  <meyering@redhat.com>
4518         and Eric Blake  <ebb9@byu.net>
4519
4520         maint.mk: ignore multi-line copyright in NEWS
4521         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
4522
4523 2010-01-06  Eric Blake  <ebb9@byu.net>
4524
4525         select: add missing dependency
4526         * modules/select-tests (Depends-on): Move sockets dependency...
4527         * modules/select (Depends-on): ...here.
4528         Reported by Ian Beckwith.
4529
4530         doc: regenerate INSTALL
4531         * doc/INSTALL: Reflect recent autoconf update.
4532         * doc/INSTALL.ISO: Likewise.
4533         * doc/INSTALL.UTF-8: Likewise.
4534
4535         pread: fix compilation on glibc
4536         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
4537         Reported by Ralf Wildenhues.
4538
4539         dirent: fix test failure
4540         * lib/dirent.in.h (includes): Guarantee ino_t.
4541         Reported by Ralf Wildenhues.
4542
4543 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
4544
4545         linkat, renameat: avoid bad free
4546         * lib/at-func2.c (at_func2): Fix typo.
4547         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
4548
4549 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4550
4551         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
4552         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
4553         to avoid failure of symlink test later.
4554
4555 2010-01-06  Eric Blake  <ebb9@byu.net>
4556
4557         stdio, unistd: guarantee ssize_t
4558         * lib/unistd.in.h (includes): Ensure that types required by POSIX
4559         2008 are exposed when needed.
4560         * lib/stdio.in.h (includes): Likewise.
4561         Reported by Ralf Wildenhues.
4562
4563 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
4564
4565         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
4566         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
4567         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
4568
4569 2010-01-06  Jim Meyering  <meyering@redhat.com>
4570
4571         readtokens: this module *does* require xalloc.h
4572         It uses only functions that were omitted by the old syntax-check rule.
4573         * lib/readtokens.c: Include "xalloc.h" once again.
4574         * modules/readtokens (Depends-on): Add xalloc.
4575         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
4576
4577 2010-01-05  Eric Blake  <ebb9@byu.net>
4578
4579         maint: support 'make announcement' from a VPATH build
4580         * top/maint.mk (announcement): Look for correct NEWS file.
4581
4582 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
4583
4584         utimens (fdutimens): ignore a negative FD, per contract
4585         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
4586         when we have a valid file descriptor.  Otherwise, using a brand
4587         new glibc (with just-patched futimens that now fails with EBADF)
4588         would cause this function to fail with ENOSYS.
4589         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
4590         See also http://bugzilla.redhat.com/552320.
4591
4592 2010-01-05  Eric Blake  <ebb9@byu.net>
4593
4594         strcase: document what it provides
4595         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
4596         gnulib module.
4597         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
4598         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
4599
4600 2010-01-05  Jim Meyering  <meyering@redhat.com>
4601
4602         maint: remove useless inclusions of "xalloc.h"
4603         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
4604         * lib/readtokens.c: Likewise.
4605         * lib/same.c: Likewise.
4606         * modules/getloadavg (Depends-on): Remove xalloc.
4607         * modules/readtokens: Likewise.
4608         * modules/same: Likewise.
4609
4610         maint.mk: include 4 more function names in alloca.h-checking regexp
4611         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
4612         regexp.  Before, we would give a false-positive (saying alloca.h
4613         is included unnecessarily) when the only uses involved omitted symbols.
4614
4615         xalloc.h: use consistent formatting
4616         * lib/xalloc.h: Move declarations to start in the first column.
4617
4618 2010-01-05  Eric Blake  <ebb9@byu.net>
4619
4620         mkdir: avoid xalloc
4621         * lib/mkdir.c (includes): Drop unused header.
4622         Reported by John W. Eaton.
4623
4624 2010-01-04  Jim Meyering  <meyering@redhat.com>
4625
4626         nl_langinfo: avoid configure-time syntax error
4627         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
4628         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
4629         the empty string.  Don't let that provoke a shell syntax error.
4630
4631         regcomp, regexec, fnmatch: avoid array bounds read error
4632         * lib/regcomp.c (build_equiv_class): From glibc:
4633         Use only the low 24 bits of a findidx return value as an index
4634         into the weights array.  Patch by Ulrich Drepper:
4635         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
4636         * lib/regexec.c (check_node_accept_bytes): Likewise.
4637         * lib/fnmatch_loop.c (FCT): Likewise.
4638
4639         regcomp: skip collseq lookup when there are no rules
4640         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
4641         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
4642
4643         regcomp: recognize ill-formed { } expressions
4644         * lib/regcomp.c (parse_dup_op): From glibc:
4645         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
4646
4647         regcomp: fix typo in comment
4648         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
4649         s/satisfy/satisfies/.
4650
4651         regcomp: sync from glibc: remove dead store
4652         * lib/regcomp.c (duplicate_node_closure): Remove useless
4653         search_duplicated_node call and dead store.
4654
4655         regcomp: sync from glibc; always use nl_langinfo
4656         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
4657         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
4658         * modules/regex (Depends-on): Add nl_langinfo.
4659
4660 2010-01-04  Eric Blake  <ebb9@byu.net>
4661
4662         fdopendir: fix configure test
4663         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
4664
4665 2010-01-01  Bruno Haible  <bruno@clisp.org>
4666
4667         wchar: Remove unused configure check.
4668         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
4669
4670 2010-01-01  Eric Blake  <ebb9@byu.net>
4671
4672         headers: make check of system header explicit
4673         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
4674         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
4675         ourselves.
4676         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
4677         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4678         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
4679         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
4680         internals.
4681         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
4682         missing.
4683         Suggested by Bruno Haible.
4684
4685 2010-01-01  Jim Meyering  <meyering@redhat.com>
4686
4687         ChangeLog: tweak to eliminate unnecessary copyright line
4688         * ChangeLog: Remove a copyright line that was mistakenly updated
4689         by today's update-copyright run.  Reported by Eric Blake.
4690
4691         test-update-copyright: don't let envvar setting cause test failure
4692         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4693
4694 2010-01-01  Bruno Haible  <bruno@clisp.org>
4695
4696         localename: Avoid gcc warning.
4697         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
4698         function if it is not used.
4699
4700 2010-01-01  Jim Meyering  <meyering@redhat.com>
4701
4702         update nearly all FSF copyright year lists to include 2010
4703         Use the same procedure as for 2009, outlined in
4704         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
4705
4706         version-etc: set COPYRIGHT_YEAR to 2010
4707         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
4708
4709 2009-12-31  Eric Blake  <ebb9@byu.net>
4710
4711         doc: correct availability of cygwin 1.5.x getopt
4712         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
4713         variables.
4714         * doc/posix-functions/opterr.texi (opterr): Likewise.
4715         * doc/posix-functions/optind.texi (optind): Likewise.
4716         * doc/posix-functions/optopt.texi (optopt): Likewise.
4717         * doc/posix-functions/tzname.texi (tzname): Likewise.
4718
4719         openat: update maintainer
4720         * modules/openat (Maintainer): Add myself.
4721
4722         utimens: avoid shadowing warning
4723         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
4724         buffers into one, to avoid shadowing, as well as avoiding a
4725         redundant stat.
4726         Reported by Jim Meyering.
4727
4728         test-dup2: avoid compiler warning
4729         * tests/test-dup2.c (is_inheritable): Only define if used.
4730
4731 2010-01-01  Bruno Haible  <bruno@clisp.org>
4732
4733         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
4734         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
4735         defined, use wctomb instead of wcrtomb.
4736
4737 2010-01-01  Bruno Haible  <bruno@clisp.org>
4738
4739         iconv: Reject native Solaris iconv.
4740         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
4741         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
4742
4743 2009-12-31  Bruno Haible  <bruno@clisp.org>
4744
4745         * tests/test-signal.c (main): Remove test of 'SIG'.
4746
4747 2009-12-31  Bruno Haible  <bruno@clisp.org>
4748
4749         spawn: Fix incomplete fix.
4750         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4751         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4752         warnings for GNULIB_POSIXCHECK again.
4753         Reported by Eric Blake.
4754
4755 2009-12-31  Bruno Haible  <bruno@clisp.org>
4756
4757         Avoid namespace pollution on glibc systems.
4758         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
4759         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
4760         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
4761         glibc systems.
4762
4763 2009-12-31  Bruno Haible  <bruno@clisp.org>
4764
4765         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
4766         (gl_REPLACE_WCHAR_H): Turn into a no-op.
4767         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
4768         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
4769         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
4770         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
4771         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
4772
4773 2009-12-31  Bruno Haible  <bruno@clisp.org>
4774
4775         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
4776         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
4777         afterwards.
4778
4779 2009-12-31  Bruno Haible  <bruno@clisp.org>
4780
4781         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
4782         SYS_UTSNAME_H.
4783
4784 2009-12-31  Bruno Haible  <bruno@clisp.org>
4785
4786         spawn: Fix misapplied patch.
4787         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4788         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4789         warnings for GNULIB_POSIXCHECK.
4790
4791 2009-12-31  Bruno Haible  <bruno@clisp.org>
4792
4793         times: Update after sys_times changed.
4794         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
4795         * modules/times (Files): Add it.
4796         (configure.ac): Invoke gl_FUNC_TIMES.
4797
4798 2009-12-31  Bruno Haible  <bruno@clisp.org>
4799
4800         Use AC_C_INLINE where necessary.
4801         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
4802         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
4803         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4804         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4805         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4806         * m4/mbiter.m4 (gl_MBITER): Likewise.
4807         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4808         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
4809         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
4810         * modules/u64 (configure.ac): Likewise.
4811
4812 2009-12-31  Bruno Haible  <bruno@clisp.org>
4813
4814         Use AC_C_INLINE instead of module 'inline' where possible.
4815         * modules/inline (Description): Clarify purpose.
4816         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
4817         * modules/count-one-bits (Depends-on): Remove inline.
4818         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
4819         * modules/openat (Depends-on): Remove inline.
4820         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
4821         instead of depending on module 'inline'.
4822         * modules/filevercmp (Depends-on, configure.ac): Likewise.
4823         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
4824         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
4825         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
4826         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
4827         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
4828         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
4829         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
4830         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
4831         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
4832         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
4833         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
4834         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
4835         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
4836         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
4837         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
4838         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
4839         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
4840         Likewise.
4841         * modules/unictype/property-ascii-hex-digit (Depends-on,
4842         configure.ac): Likewise.
4843         * modules/unictype/property-bidi-arabic-digit (Depends-on,
4844         configure.ac): Likewise.
4845         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
4846         configure.ac): Likewise.
4847         * modules/unictype/property-bidi-block-separator (Depends-on,
4848         configure.ac): Likewise.
4849         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
4850         configure.ac): Likewise.
4851         * modules/unictype/property-bidi-common-separator (Depends-on,
4852         configure.ac): Likewise.
4853         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
4854         Likewise.
4855         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
4856         configure.ac): Likewise.
4857         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
4858         configure.ac): Likewise.
4859         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
4860         configure.ac): Likewise.
4861         * modules/unictype/property-bidi-european-digit (Depends-on,
4862         configure.ac): Likewise.
4863         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
4864         configure.ac): Likewise.
4865         * modules/unictype/property-bidi-left-to-right (Depends-on,
4866         configure.ac): Likewise.
4867         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
4868         configure.ac): Likewise.
4869         * modules/unictype/property-bidi-other-neutral (Depends-on,
4870         configure.ac): Likewise.
4871         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
4872         Likewise.
4873         * modules/unictype/property-bidi-segment-separator (Depends-on,
4874         configure.ac): Likewise.
4875         * modules/unictype/property-bidi-whitespace (Depends-on,
4876         configure.ac): Likewise.
4877         * modules/unictype/property-combining (Depends-on, configure.ac):
4878         Likewise.
4879         * modules/unictype/property-composite (Depends-on, configure.ac):
4880         Likewise.
4881         * modules/unictype/property-currency-symbol (Depends-on,
4882         configure.ac): Likewise.
4883         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
4884         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
4885         Likewise.
4886         * modules/unictype/property-default-ignorable-code-point (Depends-on,
4887         configure.ac): Likewise.
4888         * modules/unictype/property-deprecated (Depends-on, configure.ac):
4889         Likewise.
4890         * modules/unictype/property-diacritic (Depends-on, configure.ac):
4891         Likewise.
4892         * modules/unictype/property-extender (Depends-on, configure.ac):
4893         Likewise.
4894         * modules/unictype/property-format-control (Depends-on, configure.ac):
4895         Likewise.
4896         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
4897         Likewise.
4898         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
4899         Likewise.
4900         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
4901         Likewise.
4902         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
4903         Likewise.
4904         * modules/unictype/property-hyphen (Depends-on, configure.ac):
4905         Likewise.
4906         * modules/unictype/property-id-continue (Depends-on, configure.ac):
4907         Likewise.
4908         * modules/unictype/property-id-start (Depends-on, configure.ac):
4909         Likewise.
4910         * modules/unictype/property-ideographic (Depends-on, configure.ac):
4911         Likewise.
4912         * modules/unictype/property-ids-binary-operator (Depends-on,
4913         configure.ac): Likewise.
4914         * modules/unictype/property-ids-trinary-operator (Depends-on,
4915         configure.ac): Likewise.
4916         * modules/unictype/property-ignorable-control (Depends-on,
4917         configure.ac): Likewise.
4918         * modules/unictype/property-iso-control (Depends-on, configure.ac):
4919         Likewise.
4920         * modules/unictype/property-join-control (Depends-on, configure.ac):
4921         Likewise.
4922         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
4923         Likewise.
4924         * modules/unictype/property-line-separator (Depends-on, configure.ac):
4925         Likewise.
4926         * modules/unictype/property-logical-order-exception (Depends-on,
4927         configure.ac): Likewise.
4928         * modules/unictype/property-lowercase (Depends-on, configure.ac):
4929         Likewise.
4930         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
4931         * modules/unictype/property-non-break (Depends-on, configure.ac):
4932         Likewise.
4933         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
4934         Likewise.
4935         * modules/unictype/property-numeric (Depends-on, configure.ac):
4936         Likewise.
4937         * modules/unictype/property-other-alphabetic (Depends-on,
4938         configure.ac): Likewise.
4939         * modules/unictype/property-other-default-ignorable-code-point
4940         (Depends-on, configure.ac): Likewise.
4941         * modules/unictype/property-other-grapheme-extend (Depends-on,
4942         configure.ac): Likewise.
4943         * modules/unictype/property-other-id-continue (Depends-on,
4944         configure.ac): Likewise.
4945         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
4946         Likewise.
4947         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
4948         Likewise.
4949         * modules/unictype/property-other-math (Depends-on, configure.ac):
4950         Likewise.
4951         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
4952         Likewise.
4953         * modules/unictype/property-paired-punctuation (Depends-on,
4954         configure.ac): Likewise.
4955         * modules/unictype/property-paragraph-separator (Depends-on,
4956         configure.ac): Likewise.
4957         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
4958         Likewise.
4959         * modules/unictype/property-pattern-white-space (Depends-on,
4960         configure.ac): Likewise.
4961         * modules/unictype/property-private-use (Depends-on, configure.ac):
4962         Likewise.
4963         * modules/unictype/property-punctuation (Depends-on, configure.ac):
4964         Likewise.
4965         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
4966         Likewise.
4967         * modules/unictype/property-radical (Depends-on, configure.ac):
4968         Likewise.
4969         * modules/unictype/property-sentence-terminal (Depends-on,
4970         configure.ac): Likewise.
4971         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
4972         Likewise.
4973         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
4974         * modules/unictype/property-terminal-punctuation (Depends-on,
4975         configure.ac): Likewise.
4976         * modules/unictype/property-titlecase (Depends-on, configure.ac):
4977         Likewise.
4978         * modules/unictype/property-unassigned-code-value (Depends-on,
4979         configure.ac): Likewise.
4980         * modules/unictype/property-unified-ideograph (Depends-on,
4981         configure.ac): Likewise.
4982         * modules/unictype/property-uppercase (Depends-on, configure.ac):
4983         Likewise.
4984         * modules/unictype/property-variation-selector (Depends-on,
4985         configure.ac): Likewise.
4986         * modules/unictype/property-white-space (Depends-on, configure.ac):
4987         Likewise.
4988         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
4989         Likewise.
4990         * modules/unictype/property-xid-start (Depends-on, configure.ac):
4991         Likewise.
4992         * modules/unictype/property-zero-width (Depends-on, configure.ac):
4993         Likewise.
4994         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
4995         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
4996         Likewise.
4997
4998 2009-12-31  Bruno Haible  <bruno@clisp.org>
4999
5000         Remove unnecessary AC_C_INLINE invocation.
5001         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
5002         since 2009-08-21.
5003
5004 2009-12-31  Jim Meyering  <meyering@redhat.com>
5005
5006         maint.mk: don't require explicit gpg_key_ID in cfg.mk
5007         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
5008         With this change, we can all remove the gpg_key_ID = ... definition
5009         from our respective cfg.mk files.
5010
5011         maint.mk: create announcement template in ~/, not in /tmp
5012         * top/maint.mk (emit_upload_commands): Adjust.
5013         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
5014         Remove temporary file, .ci-msg.
5015
5016 2009-12-31  Eric Blake  <ebb9@byu.net>
5017
5018         link-warning: always build headers with link warnings
5019         * modules/arpa_inet (Makefile.am): Always build replacement
5020         header.
5021         * modules/ctype (Makefile.am): Likewise.
5022         * modules/dirent (Makefile.am): Likewise.
5023         * modules/inttypes (Makefile.am): Likewise.
5024         * modules/langinfo (Makefile.am): Likewise.
5025         * modules/locale (Makefile.am): Likewise.
5026         * modules/spawn (Makefile.am): Likewise.
5027         * modules/sys_file (Makefile.am): Likewise.
5028         * modules/sys_ioctl (Makefile.am): Likewise.
5029         * modules/sys_select (Makefile.am): Likewise.
5030         * modules/sys_socket (Makefile.am): Likewise.
5031         * modules/sys_times (Makefile.am): Likewise.
5032         * modules/sys_utsname (Makefile.am): Likewise.
5033         * modules/sys_wait (Makefile.am): Likewise.
5034         * modules/wchar (Makefile.am): Likewise.
5035         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
5036         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
5037         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
5038         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
5039         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
5040         Likewise.
5041         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
5042         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
5043         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
5044         Likewise.
5045         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
5046         Likewise.
5047         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
5048         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
5049         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
5050         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5051         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
5052         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5053         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5054         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
5055         (gl_WCHAR_H_DEFAULTS): Likewise.
5056
5057 2009-12-31  Eric Blake  <ebb9@byu.net>
5058
5059         signal, spawn: use link warnings
5060         * lib/signal.in.h (sigset_t): Make unconditional.
5061         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
5062         (sigpending, sigprocmask, sigaction): Add link warnings.
5063         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
5064         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
5065         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
5066         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
5067         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
5068         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
5069         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
5070         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
5071         (posix_spawn_file_actions_destroy)
5072         (posix_spawn_file_actions_addopen)
5073         (posix_spawn_file_actions_addclose)
5074         (posix_spawn_file_actions_adddup2): Likewise.
5075         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
5076         * tests/test-signal.c (main): Enhance test.
5077
5078         spawn: improve wrapper support
5079         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
5080         (gl_SPAWN_H_DEFAULTS): New defaults.
5081         * modules/spawn (Makefile.am): Substitute them.
5082         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
5083         Only declare if missing or broken.
5084
5085         sys_times, sys_utsname: use include_next
5086         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
5087         header.
5088         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
5089         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5090         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5091         * modules/sys_times (Depends-on): Add include_next.
5092         (Makefile.am): Substitute additional values.
5093         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
5094         * lib/sys_times.in.h (includes): Include native header, if
5095         available.
5096         * lib/sys_utsname.in.h (includes): Likewise.
5097         * tests/test-sys_times.c (main): Enhance test.
5098
5099         fdutimensat: revert prior patch
5100         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
5101         utimens.h.
5102         Reported by Bruno Haible.
5103
5104 2009-12-30  Eric Blake  <ebb9@byu.net>
5105
5106         sys_wait: drop link-warning dependency
5107         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
5108         link-warning efforts.
5109         * lib/sys_wait.in.h: Likewise.
5110
5111         fdutimensat: remove bogus dependency
5112         * modules/fdutimensat (Depends-on): Drop inline.
5113
5114         unistd: fix typo
5115         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
5116
5117 2009-12-30  Bruno Haible  <bruno@clisp.org>
5118
5119         Fix compilation error with Solaris cc.
5120         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
5121         * lib/unicase/u16-is-invariant.c: Likewise.
5122         * lib/unicase/u32-is-invariant.c: Likewise.
5123         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
5124
5125 2009-12-30  Bruno Haible  <bruno@clisp.org>
5126
5127         Fix test crash.
5128         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
5129         locales.
5130         Reported by Simon Josefsson <simon@josefsson.org>.
5131
5132 2009-12-30  Bruno Haible  <bruno@clisp.org>
5133
5134         Fix compilation error on most platforms.
5135         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
5136         Reported by Simon Josefsson <simon@josefsson.org>
5137         and Nelson H. F. Beebe <beebe@math.utah.edu>.
5138
5139 2009-12-30  Eric Blake  <ebb9@byu.net>
5140
5141         futimens, utimensat: work around ntfs-3g bug
5142         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
5143         a ctime bug is present, and expand workaround to cover ntfs-3g.
5144         * lib/utimens.c (fdutimens, lutimens): Likewise.
5145         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
5146         (validate_timespec): Adjust return value.
5147         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
5148         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
5149         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
5150
5151 2009-12-29  Eric Blake  <ebb9@byu.net>
5152
5153         link-warning: make usage consistent
5154         * modules/ctype (Depends-on): Add link-warning.
5155         (Makefile.am): Update rules accordingly.
5156         * modules/langinfo (Depends-on, Makefile.am): Likewise.
5157         * modules/locale (Depends-on, Makefile.am): Likewise.
5158         * modules/sys_file (Makefile.am): Likewise.
5159         * modules/getopt-posix (Makefile.am): Delete unused link warning
5160         efforts.
5161         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
5162         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
5163         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
5164         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
5165
5166         stdio: remove unused variables
5167         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
5168         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
5169         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
5170
5171         tests: test more substitute headers
5172         * modules/ctype-tests: New file.
5173         * modules/dirent-tests: Likewise.
5174         * modules/spawn-tests: Likewise.
5175         * modules/sys_file-tests: Likewise.
5176         * modules/sys_ioctl-tests: Likewise.
5177         * modules/sys_wait-tests: Likewise.
5178         * tests/test-ctype.c: Likewise.
5179         * tests/test-dirent.c: Likewise.
5180         * tests/test-spawn.c: Likewise.
5181         * tests/test-sys_file.c: Likewise.
5182         * tests/test-sys_ioctl.c: Likewise.
5183         * tests/test-sys_wait.c: Likewise.
5184         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
5185         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
5186         whether or not flock is in use.
5187
5188         tests: remove License section from module
5189         * modules/arpa_inet-tests: Remove unneeded section.
5190         * modules/byteswap-tests: Likewise.
5191         * modules/ceilf-tests: Likewise.
5192         * modules/ceill-tests: Likewise.
5193         * modules/crypto/des-tests: Likewise.
5194         * modules/crypto/gc-arcfour-tests: Likewise.
5195         * modules/crypto/gc-arctwo-tests: Likewise.
5196         * modules/crypto/gc-des-tests: Likewise.
5197         * modules/crypto/gc-hmac-md5-tests: Likewise.
5198         * modules/crypto/gc-hmac-sha1-tests: Likewise.
5199         * modules/crypto/gc-md2-tests: Likewise.
5200         * modules/crypto/gc-md4-tests: Likewise.
5201         * modules/crypto/gc-md5-tests: Likewise.
5202         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
5203         * modules/crypto/gc-rijndael-tests: Likewise.
5204         * modules/crypto/gc-sha1-tests: Likewise.
5205         * modules/crypto/gc-tests: Likewise.
5206         * modules/crypto/md2-tests: Likewise.
5207         * modules/crypto/md4-tests: Likewise.
5208         * modules/fcntl-h-tests: Likewise.
5209         * modules/floorf-tests: Likewise.
5210         * modules/floorl-tests: Likewise.
5211         * modules/frexp-nolibm-tests: Likewise.
5212         * modules/frexp-tests: Likewise.
5213         * modules/frexpl-nolibm-tests: Likewise.
5214         * modules/frexpl-tests: Likewise.
5215         * modules/getaddrinfo-tests: Likewise.
5216         * modules/inttypes-tests: Likewise.
5217         * modules/isfinite-tests: Likewise.
5218         * modules/isinf-tests: Likewise.
5219         * modules/ldexpl-tests: Likewise.
5220         * modules/locale-tests: Likewise.
5221         * modules/math-tests: Likewise.
5222         * modules/netdb-tests: Likewise.
5223         * modules/netinet_in-tests: Likewise.
5224         * modules/printf-frexp-tests: Likewise.
5225         * modules/printf-frexpl-tests: Likewise.
5226         * modules/priv-set-tests: Likewise.
5227         * modules/random_r-tests: Likewise.
5228         * modules/round-tests: Likewise.
5229         * modules/roundf-tests: Likewise.
5230         * modules/roundl-tests: Likewise.
5231         * modules/search-tests: Likewise.
5232         * modules/select-tests: Likewise.
5233         * modules/signal-tests: Likewise.
5234         * modules/stdbool-tests: Likewise.
5235         * modules/stddef-tests: Likewise.
5236         * modules/stdint-tests: Likewise.
5237         * modules/stdio-tests: Likewise.
5238         * modules/stdlib-tests: Likewise.
5239         * modules/string-tests: Likewise.
5240         * modules/strings-tests: Likewise.
5241         * modules/sys_select-tests: Likewise.
5242         * modules/sys_socket-tests: Likewise.
5243         * modules/sys_stat-tests: Likewise.
5244         * modules/sys_time-tests: Likewise.
5245         * modules/sys_utsname-tests: Likewise.
5246         * modules/sysexits-tests: Likewise.
5247         * modules/time-tests: Likewise.
5248         * modules/trunc-tests: Likewise.
5249         * modules/truncf-tests: Likewise.
5250         * modules/truncl-tests: Likewise.
5251         * modules/tsearch-tests: Likewise.
5252         * modules/unistd-tests: Likewise.
5253         * modules/wchar-tests: Likewise.
5254         * modules/wctype-tests: Likewise.
5255
5256         tests: fix license on several tests
5257         * tests/test-des.c: Update to GPLv3+.
5258         * tests/test-flock.c: Likewise.
5259         * tests/test-fsync.c: Likewise.
5260         * tests/test-futimens.h: Likewise.
5261         * tests/test-gc-arcfour.c: Likewise.
5262         * tests/test-gc-arctwo.c: Likewise.
5263         * tests/test-gc-des.c: Likewise.
5264         * tests/test-gc-hmac-md5.c: Likewise.
5265         * tests/test-gc-hmac-sha1.c: Likewise.
5266         * tests/test-gc-md2.c: Likewise.
5267         * tests/test-gc-md4.c: Likewise.
5268         * tests/test-gc-md5.c: Likewise.
5269         * tests/test-gc-pbkdf2-sha1.c: Likewise.
5270         * tests/test-gc-rijndael.c: Likewise.
5271         * tests/test-gc-sha1.c: Likewise.
5272         * tests/test-gc.c: Likewise.
5273         * tests/test-getcwd.c: Likewise.
5274         * tests/test-link.c: Likewise.
5275         * tests/test-link.h: Likewise.
5276         * tests/test-lutimens.h: Likewise.
5277         * tests/test-md2.c: Likewise.
5278         * tests/test-md4.c: Likewise.
5279         * tests/test-mkdir.h: Likewise.
5280         * tests/test-rename.c: Likewise.
5281         * tests/test-rename.h: Likewise.
5282         * tests/test-safe-alloc.c: Likewise.
5283         * tests/test-utimens-common.h: Likewise.
5284         * tests/test-utimens.h: Likewise.
5285
5286         maint: sync license texts
5287         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
5288         * doc/gpl-3.0.texi: Revert copyright year update.
5289         * doc/lgpl-3.0.texi: Likewise.
5290
5291 2009-12-29  Jim Meyering  <meyering@redhat.com>
5292
5293         update nearly all FSF copyright year lists to include 2009
5294         The files named by the following are exempted:
5295             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
5296               test -f "$dst" && { echo "$dst"; continue; }
5297               test -d "$dst" || continue
5298               echo "$dst"/$(basename "$src")
5299             done > exempt
5300             git ls-files tests/unictype >> exempt
5301         In the remaining files, convert to all-interval notation if
5302         - there is already at least one year interval like 2000-2003
5303         - the file is maintained by me
5304         - the file is in lib/uni*/, where that style already prevails
5305         Otherwise, use update-copyright's default.
5306
5307 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5308         and Eric Blake  <ebb9@byu.net>
5309
5310         tests: don't require debug system() to pass
5311         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
5312         * tests/test-rmdir.h (test_rmdir_func): Likewise.
5313         * tests/test-unlink.h (test_unlink_func): Likewise.
5314         * tests/test-fstatat.c (main): ...into callers.
5315         * tests/test-lstat.c (main): Likewise.
5316         * tests/test-rmdir.c (main): Likewise.
5317         * tests/test-unlink.c (main): Likewise.
5318         * tests/test-unlinkat.c (main): Likewise.
5319         * tests/test-areadlink-with-size.c (main): Don't require a
5320         debug-only system call to pass, aiding cross-testing to mingw.
5321         * tests/test-areadlink.c (main): Likewise.
5322         * tests/test-areadlinkat-with-size.c (main): Likewise.
5323         * tests/test-areadlinkat.c (main): Likewise.
5324         * tests/test-canonicalize-lgpl.c (main): Likewise.
5325         * tests/test-canonicalize.c (main): Likewise.
5326         * tests/test-chown.c (main): Likewise.
5327         * tests/test-fchownat.c (main): Likewise.
5328         * tests/test-lchown.c (main): Likewise.
5329         * tests/test-fdutimensat.c (main): Likewise.
5330         * tests/test-futimens.c (main): Likewise.
5331         * tests/test-link.c (main): Likewise.
5332         * tests/test-linkat.c (main): Likewise.
5333         * tests/test-mkdir.c (main): Likewise.
5334         * tests/test-mkdirat.c (main): Likewise.
5335         * tests/test-mkfifo.c (main): Likewise.
5336         * tests/test-mkfifoat.c (main): Likewise.
5337         * tests/test-mknod.c (main): Likewise.
5338         * tests/test-readlink.c (main): Likewise.
5339         * tests/test-remove.c (main): Likewise.
5340         * tests/test-rename.c (main): Likewise.
5341         * tests/test-renameat.c (main): Likewise.
5342         * tests/test-symlink.c (main): Likewise.
5343         * tests/test-symlinkat.c (main): Likewise.
5344         * tests/test-utimens.c (main): Likewise.
5345         * tests/test-utimensat.c (main): Likewise.
5346
5347 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5348
5349         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
5350         on $(UNUSED_PARAMETER_H) to avoid build failure.
5351
5352 2009-12-28  Jim Meyering  <meyering@redhat.com>
5353
5354         update-copyright: you may specify a max. line length other than 72
5355         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
5356
5357         maint: use consistent FSF copyright line syntax
5358         * lib/posixtm.c: Add missing comma in FSF copyright line.
5359         * lib/posixtm.h: Likewise.
5360         * lib/getugroups.c: Add missing ", Inc.".
5361
5362         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
5363         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
5364         FSF copyright line.  Remove trailing blanks.
5365
5366 2009-12-28  Eric Blake  <ebb9@byu.net>
5367
5368         test-dup2: reduce dependencies
5369         * modules/cloexec (Configure.ac): Set witness.
5370         * modules/dup2-tests (Depends-on): Drop cloexec.
5371         * tests/test-dup2.c (main): Skip portion of test if cloexec module
5372         not present.
5373         Suggested by Bruno Haible.
5374
5375 2009-12-26  Bruno Haible  <bruno@clisp.org>
5376
5377         Remove an unneeded dependency.
5378         * modules/fseterr (Depends-on): Remove dup2.
5379
5380 2009-12-26  Eric Blake  <ebb9@byu.net>
5381
5382         tests: use macros.h in more places
5383         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
5384         (ASSERT_STREAM): Provide default of stderr.
5385         * tests/test-dirent-safer.c: Include macros.h, using alternate
5386         stream for assertions.
5387         * tests/test-dup-safer.c: Likewise.
5388         * tests/test-freopen-safer.c: Likewise.
5389         * tests/test-getopt.c: Likewise.
5390         * tests/test-openat-safer.c: Likewise.
5391         * tests/test-pipe.c: Likewise.
5392         * tests/test-popen-safer.c: Likewise.
5393         * modules/dirent-safer-tests (Files): Include macros.h.
5394         * modules/unistd-safer-tests (Files): Likewise.
5395         * modules/freopen-safer-tests (Files): Likewise.
5396         * modules/getopt-posix-tests (Files): Likewise.
5397         * modules/openat-safer-tests (Files): Likewise.
5398         * modules/pipe-tests (Files): Likewise.
5399
5400 2009-12-26  Bruno Haible  <bruno@clisp.org>
5401
5402         javacomp: Portability fix.
5403         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
5404         that it also works on Solaris.
5405
5406 2009-12-26  Bruno Haible  <bruno@clisp.org>
5407
5408         localename: Fix storage allocation of gl_locale_name_thread's result.
5409         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
5410         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
5411         all platforms that have 'uselocale'.
5412         (gl_locale_name_thread_unsafe): New function, extracted from
5413         gl_locale_name_thread.
5414         (gl_locale_name_thread): Call struniq on all platforms that have
5415         'uselocale'.
5416         * tests/test-localename.c (test_locale_name_thread): Check that the
5417         resulting strings are permanently allocated.
5418         * modules/localename-tests (Depends-on): Add strdup.
5419
5420 2009-12-26  Bruno Haible  <bruno@clisp.org>
5421
5422         * tests/test-localename.c (categories): Fill in the strings.
5423
5424 2009-12-26  Jim Meyering  <meyering@redhat.com>
5425
5426         isdir: complete the removal of m4/isdir.m4
5427         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
5428
5429         isdir: clean up, since at least grep still uses it
5430         * lib/isdir.c: Include "isdir.h".
5431         (S_ISDIR): Remove now-unneeded definition.
5432         * modules/isdir (Files): Add lib/isdir.h.
5433         * lib/isdir.h: New file, with declaration.
5434         * m4/isdir.m4: Remove file -- unneeded.
5435
5436 2009-12-25  Bruno Haible  <bruno@clisp.org>
5437
5438         selinux-h: Make generated .h files standalone.
5439         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
5440         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
5441         * lib/se-selinux.in.h: Likewise.
5442         * modules/selinux-h (Depends-on): Add unused-parameter.
5443         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
5444         selinux/selinux.h and selinux/context.h.
5445         Suggested by Eric Blake.
5446
5447 2009-12-25  Bruno Haible  <bruno@clisp.org>
5448
5449         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
5450         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
5451         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
5452         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
5453         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
5454
5455 2009-12-24  Bruno Haible  <bruno@clisp.org>
5456
5457         openat: Fix warning.
5458         * lib/openat-proc.c: Include <unistd.h>.
5459
5460 2009-12-24  Bruno Haible  <bruno@clisp.org>
5461
5462         New module 'unused-parameter'.
5463         * build-aux/unused-parameter.h: New file, extracted from earlier
5464         gnulib-common.m4.
5465         * modules/unused-parameter: New file.
5466         * lib/unistr.h: Include unused-parameter.h.
5467         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
5468         _GL_UNUSED.
5469         * modules/unistr/base (Depends-on): Add unused-parameter.
5470
5471 2009-12-24  Bruno Haible  <bruno@clisp.org>
5472
5473         Add missing dependencies to 'extensions' module.
5474         * m4/extensions.m4: Add comment.
5475         * modules/accept4 (Depends-on): Add extensions.
5476         * modules/dup3 (Depends-on): Likewise.
5477         * modules/fcntl (Depends-on): Likewise.
5478         * modules/futimens (Depends-on): Likewise.
5479         * modules/mknod (Depends-on): Likewise.
5480         * modules/pipe2 (Depends-on): Likewise.
5481         * modules/stat-time (Depends-on): Likewise.
5482         * modules/strcasestr-simple (Depends-on): Likewise.
5483         * modules/strsignal (Depends-on): Likewise.
5484         * modules/utimensat (Depends-on): Likewise.
5485         * modules/localcharset (Depends-on): Likewise. Needed because of
5486         gl_FCNTL_O_FLAGS.
5487         * modules/wcrtomb (Depends-on): Likewise. Needed because of
5488         AC_TYPE_MBSTATE_T.
5489         * modules/wcsnrtombs (Depends-on): Likewise.
5490         * modules/wcsrtombs (Depends-on): Likewise.
5491
5492 2009-12-24  Bruno Haible  <bruno@clisp.org>
5493
5494         binary-io: Avoid gcc warning due to SET_BINARY.
5495         * lib/binary-io.h (SET_BINARY): Cast the result to void.
5496         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
5497
5498 2009-12-24  Bruno Haible  <bruno@clisp.org>
5499
5500         Avoid future namespace pollution on glibc systems.
5501         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
5502         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
5503         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
5504         glibc systems.
5505
5506 2009-12-24  Bruno Haible  <bruno@clisp.org>
5507
5508         Refactor common macros used in tests.
5509         * tests/macros.h: New file.
5510         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
5511         and/or <stdlib.h>, if appropriate.
5512         (ASSERT, SIZEOF): Remove macros.
5513         * tests/test-areadlink-with-size.c: Likewise.
5514         * tests/test-areadlinkat.c: Likewise.
5515         * tests/test-areadlinkat-with-size.c: Likewise.
5516         * tests/test-argmatch.c: Likewise.
5517         * tests/test-argv-iter.c: Likewise.
5518         * tests/test-array-mergesort.c: Likewise.
5519         * tests/test-array_list.c: Likewise.
5520         * tests/test-array_oset.c: Likewise.
5521         * tests/test-avltree_list.c: Likewise.
5522         * tests/test-avltree_oset.c: Likewise.
5523         * tests/test-avltreehash_list.c: Likewise.
5524         * tests/test-base64.c: Likewise.
5525         * tests/test-binary-io.c: Likewise.
5526         * tests/test-bitrotate.c: Likewise.
5527         * tests/test-btowc.c: Likewise.
5528         * tests/test-byteswap.c: Likewise.
5529         * tests/test-c-ctype.c: Likewise.
5530         * tests/test-c-stack.c: Likewise.
5531         * tests/test-c-strcasecmp.c: Likewise.
5532         * tests/test-c-strcasestr.c: Likewise.
5533         * tests/test-c-strncasecmp.c: Likewise.
5534         * tests/test-c-strstr.c: Likewise.
5535         * tests/test-canonicalize-lgpl.c: Likewise.
5536         * tests/test-canonicalize.c: Likewise.
5537         * tests/test-carray_list.c: Likewise.
5538         * tests/test-ceilf1.c: Likewise.
5539         * tests/test-ceilf2.c: Likewise.
5540         * tests/test-ceill.c: Likewise.
5541         * tests/test-chown.c: Likewise.
5542         * tests/test-cloexec.c: Likewise.
5543         * tests/test-copy-acl.c: Likewise.
5544         * tests/test-copy-file.c: Likewise.
5545         * tests/test-count-one-bits.c: Likewise.
5546         * tests/test-dprintf-posix.c: Likewise.
5547         * tests/test-dup2.c: Likewise.
5548         * tests/test-dup3.c: Likewise.
5549         * tests/test-duplocale.c: Likewise.
5550         * tests/test-fbufmode.c: Likewise.
5551         * tests/test-fchdir.c: Likewise.
5552         * tests/test-fchownat.c: Likewise.
5553         * tests/test-fcntl-safer.c: Likewise.
5554         * tests/test-fcntl.c: Likewise.
5555         * tests/test-fdopendir.c: Likewise.
5556         * tests/test-fdutimensat.c: Likewise.
5557         * tests/test-fflush2.c: Likewise.
5558         * tests/test-file-has-acl.c: Likewise.
5559         * tests/test-filevercmp.c: Likewise.
5560         * tests/test-flock.c: Likewise.
5561         * tests/test-floorf1.c: Likewise.
5562         * tests/test-floorf2.c: Likewise.
5563         * tests/test-floorl.c: Likewise.
5564         * tests/test-fnmatch.c: Likewise.
5565         * tests/test-fopen.h: Likewise.
5566         * tests/test-fpending.c: Likewise.
5567         * tests/test-fprintf-posix.c: Likewise.
5568         * tests/test-fpurge.c: Likewise.
5569         * tests/test-freadable.c: Likewise.
5570         * tests/test-freadahead.c: Likewise.
5571         * tests/test-freading.c: Likewise.
5572         * tests/test-freadptr.c: Likewise.
5573         * tests/test-freadptr2.c: Likewise.
5574         * tests/test-freadseek.c: Likewise.
5575         * tests/test-freopen.c: Likewise.
5576         * tests/test-frexp.c: Likewise.
5577         * tests/test-frexpl.c: Likewise.
5578         * tests/test-fseek.c: Likewise.
5579         * tests/test-fseeko.c: Likewise.
5580         * tests/test-fstatat.c: Likewise.
5581         * tests/test-fstrcmp.c: Likewise.
5582         * tests/test-fsync.c: Likewise.
5583         * tests/test-ftell.c: Likewise.
5584         * tests/test-ftello.c: Likewise.
5585         * tests/test-func.c: Likewise.
5586         * tests/test-futimens.c: Likewise.
5587         * tests/test-fwritable.c: Likewise.
5588         * tests/test-fwriting.c: Likewise.
5589         * tests/test-getcwd.c: Likewise.
5590         * tests/test-getdate.c: Likewise.
5591         * tests/test-getdelim.c: Likewise.
5592         * tests/test-getdtablesize.c: Likewise.
5593         * tests/test-getgroups.c: Likewise.
5594         * tests/test-getline.c: Likewise.
5595         * tests/test-getndelim2.c: Likewise.
5596         * tests/test-glob.c: Likewise.
5597         * tests/test-hash.c: Likewise.
5598         * tests/test-i-ring.c: Likewise.
5599         * tests/test-iconv-utf.c: Likewise.
5600         * tests/test-iconv.c: Likewise.
5601         * tests/test-idpriv-drop.c: Likewise.
5602         * tests/test-idpriv-droptemp.c: Likewise.
5603         * tests/test-inet_ntop.c: Likewise.
5604         * tests/test-inet_pton.c: Likewise.
5605         * tests/test-isblank.c: Likewise.
5606         * tests/test-isfinite.c: Likewise.
5607         * tests/test-isinf.c: Likewise.
5608         * tests/test-isnan.c: Likewise.
5609         * tests/test-isnand.h: Likewise.
5610         * tests/test-isnanf.h: Likewise.
5611         * tests/test-isnanl.h: Likewise.
5612         * tests/test-lchown.c: Likewise.
5613         * tests/test-ldexpl.c: Likewise.
5614         * tests/test-link.c: Likewise.
5615         * tests/test-linkat.c: Likewise.
5616         * tests/test-linked_list.c: Likewise.
5617         * tests/test-linkedhash_list.c: Likewise.
5618         * tests/test-localename.c: Likewise.
5619         * tests/test-lseek.c: Likewise.
5620         * tests/test-lstat.c: Likewise.
5621         * tests/test-mbmemcasecmp.c: Likewise.
5622         * tests/test-mbmemcasecoll.c: Likewise.
5623         * tests/test-mbrtowc.c: Likewise.
5624         * tests/test-mbscasecmp.c: Likewise.
5625         * tests/test-mbscasestr1.c: Likewise.
5626         * tests/test-mbscasestr2.c: Likewise.
5627         * tests/test-mbscasestr3.c: Likewise.
5628         * tests/test-mbscasestr4.c: Likewise.
5629         * tests/test-mbschr.c: Likewise.
5630         * tests/test-mbscspn.c: Likewise.
5631         * tests/test-mbsinit.c: Likewise.
5632         * tests/test-mbsncasecmp.c: Likewise.
5633         * tests/test-mbsnrtowcs.c: Likewise.
5634         * tests/test-mbspbrk.c: Likewise.
5635         * tests/test-mbspcasecmp.c: Likewise.
5636         * tests/test-mbsrchr.c: Likewise.
5637         * tests/test-mbsrtowcs.c: Likewise.
5638         * tests/test-mbsspn.c: Likewise.
5639         * tests/test-mbsstr1.c: Likewise.
5640         * tests/test-mbsstr2.c: Likewise.
5641         * tests/test-mbsstr3.c: Likewise.
5642         * tests/test-memchr.c: Likewise.
5643         * tests/test-memchr2.c: Likewise.
5644         * tests/test-memcmp.c: Likewise.
5645         * tests/test-memmem.c: Likewise.
5646         * tests/test-memrchr.c: Likewise.
5647         * tests/test-mkdir.c: Likewise.
5648         * tests/test-mkdirat.c: Likewise.
5649         * tests/test-mkfifo.c: Likewise.
5650         * tests/test-mkfifoat.c: Likewise.
5651         * tests/test-mknod.c: Likewise.
5652         * tests/test-nanosleep.c: Likewise.
5653         * tests/test-nl_langinfo.c: Likewise.
5654         * tests/test-obstack-printf.c: Likewise.
5655         * tests/test-open.c: Likewise.
5656         * tests/test-openat.c: Likewise.
5657         * tests/test-pipe-filter-gi1.c: Likewise.
5658         * tests/test-pipe-filter-gi2-main.c: Likewise.
5659         * tests/test-pipe-filter-ii1.c: Likewise.
5660         * tests/test-pipe-filter-ii2-main.c: Likewise.
5661         * tests/test-pipe2.c: Likewise.
5662         * tests/test-popen.h: Likewise.
5663         * tests/test-posixtm.c: Likewise.
5664         * tests/test-pread.c: Likewise.
5665         * tests/test-printf-frexp.c: Likewise.
5666         * tests/test-printf-frexpl.c: Likewise.
5667         * tests/test-printf-posix.c: Likewise.
5668         * tests/test-priv-set.c: Likewise.
5669         * tests/test-quotearg.c: Likewise.
5670         * tests/test-random_r.c: Likewise.
5671         * tests/test-rawmemchr.c: Likewise.
5672         * tests/test-rbtree_list.c: Likewise.
5673         * tests/test-rbtree_oset.c: Likewise.
5674         * tests/test-rbtreehash_list.c: Likewise.
5675         * tests/test-readlink.c: Likewise.
5676         * tests/test-remove.c: Likewise.
5677         * tests/test-rename.c: Likewise.
5678         * tests/test-renameat.c: Likewise.
5679         * tests/test-rmdir.c: Likewise.
5680         * tests/test-round1.c: Likewise.
5681         * tests/test-roundf1.c: Likewise.
5682         * tests/test-roundl.c: Likewise.
5683         * tests/test-safe-alloc.c: Likewise.
5684         * tests/test-sameacls.c: Likewise.
5685         * tests/test-set-mode-acl.c: Likewise.
5686         * tests/test-setenv.c: Likewise.
5687         * tests/test-sigaction.c: Likewise.
5688         * tests/test-signbit.c: Likewise.
5689         * tests/test-sleep.c: Likewise.
5690         * tests/test-snprintf-posix.c: Likewise.
5691         * tests/test-snprintf.c: Likewise.
5692         * tests/test-sprintf-posix.c: Likewise.
5693         * tests/test-stat-time.c: Likewise.
5694         * tests/test-stat.c: Likewise.
5695         * tests/test-strcasestr.c: Likewise.
5696         * tests/test-strchrnul.c: Likewise.
5697         * tests/test-strerror.c: Likewise.
5698         * tests/test-striconv.c: Likewise.
5699         * tests/test-striconveh.c: Likewise.
5700         * tests/test-striconveha.c: Likewise.
5701         * tests/test-strsignal.c: Likewise.
5702         * tests/test-strstr.c: Likewise.
5703         * tests/test-strtod.c: Likewise.
5704         * tests/test-strverscmp.c: Likewise.
5705         * tests/test-symlink.c: Likewise.
5706         * tests/test-symlinkat.c: Likewise.
5707         * tests/test-trunc1.c: Likewise.
5708         * tests/test-trunc2.c: Likewise.
5709         * tests/test-truncf1.c: Likewise.
5710         * tests/test-truncf2.c: Likewise.
5711         * tests/test-truncl.c: Likewise.
5712         * tests/test-uname.c: Likewise.
5713         * tests/test-unlink.c: Likewise.
5714         * tests/test-unlinkat.c: Likewise.
5715         * tests/test-unsetenv.c: Likewise.
5716         * tests/test-usleep.c: Likewise.
5717         * tests/test-utimens.c: Likewise.
5718         * tests/test-utimensat.c: Likewise.
5719         * tests/test-vasnprintf-posix.c: Likewise.
5720         * tests/test-vasnprintf-posix2.c: Likewise.
5721         * tests/test-vasnprintf.c: Likewise.
5722         * tests/test-vasprintf-posix.c: Likewise.
5723         * tests/test-vasprintf.c: Likewise.
5724         * tests/test-vdprintf-posix.c: Likewise.
5725         * tests/test-vfprintf-posix.c: Likewise.
5726         * tests/test-vprintf-posix.c: Likewise.
5727         * tests/test-vsnprintf-posix.c: Likewise.
5728         * tests/test-vsnprintf.c: Likewise.
5729         * tests/test-vsprintf-posix.c: Likewise.
5730         * tests/test-wcrtomb.c: Likewise.
5731         * tests/test-wcsnrtombs.c: Likewise.
5732         * tests/test-wcsrtombs.c: Likewise.
5733         * tests/test-wctype.c: Likewise.
5734         * tests/test-wcwidth.c: Likewise.
5735         * tests/test-xfprintf-posix.c: Likewise.
5736         * tests/test-xmemdup0.c: Likewise.
5737         * tests/test-xprintf-posix.c: Likewise.
5738         * tests/test-xvasprintf.c: Likewise.
5739         * tests/unicase/test-locale-language.c: Likewise.
5740         * tests/unicase/test-mapping-part1.h: Likewise.
5741         * tests/unicase/test-predicate-part1.h: Likewise.
5742         * tests/unicase/test-u8-casecmp.c: Likewise.
5743         * tests/unicase/test-u8-casecoll.c: Likewise.
5744         * tests/unicase/test-u8-casefold.c: Likewise.
5745         * tests/unicase/test-u8-is-cased.c: Likewise.
5746         * tests/unicase/test-u8-is-casefolded.c: Likewise.
5747         * tests/unicase/test-u8-is-lowercase.c: Likewise.
5748         * tests/unicase/test-u8-is-titlecase.c: Likewise.
5749         * tests/unicase/test-u8-is-uppercase.c: Likewise.
5750         * tests/unicase/test-u8-tolower.c: Likewise.
5751         * tests/unicase/test-u8-totitle.c: Likewise.
5752         * tests/unicase/test-u8-toupper.c: Likewise.
5753         * tests/unicase/test-u16-casecmp.c: Likewise.
5754         * tests/unicase/test-u16-casecoll.c: Likewise.
5755         * tests/unicase/test-u16-casefold.c: Likewise.
5756         * tests/unicase/test-u16-is-cased.c: Likewise.
5757         * tests/unicase/test-u16-is-casefolded.c: Likewise.
5758         * tests/unicase/test-u16-is-lowercase.c: Likewise.
5759         * tests/unicase/test-u16-is-titlecase.c: Likewise.
5760         * tests/unicase/test-u16-is-uppercase.c: Likewise.
5761         * tests/unicase/test-u16-tolower.c: Likewise.
5762         * tests/unicase/test-u16-totitle.c: Likewise.
5763         * tests/unicase/test-u16-toupper.c: Likewise.
5764         * tests/unicase/test-u32-casecmp.c: Likewise.
5765         * tests/unicase/test-u32-casecoll.c: Likewise.
5766         * tests/unicase/test-u32-casefold.c: Likewise.
5767         * tests/unicase/test-u32-is-cased.c: Likewise.
5768         * tests/unicase/test-u32-is-casefolded.c: Likewise.
5769         * tests/unicase/test-u32-is-lowercase.c: Likewise.
5770         * tests/unicase/test-u32-is-titlecase.c: Likewise.
5771         * tests/unicase/test-u32-is-uppercase.c: Likewise.
5772         * tests/unicase/test-u32-tolower.c: Likewise.
5773         * tests/unicase/test-u32-totitle.c: Likewise.
5774         * tests/unicase/test-u32-toupper.c: Likewise.
5775         * tests/unicase/test-ulc-casecmp.c: Likewise.
5776         * tests/unicase/test-ulc-casecoll.c: Likewise.
5777         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5778         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5779         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5780         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5781         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5782         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5783         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5784         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5785         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5786         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5787         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5788         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5789         * tests/unictype/test-bidi_byname.c: Likewise.
5790         * tests/unictype/test-bidi_name.c: Likewise.
5791         * tests/unictype/test-bidi_of.c: Likewise.
5792         * tests/unictype/test-bidi_test.c: Likewise.
5793         * tests/unictype/test-block_list.c: Likewise.
5794         * tests/unictype/test-block_of.c: Likewise.
5795         * tests/unictype/test-block_test.c: Likewise.
5796         * tests/unictype/test-categ_and.c: Likewise.
5797         * tests/unictype/test-categ_and_not.c: Likewise.
5798         * tests/unictype/test-categ_byname.c: Likewise.
5799         * tests/unictype/test-categ_name.c: Likewise.
5800         * tests/unictype/test-categ_none.c: Likewise.
5801         * tests/unictype/test-categ_of.c: Likewise.
5802         * tests/unictype/test-categ_or.c: Likewise.
5803         * tests/unictype/test-categ_test_withtable.c: Likewise.
5804         * tests/unictype/test-combining.c: Likewise.
5805         * tests/unictype/test-decdigit.c: Likewise.
5806         * tests/unictype/test-digit.c: Likewise.
5807         * tests/unictype/test-mirror.c: Likewise.
5808         * tests/unictype/test-numeric.c: Likewise.
5809         * tests/unictype/test-pr_byname.c: Likewise.
5810         * tests/unictype/test-pr_test.c: Likewise.
5811         * tests/unictype/test-predicate-part1.h: Likewise.
5812         * tests/unictype/test-scripts.c: Likewise.
5813         * tests/unictype/test-sy_c_ident.c: Likewise.
5814         * tests/unictype/test-sy_java_ident.c: Likewise.
5815         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
5816         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
5817         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
5818         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
5819         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
5820         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
5821         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
5822         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
5823         * tests/uninorm/test-canonical-decomposition.c: Likewise.
5824         * tests/uninorm/test-compat-decomposition.c: Likewise.
5825         * tests/uninorm/test-composition.c: Likewise.
5826         * tests/uninorm/test-decomposing-form.c: Likewise.
5827         * tests/uninorm/test-decomposition.c: Likewise.
5828         * tests/uninorm/test-u8-nfc.c: Likewise.
5829         * tests/uninorm/test-u8-nfd.c: Likewise.
5830         * tests/uninorm/test-u8-nfkc.c: Likewise.
5831         * tests/uninorm/test-u8-nfkd.c: Likewise.
5832         * tests/uninorm/test-u8-normcmp.c: Likewise.
5833         * tests/uninorm/test-u8-normcoll.c: Likewise.
5834         * tests/uninorm/test-u16-nfc.c: Likewise.
5835         * tests/uninorm/test-u16-nfd.c: Likewise.
5836         * tests/uninorm/test-u16-nfkc.c: Likewise.
5837         * tests/uninorm/test-u16-nfkd.c: Likewise.
5838         * tests/uninorm/test-u16-normcmp.c: Likewise.
5839         * tests/uninorm/test-u16-normcoll.c: Likewise.
5840         * tests/uninorm/test-u32-nfc.c: Likewise.
5841         * tests/uninorm/test-u32-nfd.c: Likewise.
5842         * tests/uninorm/test-u32-nfkc.c: Likewise.
5843         * tests/uninorm/test-u32-nfkd.c: Likewise.
5844         * tests/uninorm/test-u32-normalize-big.c: Likewise.
5845         * tests/uninorm/test-u32-normcmp.c: Likewise.
5846         * tests/uninorm/test-u32-normcoll.c: Likewise.
5847         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
5848         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5849         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5850         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5851         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5852         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5853         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5854         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5855         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5856         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5857         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5858         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5859         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5860         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5861         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5862         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5863         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5864         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5865         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5866         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5867         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5868         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5869         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5870         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5871         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5872         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5873         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5874         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5875         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5876         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
5877         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
5878         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
5879         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
5880         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5881         * tests/uniwidth/test-u8-width.c: Likewise.
5882         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5883         * tests/uniwidth/test-u16-width.c: Likewise.
5884         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5885         * tests/uniwidth/test-u32-width.c: Likewise.
5886         * tests/uniwidth/test-uc_width.c: Likewise.
5887         * tests/uniwidth/test-uc_width2.c: Likewise.
5888         * modules/acl-tests (Files): Add tests/macros.h.
5889         * modules/areadlink-tests (Files): Likewise.
5890         * modules/areadlink-with-size-tests (Files): Likewise.
5891         * modules/areadlinkat-tests (Files): Likewise.
5892         * modules/areadlinkat-with-size-tests (Files): Likewise.
5893         * modules/argmatch-tests (Files): Likewise.
5894         * modules/argv-iter-tests (Files): Likewise.
5895         * modules/array-list-tests (Files): Likewise.
5896         * modules/array-mergesort-tests (Files): Likewise.
5897         * modules/array-oset-tests (Files): Likewise.
5898         * modules/avltree-list-tests (Files): Likewise.
5899         * modules/avltree-oset-tests (Files): Likewise.
5900         * modules/avltreehash-list-tests (Files): Likewise.
5901         * modules/base64-tests (Files): Likewise.
5902         * modules/binary-io-tests (Files): Likewise.
5903         * modules/bitrotate-tests (Files): Likewise.
5904         * modules/btowc-tests (Files): Likewise.
5905         * modules/byteswap-tests (Files): Likewise.
5906         * modules/c-ctype-tests (Files): Likewise.
5907         * modules/c-stack-tests (Files): Likewise.
5908         * modules/c-strcase-tests (Files): Likewise.
5909         * modules/c-strcasestr-tests (Files): Likewise.
5910         * modules/c-strstr-tests (Files): Likewise.
5911         * modules/canonicalize-lgpl-tests (Files): Likewise.
5912         * modules/canonicalize-tests (Files): Likewise.
5913         * modules/carray-list-tests (Files): Likewise.
5914         * modules/ceilf-tests (Files): Likewise.
5915         * modules/ceill-tests (Files): Likewise.
5916         * modules/chown-tests (Files): Likewise.
5917         * modules/cloexec-tests (Files): Likewise.
5918         * modules/copy-file-tests (Files): Likewise.
5919         * modules/count-one-bits-tests (Files): Likewise.
5920         * modules/dprintf-posix-tests (Files): Likewise.
5921         * modules/dup2-tests (Files): Likewise.
5922         * modules/dup3-tests (Files): Likewise.
5923         * modules/duplocale-tests (Files): Likewise.
5924         * modules/fbufmode-tests (Files): Likewise.
5925         * modules/fchdir-tests (Files): Likewise.
5926         * modules/fcntl-safer-tests (Files): Likewise.
5927         * modules/fcntl-tests (Files): Likewise.
5928         * modules/fdopendir-tests (Files): Likewise.
5929         * modules/fdutimensat-tests (Files): Likewise.
5930         * modules/fflush-tests (Files): Likewise.
5931         * modules/filevercmp-tests (Files): Likewise.
5932         * modules/flock-tests (Files): Likewise.
5933         * modules/floorf-tests (Files): Likewise.
5934         * modules/floorl-tests (Files): Likewise.
5935         * modules/fnmatch-tests (Files): Likewise.
5936         * modules/fopen-safer-tests (Files): Likewise.
5937         * modules/fopen-tests (Files): Likewise.
5938         * modules/fpending-tests (Files): Likewise.
5939         * modules/fprintf-posix-tests (Files): Likewise.
5940         * modules/fpurge-tests (Files): Likewise.
5941         * modules/freadable-tests (Files): Likewise.
5942         * modules/freadahead-tests (Files): Likewise.
5943         * modules/freading-tests (Files): Likewise.
5944         * modules/freadptr-tests (Files): Likewise.
5945         * modules/freadseek-tests (Files): Likewise.
5946         * modules/freopen-tests (Files): Likewise.
5947         * modules/frexp-nolibm-tests (Files): Likewise.
5948         * modules/frexp-tests (Files): Likewise.
5949         * modules/frexpl-nolibm-tests (Files): Likewise.
5950         * modules/frexpl-tests (Files): Likewise.
5951         * modules/fseek-tests (Files): Likewise.
5952         * modules/fseeko-tests (Files): Likewise.
5953         * modules/fstrcmp-tests (Files): Likewise.
5954         * modules/fsync-tests (Files): Likewise.
5955         * modules/ftell-tests (Files): Likewise.
5956         * modules/ftello-tests (Files): Likewise.
5957         * modules/func-tests (Files): Likewise.
5958         * modules/futimens-tests (Files): Likewise.
5959         * modules/fwritable-tests (Files): Likewise.
5960         * modules/fwriting-tests (Files): Likewise.
5961         * modules/getcwd-tests (Files): Likewise.
5962         * modules/getdate-tests (Files): Likewise.
5963         * modules/getdelim-tests (Files): Likewise.
5964         * modules/getdtablesize-tests (Files): Likewise.
5965         * modules/getgroups-tests (Files): Likewise.
5966         * modules/getline-tests (Files): Likewise.
5967         * modules/getndelim2-tests (Files): Likewise.
5968         * modules/glob-tests (Files): Likewise.
5969         * modules/hash-tests (Files): Likewise.
5970         * modules/i-ring-tests (Files): Likewise.
5971         * modules/iconv-tests (Files): Likewise.
5972         * modules/iconv_open-utf-tests (Files): Likewise.
5973         * modules/idpriv-drop-tests (Files): Likewise.
5974         * modules/idpriv-droptemp-tests (Files): Likewise.
5975         * modules/inet_ntop-tests (Files): Likewise.
5976         * modules/inet_pton-tests (Files): Likewise.
5977         * modules/isblank-tests (Files): Likewise.
5978         * modules/isfinite-tests (Files): Likewise.
5979         * modules/isinf-tests (Files): Likewise.
5980         * modules/isnan-tests (Files): Likewise.
5981         * modules/isnand-nolibm-tests (Files): Likewise.
5982         * modules/isnand-tests (Files): Likewise.
5983         * modules/isnanf-nolibm-tests (Files): Likewise.
5984         * modules/isnanf-tests (Files): Likewise.
5985         * modules/isnanl-nolibm-tests (Files): Likewise.
5986         * modules/isnanl-tests (Files): Likewise.
5987         * modules/lchown-tests (Files): Likewise.
5988         * modules/ldexpl-tests (Files): Likewise.
5989         * modules/link-tests (Files): Likewise.
5990         * modules/linkat-tests (Files): Likewise.
5991         * modules/linked-list-tests (Files): Likewise.
5992         * modules/linkedhash-list-tests (Files): Likewise.
5993         * modules/localename-tests (Files): Likewise.
5994         * modules/lseek-tests (Files): Likewise.
5995         * modules/lstat-tests (Files): Likewise.
5996         * modules/mbmemcasecmp-tests (Files): Likewise.
5997         * modules/mbmemcasecoll-tests (Files): Likewise.
5998         * modules/mbrtowc-tests (Files): Likewise.
5999         * modules/mbscasecmp-tests (Files): Likewise.
6000         * modules/mbscasestr-tests (Files): Likewise.
6001         * modules/mbschr-tests (Files): Likewise.
6002         * modules/mbscspn-tests (Files): Likewise.
6003         * modules/mbsinit-tests (Files): Likewise.
6004         * modules/mbsncasecmp-tests (Files): Likewise.
6005         * modules/mbsnrtowcs-tests (Files): Likewise.
6006         * modules/mbspbrk-tests (Files): Likewise.
6007         * modules/mbspcasecmp-tests (Files): Likewise.
6008         * modules/mbsrchr-tests (Files): Likewise.
6009         * modules/mbsrtowcs-tests (Files): Likewise.
6010         * modules/mbsspn-tests (Files): Likewise.
6011         * modules/mbsstr-tests (Files): Likewise.
6012         * modules/memchr-tests (Files): Likewise.
6013         * modules/memchr2-tests (Files): Likewise.
6014         * modules/memcmp-tests (Files): Likewise.
6015         * modules/memmem-tests (Files): Likewise.
6016         * modules/memrchr-tests (Files): Likewise.
6017         * modules/mkdir-tests (Files): Likewise.
6018         * modules/mkfifo-tests (Files): Likewise.
6019         * modules/mkfifoat-tests (Files): Likewise.
6020         * modules/mknod-tests (Files): Likewise.
6021         * modules/nanosleep-tests (Files): Likewise.
6022         * modules/nl_langinfo-tests (Files): Likewise.
6023         * modules/obstack-printf-tests (Files): Likewise.
6024         * modules/open-tests (Files): Likewise.
6025         * modules/openat-tests (Files): Likewise.
6026         * modules/pipe-filter-gi-tests (Files): Likewise.
6027         * modules/pipe-filter-ii-tests (Files): Likewise.
6028         * modules/pipe2-tests (Files): Likewise.
6029         * modules/popen-safer-tests (Files): Likewise.
6030         * modules/popen-tests (Files): Likewise.
6031         * modules/posixtm-tests (Files): Likewise.
6032         * modules/pread-tests (Files): Likewise.
6033         * modules/printf-frexp-tests (Files): Likewise.
6034         * modules/printf-frexpl-tests (Files): Likewise.
6035         * modules/printf-posix-tests (Files): Likewise.
6036         * modules/priv-set-tests (Files): Likewise.
6037         * modules/quotearg-tests (Files): Likewise.
6038         * modules/random_r-tests (Files): Likewise.
6039         * modules/rawmemchr-tests (Files): Likewise.
6040         * modules/rbtree-list-tests (Files): Likewise.
6041         * modules/rbtree-oset-tests (Files): Likewise.
6042         * modules/rbtreehash-list-tests (Files): Likewise.
6043         * modules/readlink-tests (Files): Likewise.
6044         * modules/remove-tests (Files): Likewise.
6045         * modules/rename-tests (Files): Likewise.
6046         * modules/renameat-tests (Files): Likewise.
6047         * modules/rmdir-tests (Files): Likewise.
6048         * modules/round-tests (Files): Likewise.
6049         * modules/roundf-tests (Files): Likewise.
6050         * modules/roundl-tests (Files): Likewise.
6051         * modules/safe-alloc-tests (Files): Likewise.
6052         * modules/setenv-tests (Files): Likewise.
6053         * modules/sigaction-tests (Files): Likewise.
6054         * modules/signbit-tests (Files): Likewise.
6055         * modules/sleep-tests (Files): Likewise.
6056         * modules/snprintf-posix-tests (Files): Likewise.
6057         * modules/snprintf-tests (Files): Likewise.
6058         * modules/sprintf-posix-tests (Files): Likewise.
6059         * modules/stat-tests (Files): Likewise.
6060         * modules/stat-time-tests (Files): Likewise.
6061         * modules/strcasestr-tests (Files): Likewise.
6062         * modules/strchrnul-tests (Files): Likewise.
6063         * modules/strerror-tests (Files): Likewise.
6064         * modules/striconv-tests (Files): Likewise.
6065         * modules/striconveh-tests (Files): Likewise.
6066         * modules/striconveha-tests (Files): Likewise.
6067         * modules/strsignal-tests (Files): Likewise.
6068         * modules/strstr-tests (Files): Likewise.
6069         * modules/strtod-tests (Files): Likewise.
6070         * modules/strverscmp-tests (Files): Likewise.
6071         * modules/symlink-tests (Files): Likewise.
6072         * modules/symlinkat-tests (Files): Likewise.
6073         * modules/trunc-tests (Files): Likewise.
6074         * modules/truncf-tests (Files): Likewise.
6075         * modules/truncl-tests (Files): Likewise.
6076         * modules/uname-tests (Files): Likewise.
6077         * modules/unicase/cased-tests (Files): Likewise.
6078         * modules/unicase/ignorable-tests (Files): Likewise.
6079         * modules/unicase/locale-language-tests (Files): Likewise.
6080         * modules/unicase/tolower-tests (Files): Likewise.
6081         * modules/unicase/totitle-tests (Files): Likewise.
6082         * modules/unicase/toupper-tests (Files): Likewise.
6083         * modules/unicase/u8-casecmp-tests (Files): Likewise.
6084         * modules/unicase/u8-casecoll-tests (Files): Likewise.
6085         * modules/unicase/u8-casefold-tests (Files): Likewise.
6086         * modules/unicase/u8-is-cased-tests (Files): Likewise.
6087         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
6088         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
6089         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
6090         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
6091         * modules/unicase/u8-tolower-tests (Files): Likewise.
6092         * modules/unicase/u8-totitle-tests (Files): Likewise.
6093         * modules/unicase/u8-toupper-tests (Files): Likewise.
6094         * modules/unicase/u16-casecmp-tests (Files): Likewise.
6095         * modules/unicase/u16-casecoll-tests (Files): Likewise.
6096         * modules/unicase/u16-casefold-tests (Files): Likewise.
6097         * modules/unicase/u16-is-cased-tests (Files): Likewise.
6098         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
6099         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
6100         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
6101         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
6102         * modules/unicase/u16-tolower-tests (Files): Likewise.
6103         * modules/unicase/u16-totitle-tests (Files): Likewise.
6104         * modules/unicase/u16-toupper-tests (Files): Likewise.
6105         * modules/unicase/u32-casecmp-tests (Files): Likewise.
6106         * modules/unicase/u32-casecoll-tests (Files): Likewise.
6107         * modules/unicase/u32-casefold-tests (Files): Likewise.
6108         * modules/unicase/u32-is-cased-tests (Files): Likewise.
6109         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
6110         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
6111         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
6112         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
6113         * modules/unicase/u32-tolower-tests (Files): Likewise.
6114         * modules/unicase/u32-totitle-tests (Files): Likewise.
6115         * modules/unicase/u32-toupper-tests (Files): Likewise.
6116         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
6117         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
6118         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
6119         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
6120         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
6121         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
6122         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
6123         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
6124         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
6125         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
6126         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
6127         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
6128         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
6129         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
6130         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
6131         * modules/unictype/bidicategory-name-tests (Files): Likewise.
6132         * modules/unictype/bidicategory-of-tests (Files): Likewise.
6133         * modules/unictype/bidicategory-test-tests (Files): Likewise.
6134         * modules/unictype/block-list-tests (Files): Likewise.
6135         * modules/unictype/block-of-tests (Files): Likewise.
6136         * modules/unictype/block-test-tests (Files): Likewise.
6137         * modules/unictype/category-C-tests (Files): Likewise.
6138         * modules/unictype/category-Cc-tests (Files): Likewise.
6139         * modules/unictype/category-Cf-tests (Files): Likewise.
6140         * modules/unictype/category-Cn-tests (Files): Likewise.
6141         * modules/unictype/category-Co-tests (Files): Likewise.
6142         * modules/unictype/category-Cs-tests (Files): Likewise.
6143         * modules/unictype/category-L-tests (Files): Likewise.
6144         * modules/unictype/category-Ll-tests (Files): Likewise.
6145         * modules/unictype/category-Lm-tests (Files): Likewise.
6146         * modules/unictype/category-Lo-tests (Files): Likewise.
6147         * modules/unictype/category-Lt-tests (Files): Likewise.
6148         * modules/unictype/category-Lu-tests (Files): Likewise.
6149         * modules/unictype/category-M-tests (Files): Likewise.
6150         * modules/unictype/category-Mc-tests (Files): Likewise.
6151         * modules/unictype/category-Me-tests (Files): Likewise.
6152         * modules/unictype/category-Mn-tests (Files): Likewise.
6153         * modules/unictype/category-N-tests (Files): Likewise.
6154         * modules/unictype/category-Nd-tests (Files): Likewise.
6155         * modules/unictype/category-Nl-tests (Files): Likewise.
6156         * modules/unictype/category-No-tests (Files): Likewise.
6157         * modules/unictype/category-P-tests (Files): Likewise.
6158         * modules/unictype/category-Pc-tests (Files): Likewise.
6159         * modules/unictype/category-Pd-tests (Files): Likewise.
6160         * modules/unictype/category-Pe-tests (Files): Likewise.
6161         * modules/unictype/category-Pf-tests (Files): Likewise.
6162         * modules/unictype/category-Pi-tests (Files): Likewise.
6163         * modules/unictype/category-Po-tests (Files): Likewise.
6164         * modules/unictype/category-Ps-tests (Files): Likewise.
6165         * modules/unictype/category-S-tests (Files): Likewise.
6166         * modules/unictype/category-Sc-tests (Files): Likewise.
6167         * modules/unictype/category-Sk-tests (Files): Likewise.
6168         * modules/unictype/category-Sm-tests (Files): Likewise.
6169         * modules/unictype/category-So-tests (Files): Likewise.
6170         * modules/unictype/category-Z-tests (Files): Likewise.
6171         * modules/unictype/category-Zl-tests (Files): Likewise.
6172         * modules/unictype/category-Zp-tests (Files): Likewise.
6173         * modules/unictype/category-Zs-tests (Files): Likewise.
6174         * modules/unictype/category-and-not-tests (Files): Likewise.
6175         * modules/unictype/category-and-tests (Files): Likewise.
6176         * modules/unictype/category-byname-tests (Files): Likewise.
6177         * modules/unictype/category-name-tests (Files): Likewise.
6178         * modules/unictype/category-none-tests (Files): Likewise.
6179         * modules/unictype/category-of-tests (Files): Likewise.
6180         * modules/unictype/category-or-tests (Files): Likewise.
6181         * modules/unictype/category-test-withtable-tests (Files): Likewise.
6182         * modules/unictype/combining-class-tests (Files): Likewise.
6183         * modules/unictype/ctype-alnum-tests (Files): Likewise.
6184         * modules/unictype/ctype-alpha-tests (Files): Likewise.
6185         * modules/unictype/ctype-blank-tests (Files): Likewise.
6186         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
6187         * modules/unictype/ctype-digit-tests (Files): Likewise.
6188         * modules/unictype/ctype-graph-tests (Files): Likewise.
6189         * modules/unictype/ctype-lower-tests (Files): Likewise.
6190         * modules/unictype/ctype-print-tests (Files): Likewise.
6191         * modules/unictype/ctype-punct-tests (Files): Likewise.
6192         * modules/unictype/ctype-space-tests (Files): Likewise.
6193         * modules/unictype/ctype-upper-tests (Files): Likewise.
6194         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
6195         * modules/unictype/decimal-digit-tests (Files): Likewise.
6196         * modules/unictype/digit-tests (Files): Likewise.
6197         * modules/unictype/mirror-tests (Files): Likewise.
6198         * modules/unictype/numeric-tests (Files): Likewise.
6199         * modules/unictype/property-alphabetic-tests (Files): Likewise.
6200         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
6201         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
6202         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
6203         Likewise.
6204         * modules/unictype/property-bidi-block-separator-tests (Files):
6205         Likewise.
6206         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
6207         Likewise.
6208         * modules/unictype/property-bidi-common-separator-tests (Files):
6209         Likewise.
6210         * modules/unictype/property-bidi-control-tests (Files): Likewise.
6211         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
6212         Likewise.
6213         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
6214         Likewise.
6215         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
6216         Likewise.
6217         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
6218         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
6219         Likewise.
6220         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
6221         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
6222         Likewise.
6223         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
6224         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
6225         * modules/unictype/property-bidi-segment-separator-tests (Files):
6226         Likewise.
6227         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
6228         * modules/unictype/property-byname-tests (Files): Likewise.
6229         * modules/unictype/property-combining-tests (Files): Likewise.
6230         * modules/unictype/property-composite-tests (Files): Likewise.
6231         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
6232         * modules/unictype/property-dash-tests (Files): Likewise.
6233         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
6234         * modules/unictype/property-default-ignorable-code-point-tests (Files):
6235         Likewise.
6236         * modules/unictype/property-deprecated-tests (Files): Likewise.
6237         * modules/unictype/property-diacritic-tests (Files): Likewise.
6238         * modules/unictype/property-extender-tests (Files): Likewise.
6239         * modules/unictype/property-format-control-tests (Files): Likewise.
6240         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
6241         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
6242         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
6243         * modules/unictype/property-hex-digit-tests (Files): Likewise.
6244         * modules/unictype/property-hyphen-tests (Files): Likewise.
6245         * modules/unictype/property-id-continue-tests (Files): Likewise.
6246         * modules/unictype/property-id-start-tests (Files): Likewise.
6247         * modules/unictype/property-ideographic-tests (Files): Likewise.
6248         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
6249         * modules/unictype/property-ids-trinary-operator-tests (Files):
6250         Likewise.
6251         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
6252         * modules/unictype/property-iso-control-tests (Files): Likewise.
6253         * modules/unictype/property-join-control-tests (Files): Likewise.
6254         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
6255         * modules/unictype/property-line-separator-tests (Files): Likewise.
6256         * modules/unictype/property-logical-order-exception-tests (Files):
6257         Likewise.
6258         * modules/unictype/property-lowercase-tests (Files): Likewise.
6259         * modules/unictype/property-math-tests (Files): Likewise.
6260         * modules/unictype/property-non-break-tests (Files): Likewise.
6261         * modules/unictype/property-not-a-character-tests (Files): Likewise.
6262         * modules/unictype/property-numeric-tests (Files): Likewise.
6263         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
6264         * modules/unictype/property-other-default-ignorable-code-point-tests
6265         (Files): Likewise.
6266         * modules/unictype/property-other-grapheme-extend-tests (Files):
6267         Likewise.
6268         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
6269         * modules/unictype/property-other-id-start-tests (Files): Likewise.
6270         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
6271         * modules/unictype/property-other-math-tests (Files): Likewise.
6272         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
6273         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
6274         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
6275         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
6276         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
6277         * modules/unictype/property-private-use-tests (Files): Likewise.
6278         * modules/unictype/property-punctuation-tests (Files): Likewise.
6279         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
6280         * modules/unictype/property-radical-tests (Files): Likewise.
6281         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
6282         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
6283         * modules/unictype/property-space-tests (Files): Likewise.
6284         * modules/unictype/property-terminal-punctuation-tests (Files):
6285         Likewise.
6286         * modules/unictype/property-test-tests (Files): Likewise.
6287         * modules/unictype/property-titlecase-tests (Files): Likewise.
6288         * modules/unictype/property-unassigned-code-value-tests (Files):
6289         Likewise.
6290         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
6291         * modules/unictype/property-uppercase-tests (Files): Likewise.
6292         * modules/unictype/property-variation-selector-tests (Files): Likewise.
6293         * modules/unictype/property-white-space-tests (Files): Likewise.
6294         * modules/unictype/property-xid-continue-tests (Files): Likewise.
6295         * modules/unictype/property-xid-start-tests (Files): Likewise.
6296         * modules/unictype/property-zero-width-tests (Files): Likewise.
6297         * modules/unictype/scripts-tests (Files): Likewise.
6298         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
6299         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
6300         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
6301         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
6302         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
6303         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
6304         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
6305         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
6306         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
6307         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
6308         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
6309         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
6310         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
6311         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
6312         * modules/uninorm/composition-tests (Files): Likewise.
6313         * modules/uninorm/decomposing-form-tests (Files): Likewise.
6314         * modules/uninorm/decomposition-tests (Files): Likewise.
6315         * modules/uninorm/filter-tests (Files): Likewise.
6316         * modules/uninorm/nfc-tests (Files): Likewise.
6317         * modules/uninorm/nfd-tests (Files): Likewise.
6318         * modules/uninorm/nfkc-tests (Files): Likewise.
6319         * modules/uninorm/nfkd-tests (Files): Likewise.
6320         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
6321         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
6322         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
6323         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
6324         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
6325         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
6326         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
6327         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
6328         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
6329         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
6330         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
6331         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
6332         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
6333         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
6334         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
6335         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
6336         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
6337         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
6338         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
6339         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
6340         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
6341         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
6342         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
6343         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
6344         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
6345         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
6346         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
6347         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
6348         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
6349         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
6350         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
6351         * modules/uniwidth/u8-width-tests (Files): Likewise.
6352         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
6353         * modules/uniwidth/u16-width-tests (Files): Likewise.
6354         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
6355         * modules/uniwidth/u32-width-tests (Files): Likewise.
6356         * modules/uniwidth/width-tests (Files): Likewise.
6357         * modules/unlink-tests (Files): Likewise.
6358         * modules/unsetenv-tests (Files): Likewise.
6359         * modules/usleep-tests (Files): Likewise.
6360         * modules/utimens-tests (Files): Likewise.
6361         * modules/utimensat-tests (Files): Likewise.
6362         * modules/vasnprintf-posix-tests (Files): Likewise.
6363         * modules/vasnprintf-tests (Files): Likewise.
6364         * modules/vasprintf-posix-tests (Files): Likewise.
6365         * modules/vasprintf-tests (Files): Likewise.
6366         * modules/vdprintf-posix-tests (Files): Likewise.
6367         * modules/vfprintf-posix-tests (Files): Likewise.
6368         * modules/vprintf-posix-tests (Files): Likewise.
6369         * modules/vsnprintf-posix-tests (Files): Likewise.
6370         * modules/vsnprintf-tests (Files): Likewise.
6371         * modules/vsprintf-posix-tests (Files): Likewise.
6372         * modules/wcrtomb-tests (Files): Likewise.
6373         * modules/wcsnrtombs-tests (Files): Likewise.
6374         * modules/wcsrtombs-tests (Files): Likewise.
6375         * modules/wctype-tests (Files): Likewise.
6376         * modules/wcwidth-tests (Files): Likewise.
6377         * modules/xmemdup0-tests (Files): Likewise.
6378         * modules/xprintf-posix-tests (Files): Likewise.
6379         * modules/xvasprintf-tests (Files): Likewise.
6380
6381 2009-12-24  Eric Blake  <ebb9@byu.net>
6382
6383         test-nanosleep: fix typo
6384         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
6385         patch.
6386         Reported by Bruno Haible.
6387
6388 2009-12-24  Bruno Haible  <bruno@clisp.org>
6389
6390         Reduce namespace pollution on glibc systems.
6391         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
6392         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
6393         systems.
6394         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
6395         <getopt.h> on glibc systems.
6396         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
6397         systems.
6398         * lib/fcntl.c: Include <unistd.h> here instead.
6399
6400 2009-12-24  Bruno Haible  <bruno@clisp.org>
6401
6402         * lib/stdlib.in.h (includes): Fix typo in today's commit.
6403
6404 2009-12-24  Eric Blake  <ebb9@byu.net>
6405
6406         tests: add signature checks
6407         * tests/signature.h (SIGNATURE_CHECK): New file.
6408         * modules/atexit-tests (Files): Use it.
6409         * modules/btowc-tests (Files): Likewise.
6410         * modules/canonicalize-lgpl-tests (Files): Likewise.
6411         * modules/ceilf-tests (Files): Likewise.
6412         * modules/ceill-tests (Files): Likewise.
6413         * modules/chown-tests (Files): Likewise.
6414         * modules/dprintf-posix-tests (Files): Likewise.
6415         * modules/dup2-tests (Files): Likewise.
6416         * modules/dup3-tests (Files): Likewise.
6417         * modules/duplocale-tests (Files): Likewise.
6418         * modules/fchdir-tests (Files): Likewise.
6419         * modules/fcntl-tests (Files): Likewise.
6420         * modules/fdopendir-tests (Files): Likewise.
6421         * modules/fflush-tests (Files): Likewise.
6422         * modules/flock-tests (Files): Likewise.
6423         * modules/floorf-tests (Files): Likewise.
6424         * modules/floorl-tests (Files): Likewise.
6425         * modules/fnmatch-tests (Files): Likewise.
6426         * modules/fopen-tests (Files): Likewise.
6427         * modules/fprintf-posix-tests (Files): Likewise.
6428         * modules/freopen-tests (Files): Likewise.
6429         * modules/frexp-nolibm-tests (Files): Likewise.
6430         * modules/frexp-tests (Files): Likewise.
6431         * modules/frexpl-nolibm-tests (Files): Likewise.
6432         * modules/frexpl-tests (Files): Likewise.
6433         * modules/fseek-tests (Files): Likewise.
6434         * modules/fseeko-tests (Files): Likewise.
6435         * modules/fsync-tests (Files): Likewise.
6436         * modules/ftell-tests (Files): Likewise.
6437         * modules/ftello-tests (Files): Likewise.
6438         * modules/futimens-tests (Files): Likewise.
6439         * modules/getaddrinfo-tests (Files): Likewise.
6440         * modules/getcwd-tests (Files): Likewise.
6441         * modules/getdelim-tests (Files): Likewise.
6442         * modules/getdtablesize-tests (Files): Likewise.
6443         * modules/getgroups-tests (Files): Likewise.
6444         * modules/gethostname-tests (Files): Likewise.
6445         * modules/getline-tests (Files): Likewise.
6446         * modules/getopt-posix-tests (Files): Likewise.
6447         * modules/gettimeofday-tests (Files): Likewise.
6448         * modules/glob-tests (Files): Likewise.
6449         * modules/iconv-tests (Files): Likewise.
6450         * modules/inet_ntop-tests (Files): Likewise.
6451         * modules/inet_pton-tests (Files): Likewise.
6452         * modules/isblank-tests (Files): Likewise.
6453         * modules/lchown-tests (Files): Likewise.
6454         * modules/ldexpl-tests (Files): Likewise.
6455         * modules/link-tests (Files): Likewise.
6456         * modules/linkat-tests (Files): Likewise.
6457         * modules/lseek-tests (Files): Likewise.
6458         * modules/lstat-tests (Files): Likewise.
6459         * modules/mbrtowc-tests (Files): Likewise.
6460         * modules/mbsinit-tests (Files): Likewise.
6461         * modules/mbsnrtowcs-tests (Files): Likewise.
6462         * modules/mbsrtowcs-tests (Files): Likewise.
6463         * modules/memchr-tests (Files): Likewise.
6464         * modules/memcmp-tests (Files): Likewise.
6465         * modules/memmem-tests (Files): Likewise.
6466         * modules/memrchr-tests (Files): Likewise.
6467         * modules/mkdir-tests (Files): Likewise.
6468         * modules/mkfifo-tests (Files): Likewise.
6469         * modules/mkfifoat-tests (Files): Likewise.
6470         * modules/mknod-tests (Files): Likewise.
6471         * modules/nanosleep-tests (Files): Likewise.
6472         * modules/nl_langinfo-tests (Files): Likewise.
6473         * modules/obstack-printf-tests (Files): Likewise.
6474         * modules/open-tests (Files): Likewise.
6475         * modules/openat-tests (Files): Likewise.
6476         * modules/perror-tests (Files): Likewise.
6477         * modules/pipe2-tests (Files): Likewise.
6478         * modules/poll-tests (Files): Likewise.
6479         * modules/popen-tests (Files): Likewise.
6480         * modules/posix_spawn-tests (Files): Likewise.
6481         * modules/posix_spawnp-tests (Files): Likewise.
6482         * modules/pread-tests (Files): Likewise.
6483         * modules/printf-posix-tests (Files): Likewise.
6484         * modules/pty-tests (Files): Likewise.
6485         * modules/random_r-tests (Files): Likewise.
6486         * modules/rawmemchr-tests (Files): Likewise.
6487         * modules/readlink-tests (Files): Likewise.
6488         * modules/remove-tests (Files): Likewise.
6489         * modules/rename-tests (Files): Likewise.
6490         * modules/renameat-tests (Files): Likewise.
6491         * modules/rmdir-tests (Files): Likewise.
6492         * modules/round-tests (Files): Likewise.
6493         * modules/roundf-tests (Files): Likewise.
6494         * modules/roundl-tests (Files): Likewise.
6495         * modules/select-tests (Files): Likewise.
6496         * modules/setenv-tests (Files): Likewise.
6497         * modules/sigaction-tests (Files): Likewise.
6498         * modules/sleep-tests (Files): Likewise.
6499         * modules/snprintf-posix-tests (Files): Likewise.
6500         * modules/snprintf-tests (Files): Likewise.
6501         * modules/sprintf-posix-tests (Files): Likewise.
6502         * modules/stat-tests (Files): Likewise.
6503         * modules/strcasestr-tests (Files): Likewise.
6504         * modules/strchrnul-tests (Files): Likewise.
6505         * modules/strerror-tests (Files): Likewise.
6506         * modules/strsignal-tests (Files): Likewise.
6507         * modules/strstr-tests (Files): Likewise.
6508         * modules/strtod-tests (Files): Likewise.
6509         * modules/strverscmp-tests (Files): Likewise.
6510         * modules/symlink-tests (Files): Likewise.
6511         * modules/symlinkat-tests (Files): Likewise.
6512         * modules/times-tests (Files): Likewise.
6513         * modules/trunc-tests (Files): Likewise.
6514         * modules/truncf-tests (Files): Likewise.
6515         * modules/truncl-tests (Files): Likewise.
6516         * modules/tsearch-tests (Files): Likewise.
6517         * modules/uname-tests (Files): Likewise.
6518         * modules/unlink-tests (Files): Likewise.
6519         * modules/unsetenv-tests (Files): Likewise.
6520         * modules/usleep-tests (Files): Likewise.
6521         * modules/utimensat-tests (Files): Likewise.
6522         * modules/vasprintf-tests (Files): Likewise.
6523         * modules/vdprintf-posix-tests (Files): Likewise.
6524         * modules/vfprintf-posix-tests (Files): Likewise.
6525         * modules/vprintf-posix-tests (Files): Likewise.
6526         * modules/vsnprintf-posix-tests (Files): Likewise.
6527         * modules/vsnprintf-tests (Files): Likewise.
6528         * modules/vsprintf-posix-tests (Files): Likewise.
6529         * modules/wcrtomb-tests (Files): Likewise.
6530         * modules/wcsnrtombs-tests (Files): Likewise.
6531         * modules/wcsrtombs-tests (Files): Likewise.
6532         * modules/wcwidth-tests (Files): Likewise.
6533         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
6534         * tests/test-isinf.c (isinf): Likewise.
6535         * tests/test-isnan.c (isnan): Likewise.
6536         * tests/test-signbit.c (signbit): Likewise.
6537         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
6538         declaration, either as macro or with correct signature.
6539         (select): Ensure function under test is declared with correct
6540         signature in correct header.
6541         * tests/test-atexit.c (atexit): Likewise.
6542         * tests/test-btowc.c (btowc): Likewise.
6543         * tests/test-canonicalize-lgpl.c (realpath)
6544         (canonicalize_file_name): Likewise.
6545         * tests/test-ceilf1.c (ceilf): Likewise.
6546         * tests/test-ceill.c (ceill): Likewise.
6547         * tests/test-chown.c (chown): Likewise.
6548         * tests/test-dprintf-posix.c (dprintf): Likewise.
6549         * tests/test-dup2.c (dup2): Likewise.
6550         * tests/test-dup3.c (dup3): Likewise.
6551         * tests/test-duplocale.c (duplocale): Likewise.
6552         * tests/test-fchdir.c (fchdir): Likewise.
6553         * tests/test-fchownat.c (fchownat): Likewise.
6554         * tests/test-fcntl.c (fcntl): Likewise.
6555         * tests/test-fdopendir.c (fdopendir): Likewise.
6556         * tests/test-fflush.c (fflush): Likewise.
6557         * tests/test-flock.c (flock): Likewise.
6558         * tests/test-floorf1.c (floorf): Likewise.
6559         * tests/test-floorl.c (floorl): Likewise.
6560         * tests/test-fnmatch.c (fnmatch): Likewise.
6561         * tests/test-fopen.c (fopen): Likewise.
6562         * tests/test-fprintf-posix.c (fprintf): Likewise.
6563         * tests/test-freopen.c (freopen): Likewise.
6564         * tests/test-frexp.c (frexp): Likewise.
6565         * tests/test-frexpl.c (frexpl): Likewise.
6566         * tests/test-fseek.c (fseek): Likewise.
6567         * tests/test-fseeko.c (fseeko): Likewise.
6568         * tests/test-fstatat.c (fstatat): Likewise.
6569         * tests/test-fsync.c (fsync): Likewise.
6570         * tests/test-ftell.c (ftell): Likewise.
6571         * tests/test-ftello.c (ftello): Likewise.
6572         * tests/test-futimens.c (futimens): Likewise.
6573         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
6574         (gai_strerror): Likewise.
6575         * tests/test-getcwd.c (getcwd): Likewise.
6576         * tests/test-getdelim.c (getdelim): Likewise.
6577         * tests/test-getdtablesize.c (getdtablesize): Likewise.
6578         * tests/test-getgroups.c (getgroups): Likewise.
6579         * tests/test-gethostname.c (gethostname): Likewise.
6580         * tests/test-getline.c (getline): Likewise.
6581         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
6582         Likewise.
6583         * tests/test-gettimeofday.c (gettimeofday): Likewise.
6584         * tests/test-glob.c (glob, globfree): Likewise.
6585         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
6586         * tests/test-inet_ntop.c (inet_ntop): Likewise.
6587         * tests/test-inet_pton.c (inet_pton): Likewise.
6588         * tests/test-isblank.c (isblank): Likewise.
6589         * tests/test-lchown.c (lchown): Likewise.
6590         * tests/test-ldexpl.c (ldexpl): Likewise.
6591         * tests/test-link.c (link): Likewise.
6592         * tests/test-linkat.c (linkat): Likewise.
6593         * tests/test-lseek.c (lseek): Likewise.
6594         * tests/test-lstat.c (lstat): Likewise.
6595         * tests/test-mbrtowc.c (mbrtowc): Likewise.
6596         * tests/test-mbsinit.c (mbsinit): Likewise.
6597         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
6598         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
6599         * tests/test-memchr.c (memchr): Likewise.
6600         * tests/test-memcmp.c (memcmp): Likewise.
6601         * tests/test-memmem.c (memmem): Likewise.
6602         * tests/test-memrchr.c (memrchr): Likewise.
6603         * tests/test-mkdir.c (mkdir): Likewise.
6604         * tests/test-mkdirat.c (mkdirat): Likewise.
6605         * tests/test-mkfifo.c (mkfifo): Likewise.
6606         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
6607         * tests/test-mknod.c (mknod): Likewise.
6608         * tests/test-nanosleep.c (nanosleep): Likewise.
6609         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
6610         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
6611         Likewise.
6612         * tests/test-open.c (open): Likewise.
6613         * tests/test-openat.c (openat): Likewise.
6614         * tests/test-perror.c (perror): Likewise.
6615         * tests/test-pipe2.c (pipe2): Likewise.
6616         * tests/test-poll.c (poll): Likewise.
6617         * tests/test-popen.c (popen, pclose): Likewise.
6618         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
6619         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
6620         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
6621         (posix_spawn_file_actions_destroy)
6622         (posix_spawn_file_actions_addclose)
6623         (posix_spawn_file_actions_addopen)
6624         (posix_spawn_file_actions_adddup2): Likewise.
6625         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
6626         * tests/test-pread.c (pread): Likewise.
6627         * tests/test-printf-posix.c (printf): Likewise.
6628         * tests/test-pty.c (openpty, forkpty): Likewise.
6629         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
6630         (random_r): Likewise.
6631         * tests/test-rawmemchr.c (rawmemchr): Likewise.
6632         * tests/test-readlink.c (readlink): Likewise.
6633         * tests/test-remove.c (remove): Likewise.
6634         * tests/test-rename.c (rename): Likewise.
6635         * tests/test-renameat.c (renameat): Likewise.
6636         * tests/test-rmdir.c (rmdir): Likewise.
6637         * tests/test-round1.c (round): Likewise.
6638         * tests/test-roundf1.c (roundf): Likewise.
6639         * tests/test-roundl.c (roundl): Likewise.
6640         * tests/test-setenv.c (setenv): Likewise.
6641         * tests/test-sigaction.c (sigaction): Likewise.
6642         * tests/test-sleep.c (sleep): Likewise.
6643         * tests/test-snprintf.c (snprintf): Likewise.
6644         * tests/test-sprintf-posix.c (sprintf): Likewise.
6645         * tests/test-stat.c (stat): Likewise.
6646         * tests/test-stpncpy.c (stpncpy): Likewise.
6647         * tests/test-strcasestr.c (strcasestr): Likewise.
6648         * tests/test-strchrnul.c (strchrnul): Likewise.
6649         * tests/test-strerror.c (strerror): Likewise.
6650         * tests/test-strsignal.c (strsignal): Likewise.
6651         * tests/test-strstr.c (strstr): Likewise.
6652         * tests/test-strtod.c (strtod): Likewise.
6653         * tests/test-strverscmp.c (strverscmp): Likewise.
6654         * tests/test-symlink.c (symlink): Likewise.
6655         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
6656         * tests/test-times.c (times): Likewise.
6657         * tests/test-trunc1.c (trunc): Likewise.
6658         * tests/test-truncf1.c (truncf): Likewise.
6659         * tests/test-truncl.c (truncl): Likewise.
6660         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
6661         Likewise.
6662         * tests/test-uname.c (uname): Likewise.
6663         * tests/test-unlink.c (unlink): Likewise.
6664         * tests/test-unlinkat.c (unlinkat): Likewise.
6665         * tests/test-unsetenv.c (unsetenv): Likewise.
6666         * tests/test-usleep.c (usleep): Likewise.
6667         * tests/test-utimensat.c (utimensat): Likewise.
6668         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
6669         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
6670         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
6671         * tests/test-vprintf-posix.c (vprintf): Likewise.
6672         * tests/test-vsnprintf.c (vsnprintf): Likewise.
6673         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
6674         * tests/test-wcrtomb.c (wcrtomb): Likewise.
6675         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
6676         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
6677         * tests/test-wcwidth.c (wcwidth): Likewise.
6678
6679         build: pull in conditional headers during GNULIB_POSIXCHECK
6680         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
6681         definitions from any conditionally-included headers.
6682         * lib/stdlib.in.h (includes): Likewise.
6683         * lib/unistd.in.h (includes): Likewise.
6684
6685 2009-12-24  Bruno Haible  <bruno@clisp.org>
6686
6687         * tests/test-argv-iter.c: Include header file being tested immediately
6688         after config.h.
6689         * tests/test-base64.c: Likewise.
6690         * tests/test-flock.c: Likewise.
6691         * tests/test-fsync.c: Likewise.
6692         * tests/test-getdate.c: Likewise.
6693         * tests/test-getndelim2.c: Likewise.
6694         * tests/test-isfinite.c: Likewise.
6695         * tests/test-isinf.c: Likewise.
6696         * tests/test-strerror.c: Likewise.
6697         * tests/test-strsignal.c: Likewise.
6698
6699 2009-12-23  Eric Blake  <ebb9@byu.net>
6700
6701         unistd: work around cygwin bug
6702         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
6703         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
6704         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
6705
6706 2009-12-23  Bruno Haible  <bruno@clisp.org>
6707
6708         localename: More tests.
6709         * tests/test-localename.c (SIZEOF): New macro.
6710         (categories): New variable.
6711         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
6712         test_locale_name_default): Add test w.r.t. thread locale.
6713         (test_locale_name_thread): New function.
6714         (main): Invoke it.
6715
6716         localename: Make aware of thread locale.
6717         * lib/localename.h (gl_locale_name_thread): New declaration.
6718         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
6719         behaviour with respect to thread locale.
6720         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
6721         <langinfo.h>, glthread/lock.h.
6722         (SIZE_BITS): New macro.
6723         (string_hash): New function.
6724         (struct hash_node): New type.
6725         (HASH_TABLE_SIZE): New macro.
6726         (struniq_hash_table, struniq_lock): New variables.
6727         (struniq): New function.
6728         (gl_locale_name_thread): New function.
6729         (gl_locale_name): Invoke it.
6730         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
6731         * modules/localename (Depends-on): Add lock.
6732         Reported by Mike Gran <spk121@yahoo.com>.
6733
6734 2009-12-23  Eric Blake  <ebb9@byu.net>
6735
6736         va-args: new module
6737         * modules/va-args: New file.
6738         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6739         * MODULES.html.sh (Core language properties): Mention it.
6740
6741         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
6742         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
6743         named alias for __attribute__((__unused__)).
6744         * lib/chown.c: Update client.
6745         * lib/fchmodat.c: Likewise.
6746         * lib/fts.c: Likewise.
6747         * lib/getdate.y: Likewise.
6748         * lib/getgroups.c: Likewise.
6749         * lib/getopt.c: Likewise.
6750         * lib/getugroups.c: Likewise.
6751         * lib/mkdir.c: Likewise.
6752         * lib/mkfifo.c: Likewise.
6753         * lib/mkfifoat.c: Likewise.
6754         * lib/mknod.c: Likewise.
6755         * lib/mknodat.c: Likewise.
6756         * lib/readlink.c: Likewise.
6757         * lib/se-context.in.h: Likewise.
6758         * lib/se-selinux.in.h: Likewise.
6759         * lib/sockets.c: Likewise.
6760         * lib/symlink.c: Likewise.
6761         * lib/symlinkat.c: Likewise.
6762         * lib/unicodeio.c: Likewise.
6763         * lib/unistr.h: Likewise.
6764         * tests/test-areadlink.c: Likewise.
6765         * tests/test-areadlinkat.c: Likewise.
6766         * tests/test-filenamecat.c: Likewise.
6767         * tests/test-fseeko.c: Likewise.
6768         * tests/test-ftello.c: Likewise.
6769         * tests/test-getdate.c: Likewise.
6770         * tests/test-getgroups.c: Likewise.
6771         * tests/test-gethostname.c: Likewise.
6772         * tests/test-quotearg.c: Likewise.
6773         * tests/test-version-etc.c: Likewise.
6774         * tests/test-xalloc-die.c: Likewise.
6775         * tests/test-xfprintf-posix.c: Likewise.
6776         * tests/test-xprintf-posix.c: Likewise.
6777         * tests/test-xvasprintf.c: Likewise.
6778
6779         tests: avoid compiler warnings
6780         * tests/test-fcntl.c (main): Delete unused parameters.
6781         * tests/test-freopen-safer.c (main): Likewise.
6782         * tests/test-xalloc-die.c (main): Mark unused parameters.
6783         * tests/test-fseeko.c (main): Likewise.
6784         * tests/test-ftello.c (main): Likewise.
6785         * tests/test-nanosleep.c (main): Avoid declaration warning.
6786         * tests/test-sleep.c (main): Likewise.
6787         * tests/test-unsetenv.c (main): Silence warning about string
6788         literal.
6789         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
6790
6791 2009-12-23  Bruno Haible  <bruno@clisp.org>
6792
6793         * tests/test-localename.c (test_locale_name): New function, extracted
6794         from main. Also test mixed situations.
6795         (test_locale_name_posix, test_locale_name_environ,
6796         test_locale_name_default): New functions.
6797         (main): Invoke them all.
6798         * modules/localename-tests (configure.ac): Test for newlocale.
6799
6800 2009-12-23  Bruno Haible  <bruno@clisp.org>
6801
6802         unistd: Ensure getcwd gets declared before being overridden.
6803         * lib/unistd.in.h: Conditionally include <io.h>.
6804
6805 2009-12-22  Bruno Haible  <bruno@clisp.org>
6806
6807         wchar: Diagnose broken combination of glibc and gcc versions and flags.
6808         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
6809         (gl_WCHAR_H): Invoke it.
6810         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
6811         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
6812         Reported by Karl Berry <karl@freefriends.org>.
6813
6814 2009-12-22  Eric Blake  <ebb9@byu.net>
6815
6816         math, unistd: avoid redundant includes
6817         * lib/math.in.h (isnan): No need to re-include <math.h>.
6818         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
6819
6820         getsubopt: work around cygwin bug
6821         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
6822         avoid conflicting with system getsubopt.
6823         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
6824         bug.
6825
6826         getopt: synchronize from glibc
6827         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
6828         parameter order.  Adjust all callers.
6829         (_getopt_internal_r, main): Adjust quoting in error messages.
6830         Drop considerations for outdated POSIX 1003.2 error message.
6831         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
6832         callers.
6833         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
6834
6835         test-getopt: test stderr behavior
6836         * modules/getopt-posix-tests (Depends-on): Add dup2.
6837         * tests/test-getopt.c (ASSERT): Avoid stderr.
6838         (main): Move stderr to a temporary file.
6839         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
6840         Instead, add parameter to inform caller if output occurred.
6841         (test_getopt): Adjust all existing tests to expect silence, and
6842         add new tests of leading ":".
6843         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6844         glibc shortcomings with leading "-:" or "+:" in optstring.
6845         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6846         Likewise.
6847         * doc/posix-functions/getopt.texi (getopt): Likewise.
6848
6849         test-getopt: enhance test
6850         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
6851         supports optind=0.
6852         * tests/test-getopt.c (OPTIND_MIN): Move...
6853         * tests/test-getopt.h (OPTIND_MIN): ...here.
6854         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
6855         Require that optind=0 works, since modern BSD supports it in
6856         addition to optreset, and since coreutils expects it.
6857         (test_getopt_long_only): New test.
6858         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6859         glibc shortcomings with 'W;', and enforcement of optind=0.
6860         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6861         Likewise.
6862
6863 2009-12-21  Bruno Haible  <bruno@clisp.org>
6864
6865         localename: Improvements for MacOS X and Cygwin.
6866         * lib/localename.h (gl_locale_name_environ): New declaration.
6867         * lib/localename.c (gl_locale_name_environ): New function, extracted from
6868         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
6869         (gl_locale_name_posix): Invoke it.
6870         (gl_locale_name_default): Add comments. Use Windows native API also on
6871         Cygwin.
6872
6873 2009-12-21  Bruno Haible  <bruno@clisp.org>
6874
6875         Update list of Win32 locale ids.
6876         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
6877         (LANG_SAMI): Renamed from LANG_SAAMI.
6878         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
6879         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
6880         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
6881         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
6882         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
6883         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
6884         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
6885         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
6886         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
6887         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
6888         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
6889         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
6890         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
6891         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
6892         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
6893         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
6894         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
6895         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
6896         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
6897         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
6898         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
6899         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
6900         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
6901         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
6902         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
6903         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
6904         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
6905         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
6906         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
6907         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
6908         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
6909         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
6910         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
6911         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
6912         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
6913         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
6914         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
6915         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
6916         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
6917         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
6918         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
6919         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
6920         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
6921         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
6922         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
6923         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
6924         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
6925         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
6926         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
6927         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
6928         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
6929         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
6930         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
6931         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
6932         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
6933         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
6934         Add more languages and countries for Sami, Sorbian. Add more countries
6935         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
6936         for Pashto. Change country for Syriac, Tswana.
6937
6938 2009-12-21  Eric Blake  <ebb9@byu.net>
6939
6940         test-utimens: avoid spurious failure
6941         * tests/test-chown.h (nap): Factor...
6942         * tests/nap.h: ...into new file.
6943         * tests/test-lchown.h (nap): Avoid duplication.
6944         * tests/test-utimens-common.h (nap): Use shared implementation,
6945         necessary on file systems with 1-second resolution.
6946         * modules/chown-tests (Files): Include new file.
6947         * modules/fdutimensat-tests (Files): Likewise.
6948         * modules/futimens-tests (Files): Likewise.
6949         * modules/lchown-tests (Files): Likewise.
6950         * modules/openat-tests (Files): Likewise.
6951         * modules/utimens-tests (Files): Likewise.
6952         * modules/utimensat-tests (Files): Likewise.
6953
6954 2009-12-19  Eric Blake  <ebb9@byu.net>
6955
6956         futimens, utimensat: work around Linux bug
6957         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
6958         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
6959         * lib/utimensat.c (rpl_utimensat): Work around it.
6960         * lib/futimens.c (rpl_futimens): Adjust comment.
6961
6962         utimens: work around Linux ctime bug
6963         * lib/utimens.c (detect_ctime_bug): New helper function.
6964         (update_timespec): Differentiate between workaround needed for
6965         this bug vs. what is needed for systems that lack utimensat.
6966         (fdutimens, lutimens): Work around bug.
6967
6968         utimens: check for ctime update
6969         * tests/test-utimens-common.h (check_ctime): Define.
6970         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
6971         * tests/test-futimens.h (test_futimens): Likewise.
6972         * tests/test-lutimens.h (test_lutimens): Likewise.
6973         * doc/posix-functions/futimens.texi (futimens): Document the bug.
6974         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
6975
6976 2009-12-19  Bruno Haible  <bruno@clisp.org>
6977
6978         dprintf-posix: Check against memory leak fixed on 2009-12-15.
6979         * tests/test-dprintf-posix2.sh: New file.
6980         * tests/test-dprintf-posix2.c: New file.
6981         * modules/dprintf-posix-tests (Files): Add them.
6982         (configure.ac): Check for getrlimit and setrlimit.
6983         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6984
6985 2009-12-19  Bruno Haible  <bruno@clisp.org>
6986
6987         fprintf-posix: Check against memory leak fixed on 2009-12-15.
6988         * tests/test-fprintf-posix3.sh: New file.
6989         * tests/test-fprintf-posix3.c: New file.
6990         * modules/fprintf-posix-tests (Files): Add them.
6991         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6992
6993 2009-12-19  Eric Blake  <ebb9@byu.net>
6994
6995         dirfd: fix prototype
6996         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
6997         * lib/dirfd.c (dirfd): Likewise.
6998
6999         canonicalize: reduce memory usage
7000         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
7001         allocation to size.
7002         Reported by Solar Designer <solar@openwall.com>.
7003
7004 2009-12-19  Bruno Haible  <bruno@clisp.org>
7005
7006         New module attribute 'Applicability'.
7007         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
7008         * gnulib-tool: New option --extract-applicability.
7009         (func_usage): Document it.
7010         (sed_extract_prog): Recognize it.
7011         (func_get_applicability): New function.
7012         (func_import): Generalize handling of 'link-warning' module.
7013         * modules/link-warning (Applicability): New section.
7014         * modules/arg-nonnull (Applicability): New section.
7015         Repoted by Simon Josefsson <simon@josefsson.org>.
7016
7017 2009-12-19  Bruno Haible  <bruno@clisp.org>
7018
7019         fflush: tweak
7020         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
7021         * lib/fseeko.c (rpl_fseeko): Likewise.
7022
7023 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
7024
7025         * lib/gl_list.h: Fix typo in comment.
7026
7027 2009-12-16  Eric Blake  <ebb9@byu.net>
7028
7029         fcntl: use to simplify other modules
7030         * modules/cloexec (Depends-on): Add fcntl.
7031         * modules/fchdir (Depends-on): Likewise.
7032         * modules/fd-safer-flag (Depends-on): Likewise.
7033         * modules/unistd-safer (Depends-on): Likewise.
7034         * modules/dup3 (configure.ac): Set module indicator.
7035         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
7036         missing.
7037         * lib/fchdir.c (_gl_register_dup): Fix comment.
7038         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
7039         * lib/dup-safer.c (dup_safer): Likewise.
7040         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
7041         * lib/dup3.c (dup3): Likewise.
7042         * tests/test-fchdir.c (main): Enhance test.
7043         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
7044
7045         fcntl: port portions of fcntl to mingw
7046         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
7047         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
7048         replacement for mingw.
7049         * modules/fcntl (Description): Update.
7050         (Depends-on): Add dup2.
7051         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
7052         * modules/fcntl-h (Makefile.am): Substitute it.
7053         * lib/fcntl.in.h (fcntl): Update declaration.
7054         (F_DUPFD, F_GETFD): New macros, when needed.
7055         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
7056         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
7057         * tests/test-fcntl.c (check_flags, main): Enhance test for items
7058         we now guarantee.
7059
7060         fcntl: work around cygwin bug in F_DUPFD
7061         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
7062         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
7063         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
7064         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
7065         * doc/posix-functions/fcntl.texi (fcntl): Document it.
7066
7067         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
7068         * modules/fcntl (Files): List new files.
7069         (configure.ac): Run a test.
7070         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
7071         * lib/fcntl.c (rpl_fcntl): Likewise.
7072         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
7073         (gl_FCNTL_H): Always replace fcntl.h.
7074         * modules/fcntl-h (Makefile.am): Substitute witnesses.
7075         * lib/fcntl.in.h (fcntl): Declare replacement.
7076         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
7077         needed, plus a witness.
7078         * doc/posix-functions/fcntl.texi (fcntl): Document this.
7079         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
7080         * tests/test-fcntl.c: New file.
7081         * modules/fcntl-tests: Likewise.
7082
7083         binary-io: avoid potential compilation warning
7084         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
7085         directives.
7086
7087         fflush: avoid compilation error on NetBSD
7088         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
7089         between off_t and fpos_t, since the latter is sometimes a struct.
7090         * lib/fseeko.c (rpl_fseeko): Likewise.
7091         Reported by Alexander Nasonov <alnsn@yandex.ru>.
7092
7093 2009-12-15  Eric Blake  <ebb9@byu.net>
7094
7095         fcntl-h, stdio, sys_ioctl: fix declarations
7096         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
7097         function must not take arguments.
7098         * lib/sys_ioctl.in.h (ioctl): Likewise.
7099         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
7100         (open): Add a link warning.
7101
7102 2009-12-15  Jim Meyering  <meyering@redhat.com>
7103
7104         areadlink, areadlink-with-size: relax license to LGPLv2+
7105         * modules/areadlink (License): Relax to LGPLv2+.
7106         * modules/areadlink-with-size (License): Likewise.
7107
7108 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
7109             Bruno Haible  <bruno@clisp.org>
7110
7111         *printf: Fix memory leak.
7112         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
7113         * lib/vfprintf.c (vfprintf): Likewise.
7114         * lib/dprintf.c (dprintf): Likewise.
7115         * lib/vdprintf.c (vdprintf): Likewise.
7116
7117 2009-12-14  Eric Blake  <ebb9@byu.net>
7118
7119         accept4: adjust module dependencies
7120         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
7121
7122         utimens: one more try at avoiding compiler warning
7123         * lib/utimens.c (lutimens): Lower scope of result.
7124
7125 2009-12-13  Bruno Haible  <bruno@clisp.org>
7126
7127         Move the malloc checking from module 'list' to new module 'xlist'.
7128         * modules/xlist: New file.
7129         * lib/gl_xlist.h: New file.
7130         * lib/gl_xlist.c: New file.
7131         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
7132         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
7133         gl_list_add_last, gl_list_add_before, gl_list_add_after,
7134         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
7135         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
7136         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
7137         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
7138         gl_sortedlist_nx_add): New declarations.
7139         (struct gl_list_implementation): Rename and change methods accordingly.
7140         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
7141         (gl_list_nx_create): Renamed from gl_list_create.
7142         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7143         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7144         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7145         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7146         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7147         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7148         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7149         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7150         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
7151         gl_list_create_empty.
7152         (gl_list_nx_create): Renamed from gl_list_create.
7153         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7154         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7155         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7156         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7157         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7158         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7159         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7160         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7161         * lib/gl_array_list.c: Don't include xalloc.h.
7162         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
7163         NULL upon out-of-memory.
7164         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
7165         out-of-memory.
7166         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
7167         Change return type to 'int'.
7168         (gl_array_nx_set_at): Renamed from gl_array_set_at.
7169         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7170         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
7171         upon out-of-memory.
7172         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
7173         upon out-of-memory.
7174         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
7175         upon out-of-memory.
7176         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
7177         upon out-of-memory.
7178         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
7179         out-of-memory.
7180         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
7181         Update.
7182         (gl_array_list_implementation): Update.
7183         * lib/gl_carray_list.c: Don't include xalloc.h.
7184         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
7185         Return NULL upon out-of-memory.
7186         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
7187         out-of-memory.
7188         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
7189         Change return type to 'int'.
7190         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
7191         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7192         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
7193         upon out-of-memory.
7194         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
7195         upon out-of-memory.
7196         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
7197         out-of-memory.
7198         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
7199         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
7200         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
7201         Update.
7202         (gl_carray_list_implementation): Update.
7203         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
7204         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
7205         gl_linked_create_empty. Return NULL upon out-of-memory.
7206         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
7207         out-of-memory.
7208         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
7209         Change return type to 'int'. Return -1 upon out-of-memory.
7210         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
7211         out-of-memory.
7212         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
7213         upon out-of-memory.
7214         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
7215         upon out-of-memory.
7216         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
7217         NULL upon out-of-memory.
7218         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
7219         upon out-of-memory.
7220         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
7221         out-of-memory.
7222         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
7223         Update.
7224         * lib/gl_linked_list.c: Don't include xalloc.h.
7225         (gl_linked_list_implementation): Update.
7226         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
7227         (add_to_bucket): Change return type to 'int'.
7228         (gl_linkedhash_list_implementation): Update.
7229         * lib/gl_anytree_list1.h (free_subtree): New function.
7230         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
7231         gl_tree_create_empty. Return NULL upon out-of-memory.
7232         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
7233         Change return type to 'int'. Return -1 upon out-of-memory.
7234         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
7235         out-of-memory.
7236         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
7237         (gl_tree_remove_node): New function, moved here from
7238         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
7239         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
7240         Update.
7241         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
7242         malloc, not xmalloc. Return NULL upon out-of-memory.
7243         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7244         out-of-memory.
7245         (gl_tree_remove_node_from_tree): New function, extracted from
7246         gl_tree_remove_node.
7247         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7248         upon out-of-memory.
7249         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7250         out-of-memory.
7251         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7252         upon out-of-memory.
7253         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7254         upon out-of-memory.
7255         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7256         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
7257         not xmalloc. Return NULL upon out-of-memory.
7258         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7259         out-of-memory.
7260         (gl_tree_remove_node_from_tree): New function, extracted from
7261         gl_tree_remove_node.
7262         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7263         upon out-of-memory.
7264         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7265         out-of-memory.
7266         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7267         upon out-of-memory.
7268         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7269         upon out-of-memory.
7270         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7271         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
7272         gl_anytree_list1.h before gl_anyavltree_list2.h.
7273         (gl_avltree_list_implementation): Update.
7274         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
7275         gl_anytree_list1.h before gl_anyavltree_list2.h.
7276         (gl_rbtree_list_implementation): Update.
7277         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
7278         Change return type to 'int'. Return -1 upon out-of-memory. Use
7279         __builtin_expect.
7280         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
7281         (gl_avltreehash_list_implementation): Update.
7282         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
7283         (gl_rbtreehash_list_implementation): Update.
7284         * modules/array-list (Depends-on): Remove xalloc.
7285         * modules/carray-list (Depends-on): Likewise.
7286         * modules/linked-list (Depends-on): Likewise.
7287         * modules/linkedhash-list (Depends-on): Likewise.
7288         * modules/avltree-list (Depends-on): Likewise.
7289         * modules/rbtree-list (Depends-on): Likewise.
7290         * modules/avltreehash-list (Depends-on): Likewise.
7291         * modules/rbtreehash-list (Depends-on): Likewise.
7292
7293         * modules/xsublist: New file.
7294         * lib/gl_xsublist.h: New file.
7295         * lib/gl_xsublist.c: New file.
7296         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
7297         (gl_sublist_nx_create): New declaration.
7298         * lib/gl_sublist.c: Don't include xalloc.h.
7299         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
7300         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
7301         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
7302         Change return type to 'int'. Return -1 upon out-of-memory.
7303         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
7304         upon out-of-memory.
7305         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
7306         NULL upon out-of-memory.
7307         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
7308         upon out-of-memory.
7309         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
7310         NULL upon out-of-memory.
7311         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
7312         NULL upon out-of-memory.
7313         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
7314         upon out-of-memory.
7315         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
7316         (gl_sublist_list_implementation): Update.
7317         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
7318         upon out-of-memory.
7319         * modules/sublist (Depends-on): Remove xalloc.
7320
7321         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
7322         * tests/test-carray_list.c: Likewise.
7323         * tests/test-linked_list.c: Likewise.
7324         * tests/test-linkedhash_list.c: Likewise.
7325         * tests/test-avltree_list.c: Likewise.
7326         * tests/test-rbtree_list.c: Likewise.
7327         * tests/test-avltreehash_list.c: Likewise.
7328         * tests/test-rbtreehash_list.c: Likewise.
7329         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
7330         * modules/carray-list-tests (Makefile.am): Likewise.
7331         * modules/linked-list-tests (Makefile.am): Likewise.
7332         * modules/linkedhash-list-tests (Makefile.am): Likewise.
7333         * modules/avltree-list-tests (Makefile.am): Likewise.
7334         * modules/rbtree-list-tests (Makefile.am): Likewise.
7335         * modules/avltreehash-list-tests (Makefile.am): Likewise.
7336         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
7337
7338         * NEWS: Mention the changes.
7339
7340         * lib/clean-temp.c: Include gl_xlist.h.
7341         * modules/clean-temp (Depends-on): Add xlist.
7342
7343         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
7344         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
7345
7346         * tests/test-array_oset.c: Include gl_xlist.h.
7347         * modules/array-oset-tests (Depends-on): Add xlist.
7348
7349         Reported by José E. Marchesi <jemarch@gnu.org>.
7350
7351 2009-12-13  Bruno Haible  <bruno@clisp.org>
7352
7353         Move the malloc checking from module 'oset' to new module 'xoset'.
7354         * modules/xoset: New file.
7355         * lib/gl_xoset.h: New file.
7356         * lib/gl_xoset.c: New file.
7357         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
7358         declarations.
7359         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
7360         (struct gl_oset_implementation): Rename and change methods accordingly.
7361         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
7362         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
7363         'int'. Mark as __warn_unused_result__.
7364         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
7365         gl_oset_create_empty.
7366         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
7367         'int'.
7368         * lib/gl_array_oset.c: Don't include xalloc.h.
7369         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
7370         malloc, not xmalloc.
7371         (grow): Change return type to 'int'. Don't call xalloc_die.
7372         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
7373         to 'int'.
7374         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
7375         'int'.
7376         (gl_array_oset_implementation): Update.
7377         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
7378         gl_tree_create_empty.
7379         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
7380         'int'.
7381         * lib/gl_avltree_oset.c: Don't include xalloc.h.
7382         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
7383         xmalloc.
7384         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
7385         not xmalloc.
7386         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
7387         xmalloc.
7388         (gl_avltree_oset_implementation): Update.
7389         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
7390         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
7391         xmalloc.
7392         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
7393         not xmalloc.
7394         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
7395         xmalloc.
7396         (gl_rbtree_oset_implementation): Update.
7397         * modules/array-oset (Depends-on): Remove xalloc.
7398         * modules/avltree-oset (Depends-on): Likewise.
7399         * modules/rbtree-oset (Depends-on): Likewise.
7400         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
7401         * tests/test-avltree_oset.c: Likewise.
7402         * tests/test-rbtree_oset.c: Likewise.
7403         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
7404         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
7405         * modules/rbtree-oset-tests (Makefile.am): Likewise.
7406         * NEWS: Mention the change.
7407
7408 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
7409
7410         maint.mk: allow a project to override release-prep commands
7411         * top/maint.mk (alpha, beta, stable): Move release-preparatory
7412         commands into a new rule.
7413         (release-prep): New rule.
7414         (release-prep-hook): New overridable variable.
7415
7416 2009-12-13  Bruno Haible  <bruno@clisp.org>
7417
7418         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
7419
7420 2009-12-13  Jim Meyering  <meyering@redhat.com>
7421
7422         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
7423         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
7424
7425 2009-12-12  Bruno Haible  <bruno@clisp.org>
7426
7427         duplocale: Tweak.
7428         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
7429
7430 2009-12-12  Karl Berry  <karl@gnu.org>
7431
7432         * config/srclist.txt (strtoll.c): tab changes, no more sync.
7433
7434 2009-12-12  Bruno Haible  <bruno@clisp.org>
7435
7436         * m4/po.m4: Undo incorrect untabification.
7437
7438 2009-12-12  Bruno Haible  <bruno@clisp.org>
7439
7440         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
7441         * modules/c-strtod (Depends-on): Add locale.
7442         * modules/c-strtold (Depends-on): Likewise.
7443
7444 2009-12-12  Bruno Haible  <bruno@clisp.org>
7445
7446         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
7447
7448 2009-12-11  Eric Blake  <ebb9@byu.net>
7449
7450         setenv: relax requirement in light of POSIX ruling
7451         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
7452         not NULL.
7453         * tests/test-setenv.c (main): Relax test.
7454         * tests/test-unsetenv.c (main): Likewise.
7455         * doc/posix-functions/setenv.texi (setenv): Document this.
7456         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
7457
7458 2009-12-11  Bruno Haible  <bruno@clisp.org>
7459
7460         New module 'fd-safer-flag'.
7461         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
7462         * lib/dup-safer.c (dup_safer_flag): Remove function.
7463         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
7464         * lib/fd-safer.c (fd_safer_flag): Remove function.
7465         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
7466         * modules/cloexec (configure.ac): Drop indicator macro.
7467         * modules/fd-safer-flag: New file.
7468         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
7469         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
7470         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
7471
7472 2009-12-11  Bruno Haible  <bruno@clisp.org>
7473
7474         Tests for module 'nl_langinfo'.
7475         * modules/nl_langinfo-tests: New file.
7476         * tests/test-nl_langinfo.sh: New file.
7477         * tests/test-nl_langinfo.c: New file.
7478
7479         New module 'nl_langinfo'.
7480         * lib/nl_langinfo.c: New file.
7481         * m4/nl_langinfo.m4: New file.
7482         * modules/nl_langinfo: New file.
7483         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
7484
7485 2009-12-11  Bruno Haible  <bruno@clisp.org>
7486
7487         Tests for module 'langinfo'.
7488         * modules/langinfo-tests: New file.
7489         * tests/test-langinfo.c: New file.
7490
7491         New module 'langinfo'.
7492         * lib/langinfo.in.h: New file.
7493         * m4/langinfo_h.m4: New file.
7494         * modules/langinfo: New file.
7495         * doc/posix-headers/langinfo.texi: Mention the new module.
7496
7497 2009-12-11  Bruno Haible  <bruno@clisp.org>
7498
7499         * lib/config.charset: Untabify.
7500
7501 2009-12-11  Bruno Haible  <bruno@clisp.org>
7502
7503         * modules/unistd-safer (configure.ac): Drop indicator macro.
7504
7505 2009-12-11  Bruno Haible  <bruno@clisp.org>
7506
7507         Move pipe2-safer code to its own file.
7508         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
7509         * lib/pipe-safer.c (pipe2_safer): Remove function.
7510         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
7511         (Makefile.am): Add it to lib_SOURCES.
7512
7513 2009-12-10  Bruno Haible  <bruno@clisp.org>
7514
7515         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
7516
7517 2009-12-10  Bruno Haible  <bruno@clisp.org>
7518
7519         Declare which arguments expect non-NULL values, for GCC and clang.
7520         * build-aux/arg-nonnull.h: New file.
7521         * modules/arg-nonnull: New file.
7522         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
7523         (inet_ntop, inet_pton): Use it.
7524         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
7525         (closedir, dirfd, opendir, scandir, alphasort): Use it.
7526         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
7527         (open, openat): Use it.
7528         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
7529         (fnmatch): Use it.
7530         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
7531         (getopt, getopt_long, getopt_long_only): Use it.
7532         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
7533         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
7534         Use it.
7535         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
7536         (iconv_open): Use it.
7537         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
7538         (strtoimax, strtoumax): Use it.
7539         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
7540         (duplocale): Use it.
7541         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
7542         (frexp, frexpl): Use it.
7543         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
7544         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
7545         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
7546         (tsearch, tfind, tdelete, twalk): Use it.
7547         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
7548         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
7549         sigpending): Use it.
7550         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
7551         (posix_spawn, posix_spawnp, posix_spawnattr_init,
7552         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
7553         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
7554         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
7555         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
7556         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
7557         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
7558         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
7559         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
7560         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
7561         Use it.
7562         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
7563         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
7564         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
7565         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
7566         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
7567         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
7568         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
7569         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
7570         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
7571         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
7572         strtoull, unsetenv): Use it.
7573         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
7574         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
7575         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
7576         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
7577         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
7578         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
7579         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
7580         (strcasecmp, strncasecmp): Use it.
7581         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
7582         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
7583         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
7584         rpl_setsockopt): Use it.
7585         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
7586         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
7587         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
7588         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
7589         (gettimeofday): Use it.
7590         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
7591         (times): Use it.
7592         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
7593         (uname): Use it.
7594         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
7595         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
7596         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
7597         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
7598         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
7599         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
7600         unlinkat, write): Use it.
7601         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
7602         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
7603         * lib/argv-iter.h: Include arg-nonnull.h.
7604         (_ATTRIBUTE_NONNULL_): Remove macro.
7605         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
7606         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
7607         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
7608         optimization.
7609         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
7610         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
7611         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
7612         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
7613         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
7614         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
7615         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
7616         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
7617         * modules/arpa_inet (Depends-on): Add arg-nonnull.
7618         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
7619         * modules/dirent (Depends-on): Add arg-nonnull.
7620         (Makefile.am): Insert arg-nonnull.h into dirent.h.
7621         * modules/fcntl-h (Depends-on): Add arg-nonnull.
7622         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
7623         * modules/fnmatch (Depends-on): Add arg-nonnull.
7624         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
7625         * modules/getopt-posix (Depends-on): Add arg-nonnull.
7626         (Makefile.am): Insert arg-nonnull.h into getopt.h.
7627         * modules/glob (Depends-on): Add arg-nonnull.
7628         (Makefile.am): Insert arg-nonnull.h into glob.h.
7629         * modules/iconv_open (Depends-on): Add arg-nonnull.
7630         (Makefile.am): Insert arg-nonnull.h into iconv.h.
7631         * modules/inttypes (Depends-on): Add arg-nonnull.
7632         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
7633         * modules/locale (Depends-on): Add arg-nonnull.
7634         (Makefile.am): Insert arg-nonnull.h into locale.h.
7635         * modules/math (Depends-on): Add arg-nonnull.
7636         (Makefile.am): Insert arg-nonnull.h into math.h.
7637         * modules/netdb (Depends-on): Add arg-nonnull.
7638         (Makefile.am): Insert arg-nonnull.h into netdb.h.
7639         * modules/search (Depends-on): Add arg-nonnull.
7640         (Makefile.am): Insert arg-nonnull.h into search.h.
7641         * modules/signal (Depends-on): Add arg-nonnull.
7642         (Makefile.am): Insert arg-nonnull.h into signal.h.
7643         * modules/spawn (Depends-on): Add arg-nonnull.
7644         (Makefile.am): Insert arg-nonnull.h into spawn.h.
7645         * modules/stdio (Depends-on): Add arg-nonnull.
7646         (Makefile.am): Insert arg-nonnull.h into stdio.h.
7647         * modules/stdlib (Depends-on): Add arg-nonnull.
7648         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
7649         * modules/string (Depends-on): Add arg-nonnull.
7650         (Makefile.am): Insert arg-nonnull.h into string.h.
7651         * modules/strings (Depends-on): Add arg-nonnull.
7652         (Makefile.am): Insert arg-nonnull.h into strings.h.
7653         * modules/sys_socket (Depends-on): Add arg-nonnull.
7654         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
7655         * modules/sys_stat (Depends-on): Add arg-nonnull.
7656         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
7657         * modules/sys_time (Depends-on): Add arg-nonnull.
7658         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
7659         * modules/sys_times (Depends-on): Add arg-nonnull.
7660         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
7661         * modules/sys_utsname (Depends-on): Add arg-nonnull.
7662         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
7663         * modules/time (Depends-on): Add arg-nonnull.
7664         (Makefile.am): Insert arg-nonnull.h into time.h.
7665         * modules/unistd (Depends-on): Add arg-nonnull.
7666         (Makefile.am): Insert arg-nonnull.h into unistd.h.
7667         * modules/wchar (Depends-on): Add arg-nonnull.
7668         (Makefile.am): Insert arg-nonnull.h into wchar.h.
7669         * modules/argv-iter (Depends-on): Add arg-nonnull.
7670         * tests/test-canonicalize.c (null_ptr): New function.
7671         (main): Use it.
7672         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
7673         (main): Use it.
7674         * tests/test-memmem.c (null_ptr): New function.
7675         (main): Use it.
7676         Reported by Jim Meyering.
7677
7678 2009-12-10  Bruno Haible  <bruno@clisp.org>
7679
7680         Use spaces for indentation, not tabs.
7681         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
7682         * m4/*.m4: Untabify.
7683         * build-aux/*.h: Untabify.
7684         * tests/**/*.[hc]: Untabify.
7685         * README: New section "Indent with spaces, not TABs", based on
7686         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
7687         * NEWS: Mention the change.
7688
7689 2009-12-10  Bruno Haible  <bruno@clisp.org>
7690
7691         pty test: Fix link error.
7692         * modules/pty-tests (Makefile.am): Add the default LDADD value to
7693         test_pty_LDADD.
7694
7695 2009-12-07  Simon Josefsson  <simon@josefsson.org>
7696
7697         * modules/pty: New file.
7698         * modules/pty-tests: New file.
7699         * m4/pty.m4: New file.
7700         * tests/test-pty.c: New file.
7701         * doc/glibc-headers/pty.texi: Modified.
7702         * doc/glibc-functions/forkpty.texi: Modified.
7703         * doc/glibc-functions/openpty.texi: Modified.
7704
7705 2009-12-10  Bruno Haible  <bruno@clisp.org>
7706
7707         Avoid syntax error in C++ mode.
7708         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
7709
7710 2009-12-10  Bruno Haible  <bruno@clisp.org>
7711
7712         Use sed with option -e.
7713         * gnulib-tool (func_version, func_emit_copyright_notice,
7714         func_emit_initmacro_end, func_import, func_create_testdir): Pass
7715         option -e to sed.
7716         * modules/link-warning (Makefile.am): Likewise.
7717
7718 2009-12-10  Jim Meyering  <meyering@redhat.com>
7719
7720         mgetgroups: do not write bytes beyond end of malloc'd buffer
7721         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
7722         username, we call getgroups with a one-element-shorter buffer,
7723         but still told it the length was original, max_n_groups.
7724
7725 2009-12-09  Eric Blake  <ebb9@byu.net>
7726
7727         cloexec: relax license
7728         * modules/cloexec (Maintainer): Add myself.
7729         (License): Use LGPL, not GPL.
7730
7731         link-warning: optimize generation
7732         * modules/link-warning (Makefile.am): Reduce process usage.
7733
7734 2009-12-09  Bruno Haible  <bruno@clisp.org>
7735
7736         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
7737         workaround was added on 2009-11-17.
7738
7739 2009-12-09  Jim Meyering  <meyering@redhat.com>
7740             Bruno Haible  <bruno@clisp.org>
7741
7742         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
7743         * modules/link-warning (Makefile.am): Make the comment-removing sed
7744         command more robust in the face of bootstrap-prepended comment lines.
7745
7746 2009-12-09  Bruno Haible  <bruno@clisp.org>
7747
7748         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
7749         most one group.
7750
7751 2009-12-09  Simon Josefsson <simon@josefsson.org>
7752             Bruno Haible  <bruno@clisp.org>
7753
7754         * build-aux/link-warning.h: Add copyright notice.
7755         * modules/link-warning (Makefile.am): Generate link-warning.h from
7756         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
7757         * NEWS: Mention change in link-warning module.
7758         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
7759         * modules/dirent (Makefile.am): Add dependency to dirent.h.
7760         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
7761         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
7762         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
7763         * modules/math (Makefile.am): Add dependency to math.h.
7764         * modules/search (Makefile.am): Add dependency to search.h.
7765         * modules/signal (Makefile.am): Add dependency to signal.h.
7766         * modules/spawn (Makefile.am): Add dependency to spawn.h.
7767         * modules/stdio (Makefile.am): Add dependency to stdio.h.
7768         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
7769         * modules/string (Makefile.am): Add dependency to string.h.
7770         * modules/strings (Makefile.am): Add dependency to strings.h.
7771         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
7772         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
7773         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
7774         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
7775         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
7776         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
7777         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
7778         * modules/unistd (Makefile.am): Add dependency to unistd.h.
7779         * modules/wchar (Makefile.am): Add dependency to wchar.h.
7780
7781 2009-12-09  Bruno Haible  <bruno@clisp.org>
7782
7783         fchdir: Optimize away rpl_fstat when possible.
7784         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
7785         REPLACE_OPEN_DIRECTORY.
7786         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
7787
7788 2009-12-09  Bruno Haible  <bruno@clisp.org>
7789
7790         * lib/fchdir.c: Update comment.
7791
7792 2009-12-09  Bruno Haible  <bruno@clisp.org>
7793
7794         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
7795
7796 2009-12-08  Eric Blake  <ebb9@byu.net>
7797
7798         fchdir: avoid memory leak on re-registration.
7799         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
7800
7801 2009-12-08  Jim Meyering  <meyering@redhat.com>
7802
7803         init.sh: avoid Solaris 10 /bin/sh portability problem
7804         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
7805         sourced script:
7806           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
7807           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
7808           bar
7809         tests/init.sh relied on that, accepting a --set-path=DIR argument,
7810         and two tests used that idiom.
7811         * tests/init.sh: Update suggested usage comments.
7812         (path_prepend_): New function, to be used in place
7813         of the --src-path=DIR option.
7814         (setup_): Move PATH-prepending code into path_prepend_.
7815         * tests/test-pread.sh: Adapt to new usage.
7816         * tests/test-xalloc-die.sh: Likewise.
7817
7818 2009-12-08  Simon Josefsson  <simon@josefsson.org>
7819
7820         * doc/gnulib.texi (Glibc pty.h): Add.
7821         * doc/glibc-functions/forkpty.texi: Add.
7822         * doc/glibc-functions/openpty.texi: Add.
7823         Suggested by Bruno Haible.
7824
7825 2009-12-08  Eric Blake  <ebb9@byu.net>
7826
7827         fchdir: fix logic bugs
7828         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
7829         * tests/test-fchdir.c (main): Enhance test.
7830         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
7831         is in use.
7832
7833         dup2: fix logic bugs
7834         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
7835         REPLACE_DUP2 to decide when rpl_dup2 is needed.
7836         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
7837         exists.
7838         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
7839
7840 2009-12-07  Eric Blake  <ebb9@byu.net>
7841
7842         unlink: fix m4 detection
7843         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
7844
7845         unistd-safer: add unit test
7846         * modules/unistd-safer-tests: New file.
7847         * tests/test-dup-safer.c: Likewise.
7848         * tests/test-cloexec.c (setmode): Avoid compiler warning.
7849         * tests/test-dup2.c (setmode): Likewise.
7850         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
7851
7852         cloexec: preserve text vs. binary across dup_cloexec
7853         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
7854         mode.
7855         * modules/dup2-tests (Depends-on): Add binary-io.
7856         * modules/cloexec-tests (Depends-on): Likewise.
7857         * tests/test-dup2.c (setmode, is_mode): New helpers.
7858         (main): Add tests that translation mode is preserved.
7859         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
7860         Reported by Bruno Haible.
7861
7862         mgetgroups: reduce duplicate listings
7863         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
7864         resulting array.
7865         * tests/test-chown.h (test_chown): Simplify client.
7866         * tests/test-lchown.h (test_lchown): Likewise.
7867
7868 2009-12-06  Bruno Haible  <bruno@clisp.org>
7869
7870         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
7871         value.
7872
7873 2009-12-06  Bruno Haible  <bruno@clisp.org>
7874
7875         * lib/progname.c: Include stdio.h, stdlib.h.
7876         (set_program_name): Reject a NULL argument.
7877
7878 2009-12-05  Eric Blake  <ebb9@byu.net>
7879
7880         pipe2-safer: new module
7881         * modules/pipe2-safer: New file.
7882         * lib/unistd-safer.h (pipe2_safer): New prototype.
7883         * lib/unistd--.h (pipe2): New wrapper.
7884         * lib/pipe-safer.c (pipe2_safer): New function.
7885         * modules/pipe (Depends-on): Add pipe2-safer.
7886         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
7887
7888         stdlib-safer: preserve cloexec flag for mkostemp[s]
7889         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
7890         fd_safer_flag.
7891
7892         unistd-safer: allow preservation of cloexec status via flag
7893         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
7894         prototypes.
7895         * lib/dup-safer.c (dup_safer_flag): New function.
7896         * lib/fd-safer.c (fd_safer_flag): Likewise.
7897         * modules/cloexec (configure.ac): Set witness.
7898
7899         test-dup2: enhance test
7900         * modules/dup2-tests (Depends-on): Add cloexec.
7901         * tests/test-dup2.c (main): Enhance test.
7902
7903         cloexec: add dup_cloexec
7904         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
7905         header and comments.
7906         * lib/cloexec.c (set_cloexec_flag): Add comments.
7907         (dup_cloexec): New function, with mingw implementation borrowed
7908         from...
7909         * lib/w32spawn.h (dup_noinherit): ...here.
7910         * modules/execute (Depends-on): Add cloexec.
7911         * modules/pipe (Depends-on): Likewise.
7912         * modules/cloexec (Depends-on): Add dup2.
7913         * modules/cloexec-tests (Files): New file.
7914         * tests/test-cloexec.c: Likewise.
7915
7916         test-xalloc-die: fix test for mingw
7917         * modules/xalloc-die-tests (Files): Add tests/init.sh.
7918         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
7919         directory and .exe suffix off argv[0] output.
7920
7921         test-fseeko: fix test for mingw
7922         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
7923         than undefining fseek, so test will pass on mingw.
7924
7925 2009-12-05  Bruno Haible  <bruno@clisp.org>
7926
7927         * lib/progname.h (set_program_name): Clarify specification.
7928         * lib/progname.c (set_program_name): Likewise.
7929         Reported by Jim Meyering.
7930
7931 2009-12-05  Jim Meyering  <meyering@redhat.com>
7932
7933         maint.mk: backslash-escape parens in default regexp
7934         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
7935         backslash-escape the literal parentheses.
7936
7937         maint.mk: news-date-check: use grep -E
7938         * top/maint.mk (today): Define a Make variable, not a...
7939         (news-date-check): ...shell variable.
7940         (news-date-regexp): Use the Make variable.
7941         Use grep's -E option.  Change the failing diagnostic to mention
7942         the variable, $(news-date-regexp).
7943
7944 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
7945
7946         maintainer-makefile: allow customization of NEWS entry format
7947         * top/maint.mk (news-date-regexp): New overridable variable.
7948         (news-date-check): Use it.
7949
7950 2009-12-04  Eric Blake  <ebb9@byu.net>
7951
7952         mgetgroups: add xgetgroups, and avoid ENOSYS failures
7953         * lib/mgetgroups.h (xgetgroups): New prototype.
7954         * lib/mgetgroups.c (xgetgroups): New wrapper.
7955         (mgetgroups): Handle ENOSYS.
7956         * modules/mgetgroups (Depends-on): Add realloc.
7957         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
7958
7959         mgetgroups: avoid argument promotion issues with -1
7960         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
7961         for invalid gid_t.
7962         * tests/test-chown.h (getegid, test_chown): Likewise.
7963         * tests/test-lchown.h (getegid, test_lchown): Likewise.
7964
7965 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
7966
7967         exclude: Fix header file problems.
7968         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
7969
7970 2009-12-01  Jim Meyering  <meyering@redhat.com>
7971
7972         fts: fts_open: do not let an empty string cause immediate failure
7973         This is required in support of GNU rm, for which the command
7974         "rm A '' B" must process and remove both A and B, in spite of
7975         the empty string argument.
7976         * lib/fts.c (fts_open): Do not let the presence of an empty string
7977         cause fts_open to fail immediately.  Most fts-using tools must be
7978         able to process all arguments, in order, and can be expected to
7979         diagnose such arguments themselves.
7980
7981 2009-11-30  Eric Blake  <ebb9@byu.net>
7982
7983         utimens: fix compilation error
7984         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
7985         Declare variable at right scope.
7986
7987 2009-11-29  Jim Meyering  <meyering@redhat.com>
7988
7989         bootstrap: handle perl-5.11's changed --version output
7990         * build-aux/bootstrap (get_version): Handle perl separately,
7991         since perl-5.11's --version output is different.
7992
7993 2009-11-28  Jim Meyering  <meyering@redhat.com>
7994
7995         userspec: depend on the inttostr module, too
7996         * modules/userspec (Depends-on): Add inttostr.
7997
7998         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
7999         * lib/userspec.c (parse_with_separator): Do not accept a user ID
8000         number of MAXUID when it evaluates to (uid_t) -1.
8001         Likewise for group ID.  Reported by Matt McCutchen in
8002         <http://savannah.gnu.org/bugs/?28113>
8003
8004         userspec: reformat to use spaces, not TABs
8005         * lib/userspec.c: Expand TABs to spaces.
8006         Add Emacs' "indent-tabs-mode: nil" hint.
8007
8008 2009-11-27  Eric Blake  <ebb9@byu.net>
8009
8010         getopt-gnu: flush out another BSD bug
8011         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
8012         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
8013         flush out BSD bug.
8014         * tests/test-getopt.h (test_getopt): End lists with NULL.
8015         * tests/test-getopt_long.h (test_getopt_long): Likewise.
8016         (test_getopt_long_posix): Enhance test.
8017         * modules/getopt-posix-tests (Depends-on): Add stdbool.
8018         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
8019         getopt-gnu.
8020         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
8021         Likewise.
8022
8023 2009-11-27  Simon Josefsson  <simon@josefsson.org>
8024
8025         * modules/idpriv-droptemp-tests (Notice): Fix text.
8026
8027 2009-11-27  Jim Meyering  <meyering@redhat.com>
8028
8029         test-xalloc-die: avoid spurious failure due to libtool argv difference
8030         In a libtool-enabled project, this test would fail due to a difference
8031         in the emitted program name, e.g.,
8032         -test-xalloc-die: memory exhausted
8033         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
8034         Use program to avoid that.
8035         * modules/xalloc-die-tests (Depends-on): Add progname.
8036         * tests/test-xalloc-die.c: Include progname.h".
8037         (program_name): Remove decl.
8038         (main): Call set_program_name.
8039         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
8040
8041 2009-11-26  Richard Jones  <rjones@redhat.com>
8042
8043         w32sock: leave win32 error in place.
8044         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
8045
8046 2009-11-26  Eric Blake  <ebb9@byu.net>
8047
8048         init.sh: suggest to use skip_ and fail_ functions in comments
8049         * tests/init.sh: Add a sentence.
8050
8051 2009-11-25  Bruno Haible  <bruno@clisp.org>
8052
8053         init.sh: add documentation in comments
8054         * tests/init.sh: Add some developer and user documentation.
8055
8056 2009-11-26  Jim Meyering  <meyering@redhat.com>
8057
8058         init.sh: accommodate even those who specify bogus srcdir manually
8059         * tests/init.sh: Normally, srcdir is guaranteed by automake and
8060         configure-time tests to be sanitized, so that there is no need to
8061         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
8062         (with no double quotes) suffices.  However, since tests may be
8063         invoked manually, and since you may explicitly set srcdir to the
8064         name of a directory containing spaces, do quote its uses here.
8065         * tests/test-pread.sh: Likewise.
8066         Suggested by Bruno Haible.
8067
8068         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
8069         * tests/test-pread.sh: Write no data into the pipe, because
8070         test-pread actually reads none.  This avoids a diagnostic,
8071         "bash: echo: write error: Broken pipe", that arises in the unusual
8072         event something is ignoring SIGPIPE, and might be interpreted
8073         as some sort of failure.  Reported by Bruno Haible.
8074
8075 2009-11-25  Jim Meyering  <meyering@redhat.com>
8076
8077         test-pread: cover failure with ESPIPE and EINVAL
8078         * tests/test-pread.c (main): Test for failure, too.
8079         * tests/test-pread.sh: Invoke with stdin on a pipe.
8080         Suggested by Eric Blake.
8081
8082         pread: improvement and fix
8083         * modules/pread (Depends-on): Depend on lseek, for portability to
8084         e.g., mingw.  Suggested by Eric Blake.
8085         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
8086
8087         unistd.in.h: correct declaration of pread
8088         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
8089         Reported by Richard W.M. Jones.
8090
8091         test-pread.sh: distribute the test script
8092         * modules/pread-tests (Files): Include test-pread.sh.
8093
8094         test-pread.sh: clean up
8095         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
8096         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
8097         That is unnecessary, since it's always ".".
8098         Suggestion from Eric Blake.
8099
8100         test-pread.sh: make executable
8101         * tests/test-pread.sh: Set executable bit.
8102         Reported by Eric Blake.
8103
8104         correct typo in test-pread.sh
8105         * tests/test-pread.sh: Add #! line.
8106
8107         test pread
8108         * tests/test-pread.c: New file.
8109         * tests/test-pread.sh: Likewise.
8110         * modules/pread-tests: Likewise.
8111
8112         pread: new module
8113         * modules/pread: New file.
8114         * lib/unistd.in.h (pread): Define/declare.
8115         * lib/pread.c (pread): New file.
8116         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
8117         * modules/unistd (Makefile.am): Substitute witnesses.
8118         * doc/posix-functions/pread.texi (pread): Update.
8119         * MODULES.html.sh: Add pread.
8120
8121 2009-11-25  Jim Meyering  <meyering@redhat.com>
8122
8123         tests/init.sh: new file to be used via most *.sh tests
8124         * tests/init.sh: New file.
8125
8126 2009-11-25  Eric Blake  <ebb9@byu.net>
8127
8128         utimens: work around older Linux failure with symlinks
8129         * lib/utimens.c (lutimensat_works_really): New variable.
8130         (fdutimens, lutimens): Use it to manage kernels that support
8131         nanosecond times on files, but not on symlinks.
8132         Reported by OndÅ™ej Vašík.
8133
8134         utimes: fix configure grammar
8135         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
8136
8137 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
8138
8139         regex: Fix fastmap for multibyte character ranges.
8140         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
8141         characters when a multibyte character range is included.
8142
8143 2009-11-22  Andy Wingo  <wingo@pobox.com>
8144
8145         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
8146         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
8147
8148 2009-11-24  Bruno Haible  <bruno@clisp.org>
8149
8150         doc: Most *_l functions exist in MacOS X 10.5.
8151         * doc/posix-functions/duplocale.texi: Update platforms list.
8152         * doc/posix-functions/freelocale.texi: Likewise.
8153         * doc/posix-functions/newlocale.texi: Likewise.
8154         * doc/posix-functions/uselocale.texi: Likewise.
8155         * doc/posix-functions/isalnum_l.texi: Likewise.
8156         * doc/posix-functions/isalpha_l.texi: Likewise.
8157         * doc/posix-functions/isblank_l.texi: Likewise.
8158         * doc/posix-functions/iscntrl_l.texi: Likewise.
8159         * doc/posix-functions/isdigit_l.texi: Likewise.
8160         * doc/posix-functions/isgraph_l.texi: Likewise.
8161         * doc/posix-functions/islower_l.texi: Likewise.
8162         * doc/posix-functions/isprint_l.texi: Likewise.
8163         * doc/posix-functions/ispunct_l.texi: Likewise.
8164         * doc/posix-functions/isspace_l.texi: Likewise.
8165         * doc/posix-functions/isupper_l.texi: Likewise.
8166         * doc/posix-functions/iswalnum_l.texi: Likewise.
8167         * doc/posix-functions/iswalpha_l.texi: Likewise.
8168         * doc/posix-functions/iswblank_l.texi: Likewise.
8169         * doc/posix-functions/iswcntrl_l.texi: Likewise.
8170         * doc/posix-functions/iswctype_l.texi: Likewise.
8171         * doc/posix-functions/iswdigit_l.texi: Likewise.
8172         * doc/posix-functions/iswgraph_l.texi: Likewise.
8173         * doc/posix-functions/iswlower_l.texi: Likewise.
8174         * doc/posix-functions/iswprint_l.texi: Likewise.
8175         * doc/posix-functions/iswpunct_l.texi: Likewise.
8176         * doc/posix-functions/iswspace_l.texi: Likewise.
8177         * doc/posix-functions/iswupper_l.texi: Likewise.
8178         * doc/posix-functions/iswxdigit_l.texi: Likewise.
8179         * doc/posix-functions/isxdigit_l.texi: Likewise.
8180         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
8181         * doc/posix-functions/strcasecmp_l.texi: Likewise.
8182         * doc/posix-functions/strcoll_l.texi: Likewise.
8183         * doc/posix-functions/strfmon_l.texi: Likewise.
8184         * doc/posix-functions/strftime_l.texi: Likewise.
8185         * doc/posix-functions/strncasecmp_l.texi: Likewise.
8186         * doc/posix-functions/strxfrm_l.texi: Likewise.
8187         * doc/posix-functions/tolower_l.texi: Likewise.
8188         * doc/posix-functions/toupper_l.texi: Likewise.
8189         * doc/posix-functions/towctrans_l.texi: Likewise.
8190         * doc/posix-functions/towlower_l.texi: Likewise.
8191         * doc/posix-functions/towupper_l.texi: Likewise.
8192         * doc/posix-functions/wcscoll_l.texi: Likewise.
8193         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
8194         * doc/posix-functions/wctrans_l.texi: Likewise.
8195         * doc/posix-functions/wctype_l.texi: Likewise.
8196         * doc/glibc-functions/strptime_l.texi: Likewise.
8197         * doc/glibc-functions/strtod_l.texi: Likewise.
8198         * doc/glibc-functions/strtof_l.texi: Likewise.
8199         * doc/glibc-functions/strtol_l.texi: Likewise.
8200         * doc/glibc-functions/strtold_l.texi: Likewise.
8201         * doc/glibc-functions/strtoll_l.texi: Likewise.
8202         * doc/glibc-functions/strtoul_l.texi: Likewise.
8203         * doc/glibc-functions/strtoull_l.texi: Likewise.
8204         * doc/glibc-functions/wcsftime_l.texi: Likewise.
8205         * doc/glibc-functions/wcstod_l.texi: Likewise.
8206         * doc/glibc-functions/wcstof_l.texi: Likewise.
8207         * doc/glibc-functions/wcstol_l.texi: Likewise.
8208         * doc/glibc-functions/wcstold_l.texi: Likewise.
8209         * doc/glibc-functions/wcstoll_l.texi: Likewise.
8210         * doc/glibc-functions/wcstoul_l.texi: Likewise.
8211         * doc/glibc-functions/wcstoull_l.texi: Likewise.
8212
8213 2009-11-24  Bruno Haible  <bruno@clisp.org>
8214
8215         duplocale: Fix logic bug.
8216         * lib/duplocale.c: Don't include <langinfo.h>.
8217         (_NL_LOCALE_NAME): Remove macro.
8218         (rpl_duplocale): Use setlocale instead of nl_langinfo.
8219         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
8220
8221 2009-11-23  Jim Meyering  <meyering@redhat.com>
8222
8223         test-update-copyright: don't hard-code /usr/bin/perl
8224         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
8225         perl to print the current year.  Gilles Espinasse reported that
8226         the replaced use of perl was hard-coded as /usr/bin/perl.
8227
8228 2009-11-23  Bruno Haible  <bruno@clisp.org>
8229
8230         duplocale: Add support for glibc 2.3.x.
8231         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
8232
8233 2009-11-22  Bruno Haible  <bruno@clisp.org>
8234
8235         vasnprintf: Tiny optimization.
8236         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
8237         MacOS X.
8238
8239 2009-11-22  Bruno Haible  <bruno@clisp.org>
8240
8241         Tests for module 'duplocale'.
8242         * modules/duplocale-tests: New file.
8243         * tests/test-duplocale.c: New file.
8244
8245         New module 'duplocale'.
8246         * m4/duplocale.m4: New file.
8247         * lib/locale.in.h (duplocale): New declaration.
8248         * lib/duplocale.c: New file.
8249         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
8250         gl_LOCALE_H_DEFAULTS): New macros.
8251         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
8252         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
8253         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
8254         REPLACE_DUPLOCALE.
8255         * modules/duplocale: New file.
8256         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
8257
8258 2009-11-22  Bruno Haible  <bruno@clisp.org>
8259
8260         * modules/locale-tests (configure.ac): Test for newlocale function.
8261         * tests/test-locale.c: When the system has extended locale functions,
8262         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
8263
8264         locale: Make locale_t available when possible.
8265         * lib/locale.in.h: Include <xlocale.h> when it exists.
8266         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
8267         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
8268         * modules/locale (Depends-on): Add extensions.
8269         (Makefile.am): Also substitute HAVE_XLOCALE_H.
8270         * doc/posix-headers/locale.texi: Document the problem with locale_t.
8271
8272 2009-11-22  Bruno Haible  <bruno@clisp.org>
8273
8274         Add comments.
8275         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
8276         invocation.
8277         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
8278         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
8279         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8280
8281 2009-11-22  Bruno Haible  <bruno@clisp.org>
8282
8283         error: account for the possibility of freopen (stdout).
8284         * lib/error.c: Include <unistd.h>.
8285         (flush_stdout): New function, extracted from error and error_at_line.
8286         Determine stdout's fd dynamically.
8287         (error, error_at_line): Invoke flush_stdout.
8288         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
8289         * modules/error (Depends-on): Add unistd.
8290
8291 2009-11-22  Bruno Haible  <bruno@clisp.org>
8292
8293         diffseq: Add comment.
8294         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
8295
8296 2009-11-22  Jim Meyering  <meyering@redhat.com>
8297
8298         c-stack: avoid defining an unused static function
8299         * lib/c-stack.c (find_stack_direction): Do not define this function
8300         when it will not be used.
8301
8302         diffseq: avoid spurious gcc warnings
8303         * lib/diffseq.h (IF_LINT2): Define.
8304         (compareseq): Use it to initialize two members of "part".
8305         This avoids two used-uninitialized warnings.
8306
8307 2009-11-21  Jim Meyering  <meyering@redhat.com>
8308
8309         c-stack: avoid "ignoring return value of `write'" warning
8310         * lib/c-stack.c: Include "ignore-value.h".
8311         (die): Explicitly ignore each write return value.
8312         * modules/c-stack (Depends-on): Add ignore-value.
8313
8314 2009-11-21  Bruno Haible  <bruno@clisp.org>
8315
8316         diffseq: reduce scope of variable 'best'.
8317         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
8318         variable, earlier used for two different purposes.
8319
8320 2009-11-21  Jim Meyering  <meyering@redhat.com>
8321
8322         diffseq: remove useless assignment to "best"
8323         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
8324         assignment.  At that point "best" is already guaranteed to be zero.
8325
8326 2009-11-20  Eric Blake  <ebb9@byu.net>
8327
8328         build: mention ftp redirector in release announcements
8329         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
8330         values that used to come from cfg.mk; mention FTP redirect URL.
8331         * build-aux/announce-gen: Mention the mirror list.
8332         Suggested by Karl Berry.
8333
8334         nanosleep: improve port to mingw
8335         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
8336         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
8337         LIB_NANOSLEEP, but only when needed.
8338         * modules/select (Link): Document LIBSOCKET.
8339         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
8340         enough.
8341
8342         nanosleep: work around cygwin bug
8343         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
8344         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
8345         bug.
8346         (getnow): Delete, not needed.
8347         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
8348         LIB_CLOCK_GETTIME.
8349         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
8350         clock-time, gettime.
8351         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
8352         bug.
8353         * modules/nanosleep-tests: New test.
8354         * tests/test-nanosleep.c: New file.
8355
8356         sleep: work around cygwin bug
8357         * lib/sleep.c (rpl_sleep): Work around the bug.
8358         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
8359         (gl_PREREQ_SLEEP): Delete unused macro.
8360         * modules/sleep (Depends-on): Add verify.
8361         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8362         * modules/unistd (Makefile.am): Substitute witness.
8363         * lib/unistd.in.h (sleep): Update prototype.
8364         * doc/posix-functions/sleep.texi (sleep): Document the bug.
8365         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
8366         * modules/sleep-tests (Depends-on): Check for alarm.
8367
8368 2009-11-20  Jim Meyering  <meyering@redhat.com>
8369
8370         maint.mk: improve sc_prohibit_magic_number_exit
8371         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
8372         so it does not match uses like System.exit(1).
8373         Add comments showing how to correct all offenders.
8374
8375 2009-11-19  Eric Blake  <ebb9@byu.net>
8376
8377         xalloc-die-tests: add missing library
8378         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
8379
8380         test-xvasprintf: silence compiler warnings
8381         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
8382         empty string from gcc.
8383
8384 2009-11-19  Jim Meyering  <meyering@redhat.com>
8385
8386         xfreopen: new module, from coreutils
8387         * modules/xfreopen: New module.
8388         * lib/xfreopen.c: New file.
8389         * lib/xfreopen.h: New file.
8390         * MODULES.html.sh (File stream based Input/Output"): Add it.
8391
8392 2009-11-19  Eric Blake  <ebb9@byu.net>
8393
8394         manywarnings: depend on warnings
8395         * modules/manywarnings (Depends-on): Add warnings.
8396
8397         build: avoid compiler warnings
8398         * lib/select.c (rpl_select): Delete unused variable.
8399         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
8400
8401 2009-11-18  Eric Blake  <ebb9@byu.net>
8402
8403         tests: avoid false negative with --with-packager
8404         * tests/test-version-etc.sh: Discard packager information.
8405         * tests/test-argp-version-etc-1.sh: Likewise.
8406         Reported by Mike Frysinger.
8407
8408         utimens: fix regression on Solaris
8409         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
8410         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
8411         can only change fd timestamps via futimesat.  Instead, use an
8412         additional witness macro to avoid BSD bug.
8413         Reported by Jim Meyering.
8414
8415 2009-11-17  Eric Blake  <ebb9@byu.net>
8416
8417         usleep: use it to simplify tests
8418         * modules/stat-time-tests (Depends-on): Add usleep.
8419         (configure.ac): Drop usleep check.
8420         * modules/chown-tests (Depends-on, configure.ac): Likewise.
8421         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
8422         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
8423         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
8424         * modules/openat-tests (Depends-on, configure.ac): Likewise.
8425         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
8426         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
8427         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
8428         Likewise.
8429         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
8430         * tests/test-lchown.h (nap): Likewise.
8431         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
8432         * tests/test-stat-time.c (nap): Likewise.
8433         * tests/test-utimens-common.h (nap): Update comments.
8434
8435         usleep: new module
8436         * modules/usleep: New file.
8437         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
8438         * lib/usleep.c (usleep): Likewise.
8439         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
8440         * modules/unistd (Makefile.am): Substitute witnesses.
8441         * lib/unistd.in.h (usleep): Add declaration.
8442         * doc/pastposix-functions/usleep.texi (usleep): Document this.
8443         * MODULES.html.sh (Date and time): Likewise.
8444         * modules/usleep-tests (Depends-on): New test.
8445         * tests/test-usleep.c: New file.
8446
8447         chown: work around OpenBSD bug
8448         * lib/chown.c (rpl_chown): Work around the bug.
8449         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
8450         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
8451         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
8452         * modules/chown (Depends-on): Add stdbool.
8453         * modules/lchown (Depends-on): Likewise.
8454         * doc/posix-functions/chown.texi (chown): Document the bug.
8455         * doc/posix-functions/lchown.texi (lchown): Likewise.
8456         * tests/test-lchown.h (test_chown): Relax test.
8457
8458         mkstemp: avoid conflict with C++ keyword template
8459         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
8460         * lib/mkostemp.c (mkostemp): Likewise.
8461         * lib/mkostemps.c (mkostemps): Likewise.
8462         * lib/mkstemp.c (mkstemp): Likewise.
8463         * lib/mkstemps.c (mkstemps): Likewise.
8464
8465         xalloc-die-tests: optimize
8466         * tests/test-xalloc-die.sh: Reduce number of processes.
8467
8468 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8469
8470         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
8471         patch from ludo@gnu.org (Ludovic Courtès).
8472
8473 2009-11-17  Jim Meyering  <meyering@redhat.com>
8474
8475         version-etc: use proper license string
8476         * modules/version-etc (License): Use LGPL, not LGPLv3+.
8477         * modules/version-etc-fsf: Likewise.
8478
8479 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8480
8481         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
8482         printed to stdout.  Deal with EOL differences.
8483
8484 2009-11-17  Eric Blake  <ebb9@byu.net>
8485
8486         unsetenv: work around Solaris bug
8487         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
8488         * lib/unsetenv.c (rpl_unsetenv): Work around it.
8489         Reported by Jim Meyering.
8490
8491         vasnprintf: avoid compiler warnings
8492         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
8493         variables.
8494         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
8495
8496 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8497
8498         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
8499         settings since xalloc-die is no longer the self test,
8500         xalloc-die.sh is.
8501
8502 2009-11-17  Jim Meyering  <meyering@redhat.com>
8503
8504         test-xalloc-die.sh: make the code agree with the commit log
8505         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
8506         at the end, just in case you happen to have a test-xalloc-die
8507         program in some other PATH directory.
8508
8509         test-xalloc-die.sh: fix a portability bug
8510         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
8511         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
8512         Otherwise, argv[0] (as often seen in diagnostics) would be too
8513         system-dependent, sometimes with, and sometimes without the leading "./".
8514
8515         version-etc-fsf: relax license to LGPLv3+
8516         * modules/version-etc-fsf (License): Relax license.
8517
8518 2009-11-16  Eric Blake  <ebb9@byu.net>
8519
8520         xalloc-die-tests: avoid printing null pointer
8521         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
8522         shell script.
8523         * tests/test-xalloc-die.c (program_name): Declare.
8524         * tests/test-xalloc-die.sh (tmpfiles): New file.
8525
8526         setenv, unsetenv: work around various bugs
8527         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
8528         (setenv) [HAVE_SETENV]: Work around bugs.
8529         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
8530         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
8531         for bugs.
8532         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
8533         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
8534         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
8535         * modules/stdlib (Makefile.am): Update substitutions.
8536         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
8537         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
8538         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
8539         * modules/setenv-tests: New test.
8540         * modules/unsetenv-tests: Likewise.
8541         * tests/test-setenv.c: New file.
8542         * tests/test-unsetenv.c: Likewise.
8543
8544 2009-11-16  Jim Meyering  <meyering@redhat.com>
8545
8546         version-etc: relax license to LGPLv3+
8547         * modules/version-etc (License): Relax license.
8548
8549         better AC_REQUIRE expanded-before-required-warning avoidance
8550         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
8551         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
8552         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
8553         which is no longer needed.
8554
8555 2009-11-16  Eric Blake  <ebb9@byu.net>
8556
8557         test-freading: clean up temporary file
8558         * tests/test-freading.c (main): Remove file on success, and use
8559         ASSERT more liberally.
8560         Reported by Jim Meyering.
8561
8562 2009-11-16  Jim Meyering  <meyering@redhat.com>
8563
8564         avoid new AC_REQUIRE expanded-before-required warnings
8565         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
8566         merely using it.
8567         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
8568         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
8569
8570 2009-11-15  Simon Josefsson  <simon@josefsson.org>
8571
8572         * tests/test-xalloc-die.c: New file.
8573         * modules/xalloc-die-tests: New file.
8574         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
8575         XFAIL_TESTS so it can be appended by modules.
8576
8577 2009-11-15  Simon Josefsson  <simon@josefsson.org>
8578
8579         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
8580         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
8581
8582 2009-11-14  Eric Blake  <ebb9@byu.net>
8583
8584         fnmatch: avoid compiler warning
8585         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
8586         to silence compiler warning about mismatch signedness in ?:.
8587         Reported by Robert Millan.
8588
8589         intprops: add double-inclusion guard
8590         * lib/intprops.h: Allow idempotent includes.
8591         Suggested by Bruce Korb.
8592
8593         openat: detect Solaris fchownat bug
8594         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
8595         penalizing glibc chownat when only lchownat is broken.
8596         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
8597         trailing slash bugs.
8598         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
8599         * modules/openat-tests (Files): Include more files.
8600         (Depends-on): Add mgetgroups, sleep, stat-time.
8601         (configure.ac): Add additional checks.
8602         (Makefile.am): Build new test.
8603         * tests/test-fchownat.c: New file.
8604
8605         lchown: detect Solaris and FreeBSD bug
8606         * lib/lchown.c (rpl_lchown): Work around bug.
8607         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
8608         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
8609         * modules/unistd (Makefile.am): Populate it.
8610         * lib/unistd.in.h (lchown): Update declaration.
8611         * doc/posix-functions/lchown.texi (lchown): Document the bug.
8612         * modules/lchown-tests: New file.
8613         * tests/test-lchown.h (test_lchown): Likewise.
8614         * tests/test-lchown.c (main): Likewise.
8615
8616         chown: detect Solaris and FreeBSD bug
8617         * lib/chown.c (rpl_chown): Work around bug.
8618         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
8619         (gl_PREREQ_CHOWN): Delete.
8620         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
8621         * modules/unistd (Makefile.am): Populate it.
8622         * lib/unistd.in.h (chown): Update declaration.
8623         * lib/lchown.c (chown): Update client.
8624         * modules/lchown (Depends-on): Add lstat.
8625         * doc/posix-functions/chown.texi (chown): Document the bug.
8626         * doc/posix-functions/getgroups.texi (getgroups): Document
8627         getgroups pitfall.
8628         * modules/chown-tests: New file.
8629         * tests/test-chown.h (test_chown): Likewise.
8630         * tests/test-chown.c (main): Likewise.
8631
8632 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
8633
8634         gnulib-tool: correctly detect absence of m4 directories
8635         * gnulib-tool: Avoid extra newline on data passed to wc -l.
8636
8637 2009-11-14  Jim Meyering  <meyering@redhat.com>
8638
8639         maint.mk: Prohibit inclusion of "xalloc.h" without use.
8640         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8641
8642 2009-11-14  John W. Eaton  <jwe@gnu.org>
8643
8644         strftime.h: wrap funtion declaration in extern "C" block
8645         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
8646
8647 2009-11-13  Eric Blake  <ebb9@byu.net>
8648
8649         getgroups: avoid compiler warning
8650         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
8651
8652         getgroups: work around FreeBSD bug
8653         * lib/getgroups.c (rpl_getgroups): Work around the bug.
8654         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
8655         * doc/posix-functions/getgroups.texi (getgroups): Document it.
8656         * tests/test-getgroups.c (main): Fix buffer overrun.
8657
8658         getgroups: avoid compilation failure
8659         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
8660         * modules/getgroups (Depends-on): Add stdint.
8661
8662 2009-11-13  Jim Meyering  <meyering@redhat.com>
8663
8664         test-getgroups: avoid compilation failure
8665         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
8666
8667 2009-11-13  Eric Blake  <ebb9@byu.net>
8668
8669         mgetgroups: new module, taken from coreutils
8670         * modules/mgetgroups: New file.
8671         * lib/mgetgroups.h: Likewise.
8672         * lib/mgetgroups.c (mgetgroups): Likewise.
8673         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
8674         * MODULES.html.sh (Users and groups): Mention it.
8675
8676         getgroups: don't expose GETGROUPS_T to user
8677         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
8678         an element at a time if GETGROUPS_T is wrong size.
8679         * lib/getugroups.h (getugroups): Change signature.
8680         * lib/unistd.in.h (getgroups): Likewise.
8681         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
8682         signature needs fixing.
8683         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
8684         AC_TYPE_GETGROUPS.
8685         * modules/group-member (Depends-on): Add getgroups.
8686         * lib/group-member.c (group_info, get_group_info): Use gid_t.
8687         (group_member): Rely on getgroups replacement.
8688         * lib/getugroups.c (getugroups): Use gid_t.
8689         * tests/test-getgroups.c (main): Likewise.
8690         * NEWS: Mention the signature change.
8691         * doc/posix-functions/getgroups.texi (getgroups): Mention the
8692         problem with signature.
8693         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
8694         GETGROUPS_T is still useful for setgroups.
8695
8696         getgroups, getugroups: provide stubs for mingw
8697         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
8698         * lib/getugroups.c (getugroups): Likewise.
8699         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
8700         function.  Modernize replacement scheme.
8701         (gl_PREREQ_GETGROUPS): Delete.
8702         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
8703         * modules/getgroups (configure.ac): Declare witness.
8704         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8705         * modules/unistd (Depends-on): Substitute witness.
8706         * lib/unistd.in.h (getgroups): Declare replacement.
8707
8708         getgroups: avoid calling exit
8709         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
8710         drop xalloc.
8711         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
8712         dependencies.
8713         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
8714         exiting, in the rare case of malloc failure.
8715
8716         getgroups: fix logic error
8717         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
8718         has more than 20 groups.
8719         * modules/getgroups-tests: New test.
8720         * tests/test-getgroups.c: New file.
8721
8722 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8723
8724         * tests/test-base64.c: Improve.
8725
8726 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8727
8728         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
8729         Blake <ebb9@byu.net>.
8730
8731 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8732
8733         * tests/test-xvasprintf.c: Add %s%s related checks.
8734
8735 2009-11-12  Eric Blake  <ebb9@byu.net>
8736
8737         version-etc: match standards.texi style
8738         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
8739         and use <> only for URLs.
8740
8741 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
8742
8743         fts: do not fail on a submount during traversal
8744         * lib/fts.c (fts_build): Read the stat info again after opening
8745         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
8746         Original report at http://bugzilla.redhat.com/501848.
8747
8748 2009-11-12  Jim Meyering  <meyering@redhat.com>
8749
8750         bootstrap: sync from coreutils
8751         * build-aux/bootstrap (bootstrap_epilogue): New function.
8752         Use git_modules_config in one more place.  This make bootstrap's
8753         --gnulib-srcdir option more useful for testing.
8754
8755         bootstrap: generalize autoheader check
8756         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
8757         AC_CONFIG_HEADERS.
8758
8759 2009-11-11  Eric Blake  <ebb9@byu.net>
8760
8761         mkfifoat: use new modules for Solaris and BSD bugs
8762         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
8763         * lib/mkfifoat.c (mknodat): Split...
8764         * lib/mknodat.c (mknodat): ...into new file.
8765         * modules/mkfifoat (Files): Ship new file.
8766         (Depends-on): Add mkfifo, mknod.
8767         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
8768         (Depends-on): Add symlink.
8769         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
8770         redundant with test_mkfifo.h.
8771         (do_mkfifoat, do_mknodat): New helpers.
8772
8773         mknod: new module
8774         * modules/mknod: New file.
8775         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
8776         * lib/mknod.c (mknod): Likewise.
8777         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8778         defaults.
8779         * modules/sys_stat (Makefile.am): Substitute them.
8780         * lib/sys_stat.in.h (mknod): Declare replacement.
8781         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8782         Document it.
8783         * doc/posix-functions/mknod.texi (mknod): Likewise.
8784         * modules/mknod-tests: New test.
8785         * tests/test-mknod.c: Likewise.
8786
8787         mkfifo: new module
8788         * modules/mkfifo: New file.
8789         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
8790         * lib/mkfifo.c (mkfifo): Likewise.
8791         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8792         defaults.
8793         * modules/sys_stat (Makefile.am): Substitute them.
8794         * lib/sys_stat.in.h (mkfifo): Declare replacement.
8795         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8796         Document it.
8797         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
8798         * modules/mkfifo-tests: New test.
8799         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
8800         from test-mkfifoat.c.
8801         * tests/test-mkfifo.c: New file.
8802
8803         readlink: detect FreeBSD bug
8804         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
8805         slash on symlink.
8806         * doc/posix-functions/readlink.texi (readlink): Document the bug.
8807         * tests/test-readlink.h (test_readlink): Enhance test.
8808
8809         symlink: detect FreeBSD bug
8810         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
8811         slash on symlink.
8812         * doc/posix-functions/symlink.texi (symlink): Document the bug.
8813         * tests/test-symlink.h (test_symlink): Enhance test.
8814
8815 2009-11-10  Eric Blake  <ebb9@byu.net>
8816
8817         link: detect FreeBSD bug
8818         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
8819         symlink.
8820         * doc/posix-functions/link.texi (link): Document the bug.
8821         * tests/test-link.h (test_link): Enhance test.
8822         * tests/test-linkat.c (main): Update caller.
8823
8824         unlink, remove: detect FreeBSD bug
8825         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
8826         slash on symlink.
8827         * doc/posix-functions/unlink.texi (unlink): Document the bug.
8828         * doc/posix-functions/remove.texi (remove): Likewise.
8829         * tests/test-unlink.h (test_unlink): Enhance test.
8830         * tests/test-remove.c (main): Likewise.
8831
8832 2009-11-09  Eric Blake  <ebb9@byu.net>
8833
8834         rename: detect FreeBSD bug
8835         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
8836         slash on symlink.
8837         * modules/renameat-tests (Depends-on): Add filenamecat.
8838         * tests/test-rename.h (test_rename): Allow one more errno.
8839         * tests/test-renameat.c (main): Likewise.
8840         * doc/posix-functions/rename.texi (rename): Document the bug.
8841
8842         open: detect FreeBSD bug
8843         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
8844         symlink.
8845         * doc/posix-functions/open.texi (open): Document the bug.
8846         * doc/posix-functions/utimes.texi (utimes): Likewise.
8847         * tests/test-open.h (test_open): Add parameters, and test symlink
8848         handling.
8849         * tests/test-open.c (main): Adjust caller.
8850         * tests/test-fcntl-safer.c (main): Likewise.
8851         * modules/open-tests (Depends-on): Add stdbool, symlink.
8852         * modules/fcntl-safer-tests (Depends-on): Likewise.
8853         * tests/test-openat.c (main): Add test-open tests.
8854
8855         stat: detect FreeBSD bug
8856         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
8857         symlink.
8858         * doc/posix-functions/stat.texi (stat): Document the bug.
8859         * tests/test-stat.h (test_stat_func): Add argument.
8860         * tests/test-stat.c (main): Adjust caller.
8861         * tests/test-fstatat.c (main): Likewise.
8862         * modules/stat-tests (Depends-on): Add stdbool, symlink.
8863         Reported by Jim Meyering.
8864
8865 2009-11-09  James Youngman  <jay@gnu.org>
8866
8867         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
8868         * lib/strftime.c: Correct placement of #include "ignore-value.h".
8869
8870 2009-11-08  Jim Meyering  <meyering@redhat.com>
8871
8872         utimens: remove invalid futimesat call
8873         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
8874         It used the file descriptor of the target file as the DIR_FD
8875         parameter and NULL as the file name.  That caused failure with
8876         errno == EFAULT on FreeBSD-8.0-rc2
8877
8878 2009-11-07  Eric Blake  <ebb9@byu.net>
8879
8880         fflush, freadseek: use fseeko, not fseek
8881         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
8882         (clear_ungetc_buffer): Avoid potential problems on large files.
8883         * lib/freadseek.c (freadseek): Likewise.
8884         * modules/freadseek (Depends-on): Add fseeko.
8885         * modules/fseek (configure.ac): Set a witness.
8886         * tests/test-fflush.c (main): Use fseeko.
8887         * tests/test-fpurge.c (fseek): Disable link warning.
8888         * tests/test-freadable.c (fseek): Likewise.
8889         * tests/test-freading.c (fseek): Likewise.
8890         * tests/test-fseeko.c (fseek): Likewise.
8891         * tests/test-ftell.c (fseek): Likewise.
8892         * tests/test-ftello.c (fseek): Likewise.
8893         * tests/test-fwritable.c (fseek): Likewise.
8894         * tests/test-fwriting.c (fseek): Likewise.
8895
8896 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8897
8898         * modules/memchr (Depends-on): Drop getpagesize dependency.
8899
8900 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8901
8902         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
8903         Reported by Ludovic Courtès.
8904         * build-aux/pmccabe2html: Improve example usage.
8905         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
8906
8907 2009-11-06  Jim Meyering  <meyering@redhat.com>
8908
8909         do-release-commit-and-tag: New module.
8910         Automate the release-commit and tag process.
8911         * build-aux/do-release-commit-and-tag: New script, from coreutils.
8912         * modules/do-release-commit-and-tag: New file.
8913         * MODULES.html.sh (Support for maintaining and releasing): Add it.
8914
8915 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8916
8917         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
8918         because test-select.c uses inet_pton.
8919
8920 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8921
8922         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
8923         GETADDRINFO_LIB.  Bump serial number.
8924         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
8925         Suggested by Eric Blake <ebb9@byu.net>.
8926
8927 2009-11-05  Eric Blake  <ebb9@byu.net>
8928
8929         strtod: detect darwin bug
8930         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
8931         Reported by Leo Davis.
8932
8933         freopen-safer: new module
8934         * modules/freopen-safer: New module.
8935         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
8936         * lib/freopen-safer.c (freopen_safer): New file.
8937         * lib/stdio-safer.h (freopen_safer): New declaration.
8938         * lib/stdio--.h (freopen): New override.
8939         * MODULES.html.sh (File stream based Input/Output): Mention it.
8940         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
8941         freopen-safer module.
8942         * doc/posix-functions/stderr.texi (stderr): Likewise.
8943         * doc/posix-functions/stdin.texi (stdin): Likewise.
8944         * doc/posix-functions/stdout.texi (stdout): Likewise.
8945         * modules/freopen-safer-tests: New test.
8946         * tests/test-reopen-safer.c: New file.
8947
8948 2009-11-05  Jim Meyering  <meyering@redhat.com>
8949
8950         maint.mk: Prohibit inclusion of "close-stream.h" without use.
8951         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8952
8953 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8954
8955         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
8956
8957 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8958
8959         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
8960
8961 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8962
8963         Fix link error.
8964         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8965         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8966
8967 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8968
8969         * tests/test-func.c: Also test value of __func__.
8970
8971 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8972
8973         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
8974         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
8975
8976 2009-11-05  Bruno Haible  <bruno@clisp.org>
8977
8978         Fix link error.
8979         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8980         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8981         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
8982
8983 2009-11-05  Bruno Haible  <bruno@clisp.org>
8984
8985         Tests for module 'inet_pton'.
8986         * modules/inet_pton-tests: New file.
8987         * tests/test-inet_pton.c: New file.
8988
8989 2009-11-05  Bruno Haible  <bruno@clisp.org>
8990
8991         Tests for module 'inet_ntop'.
8992         * modules/inet_ntop-tests: New file.
8993         * tests/test-inet_ntop.c: New file.
8994
8995 2009-11-04  Eric Blake  <ebb9@byu.net>
8996
8997         stdlib-safer: wrap all mkstemp variants
8998         * modules/mkostemp (configure.ac): Set witness.
8999         * modules/mkostemps (configure.ac): Likewise.
9000         * modules/mkstemps (configure.ac): Likewise.
9001         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
9002         (mkstemps_safer): Wrap more functions.
9003         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
9004         wrapping.
9005         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
9006         (mkstemps_safer): Implement the wrappers.
9007
9008         mkstemps, mkostemps: new modules
9009         * modules/mkostemps: New module.
9010         * modules/mkstemps: Likewise.
9011         * lib/mkostemps.c (mkostemps): New file.
9012         * lib/mkstemps.c (mkstemps): Likewise.
9013         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
9014         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
9015         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
9016         * modules/stdlib (Makefile.am): Substitute them.
9017         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
9018         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
9019         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
9020         * doc/gnulib.texi (Glibc stdlib.h): Include them.
9021         * MODULES.html.sh (File system functions): Mention them.
9022
9023         tempname: resync from glibc
9024         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
9025         same values for __GT_FILE as glibc.  Abort even when assertions
9026         are disabled.
9027         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
9028         match its value otherwise.  Allow idempotent inclusion.
9029         * lib/mkdtemp.c (mkdtemp): Adjust caller.
9030         * lib/mkostemp.c (mkostemp): Likewise.
9031         * lib/mkstemp.c (mkstemp): Likewise.
9032         * lib/tmpfile.c (tmpfile): Likewise.
9033         * NEWS: Document this.
9034
9035         utimens: fix use of futimens on older Linux
9036         * lib/utimens.c (fdutimens): Use updated, rather than original,
9037         timespec to avoid bug in older Linux kernel.
9038         Reported by Simon Josefsson.
9039
9040 2009-11-04  Bruno Haible  <bruno@clisp.org>
9041
9042         Make num_processors more flexible and consistent.
9043         * lib/nproc.h (enum nproc_query): New type.
9044         (num_processors): Add a 'query' argument.
9045         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
9046         (num_processors): Add a 'query' argument. Test the value of the
9047         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
9048         mingw, count the number of CPUs available for the current process.
9049         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
9050         Check for sched_getaffinity and sched_getaffinity_np.
9051         * modules/nproc (Depends-on): Add c-ctype, extensions.
9052         * NEWS: Mention the change.
9053
9054 2009-11-03  Bruno Haible  <bruno@clisp.org>
9055
9056         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
9057
9058 2009-11-03  Jim Meyering  <meyering@redhat.com>
9059
9060         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
9061         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
9062         if it is defined.
9063
9064 2009-11-02  Eric Blake  <ebb9@byu.net>
9065
9066         mktime, timegm: share common declaration
9067         * lib/mktime-internal.h: New file.
9068         * lib/mktime.c: Use it rather than open-coding a declaration.
9069         * lib/timegm.c: Likewise.
9070         * modules/mktime (Files): Ship it.
9071         * modules/timegm (Files): Likewise.
9072         Suggested by Bruno Haible.
9073
9074         test-update-copyright: update test to match script changes
9075         * tests/test-update-copyright.sh: Avoid hard-coding perl
9076         location.  Don't update *.bak created by earlier runs.
9077
9078 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
9079             Simon Josefsson  <simon@josefsson.org>
9080             Bruno Haible  <bruno@clisp.org>
9081
9082         Fix link error on Solaris 8.
9083         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
9084         also in libnsl. Define also INET_PTON_LIB.
9085         * modules/inet_pton (Link): New section.
9086
9087 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9088             Bruno Haible  <bruno@clisp.org>
9089
9090         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
9091         * modules/inet_ntop (Link): New section.
9092         Reported by Boyan Kasarov <bkasarov@gmail.com>.
9093
9094 2009-11-02  Eric Blake  <ebb9@byu.net>
9095
9096         maint: avoid compiler warnings in m4 macros
9097         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
9098         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
9099
9100 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9101
9102         * m4/pmccabe2html.m4: Remove file.
9103         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
9104         function.  Change maintainer.
9105         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
9106         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
9107         Courtès).
9108
9109 2009-10-31  Eric Blake  <ebb9@byu.net>
9110
9111         fseeko: fix m4 regression
9112         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
9113         regression from 2009-10-27.
9114         Reported by Ralf Wildenhues.
9115
9116 2009-10-31  Jim Meyering  <meyering@redhat.com>
9117
9118         inttostr: aesthetics and improved (compile-time) safety
9119         Define inttype_is_signed rather than inttype_is_unsigned,
9120         since the sole use is via "#if inttype_is_signed".
9121         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
9122         inttype_is_unsigned.
9123         * lib/offtostr.c (inttype_is_signed): Likewise.
9124         * lib/uinttostr.c (inttype_is_signed): Likewise.
9125         * lib/umaxtostr.c (inttype_is_signed): Likewise.
9126         * lib/inttostr.c (inttostr): Use verify to cross-check the
9127         inttype_is_signed value and the signedness of the actual type.
9128         * modules/inttostr (Depends-on): Add verify.
9129
9130 2009-10-30  Eric Blake  <ebb9@byu.net>
9131
9132         build: avoid compiler warnings
9133         * lib/fchmodat.c (lchmod): Mark unused variables.
9134         * lib/getopt.c (_getopt_initialize): Likewise.
9135         * lib/mktime.c (__mktime_internal): Provide prototype.
9136         * lib/inttostr.c (inttostr): Avoid compiler warning even with
9137         older gcc that do not understand #pragma GCC diagnostic.
9138         * lib/uinttostr.c (inttype_is_unsigned): Define.
9139         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
9140
9141 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
9142
9143         stat: fix compilation on AIX
9144         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
9145         only see struct stat64.
9146
9147 2009-10-30  Eric Blake  <ebb9@byu.net>
9148
9149         exclude: make more robust
9150         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
9151         rather than masking a coding bug.
9152         Suggested by Bruno Haible.
9153
9154 2009-10-30  Jim Meyering  <meyering@redhat.com>
9155
9156         perl scripts: remove #!/usr/bin/perl in favor of more portable...
9157         Rather than putting #!/usr/bin/perl on the first line,
9158         start with a variant of what's recommended by "man perlrun" that
9159         invokes the first "perl" program from your shell's search path.
9160         * build-aux/gitlog-to-changelog: Replace #!... as above.
9161         Add a "Local Variables" perl mode setting.
9162         Prompted by a patch from Ludovic Courtès.
9163         Improved by Eric Blake.
9164         * build-aux/useless-if-before-free: Likewise.
9165         * build-aux/announce-gen: Likewise.
9166         * build-aux/update-copyright: Likewise.
9167
9168 2009-10-29  Eric Blake  <ebb9@byu.net>
9169
9170         filenamecat-lgpl: adjust clients
9171         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
9172         filenamecat.
9173         * modules/renameat (Depends-on): Likewise.
9174
9175         filenamecat: split into filenamecat-lgpl
9176         * modules/filenamecat-lgpl: New module.
9177         * modules/filenamecat (Files): Move library-safe files into
9178         filenamecat-lgpl.
9179         (Depends-on): Add filenamecat-lgpl.
9180         (configure.ac): Declare witness.
9181         * lib/filenamecat.h (file_name_concat): Only declare when using
9182         GPL module.
9183         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
9184         Move...
9185         * lib/filenamecat-lgpl.c: ...into new file.
9186         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
9187         (gl_FILE_NAME_CONCAT): Use it.
9188         * MODULES.html.sh (File system functions): Mention new module.
9189
9190         argp: avoid memory leak
9191         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
9192         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
9193         base_name, since the latter malloc()s and can call exit().
9194         Leak introduced 2006-07-03.
9195
9196         dirname-lgpl: adjust clients that don't need full dirname
9197         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
9198         * modules/filenamecat (Depends-on): Likewise.
9199         * modules/linkat (Depends-on): Likewise.
9200         * modules/mkancesdirs (Depends-on): Likewise.
9201         * modules/mkdir (Depends-on): Likewise.
9202         * modules/openat (Depends-on): Likewise.
9203         * modules/savewd (Depends-on): Likewise.
9204         * modules/rename (Depends-on): Likewise.
9205         (License): Relax license.
9206         * modules/mkdir-tests (Depends-on): Drop progname.
9207         (Makefile.am): Delete unneeded LDADD.
9208         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
9209
9210         dirname: split into dirname-lgpl
9211         * modules/dirname-lgpl: New module.
9212         * modules/dirname (Files): Move library-safe files into
9213         dirname-lgpl.
9214         (Depends-on): Add dirname-lgpl.
9215         (configure.ac): Declare witness.
9216         * modules/double-slash-root (License): Relax license.
9217         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
9218         module.
9219         * lib/dirname.c (dir_len, mdir_name): Move...
9220         * lib/dirname-lgpl.c: ...into new file.
9221         * lib/basename.c (last_component, base_len): Move...
9222         * lib/basename-lgpl.c: ...into new file.
9223         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
9224         (gl_DIRNAME): Use it.
9225         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
9226         Mention new module.
9227         * modules/dirname-tests (Depends-on): Add progname.
9228         * tests/test-dirname.c (program_name): Delete.
9229
9230         mkdir: make safe for libraries
9231         * modules/mkdir (Depends-on): Drop xalloc.
9232         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
9233         exit.
9234
9235         tests: avoid some compiler warnings
9236         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
9237         literals.
9238         * tests/test-memchr.c (main): Avoid type mismatch.
9239         * tests/test-arpa_inet.c (main): Avoid unused parameters.
9240         * tests/test-base64.c (main): Likewise.
9241         * tests/test-getdelim.c (main): Likewise.
9242         * tests/test-gethostname.c (main): Likewise.
9243         * tests/test-getline.c (main): Likewise.
9244         * tests/test-netinet_in.c (main): Likewise.
9245         * tests/test-select.c (open_server_socket, main): Likewise.
9246         * tests/test-select-stdin.c (main): Likewise.
9247         * tests/test-sockets.c (main): Likewise.
9248         * tests/test-strsignal.c (main): Likewise.
9249         * tests/test-sys_select.c (main): Likewise.
9250         * tests/test-sys_socket.c (main): Likewise.
9251         * tests/test-u64.c (main): Likewise.
9252         * tests/test-xfprintf-posix.c (main): Likewise.
9253         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
9254
9255         sockets: avoid compiler warning
9256         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
9257
9258         maint: detect usage(1) and other suspicious exits
9259         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
9260
9261 2009-10-29  Jim Meyering  <meyering@redhat.com>
9262
9263         timespec: long-to-int truncation could make timespec_cmp malfunction
9264         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
9265         a multiple of 2^32 nanoseconds as no difference.
9266
9267 2009-10-28  Jim Meyering  <meyering@redhat.com>
9268
9269         fprintftime: wrap macro code argument in "do {...} while(0)"
9270         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
9271         cpy macro must be a statement that can be followed by a semicolon.
9272         Now that the else clause contains a comment and is hence longer
9273         than one line, I require curly braces.  That in turn requires
9274         that we wrap this code block in the standard do...while(0).
9275
9276         fprintftime: remove stray semicolon from previous change
9277         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
9278
9279         fprintftime: avoid a warning about ignored fwrite return value
9280         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
9281         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
9282         that is unsafe.
9283         * modules/fprintftime (Depends-on): Add ignore-value.
9284
9285         exclude: avoid an unwarranted warning
9286         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
9287
9288 2009-10-27  Eric Blake  <ebb9@byu.net>
9289
9290         fseek: avoid compilation failure when fflush is replaced
9291         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
9292         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
9293         module is in use.
9294         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
9295         module is not in use; since REPLACE_FSEEK worked otherwise.
9296         (GNULIB_FTELLO): Likewise for ftell.
9297         Reported by Ian Beckwith and others.
9298
9299 2009-10-27  Bruno Haible  <bruno@clisp.org>
9300
9301         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
9302         Reported by Jim Meyering.
9303
9304 2009-10-27  Jim Meyering  <jim@meyering.net>
9305             Bruno Haible  <bruno@clisp.org>
9306
9307         Avoid warning despite dropping the return value of fwrite.
9308         * lib/unicodeio.c: Include ignore-value.h.
9309         (fwrite_success_callback): Explicitly ignore fwrite's return value.
9310         * modules/unicodeio (Depends-on): Add ignore-value.
9311
9312 2009-10-26  Eric Blake  <ebb9@byu.net>
9313
9314         areadlinkat: fix fallback path
9315         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
9316         pointer and zero.
9317
9318 2009-10-22  Pádraig Brady  <P@draigBrady.com>
9319
9320         Use a better IO block size for modern systems
9321         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
9322         * lib/md2.c: Likewise.
9323         * lib/md4.c: Likewise.
9324         * lib/md5.c: Likewise.
9325         * lib/sha1.c: Likewise.
9326         * lib/sha256.c: Likewise.
9327         * lib/sha512.c: Likewise.
9328
9329 2009-10-22  Eric Blake  <ebb9@byu.net>
9330
9331         tests: avoid several compiler warnings
9332         * tests/test-getcwd.c (main): Avoid buffer underflow.
9333         * tests/test-getdate.c (main): String literals are not safe with
9334         putenv, so use setenv.  Declare unused argument.
9335         * modules/getdate-tests (Depends-on): Add setenv.
9336         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
9337         problems with string literals in char *.
9338         * tests/test-hash.c (main): Avoid shadowing declaration.
9339         (insert_new): Treat string literals as char const *.
9340         * tests/test-getopt.h (test_getopt): Likewise.
9341         (getopt_loop): Alter types to minimize casting elsewhere.
9342         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
9343         (test_getopt_long_posix): Likewise.
9344         (do_getopt_long): Add wrapper to minimize casting.
9345         * tests/test-atexit.c (clear_temp_file): Use void.
9346         * tests/test-areadlink-with-size.c (main): Declare unused
9347         arguments.
9348         * tests/test-areadlink.c (main): Likewise.
9349         * tests/test-areadlinkat-with-size.c (main): Likewise.
9350         * tests/test-areadlinkat.c (main): Likewise.
9351         * tests/test-canonicalize-lgpl.c (main): Likewise.
9352         * tests/test-canonicalize.c (main): Likewise.
9353         * tests/test-dirent-safer.c (main): Likewise.
9354         * tests/test-dirname.c (main): Likewise.
9355         * tests/test-dup2.c (main): Likewise.
9356         * tests/test-fchdir.c (main): Likewise.
9357         * tests/test-fcntl-h.c (main): Likewise.
9358         * tests/test-fcntl-safer.c (main): Likewise.
9359         * tests/test-fdopendir.c (main): Likewise.
9360         * tests/test-fdutimensat.c (main): Likewise.
9361         * tests/test-fflush.c (main): Likewise.
9362         * tests/test-filenamecat.c (main): Likewise.
9363         * tests/test-filevercmp.c (main): Likewise.
9364         * tests/test-fopen-safer.c (main): Likewise.
9365         * tests/test-fopen.c (main): Likewise.
9366         * tests/test-fpending.c (main): Likewise.
9367         * tests/test-fpurge.c (main): Likewise.
9368         * tests/test-freading.c (main): Likewise.
9369         * tests/test-fstatat.c (main): Likewise.
9370         * tests/test-fsync.c (main): Likewise.
9371         * tests/test-futimens.c (main): Likewise.
9372         * tests/test-getndelim2.c (main): Likewise.
9373         * tests/test-gettimeofday.c (main): Likewise.
9374         * tests/test-getopt.c (main): Likewise.
9375         * tests/test-i-ring.c (main): Likewise.
9376         * tests/test-inttypes.c (main): Likewise.
9377         * tests/test-link.c (main): Likewise.
9378         * tests/test-lstat.c (main): Likewise.
9379         * tests/test-math.c (main): Likewise.
9380         * tests/test-md5.c (main): Likewise.
9381         * tests/test-memchr2.c (main): Likewise.
9382         * tests/test-memrchr.c (main): Likewise.
9383         * tests/test-mkdir.c (main): Likewise.
9384         * tests/test-mkdirat.c (main): Likewise.
9385         * tests/test-mkfifoat.c (main): Likewise.
9386         * tests/test-open.c (main): Likewise.
9387         * tests/test-openat-safer.c (main): Likewise.
9388         * tests/test-openat.c (main): Likewise.
9389         * tests/test-quotearg.c (main): Likewise.
9390         * tests/test-rawmemchr.c (main): Likewise.
9391         * tests/test-readlink.c (main): Likewise.
9392         * tests/test-remove.c (main): Likewise.
9393         * tests/test-rename.c (main): Likewise.
9394         * tests/test-renameat.c (main): Likewise.
9395         * tests/test-rmdir.c (main): Likewise.
9396         * tests/test-sha1.c (main): Likewise.
9397         * tests/test-signal.c (main): Likewise.
9398         * tests/test-sigaction.c (main): Likewise.
9399         * tests/test-stat.c (main): Likewise.
9400         * tests/test-stat-time.c (main): Likewise.
9401         * tests/test-stddef.c (main): Likewise.
9402         * tests/test-stdint.c (main): Likewise.
9403         * tests/test-stdio.c (main): Likewise.
9404         * tests/test-stdlib.c (main): Likewise.
9405         * tests/test-strchrnul.c (main): Likewise.
9406         * tests/test-strerror.c (main): Likewise.
9407         * tests/test-string.c (main): Likewise.
9408         * tests/test-strtod.c (main): Likewise.
9409         * tests/test-strverscmp.c (main): Likewise.
9410         * tests/test-symlink.c (main): Likewise.
9411         * tests/test-symlinkat.c (main): Likewise.
9412         * tests/test-sys_stat.c (main): Likewise.
9413         * tests/test-sys_time.c (main): Likewise.
9414         * tests/test-time.c (main): Likewise.
9415         * tests/test-unistd.c (main): Likewise.
9416         * tests/test-unlink.c (main): Likewise.
9417         * tests/test-unlinkat.c (main): Likewise.
9418         * tests/test-utimens.c (main): Likewise.
9419         * tests/test-utimensat.c (main): Likewise.
9420         * tests/test-version-etc.c (main): Likewise.
9421         * tests/test-wchar.c (main): Likewise.
9422         * tests/test-wctype.c (main): Likewise.
9423         * tests/test-xprintf-posix.c (main): Likewise.
9424         * tests/test-posixtm.c (main): Likewise.
9425         (STREQ): Delete unused macro.
9426         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
9427         shadowed variables.
9428         * tests/test-memchr.c (main): Likewise.
9429
9430 2009-10-21  Eric Blake  <ebb9@byu.net>
9431
9432         areadlinkat: avoid failure on older glibc
9433         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
9434         rather than mis-comparing 0 against FUNC_RESULT of char*.
9435
9436 2009-10-21  Bruno Haible  <bruno@clisp.org>
9437
9438         * modules/stpncpy (License): Relicense under LGPLv2+.
9439         Reported by David Lutterkort <lutter@redhat.com>.
9440
9441 2009-10-20  Eric Blake  <ebb9@byu.net>
9442
9443         utimensat: work around Solaris 9 bug
9444         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
9445         has trailing slash bugs.
9446         * tests/test-lutimens.h (test_lutimens): Enhance test.
9447         * tests/test-utimens.h (test_utimens): Likewise.
9448         * doc/posix-functions/utime.texi (utime): Enhance documentation.
9449         * doc/posix-functions/utimes.texi (utimes): Likewise.
9450         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9451         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
9452         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
9453         * doc/posix-functions/futimens.texi (futimens): Likewise.
9454
9455         fdutimensat: new module
9456         * modules/fdutimensat: New file.
9457         * lib/fdutimensat.c (fdutimensat): Likewise.
9458         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
9459         * MODULES.html.sh (File system functions): Mention module.
9460         * modules/fdutimensat-tests: New test.
9461         * tests/test-fdutimensat.c: Likewise.
9462
9463         doc: regenerate INSTALL
9464         * doc/INSTALL: Reflect recent autoconf update.
9465         * doc/INSTALL.ISO: Likewise.
9466         * doc/INSTALL.UTF-8: Likewise.
9467
9468 2009-10-20  Pádraig Brady  <P@draigBrady.com>
9469
9470         acl: warn if ACL support is not detected
9471         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
9472
9473 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
9474
9475         * lib/nproc.h: Add extern "C" block for C++.
9476
9477 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
9478             Bruno Haible  <bruno@clisp.org>
9479
9480         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
9481         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
9482         * doc/posix-functions/isalpha.texi: Likewise.
9483         * doc/posix-functions/isblank.texi: Likewise.
9484         * doc/posix-functions/iscntrl.texi: Likewise.
9485         * doc/posix-functions/isdigit.texi: Likewise.
9486         * doc/posix-functions/isgraph.texi: Likewise.
9487         * doc/posix-functions/islower.texi: Likewise.
9488         * doc/posix-functions/isprint.texi: Likewise.
9489         * doc/posix-functions/ispunct.texi: Likewise.
9490         * doc/posix-functions/isspace.texi: Likewise.
9491         * doc/posix-functions/isupper.texi: Likewise.
9492         * doc/posix-functions/isxdigit.texi: Likewise.
9493
9494 2009-10-18  Bruno Haible  <bruno@clisp.org>
9495
9496         Tests for module 'isblank'.
9497         * modules/isblank-tests: New file.
9498         * tests/test-isblank.c: New file.
9499
9500         New module 'isblank'.
9501         * lib/isblank.c: New file.
9502         * m4/isblank.m4: New file.
9503         * modules/isblank: New file.
9504         * doc/posix-functions/isblank.texi: Mention the new module.
9505
9506 2009-10-18  Bruno Haible  <bruno@clisp.org>
9507
9508         New module 'ctype'.
9509         * lib/ctype.in.h: New file.
9510         * m4/ctype.m4: New file.
9511         * modules/ctype: New file.
9512         * doc/posix-headers/ctype.texi: Mention the new module.
9513
9514 2009-10-18  Jim Meyering  <meyering@redhat.com>
9515
9516         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
9517         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
9518         right after its initialization, rather than farther down.
9519         Keeping these in close proximity makes it easier to ensure
9520         that each such variable is initialized.  E.g.,
9521
9522             LIB_CLOCK_GETTIME=
9523             AC_SUBST([LIB_CLOCK_GETTIME])
9524
9525         This change also increments these serial numbers.
9526         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
9527         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
9528         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9529
9530 2009-10-18  Bruno Haible  <bruno@clisp.org>
9531
9532         Don't let environment variables perturb build.
9533         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
9534         (gl_PREREQ_GETHRXTIME): ... not here.
9535
9536 2009-10-18  Bruno Haible  <bruno@clisp.org>
9537
9538         Avoid symlink attack in localcharset module.
9539         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
9540         (O_NOFOLLOW): Define fallback.
9541         (get_charset_aliases): Don't open the file if it is a symbolic link.
9542         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
9543         gl_FCNTL_H.
9544         (gl_FCNTL_H): Require it.
9545         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
9546         * modules/localcharset (Files): Add m4/fcntl_h.m4.
9547         Reported by Fergal Glynn <fglynn@veracode.com>.
9548
9549 2009-10-18  Bruno Haible  <bruno@clisp.org>
9550
9551         Implement nproc for mingw.
9552         * lib/nproc.c: Include <windows.h>
9553         (num_processors): On native Windows platforms, try GetSystemInfo.
9554
9555 2009-10-18  Bruno Haible  <bruno@clisp.org>
9556
9557         Implement nproc for IRIX.
9558         * lib/nproc.c: Include <sys/sysmp.h>.
9559         (num_processors): On IRIX systems, try sysmp.
9560         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
9561
9562 2009-10-18  Bruno Haible  <bruno@clisp.org>
9563
9564         Implement nproc for HP-UX.
9565         * lib/nproc.c: Include <sys/pstat.h>
9566         (num_processors): On HP-UX systems, try pstat_getdynamic.
9567         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
9568         pstat_getdynamic.
9569
9570 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
9571             Bruno Haible  <bruno@clisp.org>
9572
9573         Implement nproc for NetBSD, OpenBSD.
9574         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
9575         (ARRAY_SIZE): New macro.
9576         (num_processors): On BSD systems, try sysctl of HW_NCPU.
9577         * m4/nproc.m4: New file.
9578         * modules/nproc (Files): Add m4/nproc.m4.
9579         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
9580         (Makefile.am): Instead, augment lib_SOURCES.
9581
9582 2009-10-18  Bruno Haible  <bruno@clisp.org>
9583
9584         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
9585         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
9586         sys/param.h.
9587
9588 2009-10-16  Eric Blake  <ebb9@byu.net>
9589
9590         utimensat: new module
9591         * modules/utimensat: New file.
9592         * lib/utimensat.c (utimensat): Likewise.
9593         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
9594         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
9595         so we can work around Linux bugs.
9596         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9597         * modules/sys_stat (Makefile.am): Substitute them.
9598         * lib/sys_stat.in.h (utimensat): Declare it.
9599         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9600         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9601         * modules/utimensat-tests: New test.
9602         * tests/test-utimensat.c: Likewise.
9603
9604         utimens: let lutimens work on non-symlinks
9605         * lib/utimens.c (lutimens): Fall back to utimens rather than
9606         failing with ENOSYS, when file is not a symlink.
9607         (utimens): Reduce redirection.
9608         * tests/test-lutimens.h (test_lutimens): Update test to cover
9609         non-symlinks.
9610         * tests/test-utimens.h (test_utimens): Update test to cover
9611         symlinks.
9612         * tests/test-utimens.c (main): Update caller.
9613
9614         utimens: cache whether utimensat syscall works
9615         * lib/utimens.c (utimensat_works_really): New cache variable.
9616         (fdutimens, lutimens): Use it to avoid failing syscall.
9617
9618         test-stat-time, test-utimens: improve portability
9619         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
9620         ext4 on alpha, and for cygwin.
9621         * tests/test-utimens-common.h: New file.
9622         (nap): Factor delays into single function.
9623         * tests/test-lutimens.h (test_lutimens): Use new header.
9624         * tests/test-futimens.h (test_futimens): Likewise.
9625         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
9626         timestamps to occur from same machine, as was done previously for
9627         test_utimens.
9628         * modules/utimens-tests (Files): Ship new file.
9629         * modules/futimens-tests (Files): Likewise.
9630         Reported in part by Jim Meyering.
9631
9632         sys_stat: sort replacement declarations
9633         * lib/sys_stat.in.h: Sort declarations.
9634         * lib/futimens.c (futimens): Fix typo.
9635
9636 2009-10-15  Jim Meyering  <meyering@redhat.com>
9637
9638         don't let environment settings perturb build
9639         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
9640         could cause a configure-time and/or build-time malfunction.
9641         Typically, a configure-time function-in-library test is performed
9642         via code like this:
9643
9644           LIB_VAR=
9645           AC_SUBST([LIB_VAR])
9646           prefix_saved_LIBS=$LIBS
9647             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
9648                        [test "$ac_cv_search_FUNC" = "none required" ||
9649                         LIB_VAR=$ac_cv_search_FUNC])
9650           LIBS=$prefix_saved_LIBS
9651
9652         However, in each of the files affected by this change, the LIB_VAR=
9653         initialization was omitted.  Thus, when set in the environment, its
9654         value would propagate into generated Makefiles when FUNC is not found
9655         in LIB_NAME.
9656         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
9657         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
9658         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9659
9660 2009-10-14  Eric Blake  <ebb9@byu.net>
9661
9662         fchdir: avoid infinite recursion in mingw
9663         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
9664         recursing.
9665
9666         test-stat-time: port to mingw
9667         * tests/test-stat-time.c (force_unlink): Return a value.
9668         (test_ctime) [W32]: Fix compilation error.
9669         (nap): Don't call usleep with too large an argument.  Use
9670         force_unlink.
9671         * doc/pastposix-functions/usleep.texi (usleep): Document the
9672         portability issue.
9673
9674 2009-10-13  Jim Meyering  <meyering@redhat.com>
9675
9676         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
9677         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
9678         * modules/pipe-filter-ii: Likewise.
9679         * modules/sys_socket-tests: Likewise.
9680         * modules/tsearch-tests: Likewise.
9681         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
9682         (check): Depend on it.
9683
9684 2009-10-12  Eric Blake  <ebb9@byu.net>
9685
9686         utimens-tests: port to NFS file systems
9687         * tests/test-utimens.h (test_utimens): Refactor utimecmp
9688         comparisons to avoid spurious failures from timestamp drift
9689         between NFS machines.
9690
9691 2009-10-12  Eric Blake  <ebb9@byu.net>
9692
9693         stat-time-tests: minor cleanups
9694         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
9695         * tests/test-stat-time.c (nap): Separate assignment from call.
9696         Suggested by Paolo Bonzini and Bruno Haible.
9697
9698         sys_stat: guarantee struct timespec
9699         * lib/sys_stat.in.h (includes): Always include <time.h>
9700         * modules/sys_stat (Depends-on): Add time.
9701         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
9702         mode_t permission values.
9703         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
9704         get at subsecond timestamps.
9705
9706 2009-10-10  Eric Blake  <ebb9@byu.net>
9707
9708         futimens: new module
9709         * modules/futimens: New file.
9710         * lib/futimens.c (futimens): Likewise.
9711         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
9712         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
9713         we can work around Linux bugs.
9714         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9715         * modules/sys_stat (Makefile.am): Substitute them.
9716         * lib/sys_stat.in.h (futimens): Declare it.
9717         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9718         * doc/posix-functions/futimens.texi (futimens): Likewise.
9719         * modules/futimens-tests: New test.
9720         * tests/test-futimens.c: Likewise.
9721
9722         utimens: introduce fdutimens
9723         * lib/utimens.h (fdutimens): New prototype.
9724         * lib/utimens.c (gl_futimens): Move guts...
9725         (fdutimens): ...to new interface.
9726         * tests/test-utimens.c (do_fdutimens): Use it.
9727
9728         utimens: add UTIME_NOW and UTIME_OMIT support
9729         * lib/utimens.c (validate_timespec, update_timespec): New helper
9730         functions.
9731         (gl_futimens, lutimens): Use them.
9732         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
9733         stdbool, sys_stat.
9734         (Link): Mention resulting library dependency.
9735         * modules/utimecmp (Link): Likewise.
9736         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
9737         (Makefile.am): Pick up library dependency.
9738         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
9739         definition.
9740         * tests/test-sys_stat.c: Test the definitions.
9741         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
9742         * NEWS: Document library dependency.
9743
9744         utimecmp: support symlink timestamps
9745         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
9746         hashing when possible.  Use pathconf when available.
9747         (SYSCALL_RESOLUTION): Recognize tighter resolution.
9748         * modules/utimecmp (Depends-on): Add lstat.
9749
9750         utimens: add lutimens interface
9751         * lib/utimens.c (lutimens): New function.
9752         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
9753         * lib/utimens.h (lutimens): Declare new interface.
9754         * tests/test-utimens.c (main): Enhance test.
9755         * tests/test-lutimens.h (test_lutimens): New file.
9756         * modules/utimens-tests (Files): Distribute it.
9757         (Depends-on): Add symlink.
9758         (configure.ac): Check for usleep.
9759
9760         utimens: validate futimens usage
9761         * lib/utimens.c (gl_futimens): Require valid fd up front, using
9762         fewer syscalls on failure later on.  Avoid compiler warning on
9763         mingw.
9764         * modules/utimens (Depends-on): Add dup2.
9765
9766         utimens: add test
9767         * modules/utimens-tests: New test.
9768         * tests/test-utimens.h: New file.
9769         * tests/test-futimens.h: Likewise.
9770         * tests/test-utimens.c: Likewise.
9771
9772         doc: mention timestamp portability issues
9773         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
9774         instead.
9775         * doc/posix-functions/utime.texi (utime): Likewise.
9776         * doc/posix-functions/utimes.texi (utimes): Likewise.
9777         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
9778         instead.
9779         * doc/posix-functions/futimens.texi (futimens): Mention utimens
9780         module.
9781         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9782         Mention weakness with symlink timestamps.
9783         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
9784         to utimensat/futimens instead.
9785         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
9786
9787         test-dup2: enhance test
9788         * tests/test-dup2.c (main): Also check AT_FDCWD.
9789
9790         test-stat-time: avoid more spurious failures
9791         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
9792         xfs; and avoid race if the two timestamps cross quantization edge.
9793
9794         relocatable: prefer 'file system' over 'filesystem'
9795         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
9796         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
9797         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
9798         * doc/relocatable.texi (Enabling Relocatability): Likewise.
9799         * lib/relocatable.c (compute_curr_prefix): Likewise.
9800
9801 2009-10-10  Jim Meyering  <meyering@redhat.com>
9802
9803         stat-time-tests: check for the usleep function
9804         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
9805
9806 2009-10-10  Bruno Haible  <bruno@clisp.org>
9807
9808         * modules/xnanosleep: Put the Link section after the Include section.
9809
9810 2009-10-09  Eric Blake  <ebb9@byu.net>
9811
9812         dup2: work around FreeBSD 6.1 bug
9813         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
9814         * doc/posix-functions/dup2.texi (dup2): Document it.
9815         Reported by Nelson H. F. Beebe and Jim Meyering.
9816
9817         test-stat-time: port to buggy NFS clients
9818         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
9819         (test_ctime): Also skip test if mtime and ctime are skewed.
9820
9821         maint: prefer 'file system' over 'filesystem'
9822         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9823         * doc/posix-functions/lstat.texi (lstat): Likewise.
9824         * lib/file-has-acl.c (file_has_acl): Likewise.
9825         * lib/fwriteerror.c [TEST]: Likewise.
9826         * tests/test-areadlink.h (test_areadlink): Likewise.
9827         * tests/test-areadlinkat-with-size.c (main): Likewise.
9828         * tests/test-areadlinkat.c (main): Likewise.
9829         * tests/test-canonicalize-lgpl.c (main): Likewise.
9830         * tests/test-canonicalize.c (main): Likewise.
9831         * tests/test-fstatat.c (main): Likewise.
9832         * tests/test-linkat.c (main): Likewise.
9833         * tests/test-lstat.h (test_lstat_func): Likewise.
9834         * tests/test-mkdir.h (test_mkdir): Likewise.
9835         * tests/test-readlink.h (test_readlink): Likewise.
9836         * tests/test-remove.c (main): Likewise.
9837         * tests/test-rename.h (test_rename): Likewise.
9838         * tests/test-renameat.c (main): Likewise.
9839         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9840         * tests/test-symlink.h (test_symlink): Likewise.
9841         * tests/test-symlinkat.c (main): Likewise.
9842         * tests/test-unlink.h (test_unlink_func): Likewise.
9843         * tests/test-unlinkat.c (main): Likewise.
9844
9845         maint: make realtime library usage explicit
9846         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
9847         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
9848         * modules/settime (Link): Likewise.
9849         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
9850
9851         test-stat-time: speed up execution
9852         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
9853         warning on mingw.
9854         (nap): New helper function.
9855         (prepare_test): Use it to reduce sleep time.
9856         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
9857         execution.
9858         * modules/stat-time-tests (configure.ac): Check for usleep.
9859
9860 2009-10-09  Jim Meyering  <meyering@redhat.com>
9861
9862         selinux-h: always use getfilecon wrappers
9863         * lib/getfilecon.c: New file.
9864         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
9865         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
9866         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
9867         (fgetfilecon): Provide a stub.
9868         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
9869         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
9870         file unconditionally.
9871         When <selinux/selinux.h> is found, arrange to use wrappers.
9872         * modules/selinux-h (Files): Add getfilecon.c.
9873         (Makefile.am): Substitute include-next-related bits
9874         into the now-always-generated selinux/selinux.h file.
9875         * doc/glibc-functions/lgetfilecon.texi: New file.
9876         * doc/glibc-functions/fgetfilecon.texi: New file.
9877         * doc/glibc-functions/getfilecon.texi: New file.
9878         * doc/glibc-functions/getfilecon-desc.texi: New file.
9879         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
9880         which to pull in the new files.
9881         * MODULES.html.sh (Misc): Add selinux-h.
9882
9883 2009-10-08  Jim Meyering  <meyering@redhat.com>
9884
9885         unistd: fix comment typo
9886         * lib/unistd.in.h (euidaccess): Fix a comment typo.
9887
9888 2009-10-08  Eric Blake  <ebb9@byu.net>
9889
9890         areadlink: use SIZE_MAX consistently
9891         * modules/areadlink (Depends-on): Add stdint.
9892         * modules/areadlink-with-size (Depends-on): Likewise.
9893         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
9894         gives NULL; drop sys/types, since unistd gives size_t; and add
9895         stdint for SIZE_MAX.
9896         (SIZE_MAX): Rely on headers.
9897         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
9898         and add stdint.
9899         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
9900         (SIZE_MAX): Likewise.
9901         (INITIAL_BUF_SIZE): Turn into enum.
9902         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
9903
9904 2009-10-08  Jim Meyering  <meyering@redhat.com>
9905
9906         areadlinkat: avoid compilation failure
9907         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
9908         Fix typo in comment.
9909
9910 2009-10-07  Eric Blake  <ebb9@byu.net>
9911
9912         areadlinkat-with-size: new module
9913         * modules/areadlinkat-with-size: New module.
9914         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
9915         * lib/areadlink.h (areadlinkat): Declare it.
9916         * MODULES.html.sh (File system functions): Mention it.
9917         * modules/areadlinkat-with-size-tests: New test.
9918         * tests/test-areadlinkat-with-size.c: New file.
9919
9920         xreadlinkat: new module
9921         * modules/xreadlinkat: New module.
9922         * lib/xreadlinkat.c (xreadlinkat): New file.
9923         * lib/xreadlink.h (xreadlinkat): Declare it.
9924         * MODULES.html.sh (File system functions): Mention it.
9925
9926         areadlinkat: new module
9927         * lib/at-func.c (FUNC_FAIL): New define.
9928         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
9929         * modules/areadlinkat: New module.
9930         * lib/linkat.c (areadlinkat): Move...
9931         * lib/areadlinkat.c (areadlinkat): ...to new file.
9932         * lib/areadlink.h (areadlinkat): Declare it.
9933         * modules/linkat (Depends-on): Add areadlinkat.
9934         * MODULES.html.sh (File system functions): Mention it.
9935         * modules/areadlinkat-tests: New test.
9936         * tests/test-areadlinkat.c: New file.
9937
9938         areadlink, areadlink-with-size: add tests
9939         * modules/areadlink-tests: New test.
9940         * modules/areadlink-with-size-tests: Likewise.
9941         * tests/test-areadlink.h: New file.
9942         * tests/test-areadlink.c: Likewise.
9943         * tests/test-areadlink-with-size.c: Likewise.
9944
9945         maint: minor cleanups
9946         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
9947         _UNUSED_PARAMETER_ instead.
9948         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
9949         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
9950         * modules/linkat-tests (Files): Distribute test-link.h.
9951
9952         openat, utimens: whitespace cleanup
9953         * lib/openat.c: Prefer space throughout, rather than mix of 8
9954         spaces vs. tabs.
9955         * lib/at-func.c: Likewise.
9956         * lib/utimens.c: Likewise.
9957
9958         openat: avoid using wrong fd
9959         * lib/openat.c (openat_permissive): Reject user's fd if saving the
9960         working directory chooses same fd.
9961         * lib/at-func.c (AT_FUNC_NAME): Likewise.
9962
9963         mkdir, mkdirat: fix cygwin 1.5.x bug
9964         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
9965         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
9966         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
9967         bug.
9968         (gl_PREREQ_MKDIR): Delete unused macro.
9969         * modules/mkdir (Files): Track file rename.
9970         (configure.ac): Update macro name.
9971         * modules/openat (Depends-on): Add mkdir.
9972         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
9973
9974         mkdir, mkdirat: add tests
9975         * modules/mkdir-tests: New test.
9976         * tests/test-mkdir.h: New file.
9977         * tests/test-mkdir.c: Likewise.
9978         * tests/test-mkdirat.c: Likewise.
9979         * modules/openat-tests (Files): Add new files.
9980         (Makefile.am): Run new test.
9981
9982 2009-10-06  Eric Blake  <ebb9@byu.net>
9983
9984         doc: tweak *at function documentation
9985         * doc/posix-functions/faccessat.texi (faccessat): Mention
9986         known issue with replacement.
9987         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
9988         * doc/posix-functions/linkat.texi (linkat): Likewise.
9989         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
9990         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
9991         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9992         * doc/posix-functions/renameat.texi (renameat): Likewise.
9993         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
9994
9995         openat: fix GNU/Hurd bug in unlinkat
9996         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
9997         broken.
9998         * doc/posix-functions/unlink.texi (unlink): Document this.
9999         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
10000
10001         fdopendir: fix GNU/Hurd bug
10002         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
10003         allowing non-directory fds.
10004         * lib/fdopendir.c (rpl_fdopendir): Work around it.
10005         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
10006         * modules/dirent (Makefile.am): Substitute it.
10007         * lib/dirent.in.h (fdopendir): Declare replacement.
10008         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
10009         * tests/test-fdopendir.c (main): Test something other than
10010         /dev/null, since on Hurd that behaves like a directory.
10011
10012         test-symlink: port to GNU/Hurd
10013         * tests/test-symlink.h (test_symlink): Relax expected errno.
10014
10015         doc: tweak more cygwin information
10016         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
10017         now compatible with glibc.
10018         * doc/posix-functions/getopt.texi (getopt): Likewise.
10019
10020         getopt-gnu: add another test
10021         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
10022         guarantee behavior relied on by m4.
10023         * tests/test-getopt.c (main): Use it.
10024         * modules/getopt-posix-tests (Depends-on): Add setenv.
10025         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
10026
10027         getopt: fix compilation on darwin
10028         * lib/getopt.in.h (includes): Leave breadcrumbs during system
10029         include.
10030         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
10031         Reported by Ludovic Courtès.
10032
10033 2009-10-06  Bruno Haible  <bruno@clisp.org>
10034
10035         * modules/size_max (Description): Discourage its use.
10036         Reported by Simon Josefsson.
10037
10038 2009-10-06  Jim Meyering  <meyering@redhat.com>
10039
10040         linkat: avoid compilation failure
10041         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
10042
10043 2009-10-05  Eric Blake  <ebb9@byu.net>
10044
10045         linkat: support Linux 2.6.17
10046         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
10047         linkat on Linux, but allow cache variable override.
10048         * lib/linkat.c (rpl_linkat): Define override.
10049         * modules/linkat (Depends-on): Add symlinkat.
10050         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
10051         * modules/unistd (Makefile.am): Substitute it.
10052         * lib/unistd.in.h (linkat): Declare replacement.
10053         Reported by Pádraig Brady.
10054
10055         quotearg: port test to systems with C.UTF-8 locale
10056         * tests/test-quotearg.c (struct result_strings): Add another
10057         member, differentiating between C.ASCII and C.UTF-8 handling.
10058         (compare_strings): Add parameter.
10059         (main): Adjust all callers.
10060
10061         getopt: avoid clash with FreeBSD _getopt_internal
10062         * lib/getopt.in.h (_getopt_internal): Override the name.
10063         * lib/getopt_int.h (includes): Pick up any overrides.
10064         Reported by Reuben Thomas.
10065
10066         hash: allow C89 compilation
10067         * lib/hash.c (check_tuning): Move declaration before statement.
10068         Reported by Reuben Thomas.
10069
10070 2009-10-05  Karl Berry  <karl@gnu.org>
10071
10072         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
10073
10074 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
10075             Bruno Haible  <bruno@clisp.org>
10076
10077         * lib/uname.c (uname): Use a table-driven algorithm to compute
10078         Windows NT versions.
10079
10080 2009-10-04  Bruno Haible  <bruno@clisp.org>
10081
10082         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
10083         program_invocation_short_name.
10084         * modules/progname (configure.ac): Test for presence of
10085         program_invocation_short_name.
10086         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10087
10088 2009-10-04  Bruno Haible  <bruno@clisp.org>
10089
10090         * lib/progname.c (set_program_name): Fix comment.
10091         Reported by Jim Meyering.
10092
10093 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10094             Bruno Haible  <bruno@clisp.org>
10095
10096         * lib/uname.c: Include <string.h>.
10097         (uname): Do only one call to GetVersionEx in the common case.
10098
10099 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10100             Bruno Haible  <bruno@clisp.org>
10101
10102         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
10103         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
10104         (uname): Add support for Windows CE and various non-x86 CPU types.
10105
10106 2009-10-03  Bruno Haible  <bruno@clisp.org>
10107
10108         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
10109         invocation to tests/configure.ac.
10110         Reported by Ian Beckwith <ianb@erislabs.net>.
10111
10112 2009-10-02  Eric Blake  <ebb9@byu.net>
10113
10114         fchdir: avoid compiler warning
10115         * lib/fchdir.c (canonicalize_file_name)
10116         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
10117
10118         test-open: support mingw errno values
10119         * tests/test-open.h (test_open): Relax test.
10120         * tests/test-fopen.h (test_fopen): Likewise.
10121         * tests/test-openat-safer.c (main): Likewise.
10122
10123         open: fix opening directory on mingw
10124         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
10125
10126         test-open: on GNU/Hurd, /dev/null is a directory
10127         * tests/test-fopen.h (main): Rename...
10128         (test_fopen): ...to this.  Use a guaranteed non-directory when
10129         confirming open behavior on trailing slash.
10130         * tests/test-openat-safer.c (main): Likewise.
10131         * tests/test-open.h (main): Likewise....
10132         (test_open): ...to this.
10133         * tests/test-fopen.c (main): Adjust caller.
10134         * tests/test-fopen-safer.c (main): Likewise.
10135         * tests/test-open.c (main): Likewise.
10136         * tests/test-fcntl-safer.c (main): Likewise.
10137         Reported by Samuel Thibault.
10138
10139         rename, fchdir: don't ignore chdir failure
10140         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
10141         * lib/rename.c (rpl_rename) [W32]: Likewise.
10142         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
10143         an empty destination directory if source cannot be renamed,
10144         although there is still possibility for failure.
10145         * doc/posix-functions/rename.texi (rename): Document the race.
10146         Reported by Jim Meyering.
10147
10148         maint: cleanup whitespace in recent commits
10149         * lib/rename.c (rpl_rename): Remove tabs.
10150         * tests/test-link.h (test_link): Likewise.
10151         * lib/fchdir.c (get_name): Likewise.
10152         Reported by Jim Meyering.
10153
10154 2009-10-02  Ben Pfaff  <blp@gnu.org>
10155
10156         relocatable-prog-wrapper: Add missing dependency on
10157         double-slash-root.
10158         * modules/relocatable-prog-wrapper: Add dependency.
10159         Reported by Ian Beckwith <ianb@erislabs.net>.
10160
10161 2009-10-02  Eric Blake  <ebb9@byu.net>
10162
10163         renameat: fix Solaris bugs
10164         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
10165         needed fixing.
10166         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
10167         * modules/stdio (Makefile.am): Substitute it.
10168         * lib/stdio.in.h (renameat): Declare replacement.
10169         * lib/renameat.c (rpl_renameat): Implement fix.
10170
10171         renameat: new module
10172         * modules/renameat: New file.
10173         * lib/renameat.c (renameat): Likewise.
10174         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
10175         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
10176         * modules/stdio (Makefile.am): Substitute them.
10177         * lib/stdio.in.h (renameat): Declare it.
10178         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10179         * doc/posix-functions/renameat.texi (renameat): Likewise.
10180         * modules/renameat-tests: New test.
10181         * tests/test-renameat.c: Likewise.
10182
10183         rename: fix mingw bugs
10184         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
10185         directory overwrite bugs.
10186
10187         rename: fix another cygwin 1.5 bug
10188         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
10189         checks.
10190         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
10191         unnecessary cygwin workarounds.  Also work around bug with moving
10192         full directory onto an empty one.
10193         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
10194
10195         rename-dest-slash: merge into rename module
10196         * modules/rename-dest-slash (Status): Mark obsolete.
10197         (Depends-on): Add rename.
10198         (Files): Let rename do it all.
10199         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
10200         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
10201         * m4/rename-dest-slash.m4: ...so this file can be deleted.
10202         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
10203         * lib/rename.c (rpl_rename): Update comments.
10204
10205         rename: fix cygwin 1.5.x bugs
10206         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
10207         * lib/rename.c (rpl_rename): Work around them.
10208         * modules/rename (Depends-on): Add same-inode.
10209
10210         rename: fix Solaris 10 bug
10211         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10212         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
10213         was the only bug.
10214
10215         rename: fix Solaris 9 bug
10216         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
10217         on non-directory.  Avoid calling exit.
10218         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
10219         strdup.
10220         * modules/rename-tests (Depends-on): Drop lstat.
10221         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10222         (gl_PREREQ_RENAME): Delete unused macro.
10223
10224         rename-dest-slash: fix NetBSD bug
10225         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
10226         links.
10227         * modules/rename-dest-slash (Depends-on): Add same-inode.
10228
10229         rename-tests: new test, exposes several platform bugs
10230         * modules/rename-tests: New file.
10231         * tests/test-rename.h: Likewise.
10232         * tests/test-rename.c: Likewise.
10233         * doc/posix-functions/rename.texi (rename): Improve documentation,
10234         including bugs that will eventually be fixed in gnulib.
10235
10236 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
10237
10238         * lib/uname.c: Include <stdlib.h>
10239         (uname): Assume version info is available.
10240
10241 2009-10-02  Jim Meyering  <meyering@redhat.com>
10242
10243         gnu-web-doc-update: correct --help output
10244         * build-aux/gnu-web-doc-update: Make --help output relevant.
10245
10246         gnu-web-doc-update: add standard options
10247         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
10248
10249         gnu-web-doc-update: New module.
10250         Use this script to automatically update the on-line web documentation
10251         for your GNU project at http://www.gnu.org/software/$pkg/manual/
10252         * modules/gnu-web-doc-update: New file, from coreutils.
10253         * build-aux/gnu-web-doc-update: New script.
10254
10255 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
10256
10257         link: LoadLibrary is not needed.
10258         * lib/link.c: Use GetModuleHandle.
10259
10260 2009-10-01  Eric Blake  <ebb9@byu.net>
10261
10262         getopt: bump serial number
10263         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
10264         change.
10265
10266         tests: tighten link, rmdir, and remove tests
10267         * tests/test-link.h (includes): No need to use <config.h> here.
10268         Clean up if directory hard link was created, otherwise test for
10269         trailing '.'.
10270         * tests/test-linkat.c (main): Simplify.
10271         * tests/test-remove.c (main): Enhance test for trailing '.'.
10272         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10273
10274 2009-10-01  Jim Meyering  <meyering@redhat.com>
10275
10276         maint.mk: requiring "make major" was annoying, for a "minor" release.
10277         What is intended is "stable", to contrast with alpha and beta,
10278         so require "make stable", not "make major".
10279         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
10280         (get_tool_versions): Likewise.
10281         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
10282
10283 2009-09-30  Ben Pfaff  <blp@gnu.org>
10284
10285         Fix broken build of replacement for Windows tmpfile().
10286         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
10287         flags argument added along with the 'mkostemp' module.
10288
10289 2009-09-28  Bruno Haible  <bruno@clisp.org>
10290
10291         Avoid identifier clash with POSIX function 'remove' defined as a macro.
10292         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
10293         to 'remove_elt'.
10294         (gl_list_remove): Update.
10295         * lib/gl_list.c (gl_list_remove): Update.
10296         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
10297         to 'remove_elt'.
10298         (gl_oset_remove): Update.
10299         * lib/gl_list.c (gl_oset_remove): Update.
10300         Reported by Eric Blake.
10301
10302 2009-09-28  Eric Blake  <ebb9@byu.net>
10303
10304         doc: mention yet more cygwin 1.7 status
10305         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
10306         cygwin.
10307         * doc/glibc-functions/execvpe.texi (execvpe): New file.
10308         * doc/gnulib.texi (Glibc unistd.h): Mention it.
10309
10310         argp: fix test failure
10311         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
10312         that are not upper-case.  Pass correct range to tolower.
10313
10314 2009-09-27  Jim Meyering  <meyering@redhat.com>
10315
10316         test-yesno: work around sparc-dash here-document infelicity
10317         Without this change, the literal \177 byte in a here document
10318         would make dash 0.5.5.1-3 access uninitialized memory.
10319         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
10320         Instead, use a marker, "@", and filter through tr to create the desired
10321         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
10322
10323 2009-09-27  Bruno Haible  <bruno@clisp.org>
10324
10325         Disable untested support for new flavours of ACLs on AIX.
10326         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
10327         progress.
10328         * lib/set-mode-acl.c (qset_acl): Likewise.
10329
10330 2008-12-07  Bruno Haible  <bruno@clisp.org>
10331
10332         Add support for new flavours of ACLs on AIX. (Untested.)
10333         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
10334         (file_has_acl): Add support for newer AIX.
10335         * lib/set-mode-acl.c (qset_acl): Likewise.
10336         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
10337         Rainer Tammer <tammer@tammer.net>.
10338
10339 2009-09-26  Eric Blake  <ebb9@byu.net>
10340
10341         argp: fix compilation of getopt
10342         * lib/getopt.in.h (includes): Use different guard than glibc.
10343         Reported by Sergey Poznyakoff.
10344
10345         doc: mention more cygwin 1.7 status
10346         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
10347         bug.
10348         * doc/posix-functions/execl.texi (execl): Likewise.
10349         * doc/posix-functions/execle.texi (execle): Likewise.
10350         * doc/posix-functions/execlp.texi (execlp): Likewise.
10351         * doc/posix-functions/execv.texi (execv): Likewise.
10352         * doc/posix-functions/execve.texi (execve): Likewise.
10353         * doc/posix-functions/execvp.texi (execvp): Likewise.
10354         * doc/glibc-functions/canonicalize_file_name.texi
10355         (canonicalize_file_name): Cygwin 1.7 now provides this.
10356         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
10357         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
10358         on AT_SYMLINK_NOFOLLOW.
10359
10360 2009-09-24  Eric Blake  <ebb9@byu.net>
10361
10362         test-linkat: make test more robust
10363         * tests/test-linkat.c (main): Avoid collision with EEXIST.
10364
10365         getopt: fix inclusion guards for cygwin
10366         * modules/getopt-posix (Depends-on): Add include-next.
10367         (Makefile.am): Substitute more items in replacement header.
10368         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
10369         <getopt.h>.
10370         * lib/getopt.in.h (includes): Use split inclusion guard, and
10371         prefer <getopt.h> over include <unistd.h> when one is present.
10372         (option): Also override name of 'struct option'.
10373
10374         same-inode: revert prior change; it is not yet ready
10375         * NEWS: Undo mention of this change.
10376         * lib/same-inode.h (same-inode.h): Undo tri-state change.
10377         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
10378         * lib/cycle-check.c (cycle_check): Likewise.
10379         * lib/same.c (same_name): Likewise.
10380         * lib/at-func2.c (at_func2): Likewise.
10381
10382 2009-09-23  Eric Blake  <ebb9@byu.net>
10383
10384         linkat: new module
10385         * modules/linkat: New file.
10386         * lib/at-func2.c (at_func2): Likewise.
10387         * lib/linkat.c (linkat): Likewise.
10388         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
10389         * lib/openat-priv.h (at_func2): Add declaration.
10390         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10391         * modules/unistd (Makefile.am): Substitute them.
10392         * lib/unistd.in.h (linkat): Declare it.
10393         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10394         * doc/posix-functions/linkat.texi (linkat): Likewise.
10395         * doc/posix-functions/link.texi (link): Tweak wording.
10396         * tests/test-link.c (main): Move guts...
10397         * tests/test-link.h (test_link): ...into new file.
10398         * modules/linkat-tests: New test.
10399         * tests/test-linkat.c: Likewise.
10400         * modules/link-tests (Files): Ship new file.
10401         (Depends-on): Add stdbool.
10402
10403         dirname: add library-safe mdir_name
10404         * lib/dirname.h (mdir_name): New prototype.
10405         * lib/dirname.c (dir_name): Move guts...
10406         (mdir_name): ...to new function that avoids xalloc_die.
10407
10408         fchdir: another mingw fix
10409         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
10410         * lib/fchdir.c (get_name): New helper method; skips canonicalize
10411         on mingw (where it has not yet been ported), and make it optional
10412         elsewhere.
10413         (_gl_register_fd): Use it.
10414
10415         same-inode: make SAME_INODE tri-state, to port to mingw
10416         * NEWS: Mention this change.
10417         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
10418         st_ino always being 0.
10419         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
10420         * lib/cycle-check.c (cycle_check): Likewise.
10421         * lib/same.c (same_name): Likewise.
10422
10423         lstat: avoid mingw compilation error
10424         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
10425         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
10426         lstat ourselves.
10427         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
10428         was adequate.
10429         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
10430         the checks for lstat.
10431         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
10432
10433         link: fix test failure on Solaris 9
10434         * lib/link.c (rpl_link): Don't assume link will catch bogus
10435         trailing slash on source.
10436
10437         test-symlinkat: enhance test
10438         * tests/test-readlink.c (main): Move guts...
10439         * tests/test-readlink.h (test_readlink): ...into new file.
10440         * tests/test-symlink.c (main): Move guts...
10441         * tests/test-symlink.h (test_symlink): ...into new file.
10442         * tests/test-symlinkat.c (main): Use new files for further
10443         coverage.
10444         (do_symlink, do_readlink): New helper functions.
10445         * modules/symlink-tests (Files): Ship new file.
10446         (Depends-on): Add stdbool.
10447         * modules/readlink-tests (Files): Ship new file.
10448         (Depends-on): Add stdbool.
10449         * modules/symlinkat-tests (Files): Use new files.
10450
10451 2009-09-23  Eric Blake  <ebb9@byu.net>
10452
10453         readlink: document portability issue with symlink length
10454         * doc/posix-functions/lstat.texi (lstat): Mention that some file
10455         systems have bogus st_size on symlinks, and mention the
10456         areadlink-with-size module.
10457         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
10458         * doc/posix-functions/readlink.texi (readlink): Mention the
10459         areadlink module, and ERANGE failure.
10460         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10461         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
10462
10463         readlink: fix Solaris 9 bug with trailing slash
10464         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
10465         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
10466         * doc/posix-functions/readlink.texi (readlink): Document this.
10467         * modules/readlink-tests: New test.
10468         * tests/test-readlink.c: Likewise.
10469
10470         readlink: fix cygwin 1.5.x bug with return type
10471         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
10472         * lib/unistd.in.h (readlink): Use ssize_t.
10473         * lib/readlink.c (readlink): Likewise.
10474         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10475         * modules/unistd (Makefile.am): Substitute it.
10476         * lib/unistd.in.h (readlink): Declare replacement.
10477         * doc/posix-functions/readlink.texi (readlink): Document this.
10478
10479         symlink: use throughout gnulib
10480         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
10481         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
10482         symlink is not used.
10483         * modules/symlinkat (Depends-on): Add symlink.
10484         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10485         * modules/canonicalize-tests (Depends-on): Likewise.
10486         * modules/lstat-tests (Depends-on): Likewise.
10487         * modules/openat-tests (Depends-on): Likewise.
10488         * modules/remove-tests (Depends-on): Likewise.
10489         * modules/rmdir-tests (Depends-on): Likewise.
10490         * modules/unlink-tests (Depends-on): Likewise.
10491         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
10492         * tests/test-canonicalize.c (symlink): Likewise.
10493         * tests/test-fstatat.c (symlink): Likewise.
10494         * tests/test-lstat.c (symlink): Likewise.
10495         * tests/test-remove.c (symlink): Likewise.
10496         * tests/test-rmdir.c (symlink): Likewise.
10497         * tests/test-unlink.c (symlink): Likewise.
10498         * tests/test-unlinkat.c (symlink): Likewise.
10499
10500         symlink: new module, for Solaris 9 bug
10501         * modules/symlink: New file.
10502         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
10503         * lib/symlink.c: Likewise.
10504         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
10505         * modules/unistd (Makefile.am): Substitute them.
10506         * lib/unistd.in.h (symlink): Declare replacement.
10507         * MODULES.html.sh (File system functions): Mention it.
10508         * doc/posix-functions/symlink.texi (symlink): Likewise.
10509         * modules/symlink-tests: New test.
10510         * tests/test-symlink.c: Likewise.
10511
10512 2009-09-23  Bruno Haible  <bruno@clisp.org>
10513
10514         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
10515         when needed.
10516         Test case: gnulib-tool --import --with-tests atexit inttypes.
10517         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
10518
10519 2009-09-23  Bruno Haible  <bruno@clisp.org>
10520
10521         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
10522         subcommand, not in a subshell.
10523
10524 2009-09-22  Eric Blake  <ebb9@byu.net>
10525
10526         unistd: sort replacement declarations
10527         * lib/unistd.in.h: Sort declarations.
10528
10529         open, openat: minor optimization
10530         * lib/open.c (open): If open succeeded, len is non-zero.
10531         * lib/openat.c (rpl_openat): Likewise.
10532
10533         link-follow: ensure correct result
10534         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
10535         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
10536         distinguish between possible failures.
10537
10538 2009-09-21  Eric Blake  <ebb9@byu.net>
10539
10540         fts: avoid compiler warning
10541         * lib/fts.c (dirent_inode_sort_may_be_useful)
10542         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
10543
10544 2009-09-19  Bruno Haible  <bruno@clisp.org>
10545
10546         * lib/progreloc.c (canonicalize_file_name): New declaration.
10547
10548 2009-09-19  Eric Blake  <ebb9@byu.net>
10549
10550         link: fix quoting
10551         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
10552
10553         openat: fix openat bugs on Solaris 9
10554         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
10555         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
10556         * modules/openat (Depends-on): Add open.
10557         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
10558         * modules/fcntl-h (Makefile.am): Substitute it.
10559         * lib/fcntl.in.h (openat): Declare replacement.
10560         * doc/posix-functions/openat.texi (openat): Document this.
10561
10562         openat: move fstatat and unlinkat into correct files
10563         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
10564         compiled.
10565         * lib/openat.c (fstatat, unlinkat): Move...
10566         * lib/fstatat.c (fstatat): ...into correct files.
10567         * lib/unlinkat.c (unlinkat): Likewise.
10568
10569         openat: fix unlinkat bugs on Solaris 9
10570         * lib/unlinkat.c (unlinkat): New file.
10571         * modules/openat (Depends-on): Add unlink.
10572         (Files): Distribute it.
10573         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
10574         trailing slash behavior is broken.
10575         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10576         * modules/unistd (Makefile.am): Substitute it.
10577         * lib/unistd.in.h (unlinkat): Declare replacement.
10578         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
10579
10580         openat: fix fstatat bugs on Solaris 9
10581         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
10582         stat.
10583         * doc/posix-functions/fstatat.texi (fstatat): Document this.
10584
10585         test-unlinkat: enhance test, to expose Solaris 9 bug
10586         * tests/test-unlink.c (main): Factor guts...
10587         * tests/test-unlink.h (test_rmdir_func): ...into new file.
10588         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
10589         * tests/test-rmdir.c (main): Adjust caller.
10590         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
10591         (unlinker): New helper function.
10592         (rmdirat): Enhance check.
10593         * modules/rmdir-tests (Depends-on): Add stdbool.
10594         * modules/unlink-tests (Depends-on): Likewise.
10595         (Files): Add test-unlink.h.
10596         * modules/openat-tests (Files): Likewise.
10597         (Depends-on): Add unlinkdir.
10598
10599         test-fstatat: new test, to expose Solaris 9 bugs
10600         * tests/test-stat.c (main): Factor guts...
10601         * tests/test-stat.h (test_stat_func): ...into new file.
10602         * tests/test-lstat.c (main): Factor guts...
10603         * tests/test-lstat.h (test_lstat_func): ...into new file.
10604         * tests/test-fstatat.c: New file.
10605         * modules/stat-tests (Files): Add test-stat.h.
10606         * modules/lstat-tests (Files): Add test-lstat.h.
10607         (Depends-on): Add stdbool.
10608         * modules/openat-tests (Depends-on): Add pathmax.
10609         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
10610         (Makefile.am): Run new test.
10611
10612         remove: new module, for mingw and Solaris 9 bugs
10613         * modules/remove: New file.
10614         * lib/remove.c: Likewise.
10615         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
10616         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
10617         * modules/stdio (Makefile.am): Use them.
10618         * lib/stdio.in.h (remove): Declare replacement.
10619         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10620         * doc/posix-functions/remove.texi (remove): Likewise.
10621         * modules/remove-tests: New test.
10622         * tests/test-remove.c: Likewise.
10623
10624         unlink: new module, for Solaris 9 bug
10625         * modules/unlink: New file.
10626         * lib/unlink.c: Likewise.
10627         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
10628         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10629         * modules/unistd (Makefile.am): Use them.
10630         * lib/unistd.in.h (stat): Declare replacement.
10631         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10632         * doc/posix-functions/unlink.texi (unlink): Likewise.
10633         * modules/unlink-tests: New test.
10634         * tests/test-unlink.c: Likewise.
10635
10636         lstat: fix Solaris 9 bug
10637         * lib/lstat.c (lstat): Also check for trailing slash on
10638         non-symlink, non-directories.  Use stat module to simplify logic.
10639         * doc/posix-functions/lstat.texi (lstat): Document it.
10640         * modules/lstat-tests (Depends-on): Add errno, same-inode.
10641         (configure.ac): Check for symlink.
10642         * tests/test-lstat.c (main): Add more tests.
10643
10644         stat: add as dependency to other modules
10645         * modules/chown (Depends-on): Add stat.
10646         * modules/euidaccess (Depends-on): Likewise.
10647         * modules/fchdir (Depends-on): Likewise.
10648         * modules/isdir (Depends-on): Likewise.
10649         * modules/link (Depends-on): Likewise.
10650         * modules/lstat (Depends-on): Likewise.
10651         * modules/mkdir-p (Depends-on): Likewise.
10652         * modules/modechange (Depends-on): Likewise.
10653         * modules/open (Depends-on): Likewise.
10654         * modules/readlink (Depends-on): Likewise.
10655         * modules/same (Depends-on): Likewise.
10656
10657         stat: fix Solaris 9 bug
10658         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
10659         slash.
10660         * lib/stat.c (rpl_stat): Work around it.
10661         * doc/posix-functions/stat.texi (stat): Update documentation.
10662
10663         stat: new module, for mingw bug
10664         * modules/stat: New file.
10665         * lib/stat.c: Likewise.
10666         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
10667         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10668         * modules/sys_stat (Makefile.am): Use them.
10669         * lib/sys_stat.in.h (stat): Declare replacement.
10670         * lib/openat.c (fstatat): Deal with lstat and stat being function
10671         macros.
10672         * modules/openat (Depends-on): Add inline.
10673         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10674         * doc/posix-functions/stat.texi (stat): Likewise.
10675         * modules/stat-tests: New test.
10676         * tests/test-stat.c: Likewise.
10677
10678 2009-09-19  Jim Meyering  <meyering@redhat.com>
10679
10680         syntax-check: detect unnecessary inclusion of canonicalize.h
10681         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
10682
10683 2009-09-19  Eric Blake  <ebb9@byu.net>
10684
10685         canonicalize-lgpl: adjust clients to use correct header
10686         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10687         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
10688         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
10689         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
10690         * lib/progreloc.c (includes): Likewise.
10691
10692 2009-09-19  Jim Meyering  <meyering@redhat.com>
10693
10694         test-posixtm.c: correct a comment
10695         * tests/test-posixtm.c: Correct first-line comment.
10696         Spotted by Eric Blake.
10697
10698 2009-09-16  Jim Meyering  <meyering@redhat.com>
10699
10700         posixtm-tests: make T const-correct; add a test case
10701         * tests/test-posixtm.c (T): Declare const.
10702         Add a test for -(2^31+1).
10703         Remove useless can-succeed-only-in-2002 test.
10704
10705         posixtm-tests: adjust the sole failing test
10706         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
10707         expected output matches what mktime now produces.  Cross-checked via
10708         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
10709
10710         posixtm: move #ifdef'd tests into a new module
10711         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
10712         * tests/test-posixtm.c: ... this new file.
10713         * modules/posixtm-tests: New module.
10714
10715 2009-09-19  Eric Blake  <ebb9@byu.net>
10716
10717         openat: simplify use of at-func.c
10718         * lib/at-func.c (includes): Include prerequisites here, to
10719         simplify requirements on client files.
10720         * lib/openat-priv.h: Add double-inclusion guard.
10721         * lib/faccessat.c (includes): Simplify.
10722         * lib/fchmodat.c (includes): Likewise.
10723         * lib/fchownat.c (includes): Likewise.
10724         * lib/mkdirat.c (includes): Likewise.
10725         * lib/mkfifoat.c (includes): Likewise.
10726         * lib/symlinkat.c (includes): Likewise.
10727
10728         openat: allow return of fd 0
10729         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
10730         * modules/save-cwd (Depends-on): Replace fcntl-safer with
10731         unistd-safer.
10732         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
10733         <fcntl.h>; this module does not leak fds.
10734         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
10735         must be allowed to return 0, leaving openat_safer to add the
10736         safety.
10737         (openat_permissive): Avoid writing to just-opened fd 2 if
10738         restoring the current directory fails.
10739         * lib/openat-die.c (openat_restore_fail): Add comment.
10740         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
10741         (save_cwd): Guarantee safe fd, but without use of open_safer.
10742         * tests/test-openat.c: New test.
10743         * modules/openat-tests (Files, Makefile.am): Distribute and build
10744         new file.
10745
10746         relocatable-prog-wrapper: fix build
10747         * modules/relocatable-prog-wrapper (Files): Update name of
10748         canonicalize m4 file, broken on 2009-09-17.
10749         Reported by emad hajjar <aleppos@hotmail.com>.
10750
10751 2009-09-19  Bruno Haible  <bruno@clisp.org>
10752
10753         * lib/safe-alloc.h: Use the standard header with GPL copyright.
10754         * lib/safe-alloc.c: Likewise.
10755         Reported by Ian Beckwith <ianb@erislabs.net>.
10756
10757 2009-09-18  Bruno Haible  <bruno@clisp.org>
10758
10759         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
10760         Reported by <erobles@sensacd.com.mx>.
10761
10762 2009-09-17  Eric Blake  <ebb9@byu.net>
10763
10764         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
10765         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
10766         slashes when checking if last component is missing.
10767         * tests/test-canonicalize.c (main): Test this.
10768
10769         canonicalize, canonicalize-lgpl: honor // if distinct from /
10770         * modules/canonicalize (Files): Add double-slash-root.m4.
10771         * modules/canonicalize-lgpl (Files): Likewise.
10772         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10773         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
10774         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
10775         fallback definition.
10776         (canonicalize_filename_mode): Use it to protect //.
10777         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
10778         (__realpath): Likewise.
10779         * tests/test-canonicalize.c (main): Test this.
10780         * tests/test-canonicalize-lgpl.c (main): Likewise.
10781         * modules/canonicalize-tests (Depends-on): Add same-inode.
10782         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10783
10784         canonicalize-lgpl: fix glibc bug with trailing slash
10785         * m4/canonicalize-lgpl.m4: Move contents...
10786         * m4/canonicalize.m4: ...here.
10787         (gl_CANONICALIZE_LGPL): Factor realpath check...
10788         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
10789         glibc 2.3.5 bug, fixed 2005-04-27.
10790         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
10791         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
10792         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
10793         * modules/canonicalize-lgpl (Files): Manage file rename.
10794         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10795         * modules/stdlib (Makefile.am): Substitute witness.
10796         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
10797         is needed.
10798         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
10799         replacement is required.
10800         * lib/canonicalize.c (canonicalize_file_name): Likewise.
10801         * doc/glibc-functions/canonicalize_file_name.texi
10802         (canonicalize_file_name): Document this.
10803         * doc/posix-functions/realpath.texi (realpath): Likewise.
10804
10805         canonicalize-lgpl: reject non-directory with trailing slash
10806         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
10807         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
10808         catches failures in glibc 2.3.5.
10809         * tests/test-canonicalize.c (main): Likewise.
10810
10811         canonicalize-lgpl: use native realpath if it works
10812         * lib/canonicalize-lgpl.c (realpath): Guard with
10813         FUNC_REALPATH_WORKS.
10814         * lib/stdlib.in.h (realpath): Make declaration optional based on
10815         HAVE_REALPATH.
10816         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
10817         native realpath works.
10818         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10819         * modules/stdlib (Makefile.am): Substitute witness.
10820
10821         canonicalize, canonicalize-lgpl: use <stdlib.h>
10822         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
10823         (Include): Mention <stdlib.h>.
10824         (configure.ac): Mention functions we provide.
10825         * modules/canonicalize (configure.ac): Likewise.
10826         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
10827         realpath if canonicalize_file_name is missing.
10828         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
10829         * modules/stdlib (Makefile.am): Substitute witnesses.
10830         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
10831         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
10832         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
10833         * NEWS: Document this.
10834         * doc/glibc-functions/canonicalize_file_name.texi
10835         (canonicalize_file_name): Likewise.
10836         * doc/posix-functions/realpath.texi (realpath): Likewise.
10837         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
10838
10839         test-canonicalize: consolidate into single C program
10840         * tests/test-canonicalize.sh: Delete; move setup into...
10841         * tests/test-canonicalize.c (main): ...the program, making it
10842         easier to run in debugger.  Add some tests.
10843         * modules/canonicalize-tests (Files): Remove unused file.
10844         (Depends-on): Add progname.
10845         (configure.ac, Makefile.am): Simplify.
10846
10847         test-canonicalize-lgpl: consolidate into single C program
10848         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
10849         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
10850         easier to run in debugger.  Add some tests.
10851         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
10852         (configure.ac, Makefile.am): Simplify.
10853
10854         canonicalize: avoid resolvepath
10855         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
10856         unnecessary checks.
10857         * lib/canonicalize.c (includes): Simplify.
10858         (canonicalize_file_name): Drop resolvepath implementation.
10859         * modules/canonicalize (Depends-on): Drop filenamecat.
10860
10861         canonicalize: don't lose errno
10862         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
10863         over calls to free.
10864
10865         canonicalize: simplify errno handling
10866         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
10867         assignment.
10868
10869         canonicalize, canonicalize-lgpl: update module dependencies
10870         * modules/canonicalize (Depends-on): Add extensions, lstat,
10871         pathmax, stdlib.
10872         (Files): Drop pathmax.h.
10873         (configure.ac): Adjust macro name.
10874         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
10875         lstat, stdlib, sys_stat.
10876         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
10877         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
10878         extensions.
10879         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
10880         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
10881         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
10882         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
10883         declaration, if available.
10884         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
10885         we can rely on the readlink module.
10886         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
10887         (includes): Use <unistd.h> unconditionally.
10888
10889 2009-09-17  Eric Blake  <ebb9@byu.net>
10890
10891         maint: make Include sections of modules consistent
10892         * modules/alloca: Use only header name; no need to list #include.
10893         * modules/alloca-opt: Likewise.
10894         * modules/arpa_inet: Likewise.
10895         * modules/canon-host: Likewise.
10896         * modules/configmake: Likewise.
10897         * modules/dirent: Likewise.
10898         * modules/eealloc: Likewise.
10899         * modules/environ: Likewise.
10900         * modules/fchdir: Likewise.
10901         * modules/fcntl: Likewise.
10902         * modules/fcntl-h: Likewise.
10903         * modules/gethrxtime: Likewise.
10904         * modules/gettime: Likewise.
10905         * modules/ignore-value: Likewise.
10906         * modules/inet_ntop: Likewise.
10907         * modules/inet_pton: Likewise.
10908         * modules/inttypes: Likewise.
10909         * modules/isnand-nolibm: Likewise.
10910         * modules/isnanf-nolibm: Likewise.
10911         * modules/mbchar: Likewise.
10912         * modules/mbfile: Likewise.
10913         * modules/mbiter: Likewise.
10914         * modules/mbuiter: Likewise.
10915         * modules/netdb: Likewise.
10916         * modules/netinet_in: Likewise.
10917         * modules/nproc: Likewise.
10918         * modules/pagealign_alloc: Likewise.
10919         * modules/poll: Likewise.
10920         * modules/printf-frexp: Likewise.
10921         * modules/pthread: Likewise.
10922         * modules/putenv: Likewise.
10923         * modules/random_r: Likewise.
10924         * modules/relocatable-prog: Likewise.
10925         * modules/search: Likewise.
10926         * modules/select: Likewise.
10927         * modules/selinux-h: Likewise.
10928         * modules/settime: Likewise.
10929         * modules/signal: Likewise.
10930         * modules/size_max: Likewise.
10931         * modules/socklen: Likewise.
10932         * modules/ssize_t: Likewise.
10933         * modules/stdarg: Likewise.
10934         * modules/stdbool: Likewise.
10935         * modules/stddef: Likewise.
10936         * modules/stdint: Likewise.
10937         * modules/stdio: Likewise.
10938         * modules/stdlib: Likewise.
10939         * modules/string: Likewise.
10940         * modules/strings: Likewise.
10941         * modules/sys_file: Likewise.
10942         * modules/sys_ioctl: Likewise.
10943         * modules/sys_select: Likewise.
10944         * modules/sys_socket: Likewise.
10945         * modules/sys_stat: Likewise.
10946         * modules/sys_time: Likewise.
10947         * modules/sys_times: Likewise.
10948         * modules/sys_utsname: Likewise.
10949         * modules/sys_wait: Likewise.
10950         * modules/sysexits: Likewise.
10951         * modules/time: Likewise.
10952         * modules/times: Likewise.
10953         * modules/tmpfile: Likewise.
10954         * modules/trim: Likewise.
10955         * modules/unistd: Likewise.
10956         * modules/wchar: Likewise.
10957         * modules/wctype: Likewise.
10958
10959 2009-09-17  Bruno Haible  <bruno@clisp.org>
10960
10961         Make getdate.y compile on QNX and NetBSD 5 / i386.
10962         * m4/getdate.m4 (gl_GETDATE): Conditionally define
10963         TIME_T_FITS_IN_LONG_INT.
10964         * lib/getdate.y (long_time_t): New type.
10965         (relative_time): Change type of 'seconds' field to long_time_t.
10966         (get_date): Update types of local variables. Check against overflow
10967         during conversion from long_time_t to time_t.
10968         Reported by Matt Kraai <kraai@ftbfs.org>
10969         and Hasso Tepper <hasso@netbsd.org>.
10970
10971 2009-09-17  Bruno Haible  <bruno@clisp.org>
10972
10973         * modules/COPYING: Update copyright years.
10974         * modules/README: Likeiwse.
10975         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
10976         Reported by Ian Beckwith <ianb@erislabs.net>.
10977
10978 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10979
10980         * users.txt: Update references for gnuit package.
10981
10982 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10983
10984         * m4/getdelim.m4: Fix typo in copyright line.
10985
10986 2009-09-17  Bruno Haible  <bruno@clisp.org>
10987
10988         * lib/atoll.c: Use the standard header with GPL copyright.
10989         * lib/argz.in.h: Likewise.
10990         * lib/glob.c: Likewise.
10991         * lib/glob-libc.h: Likewise.
10992         * lib/random_r.c: Likewise.
10993         * lib/siglist.h: Likewise.
10994         * lib/strsignal.c: Likewise.
10995         Reported by Ian Beckwith <ianb@erislabs.net>.
10996
10997 2009-09-17  Eric Blake  <ebb9@byu.net>
10998
10999         rmdir: ensure correct dependency order
11000         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
11001
11002 2009-09-17  Bruno Haible  <bruno@clisp.org>
11003
11004         Disable assertion that fails on NetBSD 5 / i386.
11005         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
11006         Reported by Sam Steingold <sds@gnu.org>
11007         and Hasso Tepper <hasso@netbsd.org>.
11008
11009 2009-09-16  Eric Blake  <ebb9@byu.net>
11010
11011         unlinkdir: port to mingw
11012         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
11013         on which no one can unlink a directory.
11014
11015         stdlib: sort witness names
11016         * modules/stdlib (Makefile.am): Sort replacements.
11017         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
11018         * lib/stdlib.in.h: Likewise.
11019
11020         parse-duration-tests: avoid link failure
11021         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
11022         LIBINTL.
11023         Reported by Tom G. Christensen.
11024
11025         openat-tests: ensure unlinkat behaves like rmdir
11026         * tests/test-rmdir.c (main): Factor guts...
11027         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
11028         * modules/rmdir-tests (Files): Ship new file.
11029         * modules/openat-tests: New test.
11030         * tests/test-unlinkat.c: Likewise.
11031
11032         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
11033         * modules/rmdir-errno (Status, Notice): Now obsolete.
11034
11035         rmdir: work around cygwin 1.5.x and mingw bugs
11036         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
11037         * lib/rmdir.c (rmdir): Work around it.
11038         * modules/rmdir (Status, Notice): No longer obsolete.
11039         (Files): Add dos.m4.
11040         (Depends-on): Add unistd.
11041         (configure.ac): Set witnesses.
11042         (License): Relax to LGPLv2+.
11043         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
11044         * modules/unistd (Makefile.am): Substitute witnesses.
11045         * lib/unistd.in.h (rmdir): Declare replacement.
11046         * doc/posix-functions/rmdir.texi (rmdir): Document this.
11047         * modules/rmdir-tests: New tests.
11048         * tests/test-rmdir.c: Likewise.
11049
11050 2009-09-15  Eric Blake  <ebb9@byu.net>
11051
11052         fchdir: improve use of replacement functions
11053         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
11054         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
11055         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
11056         REPLACE_CLOSEDIR.
11057         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
11058         * modules/sys_stat (Makefile.am): Substitute correct witness.
11059         * modules/dirent (Makefile.am): Likewise.
11060         * modules/unistd (Makefile.am): Likewise.
11061         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
11062         * lib/unistd.in.h (dup): Likewise.
11063         * lib/sys_stat.in.h (fstat): Likewise.
11064
11065         maint: ignore gnulib-tool temp files
11066         * .gitignore: Ignore files created during gnulib-tool --test.
11067
11068 2009-09-13  Jim Meyering  <meyering@redhat.com>
11069
11070         posixtm: don't reject a time that specify "60" as the number of seconds
11071         * lib/posixtm.c (posixtime): The code to reject invalid dates
11072         would also reject a time specified with the .60 suffix.
11073         But POSIX allows that, in order to accommodate leap seconds.
11074         So don't reject it.
11075         (main): Adjust tests accordingly.
11076         * modules/posixtm (Depends-on): Add stpcpy.
11077
11078 2009-09-11  Jim Meyering  <meyering@redhat.com>
11079
11080         announce-gen: include [$release_type] in emitted Subject:
11081         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
11082         e.g., [stable] in the emitted Subject: line.
11083
11084 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11085
11086         Remove obsolete macros from several modules.
11087         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
11088         obsolete Autoconf macros with their modern counterparts.
11089         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
11090         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
11091         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
11092         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
11093         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
11094         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
11095         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
11096         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
11097         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
11098         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
11099         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
11100         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
11101         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
11102         * m4/sockets.m4 (gl_SOCKETS): Likewise.
11103         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
11104         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
11105         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
11106         * m4/time_r.m4 (gl_TIME_R): Likewise.
11107         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
11108         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
11109         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
11110
11111         Fix copyright header in build-aux scripts.
11112         * build-aux/git-version-gen: Fix copyright header to match GPLv3
11113         recommendation.
11114         * build-aux/ncftpput-ftp: Likewise.
11115         * build-aux/update-copyright: Likewise.
11116
11117 2009-09-09  Eric Blake  <ebb9@byu.net>
11118
11119         test-link: allow Linux choice of errno
11120         * tests/test-link.c (main): Relax test for alternate error.
11121
11122         strndup: fix improper m4 caching
11123         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
11124         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
11125         (gl_PREREQ_STRNDUP): Delete.
11126         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
11127         * modules/string (Makefile.am): Substitute it.
11128         * lib/string.in.h (strndup): Modernize prototype.
11129
11130         getcwd: port to mingw
11131         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
11132         different from the POSIX assumptions made throughout the getcwd
11133         module; fortunately, the mingw getcwd does not need replacement.
11134         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
11135         * modules/getcwd-tests: New test.
11136         * tests/test-getcwd.c: Likewise.
11137
11138         link: fix platform bugs
11139         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
11140         * lib/link.c (link): Work around them.  Fix related mingw bug.
11141         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
11142         * modules/unistd (Makefile.am): Substitute it.
11143         * lib/unistd.in.h (link): Declare replacement.
11144         * doc/posix-functions/link.texi (link): Document this.
11145         * modules/link (Depends-on): Add strdup-posix, sys_stat.
11146
11147         test-link: consolidate into single C program, test more cases
11148         * tests/test-link.sh: Delete.
11149         * tests/test-link.c: Test more error conditions.  Exposes bugs on
11150         at least Cygwin and Solaris.
11151         * modules/link-tests (Files): Remove unused file.
11152         (Depends-on): Add errno, sys_stat.
11153         (Makefile.am): Simplify.
11154
11155 2009-09-08  Bruno Haible  <bruno@clisp.org>
11156
11157         Work around towlower, towupper bug on mingw.
11158         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
11159         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
11160         * doc/posix-functions/towlower.texi: Mention the mingw bug.
11161         * doc/posix-functions/towupper.texi: Likewise.
11162         Reported by Eric Blake.
11163
11164 2009-09-08  Jim Meyering  <meyering@redhat.com>
11165
11166         build: don't try to run autoheader if we don't use it
11167         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
11168         is not used in configure.ac.
11169
11170 2009-09-08  Eric Blake  <ebb9@byu.net>
11171
11172         euidaccess: fix compilation error
11173         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
11174
11175         rawmemchr: relax license
11176         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
11177         okay.
11178         Reported by Jim Meyering.
11179
11180         mkfifoat: new module
11181         * modules/mkfifoat: New file.
11182         * lib/mkfifoat.c: Likewise.
11183         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
11184         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11185         * modules/sys_stat (Makefile.am): Use them.
11186         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
11187         * MODULES.html.sh (File system functions): Mention module.
11188         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
11189         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
11190         * modules/mkfifoat-tests: New test.
11191         * tests/test-mkfifoat.c: Likewise.
11192
11193         strchrnul: relax license
11194         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
11195         okay.
11196         Reported by Jim Meyering.
11197
11198 2009-09-08  Eric Blake  <ebb9@byu.net>
11199
11200         fstatat: fix compilation on Solaris
11201         * lib/fstatat.c (includes): Add fcntl.h.
11202         Reported by Pádraig Brady.
11203
11204 2009-09-07  Eric Blake  <ebb9@byu.net>
11205
11206         rename: modernize replacement
11207         * modules/rename (Depends-on): Add stdio.
11208         (configure.ac): Declare witness.
11209         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
11210         stdio take care of replacement.
11211         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
11212         * modules/stdio (Makefile.am): Substitute them.
11213         * lib/stdio.in.h (rename): Declare replacement.
11214         * lib/rename.c (includes): Allow cross-compilation to non-windows
11215         machines.
11216         * doc/posix-functions/rename.texi (rename): Improve
11217         documentation.
11218
11219         stdio: sort witness names
11220         * modules/stdio (Makefile.am): Sort replacements.
11221         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11222         * lib/stdio.in.h: Likewise.
11223
11224         getcwd: minor cleanups
11225         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
11226         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
11227
11228         openat: provide more convenience names
11229         * modules/faccessat (configure.ac): Add C witness.
11230         * lib/unistd.in.h (readlinkat): Fix typo.
11231         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
11232         convenience wrappers.
11233         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
11234         wrappers in syntax checks.
11235
11236 2009-09-06  Eric Blake  <ebb9@byu.net>
11237
11238         doc: fix comments in recent patches
11239         * lib/faccessat.c: Mention correct function.
11240         * lib/fchmodat.c: Likewise.
11241         * lib/fchownat.c: Likewise.
11242         * lib/symlinkat.c: Likewise.
11243         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
11244         constants.
11245
11246         faccessat, symlinkat: continue cleanup of previous patch
11247         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
11248         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
11249         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
11250         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
11251         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
11252         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
11253         set.
11254
11255 2009-09-06  Bruno Haible  <bruno@clisp.org>
11256
11257         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
11258         (fstatat): Declare if GNULIB_FSTATAT is set.
11259         (mkdirat): Declare if GNULIB_MKDIRAT is set.
11260         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
11261         (unlinkat): Declare if GNULIB_UNLINKAT is set.
11262         * modules/fcntl-h (Files): Remove m4/openat.m4.
11263         * modules/sys_stat (Files): Remove m4/openat.m4.
11264         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
11265         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
11266         * modules/unistd (Files): Remove m4/openat.m4.
11267         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
11268         GNULIB_OPENAT.
11269         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
11270         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
11271         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
11272         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
11273         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
11274         gl_OPENAT_DEFAULTS.
11275         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
11276         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
11277         Don't require gl_OPENAT_DEFAULTS.
11278         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
11279         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
11280         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
11281         (gl_OPENAT_DEFAULTS): Remove macro.
11282
11283 2009-09-06  Bruno Haible  <bruno@clisp.org>
11284
11285         * modules/openat (configure.ac): Remove unneeded witness.
11286
11287 2009-09-06  Bruno Haible  <bruno@clisp.org>
11288
11289         Set errno to ENOSYS when a function is entirely unsupported.
11290         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
11291         EOPNOTSUPP.
11292         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11293         * modules/chown (Depends-on): Remove errno.
11294
11295 2009-09-06  Bruno Haible  <bruno@clisp.org>
11296
11297         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
11298
11299 2009-09-06  Bruno Haible  <bruno@clisp.org>
11300
11301         * lib/sys_stat.in.h: Fix preprocessor command indentation.
11302
11303 2009-09-06  Ben Pfaff  <blp@gnu.org>
11304             Bruno Haible  <bruno@clisp.org>
11305
11306         Work around a glibc bug in strtok_r.
11307         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
11308         Undefine if UNDEFINE_STRTOK_R is set.
11309         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
11310         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11311         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
11312         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
11313         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
11314         UNDEFINE_STRTOK_R.
11315         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
11316
11317 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
11318
11319         exclude: minor fix
11320         * lib/exclude.c: Include wctype.h
11321
11322 2009-09-06  Akim Demaille  <demaille@gostai.com>
11323
11324         bootstrap: improve error message
11325         * build-aux/bootstrap (find_tool): Upon failure, report the list
11326         of candidates.
11327         Honor the initial value of the envvar.
11328
11329 2009-09-05  Eric Blake  <ebb9@byu.net>
11330
11331         symlinkat: new module
11332         * modules/symlinkat: New file.
11333         * lib/symlinkat.c: Likewise.
11334         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
11335         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11336         * modules/unistd (Makefile.am): Use them.
11337         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
11338         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
11339         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
11340         * MODULES.html.sh (File system functions): Mention module.
11341         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
11342         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
11343         * modules/symlinkat-tests: New test.
11344         * tests/test-symlinkat.c: Likewise.
11345
11346         test-openat-safer: add more checks
11347         * tests/test-openat-safer.c (main): Check more code paths.
11348
11349 2009-09-05  Jim Meyering  <meyering@redhat.com>
11350
11351         syntax-check: detect unnecessary inclusion of openat.h
11352         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
11353
11354 2009-09-05  Bruno Haible  <bruno@clisp.org>
11355
11356         Support towlower, towupper.
11357         * doc/posix-functions/towlower.texi: Mention module wctype.
11358         * doc/posix-functions/towupper.texi: Likewise.
11359         * lib/wctype.in.h (towlower, towupper): New functions.
11360         * tests/test-wctype.c: Include stdio.h, stdlib.h.
11361         (ASSERT): New macro.
11362         (e): New variable.
11363         (main): Test also towlower, towupper. Test WEOF argument.
11364         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11365
11366 2009-09-05  Bruno Haible  <bruno@clisp.org>
11367
11368         Fix conversion behaviour when the input is invalid.
11369         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
11370         mark occurring in first pass of indirect conversion.
11371         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
11372         input.
11373         Found by clang's static analyzer.
11374
11375 2009-09-05  Bruno Haible  <bruno@clisp.org>
11376
11377         * tests/test-striconveh.c (main): Test indirect conversion on platforms
11378         where direct conversion is possible.
11379
11380 2009-09-04  Eric Blake  <ebb9@byu.net>
11381
11382         openat: fail with ENOENT on empty name
11383         * lib/openat-proc.c (openat_proc_name): Special-case the empty
11384         buffer.
11385
11386         link-follow: fix logic bug in prior patch
11387         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
11388         reversed sense of yes and no in prior patch.  Avoid confusing
11389         compilation failure with desired semantics.
11390
11391         link-follow: accomodate mingw and cross-compilation
11392         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
11393         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
11394         cross-compilation results to -1, to make linkat easier to
11395         implement when cross-compiling.  Trivially support mingw.
11396         * modules/link-follow (configure.ac): Call new name.
11397         * NEWS: Mention this.
11398
11399 2009-09-03  Eric Blake  <ebb9@byu.net>
11400
11401         faccessat: compile replacement
11402         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
11403         needed.
11404
11405         fts: fix compilation error
11406         * lib/fts.c (includes): Re-add "openat.h", for
11407         openat_needs_fchdir.
11408
11409         faccessat: new module
11410         * modules/faccessat: New file.
11411         * lib/faccessat.c: Likewise.
11412         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
11413         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11414         * modules/unistd (Makefile.am): Use it.
11415         * lib/unistd.in.h (faccessat): Declare it.
11416         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
11417         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
11418         * MODULES.html.sh (File system functions): Mention it.
11419         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
11420         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
11421
11422         euidaccess: prefer POSIX over non-standard implementation
11423         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
11424         * lib/euidaccess.c (euidaccess): Use it if available.
11425
11426         openat: make template easier to use
11427         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
11428         AT_FUNC_F2 to be undefined.
11429         (VALIDATE_FLAG): New macro; use it to reject bad flags.
11430         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
11431         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
11432         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
11433         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
11434         Likewise.
11435         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
11436         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
11437         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
11438         Likewise.
11439
11440         openat: declare in POSIX headers
11441         * NEWS: Mention this.
11442         * modules/openat (configure.ac): Declare witnesses.
11443         (Depends-on): Add fcntl-h, sys_stat, unistd.
11444         (Include): Mention correct headers.
11445         * modules/fcntl-h (Depends-on): Add link-warning.
11446         (Files): Add openat.m4.
11447         (Makefile.am): Substitute witnesses.
11448         * modules/sys_stat (Files, Makefile.am): Likewise.
11449         * modules/unistd (Files, Makefile.am): Likewise.
11450         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
11451         (gl_OPENAT_DEFAULTS): New macro.
11452         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
11453         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
11454         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
11455         (SYS_STAT_H): Remove unused variable.
11456         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
11457         * lib/fcntl--.h (includes): Remove unneeded header.
11458         * lib/openat-safer.c (includes): Likewise.
11459         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
11460         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
11461         appropriate headers.
11462         (__OPENAT_PREFIX): Delete.
11463         * lib/fcntl.in.h (openat): Provide declaration.
11464         (AT_FDCWD): Fix Solaris bug.
11465         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
11466         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
11467         * lib/fchmodat.c (includes):  Adjust to find declaration.
11468         * lib/fchownat.c (includes): Likewise.
11469         * lib/mkdirat.c (includes): Likewise.
11470         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
11471         still visible.
11472
11473 2009-09-02  Eric Blake  <ebb9@byu.net>
11474
11475         errno: use consistently
11476         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
11477         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
11478         * lib/canonicalize.c (ELOOP): Likewise.
11479         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
11480         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
11481         * lib/lchown.c (EOPNOTSUPP): Likewise.
11482         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
11483         * lib/savewd.c (ESTALE): Likewise.
11484         * lib/settime.c (ENOSYS): Likewise.
11485         * lib/utimens.c (ENOSYS): Likewise.
11486         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
11487         * lib/chdir-safer.c (ELOOP): Likewise.
11488         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
11489         * modules/c-stack (Depends-on): Add errno.
11490         * modules/canonicalize (Depends-on): Likewise.
11491         * modules/chdir-safer (Depends-on): Likewise.
11492         * modules/fdopendir (Depends-on): Likewise.
11493         * modules/inet_ntop (Depends-on): Likewise.
11494         * modules/inet_pton (Depends-on): Likewise.
11495         * modules/lchown (Depends-on): Likewise.
11496         * modules/openat (Depends-on): Likewise.
11497         * modules/savewd (Depends-on): Likewise.
11498         * modules/settime (Depends-on): Likewise.
11499         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
11500
11501         fts: avoid leaking fds
11502         * modules/fts (Depends-on): Add cloexec.
11503         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
11504         flag.
11505
11506         fts: make directory fds more robust
11507         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
11508         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
11509
11510         backupfile, chdir-long, fts, savedir: make safer
11511         * lib/backupfile.c (includes): Use "dirent--.h", since
11512         numbered_backup can write to stderr during readdir.
11513         * lib/savedir.c (includes): Likewise.
11514         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
11515         emulation can write to stderr on failure.
11516         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
11517         * lib/getcwd.c: Document why opendir_safer is unused.
11518         * lib/glob.c: Likewise.
11519         * lib/scandir.c: Likewise.
11520         * lib/openat-proc.c: Likewise, for open_safer.
11521         * modules/backupfile (Depends-on): Add dirent-safer.
11522         * modules/savedir (Depends-on): Likewise.
11523         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
11524         * modules/chdir-long (Depends-on): Add openat-safer.
11525
11526         openat-safer: new module
11527         * modules/openat-safer: New file.
11528         * lib/openat-safer.c: Likewise.
11529         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
11530         * lib/fcntl-safer.h (openat_safer): Declare.
11531         * lib/fcntl--.h (openat): Override.
11532         * MODULES.html.sh (File descriptor based I/O): Mention it.
11533         * lib/openat.h: Add double-inclusion guards.
11534         * lib/openat.c (includes): Only include "fcntl-safer.h", not
11535         "fcntl--.h", so we can implement openat.
11536         * modules/openat-safer-tests: New test.
11537         * tests/test-openat-safer.c: New file.
11538
11539         dirent-safer: new module
11540         * modules/dirent-safer: New file.
11541         * lib/dirent--.h: Likewise.
11542         * lib/dirent-safer.h: Likewise.
11543         * lib/opendir-safer.c: Likewise.
11544         * m4/dirent-safer.m4: Likewise.
11545         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
11546         * modules/dirent-safer-tests: New test.
11547         * tests/test-dirent-safer.c: New file.
11548         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
11549
11550         fdopendir: optimize on mingw
11551         * lib/unistd.in.h (_gl_directory_name): New prototype.
11552         * lib/fchdir.c (_gl_directory_name): Implement it.
11553         (fchdir): Use it to simplify implementation.
11554         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
11555         fchdir, when available, to avoid calling [f]chdir().
11556
11557         fdopendir: split into its own module
11558         * lib/openat.c (fdopendir): Move...
11559         * lib/fdopendir.c: ...into new file.
11560         * modules/fdopendir: New module.
11561         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
11562         * modules/openat (Depends-on): Add fdopendir.
11563         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
11564         fdopendir here.
11565         * modules/savedir (Depends-on): Only need fdopendir, not full
11566         openat.
11567         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
11568         * lib/openat.h (fdopendir): Drop prototype.
11569         * lib/dirent.in.h (fdopendir): Provide prototype.
11570         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
11571         * modules/dirent (Makefile.am): Substitute them.
11572         * MODULES.html.sh (File system functions): Mention it.
11573         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
11574         * modules/fdopendir-tests: New file.
11575         * tests/test-fdopendir.c: Likewise.
11576
11577         fchdir: use more consistent macro convention
11578         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
11579         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
11580         REPLACE_FCHDIR, rather than relying on config.h macros.
11581         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
11582         inside a single make-time REPLACE_FCHDIR block, rather than using
11583         the config.h FCHDIR_REPLACEMENT.
11584         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
11585         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
11586         Manage fstat replacement.
11587         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
11588         REPLACE_FCHDIR.
11589         * modules/sys_stat (Files): Add m4/unistd_h.m4.
11590         (Makefile.am): Substitute REPLACE_FCHDIR.
11591         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
11592         FCHDIR_REPLACEMENT.
11593         * lib/dup-safer.c (dup_safer): Likewise.
11594         * lib/dup2.c (rpl_dup2): Likewise.
11595         * lib/dup3.c (rpl_dup3): Likewise.
11596         * lib/open.c (rpl_open): Likewise.
11597
11598         fchdir: simplify error handling, and support dup3
11599         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
11600         stdbool, malloc-posix, realloc-posix.
11601         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
11602         (ensure_dirs_slot): Return false on allocation failure.
11603         (rpl_dup2): Delete.
11604         (_gl_register_dup): New function.
11605         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
11606         (_gl_register_fd): Close fd on allocation failure.
11607         * lib/fcntl.in.h (_gl_register_fd): Update signature.
11608         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
11609         prototype.
11610         (rpl_dup2_fchdir): Delete prototype.
11611         * lib/open.c (open): Update caller.
11612         * lib/dup2.c (dup2): Track fchdir metadata.
11613         * lib/dup3.c (dup3): Likewise.
11614         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
11615         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
11616
11617 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11618
11619         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
11620         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
11621         don't pass arguments to AC_OUTPUT.
11622
11623 2009-09-02  Bruno Haible  <bruno@clisp.org>
11624
11625         * modules/mkdtemp (License): Relicense under LGPLv2+.
11626         Reported by Paolo Bonzini.
11627
11628 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11629
11630         Replace uses of obsolete autoconf macros in Jim's modules.
11631         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
11632         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
11633         can evoke a warning from autoconf when run with -Wobsolete
11634         enabled.  They were declared obsolete for good reasons (see
11635         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
11636         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
11637         should not continue using the deprecated macros.
11638         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
11639         obsolete Autoconf macros with modern counterparts.
11640         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
11641         * m4/dos.m4 (gl_AC_DOS): Likewise.
11642         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
11643         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
11644         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
11645         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
11646         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
11647         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
11648         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
11649         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
11650         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
11651         Likewise.
11652         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
11653         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
11654         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
11655         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
11656         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
11657         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
11658
11659 2009-09-01  Eric Blake  <ebb9@byu.net>
11660
11661         fchdir: fix off-by-one bug in previous patch
11662         * lib/fchdir.c (rpl_fstat): Use correct bounds.
11663         (_gl_unregister_fd): Delete useless if.
11664
11665 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
11666
11667         maint.mk: sort the list of syntax-check rules
11668         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
11669         easier to get a sense of progress when the rules are run sequentially
11670         and take a long time.
11671
11672 2009-09-01  Simon Josefsson  <simon@josefsson.org>
11673
11674         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
11675         * modules/netinet_in: Likewise.
11676         * modules/sys_file: Likewise.
11677         * modules/sys_ioctl: Likewise.
11678         * modules/sys_select: Likewise.
11679         * modules/sys_socket: Likewise.
11680         * modules/sys_stat: Likewise.
11681         * modules/sys_time: Likewise.
11682         * modules/sys_times: Likewise.
11683         * modules/sys_utsname: Likewise.
11684         * modules/sys_wait: Likewise.
11685
11686 2009-09-01  Jim Meyering  <meyering@redhat.com>
11687
11688         fts: help ensure that return values are not ignored
11689         * lib/fts_.h (__GNUC_PREREQ): Define.
11690         (__attribute_warn_unused_result__): Define.
11691         (fts_children, fts_close, fts_open, fts_read): Declare with
11692         __attribute_warn_unused_result__.
11693
11694         fts: fts_close now fails also when closing a dir file descriptor fails
11695         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
11696         and propagate to caller, along with errno.
11697
11698         announce-gen: correct formatting in --help output
11699         * build-aux/announce-gen (usage): Move the one-line description in
11700         --help output "up", to where it belongs, just after Usage:.
11701
11702 2009-08-31  Eric Blake  <ebb9@byu.net>
11703
11704         fchdir: port to mingw
11705         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
11706         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
11707         opened, then use a substitute.
11708         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
11709         replacement.
11710         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
11711         (_gl_register_fd): No need to check stat if open already filters
11712         all directories.
11713         (fchdir): Fix error condition to match POSIX.
11714         * modules/fchdir (Depends-on): Add sys_stat.
11715         * doc/posix-functions/open.texi (open): Document the limitation.
11716         * modules/fchdir-tests: New file.
11717         * tests/test-fchdir.c: Likewise.
11718
11719         canonicalize: allow cross-testing from cygwin to mingw
11720         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
11721         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
11722         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
11723         Likewise.
11724         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
11725         target does not support symlinks.
11726         * tests/test-canonicalize-lgpl.sh: Likewise.
11727
11728         chown: avoid compilation warning on mingw
11729         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
11730         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
11731         mingw.
11732         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11733         * modules/chown (Depends-on): Add errno.
11734
11735 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
11736
11737         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
11738         command.
11739
11740 2009-08-31  Jim Meyering  <meyering@redhat.com>
11741
11742         canonicalize: remove useless initialization
11743         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
11744         initialization of local, "end".
11745
11746 2009-08-30  Bruno Haible  <bruno@clisp.org>
11747
11748         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
11749         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
11750         ENOSYS.
11751
11752 2009-08-30  Bruno Haible  <bruno@clisp.org>
11753
11754         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
11755         /usr/xpg4/bin/tr when it exists.
11756         * tests/test-pipe-filter-gi1.sh: Likewise.
11757
11758 2009-08-30  Bruno Haible  <bruno@clisp.org>
11759
11760         Work around deficient /usr/bin/id program on Solaris.
11761         * tests/test-file-has-acl.sh (ID): New variable.
11762         * tests/test-set-mode-acl.sh (ID): Likewise.
11763         * tests/test-copy-acl.sh (ID): Likewise.
11764         * tests/test-copy-file.sh (ID): Likewise.
11765
11766 2009-08-30  Bruno Haible  <bruno@clisp.org>
11767
11768         New module 'xstriconveh'.
11769         * lib/xstriconveh.h: New file.
11770         * lib/xstriconveh.c: New file.
11771         * modules/xstriconveh: New file.
11772
11773 2009-08-30  Bruno Haible  <bruno@clisp.org>
11774
11775         Make it easier to use mem_cd_iconveh.
11776         * lib/striconveh.h (iconveh_t): New type.
11777         (iconveh_open, iconveh_close): New declarations.
11778         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11779         with a single 'const iconveh_t *' argument.
11780         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
11781         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11782         with a single 'const iconveh_t *' argument.
11783         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
11784         * tests/test-striconveh.c (main): Update.
11785         * NEWS: Mention the change.
11786
11787 2009-08-30  Bruno Haible  <bruno@clisp.org>
11788
11789         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
11790         problem.
11791
11792 2009-08-30  Bruno Haible  <bruno@clisp.org>
11793
11794         Work around iconv_open problem on Solaris.
11795         * lib/iconv_open-solaris.gperf: New file.
11796         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
11797         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
11798         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
11799         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
11800         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
11801         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
11802
11803 2009-08-29  Jim Meyering  <meyering@redhat.com>
11804
11805         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
11806         * top/maint.mk (cvs-check): Remove target; it was just an alias
11807         to the better-named vc-diff-check.
11808         (maintainer-distcheck): Remove rule.  It was used only from
11809         the (alpha/beta/major) target, and all of its commands but one
11810         were coreutils-specific.
11811         (vc-dist): Remove rule.
11812         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
11813         Run vc-diff-check, not vc-dist.
11814         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
11815
11816 2009-08-27  Bruno Haible  <bruno@clisp.org>
11817
11818         * tests/test-bitrotate.c (main): Remove test that uses a shift count
11819         of 0.
11820
11821 2009-08-27  Bruno Haible  <bruno@clisp.org>
11822
11823         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
11824         compilers.
11825         * doc/func.texi: Document the SunPRO C bug.
11826
11827 2009-08-27  Bruno Haible  <bruno@clisp.org>
11828
11829         Fix link error on Solaris.
11830         * tests/test-parse-duration.c (xstrdup): Remove function.
11831
11832 2009-08-26  Pádraig Brady  <P@draigbrady.com>
11833
11834         ignore-value: handle pointer types, too
11835         * lib/ignore-value.h (__attribute__): Remove definition.
11836         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
11837         of a more concise and more-often effective "(void) i" statement.
11838         (ignore_ptr): New function to suppress warnings from functions that
11839         return pointers, and to make it explicit that one function doesn't
11840         handle all cases.
11841
11842 2009-08-25  Bruno Haible  <bruno@clisp.org>
11843
11844         dup2: work around a Linux bug.
11845         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
11846         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
11847         * doc/posix-functions/dup2.texi: Mention the Linux bug.
11848         Reported by Simon Josefsson.
11849
11850 2009-08-25  Jim Meyering  <meyering@redhat.com>
11851
11852         libguestfs uses gnulib
11853         * users.txt: Add libguestfs.
11854
11855 2009-08-24  Eric Blake  <ebb9@byu.net>
11856
11857         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
11858         * lib/pipe2.c (includes): Add binary-io.h.
11859         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
11860
11861 2009-08-24  Bruno Haible  <bruno@clisp.org>
11862
11863         Tolerate declared but missing accept4 syscall.
11864         * lib/accept4.c (accept4): Invoke original accept4 function first, if
11865         available.
11866         * lib/sys_socket.in.h (accept4): If the function is already present,
11867         override it.
11868         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
11869         * modules/accept4 (Makefile.am): Compile accept4.c always.
11870         Reported by Paolo Bonzini and Eric Blake.
11871
11872 2009-08-23  Bruno Haible  <bruno@clisp.org>
11873
11874         New module 'accept4'.
11875         * lib/sys_socket.in.h (accept4): New declaration.
11876         * lib/accept4.c: New file.
11877         * m4/accept4.m4: New file.
11878         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11879         GNULIB_ACCEPT4, HAVE_ACCEPT4.
11880         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
11881         HAVE_ACCEPT4.
11882         * modules/accept4: New file.
11883         * doc/glibc-functions/accept4.texi: Mention the new module.
11884
11885 2009-08-24  Jim Meyering  <meyering@redhat.com>
11886
11887         progname: also set global program_invocation_name, when possible
11888         Before this change, a libtool-enabled program that calls glibc's
11889         error function would report the program name as
11890         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
11891         * modules/progname (configure.ac): Check for a declaration of
11892         program_invocation_name.
11893         * lib/progname.c:  Include <errno.h>.
11894         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
11895         Set program_invocation_name.
11896
11897 2009-08-23  Bruno Haible  <bruno@clisp.org>
11898
11899         * lib/dup3.c: Include <string.h>.
11900
11901 2009-08-23  Bruno Haible  <bruno@clisp.org>
11902
11903         * lib/dup3.c (dup3): Test only once whether the system actually exists.
11904         * lib/pipe2.c (pipe2): Likewise.
11905         Suggested by Eric Blake.
11906
11907 2009-08-23  Bruno Haible  <bruno@clisp.org>
11908
11909         Tolerate declared but missing dup3 syscall.
11910         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
11911         * lib/unistd.in.h (dup3): If the function is already present,
11912         override it.
11913         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
11914         * modules/dup3 (Makefile.am): Compile dup3.c always.
11915         Reported by Paolo Bonzini.
11916
11917 2009-08-23  Bruno Haible  <bruno@clisp.org>
11918
11919         Tolerate declared but missing pipe2 syscall.
11920         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
11921         available.
11922         * lib/unistd.in.h (pipe2): If the function is already present,
11923         override it.
11924         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
11925         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
11926         Reported by Paolo Bonzini.
11927
11928 2009-08-23  Bruno Haible  <bruno@clisp.org>
11929
11930         * lib/pipe2.c (pipe2): Move #ifs inside function.
11931
11932 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11933
11934         quotearg: document limitations of quote_these_too
11935         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
11936         those limitations are created.
11937         * lib/quotearg.h (set_char_quoting): Document that digits and
11938         letters that are special after backslash are not permitted.
11939         (quotearg_char): Cross-reference set_char_quoting documentation.
11940
11941 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
11942
11943         quotearg: implement custom_quoting_style
11944         * lib/quotearg.c: (struct quoting_options): Add left_quote and
11945         right_quote fields.
11946         (set_custom_quoting): New public function.
11947         (quotearg_buffer_restyled): Add left_quote and right_quote
11948         arguments, handle them very much like locale quoting, and update
11949         all uses.
11950         (quotearg_n_custom): New public function.
11951         (quotearg_n_custom_mem): New public function.
11952         (quotearg_custom): New public function.
11953         (quotearg_custom_mem): New public function.
11954         * lib/quotearg.h: Prototype and document new public functions.
11955         (enum quoting_style): For escape_quoting_style and
11956         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
11957         ignored even though they're otherwise like c_quoting_style.
11958         Add custom_quoting_style member and document with comparison to
11959         clocale_quoting_style.
11960         * tests/test-quotearg.c (custom_quotes): New array.
11961         (custom_results): New array.
11962         (main): Extend to test custom quoting.
11963
11964 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11965
11966         quotearg: fix right quote escaping when it's in quote_these_too
11967         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
11968         quote, be sure to prepend only one backslash.
11969         * tests/test-quotearg.c (use_quote_double_quotes): New function.
11970         (main): Test it.
11971
11972 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11973
11974         quotearg-tests: test escaping of embedded locale quotes
11975         * tests/test-quotearg.c (struct result_strings): Add member for
11976         new input.
11977         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
11978         (inputs): Add new input.
11979         (results_g): Add expected results.
11980         (flag_results): Likewise.
11981         (locale_results): Likewise.
11982         (compare_strings): Check those.
11983
11984 2009-08-23  Bruno Haible  <bruno@clisp.org>
11985
11986         Tests for module 'dup3'.
11987         * modules/dup3-tests: New file.
11988         * tests/test-dup3.c: New file.
11989
11990         New module 'dup3'.
11991         * lib/unistd.in.h (dup3): New declaration.
11992         * lib/dup3.c: New file.
11993         * m4/dup3.m4: New file.
11994         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
11995         HAVE_DUP3.
11996         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
11997         * modules/dup3: New file.
11998         * doc/glibc-functions/dup3.texi: Mention the new module.
11999
12000 2009-08-23  Bruno Haible  <bruno@clisp.org>
12001
12002         Tweak the dup2 test.
12003         * tests/test-dup2.c (main): Create the test file empty. Verify that an
12004         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
12005         the test file is still empty. Fix argument order of lseek.
12006
12007 2009-08-23  Bruno Haible  <bruno@clisp.org>
12008
12009         Avoid test link errors when the modules getopt-gnu, gettext are used.
12010         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
12011         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12012
12013 2009-08-23  Bruno Haible  <bruno@clisp.org>
12014
12015         Fix getdtablesize() on mingw.
12016         * lib/getdtablesize.c (getdtablesize): Implement differently.
12017         * lib/unistd.in.h (getdtablesize): Improve comment.
12018
12019 2009-08-23  Bruno Haible  <bruno@clisp.org>
12020
12021         New module 'mkostemp'.
12022         Based on Ulrich Drepper's 2007-08-10 change in glibc.
12023         * lib/stdlib.in.h (mksotemp): New declaration.
12024         * lib/mkostemp.c: New file, from glibc with modifications.
12025         * lib/tempname.h (GT_FILE): Remove outdated comment.
12026         (gen_tempname): Add flags argument.
12027         * lib/tempname.c (__GT_BIGFILE): Remove macro.
12028         (__GT_FILE): Map to 1.
12029         (small_open, large_open): Remove macros.
12030         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
12031         * lib/mkstemp.c (mkstemp): Update.
12032         * lib/mkdtemp.c (mkdtemp): Likewise.
12033         * m4/mkostemp.m4: New file.
12034         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
12035         HAVE_MKOSTEMP.
12036         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
12037         HAVE_MKOSTEMP.
12038         * modules/mkostemp: New file, based on modules/mkstemp.
12039         * doc/glibc-functions/mkostemp.texi: Mention the new module.
12040         * NEWS: Mention the change.
12041
12042 2009-08-23  Bruno Haible  <bruno@clisp.org>
12043
12044         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
12045         Reported by Eric Blake.
12046
12047 2009-08-23  Bruno Haible  <bruno@clisp.org>
12048
12049         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
12050         Reported by Eric Blake.
12051
12052 2009-08-23  Bruno Haible  <bruno@clisp.org>
12053
12054         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
12055         * modules/pipe2 (Depends-on): Likewise.
12056
12057 2009-08-23  Eric Blake  <ebb9@byu.net>
12058
12059         fcntl-h: add O_TTY_INIT support
12060         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
12061         * tests/test-fcntl-h.c (o): Test it.
12062         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12063
12064         fcntl-h: rename from fcntl, in preparation for fcntl(2)
12065         * modules/fcntl: Move <fcntl.h> header replacement...
12066         * modules/fcntl-h: ...to new name, so as not to collide with
12067         like-named function.
12068         * tests/test-fcntl.c: Rename...
12069         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
12070         * modules/fcntl-tests: Rename...
12071         * modules/fcntl-h-tests: ...to this.  Update test file name.
12072         * modules/chdir-long (Depends-on): Update clients.
12073         * modules/chdir-safer (Depends-on): Likewise.
12074         * modules/fcntl-safer (Depends-on): Likewise.
12075         * modules/fts (Depends-on): Likewise.
12076         * modules/mkancesdirs (Depends-on): Likewise.
12077         * modules/mkdir-p (Depends-on): Likewise.
12078         * modules/open (Depends-on): Likewise.
12079         * modules/savewd (Depends-on): Likewise.
12080         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
12081         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12082
12083 2009-08-22  Bruno Haible  <bruno@clisp.org>
12084
12085         * modules/binary-io (License): Relicense under LGPL.
12086         * modules/pipe2 (License): Likewise.
12087
12088 2009-08-22  Bruno Haible  <bruno@clisp.org>
12089
12090         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
12091         return value.
12092         * lib/pipe-filter-gi.c (filter_init): Likewise.
12093         Reported by Eric Blake.
12094
12095 2009-08-22  Bruno Haible  <bruno@clisp.org>
12096
12097         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
12098         * modules/pipe (Depends-on): Add pipe2.
12099
12100 2009-08-22  Bruno Haible  <bruno@clisp.org>
12101
12102         Tests for module 'pipe2'.
12103         * modules/pipe2-tests: New file.
12104         * tests/test-pipe2.c: New file.
12105
12106         New module 'pipe2'.
12107         * lib/unistd.in.h (pipe2): New declaration.
12108         * lib/pipe2.c: New file.
12109         * m4/pipe2.m4: New file.
12110         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
12111         HAVE_PIPE2.
12112         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
12113         * modules/pipe2: New file.
12114         * doc/glibc-functions/pipe2.texi: Mention the new module.
12115
12116 2009-08-22  Bruno Haible  <bruno@clisp.org>
12117
12118         Reference some new glibc functions.
12119         * doc/glibc-functions/accept4.texi: New file.
12120         * doc/glibc-functions/dup3.texi: New file.
12121         * doc/glibc-functions/mkostemp.texi: New file.
12122         * doc/glibc-functions/pipe2.texi: New file.
12123         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
12124         (Glibc sys/socket.h): Refer to accept4.
12125         (Glibc unistd.h): Refer to dup3, pipe2.
12126         Reported by Eric Blake.
12127
12128 2009-08-22  Jim Meyering  <meyering@redhat.com>
12129             Bruno Haible  <bruno@clisp.org>
12130
12131         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
12132         This makes it so packages using automake-1.11's silent-rules option
12133         can print e.g., a single "GEN    configmake.h" line, rather than
12134         the 30+ statements that perform the job.  If you want to see the
12135         actual commands, you can still run "make V=1".
12136         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
12137         so that make output is abbreviated when those variables are defined
12138         appropriately.
12139         * modules/argz: Likewise.
12140         * modules/arpa_inet: Likewise.
12141         * modules/byteswap: Likewise.
12142         * modules/configmake: Likewise.
12143         * modules/dirent: Likewise.
12144         * modules/errno: Likewise.
12145         * modules/fcntl: Likewise.
12146         * modules/float: Likewise.
12147         * modules/fnmatch: Likewise.
12148         * modules/getopt-posix: Likewise.
12149         * modules/glob: Likewise.
12150         * modules/iconv_open: Likewise.
12151         * modules/inttypes: Likewise.
12152         * modules/localcharset: Likewise.
12153         * modules/locale: Likewise.
12154         * modules/math: Likewise.
12155         * modules/netdb: Likewise.
12156         * modules/netinet_in: Likewise.
12157         * modules/poll: Likewise.
12158         * modules/posix_spawnp-tests: Likewise.
12159         * modules/sched: Likewise.
12160         * modules/search: Likewise.
12161         * modules/selinux-h: Likewise.
12162         * modules/signal: Likewise.
12163         * modules/spawn: Likewise.
12164         * modules/stdarg: Likewise.
12165         * modules/stdbool: Likewise.
12166         * modules/stddef: Likewise.
12167         * modules/stdint: Likewise.
12168         * modules/stdio: Likewise.
12169         * modules/stdlib: Likewise.
12170         * modules/string: Likewise.
12171         * modules/strings: Likewise.
12172         * modules/sys_file: Likewise.
12173         * modules/sys_ioctl: Likewise.
12174         * modules/sys_select: Likewise.
12175         * modules/sys_socket: Likewise.
12176         * modules/sys_stat: Likewise.
12177         * modules/sys_time: Likewise.
12178         * modules/sys_times: Likewise.
12179         * modules/sys_utsname: Likewise.
12180         * modules/sys_wait: Likewise.
12181         * modules/sysexits: Likewise.
12182         * modules/time: Likewise.
12183         * modules/unistd: Likewise.
12184         * modules/wchar: Likewise.
12185         * modules/wctype: Likewise.
12186
12187 2009-08-22  Jim Meyering  <meyering@redhat.com>
12188
12189         announce-gen: detect write failure
12190         * build-aux/announce-gen: Add Coda at end.
12191         Remove equivalent-but-more-verbose block at top.
12192
12193 2009-08-19  Akim Demaille  <demaille@gostai.com>
12194
12195         bootstrap: --help to stdout.
12196         * bootstrap (usage): Don't send --help to stderr.
12197         Use a here doc instead of a long string.
12198
12199 2009-08-21  Eric Blake  <ebb9@byu.net>
12200
12201         test-popen-safer: split from test-popen
12202         * tests/test-popen.c (main): Move...
12203         * tests/test-popen.h: ...into new file.
12204         * tests/test-popen-safer2.c: New file.
12205         * modules/popen-tests (Files): Add test-popen.h.
12206         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
12207         Suggested by Bruno Haible.
12208
12209         test-fcntl-safer: split from test-open
12210         * tests/test-open.c (main): Move...
12211         * tests/test-open.h: ...into new file.
12212         * tests/test-fcntl-safer.c: New file.
12213         * modules/open-tests (Files): Add test-open.h.
12214         * modules/fcntl-safer-tests: New file.
12215         Suggested by Bruno Haible.
12216
12217         test-fopen-safer: split from test-fopen
12218         * tests/test-fopen.c (main): Move...
12219         * tests/test-fopen.h: ...into new file.
12220         * tests/test-fopen-safer.c: New file.
12221         * modules/fopen-tests (Files): Add test-fopen.h.
12222         * modules/fopen-safer-tests: New file.
12223         Suggested by Bruno Haible.
12224
12225 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12226
12227         popen-safer: test O_CLOEXEC at run-time.
12228         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
12229
12230 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12231
12232         fcntl: move more flags to the header
12233         * lib/cloexec.c: Do not define FD_CLOEXEC here.
12234         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
12235         * lib/fcntl.in.h: Do both things here.
12236
12237 2009-08-21  Jim Meyering  <meyering@redhat.com>
12238
12239         consistently remove $@-t before redirecting to it
12240         * modules/argz: Remove $@-t and $@ before redirecting to the former.
12241         * modules/alloca-opt: Likewise.
12242         * modules/byteswap: Likewise.
12243         * modules/fnmatch: Likewise.
12244         * modules/getopt-posix: Likewise.
12245         * modules/glob: Likewise.
12246         * modules/poll: Likewise.
12247         * modules/posix_spawnp-tests: Likewise.
12248         * modules/sys_socket: Likewise.
12249         * modules/sysexits: Likewise.
12250
12251 2009-08-21  Eric Blake  <ebb9@byu.net>
12252
12253         popen: simplify access to original popen
12254         * lib/popen.c (rpl_popen): No need to worry about popen being a
12255         macro.
12256         Reported by Bruno Haible.
12257
12258 2009-08-20  Eric Blake  <ebb9@byu.net>
12259
12260         build: avoid some compiler warnings
12261         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
12262         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
12263         type.
12264         (new_exclude_segment, excluded_file_pattern_p)
12265         (excluded_file_name_p): Reduce scope.
12266         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
12267         old-style declaration.
12268
12269 2009-08-20  Simon Josefsson  <simon@josefsson.org>
12270
12271         * tests/test-exclude1.sh: Handle Windows EOL.
12272         * tests/test-exclude2.sh: Likewise.
12273         * tests/test-exclude3.sh: Likewise.
12274         * tests/test-exclude4.sh: Likewise.
12275         * tests/test-exclude5.sh: Likewise.
12276         * tests/test-exclude6.sh: Likewise.
12277         * tests/test-exclude7.sh: Likewise.
12278
12279 2009-08-19  Akim Demaille  <demaille@gostai.com>
12280
12281         bootstrap: find sha1sum when named gsha1sum.
12282         * bootstrap (find_tool): New.
12283         ($SHA1SUM): New.
12284         Use it.
12285
12286 2009-08-20  Jim Meyering  <meyering@redhat.com>
12287
12288         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
12289         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
12290         expression that converts "." in a file name to "\." in the resulting
12291         regexp.  Start with a dummy statement, so that prior shell variable
12292         definitions are expanded portably.  Reported by Simon Josefsson.
12293
12294 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
12295
12296         Fix polling for writeability of a screen buffer.
12297         * lib/poll.c: Distinguish input and screen buffers for the
12298         Win32 implementation.
12299         * lib/select.c: Likewise.
12300
12301 2009-08-19  Eric Blake  <ebb9@byu.net>
12302
12303         popen-safer: prevent popen from clobbering std descriptors
12304         * modules/popen-safer: New file.
12305         * lib/popen-safer.c: Likewise.
12306         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
12307         * lib/stdio--.h (popen): Provide override.
12308         * lib/stdio-safer.h (popen_safer): Provide declaration.
12309         * tests/test-popen.c (includes): Partially test this.
12310         * modules/popen-safer-tests: New file, for more tests.
12311         * tests/test-popen-safer.c: Likewise.
12312         * MODULES.html.sh (file stream based Input/Output): Mention it.
12313
12314         tests: test some of the *-safer modules
12315         * modules/fopen-safer (Depends-on): Add fopen.
12316         * modules/fcntl-safer (Depends-on): Add fcntl.
12317         * modules/stdlib-safer (Depends-on): Add stdlib.
12318         (configure.ac): Set indicator.
12319         * modules/unistd-safer (configure.ac): Likewise.
12320         * modules/tmpfile-safer (configure.ac): Likewise.
12321         (Depends-on): Add tmpfile.
12322         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
12323         active.
12324         * tests/test-fopen.c (includes): Test safer versions when they are
12325         in use.
12326         * tests/test-open.c (includes): Likewise.
12327
12328         popen: fix cygwin 1.5 bug when stdin closed
12329         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
12330         * modules/popen: New file.
12331         * modules/popen-tests: Likewise.
12332         * tests/test-popen.c: Likewise.
12333         * m4/popen.m4: Likewise.
12334         * lib/popen.c: Likewise.
12335         * lib/stdio.in.h (popen): New declaration.
12336         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
12337         * modules/stdio (Makefile.am): Likewise.
12338         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
12339
12340 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
12341
12342         maint.mk: give full control over update-copyright exclusions
12343         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
12344         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
12345         (update-copyright): Don't force inclusion of top-level
12346         ChangeLog.  Don't force exclusion of all COPYING files, but make
12347         them the default exclusion instead.
12348
12349 2009-08-16  Bruno Haible  <bruno@clisp.org>
12350
12351         Fix test failures on Solaris 10.
12352         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
12353         tests when Solaris iconv() is used.
12354         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
12355         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
12356         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
12357         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
12358         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
12359
12360 2009-08-16  Bruno Haible  <bruno@clisp.org>
12361
12362         Fix test failures on Solaris 10.
12363         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
12364         'tr' program and pass it as first argument.
12365         * tests/test-pipe-filter-gi1.sh: Likewise.
12366         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
12367         program as first argument.
12368         * tests/test-pipe-filter-gi1.c (main): Likewise.
12369
12370 2009-08-16  Eric Blake  <ebb9@byu.net>
12371
12372         fpurge: fix previous commits
12373         * modules/fpurge (Makefile.am): Make replacement conditional,
12374         partially reverting 2007-04-29 change; missed in previous
12375         attempt.
12376         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
12377         is missing.
12378
12379 2009-08-16  Bruno Haible  <bruno@clisp.org>
12380
12381         Clarify fpurge's effect on the file position.
12382         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
12383         * tests/test-fpurge.c (main): Make a second pass for checking the file
12384         position.
12385
12386 2009-08-16  Bruno Haible  <bruno@clisp.org>
12387
12388         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
12389         declaration of fpurge is missing.
12390         * tests/test-fpurge.c (main): Check that the file has not more contents
12391         than expected. Close the file before removing it.
12392
12393 2009-08-15  Eric Blake  <ebb9@byu.net>
12394
12395         fpurge: don't wrap working cygwin implementation
12396         * lib/fpurge.c (fpurge): Fix comment typo.
12397         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
12398         1.7 to avoid replacement.
12399         * tests/test-fpurge.c (main): Enhance test.
12400
12401 2009-08-15  Eric Blake  <ebb9@byu.net>
12402         and Jim Meyering  <meyering@redhat.com>
12403
12404         test-update-copyright: skip if perl is insufficient
12405         * tests/test-update-copyright.sh: Failure to run maintainer tool
12406         should not cause testsuite failure on cygwin 1.5.
12407
12408 2009-08-14  Eric Blake  <ebb9@byu.net>
12409
12410         doc: mention more functions added in cygwin 1.7.0
12411         * doc/posix-headers/limits.texi (limits.h): Update for recent
12412         cygwin additions.
12413         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
12414         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
12415         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
12416         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
12417         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
12418
12419 2009-08-14  Eric Blake  <ebb9@byu.net>
12420
12421         maint.mk: simplify update-copyright rule
12422         * top/maint.mk (update-copyright-local): Delete, and document how
12423         to do it in cfg.mk instead.
12424         (update-copyright-exclude-regexp): Delete, and document how to do
12425         it in .x-update-copyright instead.
12426         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
12427         exclude ChangeLog.
12428
12429 2009-08-14  Bruno Haible  <bruno@clisp.org>
12430
12431         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
12432
12433 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12434
12435         maint.mk: support update-copyright-env
12436         * top/maint.mk (update-copyright-env): Define place-holder.
12437         (update-copyright): Expand $(update-copyright-env) before
12438         invoking update-copyright.
12439
12440 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12441
12442         update-copyright: implement forced reformatting
12443         * build-aux/update-copyright: Implement and document
12444         UPDATE_COPYRIGHT_FORCE.
12445         * tests/test-update-copyright.sh: Test it.
12446
12447 2009-08-14  Eric Blake  <ebb9@byu.net>
12448         and Bruno Haible  <bruno@clisp.org>
12449
12450         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
12451         * tests/test-locale.c: Revert previous patch related to NULL.
12452         * tests/test-stdio.c: Likewise.
12453         * tests/test-stdlib.c: Likewise.
12454         * tests/test-string.c: Likewise.
12455         * tests/test-unistd.c: Likewise.
12456         * modules/time-tests (Depends-on): Add verify.
12457         * modules/wchar-tests (Depends-on): Likewise.
12458         * tests/test-time.c: Test for NULL compliance.
12459         * tests/test-wchar.c: Likewise.
12460         * modules/locale (Depends-on): Add stddef.
12461         * modules/stdio (Depends-on): Likewise.
12462         * modules/stdlib (Depends-on): Likewise.
12463         * modules/string (Depends-on): Likewise.
12464         * modules/time (Depends-on): Likewise.
12465         * modules/unistd (Depends-on): Likewise.
12466         * modules/wchar (Depends-on): Likewise.
12467         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
12468         * lib/stdlib.in.h (includes): Likewise.
12469         * lib/string.in.h (includes): Likewise.
12470         * lib/time.in.h (includes): Likewise.
12471         * lib/unistd.in.h (includes): Likewise.
12472         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
12473         replaced.
12474         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
12475         * m4/stddef_h.m4: New file.
12476         * modules/stddef: Likewise.
12477         * lib/stddef.in.h: Likewise.
12478         * modules/stddef-tests: Likewise.
12479         * tests/test-stddef.c: Likewise.
12480         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
12481         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
12482         * doc/posix-headers/locale.texi (locale.h): Likewise.
12483         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
12484         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
12485         * doc/posix-headers/string.texi (string.h): Likewise.
12486         * doc/posix-headers/time.texi (time.h): Likewise.
12487         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
12488         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
12489
12490 2009-08-14  Eric Blake  <ebb9@byu.net>
12491
12492         doc: improve git diff of texinfo files
12493         * .gitattributes: Add rule for *.texi files, with hint on how to
12494         use it.
12495         Copied from m4, and based on a report by Bruno Haible.
12496
12497 2009-08-14  Bruno Haible  <bruno@clisp.org>
12498
12499         Disable multithread support by default on Cygwin 1.5.x for real.
12500         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
12501
12502 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12503
12504         update-copyright: much ado about intervals
12505         * build-aux/update-copyright: Implement and document
12506         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
12507         of copyright year intervals.
12508         Also, document UPDATE_COPYRIGHT_YEAR.
12509         * tests/test-update-copyright.sh: Test it.
12510
12511         update-copyright: convert 2-digit to 4-digit years
12512         * build-aux/update-copyright: Implement and document.
12513         * tests/test-update-copyright.sh: Update.
12514
12515 2009-08-14  Jim Meyering  <meyering@redhat.com>
12516
12517         test-exclude: avoid coreutils "make check" failure
12518         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
12519         just as in test-argmatch.c.
12520
12521 2009-08-13  Eric Blake  <ebb9@byu.net>
12522
12523         test-dup2: fix bad assumption
12524         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
12525         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
12526
12527         test-version-etc: fix CRLF portability issue
12528         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
12529         recognize \r.
12530         * tests/test-argp-version-etc-1.sh: Likewise.
12531
12532         getopt: update client modules
12533         * modules/argp (Depends-on): Use getopt-gnu.
12534         * modules/git-merge-changelog (Depends-on): Likewise.
12535         * modules/long-options (Depends-on): Likewise.
12536         * modules/xstrtol (Depends-on): Likewise.
12537
12538 2009-08-13  Simon Josefsson  <simon@josefsson.org>
12539
12540         * tests/test-version-etc.sh: Don't fail on different
12541         project/version.  Don't fail on CRLF differences.  Rewrite to use
12542         multiple -e instead of multiple sed forks, suggested by Eric Blake
12543         <ebb9@byu.net>.
12544         * tests/test-argp-version-etc-1.sh: Likewise.
12545
12546 2009-08-13  Simon Josefsson  <simon@josefsson.org>
12547
12548         * tests/test-version-etc.sh: Don't fail on different
12549         project/version.
12550
12551 2009-08-12  Bruno Haible  <bruno@clisp.org>
12552
12553         Tests for modules 'getopt-posix', 'getopt-gnu'.
12554         * modules/getopt-posix-tests: New file.
12555         * tests/test-getopt.c: New file.
12556         * tests/test-getopt.h: New file.
12557         * tests/test-getopt_long.h: New file.
12558
12559         New modules 'getopt-posix', 'getopt-gnu'.
12560         * modules/getopt-gnu: New file, renamed from modules/getopt.
12561         * modules/getopt-posix: New file.
12562         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
12563         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
12564         (gl_GETOPT): Remove macro.
12565         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
12566         Disable the test against BSD systems that declare optreset. Test
12567         against mingw bug. Test against lack of support of optional arguments
12568         on many platforms.
12569         * doc/glibc-headers/getopt.texi: Update module name and list of
12570         relevant platforms.
12571         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
12572         'getopt-gnu' and more portability problems.
12573         * NEWS: Mention the changes.
12574
12575 2009-08-12  Bruno Haible  <bruno@clisp.org>
12576
12577         Ensure that optarg etc. get declared by <unistd.h>.
12578         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
12579         AC_USE_SYSTEM_EXTENSIONS.
12580         * modules/getopt (Depends-on): Add 'extensions'.
12581
12582 2009-08-12  Bruno Haible  <bruno@clisp.org>
12583
12584         Avoid test link errors.
12585         * modules/pipe-filter-ii-tests (Makefile.am): Define
12586         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
12587         * modules/pipe-filter-gi-tests (Makefile.am): Define
12588         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
12589         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12590
12591 2009-08-12  Bruno Haible  <bruno@clisp.org>
12592
12593         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
12594         gl_GETOPT_SUBSTITUTE before.
12595         (gl_GETOPT): Use it.
12596         * m4/argp.m4 (gl_ARGP): Update.
12597         Reported by Sergey Poznyakoff.
12598
12599         * m4/getopt.m4: Reorder macros.
12600         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
12601         (gl_GETOPT_SUBSTITUTE): Remove macro.
12602
12603 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
12604
12605         Minor improvement in gitlog-to-changelog
12606
12607         * build-aux/gitlog-to-changelog: New option `--format' makes
12608         output format string configurable.
12609
12610 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
12611
12612         Optimize exclude: use hash tables for non-wildcard patterns.
12613
12614         * lib/exclude.c: Include hash.h and mbuiter.h
12615         (struct exclude_pattern, exclude_segment): New data types.
12616         (struct exclude): Rewrite.
12617         (fnmatch_pattern_has_wildcards): New function.
12618         (new_exclude_segment, free_exclude_segment): New functions.
12619         (excluded_file_pattern_p, excluded_file_name_p): New functions.
12620         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
12621         * lib/exclude.h (is_fnmatch_pattern): New prototype.
12622         * modules/exclude: Depend on hash and mbuiter.
12623
12624         * modules/exclude-tests: New file.
12625         * tests/test-exclude.c: New file.
12626         * tests/test-exclude1.sh: New file.
12627         * tests/test-exclude2.sh: New file.
12628         * tests/test-exclude3.sh: New file.
12629         * tests/test-exclude4.sh: New file.
12630         * tests/test-exclude5.sh: New file.
12631         * tests/test-exclude6.sh: New file.
12632         * tests/test-exclude7.sh: New file.
12633
12634 2009-08-12  Bruno Haible  <bruno@clisp.org>
12635
12636         Ensure that getopt() gets declared by <unistd.h>.
12637         * lib/unistd.in.h: Conditionally include getopt.h.
12638         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
12639         Set GNULIB_UNISTD_H_GETOPT.
12640         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12641         GNULIB_UNISTD_H_GETOPT.
12642         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
12643
12644 2009-08-12  Bruno Haible  <bruno@clisp.org>
12645
12646         Clarify logic.
12647         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
12648         gl_replace_getopt instead of GETOPT_H.
12649
12650 2009-08-12  Bruno Haible  <bruno@clisp.org>
12651
12652         * m4/getopt.m4: Add comments.
12653
12654 2009-08-12  Bruno Haible  <bruno@clisp.org>
12655
12656         Disable multithread support by default on Cygwin 1.5.x.
12657         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
12658         set gl_use_threads=no if not specified otherwise.
12659
12660 2009-08-11  Bruno Haible  <bruno@clisp.org>
12661
12662         Avoid compilation error on NetBSD 5.0.
12663         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
12664         * tests/test-stdio.c: Likewise.
12665         * tests/test-stdlib.c: Likewise.
12666         * tests/test-string.c: Likewise.
12667         * tests/test-unistd.c: Likewise.
12668         Reported by Greg Troxel <gdt@ir.bbn.com>
12669         at <https://savannah.gnu.org/support/?106973>.
12670
12671 2009-08-11  Bruno Haible  <bruno@clisp.org>
12672
12673         * modules/dup2-tests (Depends-on): Remove close.
12674
12675         Undo 2009-07-19 commit.
12676         * modules/acl-tests (Depends-on): Remove close.
12677         * modules/binary-io-tests (Depends-on): Likewise.
12678         * modules/closein-tests (Depends-on): Likewise.
12679         * modules/flock-tests (Depends-on): Likewise.
12680         * modules/fsync-tests (Depends-on): Likewise.
12681         * modules/lseek-tests (Depends-on): Likewise.
12682         * modules/pipe-tests (Depends-on): Likewise.
12683         * modules/posix_spawn-tests (Depends-on): Likewise.
12684         * modules/posix_spawnp-tests (Depends-on): Likewise.
12685         * modules/stat-time-tests (Depends-on): Likewise.
12686         * modules/yesno-tests (Depends-on): Likewise.
12687
12688 2009-08-10  Bruno Haible  <bruno@clisp.org>
12689
12690         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
12691
12692 2009-08-10  Bruno Haible  <bruno@clisp.org>
12693
12694         Fix a gcc warning.
12695         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
12696
12697 2009-08-10  Bruno Haible  <bruno@clisp.org>
12698
12699         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
12700         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
12701         not only the first time.
12702         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
12703         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
12704         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
12705         is 1, not only the the first time.
12706
12707 2009-08-10  Bruno Haible  <bruno@clisp.org>
12708
12709         Make it possible to use module 'gethostname' without module 'close'.
12710         * lib/unistd.in.h (close): Evoke a link error only if
12711         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12712         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12713         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12714         * modules/unistd (Makefile.am): Substitute
12715         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12716         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
12717         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12718         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
12719         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12720         * modules/sys_ioctl (Makefile.am): Substitute
12721         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12722         * modules/socket (configure.ac): On native Windows, set
12723         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
12724         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12725         Reported by Sam Steingold <sds@gnu.org>.
12726
12727 2009-08-10  Bruno Haible  <bruno@clisp.org>
12728
12729         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
12730         * modules/ioctl (configure.ac): Likewise.
12731
12732 2009-08-10  Bruno Haible  <bruno@clisp.org>
12733
12734         Avoid collision between gnulib wrapper and libintl wrapper.
12735         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
12736         already defined in intl/printf.c.
12737         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
12738         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
12739
12740 2009-08-09  Bruno Haible  <bruno@clisp.org>
12741
12742         Make <sys/select.h> really self-contained, also on Solaris 10.
12743         * lib/sys_select.in.h: Include <string.h>.
12744         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
12745         Solaris 10 problem.
12746         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
12747         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
12748         Reported by Jim Meyering.
12749
12750 2009-08-09  Bruno Haible  <bruno@clisp.org>
12751
12752         Avoid warnings from 'aclocal' that are due to a use of macro name
12753         AM_XGETTEXT_OPTION that is not defined in automake.
12754         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
12755         automake.
12756         * modules/error (configure.ac): Likewise.
12757         * modules/propername (configure.ac): Likewise.
12758         * modules/vasprintf (configure.ac): Likewise.
12759         * modules/verror (configure.ac): Likewise.
12760         * modules/xprintf (configure.ac): Likewise.
12761         * modules/xvasprintf (configure.ac): Likewise.
12762
12763 2009-08-08  Bruno Haible  <bruno@clisp.org>
12764
12765         Avoid compilation error in C++ mode.
12766         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
12767         Reported by Sam Steingold <sds@gnu.org>.
12768
12769 2009-08-08  Bruno Haible  <bruno@clisp.org>
12770
12771         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
12772         for the various Unix platforms.
12773         * doc/posix-headers/limits.texi: Update platforms list regarding
12774         HOST_NAME_MAX.
12775         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12776
12777 2009-08-07  Jim Meyering  <meyering@redhat.com>
12778
12779         selinux-at: fix typo in a comment
12780         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
12781         Spotted by Paolo Bonzini.
12782
12783         selinux-at: remove redundant m4 code, add documentation
12784         * modules/selinux-at (configure.ac): Remove redundant code.
12785         LIB_SELINUX is already set via the dependent module, selinux-h.
12786         (Include): Add quotes around selinux-at.h.
12787         * lib/selinux-at.h: Add documentation.
12788         Reported by Bruno Haible in
12789         http://marc.info/?l=gnulib-bug&m=124958988300749
12790
12791 2009-08-07  Bruno Haible  <bruno@clisp.org>
12792
12793         Avoid link error on MacOS X 10.3 and 10.4.
12794         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
12795         on non-ELF systems.
12796         * lib/argp-pv.c (argp_program_version): Likewise.
12797         Reported by Simon Josefsson.
12798
12799 2009-08-07  Simon Josefsson  <simon@josefsson.org>
12800
12801         * tests/test-version-etc.sh: Use $EXEEXT.
12802
12803 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
12804
12805         update-copyright: update documentation to point to maint.mk
12806         * build-aux/update-copyright: Here.
12807
12808 2009-08-06  Jim Meyering  <meyering@redhat.com>
12809
12810         maint.mk: support update-copyright-local
12811         * top/maint.mk (update-copyright-local): Define place-holder.
12812         (update-copyright): Depend on $(update-copyright-local).
12813
12814 2009-08-06  Jim Meyering  <meyering@redhat.com>
12815
12816         selinux-at: new module
12817         Initially written for coreutils, this module will soon be
12818         used by findutils, too.
12819         * MODULES.html.sh [Misc]: Add selinux-at.
12820         * lib/selinux-at.h: New file, from coreutils.
12821         * lib/selinux-at.c: Likewise.
12822         * modules/selinux-at: Likewise.
12823         (License): Change from LGPL to GPL, since it depends
12824         on the GPL'd openat module.
12825
12826         doc: update README
12827         * README: Remove references to cogito.
12828         Remove cvs-repo-updating instructions from 2007.
12829         Don't imply that CVS is better if you have limited disk space.
12830
12831 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12832
12833         update-copyright: support C-style comments
12834         * build-aux/update-copyright: Implement and document.
12835         * tests/test-update-copyright.sh: Test.
12836
12837 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12838
12839         update-copyright: support omitted "(C)"
12840         * build-aux/update-copyright: Implement and document.  Also,
12841         allow variable whitespace before "(C)".
12842         * tests/test-update-copyright.sh: Test.
12843
12844 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12845
12846         update-copyright: don't trip on non-FSF copyright statements
12847         * build-aux/update-copyright: Fix so that the first correctly
12848         formatted FSF copyright statement is recognized no matter what
12849         appears before it.  Update documentation.
12850         * tests/test-update-copyright.sh: Test that.
12851
12852 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12853
12854         update-copyright: clean up code a little
12855         * build-aux/update-copyright: Append "_re" to the name of any
12856         variable holding a regular expression.
12857         Replace "old" and "new" with "stmt" in variable names.
12858         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
12859         handled correctly.
12860         Format code more consistently.
12861
12862 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12863
12864         update-copyright-tests: improve portability
12865         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
12866         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
12867
12868 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12869
12870         update-copyright: support @copyright{} and &copy;
12871         * build-aux/update-copyright: Implement and document.
12872         * tests/test-update-copyright.sh: Test.
12873
12874 2009-08-04  Jim Meyering  <meyering@redhat.com>
12875
12876         update-copyright-tests: correctly test EOL=\r\n handling
12877         * tests/test-update-copyright.sh: Put \r at the end of some lines
12878         for the dos-eol tests.  Based on a patch by Joel E. Denny.
12879
12880         maint.mk: make update-copyright exclusion list more configurable
12881         * top/maint.mk (update-copyright): Default to excluding COPYING,
12882         but allow an override, in case someone does want to update that file.
12883
12884         maint.mk: don't update copyright date in COPYING
12885         * top/maint.mk (update-copyright): Exclude COPYING.
12886
12887         maint.mk: add a copyright-updating rule
12888         * top/maint.mk (update-copyright): New rule.
12889         Derived from coreutils/Makefile.am.
12890
12891         update-copyright: rename some variables
12892         * build-aux/update-copyright: Rename a few variables for clarity.
12893         Tweak syntax.  List Joel E. Denny as coauthor.
12894
12895 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12896
12897         update-copyright: fix bug for 2-digit last year and add tests
12898         * build-aux/update-copyright: Fix bug.
12899         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
12900         specified.
12901         * modules/update-copyright-tests: New
12902         * tests/test-update-copyright.sh: New.
12903
12904 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12905
12906         update-copyright: handle leading tabs in line prefix
12907         * build-aux/update-copyright: Count leading tabs as 8 spaces
12908         when computing margin.  This helps with the formatting of
12909         ChangeLogs, for example.
12910         Fix documentation a little.
12911
12912 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12913
12914         update-copyright: support EOL=\r\n
12915         * build-aux/update-copyright: Implement that.
12916
12917 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12918
12919         update-copyright: automatically format copyright statements
12920         * build-aux/update-copyright: Implement that.
12921         Also, be a little more predictable and safer by always failing
12922         when the full copyright format is not perfectly recognized as an
12923         unbroken whole.  Discussed at
12924         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
12925         Rewrite documentation.
12926
12927 2009-08-03  Bruno Haible  <bruno@clisp.org>
12928
12929         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
12930
12931 2009-08-02  Bruno Haible  <bruno@clisp.org>
12932
12933         Tests for module 'uname'.
12934         * modules/uname-tests: New file.
12935         * tests/test-uname.c: New file.
12936
12937         New module 'uname'.
12938         * lib/uname.c: New file.
12939         * m4/uname.m4: New file.
12940         * modules/uname: New file.
12941         * doc/posix-functions/uname.texi: Mention the new module.
12942
12943 2009-08-02  Bruno Haible  <bruno@clisp.org>
12944
12945         Tests for module 'sys_utsname'.
12946         * modules/sys_utsname-tests: New file.
12947         * tests/test-sys_utsname.c: New file.
12948
12949         New module 'sys_utsname'.
12950         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
12951         * m4/sys_utsname_h.m4: New file.
12952         * modules/sys_utsname: New file.
12953         * doc/posix-headers/sys_utsname.texi: Mention the new module.
12954
12955 2009-08-02  Bruno Haible  <bruno@clisp.org>
12956
12957         Implicitly initialize the sockets library.
12958         * lib/gethostname.c: Include sockets.h.
12959         (rpl_gethostname): Invoke gl_sockets_startup.
12960         * lib/socket.c: Include sockets.h.
12961         (rpl_socket): Invoke gl_sockets_startup.
12962         * modules/gethostname (Depends-on): Add sockets.
12963         * modules/socket (Depends-on): Likewise.
12964         * tests/test-poll.c: Don't include sockets.h.
12965         (main): Don't invoke gl_sockets_startup.
12966         * tests/test-select.c: Don't include sockets.h.
12967         (main): Don't invoke gl_sockets_startup.
12968
12969 2009-08-02  Bruno Haible  <bruno@clisp.org>
12970
12971         Allow multiple calls to gl_sockets_startup.
12972         * lib/sockets.c (initialized_sockets_version): New variable.
12973         (gl_sockets_startup): Do nothing if already called for this or a higher
12974         version.
12975         (gl_sockets_cleanup): Reset initialized_sockets_version.
12976
12977 2009-08-03  Simon Josefsson  <simon@josefsson.org>
12978
12979         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
12980         different project/version.
12981
12982 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
12983             Bruno Haible  <bruno@clisp.org>
12984
12985         Tests for module 'pipe-filter-gi'.
12986         * modules/pipe-filter-gi-tests: New file.
12987         * tests/test-pipe-filter-gi1.sh: New file.
12988         * tests/test-pipe-filter-gi1.c: New file.
12989         * tests/test-pipe-filter-gi2.sh: New file.
12990         * tests/test-pipe-filter-gi2-main.c: New file.
12991         * tests/test-pipe-filter-gi2-child.c: New file.
12992
12993         New module 'pipe-filter-gi'.
12994         * lib/pipe-filter-gi.c: New file.
12995         * modules/pipe-filter-gi: New file.
12996
12997 2009-08-02  Bruno Haible  <bruno@clisp.org>
12998             Paolo Bonzini  <bonzini@gnu.org>
12999
13000         Tests for module 'pipe-filter-ii'.
13001         * modules/pipe-filter-ii-tests: New file.
13002         * tests/test-pipe-filter-ii1.sh: New file.
13003         * tests/test-pipe-filter-ii1.c: New file.
13004         * tests/test-pipe-filter-ii2.sh: New file.
13005         * tests/test-pipe-filter-ii2-main.c: New file.
13006         * tests/test-pipe-filter-ii2-child.c: New file.
13007
13008         New module 'pipe-filter-ii'.
13009         * lib/pipe-filter.h: New file.
13010         * lib/pipe-filter-ii.c: New file.
13011         * lib/pipe-filter-aux.h: New file.
13012         * modules/pipe-filter-ii: New file.
13013
13014 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13015
13016         * lib/gc-libgcrypt.c: Change copyright to FSF.
13017         * lib/gc-gnulib.c: Likewise.
13018
13019 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
13020
13021         * lib/gethostname.c: Include limits.h.
13022
13023 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13024             Bruno Haible  <bruno@clisp.org>
13025
13026         Ensure HOST_NAME_MAX as part of the gethostname module.
13027         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
13028         define also HOST_NAME_MAX.
13029         * tests/test-gethostname.c: Include <limits.h>.
13030         (main): Check also HOST_NAME_MAX.
13031         * doc/posix-headers/limits.texi: Document the mingw problem.
13032
13033 2009-08-02  Bruno Haible  <bruno@clisp.org>
13034
13035         * lib/gethostname.c (gethostname): Fix handling of large len argument.
13036         Add comments.
13037
13038 2009-03-31  Simon Josefsson  <simon@josefsson.org>
13039
13040         * lib/gethostname.c: Add Windows wrapper.
13041         * m4/gethostname.m4: Look for gethostname in -lws2_32.
13042         * modules/gethostname: Depend on sys_socket & errno, for also
13043         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
13044         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
13045
13046 2009-07-31  Jim Meyering  <meyering@redhat.com>
13047
13048         getloadavg: fix symbol name in comment
13049         * lib/getloadavg.c: Correct a typo I introduced when adding
13050         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
13051         Matt Kraai spotted the problem.
13052
13053 2009-07-29  Matt Kraai  <mkraai@beckman.com>
13054
13055         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
13056         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
13057         code also if ! defined N_NAME_POINTER.
13058         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
13059         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
13060         but the n_name member is a 12-byte array.
13061
13062 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
13063
13064         update-copyright: generalize comment handling
13065         * build-aux/update-copyright: Handle copyright statements
13066         within more comment styles.
13067         Document usage.
13068         Report any file with an external copyright holder or parse failure.
13069
13070 2009-07-29  Jim Meyering  <meyering@redhat.com>
13071
13072         mktime: correct setting of REPLACE_MKTIME
13073         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
13074
13075         update-copyright: new module
13076         * modules/update-copyright: New file.
13077         * build-aux/update-copyright: New file.
13078         * MODULES.html.sh (maint+release support): Add update-copyright.
13079
13080 2009-07-27  Bruno Haible  <bruno@clisp.org>
13081
13082         Fix compilation error when <ctime> is used and mktime is replaced.
13083         * lib/time.in.h (mktime): New declaration.
13084         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
13085         REPLACE_MKTIME instead of defining mktime in config.h.
13086         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
13087         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
13088         Reported by Ross McFarland <rwmcfa1@neces.com>.
13089
13090 2009-07-27  Bruno Haible  <bruno@clisp.org>
13091
13092         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
13093         Reported by Matt Kraai <mkraai@beckman.com>.
13094
13095 2009-07-25  Jim Meyering  <meyering@redhat.com>
13096
13097         maint.mk: avoid warnings about missing files
13098         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
13099         diagnostic when .prev-version does not exist.
13100         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
13101         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
13102         nonexistent cfg.mk.
13103         Suggestions from Simon Josefsson.
13104
13105 2009-07-25  Bruno Haible  <bruno@clisp.org>
13106
13107         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
13108         defined as macros. Needed on QNX 6.4.1.
13109         Reported by Matt Kraai <mkraai@beckman.com>.
13110
13111 2009-07-23  Jim Meyering  <meyering@redhat.com>
13112
13113         maint.mk: invoke "make dist" with a working value of XZ_OPT
13114         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
13115
13116 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
13117
13118         Make fseeko.c compile on QNX.
13119         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
13120
13121 2009-07-22  Peter Simons  <simons@cryp.to>
13122
13123         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
13124         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
13125         * lib/md4.h: Likewise.
13126         * lib/md5.h: Likewise.
13127         * lib/sha1.h: Likewise.
13128         * lib/sha256.h: Likewise.
13129         * lib/sha512.h: Likewise.
13130
13131         tests-sha1: don't assign literal string to 'char *' variable
13132         * tests/test-sha1.c (main): Declare locals with "const" to match
13133         attributes of the right hand side.
13134
13135 2009-07-21  Eric Blake  <ebb9@byu.net>
13136
13137         dup2: fix more mingw problems
13138         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
13139         fd to itself.
13140         * doc/posix-functions/dup2.texi (dup2): Document the bug.
13141         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
13142         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
13143         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
13144         care of mingw bugs.
13145
13146 2009-07-21  Jim Meyering  <meyering@redhat.com>
13147
13148         vc-list-files: avoid failure when /bin/sh is dash
13149         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
13150         On some Debian based systems, /bin/sh is a symlink to dash, and running
13151         this command would omit the "/" following each 'tests' prefix:
13152           dash -x build-aux/vc-list-files -C . tests
13153         That is because bash and dash work differently:
13154           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
13155           bash ok
13156           dash odd
13157
13158 2009-07-21  Eric Blake  <ebb9@byu.net>
13159
13160         dup2-tests: test previous patch
13161         * modules/dup2-tests: New file.
13162         * tests/test-dup2.c: Likewise.
13163         * tests/test-open.c (main): Avoid unspecified behavior.
13164         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
13165         test.
13166
13167         dup2: work around mingw and cygwin 1.5 bug
13168         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
13169         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
13170         * modules/unistd (Makefile.am): Substitute it.
13171         * lib/unistd.in.h (dup2): Declare the replacement.
13172         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
13173         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
13174         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
13175         * modules/execute (Depends-on): Add dup2.
13176         * modules/fseterr (Depends-on): Likewise.
13177         * modules/pipe (Depends-on): Likewise.
13178         * modules/posix_spawn-internal (Depends-on): Likewise.
13179
13180 2009-07-21  Bruno Haible  <bruno@clisp.org>
13181
13182         * modules/.gitattributes: New file.
13183
13184 2009-07-20  Bruno Haible  <bruno@clisp.org>
13185
13186         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
13187         (main): Use it.
13188
13189 2009-07-20  Eric Blake  <ebb9@byu.net>
13190
13191         test-pipe: make a bit more robust.
13192         * tests/test-pipe.c (myerr): Allow error messages regardless of
13193         what we do to stderr.
13194         (test_pipe): Rearrange to avoid deadlock.
13195         (child_main): Try a larger read, to ensure we avoided deadlock.
13196         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
13197         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
13198         if misused.
13199
13200 2009-07-19  Jim Meyering  <meyering@redhat.com>
13201
13202         fts: avoid false-positive cycle-detection
13203         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
13204         for each new command line argument.
13205
13206 2009-07-19  Bruno Haible  <bruno@clisp.org>
13207
13208         Fix build error on mingw with the modules sys_select and unistd.
13209         * modules/acl-tests (Depends-on): Add close.
13210         * modules/binary-io-tests (Depends-on): Likewise.
13211         * modules/closein-tests (Depends-on): Likewise.
13212         * modules/flock-tests (Depends-on): Likewise.
13213         * modules/fsync-tests (Depends-on): Likewise.
13214         * modules/lseek-tests (Depends-on): Likewise.
13215         * modules/pipe-tests (Depends-on): Likewise.
13216         * modules/posix_spawn-tests (Depends-on): Likewise.
13217         * modules/posix_spawnp-tests (Depends-on): Likewise.
13218         * modules/stat-time-tests (Depends-on): Likewise.
13219         * modules/yesno-tests (Depends-on): Likewise.
13220
13221 2009-07-19  Bruno Haible  <bruno@clisp.org>
13222
13223         Unify conditionals.
13224         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
13225         macros, not at the compiler macros.
13226         * lib/pipe.c: Likewise.
13227         * lib/execute.c: Likewise.
13228         * lib/spawni.c: Likewise.
13229
13230 2009-07-19  Bruno Haible  <bruno@clisp.org>
13231
13232         Fix handling of closed stdin/stdout/stderr on mingw.
13233         * lib/w32spawn.h: Include unistd.h.
13234         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
13235         file descriptor with O_NOINHERIT flag.
13236         (fd_safer_noinherit): New function, based on fd-safer.c.
13237         (dup_safer_noinherit): New function, based on dup-safer.c.
13238         (undup_safer_noinherit): New function.
13239         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
13240         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
13241         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
13242         instead of fd_safer.
13243         * tests/test-pipe.c: Include <windows.h>.
13244         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
13245
13246         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
13247         from main.
13248         (test_pipe): Pass an extra argument for disambiguation.
13249         (main): Invoke parent_main or child_main.
13250
13251         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
13252         consistently.
13253
13254 2009-07-18  Eric Blake  <ebb9@byu.net>
13255
13256         test-pipe: fix mingw build
13257         * tests/test-pipe.c (main): Avoid fcntl on mingw.
13258
13259 2009-07-18  Bruno Haible  <bruno@clisp.org>
13260
13261         * modules/pipe-tests (Makefile.am): Fix typo.
13262
13263 2009-07-18  Eric Blake  <ebb9@byu.net>
13264
13265         error: fix mingw build
13266         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
13267         Reported by Bruno Haible.
13268
13269         error: avoid undefined use of stdout
13270         * lib/error.c (error, error_at_line): Check that fd 1 is open
13271         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
13272         is handling faults and the close_stdout module wants to report the
13273         detection of closed stdout as an error.
13274
13275 2009-07-17  Eric Blake  <ebb9@byu.net>
13276
13277         pipe: be robust in face of closed fds
13278         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
13279         should cause child to misbehave.
13280         * modules/pipe-tests: New module.
13281         * tests/test-pipe.c: New file.
13282         * tests/test-pipe.sh: New file.
13283         Reported by Akim Demaille.
13284
13285 2009-07-14  Bruno Haible  <bruno@clisp.org>
13286
13287         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
13288         Reported by anonymous kc.
13289
13290 2009-07-07  Jim Meyering  <meyering@redhat.com>
13291
13292         maint.mk: don't look for translatable strings in *.m4 or *.mk
13293         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
13294         when searching for translatable strings.
13295
13296 2009-07-05  Jim Meyering  <meyering@redhat.com>
13297
13298         remove superfluous parentheses in STREQ definition
13299         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
13300         * lib/getugroups.c (STREQ): Likewise.
13301         * lib/fnmatch.c (STREQ): Likewise.
13302         Spotted by Bruno Haible.
13303
13304 2009-07-04  Jim Meyering  <meyering@redhat.com>
13305
13306         argv-iter: new module
13307         * MODULES.html.sh: Add argv-iter.
13308         * lib/argv-iter.c, lib/argv-iter.h: New files.
13309         * modules/argv-iter: New file.
13310         * modules/argv-iter-tests: New file.
13311         * tests/test-argv-iter.c: Test it.
13312
13313 2009-07-04  Bruno Haible  <bruno@clisp.org>
13314
13315         Fix assertion.
13316         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
13317         contains more exact copies of a given entry than file2, leave the extra
13318         copies unpaired rather than aborting.
13319         Reported by Eric Blake.
13320
13321 2009-07-02  Bruno Haible  <bruno@clisp.org>
13322
13323         Speedup git-merge-changelog for git cherry-pick.
13324         * lib/git-merge-changelog.c (struct entries_mapping): New type.
13325         (entries_mapping_get): New function, extracted from compute_mapping.
13326         (entries_mapping_reverse_get): New function.
13327         (compute_mapping): Add a 'full' argument. Return the result in a
13328         'struct entries_mapping'.
13329         (main): Update. Access the mappings through entries_mapping_get.
13330         Reported by Eric Blake.
13331
13332 2009-07-02  Bruno Haible  <bruno@clisp.org>
13333
13334         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
13335         best_i.
13336
13337 2009-07-02  Bruno Haible  <bruno@clisp.org>
13338
13339         Speed up approximate search for matching ChangeLog entries.
13340         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
13341         argument. Call fstrcmp_bounded instead of fstrcmp.
13342         (compute_mapping, try_split_merged_entry, main): Update callers.
13343
13344 2009-07-02  Bruno Haible  <bruno@clisp.org>
13345
13346         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
13347
13348 2009-06-30  Bruno Haible  <bruno@clisp.org>
13349
13350         Reduce the number of uc_is_cased calls.
13351         * lib/unicase.h (casing_suffix_context_t): Add
13352         'first_char_except_ignorable' field.
13353         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
13354         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
13355         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
13356         Update initializer.
13357         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
13358         case-ignorable characters.
13359         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
13360         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
13361         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
13362         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
13363         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
13364
13365 2009-06-30  Bruno Haible  <bruno@clisp.org>
13366
13367         Tests for module 'unicase/ignorable'.
13368         * modules/unicase/ignorable-tests: New file.
13369         * tests/unicase/test-ignorable.c: New file, generated by
13370         gen-uni-tables.
13371
13372         Tests for module 'unicase/cased'.
13373         * modules/unicase/cased-tests: New file.
13374         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
13375         * tests/unicase/test-predicate-part1.h: New file, derived from
13376         tests/unictype/test-predicate-part1.h.
13377         * tests/unicase/test-predicate-part2.h: New file, same as
13378         tests/unictype/test-predicate-part2.h.
13379
13380         Fix evaluation of "Before C" condition of FINAL_SIGMA.
13381         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
13382         (output_casing_properties): New function.
13383         (main): Call it.
13384         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
13385         * lib/unicase/cased.c: Include unictype/bitmap.h.
13386         (uc_is_cased): Define through a bitmap lookup.
13387         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
13388         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
13389         (uc_is_case_ignorable): Define through a bitmap lookup.
13390         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
13391         lib/unictype/bitmap.h.
13392         (Depends-on): Add inline. Clean up.
13393         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
13394         lib/unictype/bitmap.h.
13395         (Depends-on): Add inline. Clean up.
13396         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
13397         recognition.
13398         * tests/unicase/test-u16-tolower.c (main): Likewise.
13399         * tests/unicase/test-u32-tolower.c (main): Likewise.
13400
13401 2009-06-30  Bruno Haible  <bruno@clisp.org>
13402
13403         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
13404         * lib/unicase/u16-casemap.c: Likewise.
13405         * lib/unicase/u32-casemap.c: Likewise.
13406
13407 2009-06-29  Bruno Haible  <bruno@clisp.org>
13408
13409         Define u32_casefold as a wrapper around u32_ct_casefold.
13410         * lib/unicase/u32-casefold.c: Update.
13411         * modules/unicase/u32-casefold (Depends-on): Add
13412         unicase/u32-ct-casefold, unicase/empty-prefix-context,
13413         unicase/empty-suffix-context. Clean up.
13414
13415         Define u16_casefold as a wrapper around u16_ct_casefold.
13416         * lib/unicase/u16-casefold.c: Update.
13417         * modules/unicase/u16-casefold (Depends-on): Add
13418         unicase/u16-ct-casefold, unicase/empty-prefix-context,
13419         unicase/empty-suffix-context. Clean up.
13420
13421         Define u8_casefold as a wrapper around u8_ct_casefold.
13422         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
13423         * lib/unicase/u8-casefold.c: Update.
13424         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
13425         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13426
13427         Define u32_totitle as a wrapper around u32_ct_totitle.
13428         * lib/unicase/u32-totitle.c: Update.
13429         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
13430         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13431
13432         Define u16_totitle as a wrapper around u16_ct_totitle.
13433         * lib/unicase/u16-totitle.c: Update.
13434         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
13435         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13436
13437         Define u8_totitle as a wrapper around u8_ct_totitle.
13438         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
13439         functions.
13440         (FUNC): Delegate to U_CT_TOTITLE.
13441         * lib/unicase/u8-totitle.c: Update.
13442         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
13443         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13444
13445         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
13446         invocation.
13447         * modules/unicase/u32-tolower (Depends-on): Add
13448         unicase/empty-prefix-context, unicase/empty-suffix-context.
13449
13450         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
13451         invocation.
13452         * modules/unicase/u16-tolower (Depends-on): Add
13453         unicase/empty-prefix-context, unicase/empty-suffix-context.
13454
13455         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
13456         * modules/unicase/u8-tolower (Depends-on): Add
13457         unicase/empty-prefix-context, unicase/empty-suffix-context.
13458
13459         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
13460         invocation.
13461         * modules/unicase/u32-toupper (Depends-on): Add
13462         unicase/empty-prefix-context, unicase/empty-suffix-context.
13463
13464         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
13465         invocation.
13466         * modules/unicase/u16-toupper (Depends-on): Add
13467         unicase/empty-prefix-context, unicase/empty-suffix-context.
13468
13469         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
13470         * modules/unicase/u8-toupper (Depends-on): Add
13471         unicase/empty-prefix-context, unicase/empty-suffix-context.
13472
13473         New module 'unicase/u32-ct-casefold'.
13474         * lib/unicase/u32-ct-casefold.c: New file.
13475         * modules/unicase/u32-ct-casefold: New file.
13476
13477         New module 'unicase/u16-ct-casefold'.
13478         * lib/unicase/u16-ct-casefold.c: New file.
13479         * modules/unicase/u16-ct-casefold: New file.
13480
13481         New module 'unicase/u8-ct-casefold'.
13482         * lib/unicase/u8-ct-casefold.c: New file.
13483         * lib/unicase/u-ct-casefold.h: New file, derived from
13484         lib/unicase/u-casefold.h.
13485         * modules/unicase/u8-ct-casefold: New file.
13486
13487         New module 'unicase/u32-ct-totitle'.
13488         * lib/unicase/u32-ct-totitle.c: New file.
13489         * modules/unicase/u32-ct-totitle: New file.
13490
13491         New module 'unicase/u16-ct-totitle'.
13492         * lib/unicase/u16-ct-totitle.c: New file.
13493         * modules/unicase/u16-ct-totitle: New file.
13494
13495         New module 'unicase/u8-ct-totitle'.
13496         * lib/unicase/u8-ct-totitle.c: New file.
13497         * lib/unicase/u-ct-totitle.h: New file, derived from
13498         lib/unicase/u-totitle.h.
13499         * modules/unicase/u8-ct-totitle: New file.
13500
13501         New module 'unicase/u32-ct-tolower'.
13502         * lib/unicase/u32-ct-tolower.c: New file.
13503         * modules/unicase/u32-ct-tolower: New file.
13504
13505         New module 'unicase/u16-ct-tolower'.
13506         * lib/unicase/u16-ct-tolower.c: New file.
13507         * modules/unicase/u16-ct-tolower: New file.
13508
13509         New module 'unicase/u8-ct-tolower'.
13510         * lib/unicase/u8-ct-tolower.c: New file.
13511         * modules/unicase/u8-ct-tolower: New file.
13512
13513         New module 'unicase/u32-ct-toupper'.
13514         * lib/unicase/u32-ct-toupper.c: New file.
13515         * modules/unicase/u32-ct-toupper: New file.
13516
13517         New module 'unicase/u16-ct-toupper'.
13518         * lib/unicase/u16-ct-toupper.c: New file.
13519         * modules/unicase/u16-ct-toupper: New file.
13520
13521         New module 'unicase/u8-ct-toupper'.
13522         * lib/unicase/u8-ct-toupper.c: New file.
13523         * modules/unicase/u8-ct-toupper: New file.
13524
13525         Add context arguments to u*_casemap functions.
13526         * lib/unicase/unicasemap.h: Include unicase.h.
13527         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
13528         suffix_context arguments.
13529         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
13530         functions.
13531         (FUNC): Add prefix_context and suffix_context arguments. Use
13532         uc_is_cased and uc_is_case_ignorable.
13533         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
13534         * lib/unicase/u16-casemap.c: Likewise.
13535         * lib/unicase/u32-casemap.c: Likewise.
13536         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
13537         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13538         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
13539         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13540         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
13541         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13542
13543         New module 'unicase/u32-suffix-context'.
13544         * lib/unicase/u32-suffix-context.c: New file.
13545         * modules/unicase/u32-suffix-context: New file.
13546
13547         New module 'unicase/u16-suffix-context'.
13548         * lib/unicase/u16-suffix-context.c: New file.
13549         * modules/unicase/u16-suffix-context: New file.
13550
13551         New module 'unicase/u8-suffix-context'.
13552         * lib/unicase/u8-suffix-context.c: New file.
13553         * lib/unicase/u-suffix-context.h: New file.
13554         * modules/unicase/u8-suffix-context: New file.
13555
13556         New module 'unicase/empty-suffix-context'.
13557         * lib/unicase/empty-suffix-context.c: New file.
13558         * modules/unicase/empty-suffix-context: New file.
13559
13560         New module 'unicase/u32-prefix-context'.
13561         * lib/unicase/u32-prefix-context.c: New file.
13562         * modules/unicase/u32-prefix-context: New file.
13563
13564         New module 'unicase/u16-prefix-context'.
13565         * lib/unicase/u16-prefix-context.c: New file.
13566         * modules/unicase/u16-prefix-context: New file.
13567
13568         New module 'unicase/u8-prefix-context'.
13569         * lib/unicase/u8-prefix-context.c: New file.
13570         * lib/unicase/u-prefix-context.h: New file.
13571         * lib/unicase/context.h: New file.
13572         * modules/unicase/u8-prefix-context: New file.
13573
13574         New module 'unicase/empty-prefix-context'.
13575         * lib/unicase/empty-prefix-context.c: New file.
13576         * modules/unicase/empty-prefix-context: New file.
13577
13578         New module 'unicase/ignorable'.
13579         * lib/unicase/ignorable.c: New file.
13580         * modules/unicase/ignorable: New file.
13581
13582         New module 'unicase/cased'.
13583         * lib/unicase/caseprop.h: New file.
13584         * lib/unicase/cased.c: New file.
13585         * modules/unicase/cased: New file.
13586
13587         New functions for case mapping of substrings.
13588         * lib/unicase.h (casing_prefix_context_t): New type.
13589         (unicase_empty_prefix_context): New variable.
13590         (u8_casing_prefix_context, u16_casing_prefix_context,
13591         u32_casing_prefix_context, u8_casing_prefixes_context,
13592         u16_casing_prefixes_context, u32_casing_prefixes_context): New
13593         declarations.
13594         (casing_suffix_context_t): New type.
13595         (unicase_empty_suffix_context): New variable.
13596         (u8_casing_suffix_context, u16_casing_suffix_context,
13597         u32_casing_suffix_context, u8_casing_suffixes_context,
13598         u16_casing_suffixes_context, u32_casing_suffixes_context,
13599         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
13600         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
13601         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
13602         declarations.
13603
13604 2009-06-28  Jim Meyering  <meyering@redhat.com>
13605
13606         boostrap: indent only with spaces
13607         * build-aux/bootstrap: Indent only with spaces, never TABs.
13608
13609         bootstrap: split long lines
13610         * build-aux/bootstrap: Keep line length < 80.
13611
13612         bootstrap: sync from coreutils
13613         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
13614         just as autoreconf does.  Verify a list of prerequisite
13615         package-name,version-number pairs if defined in bootstrap.conf.
13616         Refer to README-prereq, if prerequisites are not satisfied.
13617
13618 2009-06-27  Eric Blake  <ebb9@byu.net>
13619
13620         tests: add test for bogus NULL definition
13621         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
13622         * tests/test-stdlib.c: Likewise.
13623         * tests/test-string.c: Likewise.
13624         * tests/test-locale.c: Likewise.
13625         * tests/test-unistd.c: Likewise.
13626         * modules/stdio-tests (Depends-on): Add verify.
13627         * modules/stdlib-tests (Depends-on): Likewise.
13628         * modules/string-tests (Depends-on): Likewise.
13629         * modules/locale-tests (Depends-on): Likewise.
13630         * modules/unistd-tests (Depends-on): Likewise.
13631
13632 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
13633
13634         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
13635         self-explaining comment.
13636         * m4/selinux-selinux-h: Update serial.
13637         (gl_LIBSELINUX): New macro, adding a warning for missing development
13638         packages to code extracted from...
13639         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
13640         Add warning for missing development packages here, too.
13641
13642 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
13643
13644         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
13645
13646 2009-06-25  Eric Blake  <ebb9@byu.net>
13647
13648         version-etc: fix regression
13649         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
13650         gcc.
13651         (version_etc): Use it, to catch bugs with trailing NULL.
13652         * lib/version-etc.c (version_etc_arn): Delete unused argument.
13653         (version_etc_va): Fix logic bug.
13654         * modules/version-etc-tests: Add test.
13655         * tests/test-version-etc.c: New file.
13656         * tests/test-version-etc.sh: Likewise.
13657
13658 2009-06-25  Sam Steingold  <sds@gnu.org>
13659
13660         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
13661         mbtowc declaration.
13662
13663 2009-06-25  Eric Blake  <ebb9@byu.net>
13664
13665         fpurge: migrate into <stdio.h>
13666         * lib/fpurge.h: Delete...
13667         * lib/stdio.in.h (fpurge): ...and declare here, instead.
13668         * lib/fpurge.c (fpurge): Change declaring header.
13669         * modules/fpurge (Files): Drop deleted file.
13670         (Depends-on): Add stdio.
13671         (configure.ac): Set witness.
13672         * modules/stdio (Makefile.am): Support fpurge macros.
13673         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
13674         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
13675         * lib/fflush.c: Update client.
13676         * tests/test-fpurge.c: Likewise.
13677         * NEWS: Mention the change.
13678
13679 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13680
13681         * lib/argp-version-etc.c (program_authors): Add const
13682         qualifier.
13683         * lib/version-etc.c: Fix typos in the comments.
13684         * modules/argp-version-etc: Depends on version-etc.
13685
13686 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13687
13688         argp-version-etc: new module.
13689
13690         * lib/argp-version-etc.c: New file.
13691         * lib/argp-version-etc.h: New file.
13692         * modules/argp-version-etc: New file.
13693         * modules/argp-version-etc-tests: New file.
13694         * tests/test-argp-version-etc.c: New test.
13695         * tests/test-argp-version-etc-1.sh: New test.
13696
13697 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13698
13699         Provide additional interfaces and documentation for version-etc
13700         module.
13701
13702         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
13703         interfaces.
13704         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
13705         prototypes.
13706
13707 2009-06-24  Bruno Haible  <bruno@clisp.org>
13708
13709         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
13710         HAVE_LIB${NAME} macro.
13711         Reported by Sam Steingold <sds@gnu.org>.
13712
13713 2009-06-23  Simon Josefsson  <simon@josefsson.org>
13714
13715         * modules/hash-tests (test_hash_LDADD): Link to libintl when
13716         needed.
13717
13718 2009-06-21  Bruno Haible  <bruno@clisp.org>
13719
13720         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
13721         work.
13722         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
13723         together with LIB${NAME}, LTLIB${NAME}.
13724         Reported by Sam Steingold <sds@gnu.org>.
13725
13726 2009-06-20  Jim Meyering  <meyering@redhat.com>
13727
13728         tests: make sc_require_test_exit_idiom more generic
13729         * top/maint.mk (Exit_witness_file): New overridable variable.
13730         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
13731         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
13732
13733 2009-06-19  Jim Meyering  <meyering@redhat.com>
13734
13735         hash: reverse order of src/dst parameters in an internal interface
13736         * lib/hash.c (transfer_entries): Reverse order of parameters to
13737         put DST before SRC.  Adjust callers.
13738
13739         tests: test-hash: avoid wholesale duplication
13740         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
13741         Instead, use a loop and add a single conditional.
13742
13743         tests: test-hash: allow seed selection via a command line argument
13744         * tests/test-hash.c (get_seed): New function.
13745         (main): Use it.
13746
13747 2009-06-19  Eric Blake  <ebb9@byu.net>
13748
13749         hash: avoid memory leak on allocation failure
13750         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
13751         failure.  Factor repeated algorithm...
13752         (transfer_entries): ...into new helper routine.
13753         (hash_delete): React to hash_rehash return value.
13754
13755         hash: reduce memory pressure in hash_rehash no-op case
13756         * lib/hash.c (next_prime): Avoid overflow.
13757         (hash_initialize): Factor bucket size computation...
13758         (compute_bucket_size): ...into new helper function.
13759         (hash_rehash): Use new function and open coding to reduce memory
13760         pressure, and avoid a memory leak in USE_OBSTACK code.
13761         Reported by Jim Meyering.
13762
13763 2009-06-18  Eric Blake  <ebb9@byu.net>
13764
13765         hash: make rotation more obvious
13766         * modules/hash (Depends-on): Add bitrotate and stdint.
13767         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
13768         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
13769         (SIZE_MAX): Rely on headers for definition.
13770         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
13771         (raw_hasher): Use rotr_sz.
13772         Suggested by Jim Meyering.
13773
13774         hash: fix memory leak in last patch
13775         * lib/hash.c (hash_rehash): Avoid memory leak.
13776
13777         hash: avoid no-op rehashing
13778         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
13779
13780         hash: provide default callback functions
13781         * lib/hash.c (raw_hasher, raw_comparator): New functions.
13782         (hash_initialize): Use them as defaults.
13783         * tests/test-hash.c (main): Test this.
13784
13785         hash: minor optimization
13786         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
13787         when possible.
13788         (hash_initialize): Document this promise.
13789         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
13790         * tests/test-hash.c (hash_compare_strings): Test this.
13791
13792 2009-06-18  Bruno Haible  <bruno@clisp.org>
13793
13794         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
13795         going to be replaced anyway.
13796
13797 2009-06-18  Bruno Haible  <bruno@clisp.org>
13798
13799         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
13800         in one place.
13801         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
13802         be replaced anyway.
13803
13804 2009-06-18  Eric Blake  <ebb9@byu.net>
13805
13806         hash: check for resize before insertion
13807         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
13808         threshold before insertion, so that a pathological hash_rehash
13809         that fills every bucket can still trigger another rehash.
13810
13811 2009-06-18  Jim Meyering  <meyering@redhat.com>
13812
13813         hash-tests: add a loop around the small tests
13814         * tests/test-hash.c (main): Repeat small tests with selected
13815         small initial table sizes.
13816
13817 2009-06-17  Eric Blake  <ebb9@byu.net>
13818
13819         hash: minor cleanups
13820         * lib/hash.h (hash_entry): Make opaque, by moving...
13821         * lib/hash.c (hash_entry): ...here.
13822         (hash_insert): Clarify restrictions on what can be inserted.
13823         (hash_get_next): Clarify when it is safe to remove an element
13824         during traversal.
13825         (check_tuning): Skip verification when tuning is known safe.
13826         (hash_initialize): Clarify restrictions on tuning.
13827
13828 2009-06-17  Jim Meyering  <jim@meyering.net>
13829         and Eric Blake  <ebb9@byu.net>
13830
13831         hash-tests: new module
13832         * modules/hash-tests: New file.
13833         * tests/test-hash.c: New file.
13834
13835 2009-06-17  Eric Blake  <ebb9@byu.net>
13836
13837         strstr-simple: document new module
13838         * MODULES.html.sh: Document new module.
13839
13840         strstr, strcasestr: replace on platforms with broken memchr
13841         * modules/strstr: Split into...
13842         * modules/strstr-simple: ...new module that does not care about
13843         performance, but does care about glibc bug.
13844         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
13845         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
13846         if platform memchr is broken, per Debian bug 521737.
13847         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
13848         memchr.
13849         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
13850         * doc/posix-functions/strstr.texi (strstr): Document the fix.
13851         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13852         * modules/mountlist (Depends-on): Add strstr-simple.
13853         * modules/gen-uni-tables (Depends-on): Likewise.
13854         * modules/argz (Depends-on): Add strstr.
13855
13856 2009-06-17  Bruno Haible  <bruno@clisp.org>
13857
13858         * modules/posix_spawn-internal (Depends-on): Add errno.
13859
13860 2009-06-17  Bruno Haible  <bruno@clisp.org>
13861
13862         Define missing ESTALE on Interix 3.5.
13863         * lib/errno.in.h (ESTALE): Assign a value if missing.
13864         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
13865         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
13866         missing.
13867         * doc/posix-headers/errno.texi: Mention the Interix bug.
13868         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
13869
13870 2009-06-15  Eric Blake  <ebb9@byu.net>
13871
13872         memchr, memchr2: add valgrind exception
13873         * lib/memchr.valgrind: New file.
13874         * lib/memchr2.valgrind: New file.
13875         * modules/memchr (Files): Distribute valgrind file.
13876         * modules/memchr2 (Files): Likewise.
13877
13878         docs: memchr is no longer obsolete
13879         * MODULES.html.sh: Move memchr from obsolete to string.h section.
13880         * lib/string.in.h (memchr): Simplify logic.
13881
13882 2009-06-14  Jim Meyering  <meyering@redhat.com>
13883
13884         link-follow: fix the "checking..." message to not mention trailing slash
13885         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
13886         never considered trailing slashes.
13887
13888 2009-06-14  Bruno Haible  <bruno@clisp.org>
13889
13890         * m4/memchr.m4: Mention also the bug on IA-64.
13891         * doc/posix-functions/memchr.texi: Likewise.
13892
13893 2009-06-12  Eric Blake  <ebb9@byu.net>
13894
13895         memchr: detect broken x86_64 and alpha implementations
13896         * modules/memchr-tests (Depends-on): Move mmap detection...
13897         * modules/memchr (Depends-on): ...here.
13898         (configure.ac): Set indicator.
13899         * lib/string.in.h (memchr): Declare replacement.
13900         * modules/string (Makefile.am): Trigger replacement.
13901         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13902         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
13903         bugs.
13904         * doc/posix-functions/memchr.texi (memchr): Document the bug.
13905         * modules/getpagesize (License): Relax license.
13906
13907 2009-06-11  Bruno Haible  <bruno@clisp.org>
13908
13909         * lib/idpriv.h: Add more references.
13910
13911 2009-06-08  Bruno Haible  <bruno@clisp.org>
13912
13913         Tests for module 'idpriv-droptemp'.
13914         * modules/idpriv-droptemp-tests: New file.
13915         * tests/test-idpriv-droptemp.sh: New file.
13916         * tests/test-idpriv-droptemp.su.sh: New file.
13917         * tests/test-idpriv-droptemp.c: New file.
13918
13919         New module 'idpriv-droptemp'.
13920         * lib/idpriv-droptemp.c: New file.
13921         * modules/idpriv-droptemp: New file.
13922
13923 2009-06-08  Bruno Haible  <bruno@clisp.org>
13924
13925         Tests for module 'idpriv-drop'.
13926         * modules/idpriv-drop-tests: New file.
13927         * tests/test-idpriv-drop.sh: New file.
13928         * tests/test-idpriv-drop.su.sh: New file.
13929         * tests/test-idpriv-drop.c: New file.
13930
13931         New module 'idpriv-drop'.
13932         * lib/idpriv.h: New file.
13933         * lib-idpriv-drop.c: New file.
13934         * m4/idpriv.m4: New file.
13935         * modules/idpriv-drop: New file.
13936
13937 2009-06-08  Bruno Haible  <bruno@clisp.org>
13938
13939         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
13940         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13941         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13942         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13943         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13944         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13945         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13946
13947 2009-06-08  Eric Blake  <ebb9@byu.net>
13948
13949         test-strstr: use memory fence, when possible
13950         * tests/test-strstr.c (main): Use memory fence, in order to be
13951         more likely to trigger Debian bug 521737.
13952         * modules/strstr-tests (Files): Pull in additional files.
13953
13954         memchr: no longer obsolete, for wider field testing
13955         * modules/memchr (Status, Notice): Delete, this module is no
13956         longer obsolete.
13957         * modules/vasnprintf (Depends-on): Add memchr.
13958
13959 2009-06-07  Jim Meyering  <meyering@redhat.com>
13960
13961         hash: declare some functions with the warn_unused_result attribute
13962         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
13963
13964 2009-06-07  Bruno Haible  <bruno@clisp.org>
13965
13966         * tests/test-alignof.c: Don't test int64_t if it does not exist.
13967         Reported by Eric Blake.
13968
13969 2009-06-06  Eric Blake  <ebb9@byu.net>
13970
13971         test-alignof: fix typo with long double
13972         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
13973         compiler error.
13974
13975 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
13976
13977         Escape non-texinfo { and }s.
13978         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
13979         markup error.
13980
13981 2009-06-04  Jim Meyering  <meyering@redhat.com>
13982
13983         gitlog-to-changelog: don't infloop on an empty commit log
13984         * build-aux/gitlog-to-changelog: Warn about an empty log message.
13985         Reported by Boris Petersen <transacid@centerim.org>.
13986
13987 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
13988
13989         version-etc: extend for packagers
13990         Add three new configure options, intended for packagers:
13991           --with-packager="packager name"
13992           --with-packager-version="packager-specific version"
13993           --with-packager-bug-reports="packager bug reporting"
13994         An example with coreutils:
13995           $ ./configure \
13996             --with-packager=Gentoo \
13997             --with-packager-bug-report=http://bugs.gentoo.org/ \
13998             --with-packager-version="patchset 1.6"
13999           $ ./src/ls --version | head -n2
14000           ls (GNU coreutils) 7.1-dirty
14001           Packaged by Gentoo (patchset 1.6)
14002         Note that the bug reporting info via --help doesn't show up because
14003         coreutils uses its own custom emit_bug_reporting_address() implementation
14004         in src/system.h.  If it didn't, it'd look like:
14005           $ ./src/ls --help | tail -n4
14006           Report bugs to <bug-coreutils@gnu.org>.
14007           Report Gentoo bugs to <http://bugs.gentoo.org/>.
14008           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
14009           General help using GNU software: <http://www.gnu.org/gethelp/>.
14010         * lib/version-etc.c: Print new information, if provided.
14011         * m4/version-etc.m4: New file.
14012         * modules/version-etc (Files): Add m4/version-etc.m4.
14013         (configure.ac): Add gl_VERSION_ETC.
14014
14015 2009-05-31  Bruno Haible  <bruno@clisp.org>
14016
14017         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
14018         and 'int64_t'.
14019         * modules/alignof-tests (Dependencies): Add stdint.
14020         Reported by Eric Blake.
14021
14022 2009-05-31  Bruno Haible  <bruno@clisp.org>
14023
14024         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
14025         restriction due to compiler bugs.
14026         Reported by Eric Blake.
14027
14028 2009-05-31  Simon Josefsson  <simon@josefsson.org>
14029             Bruno Haible  <bruno@clisp.org>
14030
14031         Fix test-alignof failure.
14032         * lib/alignof.h (alignof_slot): New macro.
14033         (alignof_type): New macro, with the same semantics as the previous
14034         'alignof'.
14035         (alignof): Alias to alignof_slot.
14036         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
14037         check that the results are usable as constant expressions.
14038
14039 2009-05-31  Bruno Haible  <bruno@clisp.org>
14040
14041         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
14042         * tests/test-memchr.c (main): Check that memchr does not read past the
14043         first occurrence of the byte.
14044         * tests/test-strstr.c (main): Update comment.
14045         Suggested by Eric Blake.
14046
14047 2009-05-30  Bruno Haible  <bruno@clisp.org>
14048
14049         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
14050         detail how to use dumpbin.
14051         Reported by David Byron <dbyron@dbyron.com>.
14052
14053 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14054
14055         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
14056
14057 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14058
14059         * m4/manywarnings.m4: Add GCC 4.4 warnings.
14060
14061 2009-05-28  Bruno Haible  <bruno@clisp.org>
14062
14063         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
14064         build-aux/ files.
14065
14066 2009-05-28  Simon Josefsson  <simon@josefsson.org>
14067
14068         * gnulib-tool (func_import): Transform license on build-aux/ files too.
14069
14070 2009-05-27  Simon Josefsson  <simon@josefsson.org>
14071
14072         * gnulib-tool (sed_transform_main_lib_file)
14073         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
14074         regexps.
14075
14076 2009-05-26  Simon Josefsson  <simon@josefsson.org>
14077
14078         * tests/test-strstr.c: Add another self-test.
14079         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
14080         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
14081
14082 2009-05-23  Bruno Haible  <bruno@clisp.org>
14083
14084         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
14085         change.
14086
14087 2009-05-21  Bruno Haible  <bruno@clisp.org>
14088
14089         Simplify use of mode_t varargs.
14090         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
14091         uses 'mode_t' or 'int'.
14092         * lib/openat.c (openat): Likewise.
14093         * lib/open-safer.c (open_safer): Likewise.
14094         * m4/mode_t.m4: New file.
14095         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
14096         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
14097         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
14098         * modules/open (Files): Add m4/mode_t.m4.
14099         * modules/openat (Files): Likewise.
14100         * modules/fcntl-safer (Files): Likewise.
14101         Suggested by Eric Blake.
14102
14103 2009-05-21  Pádraig Brady  <P@draigbrady.com>
14104
14105         * doc/glibc-functions/fallocate.texi: New file.
14106         * doc/gnulib.texi: Include it.
14107
14108 2009-05-21  Eric Blake  <ebb9@byu.net>
14109             Bruno Haible  <bruno@clisp.org>
14110
14111         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
14112         invocations.
14113         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
14114
14115 2009-05-21  Eric Blake  <ebb9@byu.net>
14116             Bruno Haible  <bruno@clisp.org>
14117
14118         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
14119         include_next. Fix of 2008-11-20 commit.
14120         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
14121         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
14122         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
14123         NEXT_MATH_H.
14124         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
14125         instead of NEXT_MATH_H.
14126
14127 2009-05-21  Bruno Haible  <bruno@clisp.org>
14128
14129         Avoid redefinition warnings for SIZE_MAX.
14130         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
14131         Reported by Simon Josefsson.
14132
14133 2009-05-21  Bruno Haible  <bruno@clisp.org>
14134
14135         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
14136         AC_CACHE_VAL.
14137
14138 2009-05-20  Bruno Haible  <bruno@clisp.org>
14139
14140         Make zeroptr.h work on mingw.
14141         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
14142         mprotect.
14143         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
14144         * modules/memchr2-tests (configure.ac): Likewise.
14145         * modules/memcmp-tests (configure.ac): Likewise.
14146         * modules/memmem-tests (configure.ac): Likewise.
14147         * modules/memrchr-tests (configure.ac): Likewise.
14148         Reported by Simon Josefsson.
14149
14150 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14151
14152         * tests/test-glob.c: Include string.h for strcmp prototype.
14153
14154 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14155
14156         * modules/getdelim (Depends-on): Add explicit stdint, although it
14157         was implicitly already pulled in via realloc-posix.
14158         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
14159
14160 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14161
14162         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
14163         G. Christensen" <tgc@jupiterrise.com>.
14164         * m4/sys_socket_h.m4: Check for sa_family_t.
14165         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
14166         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
14167         * tests/test-sys_socket.c: Check that sa_family_t works.
14168
14169 2009-05-18  Eric Blake  <ebb9@byu.net>
14170
14171         maint.mk: allow gnulib_dir in VPATH build
14172         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
14173
14174 2009-05-15  Jim Meyering  <meyering@redhat.com>
14175
14176         maint.mk: Give gnulib_dir a default definition.
14177         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
14178         Thus, most packages no longer need to specify this variable in cfg.mk
14179
14180 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
14181
14182         rename.m4: fix typos that would make non-mingw cross-configure fail
14183         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
14184
14185 2009-05-13  Eric Blake  <ebb9@byu.net>
14186
14187         mmap-anon: avoid out-of-order autoconf expansion
14188         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
14189         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
14190         * modules/memchr-tests (Depends-on): Add extensions.
14191         * modules/memchr2-tests (Depends-on): Add extensions.
14192         * modules/memcmp-tests (Depends-on): Add extensions.
14193         * modules/memmem-tests (Depends-on): Add extensions.
14194         * modules/memrchr-tests (Depends-on): Add extensions.
14195
14196 2009-05-13  Bruno Haible  <bruno@clisp.org>
14197
14198         Make some tests ISO C 99 compliant.
14199         * tests/zerosize-ptr.h: New file.
14200         * tests/test-memchr.c: Include zerosize-ptr.h.
14201         (main): Use a zero-size object pointer instead of NULL.
14202         * tests/test-memchr2.c: Include zerosize-ptr.h.
14203         (main): Use a zero-size object pointer instead of NULL.
14204         * tests/test-memcmp.c: Include zerosize-ptr.h.
14205         (main): Use a zero-size object pointer instead of NULL.
14206         * tests/test-memmem.c: Include zerosize-ptr.h.
14207         (main): Use a zero-size object pointer instead of NULL.
14208         * tests/test-memrchr.c: Include zerosize-ptr.h.
14209         (main): Use a zero-size object pointer instead of NULL.
14210         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
14211         m4/mmap-anon.m4.
14212         (Depends-on): Add getpagesize.
14213         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14214         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
14215         m4/mmap-anon.m4.
14216         (Depends-on): Add getpagesize.
14217         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14218         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
14219         m4/mmap-anon.m4.
14220         (Depends-on): Add getpagesize.
14221         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14222         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
14223         m4/mmap-anon.m4.
14224         (Depends-on): Add getpagesize.
14225         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14226         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
14227         m4/mmap-anon.m4.
14228         (Depends-on): Add getpagesize.
14229         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14230
14231 2009-05-12  Bruno Haible  <bruno@clisp.org>
14232
14233         Tests for module 'alignof'.
14234         * modules/alignof-tests: New file.
14235         * tests/test-alignof.c: New file.
14236
14237 2009-05-12  Bruno Haible  <bruno@clisp.org>
14238
14239         Fix alignof macro.
14240         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
14241         vendor compilers that are always correct.
14242
14243 2009-05-12  Bruno Haible  <bruno@clisp.org>
14244
14245         Make the MAP_ANONYMOUS detection work on HP-UX 11.
14246         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
14247         not whether its fully works.
14248
14249 2009-05-12  Bruno Haible  <bruno@clisp.org>
14250
14251         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
14252
14253 2009-05-12  Jim Meyering  <meyering@redhat.com>
14254
14255         * top/maint.mk: Adjust backslash alignment.
14256
14257 2009-05-11  Simon Josefsson  <simon@josefsson.org>
14258
14259         * top/maint.mk: Make $(srcdir)/build-aux configurable.
14260
14261 2009-05-11  Eric Blake  <ebb9@byu.net>
14262
14263         argp: avoid undefined behavior
14264         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
14265         macros.
14266
14267 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14268
14269         * tests/test-vc-list-files-git.sh: Do git config of user.email and
14270         user.name to prevent git commit from complaining.
14271
14272 2009-05-10  Bruno Haible  <bruno@clisp.org>
14273
14274         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
14275         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
14276         it rewrites every file name only once.
14277         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
14278
14279 2009-05-08  Bruno Haible  <bruno@clisp.org>
14280
14281         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
14282         instead of 'max'.
14283
14284 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14285
14286         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
14287         sockaddr_storage test.
14288
14289 2009-05-07  Simon Josefsson  <simon@josefsson.org>
14290
14291         * modules/sys_socket (Makefile.am): Substitute
14292         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
14293         * m4/sys_socket_h.m4: Check for sockaddr_storage.
14294         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
14295         * tests/test-sys_socket.c: Check sockaddr_storage.
14296
14297 2009-05-08  Bruno Haible  <bruno@clisp.org>
14298
14299         New module 'alignof'.
14300         * lib/alignof.h: New file.
14301         * modules/alignof: New file.
14302
14303 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14304             Bruno Haible  <bruno@clisp.org>
14305
14306         Fix test-file-has-acl on FreeBSD.
14307         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
14308         mask is implicitly added.
14309         * tests/test-file-has-acl.c: Include <signal.h>.
14310         (main): Terminate the test after 5 seconds.
14311         * modules/acl-tests (configure.ac): Check for alarm function.
14312
14313 2009-05-04  Bruno Haible  <bruno@clisp.org>
14314
14315         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
14316         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
14317         * modules/errno (configure.ac): Drop AC_REQUIRE.
14318         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
14319         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
14320
14321 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14322
14323         * modules/glob-tests: New module.
14324         * tests/test-glob.c: Add.
14325
14326 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14327
14328         * modules/fnmatch-tests: New module.
14329         * tests/test-fnmatch.c: Add.
14330
14331 2009-05-04  Eric Blake  <ebb9@byu.net>
14332
14333         maint: make the new no-submodule-changes rule VPATH-safe
14334         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
14335
14336 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14337             Bruno Haible  <bruno@clisp.org>
14338
14339         acl: Fix infinite loop on FreeBSD.
14340         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
14341         of return value from acl_get_entry.
14342         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
14343         Likewise.
14344
14345 2009-05-03  Bruno Haible  <bruno@clisp.org>
14346
14347         * lib/acl-internal.h (acl_entries): Clarify return value.
14348         * lib/acl_entries.c (acl_entries): Likewise.
14349
14350 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14351
14352         Bug fix in acl module.
14353         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
14354
14355 2009-05-03  Bruno Haible  <bruno@clisp.org>
14356
14357         Create gperf-generated file in the source dir, not in the build dir.
14358         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
14359         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
14360         * modules/unicase/locale-language (unicase/locale-languages.h):
14361         Likewise.
14362         * modules/unicase/special-casing (unicase/special-casing-table.h):
14363         Likewise.
14364         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
14365         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
14366         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
14367         Reported by Ralf Wildenhues.
14368
14369 2009-05-03  Bruno Haible  <bruno@clisp.org>
14370
14371         * modules/fnmatch (Description, configure.ac): Taken from
14372         fnmatch-posix.
14373         * modules/fnmatch-posix: Turn into a symbolic reference to the
14374         'fnmatch' module, and deprecate.
14375         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
14376
14377 2009-05-03  Bruno Haible  <bruno@clisp.org>
14378
14379         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
14380         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
14381         Reported by Ralf Wildenhues.
14382
14383 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14384
14385         * m4/fnmatch.m4: Fix fnmatch re-define.
14386
14387 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14388
14389         priv-set: new module and tests; adapt write-any-file
14390         * lib/priv-set.c: New file.
14391         * lib/priv-set.h: New file.
14392         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
14393         * lib/write-any-file.c: Simplify by using priv-set module.
14394         * m4/priv-set.m4: New file.
14395         * modules/priv-set: New file.
14396         * modules/unlinkdir: Add dependency on priv-set module.
14397         * modules/write-any-file: Likewise.
14398
14399         Tests for module 'priv-set'.
14400         * modules/priv-set-tests: New file.
14401         * tests/test-priv-set.c: New file.
14402
14403 2009-05-03  Jim Meyering  <meyering@redhat.com>
14404             Bruno Haible  <bruno@clisp.org>
14405
14406         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
14407         use the converted UTF-8 variant of the name instead.
14408
14409 2009-05-03  Jim Meyering  <meyering@redhat.com>
14410
14411         tests: tighten some getdate tests
14412         * tests/test-getdate.c (main): Tighten tests: require equality,
14413         not just greater than.  Set TZ envvar to UTC0.
14414
14415 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
14416
14417         getdate: correctly interpret "next monday" when run on a Monday
14418         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
14419         that e.g., "next tues" (when run on a tuesday) results in a date
14420         that is one week in the future, and not today's date.
14421         I.e., add a week when the wday is the same as the current one.
14422         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
14423         and earlier by Martin Bernreuther and Jan Minář.
14424         * tests/test-getdate.c (main): Check that "next DAY" is always in
14425         the future and that "last DAY" is always in the past.
14426
14427 2009-05-02  Jim Meyering  <meyering@redhat.com>
14428
14429         build: ensure that a release build fails when a submodule is unclean
14430         * top/maint.mk (no-submodule-changes): New rule.
14431         (alpha beta major): Depend on it.
14432
14433 2009-05-02  Bruno Haible  <bruno@clisp.org>
14434
14435         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
14436         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
14437         shell variable gl_fnmatch_required to detect which variant is
14438         requested.
14439         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
14440         gl_FUNC_FNMATCH_POSIX.
14441         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
14442         exclude fnmatch-posix.
14443
14444 2009-05-02  Bruno Haible  <bruno@clisp.org>
14445
14446         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
14447         * modules/mbsrtowcs (License): Change to LGPLv2+.
14448         * modules/strnlen1 (License): Likewise.
14449         Reported by Simon Josefsson.
14450
14451 2009-05-02  Bruno Haible  <bruno@clisp.org>
14452
14453         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
14454         "cross".
14455         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
14456         gnulib-tool was called with option --source-base=lib.
14457
14458 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14459
14460         Use automake *-local hooks without commands, for extensibility.
14461         * modules/localcharset (Makefile.am): Rename install-exec-local
14462         rule to install-exec-localcharset, and make it a prerequisite of
14463         install-exec-local.  Likewise, rename the uninstall-local rule to
14464         uninstall-localcharset, and make it a prerequisite of the former.
14465
14466 2009-05-01  Bruno Haible  <bruno@clisp.org>
14467
14468         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
14469         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
14470         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
14471         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
14472         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
14473         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
14474         m4/locale-zh.m4, m4/codeset.m4.
14475
14476         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
14477         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
14478         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
14479         m4/locale-zh.m4.
14480
14481         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
14482         REPLACE_WCRTOMB if mbstate_t must be replaced.
14483         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
14484         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
14485
14486 2009-05-01  Bruno Haible  <bruno@clisp.org>
14487
14488         Avoid compiler warnings when redefining macros defined by <libintl.h>.
14489         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
14490         dngettext, dcngettext, textdomain, bindtextdomain,
14491         bind_textdomain_codeset): Undefine before redefining.
14492
14493 2009-04-30  Bruno Haible  <bruno@clisp.org>
14494
14495         Fix bug introduced on 2009-04-25.
14496         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
14497         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
14498         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
14499         is defined.
14500         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
14501         is defined.
14502         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
14503         is defined.
14504         Reported by Elbert_Pol <elbert.pol@gmail.com>.
14505
14506 2009-04-28  Bruno Haible  <bruno@clisp.org>
14507
14508         Comment tweaks.
14509         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
14510         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
14511         * lib/unicase.h (u*_casexfrm): Likewise.
14512         Reported by Paolo Bonzini.
14513
14514 2009-04-28  Bruno Haible  <bruno@clisp.org>
14515
14516         Fix a compilation error.
14517         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
14518         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
14519         Reported by Jim Meyering.
14520
14521 2009-04-27  Bruno Haible  <bruno@clisp.org>
14522
14523         New module 'libunistring'.
14524         * modules/libunistring: New file.
14525         * m4/libunistring.m4: New file.
14526         * MODULES.html.sh (Unicode string functions): Add it.
14527
14528 2009-04-27  Eric Blake  <ebb9@byu.net>
14529
14530         maint.mk: allow package-specific header to provide <config.h>
14531         * top/maint.mk (sc_require_config_h): New variable.
14532         (sc_require_config_h, sc_require_config_h_first): Use it.
14533
14534 2009-04-27  Simon Josefsson  <simon@josefsson.org>
14535
14536         * top/maint.mk (sc_avoid_if_before_free): Except
14537         useless-if-before-free script.
14538
14539 2009-04-27  Eric Blake  <ebb9@byu.net>
14540
14541         maintainer-makefile: depend on all required helper scripts
14542         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
14543         useless-if-before-free.
14544         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
14545         version, rather than assuming gnulib checkout is available.
14546         Reported by Simen Josefsson.
14547
14548 2009-04-26  Bruno Haible  <bruno@clisp.org>
14549
14550         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
14551         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
14552         "../" or "..".
14553
14554 2009-04-26  Bruno Haible  <bruno@clisp.org>
14555
14556         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
14557         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
14558         AC_LIB_HAVE_LINKFLAGS.
14559
14560 2009-04-26  Bruno Haible  <bruno@clisp.org>
14561
14562         Simplify calling convention of u*_conv_from_encoding.
14563         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
14564         u32_conv_from_encoding): Expect a resultbuf argument and return the
14565         result directly as a pointer.
14566         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
14567         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
14568         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
14569         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
14570         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
14571         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
14572         Update.
14573         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
14574         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
14575         * lib/vasnprintf.c (VASNPRINTF): Update.
14576         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
14577         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
14578         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
14579         * NEWS: Mention the change.
14580
14581 2009-04-26  Bruno Haible  <bruno@clisp.org>
14582
14583         Simplify calling convention of u*_conv_to_encoding.
14584         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
14585         u32_conv_to_encoding): Expect a resultbuf argument and return the
14586         result directly as a pointer.
14587         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
14588         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
14589         freeing scaled_offsets if mem_iconveha failed.
14590         * lib/unicase/u-casexfrm.h (FUNC): Update.
14591         * lib/uninorm/u-normxfrm.h (FUNC): Update.
14592         * lib/vasnprintf.c (VASNPRINTF): Update.
14593         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
14594         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
14595         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
14596         * NEWS: Mention the change.
14597
14598 2009-04-26  Bruno Haible  <bruno@clisp.org>
14599
14600         Avoid test failures on AIX and OSF/1.
14601         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
14602         malloc(0).
14603         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
14604         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
14605         Likewise.
14606         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
14607         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
14608         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
14609         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
14610         * doc/posix-functions/malloc.texi: Document the portability problem
14611         related to malloc(0).
14612
14613 2009-04-26  Bruno Haible  <bruno@clisp.org>
14614
14615         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
14616         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
14617         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
14618
14619 2009-04-25  Bruno Haible  <bruno@clisp.org>
14620
14621         Avoid link error when creating a namespace clean library.
14622         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
14623         as macro with arguments if already defined as an alias.
14624         * lib/signbitf.c (gl_signbitf): Don't undefine.
14625         * lib/signbitd.c (gl_signbitd): Don't undefine.
14626         * lib/signbitl.c (gl_signbitl): Don't undefine.
14627
14628 2009-04-25  Jim Meyering  <meyering@redhat.com>
14629
14630         vc-list-files: fix another quoting bug
14631         * build-aux/vc-list-files: Avoid sed backslash expansion
14632         of pathological directory names.
14633
14634 2009-04-25  Eric Blake  <ebb9@byu.net>
14635
14636         vc-list-files: fix shell quoting error
14637         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
14638         timestamp.
14639
14640 2009-04-25  Jim Meyering  <meyering@redhat.com>
14641
14642         vc-list-files: restore lost functionality with subdir argument
14643         * build-aux/vc-list-files: When given a non-"." sub-directory
14644         argument, substitute the $dir/ prefix back onto each resulting name.
14645         Otherwise, coreutils' root_tests check would fail.
14646
14647 2009-04-24  Eric Blake  <ebb9@byu.net>
14648
14649         vc-list-files: ignore git symlinks
14650         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
14651         than ls-files, to ignore git symlinks.
14652
14653         maint.mk: import improvements from m4
14654         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
14655         (move_if_change): Delete unused macro.
14656         (news-date-check, vc-diff-check): Support VPATH builds.
14657         (announcement): Likewise.  Split --bootstrap-tools list...
14658         (boostrap-tools): ...into separate list, which can be overridden
14659         in cfg.mk.
14660         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
14661         requiring dependency on useless-if-before-free module.
14662         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
14663         Support VPATH builds.
14664
14665 2009-04-24  Jim Meyering  <meyering@redhat.com>
14666
14667         maint.mk: remove coreutils-specific rules and variables
14668         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
14669         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
14670         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
14671
14672         maint.mk: remove obsolete rule
14673         * top/maint.mk (rel-check): Remove rule.
14674         (WGET, WGETFLAGS): Remove now-unused variables.
14675
14676 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14677
14678         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
14679         consistency.
14680
14681         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
14682         '$(PATH_SEPARATOR)' instead of ':'.
14683
14684 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14685
14686         * lib/getopt1.c (main): Use 'const' for static array.
14687
14688 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14689
14690         * top/maint.mk: Sync with coreutils.
14691         * NEWS: Explain incompatibilities.
14692
14693 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14694             Bruno Haible  <bruno@clisp.org>
14695
14696         Fix cross-compilation results.
14697         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
14698         statement, as third argument of AC_TRY_RUN.
14699         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
14700         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
14701         Likewise.
14702         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
14703         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
14704         Likewise.
14705         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
14706         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
14707         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
14708
14709 2009-04-20  Bruno Haible  <bruno@clisp.org>
14710
14711         Avoid test failure on mingw.
14712         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
14713
14714 2009-04-20  Bruno Haible  <bruno@clisp.org>
14715
14716         Avoid compilation error on mingw.
14717         * modules/localename-tests (Depends-on): Add locale.
14718
14719 2009-04-19  Bruno Haible  <bruno@clisp.org>
14720
14721         Support for building a shared library on Windows platforms.
14722         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
14723         (main): Test the presence of UNINORM_NFC here.
14724         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
14725         (main): Test the presence of UNINORM_NFD here.
14726         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
14727         (main): Test the presence of UNINORM_NFKC here.
14728         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
14729         (main): Test the presence of UNINORM_NFKD here.
14730
14731 2009-04-19  Bruno Haible  <bruno@clisp.org>
14732
14733         Avoid a compiler warning.
14734         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
14735         Change type of variable 'sequence'.
14736
14737 2009-04-19  Bruno Haible  <bruno@clisp.org>
14738
14739         * modules/configmake (Makefile.am): When the contents of configmake.h
14740         does not change, arrange to preserve its modification time.
14741
14742 2009-04-17  Simon Josefsson  <simon@josefsson.org>
14743
14744         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
14745         gettext domain.
14746
14747 2009-04-16  Jim Meyering  <meyering@redhat.com>
14748
14749         useless-if-before-free: improve conversion code
14750         * build-aux/useless-if-before-free: Adjust code-in-comment to match
14751         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
14752
14753 2009-04-14  Bruno Haible  <bruno@clisp.org>
14754
14755         * modules/fcntl (Depends-on): Add extensions.
14756         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
14757
14758 2009-04-12  Ben Pfaff  <blp@gnu.org>
14759
14760         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
14761         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
14762
14763 2009-03-20  Ben Pfaff  <blp@gnu.org>
14764
14765         Make rename replace existing destinations on Windows.
14766         * m4/rename.m4: Add test for Mingw.
14767         * lib/rename.c: Add rename replacement that uses MoveFileEx with
14768         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
14769         * doc/posix-functions/rename.texi: Document.
14770
14771 2009-04-10  Bruno Haible  <bruno@clisp.org>
14772
14773         New include file "iconveh.h".
14774         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
14775         * lib/striconveh.h: Include it.
14776         (enum iconv_ilseq_handler): Remove definition.
14777         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
14778         striconveh.h.
14779         * lib/striconveha.c: Include striconveh.h.
14780         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
14781         * modules/striconveh (Files): Add lib/iconveh.h.
14782         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
14783         lib/striconveh.h.
14784
14785 2009-04-10  Bruno Haible  <bruno@clisp.org>
14786
14787         * lib/uniconv.h: Update comment.
14788
14789 2009-04-10  Bruno Haible  <bruno@clisp.org>
14790
14791         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
14792         always.
14793         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14794         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14795         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14796         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
14797         "unistring-notinline.h", so that the function gets defined always.
14798         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14799         * lib/unistr/u8-uctomb.c: Likewise.
14800         * lib/unistr/u16-mbtouc.c: Likewise.
14801         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14802         * lib/unistr/u16-uctomb.c: Likewise.
14803         * lib/unistr/u32-mbtouc.c: Likewise.
14804         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14805         * lib/unistr/u32-uctomb.c: Likewise.
14806
14807 2009-04-10  Bruno Haible  <bruno@clisp.org>
14808
14809         Mark 'utime' obsolete.
14810         * modules/utime (Status, Notice): New sections.
14811         Suggested by Jim Meyering.
14812
14813         Fix cross-compile guess for utime test.
14814         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
14815         autoconf.
14816         * doc/posix-functions/utime.texi: Give more precisions.
14817         Reported by Jan <ipif@ymail.com>.
14818
14819 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
14820
14821         filevercmp: correct today's change
14822         * lib/filevercmp.c: Also handle coreutils' test inputs.
14823         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
14824
14825         Fix regression in 'filevercmp' module. Thanks Sven Joachim
14826         for reporting it.
14827         * lib/filevercmp.c: Special handle for "", "." and "..".
14828         * tests/test-filevercmp.c: Enlarge the set suite.
14829
14830 2009-04-07  Jim Meyering  <meyering@redhat.com>
14831
14832         useless-if-before-free: show how to remove braced useless free, too
14833         * build-aux/useless-if-before-free: still only in a comment, though.
14834
14835 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
14836
14837         maint.mk: import changes to syntax-check macros from coreutils
14838         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
14839         Use them in the relevant macros.
14840
14841 2009-04-06  Bruno Haible  <bruno@clisp.org>
14842
14843         Fix unportable use of bit-fields.
14844         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
14845         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
14846         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
14847
14848 2009-04-06  Bruno Haible  <bruno@clisp.org>
14849
14850         Avoid test failures on AIX and OSF/1.
14851         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
14852         that malloc(0) = NULL.
14853         * tests/unicase/test-u8-tolower.c (check): Likewise.
14854         * tests/unicase/test-u8-totitle.c (check): Likewise.
14855         * tests/unicase/test-u8-toupper.c (check): Likewise.
14856         * tests/unicase/test-u16-casefold.c (check): Likewise.
14857         * tests/unicase/test-u16-tolower.c (check): Likewise.
14858         * tests/unicase/test-u16-totitle.c (check): Likewise.
14859         * tests/unicase/test-u16-toupper.c (check): Likewise.
14860         * tests/unicase/test-u32-casefold.c (check): Likewise.
14861         * tests/unicase/test-u32-tolower.c (check): Likewise.
14862         * tests/unicase/test-u32-totitle.c (check): Likewise.
14863         * tests/unicase/test-u32-toupper.c (check): Likewise.
14864         * tests/uninorm/test-u8-nfc.c (check): Likewise.
14865         * tests/uninorm/test-u8-nfd.c (check): Likewise.
14866         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
14867         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
14868         * tests/uninorm/test-u16-nfc.c (check): Likewise.
14869         * tests/uninorm/test-u16-nfd.c (check): Likewise.
14870         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
14871         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
14872         * tests/uninorm/test-u32-nfc.c (check): Likewise.
14873         * tests/uninorm/test-u32-nfd.c (check): Likewise.
14874         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
14875         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
14876
14877 2009-04-05  Bruno Haible  <bruno@clisp.org>
14878
14879         Work around an autoconf limitation.
14880         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
14881         comment line if it would be longer than 3 KB.
14882
14883 2009-04-05  Bruno Haible  <bruno@clisp.org>
14884
14885         Avoid test failure with libiconv-1.13.
14886         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
14887         of the expected test results.
14888
14889 2009-04-05  Bruno Haible  <bruno@clisp.org>
14890
14891         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
14892         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
14893         that it should be installed.
14894
14895 2009-04-05  Bruno Haible  <bruno@clisp.org>
14896
14897         * gnulib-tool: New option --copy-file.
14898         (func_usage): Document it.
14899         (func_dest_tmpfilename): Moved out of func_import.
14900         (func_add_file, func_update_file): New functions, extracted from
14901         func_import.
14902         (func_import): Update.
14903
14904 2009-04-05  Karl Berry  <karl@gnu.org>
14905
14906         * README: prominently mention gnulib-tool.
14907         Rearrange sections so getting the code is near the top.
14908
14909 2009-04-05  Bruno Haible  <bruno@clisp.org>
14910
14911         * lib/unicase.h: Mention u*_cmp2.
14912         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14913         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
14914         * lib/unicase/ulc-casecmp.c: Likewise.
14915         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
14916         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
14917         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
14918         unistr/u8-cmp.
14919         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
14920         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
14921         unistr/u16-cmp.
14922         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
14923         unistr/u32-cmp.
14924
14925         * lib/uninorm.h: Mention u*_cmp2.
14926         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14927         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
14928         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
14929         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
14930         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
14931         unistr/u8-cmp.
14932         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
14933         unistr/u16-cmp.
14934         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
14935         unistr/u32-cmp.
14936
14937         New module 'unistr/u32-cmp2'.
14938         * lib/unistr/u32-cmp2.c: New file.
14939         * modules/unistr/u32-cmp2: New file.
14940
14941         New module 'unistr/u16-cmp2'.
14942         * lib/unistr/u16-cmp2.c: New file.
14943         * modules/unistr/u16-cmp2: New file.
14944
14945         New module 'unistr/u8-cmp2'.
14946         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
14947         * lib/unistr/u8-cmp2.c: New file.
14948         * lib/unistr/u-cmp2.h: New file.
14949         * modules/unistr/u8-cmp2: New file.
14950
14951 2009-04-05  Bruno Haible  <bruno@clisp.org>
14952
14953         * lib/unictype.h (uc_property_is_valid): New macro.
14954         * tests/unictype/test-pr_byname.c (main): Use it.
14955
14956         * lib/unistr.h: Doc fixes.
14957         * lib/uniconv.h: Doc fixes.
14958         * lib/unictype.h: Doc fixes.
14959
14960 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
14961
14962         Port coreutils 7.2 to Solaris 8.
14963
14964         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
14965         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
14966         for Solaris 8.  This is a bit of a hack, as it means it's the
14967         caller's responsibility to add -lnsl if needed, but most likely it
14968         won't be needed since only getaddrinfo uses this and getaddrinfo
14969         isn't needed on Solaris 8.
14970
14971         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
14972         problem to Solaris 8 encountered with coreutils 7.2, which
14973         resulted in a message "fnmatch.c:292: warning: passing argument 4
14974         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
14975         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
14976
14977 2009-04-03  Simon Josefsson  <simon@josefsson.org>
14978
14979         * m4/ld-version-script.m4: Add FIXME comment.
14980
14981 2009-04-02  Simon Josefsson  <simon@josefsson.org>
14982
14983         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
14984         SOVERSION variable.
14985
14986 2009-04-02  Bruno Haible  <bruno@clisp.org>
14987
14988         * Makefile (info, html, dvi, pdf): Combine the rules.
14989         Suggested by Jim Meyering.
14990
14991 2009-04-01  Bruno Haible  <bruno@clisp.org>
14992
14993         * Makefile (info, html, dvi, pdf): New targets.
14994         Reported by Reuben Thomas <rrt@sc3d.org>.
14995
14996 2009-04-01  Bruno Haible  <bruno@clisp.org>
14997
14998         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
14999         can be put into PATH.
15000         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
15001
15002 2009-04-01  Bruno Haible  <bruno@clisp.org>
15003
15004         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
15005
15006 2009-04-01  Bruno Haible  <bruno@clisp.org>
15007
15008         Rename module 'visibility'.
15009         * modules/lib-symbol-visibility: Renamed from modules/visibility.
15010         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
15011         * doc/gnulib.texi: Update.
15012         * MODULES.html.sh (Misc): Update.
15013         * NEWS: Mention the change.
15014
15015 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15016
15017         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
15018         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
15019         Eric Blake <ebb9@byu.net> for review.
15020         * MODULES.html.sh: Add lib-msvc-compat.
15021         * doc/gnulib.texi: Link to new section.
15022         * m4/ld-output-def.m4: New file.
15023         * doc/ld-output-def.texi: New file.
15024
15025 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15026
15027         Rename ld-version-script to lib-symbol-versions.  Suggested by
15028         Bruno Haible <bruno@clisp.org>.
15029         * modules/ld-version-script: Renamed to lib-symbol-versions.
15030         * doc/ld-version-script.texi: Fix module name.
15031         * MODULES.html.sh: Add lib-symbol-versions.
15032
15033 2009-03-31  Simon Josefsson  <simon@josefsson.org>
15034
15035         * modules/u64-tests: New file.
15036         * tests/test-u64.c: New file.
15037
15038 2009-03-04  Simon Josefsson  <simon@josefsson.org>
15039
15040         * MODULES.html.sh: Mention u64.
15041         * modules/u64: New module.
15042         * modules/crypto/sha512: Depend on u64 module instead of providing
15043         u64.h.
15044
15045 2009-03-27  Eric Blake  <ebb9@byu.net>
15046
15047         test-strerror: make debugging EAI_SYSTEM easier
15048         * modules/getaddrinfo-tests (Depends-on): Add strerror.
15049         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
15050         failure was EAI_SYSTEM.
15051
15052 2009-03-25  Bruno Haible  <bruno@clisp.org>
15053
15054         Fix a problem with --enable-relocatable on Solaris 7.
15055         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
15056         since 2008-02-24.
15057
15058 2009-03-25  Eric Blake  <ebb9@byu.net>
15059
15060         test-sockets: avoid gcc warning
15061         * tests/test-sockets.c (main): Silence compiler warning.
15062
15063 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
15064
15065         New modules nproc, pthread, contributed by Glen Lenker.
15066
15067         * MODULES.html.sh: Add pthread, nproc.
15068         * lib/nproc.c: New file.
15069         * lib/nproc.h: New file.
15070         * lib/pthread.in.h: New file.
15071         * m4/pthread.m4: New file.
15072         * modules/nproc: New file.
15073         * modules/pthread: New file.
15074
15075 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15076
15077         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
15078         New variable.
15079
15080 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
15081
15082         filevercmp: handle simple~ and numbered.~3~ backup suffixes
15083         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
15084         * tests/test-filevercmp.c: Add tests for backup suffixes.
15085
15086 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15087
15088         * modules/stdlib (Depends-on): Add stdint, needed when defining
15089         struct random_data on, for example, HP-UX 10.20.  Reported by
15090         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15091
15092 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15093
15094         * lib/readline.c (readline): Call fflush on stdout after printing
15095         prompt.
15096
15097 2009-03-20  Bruno Haible  <bruno@clisp.org>
15098
15099         Remove dependency from 'close' module to -lws2_32 on native Windows.
15100         * lib/close-hook.h: New file.
15101         * lib/close-hook.c: New file.
15102         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
15103         w32sock.h.
15104         (_gl_close_fd_maybe_socket): Remove function.
15105         (rpl_close): Invoke execute_all_close_hooks instead of
15106         _gl_close_fd_maybe_socket.
15107         * lib/sockets.c: Include close-hook.h, w32sock.h.
15108         (close_fd_maybe_socket): New function, essentially from lib/close.c.
15109         (close_sockets_hook): New variable.
15110         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
15111         (gl_sockets_cleanup): Unregister it.
15112         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
15113         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
15114         * modules/close-hook: New file.
15115         * modules/close (Files): Remove lib/w32sock.h.
15116         (Depends-on): Add close-hook.
15117         (Link): Remove section.
15118         * modules/sockets (Files): Add lib/w32sock.h.
15119         (Depends-on): Add close-hook.
15120         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
15121         invocation.
15122         * NEWS: Mention that LIB_CLOSE is gone.
15123
15124 2009-03-23  Eric Blake  <ebb9@byu.net>
15125
15126         signal-tests: test previous patch
15127         * tests/test-signal.c: New file.
15128         * modules/signal-tests: Likewise.
15129
15130         signal.h: always support 'volatile sig_atomic_t'
15131         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
15132         (gl_SIGNAL_H_DEFAULTS): Add a default.
15133         * modules/signal (Makefile.am): Substitute if needed.
15134         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
15135         users can blindly add volatile.
15136         * doc/posix-headers/signal.texi (signal.h): Document it.
15137         Reported by Matthew Woehlke.
15138
15139 2009-03-23  Jim Meyering  <meyering@redhat.com>
15140
15141         pathmax: PATH_MAX: use pathconf only when available
15142         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
15143         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
15144         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
15145         This avoids a link failure in a PSP cross-compilation environment
15146         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
15147
15148         * lib/vasnprintf.c (divide): Fix typo in comment.
15149
15150 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15151
15152         * gnulib-tool (func_filter_filelist): Fix comment.
15153
15154 2009-03-20  Bruno Haible  <bruno@clisp.org>
15155
15156         Make sockets.h self-contained.
15157         * lib/sockets.c: Include sockets.h first.
15158         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
15159
15160 2009-03-19  Eric Blake  <ebb9@byu.net>
15161
15162         doc: mention more functions added in cygwin 1.7.0
15163         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
15164         addition.
15165         * doc/posix-functions/log2f.texi: Likewise.
15166
15167 2009-03-19  Jim Meyering  <meyering@redhat.com>
15168
15169         fsusage: avoid syntax error due to statement-before-declaration
15170         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
15171         after all declarations.  Reported by Matthew Woehlke in
15172         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
15173
15174 2009-03-18  Eric Blake  <ebb9@byu.net>
15175
15176         build-aux/compile: sync from automake
15177         * build-aux/compile: New file, from automake.
15178         * config/srclist.txt: Mention build-aux/compile.
15179
15180 2009-03-17  Bruno Haible  <bruno@clisp.org>
15181
15182         * lib/git-merge-changelog.c: Fix typo in comment.
15183         Reported by Reuben Thomas <rrt@sc3d.org>.
15184
15185 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
15186
15187         * m4/regex.m4: update and improve help for
15188         --without-included-regex.
15189
15190 2009-03-17  Simon Josefsson  <simon@josefsson.org>
15191
15192         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
15193         failure on missing include files.
15194
15195 2009-03-17  Eric Blake  <ebb9@byu.net>
15196
15197         doc: mention more functions added in cygwin 1.7.0
15198         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
15199         addition.
15200         * doc/posix-functions/fwscanf.texi: Likewise.
15201         * doc/posix-functions/swprintf.texi: Likewise.
15202         * doc/posix-functions/swscanf.texi: Likewise.
15203         * doc/posix-functions/vfwprintf.texi: Likewise.
15204         * doc/posix-functions/vfwscanf.texi: Likewise.
15205         * doc/posix-functions/vswprintf.texi: Likewise.
15206         * doc/posix-functions/vswscanf.texi: Likewise.
15207         * doc/posix-functions/vwprintf.texi: Likewise.
15208         * doc/posix-functions/vwscanf.texi: Likewise.
15209         * doc/posix-functions/wcscasecmp.texi: Likewise.
15210         * doc/posix-functions/wcsdup.texi: Likewise.
15211         * doc/posix-functions/wcsftime.texi: Likewise.
15212         * doc/posix-functions/wcsncasecmp.texi: Likewise.
15213         * doc/posix-functions/wprintf.texi: Likewise.
15214         * doc/posix-functions/wscanf.texi: Likewise.
15215         * doc/glibc-functions/gethostbyname2.texi: Likewise.
15216
15217 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15218
15219         maint.mk: really add $(AM_MAKEFLAGS)
15220         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
15221         was inadvertently omitted in the last commit.
15222         Spotted by Bruno Haible.
15223
15224         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
15225         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
15226         $(AM_MAKEFLAGS)' rather than plain `make'.
15227
15228         gnulib-tool: execute $MAKE not make
15229         * gnulib-tool: Default $MAKE to 'make'.
15230         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
15231         than make.  Initialize $MAKE in the do-autobuild script.
15232
15233         gnulib-tool: use $MAKE not make in generated files
15234         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
15235         make, in generated files.  Initialize $MAKE in the do-autobuild
15236         script.
15237
15238         * top/GNUmakefile (_have-git-version-gen): Fix typo.
15239
15240         GNUmakefile: disable parallelism only for multiple, recursive targets
15241         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
15242         additions in the Makefile.
15243         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
15244         by Automake.
15245         (.NOTPARALLEL): Only disable parallel builds if multiple targets
15246         are listed on the command line and at least one of them is
15247         listed in $(ALL_RECURSIVE_TARGETS).
15248
15249 2009-03-14  Bruno Haible  <bruno@clisp.org>
15250
15251         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
15252         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
15253         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
15254         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
15255         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
15256         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
15257         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
15258         unistr/u8-uctomb.
15259         * modules/unistr/u8-strchr (Depends-on): Likewise.
15260         * modules/unistr/u8-strrchr (Depends-on): Likewise.
15261         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
15262         unistr/u16-uctomb.
15263         * modules/unistr/u16-strchr (Depends-on): Likewise.
15264         * modules/unistr/u16-strrchr (Depends-on): Likewise.
15265
15266 2009-03-12  Bruno Haible  <bruno@clisp.org>
15267
15268         Work around select() bug on Interix 3.5.
15269         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
15270         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
15271         * m4/select.m4: New file.
15272         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
15273         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
15274         * modules/select (Files): Add m4/select.m4.
15275         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
15276         * modules/nanosleep (Depends-on): Add select.
15277         * modules/poll (Depends-on): Likewise.
15278         * doc/posix-functions/select.texi: Mention the Interix bug.
15279         Reported by Markus Duft <mduft@gentoo.org>.
15280
15281         * lib/select.c: Renamed from lib/winsock-select.c.
15282         * modules/select (Files): Add lib/select.c, remove
15283         lib/winsock-select.c.
15284         (configure.ac): Update.
15285
15286 2009-03-12  Jim Meyering  <meyering@redhat.com>
15287
15288         avoid gcc warnings about unused macro definitions
15289         * lib/readtokens.c (STREQ): Remove unused definition.
15290         * lib/xmalloc.c (SIZE_MAX): Likewise.
15291         * lib/openat-die.c (N_): Likewise.
15292         * lib/mountlist.c (SIZE_MAX): Remove definition.
15293         Instead, include <stdint.h>.
15294         * lib/readutmp.c: Likewise.
15295         * modules/readutmp (Depends-on): Add stdint.
15296         * modules/mountlist (Depends-on): Add stdint.
15297         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
15298
15299 2009-03-10  Bruno Haible  <bruno@clisp.org>
15300
15301         Tests for module 'mbmemcasecoll'.
15302         * modules/mbmemcasecoll-tests: New file.
15303         * tests/test-mbmemcasecoll1.sh: New file.
15304         * tests/test-mbmemcasecoll2.sh: New file.
15305         * tests/test-mbmemcasecoll3.sh: New file.
15306         * tests/test-mbmemcasecoll.c: New file.
15307
15308         New module 'mbmemcasecoll'.
15309         * lib/mbmemcasecoll.h: New file.
15310         * lib/mbmemcasecoll.c: New file.
15311         * modules/mbmemcasecoll: New file.
15312
15313         * tests/test-mbmemcasecmp.h: New file, extracted from
15314         tests/test-mbmemcasecmp.c.
15315         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
15316         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
15317         (main): Update.
15318         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
15319
15320 2009-03-09  Bruno Haible  <bruno@clisp.org>
15321
15322         Tests for module 'mbmemcasecmp'.
15323         * modules/mbmemcasecmp-tests: New file.
15324         * tests/test-mbmemcasecmp1.sh: New file.
15325         * tests/test-mbmemcasecmp2.sh: New file.
15326         * tests/test-mbmemcasecmp3.sh: New file.
15327         * tests/test-mbmemcasecmp.c: New file.
15328
15329         New module 'mbmemcasecmp'.
15330         * lib/mbmemcasecmp.h: New file.
15331         * lib/mbmemcasecmp.c: New file.
15332         * modules/mbmemcasecmp: New file.
15333
15334 2009-03-09  Bruno Haible  <bruno@clisp.org>
15335
15336         Tests for module 'unicase/ulc-casecoll'.
15337         * modules/unicase/ulc-casecoll-tests: New file.
15338         * tests/unicase/test-ulc-casecoll1.sh: New file.
15339         * tests/unicase/test-ulc-casecoll2.sh: New file.
15340         * tests/unicase/test-ulc-casecoll.c: New file.
15341
15342         New module 'unicase/ulc-casecoll'.
15343         * lib/unicase.h (ulc_casecoll): New declaration.
15344         * lib/unicase/ulc-casecoll.c: New file.
15345         * modules/unicase/ulc-casecoll: New file.
15346
15347         New module 'unicase/ulc-casexfrm'.
15348         * lib/unicase.h (ulc_casexfrm): New declaration.
15349         * lib/unicase/ulc-casexfrm.c: New file.
15350         * modules/unicase/ulc-casexfrm: New file.
15351
15352 2009-03-09  Bruno Haible  <bruno@clisp.org>
15353
15354         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
15355         invocations.
15356
15357         * m4/mbscasecmp.m4: Remove file.
15358         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
15359         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
15360
15361         * m4/mbscasestr.m4: Remove file.
15362         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
15363         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
15364
15365         * m4/mbschr.m4: Remove file.
15366         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
15367         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
15368
15369         * m4/mbscspn.m4: Remove file.
15370         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
15371         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
15372
15373         * m4/mbslen.m4: Remove file.
15374         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
15375         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
15376
15377         * m4/mbsncasecmp.m4: Remove file.
15378         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
15379         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
15380
15381         * m4/mbsnlen.m4: Remove file.
15382         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
15383         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
15384
15385         * m4/mbspbrk.m4: Remove file.
15386         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
15387         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
15388
15389         * m4/mbspcasecmp.m4: Remove file.
15390         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
15391         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
15392
15393         * m4/mbsrchr.m4: Remove file.
15394         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
15395         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
15396
15397         * m4/mbssep.m4: Remove file.
15398         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
15399         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
15400
15401         * m4/mbsspn.m4: Remove file.
15402         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
15403         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
15404
15405         * m4/mbsstr.m4: Remove file.
15406         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
15407         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
15408
15409         * m4/mbstok_r.m4: Remove file.
15410         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
15411         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
15412
15413         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
15414
15415         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
15416         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
15417
15418         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
15419
15420 2009-03-08  Bruno Haible  <bruno@clisp.org>
15421
15422         Tests for module 'unicase/ulc-casecmp'.
15423         * modules/unicase/ulc-casecmp-tests: New file.
15424         * tests/unicase/test-ulc-casecmp1.sh: New file.
15425         * tests/unicase/test-ulc-casecmp2.sh: New file.
15426         * tests/unicase/test-ulc-casecmp.c: New file.
15427
15428         New module 'unicase/ulc-casecmp'.
15429         * lib/unicase.h (ulc_casecmp): New declaration.
15430         * lib/unicase/ulc-casecmp.c: New file.
15431         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
15432         'const SRC_UNIT *'.
15433         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
15434         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
15435         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
15436         * modules/unicase/ulc-casecmp: New file.
15437
15438         Tests for module 'unicase/u32-is-cased'.
15439         * modules/unicase/u32-is-cased-tests: New file.
15440         * tests/unicase/test-u32-is-cased.c: New file.
15441
15442         Tests for module 'unicase/u16-is-cased'.
15443         * modules/unicase/u16-is-cased-tests: New file.
15444         * tests/unicase/test-u16-is-cased.c: New file.
15445
15446         Tests for module 'unicase/u8-is-cased'.
15447         * modules/unicase/u8-is-cased-tests: New file.
15448         * tests/unicase/test-u8-is-cased.c: New file.
15449         * tests/unicase/test-is-cased.h: New file.
15450
15451         New module 'unicase/u32-is-cased'.
15452         * lib/unicase/u32-is-cased.c: New file.
15453         * modules/unicase/u32-is-cased: New file.
15454
15455         New module 'unicase/u16-is-cased'.
15456         * lib/unicase/u16-is-cased.c: New file.
15457         * modules/unicase/u16-is-cased: New file.
15458
15459         New module 'unicase/u8-is-cased'.
15460         * lib/unicase/u8-is-cased.c: New file.
15461         * lib/unicase/u-is-cased.h: New file.
15462         * modules/unicase/u8-is-cased: New file.
15463
15464         Tests for module 'unicase/u32-is-casefolded'.
15465         * modules/unicase/u32-is-casefolded-tests: New file.
15466         * tests/unicase/test-u32-is-casefolded.c: New file.
15467
15468         Tests for module 'unicase/u16-is-casefolded'.
15469         * modules/unicase/u16-is-casefolded-tests: New file.
15470         * tests/unicase/test-u16-is-casefolded.c: New file.
15471
15472         Tests for module 'unicase/u8-is-casefolded'.
15473         * modules/unicase/u8-is-casefolded-tests: New file.
15474         * tests/unicase/test-u8-is-casefolded.c: New file.
15475         * tests/unicase/test-is-casefolded.h: New file.
15476
15477         New module 'unicase/u32-is-casefolded'.
15478         * lib/unicase/u32-is-casefolded.c: New file.
15479         * modules/unicase/u32-is-casefolded: New file.
15480
15481         New module 'unicase/u16-is-casefolded'.
15482         * lib/unicase/u16-is-casefolded.c: New file.
15483         * modules/unicase/u16-is-casefolded: New file.
15484
15485         New module 'unicase/u8-is-casefolded'.
15486         * lib/unicase/u8-is-casefolded.c: New file.
15487         * modules/unicase/u8-is-casefolded: New file.
15488
15489         Tests for module 'unicase/u32-is-titlecase'.
15490         * modules/unicase/u32-is-titlecase-tests: New file.
15491         * tests/unicase/test-u32-is-titlecase.c: New file.
15492
15493         Tests for module 'unicase/u16-is-titlecase'.
15494         * modules/unicase/u16-is-titlecase-tests: New file.
15495         * tests/unicase/test-u16-is-titlecase.c: New file.
15496
15497         Tests for module 'unicase/u8-is-titlecase'.
15498         * modules/unicase/u8-is-titlecase-tests: New file.
15499         * tests/unicase/test-u8-is-titlecase.c: New file.
15500         * tests/unicase/test-is-titlecase.h: New file.
15501
15502         New module 'unicase/u32-is-titlecase'.
15503         * lib/unicase/u32-is-titlecase.c: New file.
15504         * modules/unicase/u32-is-titlecase: New file.
15505
15506         New module 'unicase/u16-is-titlecase'.
15507         * lib/unicase/u16-is-titlecase.c: New file.
15508         * modules/unicase/u16-is-titlecase: New file.
15509
15510         New module 'unicase/u8-is-titlecase'.
15511         * lib/unicase/u8-is-titlecase.c: New file.
15512         * modules/unicase/u8-is-titlecase: New file.
15513
15514         Tests for module 'unicase/u32-is-lowercase'.
15515         * modules/unicase/u32-is-lowercase-tests: New file.
15516         * tests/unicase/test-u32-is-lowercase.c: New file.
15517
15518         Tests for module 'unicase/u16-is-lowercase'.
15519         * modules/unicase/u16-is-lowercase-tests: New file.
15520         * tests/unicase/test-u16-is-lowercase.c: New file.
15521
15522         Tests for module 'unicase/u8-is-lowercase'.
15523         * modules/unicase/u8-is-lowercase-tests: New file.
15524         * tests/unicase/test-u8-is-lowercase.c: New file.
15525         * tests/unicase/test-is-lowercase.h: New file.
15526
15527         New module 'unicase/u32-is-lowercase'.
15528         * lib/unicase/u32-is-lowercase.c: New file.
15529         * modules/unicase/u32-is-lowercase: New file.
15530
15531         New module 'unicase/u16-is-lowercase'.
15532         * lib/unicase/u16-is-lowercase.c: New file.
15533         * modules/unicase/u16-is-lowercase: New file.
15534
15535         New module 'unicase/u8-is-lowercase'.
15536         * lib/unicase/u8-is-lowercase.c: New file.
15537         * modules/unicase/u8-is-lowercase: New file.
15538
15539         Tests for module 'unicase/u32-is-uppercase'.
15540         * modules/unicase/u32-is-uppercase-tests: New file.
15541         * tests/unicase/test-u32-is-uppercase.c: New file.
15542
15543         Tests for module 'unicase/u16-is-uppercase'.
15544         * modules/unicase/u16-is-uppercase-tests: New file.
15545         * tests/unicase/test-u16-is-uppercase.c: New file.
15546
15547         Tests for module 'unicase/u8-is-uppercase'.
15548         * modules/unicase/u8-is-uppercase-tests: New file.
15549         * tests/unicase/test-u8-is-uppercase.c: New file.
15550         * tests/unicase/test-is-uppercase.h: New file.
15551
15552         New module 'unicase/u32-is-uppercase'.
15553         * lib/unicase/u32-is-uppercase.c: New file.
15554         * modules/unicase/u32-is-uppercase: New file.
15555
15556         New module 'unicase/u16-is-uppercase'.
15557         * lib/unicase/u16-is-uppercase.c: New file.
15558         * modules/unicase/u16-is-uppercase: New file.
15559
15560         New module 'unicase/u8-is-uppercase'.
15561         * lib/unicase/u8-is-uppercase.c: New file.
15562         * modules/unicase/u8-is-uppercase: New file.
15563
15564         New module 'unicase/u32-is-invariant'.
15565         * lib/unicase/u32-is-invariant.c: New file.
15566         * modules/unicase/u32-is-invariant: New file.
15567
15568         New module 'unicase/u16-is-invariant'.
15569         * lib/unicase/u16-is-invariant.c: New file.
15570         * modules/unicase/u16-is-invariant: New file.
15571
15572         New module 'unicase/u8-is-invariant'.
15573         * lib/unicase/u8-is-invariant.c: New file.
15574         * lib/unicase/invariant.h: New file.
15575         * lib/unicase/u-is-invariant.h: New file.
15576         * modules/unicase/u8-is-invariant: New file.
15577
15578         Tests for module 'unicase/u32-casecoll'.
15579         * modules/unicase/u32-casecoll-tests: New file.
15580         * tests/unicase/test-u32-casecoll.c: New file.
15581
15582         Tests for module 'unicase/u16-casecoll'.
15583         * modules/unicase/u16-casecoll-tests: New file.
15584         * tests/unicase/test-u16-casecoll.c: New file.
15585
15586         Tests for module 'unicase/u8-casecoll'.
15587         * modules/unicase/u8-casecoll-tests: New file.
15588         * tests/unicase/test-u8-casecoll.c: New file.
15589
15590         New module 'unicase/u32-casecoll'.
15591         * lib/unicase/u32-casecoll.c: New file.
15592         * modules/unicase/u32-casecoll: New file.
15593
15594         New module 'unicase/u16-casecoll'.
15595         * lib/unicase/u16-casecoll.c: New file.
15596         * modules/unicase/u16-casecoll: New file.
15597
15598         New module 'unicase/u8-casecoll'.
15599         * lib/unicase/u8-casecoll.c: New file.
15600         * lib/unicase/u-casecoll.h: New file.
15601         * modules/unicase/u8-casecoll: New file.
15602
15603         New module 'unicase/u32-casexfrm'.
15604         * lib/unicase/u32-casexfrm.c: New file.
15605         * modules/unicase/u32-casexfrm: New file.
15606
15607         New module 'unicase/u16-casexfrm'.
15608         * lib/unicase/u16-casexfrm.c: New file.
15609         * modules/unicase/u16-casexfrm: New file.
15610
15611         New module 'unicase/u8-casexfrm'.
15612         * lib/unicase/u8-casexfrm.c: New file.
15613         * lib/unicase/u-casexfrm.h: New file.
15614         * modules/unicase/u8-casexfrm: New file.
15615
15616         Tests for module 'unicase/u32-casecmp'.
15617         * modules/unicase/u32-casecmp-tests: New file.
15618         * tests/unicase/test-u32-casecmp.c: New file.
15619
15620         Tests for module 'unicase/u16-casecmp'.
15621         * modules/unicase/u16-casecmp-tests: New file.
15622         * tests/unicase/test-u16-casecmp.c: New file.
15623
15624         Tests for module 'unicase/u8-casecmp'.
15625         * modules/unicase/u8-casecmp-tests: New file.
15626         * tests/unicase/test-u8-casecmp.c: New file.
15627         * tests/unicase/test-casecmp.h: New file.
15628
15629         New module 'unicase/u32-casecmp'.
15630         * lib/unicase/u32-casecmp.c: New file.
15631         * modules/unicase/u32-casecmp: New file.
15632
15633         New module 'unicase/u16-casecmp'.
15634         * lib/unicase/u16-casecmp.c: New file.
15635         * modules/unicase/u16-casecmp: New file.
15636
15637         New module 'unicase/u8-casecmp'.
15638         * lib/unicase/u8-casecmp.c: New file.
15639         * lib/unicase/u-casecmp.h: New file.
15640         * modules/unicase/u8-casecmp: New file.
15641
15642         Tests for module 'unicase/u32-casefold'.
15643         * modules/unicase/u32-casefold-tests: New file.
15644         * tests/unicase/test-u32-casefold.c: New file.
15645
15646         Tests for module 'unicase/u16-casefold'.
15647         * modules/unicase/u16-casefold-tests: New file.
15648         * tests/unicase/test-u16-casefold.c: New file.
15649
15650         Tests for module 'unicase/u8-casefold'.
15651         * modules/unicase/u8-casefold-tests: New file.
15652         * tests/unicase/test-u8-casefold.c: New file.
15653
15654         New module 'unicase/u32-casefold'.
15655         * lib/unicase/u32-casefold.c: New file.
15656         * modules/unicase/u32-casefold: New file.
15657
15658         New module 'unicase/u16-casefold'.
15659         * lib/unicase/u16-casefold.c: New file.
15660         * modules/unicase/u16-casefold: New file.
15661
15662         New module 'unicase/u8-casefold'.
15663         * lib/unicase/u8-casefold.c: New file.
15664         * lib/unicase/u-casefold.h: New file.
15665         * modules/unicase/u8-casefold: New file.
15666
15667         New module 'unicase/tocasefold'.
15668         * lib/unicase/casefold.h: New file.
15669         * lib/unicase/tocasefold.c: New file.
15670         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
15671         * modules/unicase/tocasefold: New file.
15672
15673         Tests for module 'unicase/u32-totitle'.
15674         * modules/unicase/u32-totitle-tests: New file.
15675         * tests/unicase/test-u32-totitle.c: New file.
15676
15677         Tests for module 'unicase/u16-totitle'.
15678         * modules/unicase/u16-totitle-tests: New file.
15679         * tests/unicase/test-u16-totitle.c: New file.
15680
15681         Tests for module 'unicase/u8-totitle'.
15682         * modules/unicase/u8-totitle-tests: New file.
15683         * tests/unicase/test-u8-totitle.c: New file.
15684
15685         New module 'unicase/u32-totitle'.
15686         * lib/unicase/u32-totitle.c: New file.
15687         * modules/unicase/u32-totitle: New file.
15688
15689         New module 'unicase/u16-totitle'.
15690         * lib/unicase/u16-totitle.c: New file.
15691         * modules/unicase/u16-totitle: New file.
15692
15693         New module 'unicase/u8-totitle'.
15694         * lib/unicase/u8-totitle.c: New file.
15695         * lib/unicase/u-totitle.h: New file.
15696         * modules/unicase/u8-totitle: New file.
15697
15698         Tests for module 'unicase/u32-tolower'.
15699         * modules/unicase/u32-tolower-tests: New file.
15700         * tests/unicase/test-u32-tolower.c: New file.
15701
15702         Tests for module 'unicase/u16-tolower'.
15703         * modules/unicase/u16-tolower-tests: New file.
15704         * tests/unicase/test-u16-tolower.c: New file.
15705
15706         Tests for module 'unicase/u8-tolower'.
15707         * modules/unicase/u8-tolower-tests: New file.
15708         * tests/unicase/test-u8-tolower.c: New file.
15709
15710         New module 'unicase/u32-tolower'.
15711         * lib/unicase/u32-tolower.c: New file.
15712         * modules/unicase/u32-tolower: New file.
15713
15714         New module 'unicase/u16-tolower'.
15715         * lib/unicase/u16-tolower.c: New file.
15716         * modules/unicase/u16-tolower: New file.
15717
15718         New module 'unicase/u8-tolower'.
15719         * lib/unicase/u8-tolower.c: New file.
15720         * modules/unicase/u8-tolower: New file.
15721
15722         Tests for module 'unicase/u32-toupper'.
15723         * modules/unicase/u32-toupper-tests: New file.
15724         * tests/unicase/test-u32-toupper.c: New file.
15725
15726         Tests for module 'unicase/u16-toupper'.
15727         * modules/unicase/u16-toupper-tests: New file.
15728         * tests/unicase/test-u16-toupper.c: New file.
15729
15730         Tests for module 'unicase/u8-toupper'.
15731         * modules/unicase/u8-toupper-tests: New file.
15732         * tests/unicase/test-u8-toupper.c: New file.
15733
15734         New module 'unicase/u32-toupper'.
15735         * lib/unicase/u32-toupper.c: New file.
15736         * modules/unicase/u32-toupper: New file.
15737
15738         New module 'unicase/u16-toupper'.
15739         * lib/unicase/u16-toupper.c: New file.
15740         * modules/unicase/u16-toupper: New file.
15741
15742         New module 'unicase/u8-toupper'.
15743         * lib/unicase/u8-toupper.c: New file.
15744         * modules/unicase/u8-toupper: New file.
15745
15746         New module 'unicase/u32-casemap'.
15747         * lib/unicase/u32-casemap.c: New file.
15748         * modules/unicase/u32-casemap: New file.
15749
15750         New module 'unicase/u16-casemap'.
15751         * lib/unicase/u16-casemap.c: New file.
15752         * modules/unicase/u16-casemap: New file.
15753
15754         New module 'unicase/u8-casemap'.
15755         * lib/unicase/unicasemap.h: New file.
15756         * lib/unicase/u8-casemap.c: New file.
15757         * lib/unicase/u-casemap.h: New file.
15758         * modules/unicase/u8-casemap: New file.
15759
15760         New module 'unicase/special-casing'.
15761         * lib/unicase/special-casing.h: New file.
15762         * lib/unicase/special-casing.c: New file.
15763         * lib/unicase/special-casing-table.gperf: New file, generated by
15764         gen-uni-tables.c.
15765         * modules/unicase/special-casing: New file.
15766
15767         Tests for module 'unicase/locale-language'.
15768         * modules/unicase/locale-language-tests: New file.
15769         * tests/unicase/test-locale-language.sh: New file.
15770         * tests/unicase/test-locale-language.c: New file.
15771
15772         New module 'unicase/locale-language'.
15773         * lib/unicase/locale-language.c: New file.
15774         * lib/unicase/locale-languages.gperf: New file.
15775         * modules/unicase/locale-language: New file.
15776
15777         Generate more tables for case conversion and case folding.
15778         * lib/gen-uni-tables.c (SCC_*): New enum items.
15779         (struct special_casing_rule): New type.
15780         (casing_rules, num_casing_rules, allocated_casing_rules): New
15781         variables.
15782         (add_casing_rule, fill_casing_rules): New functions.
15783         (struct casefold_rule): New type.
15784         (casefolding_rules, num_casefolding_rules,
15785         allocated_casefolding_rules): New variables.
15786         (fill_casefolding_rules): New function.
15787         (unicode_casefold): New variable.
15788         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
15789         sort_casing_rules, output_casing_rules): New functions.
15790         (main): Accept to more arguments: SpecialCasing.txt and
15791         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
15792         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
15793         Output mapping for casefolding.
15794
15795         * lib/unicase.h: Include stdbool.h, uninorm.h.
15796         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
15797         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
15798         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
15799         arguments.
15800         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
15801         resultp arguments.
15802         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
15803         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
15804         resultp arguments.
15805         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
15806         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
15807         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
15808         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
15809         declarations.
15810         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
15811
15812 2009-03-08  Bruno Haible  <bruno@clisp.org>
15813
15814         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15815         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
15816         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
15817         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15818
15819 2009-03-07  Bruno Haible  <bruno@clisp.org>
15820
15821         Adjust u*_normcmp, u*_normcoll API.
15822         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15823         u16_normcoll, u32_normcoll): Change failure conventions.
15824         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
15825         errno and return -1.
15826         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15827
15828 2009-03-07  Bruno Haible  <bruno@clisp.org>
15829
15830         Tests for module 'uninorm/u32-normcoll'.
15831         * modules/uninorm/u32-normcoll-tests: New file.
15832         * tests/uninorm/test-u32-normcoll.c: New file.
15833
15834         Tests for module 'uninorm/u16-normcoll'.
15835         * modules/uninorm/u16-normcoll-tests: New file.
15836         * tests/uninorm/test-u16-normcoll.c: New file.
15837
15838         Tests for module 'uninorm/u8-normcoll'.
15839         * modules/uninorm/u8-normcoll-tests: New file.
15840         * tests/uninorm/test-u8-normcoll.c: New file.
15841
15842 2009-03-07  Bruno Haible  <bruno@clisp.org>
15843
15844         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
15845         tests/uninorm/test-u32-normcmp.c.
15846         * tests/uninorm/test-u32-normcmp.c: Include it.
15847         (test_nonascii): New function, extracted from main. Add some more
15848         tests.
15849         (main): Invoke test_ascii and test_nonascii.
15850         * modules/uninorm/u32-normcmp-tests (Files): Add
15851         tests/uninorm/test-u32-normcmp.h.
15852         (Depends-on): Remove uninorm/u32-normcmp.
15853
15854         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
15855         tests/uninorm/test-u16-normcmp.c.
15856         * tests/uninorm/test-u16-normcmp.c: Include it.
15857         (test_nonascii): New function, extracted from main. Add some more
15858         tests.
15859         (main): Invoke test_ascii and test_nonascii.
15860         * modules/uninorm/u16-normcmp-tests (Files): Add
15861         tests/uninorm/test-u16-normcmp.h.
15862         (Depends-on): Remove uninorm/u16-normcmp.
15863
15864         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
15865         tests/uninorm/test-u8-normcmp.c.
15866         * tests/uninorm/test-u8-normcmp.c: Include it.
15867         (test_nonascii): New function, extracted from main. Add some more
15868         tests.
15869         (main): Invoke test_ascii and test_nonascii.
15870         * modules/uninorm/u8-normcmp-tests (Files): Add
15871         tests/uninorm/test-u8-normcmp.h.
15872         (Depends-on): Remove uninorm/u8-normcmp.
15873
15874 2009-03-07  Bruno Haible  <bruno@clisp.org>
15875
15876         New module 'uninorm/u32-normcoll'.
15877         * lib/uninorm/u32-normcoll.c: New file.
15878         * modules/uninorm/u32-normcoll: New file.
15879
15880         New module 'uninorm/u16-normcoll'.
15881         * lib/uninorm/u16-normcoll.c: New file.
15882         * modules/uninorm/u16-normcoll: New file.
15883
15884         New module 'uninorm/u8-normcoll'.
15885         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
15886         declarations.
15887         * lib/uninorm/u8-normcoll.c: New file.
15888         * lib/uninorm/u-normcoll.h: New file.
15889         * modules/uninorm/u8-normcoll: New file.
15890
15891         New module 'uninorm/u32-normxfrm'.
15892         * lib/uninorm/u32-normxfrm.c: New file.
15893         * modules/uninorm/u32-normxfrm: New file.
15894
15895         New module 'uninorm/u16-normxfrm'.
15896         * lib/uninorm/u16-normxfrm.c: New file.
15897         * modules/uninorm/u16-normxfrm: New file.
15898
15899         New module 'uninorm/u8-normxfrm'.
15900         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
15901         declarations.
15902         * lib/uninorm/u8-normxfrm.c: New file.
15903         * lib/uninorm/u-normxfrm.h: New file.
15904         * modules/uninorm/u8-normxfrm: New file.
15905
15906 2009-03-07  Bruno Haible  <bruno@clisp.org>
15907
15908         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
15909         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
15910         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
15911
15912 2009-03-07  Bruno Haible  <bruno@clisp.org>
15913
15914         New module 'memxfrm'.
15915         * lib/memxfrm.h: New file.
15916         * lib/memxfrm.c: New file.
15917         * modules/memxfrm: New file.
15918
15919 2009-03-07  Bruno Haible  <bruno@clisp.org>
15920
15921         New module 'memcmp2'.
15922         * lib/memcmp2.h: New file.
15923         * lib/memcmp2.c: New file.
15924         * modules/memcmp2: New file.
15925
15926 2009-03-07  Bruno Haible  <bruno@clisp.org>
15927
15928         Tests for module 'uninorm/decomposing-form'.
15929         * modules/uninorm/decomposing-form-tests: New file.
15930         * tests/uninorm/test-decomposing-form.c: New file.
15931
15932         New module 'uninorm/decomposing-form'.
15933         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
15934         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
15935         Add 'decomposing_variant' field.
15936         * lib/uninorm/decomposing-form.c: New file.
15937         * lib/uninorm/nfc.c (uninorm_nfc): Update.
15938         * lib/uninorm/nfd.c (uninorm_nfd): Update.
15939         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
15940         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
15941         * modules/uninorm/decomposing-form: New file.
15942         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
15943         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
15944
15945 2009-03-07  Bruno Haible  <bruno@clisp.org>
15946
15947         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
15948         strings.
15949
15950 2009-03-06  Bruno Haible  <bruno@clisp.org>
15951
15952         Tests for module 'uninorm/u32-normcmp'.
15953         * tests/uninorm/test-u32-normcmp.c: New file.
15954         * modules/uninorm/u32-normcmp-tests: New file.
15955
15956         Tests for module 'uninorm/u16-normcmp'.
15957         * tests/uninorm/test-u16-normcmp.c: New file.
15958         * modules/uninorm/u16-normcmp-tests: New file.
15959
15960         Tests for module 'uninorm/u8-normcmp'.
15961         * tests/uninorm/test-u8-normcmp.c: New file.
15962         * modules/uninorm/u8-normcmp-tests: New file.
15963
15964         New module 'uninorm/u32-normcmp'.
15965         * lib/uninorm/u32-normcmp.c: New file.
15966         * modules/uninorm/u32-normcmp: New file.
15967
15968         New module 'uninorm/u16-normcmp'.
15969         * lib/uninorm/u16-normcmp.c: New file.
15970         * modules/uninorm/u16-normcmp: New file.
15971
15972         New module 'uninorm/u8-normcmp'.
15973         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
15974         declarations.
15975         * lib/uninorm/u8-normcmp.c: New file.
15976         * lib/uninorm/u-normcmp.h: New file.
15977         * modules/uninorm/u8-normcmp: New file.
15978
15979 2009-03-06  Bruno Haible  <bruno@clisp.org>
15980
15981         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
15982         Reported by Eric Blake.
15983
15984 2009-03-06  Eric Blake  <ebb9@byu.net>
15985             Bruno Haible  <bruno@clisp.org>
15986
15987         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
15988         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
15989         condition.
15990         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15991         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
15992         condition.
15993         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15994
15995 2009-03-06  Eric Blake  <ebb9@byu.net>
15996
15997         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
15998         to avoid compiler warnings.
15999         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
16000
16001 2009-03-05  Bruno Haible  <bruno@clisp.org>
16002
16003         * tests/test-ftell.c (main): Disable test beyond end of file on
16004         FreeMiNT.
16005         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16006
16007 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
16008
16009         * lib/filevercmp.c: Move hidden files up in ordering.
16010         * tests/test-filevercmp.c: Add tests for hidden files.
16011
16012 2009-03-04  Bruno Haible  <bruno@clisp.org>
16013
16014         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
16015         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
16016         AM_CFLAGS.
16017         Reported by Simon Josefsson.
16018
16019 2009-03-03  Bruno Haible  <bruno@clisp.org>
16020
16021         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
16022         Reported by Simon Josefsson.
16023
16024         * doc/ld-version-script.texi: Update node reference.
16025
16026 2009-03-03  Bruno Haible  <bruno@clisp.org>
16027
16028         * modules/visibility (License): Change to 'unlimited'.
16029         Suggested by Simon Josefsson.
16030
16031 2009-03-03  Jim Meyering  <meyering@redhat.com>
16032
16033         unlinkdir: cannot_unlink_dir may modify process state
16034         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
16035         it's neither thread-safe nor appropriate for use in a library.
16036
16037 2009-03-03  Eric Blake  <ebb9@byu.net>
16038
16039         test-closein: silence test under Darwin
16040         * tests/test-closein.sh: Ignore stderr from cat, since we don't
16041         care if it dies from EPIPE or EBADF.
16042
16043 2009-03-03  Bruno Haible  <bruno@clisp.org>
16044
16045         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
16046         earlier.
16047         * doc/visibility.texi: Fix @node and @section.
16048
16049 2009-03-03  Simon Josefsson  <simon@josefsson.org>
16050
16051         * doc/gnulib.texi: Link to sections for ld version script and
16052         visibility.
16053         * doc/visibility.texi: Add @node and @section.
16054         * modules/ld-version-script: New module.
16055         * m4/ld-version-script.m4: New file.
16056         * doc/ld-version-script.texi: New file.
16057
16058 2009-03-02  David Lutterkort  <lutter@redhat.com>
16059
16060         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
16061         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16062
16063 2009-03-02  Bruno Haible  <bruno@clisp.org>
16064
16065         * doc/visibility.texi: Mention libtool's -export-symbols option.
16066
16067 2009-03-02  Jim Meyering  <meyering@redhat.com>
16068
16069         announce-gen: new option: --no-print-checksums
16070         * build-aux/announce-gen (usage): Describe it.
16071         (print_checksums): Print a newline here, not in the [*] footnote.
16072         (main): Honor it.
16073
16074 2009-03-01  Bruno Haible  <bruno@clisp.org>
16075
16076         Use socklen_t in the native Windows replacements prototypes.
16077         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
16078         instead of 'int'.
16079         * lib/getsockopt.c (rpl_getsockopt): Likewise.
16080         * lib/setsockopt.c (rpl_setsockopt): Likewise.
16081         * modules/getsockopt (Depends-on): Add socklen.
16082         * modules/setsockopt (Depends-on): Add socklen.
16083
16084 2009-03-01  Bruno Haible  <bruno@clisp.org>
16085
16086         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
16087         least 4.2.
16088
16089 2009-03-01  Eric Blake  <ebb9@byu.net>
16090             Bruno Haible  <bruno@clisp.org>
16091
16092         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
16093         error messages.
16094         * lib/wait-process.c (wait_subprocess): Omit error message about
16095         deadly signal sent to the child of termsigp != NULL.
16096
16097 2009-03-01  Eric Blake  <ebb9@byu.net>
16098
16099         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
16100
16101 2009-03-01  Bruno Haible  <bruno@clisp.org>
16102
16103         Avoid a gcc warning.
16104         * tests/test-sched.c (b): Make global.
16105         Reported by Eric Blake.
16106
16107 2009-01-19  Martin Lambers  <marlam@marlam.de>
16108
16109         Provide POSIX semantics for socket timeout options on W32.
16110         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
16111         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
16112         * modules/setsockopt: Depend on sys_time module for struct timeval.
16113         * modules/getsockopt: Depend on sys_time module for struct timeval.
16114
16115 2009-03-01  Simon Josefsson  <simon@josefsson.org>
16116
16117         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
16118         __USE_GNU, for consistency with netdb.in.h.
16119         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16120
16121 2009-03-01  Bruno Haible  <bruno@clisp.org>
16122
16123         More support for FreeMiNT.
16124         * lib/fseeko.c (rpl_fseeko): Complete last commit.
16125         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16126
16127 2009-03-01  Bruno Haible  <bruno@clisp.org>
16128
16129         More support for FreeMiNT.
16130         * lib/fpurge.c (fpurge): Correct last commit.
16131         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16132
16133 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16134
16135         Fix unportable awk script in vc-list-files.
16136         * build-aux/vc-list-files: In the replacement awk script, use
16137         substr with a second argument of 1, not zero.
16138         Report by Simon Josefsson.
16139
16140 2009-02-28  Bruno Haible  <bruno@clisp.org>
16141
16142         More support for FreeMiNT.
16143         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
16144         to FreeMiNT today.
16145         * lib/fwriting.c (fwriting): Likewise.
16146         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
16147
16148 2009-02-28  Bruno Haible  <bruno@clisp.org>
16149
16150         * tests/test-freadseek.c (main): Disable test beyond end of file on
16151         FreeMiNT.
16152         * tests/test-ftello.c (main): Likewise.
16153         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16154
16155 2009-02-28  Bruno Haible  <bruno@clisp.org>
16156
16157         Add tentative support for FreeMiNT.
16158         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
16159         * lib/fpurge.c (fpurge): Likewise.
16160         * lib/freadable.c (freadable): Likewise.
16161         * lib/freading.c (freading): Likewise.
16162         * lib/freadptr.c (freadptr): Likewise.
16163         * lib/freadseek.c (freadptrinc): Likewise.
16164         * lib/fseeko.c (rpl_fseeko): Likewise.
16165         * lib/fseterr.c (fseterr): Likewise.
16166         * lib/fwritable.c (fwritable): Likewise.
16167         * lib/fwriting.c (fwriting): Likewise.
16168         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
16169         Hourihane.
16170         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16171
16172 2009-02-28  Bruno Haible  <bruno@clisp.org>
16173
16174         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
16175         SIGCHLD.
16176         Reported by Jim Meyering.
16177
16178 2009-02-28  Bruno Haible  <bruno@clisp.org>
16179
16180         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
16181         Mention the results of these tests on various platforms.
16182         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
16183         order.
16184         * doc/posix-functions/printf.texi: Likewise.
16185         * doc/posix-functions/snprintf.texi: Likewise.
16186         * doc/posix-functions/sprintf.texi: Likewise.
16187         * doc/posix-functions/vfprintf.texi: Likewise.
16188         * doc/posix-functions/vprintf.texi: Likewise.
16189         * doc/posix-functions/vsnprintf.texi: Likewise.
16190         * doc/posix-functions/vsprintf.texi: Likewise.
16191         * doc/glibc-functions/obstack_printf.texi: Likewise.
16192         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
16193
16194 2009-02-28  Bruno Haible  <bruno@clisp.org>
16195
16196         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
16197         Reported by Loïc Minier <lool@dooz.org>.
16198
16199 2009-02-27  Bruno Haible  <bruno@clisp.org>
16200
16201         * gnulib-tool (func_import): Make the sed expression used to create the
16202         sed script for updating the .gitignore file POSIX compliant.
16203         Reported by Eric Blake.
16204
16205 2009-02-27  Bruno Haible  <bruno@clisp.org>
16206
16207         * gnulib-tool (sed): Don't alias as "sed --posix".
16208         Reported by Eric Blake.
16209
16210 2009-02-27  Bruno Haible  <bruno@clisp.org>
16211
16212         Avoid test link errors.
16213         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
16214         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
16215         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
16216         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
16217         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16218
16219 2009-02-27  Bruno Haible  <bruno@clisp.org>
16220
16221         Avoid spurious "(cached)" in configure output.
16222         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
16223         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
16224         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
16225         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
16226         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
16227         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
16228         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
16229         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
16230         Reported by Eric Blake.
16231
16232 2009-02-27  Eric Blake  <ebb9@byu.net>
16233
16234         printf: fix regression in previous patch
16235         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
16236
16237 2009-02-27  Bruno Haible  <bruno@clisp.org>
16238
16239         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
16240         value.
16241         * lib/stdint.in.h: Likewise.
16242         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
16243
16244 2009-02-27  Eric Blake  <ebb9@byu.net>
16245
16246         doc: mention more functions added in cygwin 1.7.0
16247         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
16248         addition.
16249         * doc/posix-functions/open_wmemstream.texi: Likewise.
16250         * doc/posix-functions/wcsnlen.texi: Likewise.
16251         * doc/posix-functions/wcsnrtombs.texi: Likewise.
16252         * doc/posix-functions/wcstod.texi: Likewise.
16253         * doc/posix-functions/wcstof.texi: Likewise.
16254         * doc/posix-functions/wcstoimax.texi: Likewise.
16255         * doc/posix-functions/wcstok.texi: Likewise.
16256         * doc/posix-functions/wcstoumax.texi: Likewise.
16257
16258         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
16259         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
16260         * doc/posix-functions/fprintf.texi: Update.
16261         * doc/posix-functions/printf.texi: Update.
16262         * doc/posix-functions/snprintf.texi: Update.
16263         * doc/posix-functions/sprintf.texi: Update.
16264         * doc/posix-functions/vfprintf.texi: Update.
16265         * doc/posix-functions/vprintf.texi: Update.
16266         * doc/posix-functions/vsnprintf.texi: Update.
16267         * doc/posix-functions/vsprintf.texi: Update.
16268         * doc/glibc-functions/obstack_printf.texi: Update.
16269         * doc/glibc-functions/obstack_vprintf.texi: Update.
16270
16271 2009-02-26  Eric Blake  <ebb9@byu.net>
16272
16273         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
16274         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
16275         compilation bug by using runtime conversion.
16276         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
16277         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
16278         * modules/ceill-tests (Files): Use nan.h.
16279         * modules/floorl-tests (Files): Likewise.
16280         * modules/frexpl-tests (Files): Likewise.
16281         * modules/isnanl-tests (Files): Likewise.
16282         * modules/ldexpl-tests (Files): Likewise.
16283         * modules/roundl-tests (Files): Likewise.
16284         * modules/truncl-tests (Files): Likewise.
16285         * tests/test-ceill.c (main): Use a working NaN.
16286         * tests/test-floorl.c (main): Likewise.
16287         * tests/test-frexpl.c (main): Likewise.
16288         * tests/test-isnan.c (test_long_double): Likewise.
16289         * tests/test-isnanl.h (main): Likewise.
16290         * tests/test-ldexpl.h (main): Likewise.
16291         * tests/test-roundl.h (main): Likewise.
16292         * tests/test-truncl.h (main): Likewise.
16293         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
16294
16295 2009-02-26  Eric Blake  <ebb9@byu.net>
16296             Bruno Haible  <bruno@clisp.org>
16297
16298         Work around a *printf bug with %ls on Solaris.
16299         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
16300         precision is specified, sprintf stops converting the wide string
16301         argument when the number of bytes that have been produced by this
16302         conversion equals or exceeds the precision.
16303         * doc/posix-functions/fprintf.texi: Update.
16304         * doc/posix-functions/printf.texi: Update.
16305         * doc/posix-functions/snprintf.texi: Update.
16306         * doc/posix-functions/sprintf.texi: Update.
16307         * doc/posix-functions/vfprintf.texi: Update.
16308         * doc/posix-functions/vprintf.texi: Update.
16309         * doc/posix-functions/vsnprintf.texi: Update.
16310         * doc/posix-functions/vsprintf.texi: Update.
16311         * doc/glibc-functions/obstack_printf.texi: Update.
16312         * doc/glibc-functions/obstack_vprintf.texi: Update.
16313
16314 2009-02-26  Eric Blake  <ebb9@byu.net>
16315
16316         stdlib: favor compiler check of random.h
16317         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
16318         to avoid an ObjC random.h installed by Swarm.
16319
16320 2009-02-26  Bruno Haible  <bruno@clisp.org>
16321
16322         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
16323         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
16324         Reported by Gary V. Vaughan <gary@gnu.org>.
16325
16326 2009-02-26  Bruno Haible  <bruno@clisp.org>
16327
16328         Fix *printf behaviour regarding the %ls directive.
16329         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
16330         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
16331         NEED_PRINTF_DIRECTIVE_LS.
16332         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
16333         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16334         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16335         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
16336         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
16337         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
16338         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
16339         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16340         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16341         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16342         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16343         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
16344         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16345         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16346         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16347         * doc/posix-functions/fprintf.texi: Update.
16348         * doc/posix-functions/printf.texi: Update.
16349         * doc/posix-functions/snprintf.texi: Update.
16350         * doc/posix-functions/sprintf.texi: Update.
16351         * doc/posix-functions/vfprintf.texi: Update.
16352         * doc/posix-functions/vprintf.texi: Update.
16353         * doc/posix-functions/vsnprintf.texi: Update.
16354         * doc/posix-functions/vsprintf.texi: Update.
16355         * doc/glibc-functions/obstack_printf.texi: Update.
16356         * doc/glibc-functions/obstack_vprintf.texi: Update.
16357         Reported by Eric Blake.
16358
16359 2009-02-25  Bruno Haible  <bruno@clisp.org>
16360
16361         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
16362         with known value.
16363         Reported by Gary V. Vaughan <gary@gnu.org>.
16364
16365 2009-02-25  Bruno Haible  <bruno@clisp.org>
16366
16367         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
16368         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
16369         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
16370         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
16371         Reported by Gary V. Vaughan <gary@gnu.org>.
16372
16373 2009-02-25  Bruno Haible  <bruno@clisp.org>
16374
16375         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
16376         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
16377         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
16378         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
16379         Reported by Gary V. Vaughan <gary@gnu.org>.
16380
16381 2009-02-25  Eric Blake  <ebb9@byu.net>
16382
16383         tests: skip fseek/ftell tests if ungetc is broken
16384         * m4/ungetc.m4: New file.
16385         * modules/fseek-tests: Split test, so ungetc dependency is
16386         separate from rest of test.
16387         * modules/fseeko-tests: Likewise.
16388         * modules/ftell-tests: Likewise.
16389         * modules/ftello-tests: Likewise.
16390         * tests/test-fseek.c (main): Isolate ungetc dependency.
16391         * tests/test-fseeko.c (main): Likewise.
16392         * tests/test-ftell.c (main): Likewise.
16393         * tests/test-ftello.c (main): Likewise.
16394         * tests/test-fseek2.sh: New file.
16395         * tests/test-fseeko2.sh: Likewise.
16396         * tests/test-ftell2.sh: Likewise.
16397         * tests/test-ftello2.sh: Likewise.
16398
16399 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
16400
16401         test-getaddrinfo: fix usage of skip return code 77
16402         * tests/test-gettaddrinfo.c: Return skip code 77 only
16403         for first occurance of skip (4x77 is not 77)
16404
16405 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
16406
16407         strtod: avoid C99 decl-after-statement
16408         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
16409
16410 2009-02-24  Eric Blake  <ebb9@byu.net>
16411
16412         strtod: detect HP-UX 11.31 bug
16413         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
16414         Reported by Gary V. Vaughan.
16415
16416 2009-02-23  Bruno Haible  <bruno@clisp.org>
16417
16418         Fix invalid read past end of memory block.
16419         * lib/vasnprintf.c (DCHAR_SET): Define.
16420         (local_wcslen): Define only when needed.
16421         (local_strnlen, local_wcsnlen): New functions.
16422         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
16423         directives that involve a conversion ourselves.
16424         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
16425         wcsnlen, mbrtowc, wcrtomb.
16426         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
16427         * tests/test-vasprintf-posix.c (test_function): Likewise.
16428         * tests/test-snprintf-posix.h (test_function): Likewise.
16429         * tests/test-sprintf-posix.h (test_function): Likewise.
16430         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16431
16432 2009-02-22  Bruno Haible  <bruno@clisp.org>
16433
16434         Implement new clarified decomposition of Hangul syllables.
16435         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
16436         of type LTV, return only a pairwise decomposition.
16437         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
16438         Likewise.
16439         * tests/uninorm/test-decomposition.c (main): Updated expected result.
16440         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
16441         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
16442
16443 2009-02-22  Bruno Haible  <bruno@clisp.org>
16444
16445         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
16446         zero-length results and shrink excess allocated memory.
16447         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
16448         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
16449         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
16450         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
16451         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
16452         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
16453         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
16454         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
16455         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
16456         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
16457         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
16458         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
16459
16460 2009-02-21  Bruno Haible  <bruno@clisp.org>
16461
16462         * doc/gnulib.texi: Include safe-alloc.texi earlier.
16463         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
16464         spaces after a period. Put a space between a macro name and its
16465         argument list. Trivial rewordings.
16466         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
16467         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
16468         (main): Return 0 explicitly.
16469
16470 2009-02-21  Bruno Haible  <bruno@clisp.org>
16471
16472         Tests for module 'uninorm/filter'.
16473         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
16474         * modules/uninorm/filter-tests: New file.
16475
16476         New module 'uninorm/filter'.
16477         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
16478         uninorm_filter_flush, uninorm_filter_free): New declarations.
16479         * lib/uninorm/uninorm-filter.c: New file.
16480         * modules/uninorm/filter: New file.
16481
16482 2009-02-21  Bruno Haible  <bruno@clisp.org>
16483
16484         Tests for module 'uninorm/nfkc'.
16485         * tests/uninorm/test-nfkc.c: New file.
16486         * tests/uninorm/test-u8-nfkc.c: New file.
16487         * tests/uninorm/test-u16-nfkc.c: New file.
16488         * tests/uninorm/test-u32-nfkc.c: New file.
16489         * tests/uninorm/test-u32-nfkc-big.sh: New file.
16490         * tests/uninorm/test-u32-nfkc-big.c: New file.
16491         * modules/uninorm/nfkc-tests: New file.
16492
16493         New module 'uninorm/nfkc'.
16494         * lib/uninorm/nfkc.c: New file.
16495         * modules/uninorm/nfkc: New file.
16496
16497         Tests for module 'uninorm/nfkd'.
16498         * tests/uninorm/test-nfkd.c: New file.
16499         * tests/uninorm/test-u8-nfkd.c: New file.
16500         * tests/uninorm/test-u16-nfkd.c: New file.
16501         * tests/uninorm/test-u32-nfkd.c: New file.
16502         * tests/uninorm/test-u32-nfkd-big.sh: New file.
16503         * tests/uninorm/test-u32-nfkd-big.c: New file.
16504         * modules/uninorm/nfkd-tests: New file.
16505
16506         New module 'uninorm/nfkd'.
16507         * lib/uninorm/nfkd.c: New file.
16508         * modules/uninorm/nfkd: New file.
16509
16510         Tests for module 'uninorm/nfc'.
16511         * tests/uninorm/test-nfc.c: New file.
16512         * tests/uninorm/test-u8-nfc.c: New file.
16513         * tests/uninorm/test-u16-nfc.c: New file.
16514         * tests/uninorm/test-u32-nfc.c: New file.
16515         * tests/uninorm/test-u32-nfc-big.sh: New file.
16516         * tests/uninorm/test-u32-nfc-big.c: New file.
16517         * modules/uninorm/nfc-tests: New file.
16518
16519         New module 'uninorm/nfc'.
16520         * lib/uninorm/nfc.c: New file.
16521         * modules/uninorm/nfc: New file.
16522
16523         Tests for module 'uninorm/nfd'.
16524         * tests/uninorm/test-nfd.c: New file.
16525         * tests/uninorm/test-u8-nfd.c: New file.
16526         * tests/uninorm/test-u16-nfd.c: New file.
16527         * tests/uninorm/test-u32-nfd.c: New file.
16528         * tests/uninorm/test-u32-nfd-big.sh: New file.
16529         * tests/uninorm/test-u32-nfd-big.c: New file.
16530         * tests/uninorm/test-u32-normalize-big.h: New file.
16531         * tests/uninorm/test-u32-normalize-big.c: New file.
16532         * tests/uninorm/NormalizationTest.txt: New file, created from
16533         Unicode 5.1.0 NormalizationTest.txt.
16534         * modules/uninorm/nfd-tests: New file.
16535
16536         New module 'uninorm/nfd'.
16537         * lib/uninorm/nfd.c: New file.
16538         * modules/uninorm/nfd: New file.
16539
16540         New module 'uninorm/u32-normalize'.
16541         * lib/uninorm/u32-normalize.c: New file.
16542         * modules/uninorm/u32-normalize: New file.
16543
16544         New module 'uninorm/u16-normalize'.
16545         * lib/uninorm/u16-normalize.c: New file.
16546         * modules/uninorm/u16-normalize: New file.
16547
16548         New module 'uninorm/u8-normalize'.
16549         * lib/uninorm/u8-normalize.c: New file.
16550         * lib/uninorm/normalize-internal.h: New file.
16551         * lib/uninorm/u-normalize-internal.h: New file.
16552         * modules/uninorm/u8-normalize: New file.
16553
16554         New module 'uninorm/decompose-internal'.
16555         * lib/uninorm/decompose-internal.c: New file.
16556         * modules/uninorm/decompose-internal: New file.
16557
16558         Tests for module 'uninorm/composition'.
16559         * tests/uninorm/test-composition.c: New file.
16560         * modules/uninorm/composition-tests: New file.
16561
16562         New module 'uninorm/composition'.
16563         * lib/uninorm/composition.c: New file.
16564         * lib/uninorm/composition-table.gperf: New file, generated by
16565         gen-uni-tables.
16566         * modules/uninorm/composition: New file.
16567
16568         Tests for module 'uninorm/compat-decomposition'.
16569         * tests/uninorm/test-compat-decomposition.c: New file.
16570         * modules/uninorm/compat-decomposition-tests: New file.
16571
16572         New module 'uninorm/compat-decomposition'.
16573         * lib/uninorm/decompose-internal.h: New file.
16574         * lib/uninorm/compat-decomposition.c: New file.
16575         * modules/uninorm/compat-decomposition: New file.
16576
16577         Tests for module 'uninorm/canonical-decomposition'.
16578         * tests/uninorm/test-canonical-decomposition.c: New file.
16579         * modules/uninorm/canonical-decomposition-tests: New file.
16580
16581         New module 'uninorm/canonical-decomposition'.
16582         * lib/uninorm/canonical-decomposition.c: New file.
16583         * modules/uninorm/canonical-decomposition: New file.
16584
16585         Tests for module 'uninorm/decomposition'.
16586         * tests/uninorm/test-decomposition.c: New file.
16587         * modules/uninorm/decomposition-tests: New file.
16588
16589         New module 'uninorm/decomposition'.
16590         * lib/uninorm/decomposition.c: New file.
16591         * modules/uninorm/decomposition: New file.
16592
16593         New module 'uninorm/decomposition-table'.
16594         * lib/uninorm/decomposition-table.h: New file.
16595         * lib/uninorm/decomposition-table.c: New file.
16596         * lib/uninorm/decomposition-table1.h: New file, generated by
16597         gen-uni-tables.
16598         * lib/uninorm/decomposition-table2.h: New file, generated by
16599         gen-uni-tables.
16600         * modules/uninorm/decomposition-table: New file.
16601
16602         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
16603         (UC_DECOMP_*): New enumeration items.
16604         (get_decomposition): New function.
16605         (struct decomp_table): New type.
16606         (output_decomposition, output_decomposition_tables): New functions.
16607         (unicode_composition_exclusions): New variable.
16608         (fill_composition_exclusions, debug_output_composition_tables): New
16609         functions.
16610         (main): Accept one more argument. Invoke fill_composition_exclusions.
16611         Output decomposition and composition tables.
16612
16613         New module 'uninorm/base'.
16614         * lib/uninorm.h: New file.
16615         * lib/unictype.h: Update comment.
16616         * modules/uninorm/base: New file.
16617
16618 2009-02-21  David Lutterkort  <lutter@redhat.com>
16619
16620         Tests for module 'safe-alloc'.
16621         * tests/test-safe-alloc.c: New file.
16622         * modules/safe-alloc-tests: New file.
16623
16624         New module 'safe-alloc'.
16625         * lib/safe-alloc.h: New file.
16626         * lib/safe-alloc.c: New file.
16627         * m4/safe-alloc.m4: New file.
16628         * modules/safe-alloc: New file.
16629         * doc/safe-alloc.texi: New file.
16630         * doc/gnulib.texi: Include it.
16631         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
16632         safe-alloc.
16633
16634 2009-02-18  Bruno Haible  <bruno@clisp.org>
16635
16636         Fix link error on non-glibc systems.
16637         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
16638         variable.
16639         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16640
16641 2009-02-18  Jim Meyering  <meyering@redhat.com>
16642
16643         fts: avoid used-uninitialized error due to recent change
16644         * lib/fts.c (fts_read): Guard uses of the new member,
16645         parent->fts_n_dirs_remaining, since it's not relevant for
16646         the parent of a directory specified on the command-line.
16647
16648 2009-02-17  James Youngman  <jay@gnu.org>
16649             Bruno Haible  <bruno@clisp.org>
16650
16651         * m4/include_next.m4: Reformulate comment.
16652
16653 2009-02-16  Jim Meyering  <meyering@redhat.com>
16654
16655         fts: add #if guards so that the fts_lgpl module still builds
16656         * lib/fts.c: Guard just-added hash-table-using parts with
16657         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
16658         Reported by Simon Josefsson.
16659
16660 2009-02-15  Bruno Haible  <bruno@clisp.org>
16661
16662         * modules/array-mergesort-tests: New file.
16663         * tests/test-array-mergesort.c: New file.
16664
16665         New module 'array-mergesort'.
16666         * modules/array-mergesort: New file.
16667         * lib/array-mergesort.h: New file.
16668
16669 2009-02-15  Bruno Haible  <bruno@clisp.org>
16670
16671         Fix 2009-02-07 commit.
16672         * lib/gen-uni-tables.c (output_predicate, output_category,
16673         output_combclass, output_bidi_category, output_decimal_digit,
16674         output_digit, output_numeric, output_mirror, output_scripts,
16675         output_ident_category, output_simple_mapping): Fix format directives.
16676         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
16677
16678 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
16679
16680         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
16681         fixes are available from IBM.
16682
16683 2009-02-13  Jim Meyering  <meyering@redhat.com>
16684
16685         fts: arrange not to stat non-directories in more cases
16686         This makes GNU find (when it doesn't need to stat each file)
16687         *much* more efficient at traversing reiserfs file systems.
16688         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
16689         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
16690         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
16691         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
16692         (leaf_optimization_applies): New function.
16693         (LCO_hash, LCO_compare): New helper functions.
16694         (link_count_optimize_ok): New function.
16695         (fts_stat): Initialize new member (if dir).
16696         (fts_read): Decrement parent's fts_n_dirs_remaining count if
16697         we've just stat'ed a directory.  Skip the stat call when possible.
16698         ---
16699         Note this AFS-related exchange:
16700         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
16701         and note find's pioctl call in find/fstype.c.
16702         But that is necessary only if you want to enable the
16703         optimization for AFS, and for now, I don't.
16704
16705         fts: move a function definition "up" (no semantic change)
16706         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
16707         "up" to precede upcoming use of a related function.
16708
16709 2009-02-11  Jim Meyering  <meyering@redhat.com>
16710
16711         fts: correct internal computation of nlinks (optimization-related)
16712         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
16713         whether the current entry is a directory, so don't test it.
16714
16715 2009-02-10  Bruno Haible  <bruno@clisp.org>
16716
16717         Tests for module 'uniwbrk/ulc-wordbreaks'.
16718         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
16719         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
16720         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
16721
16722         Tests for module 'uniwbrk/u32-wordbreaks'.
16723         * modules/uniwbrk/u32-wordbreaks-tests: New file.
16724         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
16725
16726         Tests for module 'uniwbrk/u16-wordbreaks'.
16727         * modules/uniwbrk/u16-wordbreaks-tests: New file.
16728         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
16729
16730         Tests for module 'uniwbrk/u8-wordbreaks'.
16731         * modules/uniwbrk/u8-wordbreaks-tests: New file.
16732         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
16733
16734 2009-02-10  Bruno Haible  <bruno@clisp.org>
16735
16736         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
16737         property.
16738         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
16739         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
16740         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
16741
16742 2009-02-10  Simon Josefsson  <simon@josefsson.org>
16743
16744         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
16745         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
16746
16747 2009-02-10  Bruno Haible  <bruno@clisp.org>
16748
16749         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
16750         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
16751         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
16752         * lib/unilbrk/u8-possible-linebreaks.c: Update.
16753         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
16754         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
16755
16756 2009-02-09  Simon Josefsson  <simon@josefsson.org>
16757
16758         * lib/sockets.h (gl_fd_to_handle): New function.
16759
16760         * tests/test-sockets.c: Call gl_fd_to_handle.
16761
16762 2009-02-09  Bruno Haible  <bruno@clisp.org>
16763
16764         * doc/havelib.texi: Document the conventions on bi-arch systems.
16765
16766 2009-02-08  Bruno Haible  <bruno@clisp.org>
16767
16768         Document the AC_LIB_LINKFLAGS macro.
16769         * doc/havelib.texi: New file, mostly written on 2005-05-24.
16770         * doc/gnulib.texi: Include it.
16771
16772 2009-02-08  Bruno Haible  <bruno@clisp.org>
16773
16774         Fix wrong order of sections, compared to TOC.
16775         * doc/gnulib.texi: Include relocatable-maint.texi after the
16776         "Regular expressions" node, not before.
16777
16778 2009-02-08  Bruno Haible  <bruno@clisp.org>
16779
16780         Tests for module 'unicase/totitle'.
16781         * modules/unicase/totitle-tests: New file.
16782
16783         Tests for module 'unicase/tolower'.
16784         * modules/unicase/tolower-tests: New file.
16785
16786         Tests for module 'unicase/toupper'.
16787         * modules/unicase/toupper-tests: New file.
16788         * tests/unicase/test-mapping-part1.h: New file.
16789         * tests/unicase/test-mapping-part2.h: New file.
16790
16791         New module 'unicase/totitle'.
16792         * modules/unicase/totitle: New file.
16793         * lib/unicase/totitle.c: New file.
16794
16795         New module 'unicase/tolower'.
16796         * modules/unicase/tolower: New file.
16797         * lib/unicase/tolower.c: New file.
16798
16799         New module 'unicase/toupper'.
16800         * modules/unicase/toupper: New file.
16801         * lib/unicase/toupper.c: New file.
16802         * lib/unicase/simple-mapping.h: New file.
16803
16804         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
16805         (mapping_table): New structure.
16806         (output_simple_mapping): New function.
16807         (main): Invoke output_simple_mapping_test and output_simple_mapping.
16808         * modules/gen-uni-tables (Description): Update.
16809         * lib/unicase/toupper.h: New file, automatically generated by
16810         gen-uni-tables.
16811         * lib/unicase/tolower.h: New file, automatically generated by
16812         gen-uni-tables.
16813         * lib/unicase/totitle.h: New file, automatically generated by
16814         gen-uni-tables.
16815         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
16816         gen-uni-tables.
16817         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
16818         gen-uni-tables.
16819         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
16820         gen-uni-tables.
16821
16822         New module 'unicase/base'.
16823         * modules/unicase/base: New file.
16824         * lib/unicase.h: New file.
16825
16826 2009-02-08  Bruno Haible  <bruno@clisp.org>
16827
16828         New module 'uniwbrk/ulc-wordbreaks'.
16829         * modules/uniwbrk/ulc-wordbreaks: New file.
16830         * lib/uniwbrk/ulc-wordbreaks.c: New file.
16831
16832         New module 'uniwbrk/u32-wordbreaks'.
16833         * modules/uniwbrk/u32-wordbreaks: New file.
16834         * lib/uniwbrk/u32-wordbreaks.c: New file.
16835
16836         New module 'uniwbrk/u16-wordbreaks'.
16837         * modules/uniwbrk/u16-wordbreaks: New file.
16838         * lib/uniwbrk/u16-wordbreaks.c: New file.
16839
16840         New module 'uniwbrk/u8-wordbreaks'.
16841         * modules/uniwbrk/u8-wordbreaks: New file.
16842         * lib/uniwbrk/u8-wordbreaks.c: New file.
16843         * lib/uniwbrk/u-wordbreaks.h: New file.
16844
16845         New module 'uniwbrk/table'.
16846         * modules/uniwbrk/table: New file.
16847         * lib/uniwbrk/wbrktable.h: New file.
16848         * lib/uniwbrk/wbrktable.c: New file.
16849
16850         New module 'uniwbrk/wordbreak-property'.
16851         * modules/uniwbrk/wordbreak-property: New file.
16852         * lib/uniwbrk/wordbreak-property.c: New file.
16853
16854         * lib/gen-uni-tables.c (WBP_*): New enum items.
16855         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
16856         (unicode_org_wbp): New variable.
16857         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
16858         New functions.
16859         (wbp_table): New structure.
16860         (output_wbp, output_wbrk_tables): New functions.
16861         (main): Accept additional argument. Invoke fill_org_wbp,
16862         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
16863         output_wbrk_tables.
16864         * modules/gen-uni-tables (Description): Update.
16865         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
16866         gen-uni-tables.
16867
16868         New module 'uniwbrk/base'.
16869         * modules/uniwbrk/base: New file.
16870         * lib/uniwbrk.h: New file.
16871
16872 2009-02-08  Bruno Haible  <bruno@clisp.org>
16873
16874         Update to Unicode 5.1.0.
16875         * lib/gen-uni-tables.c (is_property_alphabetic): Include
16876         U+2185..U+2188.
16877         (is_property_default_ignorable_code_point): Don't include characters
16878         of category Cc or Cs and not-a-characters.
16879         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
16880         U+0D79, U+109E, U+109F, U+A60C.
16881         * lib/unictype/bidi_of.h: Regenerated.
16882         * lib/unictype/blocks.h: Regenerated.
16883         * lib/unictype/categ_C.h: Regenerated.
16884         * lib/unictype/categ_Cf.h: Regenerated.
16885         * lib/unictype/categ_Cn.h: Regenerated.
16886         * lib/unictype/categ_L.h: Regenerated.
16887         * lib/unictype/categ_Ll.h: Regenerated.
16888         * lib/unictype/categ_Lm.h: Regenerated.
16889         * lib/unictype/categ_Lo.h: Regenerated.
16890         * lib/unictype/categ_Lu.h: Regenerated.
16891         * lib/unictype/categ_M.h: Regenerated.
16892         * lib/unictype/categ_Mc.h: Regenerated.
16893         * lib/unictype/categ_Me.h: Regenerated.
16894         * lib/unictype/categ_Mn.h: Regenerated.
16895         * lib/unictype/categ_N.h: Regenerated.
16896         * lib/unictype/categ_Nd.h: Regenerated.
16897         * lib/unictype/categ_Nl.h: Regenerated.
16898         * lib/unictype/categ_No.h: Regenerated.
16899         * lib/unictype/categ_P.h: Regenerated.
16900         * lib/unictype/categ_Pd.h: Regenerated.
16901         * lib/unictype/categ_Pe.h: Regenerated.
16902         * lib/unictype/categ_Pf.h: Regenerated.
16903         * lib/unictype/categ_Pi.h: Regenerated.
16904         * lib/unictype/categ_Po.h: Regenerated.
16905         * lib/unictype/categ_Ps.h: Regenerated.
16906         * lib/unictype/categ_S.h: Regenerated.
16907         * lib/unictype/categ_Sk.h: Regenerated.
16908         * lib/unictype/categ_Sm.h: Regenerated.
16909         * lib/unictype/categ_So.h: Regenerated.
16910         * lib/unictype/categ_of.h: Regenerated.
16911         * lib/unictype/combining.h: Regenerated.
16912         * lib/unictype/ctype_alnum.h: Regenerated.
16913         * lib/unictype/ctype_alpha.h: Regenerated.
16914         * lib/unictype/ctype_graph.h: Regenerated.
16915         * lib/unictype/ctype_lower.h: Regenerated.
16916         * lib/unictype/ctype_print.h: Regenerated.
16917         * lib/unictype/ctype_punct.h: Regenerated.
16918         * lib/unictype/ctype_upper.h: Regenerated.
16919         * lib/unictype/decdigit.h: Regenerated.
16920         * lib/unictype/digit.h: Regenerated.
16921         * lib/unictype/mirror.h: Regenerated.
16922         * lib/unictype/numeric.h: Regenerated.
16923         * lib/unictype/pr_alphabetic.h: Regenerated.
16924         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
16925         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
16926         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
16927         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
16928         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
16929         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
16930         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
16931         * lib/unictype/pr_combining.h: Regenerated.
16932         * lib/unictype/pr_dash.h: Regenerated.
16933         * lib/unictype/pr_decimal_digit.h: Regenerated.
16934         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
16935         * lib/unictype/pr_deprecated.h: Regenerated.
16936         * lib/unictype/pr_diacritic.h: Regenerated.
16937         * lib/unictype/pr_extender.h: Regenerated.
16938         * lib/unictype/pr_format_control.h: Regenerated.
16939         * lib/unictype/pr_grapheme_base.h: Regenerated.
16940         * lib/unictype/pr_grapheme_extend.h: Regenerated.
16941         * lib/unictype/pr_grapheme_link.h: Regenerated.
16942         * lib/unictype/pr_id_continue.h: Regenerated.
16943         * lib/unictype/pr_id_start.h: Regenerated.
16944         * lib/unictype/pr_ideographic.h: Regenerated.
16945         * lib/unictype/pr_ignorable_control.h: Regenerated.
16946         * lib/unictype/pr_lowercase.h: Regenerated.
16947         * lib/unictype/pr_math.h: Regenerated.
16948         * lib/unictype/pr_numeric.h: Regenerated.
16949         * lib/unictype/pr_other_alphabetic.h: Regenerated.
16950         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
16951         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
16952         * lib/unictype/pr_other_id_continue.h: Regenerated.
16953         * lib/unictype/pr_other_lowercase.h: Regenerated.
16954         * lib/unictype/pr_other_math.h: Regenerated.
16955         * lib/unictype/pr_punctuation.h: Regenerated.
16956         * lib/unictype/pr_sentence_terminal.h: Regenerated.
16957         * lib/unictype/pr_soft_dotted.h: Regenerated.
16958         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
16959         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
16960         * lib/unictype/pr_unified_ideograph.h: Regenerated.
16961         * lib/unictype/pr_uppercase.h: Regenerated.
16962         * lib/unictype/pr_xid_continue.h: Regenerated.
16963         * lib/unictype/pr_xid_start.h: Regenerated.
16964         * lib/unictype/pr_zero_width.h: Regenerated.
16965         * lib/unictype/scripts.h: Regenerated.
16966         * lib/unictype/scripts_byname.gperf: Regenerated.
16967         * lib/unictype/sy_java_ident.h: Regenerated.
16968         * lib/unilbrk/lbrkprop1.h: Regenerated.
16969         * lib/unilbrk/lbrkprop2.h: Regenerated.
16970         * tests/unictype/test-categ_C.c: Regenerated.
16971         * tests/unictype/test-categ_Cf.c: Regenerated.
16972         * tests/unictype/test-categ_Cn.c: Regenerated.
16973         * tests/unictype/test-categ_L.c: Regenerated.
16974         * tests/unictype/test-categ_Ll.c: Regenerated.
16975         * tests/unictype/test-categ_Lm.c: Regenerated.
16976         * tests/unictype/test-categ_Lo.c: Regenerated.
16977         * tests/unictype/test-categ_Lu.c: Regenerated.
16978         * tests/unictype/test-categ_M.c: Regenerated.
16979         * tests/unictype/test-categ_Mc.c: Regenerated.
16980         * tests/unictype/test-categ_Me.c: Regenerated.
16981         * tests/unictype/test-categ_Mn.c: Regenerated.
16982         * tests/unictype/test-categ_N.c: Regenerated.
16983         * tests/unictype/test-categ_Nd.c: Regenerated.
16984         * tests/unictype/test-categ_Nl.c: Regenerated.
16985         * tests/unictype/test-categ_No.c: Regenerated.
16986         * tests/unictype/test-categ_P.c: Regenerated.
16987         * tests/unictype/test-categ_Pd.c: Regenerated.
16988         * tests/unictype/test-categ_Pe.c: Regenerated.
16989         * tests/unictype/test-categ_Pf.c: Regenerated.
16990         * tests/unictype/test-categ_Pi.c: Regenerated.
16991         * tests/unictype/test-categ_Po.c: Regenerated.
16992         * tests/unictype/test-categ_Ps.c: Regenerated.
16993         * tests/unictype/test-categ_S.c: Regenerated.
16994         * tests/unictype/test-categ_Sk.c: Regenerated.
16995         * tests/unictype/test-categ_Sm.c: Regenerated.
16996         * tests/unictype/test-categ_So.c: Regenerated.
16997         * tests/unictype/test-ctype_alnum.c: Regenerated.
16998         * tests/unictype/test-ctype_alpha.c: Regenerated.
16999         * tests/unictype/test-ctype_graph.c: Regenerated.
17000         * tests/unictype/test-ctype_lower.c: Regenerated.
17001         * tests/unictype/test-ctype_print.c: Regenerated.
17002         * tests/unictype/test-ctype_punct.c: Regenerated.
17003         * tests/unictype/test-ctype_upper.c: Regenerated.
17004         * tests/unictype/test-decdigit.h: Regenerated.
17005         * tests/unictype/test-digit.h: Regenerated.
17006         * tests/unictype/test-numeric.h: Regenerated.
17007         * tests/unictype/test-pr_alphabetic.c: Regenerated.
17008         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
17009         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
17010         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
17011         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
17012         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
17013         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
17014         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
17015         * tests/unictype/test-pr_combining.c: Regenerated.
17016         * tests/unictype/test-pr_dash.c: Regenerated.
17017         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
17018         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
17019         * tests/unictype/test-pr_deprecated.c: Regenerated.
17020         * tests/unictype/test-pr_diacritic.c: Regenerated.
17021         * tests/unictype/test-pr_extender.c: Regenerated.
17022         * tests/unictype/test-pr_format_control.c: Regenerated.
17023         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
17024         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
17025         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
17026         * tests/unictype/test-pr_id_continue.c: Regenerated.
17027         * tests/unictype/test-pr_id_start.c: Regenerated.
17028         * tests/unictype/test-pr_ideographic.c: Regenerated.
17029         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
17030         * tests/unictype/test-pr_lowercase.c: Regenerated.
17031         * tests/unictype/test-pr_math.c: Regenerated.
17032         * tests/unictype/test-pr_numeric.c: Regenerated.
17033         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
17034         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
17035         Regenerated.
17036         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
17037         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
17038         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
17039         * tests/unictype/test-pr_other_math.c: Regenerated.
17040         * tests/unictype/test-pr_punctuation.c: Regenerated.
17041         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
17042         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
17043         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
17044         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
17045         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
17046         * tests/unictype/test-pr_uppercase.c: Regenerated.
17047         * tests/unictype/test-pr_xid_continue.c: Regenerated.
17048         * tests/unictype/test-pr_xid_start.c: Regenerated.
17049         * tests/unictype/test-pr_zero_width.c: Regenerated.
17050
17051         Update to Unicode 5.1.0.
17052         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
17053         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
17054         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
17055         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
17056         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
17057         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
17058         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
17059         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
17060         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
17061         (nonspacing_table_ind): Update.
17062         * tests/uniwidth/test-uc_width2.sh: Update expected result.
17063
17064         Update to Unicode 5.1.0.
17065         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
17066         code transform.
17067         * lib/uniname/uniname.c (unicode_character_name,
17068         unicode_name_character): Add the range 0x1Fxxx to the code transform.
17069         * lib/uniname/uninames.h: Regenerated.
17070         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
17071
17072 2009-02-07  Bruno Haible  <bruno@clisp.org>
17073
17074         Merge gen-ctype and gen-lbrk into a single program.
17075         * lib/gen-uni-tables.c: New file, incorporating
17076         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
17077         Add directory prefixes to the names of the generated files.
17078         * lib/unictype/gen-ctype.c: Remove file.
17079         * lib/unilbrk/gen-lbrk.c: Remove file.
17080         * modules/gen-uni-tables: New file.
17081         * modules/unictype/gen-ctype: Remove file.
17082         * modules/unilbrk/gen-lbrk: Remove file.
17083
17084 2009-02-07  Bruno Haible  <bruno@clisp.org>
17085
17086         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
17087
17088         New module 'unistr/u32-strcoll'.
17089         * modules/unistr/u32-strcoll: New file.
17090         * lib/unistr/u32-strcoll.c: New file.
17091
17092         New module 'unistr/u16-strcoll'.
17093         * modules/unistr/u16-strcoll: New file.
17094         * lib/unistr/u16-strcoll.c: New file.
17095
17096         New module 'unistr/u8-strcoll'.
17097         * modules/unistr/u8-strcoll: New file.
17098         * lib/unistr/u8-strcoll.c: New file.
17099         * lib/unistr/u-strcoll.h: New file.
17100
17101 2009-02-07  Bruno Haible  <bruno@clisp.org>
17102
17103         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
17104         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17105         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17106         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
17107         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
17108         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
17109
17110 2009-02-07  Bruno Haible  <bruno@clisp.org>
17111
17112         Make 64-bit clean.
17113         * lib/unictype/gen-ctype.c (output_predicate, output_category,
17114         output_combclass, output_bidi_category, output_decimal_digit,
17115         output_digit, output_numeric, output_mirror, output_scripts,
17116         output_ident_category): Use proper width specifier in format strings.
17117
17118 2009-02-07  Bruno Haible  <bruno@clisp.org>
17119
17120         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
17121         failure behaviour.
17122
17123 2009-02-07  Jim Meyering  <meyering@redhat.com>
17124
17125         regex: avoid compilation failure with upcoming gcc-4.4
17126         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
17127         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
17128         "... error: integer overflow in preprocessor expression".
17129
17130 2009-02-05  Ben Pfaff  <blp@gnu.org>
17131
17132         Fix link errors on Windows when close module is used.
17133         * modules/close: Add $(LIB_CLOSE) to Link section.
17134         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
17135         $(LIB_CLOSE) on Windows.
17136
17137 2009-02-05  Jim Meyering  <meyering@redhat.com>
17138
17139         still avoid unused-parameter warnings, but do it cleanly
17140         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
17141         (get_fs_usage): Cast to void instead.
17142         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
17143         (dev_from_mount_options, read_file_system_list): Cast to void.
17144         Prompted by Bruno Haible.
17145
17146 2009-02-04  Jim Meyering  <meyering@redhat.com>
17147
17148         fsusage.c: correct copyright year
17149         * lib/fsusage.c: Reflect year in which the change is pushed into
17150
17151         avoid misc. warnings
17152         * lib/fsusage.c (UNUSED_PARAM): Define.
17153         (get_fs_usage): Mark parameter "disk" as unused.
17154         * lib/getugroups.c (getgrent): Use "void" in prototype.
17155         * lib/mountlist.c: Mark unused parameters.
17156         (read_file_system_list): Declare a local with "const".
17157         * lib/nanosleep.c (getnow): Declare static.
17158         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
17159
17160         dirfd: set errno upon failure
17161         * lib/dirfd.c: Include <errno.h>.
17162         Set errno to ENOTSUP when returning -1.
17163         * modules/dirfd (Depends-on): Add errno.
17164         Suggested by John Kodis <kodis@comcast.net>.
17165
17166 2009-02-01  Bruno Haible  <bruno@clisp.org>
17167
17168         Don't assume sizeof (long) >= sizeof (void *).
17169         * lib/memcmp.c: Include stdint.h.
17170         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
17171         srcp2 to 'const byte *'.
17172         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
17173         types to uintptr_t.
17174         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
17175         * modules/memcmp (Depends-on): Add stdint.
17176         Reported by Ozkan Sezer <sezeroz@gmail.com>.
17177
17178 2009-01-30  Eric Blake  <ebb9@byu.net>
17179
17180         fix more require-before-expand issues
17181         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
17182         expand, AC_PROG_AWK.
17183         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
17184
17185 2009-01-28  Eric Blake  <ebb9@byu.net>
17186
17187         version-etc: use consistent URL formatting
17188         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
17189         Improve formatting.  Use fputs for string without %.
17190
17191 2009-01-28  Jim Meyering  <meyering@redhat.com>
17192
17193         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
17194         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
17195         "underquoted definition of NAME" from autoconf-2.59.
17196
17197 2009-01-28  Bruno Haible  <bruno@clisp.org>
17198
17199         * doc/gnulib.texi: Add "Obsolete modules" to index.
17200
17201 2009-01-28  Jim Meyering  <meyering@redhat.com>
17202
17203         useless-if-before-free: recognize more variants
17204         * build-aux/useless-if-before-free: Also recognize e.g.,
17205         if (NULL != p) free (p);
17206
17207 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
17208
17209         test-getaddrinfo: skip (don't fail) this test when there's no network
17210         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
17211         on the presumption that it means you lack network access.
17212
17213 2009-01-26  Jim Meyering  <meyering@redhat.com>
17214
17215         fflush: avoid warnings on modern systems
17216         * lib/fflush.c (rpl_fflush): Move declarations of locals,
17217         pos and result, into scopes where they're used.
17218
17219 2009-01-26  Eric Blake  <ebb9@byu.net>
17220
17221         Silence warning reintroduced by recent extensions patch.
17222         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
17223         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
17224         autoconf.
17225
17226         Backport improved autoconf semantics of AC_DEFUN_ONCE.
17227         * m4/00gnulib.m4: New file.
17228         * gnulib-tool (func_get_filelist): Always use it.
17229         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
17230         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
17231
17232 2009-01-25  Bruno Haible  <bruno@clisp.org>
17233
17234         Make test-quotearg work on MacOS X and AIX.
17235         * tests/test-quotearg.sh: New file.
17236         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
17237         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
17238         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
17239         include <libintl.h>.
17240         (fake_locale): Remove variable.
17241         (gettext, dgettext, dcgettext): Remove functions.
17242         (main): Instead of setting a fake locale, set a real locale. Call
17243         textdomain and bindtextdomain.
17244         * modules/quotearg-tests (Files): Add the new files.
17245         (Depends-on): Add gettext, setenv, unsetenv.
17246         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
17247         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
17248         Augment TESTS_ENVIRONMENT.
17249
17250 2009-01-25  Bruno Haible  <bruno@clisp.org>
17251
17252         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
17253         fr_FR.ISO8859-1 locale on MacOS X.
17254         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
17255         ja_JP.eucJP locale on MacOS X.
17256         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
17257         zh_CN.GB18030 locale on MacOS X.
17258
17259 2009-01-25  Bruno Haible  <bruno@clisp.org>
17260
17261         Avoid link errors on MacOS X 10.3.
17262         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
17263         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
17264
17265 2009-01-25  Bruno Haible  <bruno@clisp.org>
17266
17267         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17268         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
17269         * modules/pipe (Files): Remove m4/posix_spawn.m4.
17270         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17271         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
17272         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17273         posix_spawnattr_init, posix_spawnattr_setsigmask,
17274         posix_spawnattr_setflags, posix_spawnattr_destroy.
17275
17276         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17277         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
17278         * modules/execute (Files): Remove m4/posix_spawn.m4.
17279         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17280         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17281         posix_spawnattr_init, posix_spawnattr_setsigmask,
17282         posix_spawnattr_setflags, posix_spawnattr_destroy.
17283
17284 2009-01-25  Bruno Haible  <bruno@clisp.org>
17285
17286         * lib/glthread/threadlib.c: Include <stdlib.h>.
17287
17288 2009-01-25  Bruno Haible  <bruno@clisp.org>
17289
17290         * lib/glthread/threadlib.c (dummy): New declaration.
17291
17292 2009-01-25  Bruno Haible  <bruno@clisp.org>
17293
17294         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
17295         multibyte characters also for the GB18030 encoding. Don't crash when
17296         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
17297
17298 2009-01-25  Bruno Haible  <bruno@clisp.org>
17299
17300         Avoid redefining 'struct random_data' on OSF/1 5.1.
17301         * lib/stdlib.in.h: Include <random.h> if it exists.
17302         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
17303         HAVE_RANDOM_H. Include <random.h> when testing whether
17304         'struct random_data' exists.
17305         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
17306
17307 2009-01-25  Bruno Haible  <bruno@clisp.org>
17308
17309         Don't install charset.alias on MacOS X >= 10.3.
17310         * lib/localcharset.c (DARWIN7): New macro.
17311         (get_charset_aliases): Hardcode the result for Darwin7.
17312         * modules/localcharset (install-exec-local): Don't install
17313         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
17314
17315 2009-01-25  Bruno Haible  <bruno@clisp.org>
17316
17317         Don't install charset.alias on mingw and Cygwin.
17318         * modules/localcharset (install-exec-local): Don't install
17319         charset.alias on mingw and Cygwin, if the file does not yet exist.
17320         The result for these platforms is hardcoded in localcharset.c.
17321
17322 2009-01-25  Bruno Haible  <bruno@clisp.org>
17323
17324         Make it possible again to use AC_GNU_SOURCE together with gnulib.
17325         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
17326         before requiring AC_USE_SYSTEM_EXTENSIONS.
17327
17328 2009-01-25  Jim Meyering  <meyering@redhat.com>
17329
17330         c-strtod: avoid warnings
17331         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
17332         "assignment discards qualifiers from pointer target type" warnings.
17333
17334 2009-01-24  Bruno Haible  <bruno@clisp.org>
17335
17336         Add support for non-UTF-8 locales on MacOS X.
17337         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
17338         canonical encodings. For Darwin 7 and newer, don't map traditional
17339         encodings to UTF-8.
17340         Reported by Vincent Lefevre <vincent@vinc17.org>
17341         at <http://savannah.gnu.org/bugs/?25235>.
17342
17343 2009-01-24  Bruno Haible  <bruno@clisp.org>
17344
17345         * doc/gnulib.texi (Obsolete modules): New section.
17346         Reported by Mike Frysinger <vapier@gentoo.org>.
17347
17348 2009-01-24  Bruno Haible  <bruno@clisp.org>
17349
17350         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
17351         (%.dvi): New rule.
17352
17353 2009-01-24  Bruno Haible  <bruno@clisp.org>
17354
17355         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
17356         Reported by Eric Blake.
17357
17358 2009-01-24  Bruno Haible  <bruno@clisp.org>
17359
17360         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
17361         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
17362         Reported by Gary V. Vaughan <gary@gnu.org>.
17363
17364 2009-01-24  Bruno Haible  <bruno@clisp.org>
17365
17366         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
17367
17368 2009-01-23  Bruno Haible  <bruno@clisp.org>
17369
17370         Make c-strtod, c-strtold usable in libraries.
17371         * lib/c-strtod.c: Include string.h instead of xalloc.h.
17372         (C_STRTOD): Call strdup instead of xstrdup.
17373         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
17374         * modules/c-strtold (Depends-on): Likewise.
17375         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
17376         * NEWS: Mention the change.
17377         Reported by Michael Gold <mgold@ncf.ca>.
17378
17379 2009-01-23  Jim Meyering  <meyering@redhat.com>
17380
17381         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
17382         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
17383         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
17384
17385 2009-01-23  Simon Josefsson  <simon@josefsson.org>
17386
17387         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
17388         GNU CoreUtils.
17389         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
17390         * modules/version-etc (Description): Update.
17391
17392 2009-01-22  Bruno Haible  <bruno@clisp.org>
17393
17394         Cache the C locale object.
17395         * lib/c-strtod.c (c_locale_cache): New variable.
17396         (c_locale): New function.
17397         (C_STRTOD): Use it, and don't call freelocale.
17398         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
17399         Suggested by Paolo Bonzini.
17400
17401 2009-01-21  Bruno Haible  <bruno@clisp.org>
17402
17403         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
17404         conditions other than overflow.
17405
17406 2009-01-21  Bruno Haible  <bruno@clisp.org>
17407
17408         * lib/c-strtod.c: Include errno.h.
17409         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
17410         value from STRTOD_L and STRTOD.
17411
17412 2009-01-21  Bruno Haible  <bruno@clisp.org>
17413         and Jim Meyering  <meyering@redhat.com>
17414
17415         nanosleep: skip configure test (fail it) for apple universal builds
17416         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
17417         universal builds, assume that nanosleep does not work.
17418         * modules/nanosleep (Depends-on): Add multiarch.
17419
17420         mktime: skip configure test (fail it) for apple universal builds
17421         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
17422         universal builds, assume that mktime does not work.
17423         * modules/mktime (Depends-on): Add multiarch.
17424
17425 2009-01-21  Eric Blake  <ebb9@byu.net>
17426
17427         multiarch: avoid expand-before-require warning
17428         * modules/multiarch (configure.ac): Require, rather than expand,
17429         gl_MULTIARCH.
17430         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
17431         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
17432         enforce that all clients require it.  Partial reversion of
17433         2008-12-29 patch.
17434
17435         error: avoid expand-before-require warning
17436         * modules/errno (configure.ac): Require, rather than expand,
17437         gl_HEADER_ERRNO_H.
17438         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
17439         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
17440         enforce that all clients require it.
17441
17442         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
17443         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
17444         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
17445         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
17446
17447 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
17448
17449         Revert:
17450         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
17451
17452         regex: do not depend on obsolete modules.
17453         * modules/regex: Remove memcmp and memmove.
17454
17455 2009-01-20  Bruno Haible  <bruno@clisp.org>
17456
17457         Make the 'link' module link on Windows NT 4.
17458         * lib/link.c (_WIN32_WINNT): Don't define.
17459         (CreateHardLinkFuncType): New type.
17460         (CreateHardLinkFunc, initialized): New variables.
17461         (initialize): New function.
17462         (link): Invoke CreateHardLink indirectly through the function pointer.
17463
17464 2009-01-20  Bruno Haible  <bruno@clisp.org>
17465
17466         Fix compilation failure on mingw.
17467         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
17468
17469 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
17470
17471         * doc/c-strtod.texi: Mention a couple of restrictions.
17472
17473 2009-01-20  Jim Meyering  <meyering@redhat.com>
17474
17475         gettimeofday: move more declarations out of functions
17476         * lib/gettimeofday.c: Move extern declarations of tzset and
17477         gmtime out of containing functions.  Prompted by Bruno Haible.
17478
17479 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
17480
17481         regex: do not depend on obsolete modules.
17482         * modules/regex: Remove memcmp and memmove.
17483
17484 2009-01-19  Bruno Haible  <bruno@clisp.org>
17485
17486         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
17487         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
17488         gl_BIGENDIAN, not AC_C_BIGENDIAN.
17489         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
17490         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
17491
17492 2009-01-19  Bruno Haible  <bruno@clisp.org>
17493
17494         * tests/test-link.c: Include <errno.h>.
17495         (main): Exit with code 77 when a hard link cannot be created due to
17496         the file system.
17497         * tests/test-link.sh: Skip test when a hard link cannot be created due
17498         to the file system.
17499         Suggested by Eric Blake.
17500
17501 2009-01-19  Martin Lambers  <marlam@marlam.de>
17502
17503         * modules/link-tests: New file.
17504         * tests/test-link.sh: New file.
17505         * tests/test-link.c: New file.
17506
17507 2009-01-19  Eric Blake  <ebb9@byu.net>
17508
17509         doc: mention another function added in cygwin 1.7.0
17510         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
17511         Another new function in cygwin 1.7.
17512
17513 2009-01-19  Bruno Haible  <bruno@clisp.org>
17514
17515         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
17516         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
17517         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
17518         gl_BIGENDIAN, not AC_C_BIGENDIAN.
17519         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
17520         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
17521         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
17522         * m4/md4.m4 (gl_MD4): Likewise.
17523         * m4/md5.m4 (gl_MD5): Likewise.
17524         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
17525         * m4/sha1.m4 (gl_SHA1): Likewise.
17526         * m4/sha256.m4 (gl_SHA256): Likewise.
17527         * m4/sha512.m4 (gl_SHA512): Likewise.
17528
17529 2009-01-19  Bruno Haible  <bruno@clisp.org>
17530
17531         * modules/uniname/uniname-tests (Depends-on): Add progname.
17532         * tests/uniname/test-uninames.c: Include progname.h.
17533         (main): Call set_program_name.
17534
17535         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
17536         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
17537         (main): Call set_program_name.
17538
17539         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
17540         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
17541         (main): Call set_program_name.
17542
17543         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
17544         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
17545         (main): Call set_program_name.
17546
17547         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
17548         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
17549         (main): Call set_program_name.
17550
17551         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
17552         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
17553         (main): Call set_program_name.
17554
17555         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
17556         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
17557         (main): Call set_program_name.
17558
17559         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
17560         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
17561         (main): Call set_program_name.
17562
17563         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
17564         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
17565         (main): Call set_program_name.
17566
17567 2009-01-19  Eric Blake  <ebb9@byu.net>
17568
17569         test-unistd: test previous patch
17570         * tests/test-unistd.c: Test *_FILENO macros.
17571
17572         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
17573         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17574         Guarantee a definition.
17575         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
17576         * modules/unistd-safer (Depends-on): Add dependency on unistd.
17577         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
17578         * lib/dup-safer.c (STDERR_FILENO): Likewise.
17579         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17580         Likewise.
17581         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
17582         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
17583         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17584         Likewise.
17585         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
17586         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
17587         (STDERR_FILENO): Likewise.
17588         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
17589         (STDERR_FILENO): Likewise.
17590         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
17591         (STDERR_FILENO): Likewise.
17592         Reported by Elbert Pol.
17593
17594 2009-01-19  Eric Blake  <ebb9@byu.net>
17595
17596         doc: mention more functions added in cygwin 1.7.0
17597         * doc/posix-functions/abort.texi (abort): Update wording related
17598         to cygwin.
17599         * doc/posix-functions/daylight.texi (daylight): Likewise.
17600         * doc/posix-functions/optarg.texi (optarg): Likewise.
17601         * doc/posix-functions/optarg.texi (opterr): Likewise.
17602         * doc/posix-functions/optarg.texi (optind): Likewise.
17603         * doc/posix-functions/optarg.texi (optopt): Likewise.
17604         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
17605         worked in 1.5.x, and was withdrawn in 1.7.
17606         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
17607         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
17608         cygwin versions.
17609         * doc/posix-functions/perror.texi (perror): Likewise.
17610         * doc/posix-functions/printf.texi (printf): Likewise.
17611         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
17612         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
17613         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
17614         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
17615         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
17616         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
17617         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17618         Likewise.
17619         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17620         Likewise.
17621         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
17622         this function.
17623         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
17624         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
17625         Likewise.
17626         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
17627         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
17628         * doc/posix-functions/confstr.texi (confstr): Likewise.
17629         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
17630         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
17631         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
17632         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
17633         * doc/posix-functions/fputws.texi (fputws): Likewise.
17634         * doc/posix-functions/fwide.texi (fwide): Likewise.
17635         * doc/posix-functions/getwc.texi (getwc): Likewise.
17636         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
17637         * doc/posix-functions/putwc.texi (putwc): Likewise.
17638         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
17639         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
17640         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
17641         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
17642         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
17643         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
17644         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
17645         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
17646         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
17647         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
17648         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
17649
17650 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
17651
17652         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
17653         * lib/ioctl.c: Include <sys/ioctl.h>.
17654
17655 2009-01-19  Simon Josefsson  <simon@josefsson.org>
17656
17657         * modules/getdate-tests (Depends-on): Add progname.
17658         * tests/test-getdate.c: Use progname module, to avoid link errors
17659         on non-glibc systems.
17660
17661 2009-01-18  Simon Josefsson  <simon@josefsson.org>
17662
17663         * modules/filenamecat-tests (Depends-on): Add progname.
17664         * modules/fstrcmp-tests (Depends-on): Likewise.
17665
17666         * tests/test-filenamecat.c: Use progname module, to avoid link
17667         errors on non-glibc systems.
17668         * tests/test-fstrcmp.c: Likewise.
17669
17670 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
17671
17672         gettimeofday: avoid warning: nested extern declaration of 'localtime'
17673         * lib/gettimeofday.c: Move extern declaration out of function.
17674
17675 2009-01-18  Bruno Haible  <bruno@clisp.org>
17676
17677         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
17678         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
17679         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
17680
17681 2009-01-18  Bruno Haible  <bruno@clisp.org>
17682
17683         * lib/strftime.c (MEMPCPY): Remove unused macro.
17684         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
17685
17686 2009-01-18  Martin Lambers  <marlam@marlam.de>
17687
17688         New module 'link'.
17689         * lib/unistd.in.h (link): New declaration.
17690         * lib/link.c: New file.
17691         * m4/link.m4: New file.
17692         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
17693         HAVE_LINK.
17694         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
17695         * modules/link: New file.
17696         * doc/posix-functions/link.texi: Mention the new module.
17697
17698 2009-01-18  Bruno Haible  <bruno@clisp.org>
17699
17700         * tests/test-avltree_list.c (main): Call set_program_name.
17701         * tests/test-avltree_oset.c (main): Likewise.
17702         * tests/test-obstack-printf.c: Include progname.h.
17703         (main): Call set_program_name.
17704         * tests/test-quotearg.c: Include progname.h.
17705         (main): Call set_program_name.
17706         * tests/test-xmemdup0.c: Include progname.h.
17707         (main): Call set_program_name.
17708
17709 2009-01-18  Bruno Haible  <bruno@clisp.org>
17710
17711         New module 'alphasort'.
17712         * lib/dirent.in.h (alphasort): New declaration.
17713         * lib/alphasort.c: New file, from glibc with modifications.
17714         * m4/alphasort.m4: New file.
17715         * modules/alphasort: New file.
17716         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
17717         HAVE_ALPHASORT.
17718         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
17719         HAVE_ALPHASORT.
17720         * doc/posix-functions/alphasort.texi: Mention the new module and the
17721         portability problems.
17722
17723 2009-01-18  Bruno Haible  <bruno@clisp.org>
17724
17725         New module 'scandir'.
17726         * lib/dirent.in.h (scandir): New declaration.
17727         * lib/scandir.c: New file, from glibc with modifications.
17728         * m4/scandir.m4: New file.
17729         * modules/scandir: New file.
17730         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
17731         HAVE_SCANDIR.
17732         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
17733         HAVE_SCANDIR.
17734         * doc/posix-functions/scandir.texi: Mention the new module and the
17735         portability problems.
17736
17737 2009-01-17  Bruno Haible  <bruno@clisp.org>
17738
17739         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
17740         Update documentation.
17741         (func_remove_suffix): Escape all dots in the suffix. Update
17742         documentation.
17743         (func_filter_filelist): Update documentation.
17744         Reported by Ralf Wildenhues.
17745
17746 2009-01-17  Bruno Haible  <bruno@clisp.org>
17747
17748         * modules/dprintf-posix-tests: New file.
17749         * tests/test-dprintf-posix.sh: New file.
17750         * tests/test-dprintf-posix.c: New file.
17751
17752         New modules 'dprintf', 'dprintf-posix'.
17753         * lib/stdio.in.h (dprintf): New declaration.
17754         * lib/dprintf.c: New file.
17755         * m4/dprintf.m4: New file.
17756         * m4/dprintf-posix.m4: New file.
17757         * modules/dprintf: New file.
17758         * modules/dprintf-posix: New file.
17759         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
17760         HAVE_DPRINTF, REPLACE_DPRINTF.
17761         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
17762         HAVE_DPRINTF, REPLACE_DPRINTF.
17763         * doc/posix-functions/dprintf.texi: Mention the new modules.
17764
17765 2009-01-17  Bruno Haible  <bruno@clisp.org>
17766
17767         * modules/vdprintf-posix-tests: New file.
17768         * tests/test-vdprintf-posix.sh: New file.
17769         * tests/test-vdprintf-posix.c: New file.
17770
17771         New modules 'vdprintf', 'vdprintf-posix'.
17772         * lib/stdio.in.h (vdprintf): New declaration.
17773         * lib/vdprintf.c: New file.
17774         * m4/vdprintf.m4: New file.
17775         * m4/vdprintf-posix.m4: New file.
17776         * modules/vdprintf: New file.
17777         * modules/vdprintf-posix: New file.
17778         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
17779         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17780         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
17781         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17782         * doc/posix-functions/vdprintf.texi: Mention the new modules.
17783
17784 2009-01-17  Bruno Haible  <bruno@clisp.org>
17785
17786         Fix replacement of fopen on mingw.
17787         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
17788         mingw.
17789
17790 2009-01-17  Bruno Haible  <bruno@clisp.org>
17791
17792         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
17793         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
17794
17795 2009-01-17  Bruno Haible  <bruno@clisp.org>
17796
17797         Avoid test-fflush2.sh failure on mingw.
17798         * tests/test-fflush2.c: Include binary-io.h.
17799         (main): Put standard input into binary mode.
17800         * modules/fflush-tests (Depends-on): Add binary-io.
17801
17802 2009-01-17  Bruno Haible  <bruno@clisp.org>
17803
17804         * lib/wchar.in.h: In another particular situation, include only the
17805         system's <wchar.h> file.
17806         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
17807         Reported by Albert Chin-A-Young <china@thewrittenword.com>
17808         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
17809
17810 2009-01-17  Bruno Haible  <bruno@clisp.org>
17811
17812         Support for stripping executables in --enable-relocatable.
17813         * build-aux/install-reloc: Expect one more argument, or an environment
17814         variable RELOC_STRIP_PROG. If set, strip the destination program and
17815         its wrapper.
17816         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
17817         RELOC_STRIP_PROG.
17818         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
17819         to set RELOCATABLE_STRIP.
17820         * NEWS: Mention the new Makefile requirement.
17821
17822 2009-01-17  Bruno Haible  <bruno@clisp.org>
17823
17824         * build-aux/install-reloc: Remove debugging information left over by
17825         C compiler on MacOS X.
17826
17827 2009-01-17  Bruno Haible  <bruno@clisp.org>
17828
17829         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
17830         * lib/progreloc.c (find_executable): Fix type of pointer passed to
17831         _NSGetExecutablePath.
17832
17833 2009-01-16  Jim Meyering  <meyering@redhat.com>
17834
17835         strerror: avoid warnings about discarding "const"
17836         * lib/strerror.c (rpl_strerror): Instead of returning a const
17837         string from each and every "case", use a variable, and add a single
17838         cast after the switch.
17839
17840 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
17841
17842         * lib/arpa_inet.in.h: Add extern "C" block for C++.
17843
17844 2009-01-16  Bruno Haible  <bruno@clisp.org>
17845
17846         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
17847         array initializer syntax that also works in C++ mode.
17848         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17849
17850 2009-01-16  Jim Meyering  <meyering@redhat.com>
17851
17852         poll: suppress a warning
17853         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
17854         to ignore "...unsigned expression < 0 is always false" warnings.
17855
17856 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
17857
17858         poll: remove declarations of unused variables
17859         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
17860         sockbuf and optlen.
17861
17862 2009-01-15  Bruno Haible  <bruno@clisp.org>
17863
17864         Make fflush-after-ungetc POSIX compliant on BSD systems.
17865         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
17866         (clear_ungetc_buffer): Implement also for other systems.
17867         (rpl_fflush): On glibc systems, invoke
17868         clear_ungetc_buffer_preserving_position. Otherwise, invoke
17869         clear_ungetc_buffer after fetching the stream's position, not before.
17870
17871 2009-01-15  Bruno Haible  <bruno@clisp.org>
17872
17873         Make fflush-after-ungetc POSIX compliant on glibc systems.
17874         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
17875         after ungetc.
17876         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
17877         (rpl_fflush): On glibc systems, simply call the system's fflush
17878         function after clearing the ungetc buffer.
17879         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
17880         Instead, lseek only to the end of file, then use the system's fseeko
17881         for the rest. On glibc systems, reset the EOF indicator bit.
17882
17883 2009-01-15  Jim Meyering  <meyering@redhat.com>
17884
17885         openmp.m4: revert quote-adding change, for portability to older autoconf
17886         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
17887         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
17888         Simon Josefsson noticed the problem when using autoconf-2.61.
17889
17890 2009-01-15  Bruno Haible  <bruno@clisp.org>
17891
17892         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
17893         * tests/test-fflush2.c (ASSERT): Always fail.
17894         (main): Add two tests for fflush() after ungetc(), taking into account
17895         the Austin Group's clarification.
17896         Suggested by Eric Blake.
17897
17898 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
17899
17900         mktime.m4: remove K&R-style function prototypes
17901         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
17902         for the Sun C++ compiler.
17903
17904 2009-01-14  Bruno Haible  <bruno@clisp.org>
17905
17906         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
17907         while including <wchar.h>.
17908         * lib/wchar.in.h: In two particular situations on HP-UX, include only
17909         the system's <wchar.h> file.
17910         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17911
17912 2009-01-14  Bruno Haible  <bruno@clisp.org>
17913
17914         * m4/csharp.m4: Don't mention gettext on the serial number line.
17915         * m4/csharpexec.m4: Likewise.
17916         * m4/eaccess.m4: Likewise.
17917         * m4/javaexec.m4: Likewise.
17918         * m4/sig_atomic_t.m4: Likewise.
17919         * m4/tmpdir.m4: Likewise.
17920         * m4/intldir.m4: Bump gettext version.
17921         * m4/lib-ld.m4: Likewise.
17922
17923 2009-01-14  Bruno Haible  <bruno@clisp.org>
17924
17925         * lib/progname.c (set_program_name): Add more comments.
17926         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
17927
17928 2009-01-14  Simon Josefsson  <simon@josefsson.org>
17929
17930         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
17931         were sys/stat.h does not define it.
17932
17933 2009-01-14  Jim Meyering  <meyering@redhat.com>
17934
17935         many *.m4 files: improve m4 quoting
17936         99% of this change was performed by running the following commands:
17937         git ls-files | grep '\.m4$' | xargs perl -pi \
17938           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
17939           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17940           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17941           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
17942         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
17943         The remainder were to add Copyright dates, increment serial numbers,
17944         undo some changes in comments, exclude m4/intl.m4, and add quotes
17945         around the "1" in ",1" where the unusual spacing prohibited the
17946         above regexps from doing the job.  For more details, see
17947         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
17948         * m4/acl.m4: Modified.
17949         * m4/afs.m4: Likewise.
17950         * m4/alloca.m4: Likewise.
17951         * m4/argp.m4: Likewise.
17952         * m4/argz.m4: Likewise.
17953         * m4/atexit.m4: Likewise.
17954         * m4/bison-i18n.m4: Likewise.
17955         * m4/bison.m4: Likewise.
17956         * m4/byteswap.m4: Likewise.
17957         * m4/c-stack.m4: Likewise.
17958         * m4/c-strtod.m4: Likewise.
17959         * m4/calloc.m4: Likewise.
17960         * m4/canonicalize-lgpl.m4: Likewise.
17961         * m4/chown.m4: Likewise.
17962         * m4/clock_time.m4: Likewise.
17963         * m4/codeset.m4: Likewise.
17964         * m4/copy-file.m4: Likewise.
17965         * m4/csharp.m4: Likewise.
17966         * m4/csharpcomp.m4: Likewise.
17967         * m4/csharpexec.m4: Likewise.
17968         * m4/d-ino.m4: Likewise.
17969         * m4/d-type.m4: Likewise.
17970         * m4/dirfd.m4: Likewise.
17971         * m4/double-slash-root.m4: Likewise.
17972         * m4/eaccess.m4: Likewise.
17973         * m4/eealloc.m4: Likewise.
17974         * m4/environ.m4: Likewise.
17975         * m4/errno_h.m4: Likewise.
17976         * m4/euidaccess.m4: Likewise.
17977         * m4/execute.m4: Likewise.
17978         * m4/fatal-signal.m4: Likewise.
17979         * m4/fchdir.m4: Likewise.
17980         * m4/fcntl_h.m4: Likewise.
17981         * m4/fileblocks.m4: Likewise.
17982         * m4/filenamecat.m4: Likewise.
17983         * m4/findprog.m4: Likewise.
17984         * m4/flexmember.m4: Likewise.
17985         * m4/fnmatch.m4: Likewise.
17986         * m4/fopen.m4: Likewise.
17987         * m4/fpending.m4: Likewise.
17988         * m4/fprintf-posix.m4: Likewise.
17989         * m4/free.m4: Likewise.
17990         * m4/frexp.m4: Likewise.
17991         * m4/frexpl.m4: Likewise.
17992         * m4/fsusage.m4: Likewise.
17993         * m4/ftruncate.m4: Likewise.
17994         * m4/gc-camellia.m4: Likewise.
17995         * m4/gc-random.m4: Likewise.
17996         * m4/gc.m4: Likewise.
17997         * m4/getaddrinfo.m4: Likewise.
17998         * m4/getcwd-abort-bug.m4: Likewise.
17999         * m4/getcwd-path-max.m4: Likewise.
18000         * m4/getdate.m4: Likewise.
18001         * m4/getdomainname.m4: Likewise.
18002         * m4/getgroups.m4: Likewise.
18003         * m4/gethostname.m4: Likewise.
18004         * m4/gethrxtime.m4: Likewise.
18005         * m4/getline.m4: Likewise.
18006         * m4/getloadavg.m4: Likewise.
18007         * m4/getndelim2.m4: Likewise.
18008         * m4/getpass.m4: Likewise.
18009         * m4/gettext.m4: Likewise.
18010         * m4/gettime.m4: Likewise.
18011         * m4/gettimeofday.m4: Likewise.
18012         * m4/gnulib-common.m4: Likewise.
18013         * m4/group-member.m4: Likewise.
18014         * m4/host-os.m4: Likewise.
18015         * m4/iconv.m4: Likewise.
18016         * m4/iconv_open.m4: Likewise.
18017         * m4/inet_ntop.m4: Likewise.
18018         * m4/inet_pton.m4: Likewise.
18019         * m4/inline.m4: Likewise.
18020         * m4/intldir.m4: Likewise.
18021         * m4/intlmacosx.m4: Likewise.
18022         * m4/intmax.m4: Likewise.
18023         * m4/intmax_t.m4: Likewise.
18024         * m4/inttypes.m4: Likewise.
18025         * m4/inttypes_h.m4: Likewise.
18026         * m4/inttypes-pri.m4: Likewise.
18027         * m4/isapipe.m4: Likewise.
18028         * m4/isnand.m4: Likewise.
18029         * m4/isnanf.m4: Likewise.
18030         * m4/isnanl.m4: Likewise.
18031         * m4/javacomp.m4: Likewise.
18032         * m4/javaexec.m4: Likewise.
18033         * m4/jm-winsz1.m4: Likewise.
18034         * m4/jm-winsz2.m4: Likewise.
18035         * m4/lchown.m4: Likewise.
18036         * m4/lcmessage.m4: Likewise.
18037         * m4/ldexpl.m4: Likewise.
18038         * m4/lib-ld.m4: Likewise.
18039         * m4/lib-link.m4: Likewise.
18040         * m4/libsigsegv.m4: Likewise.
18041         * m4/link-follow.m4: Likewise.
18042         * m4/localcharset.m4: Likewise.
18043         * m4/locale-fr.m4: Likewise.
18044         * m4/locale-ja.m4: Likewise.
18045         * m4/locale-tr.m4: Likewise.
18046         * m4/locale-zh.m4: Likewise.
18047         * m4/lock.m4: Likewise.
18048         * m4/longlong.m4: Likewise.
18049         * m4/ls-mntd-fs.m4: Likewise.
18050         * m4/lstat.m4: Likewise.
18051         * m4/malloc.m4: Likewise.
18052         * m4/mathl.m4: Likewise.
18053         * m4/mbrtowc.m4: Likewise.
18054         * m4/mbstate_t.m4: Likewise.
18055         * m4/mbswidth.m4: Likewise.
18056         * m4/memchr.m4: Likewise.
18057         * m4/memcmp.m4: Likewise.
18058         * m4/memcpy.m4: Likewise.
18059         * m4/memmem.m4: Likewise.
18060         * m4/memmove.m4: Likewise.
18061         * m4/mempcpy.m4: Likewise.
18062         * m4/memrchr.m4: Likewise.
18063         * m4/memset.m4: Likewise.
18064         * m4/minmax.m4: Likewise.
18065         * m4/mkdir-slash.m4: Likewise.
18066         * m4/mkdtemp.m4: Likewise.
18067         * m4/mktime.m4: Likewise.
18068         * m4/mmap-anon.m4: Likewise.
18069         * m4/mountlist.m4: Likewise.
18070         * m4/nanosleep.m4: Likewise.
18071         * m4/nls.m4: Likewise.
18072         * m4/nocrash.m4: Likewise.
18073         * m4/open.m4: Likewise.
18074         * m4/openat.m4: Likewise.
18075         * m4/openmp.m4: Likewise.
18076         * m4/pathmax.m4: Likewise.
18077         * m4/perl.m4: Likewise.
18078         * m4/physmem.m4: Likewise.
18079         * m4/pipe.m4: Likewise.
18080         * m4/po.m4: Likewise.
18081         * m4/poll.m4: Likewise.
18082         * m4/posixtm.m4: Likewise.
18083         * m4/posixver.m4: Likewise.
18084         * m4/printf-frexp.m4: Likewise.
18085         * m4/printf-frexpl.m4: Likewise.
18086         * m4/printf-posix.m4: Likewise.
18087         * m4/printf-posix-rpl.m4: Likewise.
18088         * m4/printf.m4: Likewise.
18089         * m4/progtest.m4: Likewise.
18090         * m4/putenv.m4: Likewise.
18091         * m4/readline.m4: Likewise.
18092         * m4/readlink.m4: Likewise.
18093         * m4/readutmp.m4: Likewise.
18094         * m4/realloc.m4: Likewise.
18095         * m4/regex.m4: Likewise.
18096         * m4/relocatable.m4: Likewise.
18097         * m4/relocatable-lib.m4: Likewise.
18098         * m4/rename-dest-slash.m4: Likewise.
18099         * m4/rename.m4: Likewise.
18100         * m4/rmdir-errno.m4: Likewise.
18101         * m4/rmdir.m4: Likewise.
18102         * m4/roundf.m4: Likewise.
18103         * m4/roundl.m4: Likewise.
18104         * m4/rpmatch.m4: Likewise.
18105         * m4/save-cwd.m4: Likewise.
18106         * m4/selinux-selinux-h.m4: Likewise.
18107         * m4/setenv.m4: Likewise.
18108         * m4/settime.m4: Likewise.
18109         * m4/sig2str.m4: Likewise.
18110         * m4/sig_atomic_t.m4: Likewise.
18111         * m4/signalblocking.m4: Likewise.
18112         * m4/signbit.m4: Likewise.
18113         * m4/sigpipe.m4: Likewise.
18114         * m4/sockets.m4: Likewise.
18115         * m4/sockpfaf.m4: Likewise.
18116         * m4/st_dm_mode.m4: Likewise.
18117         * m4/stat-time.m4: Likewise.
18118         * m4/stdbool.m4: Likewise.
18119         * m4/stdint.m4: Likewise.
18120         * m4/stdint_h.m4: Likewise.
18121         * m4/stpcpy.m4: Likewise.
18122         * m4/stpncpy.m4: Likewise.
18123         * m4/strcase.m4: Likewise.
18124         * m4/strchrnul.m4: Likewise.
18125         * m4/strcspn.m4: Likewise.
18126         * m4/strdup.m4: Likewise.
18127         * m4/strftime.m4: Likewise.
18128         * m4/strndup.m4: Likewise.
18129         * m4/strnlen.m4: Likewise.
18130         * m4/strpbrk.m4: Likewise.
18131         * m4/strptime.m4: Likewise.
18132         * m4/strsep.m4: Likewise.
18133         * m4/strtod.m4: Likewise.
18134         * m4/strtoimax.m4: Likewise.
18135         * m4/strtok_r.m4: Likewise.
18136         * m4/strtol.m4: Likewise.
18137         * m4/strtoll.m4: Likewise.
18138         * m4/strtoul.m4: Likewise.
18139         * m4/strtoull.m4: Likewise.
18140         * m4/strtoumax.m4: Likewise.
18141         * m4/strverscmp.m4: Likewise.
18142         * m4/threadlib.m4: Likewise.
18143         * m4/timegm.m4: Likewise.
18144         * m4/tm_gmtoff.m4: Likewise.
18145         * m4/tmpdir.m4: Likewise.
18146         * m4/tmpfile.m4: Likewise.
18147         * m4/tzset.m4: Likewise.
18148         * m4/uintmax_t.m4: Likewise.
18149         * m4/unlinkdir.m4: Likewise.
18150         * m4/unlocked-io.m4: Likewise.
18151         * m4/uptime.m4: Likewise.
18152         * m4/userspec.m4: Likewise.
18153         * m4/utimbuf.m4: Likewise.
18154         * m4/utime.m4: Likewise.
18155         * m4/utimes-null.m4: Likewise.
18156         * m4/utimes.m4: Likewise.
18157         * m4/vararrays.m4: Likewise.
18158         * m4/vasnprintf.m4: Likewise.
18159         * m4/vfprintf-posix.m4: Likewise.
18160         * m4/vprintf-posix.m4: Likewise.
18161         * m4/wait-process.m4: Likewise.
18162         * m4/wchar_t.m4: Likewise.
18163         * m4/wint_t.m4: Likewise.
18164         * m4/write-any-file.m4: Likewise.
18165         * m4/yield.m4: Likewise.
18166
18167 2009-01-13  Bruno Haible  <bruno@clisp.org>
18168
18169         Avoid test-copy-file.sh failures when ACL support insufficient.
18170         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
18171         TESTS_ENVIRONMENT.
18172         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
18173         Reported by Jim Meyering.
18174
18175 2009-01-13  Bruno Haible  <bruno@clisp.org>
18176
18177         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
18178         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
18179         * modules/unistdio/u8-printf-parse (Files): Likewise.
18180         * modules/unistdio/u32-printf-parse (Files): Likewise.
18181         * modules/unistdio/ulc-printf-parse (Files): Likewise.
18182
18183 2009-01-13  Simon Josefsson  <simon@josefsson.org>
18184
18185         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
18186         and m4/inttypes_h.m4 too.
18187
18188 2009-01-12  Eric Blake  <ebb9@byu.net>
18189
18190         tests: IRIX 6.2 cc can't compile -0.0 into .data
18191         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
18192         rather than at compile-time.
18193         * tests/test-floorl.c (minus_zero): Likewise.
18194         * tests/test-frexpl.c (minus_zero): Likewise.
18195         * tests/test-isnan.c (minus_zerol): Likewise.
18196         * tests/test-isnanl.h (minus_zero): Likewise.
18197         * tests/test-ldexpl.c (minus_zero): Likewise.
18198         * tests/test-roundl.c (minus_zero): Likewise.
18199         * tests/test-signbit.c (minus_zerol): Likewise.
18200         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
18201         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
18202         * tests/test-truncl.c (minus_zero): Likewise.
18203         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
18204         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
18205         Reported by Tom G. Christensen and Nelson H. F. Beebe.
18206
18207 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18208
18209         regex: fix glibc bug 9697
18210         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
18211         handling.
18212
18213 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18214
18215         regex: fix glibc bug 697
18216         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
18217         being NULL also if there are no backreferences.
18218
18219 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18220
18221         regex: merge glibc changes
18222         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
18223         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
18224         re_string_skip_chars, re_string_reconstruct): Likewise.
18225         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
18226
18227 2009-01-07  Jim Meyering  <meyering@redhat.com>
18228
18229         poll: filter through cppi
18230         * lib/poll.c: Indent cpp directives to reflect nesting.
18231
18232 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
18233
18234         poll: don't return uninitialized
18235         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
18236
18237 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
18238
18239         avoid compile failure on AIX 6.1
18240         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
18241         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
18242
18243 2009-01-04  Jim Meyering  <meyering@redhat.com>
18244
18245         remove duplicate inclusion of <stdio.h>
18246         * tests/test-fprintf-posix.c: Likewise.
18247         * tests/test-printf-posix.c: Likewise.
18248         * tests/test-snprintf-posix.c: Likewise.
18249         * tests/test-sprintf-posix.c: Likewise.
18250         * tests/test-vasprintf-posix.c: Likewise.
18251         * tests/test-vfprintf-posix.c: Likewise.
18252         * tests/test-vprintf-posix.c: Likewise.
18253         * tests/test-vsnprintf-posix.c: Likewise.
18254         * tests/test-vsprintf-posix.c: Likewise.
18255
18256 2009-01-03  Jim Meyering  <meyering@redhat.com>
18257
18258         gnulib-tool: fix sed-based filtering
18259         * gnulib-tool (func_filter_filelist): Remove extra backslash
18260         in sed_fff_filter definition.
18261
18262 2009-01-02  Jim Meyering  <meyering@redhat.com>
18263
18264         strftime: avoid compilation failure on Solaris 2.6
18265         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
18266         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
18267         Don't #define mbrlen or mbsinit, since now they're guaranteed to
18268         be available.  Reported by Tom G. Christensen.  Details in
18269         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
18270
18271 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18272             Bruno Haible  <bruno@clisp.org>
18273
18274         Speed up gnulib-tool by doing more string processing through shell
18275         built-ins.
18276         * gnulib-tool (fast_func_append): New variable.
18277         (func_remove_prefix, func_remove_suffix): New functions.
18278         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
18279         (func_filter_filelist): New function.
18280         (func_get_dependencies): Use func_remove_suffix instead of sed.
18281         (func_get_automake_snippet): Use func_filter_filelist instead of a
18282         subshell and sed invocation.
18283
18284 2009-01-01  Bruno Haible  <bruno@clisp.org>
18285
18286         Fix a security bug.
18287         * gnulib-tool (func_import, import, update): Don't allow the characters
18288         '"', '$', '`', '\' in macro arguments that become part of commands that
18289         are evaluated.
18290
18291 2009-01-01  Bruno Haible  <bruno@clisp.org>
18292
18293         * gnulib-tool (func_reset_sigpipe): Add more comments.
18294
18295 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18296
18297         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
18298         func_emit_tests_Makefile_am, func_import): Abort loops early if we
18299         already know the answer.
18300
18301 2009-01-01  Jim Meyering  <meyering@redhat.com>
18302
18303         * lib/version-etc.c (version_etc_va): Update copyright year.
18304
18305 2008-12-30  Bruno Haible  <bruno@clisp.org>
18306
18307         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
18308         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
18309         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
18310
18311 2008-12-29  Eric Blake  <ebb9@byu.net>
18312
18313         multiarch: avoid autoconf AC_REQUIRE bug
18314         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
18315         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
18316         2.63 and older.
18317         Reported by Bruno Haible, and analyzed in
18318         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
18319
18320 2008-12-29  Bruno Haible  <bruno@clisp.org>
18321
18322         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
18323         files in subdirectories correctly.
18324         Reported by Ralf Wildenhues.
18325
18326 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18327
18328         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
18329         rather than 'join FILE -', for Solaris join.
18330
18331 2008-12-29  Bruno Haible  <bruno@clisp.org>
18332
18333         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
18334         quoting.
18335         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
18336         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
18337         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
18338         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
18339         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
18340         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
18341         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
18342         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
18343         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
18344         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
18345         * m4/nls.m4 (AM_NLS): Likewise.
18346         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
18347         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
18348         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
18349         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
18350         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
18351         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
18352         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
18353         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
18354         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
18355         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18356         * m4/xsize.m4 (gl_XSIZE): Likewise.
18357         Suggested by Jim Meyering.
18358
18359 2008-11-17  Bruce Korb  <bkorb@gnu.org>
18360
18361         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
18362         * lib/parse-duration.c: use a switch instead of cascading if's.
18363
18364 2008-12-29  Eric Blake  <ebb9@byu.net>
18365
18366         wchar.h: supply WEOF on Irix 5.3
18367         * lib/wchar.in.h (wint_t): Also supply WEOF.
18368         * lib/wctype.in.h (wint_t): Likewise.
18369         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
18370         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
18371         Reported by Tom G. Christensen.
18372
18373 2008-12-26  Bruno Haible  <bruno@clisp.org>
18374
18375         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
18376         i486, i586, i686.
18377
18378 2008-12-26  Bruno Haible  <bruno@clisp.org>
18379
18380         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
18381
18382 2008-12-26  Bruno Haible  <bruno@clisp.org>
18383
18384         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
18385         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
18386         not __STDC_CONSTANT_MACROS.
18387         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
18388
18389 2008-12-25  Bruno Haible  <bruno@clisp.org>
18390
18391         Add support for universal builds to vasnprintf.
18392         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
18393         universal builds, guess no.
18394         * modules/vasnprintf-posix (Depends-on): Add multiarch.
18395         * modules/vasprintf-posix (Depends-on): Likewise.
18396         * modules/fprintf-posix (Depends-on): Likewise.
18397         * modules/vfprintf-posix (Depends-on): Likewise.
18398         * modules/snprintf-posix (Depends-on): Likewise.
18399         * modules/vsnprintf-posix (Depends-on): Likewise.
18400         * modules/sprintf-posix (Depends-on): Likewise.
18401         * modules/vsprintf-posix (Depends-on): Likewise.
18402         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
18403         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
18404         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
18405         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
18406         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
18407         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
18408         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
18409
18410         Add support for universal builds to <inttypes.h>.
18411         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
18412         _SCNu64_PREFIX): In Apple
18413         universal builds, define directly, using _LP64.
18414         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
18415         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
18416         * modules/inttypes (Depends-on): Add multiarch.
18417         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
18418
18419         Add support for universal builds to <stdint.h>.
18420         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
18421         universal builds, define directly, using _LP64.
18422         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
18423         Apple universal builds, don't test for the size and suffix of ptrdiff_t
18424         and size_t.
18425         * modules/stdint (Depends-on): Add multiarch.
18426         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
18427
18428         New module 'multiarch'.
18429         * modules/multiarch: New file.
18430         * m4/multiarch.m4: New file.
18431
18432 2008-12-25  Bruno Haible  <bruno@clisp.org>
18433
18434         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
18435
18436 2008-12-25  Bruno Haible  <bruno@clisp.org>
18437
18438         * modules/btowc (License): Relicense under LGPLv2+.
18439         * modules/mbsinit (License): Likewise.
18440         * modules/mbrtowc (License): Likewise.
18441         * modules/wcrtomb (License): Likewise.
18442         * modules/streq (License): Likewise.
18443         Reported by David Lutterkort <lutter@redhat.com>.
18444
18445 2008-12-23  Bruno Haible  <bruno@clisp.org>
18446
18447         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
18448
18449 2008-12-23  Bruno Haible  <bruno@clisp.org>
18450
18451         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
18452         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
18453         GETADDRINFO_LIB, not in LIBS.
18454         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
18455         * modules/canon-host (Link): Likewise.
18456         * NEWS: Mention the change.
18457         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
18458         GETADDRINFO_LIB.
18459
18460 2008-12-22  Bruno Haible  <bruno@clisp.org>
18461
18462         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
18463         * doc/posix-functions/iswalpha_l.texi: Likewise.
18464         * doc/posix-functions/iswblank_l.texi: Likewise.
18465         * doc/posix-functions/iswcntrl_l.texi: Likewise.
18466         * doc/posix-functions/iswctype_l.texi: Likewise.
18467         * doc/posix-functions/iswdigit_l.texi: Likewise.
18468         * doc/posix-functions/iswgraph_l.texi: Likewise.
18469         * doc/posix-functions/iswlower_l.texi: Likewise.
18470         * doc/posix-functions/iswprint_l.texi: Likewise.
18471         * doc/posix-functions/iswpunct_l.texi: Likewise.
18472         * doc/posix-functions/iswspace_l.texi: Likewise.
18473         * doc/posix-functions/iswupper_l.texi: Likewise.
18474         * doc/posix-functions/iswxdigit_l.texi: Likewise.
18475         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
18476         * doc/posix-functions/open_wmemstream.texi: Likewise.
18477         * doc/posix-functions/swscanf.texi: Likewise.
18478         * doc/posix-functions/towctrans_l.texi: Likewise.
18479         * doc/posix-functions/towlower.texi: Likewise.
18480         * doc/posix-functions/towlower_l.texi: Likewise.
18481         * doc/posix-functions/towupper.texi: Likewise.
18482         * doc/posix-functions/towupper_l.texi: Likewise.
18483         * doc/posix-functions/vfwprintf.texi: Likewise.
18484         * doc/posix-functions/vfwscanf.texi: Likewise.
18485         * doc/posix-functions/vswscanf.texi: Likewise.
18486         * doc/posix-functions/vwprintf.texi: Likewise.
18487         * doc/posix-functions/vwscanf.texi: Likewise.
18488         * doc/posix-functions/wcpcpy.texi: Likewise.
18489         * doc/posix-functions/wcpncpy.texi: Likewise.
18490         * doc/posix-functions/wcscasecmp.texi: Likewise.
18491         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
18492         * doc/posix-functions/wcscoll_l.texi: Likewise.
18493         * doc/posix-functions/wcsdup.texi: Likewise.
18494         * doc/posix-functions/wcsncasecmp.texi: Likewise.
18495         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
18496         * doc/posix-functions/wcsnlen.texi: Likewise.
18497         * doc/posix-functions/wcsnrtombs.texi: Likewise.
18498         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
18499         * doc/posix-functions/wctrans_l.texi: Likewise.
18500         * doc/posix-functions/wctype_l.texi: Likewise.
18501         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
18502         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
18503         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
18504         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
18505         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
18506         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
18507         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
18508         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
18509         * doc/glibc-functions/wcschrnul.texi: Likewise.
18510         * doc/glibc-functions/wcsftime_l.texi: Likewise.
18511         * doc/glibc-functions/wcstod_l.texi: Likewise.
18512         * doc/glibc-functions/wcstof_l.texi: Likewise.
18513         * doc/glibc-functions/wcstol_l.texi: Likewise.
18514         * doc/glibc-functions/wcstold_l.texi: Likewise.
18515         * doc/glibc-functions/wcstoll_l.texi: Likewise.
18516         * doc/glibc-functions/wcstoq.texi: Likewise.
18517         * doc/glibc-functions/wcstoul_l.texi: Likewise.
18518         * doc/glibc-functions/wcstoull_l.texi: Likewise.
18519         * doc/glibc-functions/wcstouq.texi: Likewise.
18520         * doc/glibc-functions/wmempcpy.texi: Likewise.
18521
18522 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
18523             Eric Blake  <ebb9@byu.net>
18524             Paolo Bonzini  <bonzini@gnu.org>
18525             Bruno Haible  <bruno@clisp.org>
18526
18527         Make c-stack work on Haiku.
18528         * lib/c-stack.c (SA_ONSTACK): Define fallback.
18529         (c_stack_action): Use SA_ONSTACK flag.
18530
18531 2008-12-22  Bruno Haible  <bruno@clisp.org>
18532
18533         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
18534
18535 2008-12-22  Bruno Haible  <bruno@clisp.org>
18536
18537         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
18538         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
18539         being overridden.
18540         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
18541         New macros.
18542         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
18543         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
18544         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
18545         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
18546
18547 2008-12-22  Bruno Haible  <bruno@clisp.org>
18548
18549         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
18550         from test code.
18551
18552 2008-12-22  Eric Blake  <ebb9@byu.net>
18553
18554         Avoid gcc warnings on cygwin.
18555         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
18556         Avoid unused variable.
18557         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
18558         Likewise.
18559
18560 2008-12-22  Bruno Haible  <bruno@clisp.org>
18561
18562         Remove HAVE_MBRTOWC conditionals.
18563         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
18564         (mbscasecmp): Assume mbrtowc function.
18565         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
18566         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
18567         * lib/mbschr.c: Include mbuiter.h unconditionally.
18568         (mbschr): Assume mbrtowc function.
18569         * lib/mbscspn.c: Include mbuiter.h unconditionally.
18570         (mbscspn): Assume mbrtowc function.
18571         * lib/mbslen.c: Include mbuiter.h unconditionally.
18572         (mbslen): Assume mbrtowc function.
18573         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
18574         (mbsncasecmp): Assume mbrtowc function.
18575         * lib/mbsnlen.c: Include mbiter.h unconditionally.
18576         (mbsnlen): Assume mbrtowc function.
18577         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
18578         (mbspbrk): Assume mbrtowc function.
18579         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
18580         (mbspcasecmp): Assume mbrtowc function.
18581         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
18582         (mbsrchr): Assume mbrtowc function.
18583         * lib/mbssep.c: Include mbuiter.h unconditionally.
18584         (mbssep): Assume mbrtowc function.
18585         * lib/mbsspn.c: Include mbuiter.h unconditionally.
18586         (mbsspn): Assume mbrtowc function.
18587         * lib/mbsstr.c: Include mbuiter.h unconditionally.
18588         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
18589         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
18590         (mbstok_r): Assume mbrtowc function.
18591         * lib/propername.c: Include mbuiter.h unconditionally.
18592         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
18593         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
18594         (trim2): Assume mbrtowc function.
18595         * lib/mbswidth.c (mbsinit): Remove fallback definition.
18596         (mbsnwidth): Assume mbrtowc function.
18597         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
18598         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
18599         fallback definitions.
18600         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
18601
18602 2008-12-22  Bruno Haible  <bruno@clisp.org>
18603
18604         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
18605
18606 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
18607
18608         * modules/regex: Request emulations for the mb*/wc* functions we need.
18609         * m4/regex.m4: Don't look for those functions here.
18610         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
18611
18612 2008-12-22  Bruno Haible  <bruno@clisp.org>
18613
18614         * modules/fnmatch (Depends-on): Remove duplicated dependency.
18615
18616 2008-12-21  Bruno Haible  <bruno@clisp.org>
18617
18618         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
18619         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
18620         (Include): Remove conditionalization.
18621         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
18622         (Include): Remove conditionalization.
18623         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
18624         (Include): Remove conditionalization.
18625         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
18626         * m4/mbfile.m4 (gl_MBFILE): Likewise.
18627         * NEWS: Mention the change.
18628         Reported by Alan Hourihane <alanh@fairlite.co.uk>
18629         via Sergey Poznyakoff <gray@gnu.org.ua>.
18630
18631 2008-12-21  Bruno Haible  <bruno@clisp.org>
18632
18633         * MODULES.html.sh (Extended multibyte and wide character utilities
18634         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
18635         wcrtomb, wcsrtombs.
18636         (Support for systems lacking POSIX:2008): Add accept, bind, close,
18637         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
18638         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
18639         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
18640
18641 2008-12-21  Bruno Haible  <bruno@clisp.org>
18642
18643         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
18644
18645 2008-12-21  Bruno Haible  <bruno@clisp.org>
18646
18647         * modules/wcsnrtombs-tests: New file.
18648         * tests/test-wcsnrtombs1.sh: New file.
18649         * tests/test-wcsnrtombs2.sh: New file.
18650         * tests/test-wcsnrtombs3.sh: New file.
18651         * tests/test-wcsnrtombs4.sh: New file.
18652         * tests/test-wcsnrtombs.c: New file.
18653
18654         New module 'wcsnrtombs'.
18655         * lib/wchar.in.h (wcsnrtombs): New declaration.
18656         * lib/wcsnrtombs.c: New file.
18657         * lib/wcsrtombs-state.c: New file.
18658         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
18659         (internal_state): Remove variable.
18660         * m4/wcsnrtombs.m4: New file.
18661         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
18662         compilation units.
18663         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
18664         HAVE_WCSNRTOMBS.
18665         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
18666         HAVE_WCSNRTOMBS.
18667         * modules/wcsnrtombs: New file.
18668         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
18669         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
18670
18671 2008-12-21  Bruno Haible  <bruno@clisp.org>
18672
18673         * modules/wcsrtombs-tests: New file.
18674         * tests/test-wcsrtombs1.sh: New file.
18675         * tests/test-wcsrtombs2.sh: New file.
18676         * tests/test-wcsrtombs3.sh: New file.
18677         * tests/test-wcsrtombs4.sh: New file.
18678         * tests/test-wcsrtombs.c: New file.
18679
18680         New module 'wcsrtombs'.
18681         * lib/wchar.in.h (wcsrtombs): New declaration.
18682         * lib/wcsrtombs.c: New file.
18683         * m4/wcsrtombs.m4: New file.
18684         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
18685         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18686         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
18687         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18688         * modules/wcsrtombs: New file.
18689         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
18690         bugs.
18691
18692 2008-12-21  Bruno Haible  <bruno@clisp.org>
18693
18694         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
18695         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
18696         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
18697         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
18698         if not correct.
18699         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
18700         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
18701         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18702         m4/locale-zh.m4, m4/codeset.m4.
18703         * doc/posix-functions/wcrtomb.texi: Document the bug.
18704
18705 2008-12-21  Bruno Haible  <bruno@clisp.org>
18706
18707         Work around a btowc() bug on IRIX 6.5.
18708         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
18709         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
18710         REPLACE_WTOBC if not.
18711         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
18712         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
18713         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
18714
18715 2008-12-21  Bruno Haible  <bruno@clisp.org>
18716
18717         * modules/wcrtomb-tests: New file.
18718         * tests/test-wcrtomb.sh: New file.
18719         * tests/test-wcrtomb.c: New file.
18720
18721         New module 'wcrtomb'.
18722         * lib/wchar.in.h (wcrtomb): New declaration.
18723         * lib/wcrtomb.c: New file.
18724         * m4/wcrtomb.m4: New file.
18725         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
18726         HAVE_WCRTOMB.
18727         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
18728         HAVE_WCRTOMB.
18729         * modules/wcrtomb: New file.
18730         * doc/posix-functions/wcrtomb.texi: Mention the new module.
18731
18732 2008-12-21  Bruno Haible  <bruno@clisp.org>
18733
18734         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
18735         * modules/mbsrtowcs (Files): Likewise.
18736         * modules/wctob (Files): Likewise.
18737         * modules/c-strcase-tests (Files): Likewise.
18738         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
18739         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
18740         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
18741         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
18742         * modules/vasnprintf-posix-tests (Files): Likewise.
18743
18744 2008-12-21  William Pursell  <bill.pursell@gmail.com>
18745
18746         gitlog-to-changelog: pass all command-line arguments to git-log
18747         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
18748         it is sometimes convenient to filter the commits in various ways.
18749         gitlog-to-changelog only allows --since to specify a start date,
18750         but git-log itself supports many other filtering mechanisms.
18751         At the moment, I want to filter by branch name.  Rather than
18752         adding a --branch option to gitlog-to-changelog, it seems more
18753         flexible to simply pass all options directly to git-log and let
18754         git do the work.  Notice that this effectively makes --since a
18755         redundant option for gitlog-to-changelog, but removing it would
18756         require current usage to change since calls would then require
18757         an additional '--'.
18758
18759 2008-12-21  Bruno Haible  <bruno@clisp.org>
18760
18761         * modules/mbsnrtowcs-tests: New file.
18762         * tests/test-mbsnrtowcs1.sh: New file.
18763         * tests/test-mbsnrtowcs2.sh: New file.
18764         * tests/test-mbsnrtowcs3.sh: New file.
18765         * tests/test-mbsnrtowcs4.sh: New file.
18766         * tests/test-mbsnrtowcs.c: New file.
18767
18768         New module 'mbsnrtowcs'.
18769         * lib/wchar.in.h (mbsnrtowcs): New declaration.
18770         * lib/mbsnrtowcs.c: New file.
18771         * lib/mbsrtowcs-state.c: New file.
18772         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
18773         (internal_state): Remove variable.
18774         * m4/mbsnrtowcs.m4: New file.
18775         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
18776         compilation units.
18777         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
18778         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18779         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
18780         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18781         * modules/mbsnrtowcs: New file.
18782         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
18783         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
18784         portability problem.
18785
18786 2008-12-21  Bruno Haible  <bruno@clisp.org>
18787
18788         Work around mbsrtowcs bug.
18789         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
18790         (gl_FUNC_MBSRTOWCS): Invoke it.
18791         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18792         m4/locale-zh.m4.
18793         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
18794
18795 2008-12-21  Bruno Haible  <bruno@clisp.org>
18796
18797         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
18798
18799 2008-12-21  Bruno Haible  <bruno@clisp.org>
18800
18801         Update doc for AIX.
18802         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
18803         16-bit wchar_t type.
18804         * doc/posix-functions/btowc.texi: Likewise.
18805         * doc/posix-functions/fgetwc.texi: Likewise.
18806         * doc/posix-functions/fgetws.texi: Likewise.
18807         * doc/posix-functions/fputwc.texi: Likewise.
18808         * doc/posix-functions/fputws.texi: Likewise.
18809         * doc/posix-functions/fwide.texi: Likewise.
18810         * doc/posix-functions/fwprintf.texi: Likewise.
18811         * doc/posix-functions/fwscanf.texi: Likewise.
18812         * doc/posix-functions/getwchar.texi: Likewise.
18813         * doc/posix-functions/getwc.texi: Likewise.
18814         * doc/posix-functions/iswalnum.texi: Likewise.
18815         * doc/posix-functions/iswalpha.texi: Likewise.
18816         * doc/posix-functions/iswblank.texi: Likewise.
18817         * doc/posix-functions/iswcntrl.texi: Likewise.
18818         * doc/posix-functions/iswctype.texi: Likewise.
18819         * doc/posix-functions/iswdigit.texi: Likewise.
18820         * doc/posix-functions/iswgraph.texi: Likewise.
18821         * doc/posix-functions/iswlower.texi: Likewise.
18822         * doc/posix-functions/iswprint.texi: Likewise.
18823         * doc/posix-functions/iswpunct.texi: Likewise.
18824         * doc/posix-functions/iswspace.texi: Likewise.
18825         * doc/posix-functions/iswupper.texi: Likewise.
18826         * doc/posix-functions/iswxdigit.texi: Likewise.
18827         * doc/posix-functions/mbrtowc.texi: Likewise.
18828         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18829         * doc/posix-functions/mbstowcs.texi: Likewise.
18830         * doc/posix-functions/mbtowc.texi: Likewise.
18831         * doc/posix-functions/putwchar.texi: Likewise.
18832         * doc/posix-functions/putwc.texi: Likewise.
18833         * doc/posix-functions/swprintf.texi: Likewise.
18834         * doc/posix-functions/tolower.texi: Likewise.
18835         * doc/posix-functions/toupper.texi: Likewise.
18836         * doc/posix-functions/towctrans.texi: Likewise.
18837         * doc/posix-functions/ungetwc.texi: Likewise.
18838         * doc/posix-functions/vswprintf.texi: Likewise.
18839         * doc/posix-functions/wcrtomb.texi: Likewise.
18840         * doc/posix-functions/wcscat.texi: Likewise.
18841         * doc/posix-functions/wcschr.texi: Likewise.
18842         * doc/posix-functions/wcscmp.texi: Likewise.
18843         * doc/posix-functions/wcscoll.texi: Likewise.
18844         * doc/posix-functions/wcscpy.texi: Likewise.
18845         * doc/posix-functions/wcscspn.texi: Likewise.
18846         * doc/posix-functions/wcsftime.texi: Likewise.
18847         * doc/posix-functions/wcslen.texi: Likewise.
18848         * doc/posix-functions/wcsncat.texi: Likewise.
18849         * doc/posix-functions/wcsncmp.texi: Likewise.
18850         * doc/posix-functions/wcsncpy.texi: Likewise.
18851         * doc/posix-functions/wcspbrk.texi: Likewise.
18852         * doc/posix-functions/wcsrchr.texi: Likewise.
18853         * doc/posix-functions/wcsrtombs.texi: Likewise.
18854         * doc/posix-functions/wcsspn.texi: Likewise.
18855         * doc/posix-functions/wcsstr.texi: Likewise.
18856         * doc/posix-functions/wcstod.texi: Likewise.
18857         * doc/posix-functions/wcstof.texi: Likewise.
18858         * doc/posix-functions/wcstoimax.texi: Likewise.
18859         * doc/posix-functions/wcstok.texi: Likewise.
18860         * doc/posix-functions/wcstold.texi: Likewise.
18861         * doc/posix-functions/wcstoll.texi: Likewise.
18862         * doc/posix-functions/wcstol.texi: Likewise.
18863         * doc/posix-functions/wcstombs.texi: Likewise.
18864         * doc/posix-functions/wcstoull.texi: Likewise.
18865         * doc/posix-functions/wcstoul.texi: Likewise.
18866         * doc/posix-functions/wcstoumax.texi: Likewise.
18867         * doc/posix-functions/wcswidth.texi: Likewise.
18868         * doc/posix-functions/wcsxfrm.texi: Likewise.
18869         * doc/posix-functions/wctob.texi: Likewise.
18870         * doc/posix-functions/wctomb.texi: Likewise.
18871         * doc/posix-functions/wctrans.texi: Likewise.
18872         * doc/posix-functions/wctype.texi: Likewise.
18873         * doc/posix-functions/wcwidth.texi: Likewise.
18874         * doc/posix-functions/wmemchr.texi: Likewise.
18875         * doc/posix-functions/wmemcmp.texi: Likewise.
18876         * doc/posix-functions/wmemcpy.texi: Likewise.
18877         * doc/posix-functions/wmemmove.texi: Likewise.
18878         * doc/posix-functions/wmemset.texi: Likewise.
18879         * doc/posix-functions/wprintf.texi: Likewise.
18880         * doc/posix-functions/wscanf.texi: Likewise.
18881
18882 2008-12-21  Bruno Haible  <bruno@clisp.org>
18883
18884         Update doc for HP-UX 11.11.
18885         * doc/posix-functions/btowc.texi: Clarify that the function is missing
18886         in HP-UX version 11.00, not in all versions of HP-UX 11.
18887         * doc/posix-functions/fwide.texi: Likewise.
18888         * doc/posix-functions/fwprintf.texi: Likewise.
18889         * doc/posix-functions/fwscanf.texi: Likewise.
18890         * doc/posix-functions/inet_ntop.texi: Likewise.
18891         * doc/posix-functions/inet_pton.texi: Likewise.
18892         * doc/posix-functions/mbrlen.texi: Likewise.
18893         * doc/posix-functions/mbrtowc.texi: Likewise.
18894         * doc/posix-functions/mbsinit.texi: Likewise.
18895         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18896         * doc/posix-functions/swprintf.texi: Likewise.
18897         * doc/posix-functions/swscanf.texi: Likewise.
18898         * doc/posix-functions/towctrans.texi: Likewise.
18899         * doc/posix-functions/vfwprintf.texi: Likewise.
18900         * doc/posix-functions/vswprintf.texi: Likewise.
18901         * doc/posix-functions/vwprintf.texi: Likewise.
18902         * doc/posix-functions/wcrtomb.texi: Likewise.
18903         * doc/posix-functions/wcsrtombs.texi: Likewise.
18904         * doc/posix-functions/wcsstr.texi: Likewise.
18905         * doc/posix-functions/wctob.texi: Likewise.
18906         * doc/posix-functions/wctrans.texi: Likewise.
18907         * doc/posix-functions/wmemchr.texi: Likewise.
18908         * doc/posix-functions/wmemcmp.texi: Likewise.
18909         * doc/posix-functions/wmemcpy.texi: Likewise.
18910         * doc/posix-functions/wmemmove.texi: Likewise.
18911         * doc/posix-functions/wmemset.texi: Likewise.
18912         * doc/posix-functions/wprintf.texi: Likewise.
18913         * doc/posix-functions/wscanf.texi: Likewise.
18914
18915 2008-12-21  Bruno Haible  <bruno@clisp.org>
18916
18917         Work around a portability problem.
18918         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
18919         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
18920
18921 2008-12-20  Bruno Haible  <bruno@clisp.org>
18922
18923         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
18924         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
18925         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
18926         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
18927         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
18928
18929         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
18930         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
18931         set.
18932         (GNULIB_defined_mbstate_t): New macro.
18933         (mbsinit): Redefine if REPLACE_MBSINIT is set.
18934         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
18935         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
18936         reuses the system's mbrtowc function but works around the bugs.
18937         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
18938         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
18939         macros.
18940         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
18941         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
18942         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
18943         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
18944         REPLACE_MBSINIT if mbsinit needs to be overridden.
18945         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
18946         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18947         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
18948         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18949         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18950         m4/locale-zh.m4.
18951         (Depends): Add mbsinit.
18952         * modules/mbsinit (Depends): Add mbrtowc.
18953         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
18954
18955 2008-12-20  Bruno Haible  <bruno@clisp.org>
18956
18957         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
18958         so that there are no conversion errors on AIX.
18959         * tests/test-mbsrtowcs.c (main): LIkewise.
18960
18961 2008-12-20  Bruno Haible  <bruno@clisp.org>
18962
18963         Work around wctob bug on Solaris <= 9.
18964         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
18965         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
18966         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
18967         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
18968         * modules/wctob (Files): Add m4/locale-fr.m4.
18969         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
18970
18971 2008-12-20  Bruno Haible  <bruno@clisp.org>
18972
18973         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
18974         /dev/null.
18975         * tests/test-select-in.sh: Likewise.
18976         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18977
18978 2008-12-20  Bruno Haible  <bruno@clisp.org>
18979
18980         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
18981         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
18982         Cygwin 1.5.x.
18983
18984 2008-12-20  Bruno Haible  <bruno@clisp.org>
18985
18986         Ensure mbstate_t is defined on HP-UX 11.11.
18987         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
18988         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
18989         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
18990         AC_USE_SYSTEM_EXTENSIONS.
18991         * modules/fnmatch (Depends-on): Add extensions.
18992         * modules/mbrlen (Depends-on): Likewise.
18993         * modules/mbrtowc (Depends-on): Likewise.
18994         * modules/mbsinit (Depends-on): Likewise.
18995         * modules/mbsrtowcs (Depends-on): Likewise.
18996         * modules/mbswidth (Depends-on): Likewise.
18997         * modules/quotearg (Depends-on): Likewise.
18998         * modules/strftime (Depends-on): Likewise.
18999
19000 2008-12-20  Bruno Haible  <bruno@clisp.org>
19001
19002         Ensure wctob is declared on IRIX 6.5.
19003         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
19004         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
19005         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
19006         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
19007         of HAVE_WCTOB.
19008         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
19009         HAVE_WCTOB.
19010         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
19011
19012 2008-12-19  Bruno Haible  <bruno@clisp.org>
19013
19014         * modules/mbsrtowcs-tests: New file.
19015         * tests/test-mbsrtowcs1.sh: New file.
19016         * tests/test-mbsrtowcs2.sh: New file.
19017         * tests/test-mbsrtowcs3.sh: New file.
19018         * tests/test-mbsrtowcs4.sh: New file.
19019         * tests/test-mbsrtowcs.c: New file.
19020
19021         New module 'mbsrtowcs'.
19022         * lib/wchar.in.h (mbsrtowcs): New declaration.
19023         * lib/mbsrtowcs.c: New file.
19024         * m4/mbsrtowcs.m4: New file.
19025         * modules/mbsrtowcs: New file.
19026         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
19027         HAVE_MBSRTOWCS.
19028         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
19029         HAVE_MBSRTOWCS.
19030         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
19031
19032 2008-12-19  Bruno Haible  <bruno@clisp.org>
19033
19034         New module 'mbrlen'.
19035         * lib/wchar.in.h (mbrlen): New declaration.
19036         * lib/mbrlen.c: New file.
19037         * m4/mbrlen.m4: New file.
19038         * modules/mbrlen: New file.
19039         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
19040         HAVE_MBRLEN.
19041         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
19042         HAVE_MBRLEN.
19043         * doc/posix-functions/mbrlen.texi: Document the new module.
19044
19045 2008-12-19  Bruno Haible  <bruno@clisp.org>
19046
19047         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
19048         * modules/mbrtowc (Depends-on): Add verify.
19049         Suggested by Paul Eggert.
19050
19051 2008-12-18  Bruno Haible  <bruno@clisp.org>
19052
19053         * modules/mbsinit-tests: New file.
19054         * tests/test-mbsinit.sh: New file.
19055         * tests/test-mbsinit.c: New file.
19056
19057 2008-12-18  Bruno Haible  <bruno@clisp.org>
19058
19059         * modules/mbrtowc-tests: New file.
19060         * tests/test-mbrtowc1.sh: New file.
19061         * tests/test-mbrtowc2.sh: New file.
19062         * tests/test-mbrtowc3.sh: New file.
19063         * tests/test-mbrtowc4.sh: New file.
19064         * tests/test-mbrtowc.c: New file.
19065
19066         New module 'mbrtowc'.
19067         * lib/wchar.in.h (mbstate_t): Override when the system does not have
19068         mbsinit and mbrtowc.
19069         (mbrtowc): New declaration.
19070         * lib/mbrtowc.c: New file.
19071         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
19072         * modules/mbrtowc: New file.
19073         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
19074         HAVE_MBRTOWC.
19075         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
19076         HAVE_MBRTOWC.
19077         * doc/posix-functions/mbrtowc.texi: Document the new module.
19078
19079 2008-12-18  Bruno Haible  <bruno@clisp.org>
19080
19081         New module 'wctob'.
19082         * lib/wchar.in.h (wctob): New declaration.
19083         * lib/wctob.c: New file.
19084         * m4/wctob.m4: New file.
19085         * modules/wctob: New file.
19086         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
19087         HAVE_WCTOB.
19088         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
19089         * doc/posix-functions/wctob.texi: Document the new module.
19090
19091 2008-12-18  Bruno Haible  <bruno@clisp.org>
19092
19093         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
19094         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
19095
19096 2008-12-18  Simon Josefsson  <simon@josefsson.org>
19097
19098         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
19099         G. Christensen" <tgc@jupiterrise.com>.
19100
19101         * lib/flock.c: Need to include errno.h.  Reported by "Tom
19102         G. Christensen" <tgc@jupiterrise.com>.
19103
19104         * lib/flock.c: Need to include string.h.  Reported by "Tom
19105         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
19106         <ebb9@byu.net>.
19107
19108 2008-12-18  Bruno Haible  <bruno@clisp.org>
19109
19110         * m4/locale-ja.m4: New file, from GNU gettext.
19111
19112 2008-12-17  Bruno Haible  <bruno@clisp.org>
19113
19114         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
19115         Suggested by Eric Blake.
19116
19117 2008-12-17  Bruno Haible  <bruno@clisp.org>
19118
19119         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
19120
19121 2008-12-17  Bruno Haible  <bruno@clisp.org>
19122
19123         * lib/mbsinit.c: Include verify.h. Verify an assumption.
19124         * modules/mbsinit (Depends-on): Add verify.
19125         Suggested by Paul Eggert.
19126
19127 2008-12-17  Bruno Haible  <bruno@clisp.org>
19128
19129         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
19130         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
19131         gl_FUNC_MBRTOWC.
19132         * m4/mbiter.m4 (gl_MBITER): LIkewise.
19133         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
19134         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
19135         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
19136         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
19137         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
19138         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
19139         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
19140         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
19141         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
19142         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
19143         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
19144         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
19145         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
19146         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
19147         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19148         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
19149         * modules/trim (configure.ac): Likewise.
19150
19151 2008-12-17  Bruno Haible  <bruno@clisp.org>
19152
19153         * modules/btowc-tests: New file.
19154         * tests/test-btowc1.sh: New file.
19155         * tests/test-btowc2.sh: New file.
19156         * tests/test-btowc.c: New file.
19157
19158         New module 'btowc'.
19159         * lib/wchar.in.h (btowc): New declaration.
19160         * lib/btowc.c: New file.
19161         * m4/btowc.m4: New file.
19162         * modules/btowc: New file.
19163         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
19164         HAVE_BTOWC.
19165         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
19166         * doc/posix-functions/btowc.texi: Document the new module.
19167
19168 2008-12-17  Bruno Haible  <bruno@clisp.org>
19169
19170         New module 'mbsinit'.
19171         * lib/wchar.in.h (mbsinit): New declaration.
19172         * lib/mbsinit.c: New file.
19173         * m4/mbsinit.m4: New file.
19174         * modules/mbsinit: New file.
19175         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
19176         HAVE_MBSINIT.
19177         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
19178         HAVE_MBSINIT.
19179         * doc/posix-functions/mbsinit.texi: Document the new module.
19180
19181 2008-12-16  Bruno Haible  <bruno@clisp.org>
19182
19183         * lib/unistd.in.h: Add comment.
19184         * tests/test-environ.c: Don't include <stdlib.h>.
19185
19186 2008-12-16  Bruno Haible  <bruno@clisp.org>
19187
19188         * lib/parse-duration.h (parse_duration): Document return value
19189         convention.
19190         * lib/parse-duration.c: Include specification header first. Add
19191         comments.
19192         (_): Remove macro.
19193         (parse_year_month_day, parse_hour_minute_second): Move side effects
19194         outside of strchr call.
19195         (parse_non_iso8601): Move side effects outside of isspace call.
19196         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
19197         call.
19198
19199 2008-12-16  Bruno Haible  <bruno@clisp.org>
19200
19201         * tests/test-parse-duration.sh: Produce no output when the test
19202         succeeds.
19203
19204 2008-12-16  Bruno Haible  <bruno@clisp.org>
19205
19206         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
19207         expressions.
19208
19209 2008-12-15  Bruno Haible  <bruno@clisp.org>
19210
19211         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
19212         * doc/glibc-functions/flistxattr.texi: Likewise.
19213         * doc/glibc-functions/fopencookie.texi: Likewise.
19214         * doc/glibc-functions/fremovexattr.texi: Likewise.
19215         * doc/glibc-functions/fsetxattr.texi: Likewise.
19216         * doc/glibc-functions/getxattr.texi: Likewise.
19217         * doc/glibc-functions/lgetxattr.texi: Likewise.
19218         * doc/glibc-functions/listxattr.texi: Likewise.
19219         * doc/glibc-functions/llistxattr.texi: Likewise.
19220         * doc/glibc-functions/lremovexattr.texi: Likewise.
19221         * doc/glibc-functions/lsetxattr.texi: Likewise.
19222         * doc/glibc-functions/removexattr.texi: Likewise.
19223         * doc/glibc-functions/setxattr.texi: Likewise.
19224         * doc/posix-functions/open_memstream.texi: Likewise.
19225
19226 2008-12-15  Eric Blake  <ebb9@byu.net>
19227
19228         Update doc for cygwin 1.7.
19229         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
19230         functions.
19231         * doc/posix-functions/fchmodat.texi: Likewise.
19232         * doc/posix-functions/fchownat.texi: Likewise.
19233         * doc/posix-functions/fdopendir.texi: Likewise.
19234         * doc/posix-functions/fmemopen.texi: Likewise.
19235         * doc/posix-functions/freeaddrinfo.texi: Likewise.
19236         * doc/posix-functions/fstatat.texi: Likewise.
19237         * doc/posix-functions/futimens.texi: Likewise.
19238         * doc/posix-functions/gai_strerror.texi: Likewise.
19239         * doc/posix-functions/getaddrinfo.texi: Likewise.
19240         * doc/posix-functions/getnameinfo.texi: Likewise.
19241         * doc/posix-functions/if_freenameindex.texi: Likewise.
19242         * doc/posix-functions/if_indextoname.texi: Likewise.
19243         * doc/posix-functions/if_nameindex.texi: Likewise.
19244         * doc/posix-functions/if_nametoindex.texi: Likewise.
19245         * doc/posix-functions/insque.texi: Likewise.
19246         * doc/posix-functions/linkat.texi: Likewise.
19247         * doc/posix-functions/llrint.texi: Likewise.
19248         * doc/posix-functions/llrintf.texi: Likewise.
19249         * doc/posix-functions/llrintl.texi: Likewise.
19250         * doc/posix-functions/lockf.texi: Likewise.
19251         * doc/posix-functions/lrintl.texi: Likewise.
19252         * doc/posix-functions/mkdirat.texi: Likewise.
19253         * doc/posix-functions/mkfifoat.texi: Likewise.
19254         * doc/posix-functions/mknodat.texi: Likewise.
19255         * doc/posix-functions/mq_close.texi: Likewise.
19256         * doc/posix-functions/mq_getattr.texi: Likewise.
19257         * doc/posix-functions/mq_notify.texi: Likewise.
19258         * doc/posix-functions/mq_open.texi: Likewise.
19259         * doc/posix-functions/mq_receive.texi: Likewise.
19260         * doc/posix-functions/mq_send.texi: Likewise.
19261         * doc/posix-functions/mq_setattr.texi: Likewise.
19262         * doc/posix-functions/mq_timedreceive.texi: Likewise.
19263         * doc/posix-functions/mq_timedsend.texi: Likewise.
19264         * doc/posix-functions/mq_unlink.texi: Likewise.
19265         * doc/posix-functions/open_memstream.texi: Likewise.
19266         * doc/posix-functions/openat.texi: Likewise.
19267         * doc/posix-functions/posix_fadvise.texi: Likewise.
19268         * doc/posix-functions/posix_fallocate.texi: Likewise.
19269         * doc/posix-functions/posix_madvise.texi: Likewise.
19270         * doc/posix-functions/posix_memalign.texi: Likewise.
19271         * doc/posix-functions/posix_openpt.texi: Likewise.
19272         * doc/posix-functions/readlinkat.texi: Likewise.
19273         * doc/posix-functions/remque.texi: Likewise.
19274         * doc/posix-functions/renameat.texi: Likewise.
19275         * doc/posix-functions/rintl.texi: Likewise.
19276         * doc/posix-functions/sem_unlink.texi: Likewise.
19277         * doc/posix-functions/shm_open.texi: Likewise.
19278         * doc/posix-functions/shm_unlink.texi: Likewise.
19279         * doc/posix-functions/signgam.texi: Likewise.
19280         * doc/posix-functions/sigset.texi: Likewise.
19281         * doc/posix-functions/stpcpy.texi: Likewise.
19282         * doc/posix-functions/stpncpy.texi: Likewise.
19283         * doc/posix-functions/strerror.texi: Likewise.
19284         * doc/posix-functions/strtod.texi: Likewise.
19285         * doc/posix-functions/symlinkat.texi: Likewise.
19286         * doc/posix-functions/unlinkat.texi: Likewise.
19287         * doc/posix-functions/utimensat.texi: Likewise.
19288         * doc/glibc-functions/bindresvport.texi: Likewise.
19289         * doc/glibc-functions/dn_expand.texi: Likewise.
19290         * doc/glibc-functions/exp10.texi: Likewise.
19291         * doc/glibc-functions/exp10f.texi: Likewise.
19292         * doc/glibc-functions/fgetxattr.texi: Likewise.
19293         * doc/glibc-functions/flistxattr.texi: Likewise.
19294         * doc/glibc-functions/fopencookie.texi: Likewise.
19295         * doc/glibc-functions/freeifaddrs.texi: Likewise.
19296         * doc/glibc-functions/fremovexattr.texi: Likewise.
19297         * doc/glibc-functions/fsetxattr.texi: Likewise.
19298         * doc/glibc-functions/getifaddrs.texi: Likewise.
19299         * doc/glibc-functions/getxattr.texi: Likewise.
19300         * doc/glibc-functions/lgetxattr.texi: Likewise.
19301         * doc/glibc-functions/listxattr.texi: Likewise.
19302         * doc/glibc-functions/llistxattr.texi: Likewise.
19303         * doc/glibc-functions/lremovexattr.texi: Likewise.
19304         * doc/glibc-functions/lsetxattr.texi: Likewise.
19305         * doc/glibc-functions/pow10.texi: Likewise.
19306         * doc/glibc-functions/pow10f.texi: Likewise.
19307         * doc/glibc-functions/rcmd_af.texi: Likewise.
19308         * doc/glibc-functions/removexattr.texi: Likewise.
19309         * doc/glibc-functions/res_init.texi: Likewise.
19310         * doc/glibc-functions/res_mkquery.texi: Likewise.
19311         * doc/glibc-functions/res_query.texi: Likewise.
19312         * doc/glibc-functions/res_querydomain.texi: Likewise.
19313         * doc/glibc-functions/res_send.texi: Likewise.
19314         * doc/glibc-functions/rresvport_af.texi: Likewise.
19315         * doc/glibc-functions/setxattr.texi: Likewise.
19316         * doc/glibc-functions/strcasestr.texi: Likewise.
19317
19318 2008-12-15  Bruno Haible  <bruno@clisp.org>
19319
19320         Fix compilation error on OSF/1 4.0.
19321         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
19322         <sys/time.h>, simply delegate to the system header.
19323         Reported by Daniel Richard G. <oss@teragram.com>.
19324
19325 2008-12-15  Bruno Haible  <bruno@clisp.org>
19326
19327         * doc/posix-functions/openat.texi: Mention the 'openat' module.
19328         * doc/posix-functions/fchmodat.texi: Likewise.
19329         * doc/posix-functions/fchownat.texi: Likewise.
19330         * doc/posix-functions/fdopendir.texi: Likewise.
19331         * doc/posix-functions/fstatat.texi: Likewise.
19332         * doc/posix-functions/mkdirat.texi: Likewise.
19333         * doc/posix-functions/unlinkat.texi: Likewise.
19334
19335 2008-12-14  Bruno Haible  <bruno@clisp.org>
19336
19337         Update doc for POSIX:2008.
19338         * doc/posix-functions/faccessat.texi: New file.
19339         * doc/posix-functions/fchmodat.texi: New file.
19340         * doc/posix-functions/fchownat.texi: New file.
19341         * doc/posix-functions/fdopendir.texi: New file.
19342         * doc/posix-functions/fstatat.texi: New file.
19343         * doc/posix-functions/futimens.texi: New file.
19344         * doc/posix-functions/linkat.texi: New file.
19345         * doc/posix-functions/mkdirat.texi: New file.
19346         * doc/posix-functions/mkfifoat.texi: New file.
19347         * doc/posix-functions/mknodat.texi: New file.
19348         * doc/posix-functions/open_wmemstream.texi: New file.
19349         * doc/posix-functions/openat.texi: New file.
19350         * doc/posix-functions/psiginfo.texi: New file.
19351         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
19352         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
19353         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
19354         * doc/posix-functions/readlinkat.texi: New file.
19355         * doc/posix-functions/renameat.texi: New file.
19356         * doc/posix-functions/strerror_l.texi: New file.
19357         * doc/posix-functions/symlinkat.texi: New file.
19358         * doc/posix-functions/unlinkat.texi: New file.
19359         * doc/posix-functions/utimensat.texi: New file.
19360         * doc/gnulib.texi (Function Substitutes): Add these subsections.
19361
19362 2008-12-14  Bruno Haible  <bruno@clisp.org>
19363
19364         Update doc for POSIX:2008.
19365         * doc/posix-functions/alphasort.texi: Renamed from
19366         doc/glibc-functions/alphasort.texi.
19367         * doc/posix-functions/dirfd.texi: Renamed from
19368         doc/glibc-functions/dirfd.texi.
19369         * doc/posix-functions/dprintf.texi: Renamed from
19370         doc/glibc-functions/dprintf.texi.
19371         * doc/posix-functions/duplocale.texi: Renamed from
19372         doc/glibc-functions/duplocale.texi.
19373         * doc/posix-functions/fexecve.texi: Renamed from
19374         doc/glibc-functions/fexecve.texi.
19375         * doc/posix-functions/fmemopen.texi: Renamed from
19376         doc/glibc-functions/fmemopen.texi.
19377         * doc/posix-functions/freelocale.texi: Renamed from
19378         doc/glibc-functions/freelocale.texi.
19379         * doc/posix-functions/getdate_err.texi: Renamed from
19380         doc/glibc-functions/getdate_err.texi.
19381         * doc/posix-functions/isalnum_l.texi: Renamed from
19382         doc/glibc-functions/isalnum_l.texi.
19383         * doc/posix-functions/isalpha_l.texi: Renamed from
19384         doc/glibc-functions/isalpha_l.texi.
19385         * doc/posix-functions/isblank_l.texi: Renamed from
19386         doc/glibc-functions/isblank_l.texi.
19387         * doc/posix-functions/iscntrl_l.texi: Renamed from
19388         doc/glibc-functions/iscntrl_l.texi.
19389         * doc/posix-functions/isdigit_l.texi: Renamed from
19390         doc/glibc-functions/isdigit_l.texi.
19391         * doc/posix-functions/isgraph_l.texi: Renamed from
19392         doc/glibc-functions/isgraph_l.texi.
19393         * doc/posix-functions/islower_l.texi: Renamed from
19394         doc/glibc-functions/islower_l.texi.
19395         * doc/posix-functions/isprint_l.texi: Renamed from
19396         doc/glibc-functions/isprint_l.texi.
19397         * doc/posix-functions/ispunct_l.texi: Renamed from
19398         doc/glibc-functions/ispunct_l.texi.
19399         * doc/posix-functions/isspace_l.texi: Renamed from
19400         doc/glibc-functions/isspace_l.texi.
19401         * doc/posix-functions/isupper_l.texi: Renamed from
19402         doc/glibc-functions/isupper_l.texi.
19403         * doc/posix-functions/iswalnum_l.texi: Renamed from
19404         doc/glibc-functions/iswalnum_l.texi.
19405         * doc/posix-functions/iswalpha_l.texi: Renamed from
19406         doc/glibc-functions/iswalpha_l.texi.
19407         * doc/posix-functions/iswblank_l.texi: Renamed from
19408         doc/glibc-functions/iswblank_l.texi.
19409         * doc/posix-functions/iswcntrl_l.texi: Renamed from
19410         doc/glibc-functions/iswcntrl_l.texi.
19411         * doc/posix-functions/iswctype_l.texi: Renamed from
19412         doc/glibc-functions/iswctype_l.texi.
19413         * doc/posix-functions/iswdigit_l.texi: Renamed from
19414         doc/glibc-functions/iswdigit_l.texi.
19415         * doc/posix-functions/iswgraph_l.texi: Renamed from
19416         doc/glibc-functions/iswgraph_l.texi.
19417         * doc/posix-functions/iswlower_l.texi: Renamed from
19418         doc/glibc-functions/iswlower_l.texi.
19419         * doc/posix-functions/iswprint_l.texi: Renamed from
19420         doc/glibc-functions/iswprint_l.texi.
19421         * doc/posix-functions/iswpunct_l.texi: Renamed from
19422         doc/glibc-functions/iswpunct_l.texi.
19423         * doc/posix-functions/iswspace_l.texi: Renamed from
19424         doc/glibc-functions/iswspace_l.texi.
19425         * doc/posix-functions/iswupper_l.texi: Renamed from
19426         doc/glibc-functions/iswupper_l.texi.
19427         * doc/posix-functions/iswxdigit_l.texi: Renamed from
19428         doc/glibc-functions/iswxdigit_l.texi.
19429         * doc/posix-functions/isxdigit_l.texi: Renamed from
19430         doc/glibc-functions/isxdigit_l.texi.
19431         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
19432         doc/glibc-functions/mbsnrtowcs.texi.
19433         * doc/posix-functions/mkdtemp.texi: Renamed from
19434         doc/glibc-functions/mkdtemp.texi.
19435         * doc/posix-functions/newlocale.texi: Renamed from
19436         doc/glibc-functions/newlocale.texi.
19437         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
19438         doc/glibc-functions/nl_langinfo_l.texi.
19439         * doc/posix-functions/open_memstream.texi: Renamed from
19440         doc/glibc-functions/open_memstream.texi.
19441         * doc/posix-functions/opterr.texi: Renamed from
19442         doc/glibc-functions/opterr.texi.
19443         * doc/posix-functions/optind.texi: Renamed from
19444         doc/glibc-functions/optind.texi.
19445         * doc/posix-functions/optopt.texi: Renamed from
19446         doc/glibc-functions/optopt.texi.
19447         * doc/posix-functions/psignal.texi: Renamed from
19448         doc/glibc-functions/psignal.texi.
19449         * doc/posix-functions/scandir.texi: Renamed from
19450         doc/glibc-functions/scandir.texi.
19451         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
19452         doc/glibc-functions/sched_get_priority_min.texi.
19453         * doc/posix-functions/signgam.texi: Renamed from
19454         doc/glibc-functions/signgam.texi.
19455         * doc/posix-functions/stpcpy.texi: Renamed from
19456         doc/glibc-functions/stpcpy.texi.
19457         * doc/posix-functions/stpncpy.texi: Renamed from
19458         doc/glibc-functions/stpncpy.texi.
19459         * doc/posix-functions/strcasecmp_l.texi: Renamed from
19460         doc/glibc-functions/strcasecmp_l.texi.
19461         * doc/posix-functions/strcoll_l.texi: Renamed from
19462         doc/glibc-functions/strcoll_l.texi.
19463         * doc/posix-functions/strfmon_l.texi: Renamed from
19464         doc/glibc-functions/strfmon_l.texi.
19465         * doc/posix-functions/strftime_l.texi: Renamed from
19466         doc/glibc-functions/strftime_l.texi.
19467         * doc/posix-functions/strncasecmp_l.texi: Renamed from
19468         doc/glibc-functions/strncasecmp_l.texi.
19469         * doc/posix-functions/strndup.texi: Renamed from
19470         doc/glibc-functions/strndup.texi.
19471         * doc/posix-functions/strnlen.texi: Renamed from
19472         doc/glibc-functions/strnlen.texi.
19473         * doc/posix-functions/strsignal.texi: Renamed from
19474         doc/glibc-functions/strsignal.texi.
19475         * doc/posix-functions/strxfrm_l.texi: Renamed from
19476         doc/glibc-functions/strxfrm_l.texi.
19477         * doc/posix-functions/timer_gettime.texi: Renamed from
19478         doc/glibc-functions/timer_gettime.texi.
19479         * doc/posix-functions/tolower_l.texi: Renamed from
19480         doc/glibc-functions/tolower_l.texi.
19481         * doc/posix-functions/toupper_l.texi: Renamed from
19482         doc/glibc-functions/toupper_l.texi.
19483         * doc/posix-functions/towctrans_l.texi: Renamed from
19484         doc/glibc-functions/towctrans_l.texi.
19485         * doc/posix-functions/towlower_l.texi: Renamed from
19486         doc/glibc-functions/towlower_l.texi.
19487         * doc/posix-functions/towupper_l.texi: Renamed from
19488         doc/glibc-functions/towupper_l.texi.
19489         * doc/posix-functions/uselocale.texi: Renamed from
19490         doc/glibc-functions/uselocale.texi.
19491         * doc/posix-functions/vdprintf.texi: Renamed from
19492         doc/glibc-functions/vdprintf.texi.
19493         * doc/posix-functions/wcpcpy.texi:
19494         Renamed from doc/glibc-functions/wcpcpy.texi.
19495         * doc/posix-functions/wcpncpy.texi: Renamed from
19496         doc/glibc-functions/wcpncpy.texi.
19497         * doc/posix-functions/wcscasecmp.texi: Renamed from
19498         doc/glibc-functions/wcscasecmp.texi.
19499         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
19500         doc/glibc-functions/wcscasecmp_l.texi.
19501         * doc/posix-functions/wcscoll_l.texi: Renamed from
19502         doc/glibc-functions/wcscoll_l.texi.
19503         * doc/posix-functions/wcsdup.texi: Renamed from
19504         doc/glibc-functions/wcsdup.texi.
19505         * doc/posix-functions/wcsncasecmp.texi: Renamed from
19506         doc/glibc-functions/wcsncasecmp.texi.
19507         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
19508         doc/glibc-functions/wcsncasecmp_l.texi.
19509         * doc/posix-functions/wcsnlen.texi: Renamed from
19510         doc/glibc-functions/wcsnlen.texi.
19511         * doc/posix-functions/wcsnrtombs.texi: Renamed from
19512         doc/glibc-functions/wcsnrtombs.texi.
19513         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
19514         doc/glibc-functions/wcsxfrm_l.texi.
19515         * doc/posix-functions/wctrans_l.texi: Renamed from
19516         doc/glibc-functions/wctrans_l.texi.
19517         * doc/posix-functions/wctype_l.texi: Renamed from
19518         doc/glibc-functions/wctype_l.texi.
19519         * doc/gnulib.texi (Function Substitutes): Add these subsections.
19520         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
19521         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
19522         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
19523         these subsections.
19524         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
19525         Remove sections.
19526
19527 2008-12-14  Bruno Haible  <bruno@clisp.org>
19528
19529         Update doc for POSIX:2008.
19530         * doc/posix-functions/*.texi: Update URL of POSIX specification.
19531
19532 2008-12-14  Bruno Haible  <bruno@clisp.org>
19533
19534         Update doc for POSIX:2008.
19535         * doc/pastposix-functions/bcmp.texi: Renamed from
19536         doc/posix-functions/bcmp.texi.
19537         * doc/pastposix-functions/bcopy.texi: Renamed from
19538         doc/posix-functions/bcopy.texi.
19539         * doc/pastposix-functions/bsd_signal.texi: Renamed from
19540         doc/posix-functions/bsd_signal.texi.
19541         * doc/pastposix-functions/bzero.texi: Renamed from
19542         doc/posix-functions/bzero.texi.
19543         * doc/pastposix-functions/ecvt.texi: Renamed from
19544         doc/posix-functions/ecvt.texi.
19545         * doc/pastposix-functions/fcvt.texi: Renamed from
19546         doc/posix-functions/fcvt.texi.
19547         * doc/pastposix-functions/ftime.texi: Renamed from
19548         doc/posix-functions/ftime.texi.
19549         * doc/pastposix-functions/gcvt.texi: Renamed from
19550         doc/posix-functions/gcvt.texi.
19551         * doc/pastposix-functions/getcontext.texi: Renamed from
19552         doc/posix-functions/getcontext.texi.
19553         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
19554         doc/posix-functions/gethostbyaddr.texi.
19555         * doc/pastposix-functions/gethostbyname.texi: Renamed from
19556         doc/posix-functions/gethostbyname.texi.
19557         * doc/pastposix-functions/getwd.texi: Renamed from
19558         doc/posix-functions/getwd.texi.
19559         * doc/pastposix-functions/h_errno.texi: Renamed from
19560         doc/posix-functions/h_errno.texi.
19561         * doc/pastposix-functions/index.texi: Renamed from
19562         doc/posix-functions/index.texi.
19563         * doc/pastposix-functions/makecontext.texi: Renamed from
19564         doc/posix-functions/makecontext.texi.
19565         * doc/pastposix-functions/mktemp.texi: Renamed from
19566         doc/posix-functions/mktemp.texi.
19567         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
19568         doc/posix-functions/pthread_attr_getstackaddr.texi.
19569         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
19570         doc/posix-functions/pthread_attr_setstackaddr.texi.
19571         * doc/pastposix-functions/rindex.texi: Renamed from
19572         doc/posix-functions/rindex.texi.
19573         * doc/pastposix-functions/scalb.texi: Renamed from
19574         doc/posix-functions/scalb.texi.
19575         * doc/pastposix-functions/setcontext.texi: Renamed from
19576         doc/posix-functions/setcontext.texi.
19577         * doc/pastposix-functions/swapcontext.texi: Renamed from
19578         doc/posix-functions/swapcontext.texi.
19579         * doc/pastposix-functions/ualarm.texi: Renamed from
19580         doc/posix-functions/ualarm.texi.
19581         * doc/pastposix-functions/usleep.texi: Renamed from
19582         doc/posix-functions/usleep.texi.
19583         * doc/pastposix-functions/vfork.texi: Renamed from
19584         doc/posix-functions/vfork.texi.
19585         * doc/pastposix-functions/wcswcs.texi: Renamed from
19586         doc/posix-functions/wcswcs.texi.
19587         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
19588         (Function Substitutes): Update.
19589
19590 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19591
19592         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
19593         m4/strerror.m4.
19594
19595 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19596             Bruno Haible  <bruno@clisp.org>
19597
19598         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
19599
19600 2008-12-13  Bruno Haible  <bruno@clisp.org>
19601
19602         * modules/strtoull (Depends-on): Remove unistd.
19603
19604 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19605
19606         * modules/strtoull (Depends-on): Add stdlib.
19607
19608 2008-12-11  Simon Josefsson  <simon@josefsson.org>
19609
19610         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
19611
19612 2008-12-10  Jim Meyering  <meyering@redhat.com>
19613
19614         gl_ASSERT: don't say assertions are disabled when they're not
19615         * m4/assert.m4 (gl_ASSERT): Do not make configure report
19616         "checking whether to enable assertions... no", when they are in
19617         fact enabled.  This is solely a bug in the output of configure.
19618         In spite of saying "no", NDEBUG was not defined in that case.
19619         Also, as noted by Eric Blake, leave assertions enabled upon
19620         --enable-assert=INVALID.
19621
19622 2008-12-10  Bruno Haible  <bruno@clisp.org>
19623
19624         Change MODULES.html to refer to POSIX:2008 where possible.
19625         * MODULES.html.sh (POSIX2008_URL): New variable.
19626         (posix_headers): Remove sys/timeb, ucontext.
19627         (posix2001_headers): New variable.
19628         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
19629         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
19630         index, makecontext, mktemp, pthread_attr_getstackaddr,
19631         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
19632         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
19633         (posix2001_functions): New variable.
19634         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
19635         otherwise.
19636
19637 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19638
19639         add missing include to parse-duration.c
19640         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
19641         * modules/parse-duration (Depends-on): Add xalloc.
19642
19643         fix sed script reading maint.mk
19644         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
19645         (syntax-check-rules): Use it.
19646
19647 2008-12-09  Bruno Haible  <bruno@clisp.org>
19648
19649         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
19650         MacOS X 10.4/PowerPC.
19651         Reported by Simon Josefsson.
19652
19653 2008-12-08  Jim Meyering  <meyering@redhat.com>
19654
19655         work around mingw's lack of some S_IF definitions
19656         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
19657         Reported by Simon Josefsson.
19658
19659 2008-12-08  Bruno Haible  <bruno@clisp.org>
19660
19661         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
19662         applied to variables. Needed on MacOS X 10.4/PowerPC.
19663         Reported by Simon Josefsson.
19664
19665 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
19666         and Eric Blake  <ebb9@byu.net>
19667
19668         assert: honor --enable-assert
19669         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
19670         order to honor --enable-assert, rather than treating it as a
19671         synonym for --disable-assert.
19672
19673 2008-12-08  Jim Meyering  <meyering@redhat.com>
19674
19675         * lib/posixtm.c: Remove now-useless declaration of mktime.
19676
19677         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
19678
19679 2008-12-07  Bruno Haible  <bruno@clisp.org>
19680
19681         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
19682         test_once): Mark functions as static.
19683         * tests/test-tls.c (test_tls): Likewise.
19684
19685 2008-12-07  Bruno Haible  <bruno@clisp.org>
19686
19687         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
19688         iconv_register_autodetect.
19689
19690 2008-12-07  Jim Meyering  <meyering@redhat.com>
19691
19692         posixtm.c: avoid a warning
19693         * lib/posixtm.c (posixtime): Don't initialize tm0.
19694         It's no longer needed to placate gcc4's -Wuninitialized,
19695         and the attempt to placate would elicit a new warning.
19696
19697         unicodeio.c: mark unused parameters
19698         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19699         (fallback_failure_callback): Likewise.
19700
19701 2008-12-07  Bruno Haible  <bruno@clisp.org>
19702
19703         * gnulib-tool (func_create_testdir): When building the tests
19704         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
19705         Reported by Simon Josefsson.
19706
19707 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19708
19709         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
19710
19711 2008-12-06  Bruno Haible  <bruno@clisp.org>
19712
19713         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
19714         Suggested by Eric Blake.
19715
19716 2008-12-06  Bruno Haible  <bruno@clisp.org>
19717
19718         Fix a c-stack test failure on MacOS X.
19719         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
19720         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
19721         handler for SIGBUS as well.
19722         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
19723         install a signal handler for SIGBUS as well.
19724         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
19725
19726 2008-12-06  Bruno Haible  <bruno@clisp.org>
19727
19728         Advocacy documentation.
19729         * doc/gnulib-intro.texi (Benefits): New section.
19730         * doc/gnulib.texi: Update.
19731
19732 2008-12-06  Bruno Haible  <bruno@clisp.org>
19733
19734         Document the 'manywarnings' module.
19735         * doc/manywarnings.texi: New file.
19736         * doc/gnulib.texi: Include it.
19737
19738 2008-12-05  Eric Blake  <ebb9@byu.net>
19739
19740         tests: silence some gcc warnings
19741         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
19742         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
19743         type mismatches.
19744
19745 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19746             Bruno Haible  <bruno@clisp.org>
19747
19748         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
19749
19750 2008-11-29  Jim Meyering  <meyering@redhat.com>
19751
19752         unicodeio.c: mark unused parameters
19753         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19754         (fallback_failure_callback): Likewise.
19755
19756         fts: fix a thinko
19757         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
19758         (set_stat_type): Return S_IF*-valued "type" directly.
19759         Prompted by James Youngman's spotting a related bug.
19760         Confirmed by further testing through find.
19761
19762         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
19763         * lib/fts.c (D_TYPE): Define.
19764         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
19765         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
19766         (s_ifmt_shift_bits): New function.
19767         (set_stat_type): New function.
19768         (fts_build): When not calling fts_stat, call set_stat_type
19769         to propagate dirent.d_type info to fts_read caller.
19770         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
19771         fts_statp->st_mode type information may be valid.
19772
19773 2008-11-28  Simon Josefsson  <simon@josefsson.org>
19774
19775         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
19776         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
19777         <sds@gnu.org>.
19778
19779 2008-11-20  Bruno Haible  <bruno@clisp.org>
19780
19781         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
19782         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
19783         INCLUDE_NEXT.
19784         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
19785         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
19786         * modules/math (Makefile.am): Substitute
19787         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
19788         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19789
19790 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
19791             Bruno Haible  <bruno@clisp.org>
19792
19793         * lib/stdint.in.h: Define all type macros so that their expansion is
19794         a single typedef'ed token. Fixes a compilation failure in Boost which
19795         does "using ::int8_t;".
19796
19797 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19798
19799         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
19800         gl_MANYWARN_ALL_GCC.
19801         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
19802         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
19803         * modules/manywarnings: New file.
19804         * MODULES.html.sh: Mention manywarnings module.
19805
19806 2008-11-18  Bruno Haible  <bruno@clisp.org>
19807
19808         * doc/gnulib-tool.texi (Unit tests): New section.
19809
19810 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19811
19812         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
19813         paths like 'lib/po/foo.po'.
19814
19815 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19816
19817         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
19818         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
19819
19820 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19821
19822         * m4/warnings.m4: Use CPPFLAGS to really check whether the
19823         parameter works.
19824
19825 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19826
19827         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
19828
19829 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19830
19831         * modules/parse-duration-tests: New file.
19832         * tests/test-parse-duration.sh: New file.
19833         * tests/test-parse-duration.c: New file.
19834
19835         New module 'parse-duration'.
19836         * lib/parse-duration.h: New file.
19837         * lib/parse-duration.c: New file.
19838         * modules/parse-duration: New file.
19839
19840 2008-11-17  Bruno Haible  <bruno@clisp.org>
19841
19842         * tests/test-select-out.sh: Comment out the first pipe test.
19843         Reported by Simon Josefsson.
19844
19845 2008-11-17  Bruno Haible  <bruno@clisp.org>
19846
19847         * modules/getaddrinfo (Depends-on): Add servent, hostent.
19848         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
19849         gl_HOSTENT.
19850
19851 2008-11-17  Bruno Haible  <bruno@clisp.org>
19852
19853         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
19854         -lnetwork and -lnet. Needed for Haiku and BeOS.
19855
19856 2008-11-16  Bruno Haible  <bruno@clisp.org>
19857
19858         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
19859
19860 2008-11-16  Bruno Haible  <bruno@clisp.org>
19861
19862         Avoid test failure on Haiku.
19863         * tests/test-fsync.c: Include <errno.h>.
19864         (main): Don't require that fsync (0) fails.
19865
19866 2008-11-15  Bruno Haible  <bruno@clisp.org>
19867
19868         New module 'hostent'.
19869         * modules/hostent: New file.
19870         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
19871
19872 2008-11-15  Bruno Haible  <bruno@clisp.org>
19873
19874         New module 'servent'.
19875         * modules/servent: New file.
19876         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
19877
19878 2008-11-15  Bruno Haible  <bruno@clisp.org>
19879
19880         Avoid generating same test program with two different rules.
19881         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
19882         test-frexp to test-frexp-nolibm.
19883         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
19884         test-frexpl to test-frexpl-nolibm.
19885
19886 2008-11-15  Bruno Haible  <bruno@clisp.org>
19887
19888         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
19889         $(FREXPL_LIBM).
19890
19891 2008-11-15  Bruno Haible  <bruno@clisp.org>
19892
19893         * lib/netdb.in.h: Activate the definitions also when the system's
19894         <netdb.h> has 'struct addrinfo'.
19895         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
19896         EAI_OVERFLOW or AI_NUMERICSERV.
19897         * doc/posix-headers/netdb.texi: Document the problem.
19898
19899 2008-11-15  Bruno Haible  <bruno@clisp.org>
19900
19901         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
19902
19903         Make the 'sched' module work on platforms where <sched.h> exists but
19904         is incomplete (such as Haiku).
19905         * lib/sched.in.h; Include the system's <sched.h> if it exists.
19906         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
19907         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
19908         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
19909         HAVE_STRUCT_SCHED_PARAM.
19910         * modules/sched (Depends-on): Add include_next.
19911         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
19912         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
19913         * doc/posix-headers/sched.texi: Document the issue.
19914
19915 2008-11-13  Jim Meyering  <meyering@redhat.com>
19916
19917         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
19918         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
19919         test would fail due to the difference in the Report bugs to ...
19920         line.  The expected address is empty, "<>", while the actual
19921         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
19922
19923 2008-11-12  Bruno Haible  <bruno@clisp.org>
19924
19925         lstat: don't compile lstat.c on systems lacking lstat
19926         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
19927         which don't have lstat; this is handled by lib/sys_stat.in.h already.
19928         Reported by Daniel P. Berrange via Jim Meyering.
19929
19930 2008-11-12  Jim Meyering  <meyering@redhat.com>
19931
19932         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
19933
19934 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19935
19936         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
19937         instead.
19938
19939 2008-11-12  Bruno Haible  <bruno@clisp.org>
19940
19941         * lib/unicodeio.c: Include unistr.h.
19942         (utf8_wctomb): Remove function.
19943         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
19944
19945 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19946
19947         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
19948         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
19949         <bruno@clisp.org>.
19950         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
19951
19952 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19953
19954         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
19955         * doc/gnulib.texi: Add section for warnings.
19956
19957 2008-11-11  Bruno Haible  <bruno@clisp.org>
19958
19959         * lib/sockets.h: Add a comment.
19960
19961 2008-11-11  Karl Berry  <karl@gnu.org>
19962
19963         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
19964
19965 2008-11-11  Eric Blake  <ebb9@byu.net>
19966
19967         fdl.texi: avoid git symlinks
19968         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
19969
19970 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19971
19972         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
19973
19974 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19975
19976         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
19977         (gl_WARN_ADD): Substitute $2 if literal.
19978
19979 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19980
19981         * m4/warning.m4: Remove.
19982
19983 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19984
19985         * m4/warnings.m4: Almost complete rewrite. :-)
19986
19987 2008-11-10  Simon Josefsson  <simon@josefsson.org>
19988
19989         * modules/warnings: New module.
19990         * m4/warnings.m4: New file.
19991         * MODULES.html.sh: Mention warnings module.
19992         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
19993         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19994
19995 2008-11-10  Eric Blake  <ebb9@byu.net>
19996
19997         fdl.texi: make a symlink to the latest version
19998         * doc/standards.texi: Revert today's earlier change.
19999         * doc/fdl-1.2.texi: Rename from old fdl.texi...
20000         * doc/fdl.texi: ...and replace this with a symlink to the newer
20001         fdl-1.3.texi.
20002
20003 2008-11-10  Bruno Haible  <bruno@clisp.org>
20004
20005         * tests/test-select-fd.c (main): Accept the result file name as fourth
20006         argument.
20007         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
20008         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
20009
20010 2008-11-10  Bruno Haible  <bruno@clisp.org>
20011
20012         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
20013         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
20014         as autoconf-substituted macros.
20015         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
20016         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
20017         gl_NETDB_H_DEFAULTS. Set these variables.
20018         * modules/netdb (Makefile.am): Substitute these variables.
20019
20020 2008-11-10  Eric Blake  <ebb9@byu.net>
20021
20022         standards.texi: include correct file for FDL 1.3
20023         * doc/standards.texi (GNU Free Documentation License): Change
20024         include file to pull in FDL 1.3, not 1.2.
20025
20026         fdl.texi: revert accidental change to license
20027         * doc/fdl.texi: This is FDL 1.2, not 1.3.
20028
20029 2008-11-10  Bruno Haible  <bruno@clisp.org>
20030
20031         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
20032         cross-compiling guesses also when the native compile gives no result.
20033
20034 2008-11-10  Bruno Haible  <bruno@clisp.org>
20035
20036         * lib/spawni.c (__spawni): Force variable into the stack.
20037
20038 2008-11-10  Bruno Haible  <bruno@clisp.org>
20039
20040         Add support for Haiku.
20041         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
20042         glibc and BeOS, but also on Haiku.
20043         * lib/fpurge.c (fpurge): Likewise.
20044         * lib/freadable.c (freadable): Likewise.
20045         * lib/freadahead.c (freadahead): Likewise.
20046         * lib/freading.c (freading): Likewise.
20047         * lib/freadptr.c (freadptr): Likewise.
20048         * lib/freadseek.c (freadptrinc): Likewise.
20049         * lib/fseeko.c (rpl_fseeko): Likewise.
20050         * lib/fseterr.c (fseterr): Likewise.
20051         * lib/fwritable.c (fwritable): Likewise.
20052         * lib/fwriting.c (fwriting): Likewise.
20053         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
20054
20055 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20056
20057         * lib/config.charset: Treat Haiku like BeOS.
20058
20059 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20060
20061         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
20062         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
20063
20064 2008-11-08  Bruno Haible  <bruno@clisp.org>
20065
20066         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
20067         AC_CACHE_CHECK.
20068
20069 2008-11-08  Bruno Haible  <bruno@clisp.org>
20070
20071         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
20072
20073 2008-11-08  Bruno Haible  <bruno@clisp.org>
20074
20075         * tests/test-select-fd.c: New file.
20076         * tests/test-select-in.sh: New file.
20077         * tests/test-select-out.sh: New file.
20078         * tests/test-select-stdin.c: New file.
20079         * modules/select-tests (Files): Add the new files.
20080         (Depends-on): Add gettimeofday.
20081         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
20082         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
20083         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
20084
20085 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
20086             Bruno Haible  <bruno@clisp.org>
20087
20088         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
20089
20090 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
20091
20092         * build-aux/pmccabe2html: Added support for C++ source files.
20093
20094 2008-11-05  Ben Pfaff  <blp@gnu.org>
20095
20096         Fix lib/close.c build on Windows.
20097         * modules/close (Files): Add lib/w32sock.h.
20098
20099 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
20100
20101         Accept Bison's NEWS format.
20102         * build-aux/announce-gen (print_news_deltas): Tweak
20103         $re_prefix.
20104
20105 2008-11-04  Bruno Haible  <bruno@clisp.org>
20106
20107         * modules/random_r (Maintainer): Add glibc.
20108
20109 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20110
20111         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
20112         by karl@freefriends.org (Karl Berry).
20113         * doc/alloca.texi: Likewise.
20114         * doc/c-ctype.texi: Likewise.
20115         * doc/c-strcase.texi: Likewise.
20116         * doc/c-strcaseeq.texi: Likewise.
20117         * doc/c-strcasestr.texi: Likewise.
20118         * doc/c-strstr.texi: Likewise.
20119         * doc/c-strtod.texi: Likewise.
20120         * doc/c-strtold.texi: Likewise.
20121         * doc/ctime.texi: Likewise.
20122         * doc/error.texi: Likewise.
20123         * doc/fdl.texi: Likewise.
20124         * doc/gcd.texi: Likewise.
20125         * doc/getdate.texi: Likewise.
20126         * doc/gnulib-intro.texi: Likewise.
20127         * doc/gnulib-tool.texi: Likewise.
20128         * doc/gnulib.texi: Likewise.
20129         * doc/inet_ntoa.texi: Likewise.
20130         * doc/maintain.texi: Likewise.
20131         * doc/make-stds.texi: Likewise.
20132         * doc/quote.texi: Likewise.
20133         * doc/regexprops-generic.texi: Likewise.
20134         * doc/standards.texi: Likewise.
20135         * doc/verify.texi: Likewise.
20136         * doc/visibility.texi: Likewise.
20137         * doc/gnulib.texi (GNU Free Documentation License): Include
20138         fdl-1.3.texi instead of fdl.texi.
20139
20140 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20141
20142         * doc/fdl-1.3.texi: New file, from
20143         <http://www.gnu.org/licenses/fdl-1.3.texi>.
20144         * modules/fdl-1.3: Add.
20145         * MODULES.html.sh: Add fdl-1.3.
20146
20147 2008-11-03  Bruno Haible  <bruno@clisp.org>
20148
20149         Make determination of absolute name of header file work with AIX xlc.
20150         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
20151         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
20152         preprocessing.
20153         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20154         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
20155
20156 2008-11-03  Simon Josefsson  <simon@josefsson.org>
20157
20158         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
20159         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
20160         <ludo@gnu.org>.
20161
20162 2008-11-02  Bruno Haible  <bruno@clisp.org>
20163
20164         Mark 'strpbrk' obsolete.
20165         * modules/strpbrk (Status, Notice): New sections.
20166         * modules/strtok_r (Depends-on): Add strpbrk.
20167
20168 2008-11-02  Bruno Haible  <bruno@clisp.org>
20169
20170         Mark 'strdup' obsolete.
20171         * modules/strdup (Status, Notice): New sections.
20172         * modules/findprog (Depends-on): Add strdup.
20173         * modules/getaddrinfo (Depends-on): Likewise.
20174         * modules/localename (Depends-on): Likewise.
20175         * modules/relocatable-lib (Depends-on): Likewise.
20176         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
20177         * modules/relocatable-prog (Depends-on): Likewise.
20178         * modules/trim (Depends-on): Likewise.
20179         * modules/unictype/gen-ctype (Depends-on): Likewise.
20180         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20181
20182 2008-11-02  Bruno Haible  <bruno@clisp.org>
20183
20184         Mark 'strcspn' obsolete.
20185         * modules/strcspn (Status, Notice): New sections.
20186
20187 2008-11-02  Bruno Haible  <bruno@clisp.org>
20188
20189         Mark 'rmdir' obsolete.
20190         * modules/rmdir (Status, Notice): New sections.
20191         * modules/clean-temp (Depends-on): Add rmdir.
20192         * modules/openat (Depends-on): Likewise.
20193
20194 2008-11-02  Bruno Haible  <bruno@clisp.org>
20195
20196         Mark 'raise' obsolete.
20197         * modules/raise (Status, Notice): New sections.
20198         (Include): Specify <signal.h>.
20199         * modules/stdio (Depends-on): Add raise.
20200         * modules/write (Depends-on): Likewise.
20201
20202 2008-11-02  Bruno Haible  <bruno@clisp.org>
20203
20204         Mark 'memset' obsolete.
20205         * modules/memset (Status, Notice): New sections.
20206
20207 2008-11-02  Bruno Haible  <bruno@clisp.org>
20208
20209         Mark 'memmove' obsolete.
20210         * modules/memmove (Status, Notice): New sections.
20211         * modules/argp (Depends-on): Add memmove.
20212         * modules/argz (Depends-on): Likewise.
20213         * modules/canonicalize (Depends-on): Likewise.
20214         * modules/canonicalize-lgpl (Depends-on): Likewise.
20215         * modules/fts (Depends-on): Likewise.
20216         * modules/getcwd (Depends-on): Likewise.
20217         * modules/human (Depends-on): Likewise.
20218         * modules/regex (Depends-on): Likewise.
20219         * modules/striconveh (Depends-on): Likewise.
20220         * modules/trim (Depends-on): Likewise.
20221         * modules/unistr/u8-move (Depends-on): Likewise.
20222         * modules/unistr/u16-move (Depends-on): Likewise.
20223         * modules/unistr/u32-move (Depends-on): Likewise.
20224
20225 2008-11-02  Bruno Haible  <bruno@clisp.org>
20226
20227         Mark 'memcpy' obsolete.
20228         * modules/memcpy (Status, Notice): New sections.
20229
20230 2008-11-02  Bruno Haible  <bruno@clisp.org>
20231
20232         Mark 'memcmp' obsolete.
20233         * modules/memcmp (Status, Notice): New sections.
20234         * modules/argmatch (Depends-on): Add memchr.
20235         * modules/backupfile (Depends-on): Likewise.
20236         * modules/c-strcasestr (Depends-on): Likewise.
20237         * modules/crypto/des (Depends-on): Likewise.
20238         * modules/csharpcomp (Depends-on): Likewise.
20239         * modules/fnmatch (Depends-on): Likewise.
20240         * modules/git-merge-changelog (Depends-on): Likewise.
20241         * modules/isnand (Depends-on): Likewise.
20242         * modules/isnand-nolibm (Depends-on): Likewise.
20243         * modules/isnanf (Depends-on): Likewise.
20244         * modules/isnanf-nolibm (Depends-on): Likewise.
20245         * modules/isnanl (Depends-on): Likewise.
20246         * modules/isnanl-nolibm (Depends-on): Likewise.
20247         * modules/mbchar (Depends-on): Likewise.
20248         * modules/memcoll (Depends-on): Likewise.
20249         * modules/quotearg (Depends-on): Likewise.
20250         * modules/regex (Depends-on): Likewise.
20251         * modules/relocatable-prog (Depends-on): Likewise.
20252         * modules/same (Depends-on): Likewise.
20253         * modules/signbit (Depends-on): Likewise.
20254         * modules/strcasestr-simple (Depends-on): Likewise.
20255         * modules/unictype/gen-ctype (Depends-on): Likewise.
20256         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20257         * modules/uniname/uniname (Depends-on): Likewise.
20258         * modules/unistr/u8-cmp (Depends-on): Likewise.
20259
20260 2008-11-02  Bruno Haible  <bruno@clisp.org>
20261
20262         Mark 'memchr' obsolete.
20263         * modules/memchr (Status, Notice): New sections.
20264         * modules/argp (Depends-on): Add memchr.
20265         * modules/base64 (Depends-on): Likewise.
20266         * modules/c-strcasestr (Depends-on): Likewise.
20267         * modules/chdir-long (Depends-on): Likewise.
20268         * modules/fnmatch (Depends-on): Likewise.
20269         * modules/getsubopt (Depends-on): Likewise.
20270         * modules/git-merge-changelog (Depends-on): Likewise.
20271         * modules/glob (Depends-on): Likewise.
20272         * modules/strcasestr-simple (Depends-on): Likewise.
20273         * modules/strnlen (Depends-on): Likewise.
20274
20275 2008-11-02  Bruno Haible  <bruno@clisp.org>
20276
20277         Mark 'atexit' obsolete.
20278         * modules/atexit (Status, Notice): New sections.
20279         * modules/chdir-long (Depends-on): Add atexit.
20280         * modules/wait-process (Depends-on): Likewise.
20281
20282 2008-11-02  Bruno Haible  <bruno@clisp.org>
20283
20284         * gnulib-tool: New option --with-obsolete.
20285         (func_usage): Document it.
20286         (func_modules_transitive_closure): Drop obsolete dependencies if
20287         incobsolete is not true.
20288         (func_import): Read and save the incobsolete variable to the cache.
20289
20290 2008-11-02  Bruno Haible  <bruno@clisp.org>
20291
20292         * modules/TEMPLATE-EXTENDED: New field 'Status'.
20293         * gnulib-tool: New option --extract-status.
20294         (func_usage): Document it.
20295         (sed_extract_prog): Recognize it.
20296         (func_get_status): New function.
20297
20298 2008-10-30  Simon Josefsson  <simon@josefsson.org>
20299
20300         * modules/sockets (License): Change from LGPL to LGPLv2+.
20301
20302 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20303
20304         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
20305
20306 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20307
20308         * MODULES.html.sh (Support for systems lacking POSIX:2001):
20309         Mention times and sys_times.
20310         * modules/sys_times, modules/sys_times-tests: New modules.
20311         * modules/times, modules/times-tests: Likewise
20312         * m4/sys_times_h.m4: New file.
20313         * lib/sys_times.in.h: Likewise
20314         * lib/times.c: Likewise.
20315         * tests/test-sys_times.c: Likewise.
20316         * tests/test-times.c: Likewise.
20317         * doc/posix-headers/sys_times.texi: Update.
20318         * doc/posix-functions/times.texi: Update.
20319
20320 2008-10-28  Jim Meyering  <meyering@redhat.com>
20321
20322         * modules/tempname (Depends-on): Add lstat.
20323
20324         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
20325
20326 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20327
20328         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
20329         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
20330         using idiom used elsewhere in gnulib.
20331
20332 2008-10-27  Jim Meyering  <meyering@redhat.com>
20333
20334         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
20335
20336 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20337
20338         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
20339         TESTS_ENVIRONMENT, for shell scripts that needs to call built
20340         programs.
20341         * tests/test-argp-2.sh: Use $EXEEXT when needed.
20342
20343 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20344
20345         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
20346
20347 2008-10-27  Bruno Haible  <bruno@clisp.org>
20348
20349         * tests/test-lstat.c: Include <stdio.h>.
20350
20351 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20352
20353         * modules/lstat-tests: New module.
20354         * tests/test-lstat.c: New file.
20355
20356 2008-10-26  Jim Meyering  <meyering@redhat.com>
20357
20358         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
20359
20360 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20361             Bruno Haible  <bruno@clisp.org>
20362
20363         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
20364         * modules/configmake (Include): Add a note that the include must come
20365         after all system headers.
20366         * lib/javaversion.c: Include configmake.h after all other includes.
20367
20368 2008-10-26  Bruno Haible  <bruno@clisp.org>
20369
20370         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
20371         HAVE_STRUCT_RANDOM_DATA to 1.
20372         (gl_STDLIB_H): Simplify.
20373
20374 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20375
20376         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
20377         substitute HAVE_STRUCT_RANDOM_DATA.
20378         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
20379         random_data.
20380         * modules/stdlib (Makefile.am): Substitute
20381         HAVE_STRUCT_RANDOM_DATA.
20382
20383 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20384
20385         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
20386         * doc/gnulib-intro.texi (Copyright): Likewise.
20387
20388 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20389
20390         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
20391         findings.
20392
20393 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
20394             Bruno Haible  <bruno@clisp.org>
20395
20396         * lib/unistd.in.h: Include <winsock2.h>.
20397         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
20398         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
20399         Provide dummy declarations.
20400         (gethostname): Override.
20401         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
20402         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
20403         gl_PREREQ_SYS_H_WINSOCK2.
20404         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
20405         * doc/posix-functions/gethostname.texi: More details.
20406
20407 2008-10-25  Bruno Haible  <bruno@clisp.org>
20408
20409         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
20410         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
20411         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
20412
20413         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
20414         here ...
20415         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
20416         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
20417         gl_UNISTD_H_DEFAULTS.
20418
20419 2008-10-25  Eric Blake  <ebb9@byu.net>
20420
20421         signbit: avoid spurious compiler failure
20422         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
20423         declarations inside function.
20424
20425 2008-10-24  Simon Josefsson  <simon@josefsson.org>
20426             Bruno Haible  <bruno@clisp.org>
20427
20428         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
20429         * modules/random_r (Depends-on): Add stdint.
20430
20431 2008-10-24  Bruno Haible  <bruno@clisp.org>
20432
20433         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
20434         Eggert.
20435         * modules/strerror (License): Likewise.
20436
20437 2008-10-24  Jim Meyering  <meyering@redhat.com>
20438
20439         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
20440         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
20441
20442 2008-10-24  Eric Blake  <ebb9@byu.net>
20443
20444         getgroups: fix compilation when getgroups is available
20445         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
20446         but with <config.h> override of getgroups disabled.
20447
20448 2008-10-24  Simon Josefsson  <simon@josefsson.org>
20449
20450         * doc/gnulib.texi (Header files): Add note about C++ problems.
20451         Explained by Bruno Haible <bruno@clisp.org>.
20452
20453 2008-10-23  Bruno Haible  <bruno@clisp.org>
20454
20455         Define a dummy SA_NODEFER macro on Interix.
20456         * lib/signal.in.h (SA_NODEFER): Define fallback.
20457         Reported by Aleksey Cheusov <cheusov@tut.by> via
20458         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
20459
20460 2008-10-23  Bruno Haible  <bruno@clisp.org>
20461
20462         * modules/freadahead (License): Change to LGPLv2+.
20463         Suggested by Simon Josefsson.
20464
20465 2008-10-23  Jim Meyering  <meyering@redhat.com>
20466
20467         random_r: new module
20468         * modules/random_r: New file.
20469         * m4/random_r.m4: New file.
20470         * lib/random_r.c: New file, from glibc.
20471         * modules/random_r-tests: New file.
20472         * tests/test-random_r.c: New file.
20473         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
20474          Declare.
20475         (RAND_MAX): Define.
20476         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
20477         * modules/stdlib: Substitute them, too.
20478         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
20479         * doc/glibc-functions/initstate_r.texi: Mention the new module.
20480         * doc/glibc-functions/random_r.texi: Likewise.
20481         * doc/glibc-functions/setstate_r.texi: Likewise.
20482         * doc/glibc-functions/srandom_r.texi: Likewise.
20483         * config/srclist.txt: Mention it.
20484
20485 2008-10-23  David Lutterkort  <lutter@redhat.com>
20486
20487         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
20488         link requirement
20489
20490 2008-10-23  Jim Meyering  <meyering@redhat.com>
20491
20492         selinux-h: mark parameters of stub functions as intentionally unused
20493         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
20494         * lib/se-context.in.h: Likewise.
20495
20496 2008-10-22  Simon Josefsson  <simon@josefsson.org>
20497
20498         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
20499
20500 2008-10-22  Simon Josefsson  <simon@josefsson.org>
20501
20502         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
20503
20504 2008-10-22  Eric Blake  <ebb9@byu.net>
20505
20506         glthread/thread: avoid compiler warning
20507         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
20508         Add unreachable abort to silence compiler.
20509
20510 2008-10-22  Eric Blake  <ebb9@byu.net>
20511
20512         netdb: also supply struct addrinfo for cygwin 1.5.x
20513         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
20514         older cygwin.
20515         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
20516         cygwin.
20517         * doc/posix-headers/netdb.texi (netdb.h): Document this.
20518
20519 2008-10-22  Bruno Haible  <bruno@clisp.org>
20520
20521         * users.txt: Update entry about pspp.
20522
20523 2008-10-21  Bruno Haible  <bruno@clisp.org>
20524
20525         Simplification.
20526         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
20527         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
20528
20529         Simplification.
20530         * lib/ioctl.c (ioctl): Don't undefine.
20531         * lib/socket.c (socket): Don't undefine.
20532
20533         Remove unused module indicator macros.
20534         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
20535         GNULIB_$1 as a C macro.
20536
20537         * doc/posix-functions/close.texi: Undo last change.
20538         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
20539         Windows platforms.
20540
20541 2008-10-21  Bruno Haible  <bruno@clisp.org>
20542
20543         Add gethostname() declaration to <unistd.h>.
20544         * lib/unistd.in.h (gethostname): New declaration.
20545         * lib/gethostname.c: Include <unistd.h>.
20546         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
20547         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
20548         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
20549         and HAVE_GETHOSTNAME.
20550         * modules/gethostname (Depends-on): Add unistd.
20551         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20552         (Include): Specify <unistd.h>.
20553         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
20554         HAVE_GETHOSTNAME.
20555         * tests/test-gethostname.c: Include <unistd.h> first.
20556
20557 2008-10-21  Bruno Haible  <bruno@clisp.org>
20558
20559         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
20560         * modules/select-tests (Depends-on): Likewise.
20561         Reported by Simon Josefsson.
20562
20563 2008-10-21  Simon Josefsson  <simon@josefsson.org>
20564
20565         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
20566         * lib/accept.c: New file, based on winsock.c.
20567         * lib/bind.c: New file, based on winsock.c.
20568         * lib/connect.c: New file, based on winsock.c.
20569         * lib/getpeername.c: New file, based on winsock.c.
20570         * lib/getsockname.c: New file, based on winsock.c.
20571         * lib/getsockopt.c: New file, based on winsock.c.
20572         * lib/ioctl.c: New file, based on winsock.c.
20573         * lib/listen.c: New file, based on winsock.c.
20574         * lib/recv.c: New file, based on winsock.c.
20575         * lib/recvfrom.c: New file, based on winsock.c.
20576         * lib/send.c: New file, based on winsock.c.
20577         * lib/sendto.c: New file, based on winsock.c.
20578         * lib/setsockopt.c: New file, based on winsock.c.
20579         * lib/shutdown.c: New file, based on winsock.c.
20580         * lib/socket.c: New file, based on winsock.c.
20581         * lib/w32sock.h: New file, based on winsock.c.
20582         * lib/winsock.c: Remove file.
20583         * modules/accept: Likewise.
20584         * modules/bind: Likewise.
20585         * modules/connect: Likewise.
20586         * modules/getpeername: Likewise.
20587         * modules/getsockname: Likewise.
20588         * modules/getsockopt: Likewise.
20589         * modules/ioctl: Likewise.
20590         * modules/listen: Likewise.
20591         * modules/recv: Likewise.
20592         * modules/recvfrom: Likewise.
20593         * modules/send: Likewise.
20594         * modules/sendto: Likewise.
20595         * modules/setsockopt: Likewise.
20596         * modules/shutdown: Likewise.
20597         * modules/socket: Use socket.c instead of winsock.c.
20598         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
20599         * doc/posix-functions/accept.texi: Doc fix.
20600         * doc/posix-functions/bind.texi: Doc fix.
20601         * doc/posix-functions/close.texi: Doc fix.
20602         * doc/posix-functions/connect.texi: Doc fix.
20603         * doc/posix-functions/getpeername.texi: Doc fix.
20604         * doc/posix-functions/getsockname.texi: Doc fix.
20605         * doc/posix-functions/getsockopt.texi: Doc fix.
20606         * doc/posix-functions/ioctl.texi: Doc fix.
20607         * doc/posix-functions/listen.texi: Doc fix.
20608         * doc/posix-functions/recv.texi: Doc fix.
20609         * doc/posix-functions/recvfrom.texi: Doc fix.
20610         * doc/posix-functions/send.texi: Doc fix.
20611         * doc/posix-functions/sendto.texi: Doc fix.
20612         * doc/posix-functions/setsockopt.texi: Doc fix.
20613         * doc/posix-functions/shutdown.texi: Doc fix.
20614         * doc/posix-functions/socket.texi: Doc fix.
20615
20616 2008-10-20  Bruno Haible  <bruno@clisp.org>
20617
20618         Take into account the role of SIGABRT_COMPAT on Windows 2008.
20619         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
20620         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
20621         as an alias for SIGABRT.
20622         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
20623         (sigaction): Map it to SIGABRT.
20624         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
20625
20626 2008-10-20  Bruno Haible  <bruno@clisp.org>
20627
20628         * lib/fts.c: Don't include lstat.h.
20629         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
20630
20631         Move the lstat() declaration to <sys/stat.h>.
20632         * lib/lstat.h: Remove file.
20633         * lib/sys_stat.in.h: Add special invocation convention.
20634         (lstat): New declaration.
20635         * lib/lstat.c (orig_lstat): New function.
20636         (rpl_lstat): Use orig_lstat instead of lstat.
20637         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
20638         AC_C_INLINE. Set REPLACE_LSTAT.
20639         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
20640         and REPLACE_LSTAT.
20641         * modules/lstat (Files): Remove lib/lstat.h.
20642         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20643         (Include): Specify <sys/stat.h> instead of lstat.h.
20644         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
20645         REPLACE_LSTAT.
20646         * NEWS: Mention the change.
20647
20648 2008-10-20  Bruno Haible  <bruno@clisp.org>
20649
20650         * modules/posix_spawn-tests: New file.
20651         * tests/test-posix_spawn3.c: New file.
20652
20653 2008-10-20  Bruno Haible  <bruno@clisp.org>
20654
20655         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
20656         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
20657         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
20658         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
20659         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
20660
20661 2008-10-20  Bruno Haible  <bruno@clisp.org>
20662
20663         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
20664         of posix_spawn on AIX 5.3.
20665
20666 2008-10-20  Bruno Haible  <bruno@clisp.org>
20667
20668         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
20669
20670 2008-10-20  Bruno Haible  <bruno@clisp.org>
20671
20672         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
20673         of AC_LANG_PROGRAM.
20674
20675 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20676
20677         * lib/netdb.in.h: Don't define GNU specific constants until they
20678         are supported or needed.  Reported by Bruno Haible
20679         <bruno@clisp.org>.
20680
20681 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20682
20683         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
20684
20685 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20686
20687         * lib/getaddrinfo.h: Remove file.
20688         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
20689         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
20690         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
20691         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
20692         * modules/netdb: Substitute GNULIB_GETADDRINFO.
20693         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
20694         * tests/test-getaddrinfo.c: Likewise.
20695         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
20696         * NEWS: Mention change.
20697
20698 2008-10-19  Bruno Haible  <bruno@clisp.org>
20699
20700         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
20701
20702 2008-10-19  Bruno Haible  <bruno@clisp.org>
20703
20704         * lib/wait-process.c: Include simply <sys/wait.h>.
20705         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
20706         WIFSTOPPED): Remove fallback definitions.
20707         * modules/wait-process (Depends-on): Add sys_wait.
20708
20709         New module 'sys_wait'.
20710         * modules/sys_wait: New file.
20711         * lib/sys_wait.in.h: New file, partially copied from
20712         lib/wait-process.c.
20713         * m4/sys_wait_h.m4: New file.
20714         * doc/posix-headers/sys_wait.texi: Mention the new module.
20715
20716 2008-10-19  Bruno Haible  <bruno@clisp.org>
20717
20718         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
20719
20720 2008-10-19  Bruno Haible  <bruno@clisp.org>
20721
20722         Assume that waitpid() fills an 'int' status, not a 'union wait'.
20723         * lib/wait-process.c (WAIT_T): Remove type.
20724         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
20725         (wait_subprocess): Update.
20726
20727 2008-10-19  Bruno Haible  <bruno@clisp.org>
20728
20729         New module 'atoll'.
20730         * modules/atoll: New file.
20731         * lib/stdlib.in.h (atoll): New declaration.
20732         * lib/atoll.c: New file, from glibc with modifications.
20733         * m4/atoll.m4: New file.
20734         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
20735         HAVE_ATOLL.
20736         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
20737         * doc/posix-functions/atoll.texi: Mention the new module.
20738
20739 2008-10-19  Bruno Haible  <bruno@clisp.org>
20740
20741         Add strtoull() declaration to <stdlib.h>.
20742         * lib/stdlib.in.h (strtoull): New declaration.
20743         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20744         Set HAVE_STRTOULL.
20745         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
20746         HAVE_STRTOULL.
20747         * modules/strtoull (Depends-on): Add stdlib.
20748         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20749         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
20750         HAVE_STRTOULL.
20751
20752 2008-10-19  Bruno Haible  <bruno@clisp.org>
20753
20754         Add strtoll() declaration to <stdlib.h>.
20755         * lib/stdlib.in.h (strtoll): New declaration.
20756         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20757         Set HAVE_STRTOLL.
20758         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
20759         HAVE_STRTOLL.
20760         * modules/strtoll (Depends-on): Add stdlib.
20761         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20762         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
20763
20764 2008-10-19  Bruno Haible  <bruno@clisp.org>
20765
20766         * modules/bcopy (Depends-on): Add strings.
20767         (Include): Specify <strings.h>.
20768
20769 2008-10-19  Bruno Haible  <bruno@clisp.org>
20770
20771         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
20772
20773 2008-10-19  Bruno Haible  <bruno@clisp.org>
20774
20775         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
20776         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
20777         mingw.
20778
20779 2008-10-19  Bruno Haible  <bruno@clisp.org>
20780
20781         * lib/atanl.c: Don't include isnanl.h.
20782         * lib/cosl.c: Likewise.
20783         * lib/ldexpl.c: Likewise.
20784         * lib/logl.c: Likewise.
20785         * lib/sinl.c: Likewise.
20786         * lib/sqrtl.c: Likewise.
20787         * lib/tanl.c: Likewise.
20788
20789         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
20790         * lib/isnanf.h: Remove file.
20791         * lib/isnand.h: Remove file.
20792         * lib/isnanl.h: Remove file.
20793         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
20794         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
20795         macros.
20796         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
20797         HAVE_ISNANF, don't define it as a C macro.
20798         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
20799         HAVE_ISNAND, don't define it as a C macro.
20800         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
20801         HAVE_ISNANL, don't define it as a C macro.
20802         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
20803         HAVE_ISNAN[FDL].
20804         * modules/isnanf (Files): Remove lib/isnanf.h.
20805         (Depends-on): Add math.
20806         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20807         (Include): Specify <math.h> instead of isnanf.h.
20808         * modules/isnand (Files): Remove lib/isnand.h.
20809         (Depends-on): Add math.
20810         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20811         (Include): Specify <math.h> instead of isnand.h.
20812         * modules/isnanl (Files): Remove lib/isnanl.h.
20813         (Depends-on): Add math.
20814         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20815         (Include): Specify <math.h> instead of isnanl.h.
20816         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
20817         HAVE_ISNAN[FDL].
20818         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
20819         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
20820         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
20821         * NEWS: Mention the change.
20822
20823 2008-10-18  Bruno Haible  <bruno@clisp.org>
20824
20825         Add getusershell(), setusershell(), endusershell() declarations to
20826         <unistd.h>.
20827         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
20828         declarations.
20829         * lib/getusershell.c: Include unistd.h.
20830         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
20831         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20832         HAVE_GETUSERSHELL.
20833         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
20834         and HAVE_GETUSERSHELL.
20835         * modules/getusershell (Depends-on): Add unistd, extensions.
20836         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20837         (Include): Specify <unistd.h>.
20838         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
20839         HAVE_GETUSERSHELL.
20840
20841 2008-10-18  Bruno Haible  <bruno@clisp.org>
20842
20843         Add a getloadavg() declaration to <stdlib.h>.
20844         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
20845         getloadavg declaration.
20846         (getloadavg): New declaration.
20847         * lib/getloadavg.c: Include <stdlib.h> first.
20848         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
20849         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
20850         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
20851         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
20852         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20853         * modules/getloadavg (Depends-on): Add stdlib, extensions.
20854         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20855         (Include): Specify <stdlib.h>.
20856         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
20857         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20858
20859 2008-10-18  Bruno Haible  <bruno@clisp.org>
20860
20861         * lib/dirchownmod.c: Don't include lchmod.h.
20862
20863         Move the lchmod() declaration to <sys/stat.h>.
20864         * lib/lchmod.h: Remove file.
20865         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
20866         (lchmod): New declaration, moved here from lib/lchown.h.
20867         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
20868         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
20869         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
20870         and HAVE_LCHMOD.
20871         * modules/lchmod (Files): Remove lib/lchmod.h.
20872         (Depends-on): Add sys_stat, extensions.
20873         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20874         (Include): Specify <sys/stat.h> instead of lchmod.h.
20875         * modules/sys_stat (Depends-on): Add link-warning.
20876         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
20877         definition of GL_LINK_WARNING.
20878         * NEWS: Mention the change.
20879
20880 2008-10-18  Bruno Haible  <bruno@clisp.org>
20881
20882         * lib/fchdir.c: Don't include dirfd.h.
20883         * lib/fts.c: Likewise.
20884         * lib/getcwd.c: Likewise.
20885         * lib/glob.c: Likewise.
20886
20887         Move the dirfd() declaration to <dirent.h>.
20888         * lib/dirfd.h: Remove file.
20889         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
20890         (dirfd): New declaration.
20891         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
20892         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
20893         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
20894         HAVE_DECL_DIRFD.
20895         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
20896         HAVE_DECL_DIRFD.
20897         * modules/dirfd (Files): Remove lib/dirfd.h.
20898         (Depends-on): Add dirent, extensions.
20899         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
20900         (Include): Specify <dirent.h> instead of dirfd.h.
20901         * modules/dirent (Depends-on): Add link-warning.
20902         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
20903         definition of GL_LINK_WARNING.
20904         * NEWS: Mention the change.
20905
20906 2008-10-18  Bruno Haible  <bruno@clisp.org>
20907
20908         Move the euidaccess() declaration to <unistd.h>.
20909         * lib/euidaccess.h: Remove file.
20910         * lib/unistd.in.h (euidaccess): New declaration.
20911         * lib/euidaccess.c: Don't include euidaccess.h.
20912         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
20913         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
20914         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
20915         and HAVE_EUIDACCESS.
20916         * modules/euidaccess (Files): Remove lib/euidaccess.h.
20917         (Depends-on): Add unistd.
20918         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20919         (Include): Specify <unistd.h> instead of euidaccess.h.
20920         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
20921         HAVE_EUIDACCESS.
20922         * NEWS: Mention the change.
20923
20924 2008-10-18  Bruno Haible  <bruno@clisp.org>
20925
20926         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
20927
20928         Move the getdomainname() declaration to <unistd.h>.
20929         * lib/getdomainname.h: Remove file.
20930         * lib/unistd.in.h (getdomainname): New declaration.
20931         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
20932         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
20933         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20934         HAVE_GETDOMAINNAME.
20935         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20936         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
20937         * modules/getdomainname (Files): Remove lib/getdomainname.h.
20938         (Depends-on): Add unistd, extensions.
20939         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20940         (Includes): Specify <unistd.h> instead of getdomainname.h.
20941         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
20942         HAVE_GETDOMAINNAME.
20943         * NEWS: Mention the change.
20944
20945 2008-10-18  Bruno Haible  <bruno@clisp.org>
20946
20947         * modules/dirent: New file.
20948         * m4/dirent_h.m4: New file.
20949         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
20950         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
20951         * modules/fchdir (Files): Remove lib/dirent.in.h.
20952         (Depends-on): Add dirent.
20953         (Makefile.am): Move rules to modules/dirent.
20954         * doc/posix-headers/dirent.texi: Mention the new module.
20955
20956 2008-10-18  Bruno Haible  <bruno@clisp.org>
20957
20958         Avoid -Wunused-parameter warnings in public gnulib header files.
20959         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
20960         macro.
20961         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
20962
20963 2008-10-18  Bruno Haible  <bruno@clisp.org>
20964
20965         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
20966         * doc/glibc-functions/error.texi: Mention the module 'error'.
20967         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
20968         * doc/glibc-functions/getdomainname.texi: Mention the module
20969         'getdomainname'.
20970         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
20971         * doc/glibc-functions/getpagesize.texi: Mention the module
20972         'getpagesize'.
20973         * doc/glibc-functions/getusershell.texi: Mention the module
20974         'getusershell'.
20975         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
20976         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
20977         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
20978         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
20979         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
20980         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
20981         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
20982         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
20983         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
20984         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
20985         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
20986         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
20987         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
20988         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
20989
20990 2008-10-17  Bruno Haible  <bruno@clisp.org>
20991
20992         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
20993         HP-UX and IRIX, use -0.0L.
20994         * tests/test-ceill.c (minus_zero): Likewise.
20995         * tests/test-floorl.c (minus_zero): Likewise.
20996         * tests/test-frexpl.c (minus_zero): Likewise.
20997         * tests/test-isnan.c (minus_zerol): Likewise.
20998         * tests/test-isnanl.h (minus_zero): Likewise.
20999         * tests/test-ldexpl.c (minus_zero): Likewise.
21000         * tests/test-roundl.c (minus_zero): Likewise.
21001         * tests/test-signbit.c (minus_zerol): Likewise.
21002         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
21003         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
21004         * tests/test-truncl.c (minus_zero): Likewise.
21005         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
21006         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
21007         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
21008         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
21009
21010 2008-10-17  Bruno Haible  <bruno@clisp.org>
21011
21012         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
21013         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
21014         that it gets activated only for gcc >= 3.0.
21015         * lib/dirent.in.h: Likewise.
21016         * lib/errno.in.h: Likewise.
21017         * lib/fcntl.in.h: Likewise.
21018         * lib/float.in.h: Likewise.
21019         * lib/iconv.in.h: Likewise.
21020         * lib/inttypes.in.h: Likewise.
21021         * lib/locale.in.h: Likewise.
21022         * lib/math.in.h: Likewise.
21023         * lib/netdb.in.h: Likewise.
21024         * lib/netinet_in.in.h: Likewise.
21025         * lib/search.in.h: Likewise.
21026         * lib/signal.in.h: Likewise.
21027         * lib/spawn.in.h: Likewise.
21028         * lib/stdarg.in.h: Likewise.
21029         * lib/stdint.in.h: Likewise.
21030         * lib/stdio.in.h: Likewise.
21031         * lib/stdlib.in.h: Likewise.
21032         * lib/string.in.h: Likewise.
21033         * lib/strings.in.h: Likewise.
21034         * lib/sys_file.in.h: Likewise.
21035         * lib/sys_ioctl.in.h: Likewise.
21036         * lib/sys_select.in.h: Likewise.
21037         * lib/sys_socket.in.h: Likewise.
21038         * lib/sys_stat.in.h: Likewise.
21039         * lib/sys_time.in.h: Likewise.
21040         * lib/sysexits.in.h: Likewise.
21041         * lib/time.in.h: Likewise.
21042         * lib/unistd.in.h: Likewise.
21043         * lib/wchar.in.h: Likewise.
21044         * lib/wctype.in.h: Likewise.
21045         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21046
21047 2008-10-17  Jim Meyering  <meyering@redhat.com>
21048
21049         ignore-value: don't depend on inline module
21050         * modules/ignore-value (Depends-on): Remove 'inline'.
21051         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
21052         Suggestion from Bruno Haible.
21053
21054 2008-10-17  Bruno Haible  <bruno@clisp.org>
21055
21056         New implementation of condition variables for Win32.
21057         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
21058         (gl_linked_waitqueue_t): New type.
21059         (gl_cond_t): Use it.
21060         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
21061         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
21062         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
21063         (glthread_cond_init_func, glthread_cond_wait_func,
21064         glthread_cond_timedwait_func, glthread_cond_signal_func,
21065         glthread_cond_broadcast_func, glthread_cond_destroy_func):
21066         Reimplemented on the basis of gl_linked_waitqueue_t.
21067         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
21068         gl_waitqueue_t.
21069         (gl_rwlock_t): Update.
21070         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
21071
21072 2008-10-17  Simon Josefsson  <simon@josefsson.org>
21073
21074         * modules/recvfrom (Depends-on): Add dependency on getpeername.
21075         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21076
21077 2008-10-17  Jim Meyering  <meyering@redhat.com>
21078
21079         ignore-value: new module
21080         * modules/ignore-value: New file.
21081         * lib/ignore-value.h: New file.
21082         * MODULES.html.sh (Compiler warning management): New section,
21083         just for this module.  More to come.
21084
21085 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
21086
21087         open-safer.c: avoid 'signed and unsigned in conditional...' warning
21088         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
21089         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
21090
21091 2008-10-16  Jim Meyering  <meyering@redhat.com>
21092
21093         openat-die.c: avoid 'no previous prototype' warning
21094         * lib/openat-die.c: Include "openat.h".
21095         Reported by Reuben Thomas <rrt@sc3d.org>.
21096
21097 2008-10-16  Simon Josefsson  <simon@josefsson.org>
21098
21099         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
21100         * lib/netdb.in.h: Fix typo.
21101         Reported by Bruno Haible  <bruno@clisp.org>
21102
21103         * lib/netdb.in.h: Include sys/socket.h for platforms without
21104         netdb.h, to get structures like hostent on MinGW.
21105         * modules/netdb (Depends-on): Add sys_socket.
21106
21107 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21108
21109         * modules/netdb, modules/netdb-tests: New file.
21110         * m4/netdb_h.m4: New file.
21111         * lib/netdb.in.h: Add, currently just an empty file pending
21112         definitions.
21113         * tests/test-netdb.c: New file.
21114         * doc/posix-headers/netdb.texi: Mention that we replace it if
21115         needed.
21116         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21117         netdb.
21118
21119 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21120
21121         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
21122         with code.
21123
21124 2008-10-13  Bruno Haible  <bruno@clisp.org>
21125
21126         * lib/glthread/cond.c (glthread_cond_wait_func,
21127         glthread_cond_timedwait_func): Add a comment.
21128
21129 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21130
21131         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
21132         * tests/test-select.c: Likewise,
21133
21134 2008-10-13  Bruno Haible  <bruno@clisp.org>
21135
21136         * lib/glthread/cond.c (glthread_cond_wait_func,
21137         glthread_cond_timedwait_func): Fix variable name.
21138         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21139
21140 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
21141
21142         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
21143         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
21144         struct sockaddr.sa_len.
21145         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
21146
21147 2008-10-13  Simon Josefsson  <simon@josefsson.org>
21148
21149         * build-aux/pmccabe2html: Add css and css_url parameters.
21150
21151 2008-10-12  Bruno Haible  <bruno@clisp.org>
21152
21153         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
21154         calling aclx_get.
21155         Reported by Rainer Tammer <tammer@tammer.net>.
21156
21157 2008-10-12  Bruno Haible  <bruno@clisp.org>
21158
21159         Use msvcrt aware primitives for creation/termination of Win32 threads.
21160         * lib/glthread/thread.c: Include <process.h>.
21161         (glthread_create_func): Use _beginthreadex instead of CreateThread.
21162         (wrapper_func): Update signature.
21163         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
21164
21165 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21166             Bruno Haible  <bruno@clisp.org>
21167
21168         Provide a Win32 implementation of the 'cond' module.
21169         * lib/glthread/cond.h [USE_WIN32]: New implementation.
21170         * lib/glthread/cond.c (glthread_cond_init_func,
21171         glthread_cond_wait_func, glthread_cond_timedwait_func,
21172         glthread_cond_signal_func, glthread_cond_broadcast_func,
21173         glthread_cond_destroy_func) [USE_WIN32]: New functions.
21174         * modules/cond (Dependencies): Add gettimeofday.
21175
21176 2008-10-11  Bruno Haible  <bruno@clisp.org>
21177
21178         Make sleep work on older versions of mingw.
21179         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
21180         only whether it exists.
21181         * doc/posix-functions/sleep.texi: Mention the problem with older
21182         versions of mingw.
21183
21184 2008-10-11  Bruno Haible  <bruno@clisp.org>
21185
21186         New module 'shutdown'.
21187         * modules/shutdown: New file.
21188         * lib/sys_socket.in.h (shutdown): New declaration.
21189         * lib/winsock.c (shutdown): New function.
21190         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
21191         GNULIB_SHUTDOWN.
21192         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
21193         * doc/posix-functions/shutdown.texi: Document the new module.
21194
21195 2008-10-11  Jim Meyering  <meyering@redhat.com>
21196
21197         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
21198
21199 2008-10-11  Bruno Haible  <bruno@clisp.org>
21200
21201         New module 'fclose'.
21202         * modules/fclose: New file.
21203         * lib/stdio.in.h (fclose): New declaration.
21204         * lib/fclose.c: New file.
21205         * m4/fclose.m4: New file.
21206         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
21207         REPLACE_FCLOSE.
21208         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
21209         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
21210         REPLACE_FCLOSE.
21211         * modules/close (Depends-on): fclose.
21212         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
21213
21214 2008-10-11  Bruno Haible  <bruno@clisp.org>
21215
21216         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
21217         set errno and don't call _close.
21218
21219 2008-10-10  Bruno Haible  <bruno@clisp.org>
21220
21221         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
21222         ACL, not afterwards. Fixes test failure on Cygwin.
21223
21224 2008-10-09  Ben Pfaff  <blp@gnu.org>
21225
21226         * build-aux/announce-gen: Fix gnulib version related part of usage
21227         message.  Die with a useful error message if no tarballs are
21228         found.
21229
21230 2008-10-10  Jim Meyering  <meyering@redhat.com>
21231
21232         bootstrap: use git's --depth=N option only if it's supported
21233         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
21234         recognize the --depth option.  Reported by Pádraig Brady.
21235
21236 2008-10-09  Bruno Haible  <bruno@clisp.org>
21237
21238         New module 'ioctl'.
21239         * modules/ioctl: New file.
21240         * lib/sys_socket.in.h (ioctl): Remove declaration.
21241         * lib/winsock.c: Include <sys/ioctl.h>.
21242         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
21243         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
21244         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
21245         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
21246         * doc/posix-functions/ioctl.texi: Mention the new module.
21247
21248 2008-10-09  Bruno Haible  <bruno@clisp.org>
21249
21250         New module 'sys_ioctl'.
21251         * lib/sys_ioctl.in.h: New file.
21252         * m4/sys_ioctl_h.m4: New file.
21253         * modules/sys_ioctl: New file.
21254         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
21255
21256 2008-10-09  Bruno Haible  <bruno@clisp.org>
21257
21258         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
21259         * lib/winsock.c: Include <stdarg.h>.
21260         (rpl_ioctl): Change to second argument 'int' and then varargs.
21261
21262 2008-10-09  Bruno Haible  <bruno@clisp.org>
21263
21264         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
21265         when the sys_socket module is present and the system has <winsock2.h>.
21266
21267 2008-10-09  Bruno Haible  <bruno@clisp.org>
21268
21269         * doc/posix-functions/close.texi: Mention module 'close' instead of
21270         module 'sys_socket'.
21271
21272 2008-10-09  Bruno Haible  <bruno@clisp.org>
21273
21274         * doc/glibc-headers/sys_ioctl.texi: New file.
21275         * doc/gnulib.texi: Include it.
21276
21277 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21278             Bruno Haible  <bruno@clisp.org>
21279
21280         Combine the two replacements of 'close'.
21281         * lib/sys_socket.in.h (close): Define to a reminder to include
21282         <unistd.h>.
21283         (_gl_close_fd_maybe_socket): New declaration.
21284         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
21285         * lib/winsock.c (close): Remove undefinition.
21286         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
21287         needed for the gnulib module 'close'.
21288         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
21289         define to an error symbol or to a warning, if suitable.
21290         * lib/close.c: Include <sys/socket.h>.
21291         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
21292         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
21293         UNISTD_H_HAVE_WINSOCK2_H.
21294         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
21295         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21296         UNISTD_H_HAVE_WINSOCK2_H.
21297         * modules/sys_socket (Files): Add m4/unistd_h.m4.
21298         (configure.ac): Set a module indicator.
21299         (Makefile.am): Substitute GNULIB_CLOSE.
21300         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
21301         * modules/poll-tests (Depends-on): Add close.
21302         * modules/select-tests (Depends-on): Likewise.
21303
21304 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21305             Bruno Haible  <bruno@clisp.org>
21306
21307         New module 'close'.
21308         * modules/close: New file.
21309         * lib/unistd.in.h (close): Move declaration out of the
21310         FCHDIR_REPLACEMENT scope.
21311         (_gl_unregister_fd): New declaration.
21312         * lib/close.c: New file.
21313         * lib/fchdir.c (rpl_close): Remove function.
21314         * m4/close.m4: New file.
21315         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21316         close.
21317         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
21318         REPLACE_CLOSE.
21319         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
21320         REPLACE_CLOSE.
21321         * modules/fchdir (Depends-on): Add close.
21322
21323 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21324             Bruno Haible  <bruno@clisp.org>
21325
21326         * lib/fcntl.in.h (open): Simplify conditionals.
21327         (_gl_register_fd): New declaration.
21328         * lib/fchdir.c (rpl_open): Remove function.
21329         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
21330         also.
21331         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
21332         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21333         open.
21334
21335 2008-10-09  Jim Meyering  <meyering@redhat.com>
21336
21337         GNUmakefile: use the more name-space-friendly "_version"
21338         * top/GNUmakefile (_dummy): Update.
21339         (_version): Rename from "version".
21340
21341 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21342             Bruno Haible  <bruno@clisp.org>
21343
21344         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
21345         rpl_close.
21346         (_gl_register_fd): New function, extracted from rpl_open.
21347         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
21348         (rpl_open, rpl_opendir): Use _gl_register_fd.
21349
21350 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21351
21352         Fix organization of 'open' replacement.
21353         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
21354         (gl_FUNC_OPEN): Use it.
21355         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
21356
21357 2008-10-08  Bruno Haible  <bruno@clisp.org>
21358
21359         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
21360
21361 2008-10-08  Simon Josefsson  <simon@josefsson.org>
21362
21363         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
21364         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
21365         listen).
21366
21367 2008-10-08  Eric Blake  <ebb9@byu.net>
21368
21369         GNUmakefile: add 'make version' target
21370         * top/GNUmakefile (_curr-ver): Split version update rules...
21371         (version): ...into a target.
21372
21373 2008-10-07  Bruno Haible  <bruno@clisp.org>
21374
21375         Use a more portable replacement expression for -0.0L.
21376         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
21377         instead of -0.0L. Fix m4 quotation.
21378
21379         * tests/test-signbit.c: Include <float.h>.
21380         (minus_zero): New variable.
21381         (test_signbitl): Use minus_zero instead of -zero.
21382         * modules/signbit-tests (Depends-on): Add float.
21383
21384         * tests/test-ceill.c: Include <float.h>.
21385         (zero): Remove variable.
21386         (minus_zero): New variable.
21387         (main): Use minus_zero instead of -zero.
21388         * modules/ceill-tests (Depends-on): Add float.
21389
21390         * tests/test-floorl.c: Include <float.h>.
21391         (zero): Remove variable.
21392         (minus_zero): New variable.
21393         (main): Use minus_zero instead of -zero.
21394         * modules/floorl-tests (Depends-on): Add float.
21395
21396         * tests/test-roundl.c: Include <float.h>.
21397         (zero): Remove variable.
21398         (minus_zero): New variable.
21399         (main): Use minus_zero instead of -zero.
21400         * modules/roundl-tests (Depends-on): Add float.
21401
21402         * tests/test-truncl.c: Include <float.h>.
21403         (zero): Remove variable.
21404         (minus_zero): New variable.
21405         (main): Use minus_zero instead of -zero.
21406         * modules/truncl-tests (Depends-on): Add float.
21407
21408         * tests/test-frexpl.c (zero): Remove variable.
21409         (minus_zero): New variable.
21410         (main): Use minus_zero instead of -zero.
21411         * modules/frexpl-tests (Depends-on): Add float.
21412
21413         * tests/test-isnan.c (zerol): Remove variable.
21414         (minus_zerol): New variable.
21415         (test_long_double): Use minus_zerol instead of -zerol.
21416         * modules/isnan-tests (Depends-on): Add float.
21417
21418         * tests/test-isnanl.h (zero): Remove variable.
21419         (minus_zero): New variable.
21420         (main): Use minus_zero instead of -zero.
21421         * modules/isnanl-nolibm-tests (Depends-on): Add float.
21422         * modules/isnanl-tests (Depends-on): Add float.
21423
21424         * tests/test-ldexpl.c (zero): Remove variable.
21425         (minus_zero): New variable.
21426         (main): Use minus_zero instead of -zero.
21427         * modules/ldexpl-tests (Depends-on): Add float.
21428
21429         * tests/test-snprintf-posix.h (zerol): Remove variable.
21430         (minus_zerol): New variable.
21431         (test_function): Use minus_zerol instead of -zerol.
21432         * modules/snprintf-posix-tests (Depends-on): Add float.
21433         * modules/vsnprintf-posix-tests (Depends-on): Add float.
21434
21435         * tests/test-sprintf-posix.h (zerol): Remove variable.
21436         (minus_zerol): New variable.
21437         (test_function): Use minus_zerol instead of -zerol.
21438         * modules/sprintf-posix-tests (Depends-on): Add float.
21439         * modules/vsprintf-posix-tests (Depends-on): Add float.
21440
21441         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
21442         (minus_zerol): New variable.
21443         (test_function): Use minus_zerol instead of -zerol.
21444         * modules/vasnprintf-posix-tests (Depends-on): Add float.
21445
21446         * tests/test-vasprintf-posix.c (zerol): Remove variable.
21447         (minus_zerol): New variable.
21448         (test_function): Use minus_zerol instead of -zerol.
21449         * modules/vasprintf-posix-tests (Depends-on): Add float.
21450
21451 2008-10-07  Simon Josefsson  <simon@josefsson.org>
21452
21453         * MODULES.html.sh (Support for building documentation): Mention
21454         pmccabe2html.  Sort entries.
21455
21456         Add pmccabe2html module, from gnupdf.
21457         * build-aux/pmccabe.css: New file.
21458         * build-aux/pmccabe2html: New file.
21459         * m4/pmccabe2html.m4: New file.
21460         * modules/pmccabe2html: New file.
21461
21462 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
21463
21464         flock: new module
21465         * MODULES.html.sh: Add to list of modules.
21466         * lib/flock.c: flock implementation for Windows and Unix systems
21467         which have fcntl.
21468         * doc/glibc-functions/flock.texi: Update documentation.
21469         * lib/sys_file.in.h: <sys/file.h> header file.
21470         * m4/flock.m4: M4 macros.
21471         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
21472         * modules/flock: flock module.
21473         * modules/flock-tests: flock tests module.
21474         * modules/sys_file: sys/file.h module.
21475         * tests/test-flock.c: test suite for flock.
21476
21477 2008-10-06  Jim Meyering  <meyering@redhat.com>
21478
21479         bootstrap: check for LT_INIT more portably still ;-)
21480         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
21481         Spotted by Bruno Haible.
21482
21483 2008-10-06  Eric Blake  <ebb9@byu.net>
21484
21485         test-signbit: avoid tripping Irix cc bug on -0.0L
21486         * tests/test-signbit.c (minus_zerol): Delete, and replace with
21487         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
21488         entire testsuite consistent and avoids an Irix 6.2 bug.
21489
21490 2008-10-05  Bruno Haible  <bruno@clisp.org>
21491             Jim Meyering  <jim@meyering.net>
21492
21493         Add an option for ignoring EPIPE during close_stdout.
21494         * lib/closeout.h: Include <stdbool.h>.
21495         (close_stdout_set_ignore_EPIPE): New declaration.
21496         * lib/closeout.c: Include <stdbool.h>.
21497         (ignore_EPIPE): New variable.
21498         (close_stdout_set_ignore_EPIPE): New function.
21499         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
21500         * lib/close-stream.c (close_stream): Mention the possible EPIPE
21501         failure.
21502         * modules/closeout (Depends-on): Add stdbool.
21503
21504 2008-10-05  Bruno Haible  <bruno@clisp.org>
21505
21506         * modules/accept: New file.
21507         * modules/bind: New file.
21508         * modules/connect: New file.
21509         * modules/getpeername: New file.
21510         * modules/getsockname: New file.
21511         * modules/getsockopt: New file.
21512         * modules/listen: New file.
21513         * modules/recv: New file.
21514         * modules/recvfrom: New file.
21515         * modules/send: New file.
21516         * modules/sendto: New file.
21517         * modules/setsockopt: New file.
21518         * modules/socket: New file.
21519         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
21520         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
21521         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
21522         the particular module is requested. Add a link warning when the
21523         particular module is not requested.
21524         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
21525         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
21526         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
21527         the particular module is requested.
21528         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
21529         gl_SYS_SOCKET_H_DEFAULTS): New macros.
21530         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
21531         * modules/sys_socket (Depends-on): Add link-warning.
21532         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
21533         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
21534         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
21535         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
21536         GL_LINK_WARNING.
21537         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
21538         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
21539         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
21540         * doc/posix-functions/getpeername.texi: Mention the new module
21541         'getpeername'.
21542         * doc/posix-functions/getsockname.texi: Mention the new module
21543         'getsockname'.
21544         * doc/posix-functions/getsockopt.texi: Mention the new module
21545         'getsockopt'.
21546         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
21547         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
21548         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
21549         * doc/posix-functions/send.texi: Mention the new module 'send'.
21550         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
21551         * doc/posix-functions/setsockopt.texi: Mention the new module
21552         'setsockopt'.
21553         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
21554         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
21555         listen, connect, accept.
21556         * modules/select-tests (Depends-on): Likewise.
21557
21558 2008-10-05  Bruno Haible  <bruno@clisp.org>
21559
21560         * lib/winsock.c (strerror): Remove unused #undef.
21561         (rpl_close): Remove unused local variable.
21562
21563         * modules/sys_socket (Depends-on); Add errno.
21564
21565 2008-10-05  Bruno Haible  <bruno@clisp.org>
21566
21567         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
21568         (select): Add a link warning when the 'select' module is not used.
21569         * modules/sys_select (Depends-on): Add link-warning.
21570         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
21571         Suggested by Paolo Bonzini.
21572
21573 2008-10-05  Jim Meyering  <meyering@redhat.com>
21574
21575         bootstrap: check for LT_INIT more portably
21576         * build-aux/bootstrap: Avoid using grep -E, since it's not
21577         portable enough.  Suggestion from Bruno Haible.
21578
21579 2008-10-05  Bruno Haible  <bruno@clisp.org>
21580
21581         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
21582         as being fixed by gnulib.
21583
21584 2008-10-05  Bruno Haible  <bruno@clisp.org>
21585
21586         * modules/select-tests: New file, mostly copied from
21587         modules/sys_select-tests.
21588         * tests/test-select.c: New file, mostly copied from
21589         tests/test-sys_select.c.
21590         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
21591         * modules/sys_select-tests (Depends-on): Remove all dependencies.
21592         (Makefile.am): Remove test_sys_select_LDADD.
21593
21594         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
21595         to an undefined symbol, for an error message.
21596         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
21597         (gl_SYS_SELECT_H_DEFAULTS): New macro.
21598         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
21599         winsock-select.c here.
21600         * modules/sys_select (Files): Remove lib/winsock-select.c.
21601         (Depends-on): Remove alloca.
21602         (Makefile.am): Substitute GNULIB_SELECT.
21603         * modules/select: New file.
21604         * doc/posix-functions/select.texi: Update.
21605
21606 2008-10-05  Bruno Haible  <bruno@clisp.org>
21607
21608         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
21609         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
21610         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
21611         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
21612         getdtablesize.
21613         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
21614         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
21615
21616 2008-10-05  Bruno Haible  <bruno@clisp.org>
21617
21618         * modules/getdtablesize-tests: New file.
21619         * tests/test-getdtablesize.c: New file.
21620
21621         New module 'getdtablesize'.
21622         * lib/unistd.in.h (getdtablesize): New declaration.
21623         * lib/getdtablesize.c: New file.
21624         * m4/getdtablesize.m4: New file.
21625         * modules/getdtablesize: New file.
21626         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21627         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
21628         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
21629         HAVE_GETDTABLESIZE.
21630         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
21631
21632 2008-10-05  Bruno Haible  <bruno@clisp.org>
21633
21634         * modules/sched (Makefile.am): Fix typo.
21635         Reported by Simon Josefsson.
21636
21637 2008-10-05  Jim Meyering  <meyering@redhat.com>
21638
21639         bootstrap: check for LT_INIT, too
21640         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
21641         are deprecated.  Suggestion from Ralf Wildenhues.
21642
21643 2008-10-05  Bruno Haible  <bruno@clisp.org>
21644
21645         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
21646         overriding them by ours.
21647         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
21648
21649 2008-10-05  Jim Meyering  <meyering@redhat.com>
21650
21651         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
21652         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
21653         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
21654
21655 2008-10-04  Bruno Haible  <bruno@clisp.org>
21656
21657         * modules/dup2 (License): Change to LGPLv2+.
21658         * modules/sleep (License): Likewise.
21659         * modules/perror (License): Likewise.
21660         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
21661         Blake.
21662         * modules/signal (License): Likewise.
21663         * modules/sigprocmask (License): Likewise.
21664         * modules/raise (License): Change to LGPLv2+, with approval by Jim
21665         Meyering.
21666
21667 2008-10-04  Bruno Haible  <bruno@clisp.org>
21668
21669         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
21670         Reported by Rainer Tammer <tammer@tammer.net>.
21671
21672 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
21673             Bruno Haible  <bruno@clisp.org>
21674
21675         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
21676         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
21677         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
21678
21679 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
21680
21681         filevercmp: new module
21682         * lib/filevercmp.h: New function filevercmp comparing version strings.
21683         * lib/filevercmp.c: Implementation of filevercmp function.
21684         * modules/filevercmp: Module metadata.
21685         * tests/test-filevercmp.c: Unit test for new module.
21686         * modules/filevercmp-tests: Unit test metadata.
21687         * MODULES.html.sh: Add filevercmp module.
21688
21689 2008-10-03  Bruno Haible  <bruno@clisp.org>
21690
21691         * lib/c-ctype.h: Add comment.
21692         Reported by Jim Meyering.
21693
21694 2008-10-02  Bruno Haible  <bruno@clisp.org>
21695
21696         * modules/posix_spawn-internal (Depends-on): Add 'open'.
21697
21698 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21699
21700         * build-aux/bootstrap: Allow renaming bootstrap, and change the
21701         name of bootstrap.conf accordingly.
21702
21703 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21704
21705         * build-aux/bootstrap: Install git-merge-changelog configuration
21706         items into .gitconfig if needed.
21707
21708 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21709
21710         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
21711         git repository, and initialize/update it accordingly.
21712
21713 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
21714
21715         * modules/fsync-tests: New file.
21716         * tests/test-fsync.c: New file.
21717
21718         New module 'fsync'.
21719         * lib/fsync.c: New file.
21720         * m4/fsync.m4: New file.
21721         * modules/fsync: New file.
21722         * lib/unistd.in.h (fsync): New declaration.
21723         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
21724         GNULIB_FSYNC and HAVE_FSYNC.
21725         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
21726         * MODULES.html.sh (posix_functions): Add fsync.
21727         * doc/posix-functions/fsync.texi: Mention the new module.
21728
21729 2008-10-02  Jim Meyering  <meyering@redhat.com>
21730
21731         fts.c: sync with similar code from coreutils' remove.c
21732         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
21733         Guard also with "#if defined __linux__", since for now at least,
21734         this code is Linux-kernel-specific.
21735
21736 2008-10-02  Jim Meyering  <meyering@redhat.com>
21737
21738         fts: bug fixes
21739         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
21740         Include <sys/vfs.h>, not <sys/statfs.h>.
21741
21742         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
21743         Include <sys/vfs.h>, not <sys/statfs.h>.
21744
21745 2008-10-01  Bruno Haible  <bruno@clisp.org>
21746
21747         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
21748         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
21749         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
21750         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
21751         * doc/posix-functions/posix_spawnp.texi: Likewise.
21752         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
21753         whether posix_spawn actually works.
21754         * m4/pipe.m4 (gl_PIPE): Likewise.
21755         * modules/execute (Files): Add m4/posix_spawn.m4.
21756         * modules/pipe (Files): Add m4/posix_spawn.m4.
21757         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
21758
21759 2008-10-01  Jim Meyering  <meyering@redhat.com>
21760
21761         remove trailing spaces
21762         * NEWS: Likewise.
21763         * lib/poll.c (poll): Likewise.
21764         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
21765         * lib/winsock.c (rpl_close): Likewise.
21766         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
21767         * modules/yield: Likewise.
21768         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
21769         * tests/test-sys_select.c (connect_to_socket): Likewise.
21770
21771         fts.c: adjust a new interface to be more generally useful
21772         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
21773         (fts_build): Adjust caller.
21774
21775 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21776
21777         * modules/cond-tests: New file.
21778         * tests/test-cond.c: New file.
21779
21780 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21781             Bruno Haible  <bruno@clisp.org>
21782
21783         * modules/cond (Dependencies): Add errno, time.
21784         * lib/glthread/cond.h: Include <time.h>.
21785         (gl_cond_define, gl_cond_define_initialized): Use the same definition
21786         across platforms.
21787
21788 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21789             Bruno Haible  <bruno@clisp.org>
21790
21791         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
21792
21793 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21794             Bruno Haible  <bruno@clisp.org>
21795
21796         * modules/tls-tests (Depends-on): Add thread, yield.
21797         (configure.ac): Remove all checks.
21798         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
21799         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21800         gl_thread_self): Remove definitions. Include glthread/thread.h and
21801         glthread/yield.h instead.
21802         (test_tls): Pass an additional NULL argument to gl_thread_join.
21803
21804 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21805             Bruno Haible  <bruno@clisp.org>
21806
21807         * modules/lock-tests (Depends-on): Add thread, yield.
21808         (configure.ac): Remove all checks.
21809         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
21810         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21811         gl_thread_self): Remove definitions. Include glthread/thread.h and
21812         glthread/yield.h instead.
21813         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
21814         additional NULL argument to gl_thread_join.
21815
21816 2008-09-30  Bruno Haible  <bruno@clisp.org>
21817
21818         Fix the Win32 implementation of the 'thread' module.
21819         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
21820         pointer type.
21821         (gl_thread_self): Invoke gl_thread_self_func.
21822         (gl_thread_self_func): New declaration.
21823         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
21824         (do_init_self_key, init_self_key): New functions.
21825         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
21826         Remove some fields.
21827         (running_threads, running_lock): Remove variables.
21828         (get_current_thread_handle): New function.
21829         (gl_thread_self_func, wrapper_func, glthread_create_func,
21830         glthread_join_func, gl_thread_exit_func): Largely rewritten and
21831         simplified.
21832
21833 2008-09-30  Bruno Haible  <bruno@clisp.org>
21834
21835         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21836         files.
21837
21838 2008-09-30  Jim Meyering  <meyering@redhat.com>
21839
21840         fts.m4: correct the test for statfs.f_type
21841         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
21842         when checking for statfs.f_type.
21843
21844 2008-09-15  Simon Josefsson  <simon@josefsson.org>
21845
21846         tests: avoid some compiler warnings
21847         * tests/test-memchr.c (main): Pass NULL indirectly.
21848         * tests/test-getdate.c (main): Remove unused variable 'ret'.
21849
21850 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
21851
21852         getdate.y: disallow countable dayshifts like "4 yesterday ago"
21853         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
21854         exactly specified dayshifts.
21855         (dayshift): New rule.
21856         (rel): Add dayshift.
21857         (relative_time_table) [tomorrow, yesterday, today, now]:
21858         Use tDAY_SHIFT in place of tDAY_UNIT.
21859         * tests/test-getdate.c: Add tests for now-disallowed countable
21860         dayshifts, e.g., "4 yesterday ago".
21861
21862 2008-09-29  Bruno Haible  <bruno@clisp.org>
21863
21864         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
21865         * tests/test-posix_spawn1.in.sh: Renamed from
21866         tests/test-posix_spawn.in.sh.
21867         * tests/test-posix_spawn2.c: New file.
21868         * tests/test-posix_spawn2.in.sh: New file.
21869         * modules/posix_spawnp-tests (Files): Update.
21870         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
21871
21872 2008-09-29  Bruno Haible  <bruno@clisp.org>
21873
21874         Propagate effects of putenv/setenv/unsetenv to child processes.
21875         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
21876         * lib/pipe.c (create_pipe): Likewise.
21877
21878 2008-09-29  Bruno Haible  <bruno@clisp.org>
21879
21880         Enable use of shell scripts as executables in mingw.
21881         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
21882         run the program as a shell script.
21883         * lib/pipe.c (create_pipe): Likewise.
21884         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
21885         resulting array.
21886
21887 2008-09-29  Eric Blake  <ebb9@byu.net>
21888
21889         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
21890
21891 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
21892
21893         * doc/posix-functions/accept.texi: Update mingw problems.
21894         * doc/posix-functions/bind.texi: Update mingw problems.
21895         * doc/posix-functions/close.texi: Update mingw problems.
21896         * doc/posix-functions/connect.texi: Update mingw problems.
21897         * doc/posix-functions/getpeername.texi: Update mingw problems.
21898         * doc/posix-functions/getsockname.texi: Update mingw problems.
21899         * doc/posix-functions/getsockopt.texi: Update mingw problems.
21900         * doc/posix-functions/ioctl.texi: Update mingw problems.
21901         * doc/posix-functions/listen.texi: Update mingw problems.
21902         * doc/posix-functions/recv.texi: Update mingw problems.
21903         * doc/posix-functions/recvfrom.texi: Update mingw problems.
21904         * doc/posix-functions/select.texi: Update mingw problems.
21905         * doc/posix-functions/send.texi: Update mingw problems.
21906         * doc/posix-functions/sendto.texi: Update mingw problems.
21907         * doc/posix-functions/setsockopt.texi: Update mingw problems.
21908         * doc/posix-functions/socket.texi: Update mingw problems.
21909
21910 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21911             Bruno Haible  <bruno@clisp.org>
21912
21913         * lib/sys_select.in.h: Include sys/time.h.
21914         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
21915         * modules/sys_select: Depend on sys_time.
21916         * tests/test-sys_select.c: Test that sys/select.h defines struct
21917         timeval fully.
21918
21919 2008-09-29  Bruno Haible  <bruno@clisp.org>
21920
21921         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
21922         * lib/sys_select.in.h: Likewise.
21923
21924 2008-09-29  Bruno Haible  <bruno@clisp.org>
21925
21926         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
21927
21928 2008-09-29  Bruno Haible  <bruno@clisp.org>
21929
21930         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
21931         Set LIBSOCKET instead of augmenting LIBS.
21932         * modules/sockets (Link): New section.
21933         * modules/sockets-tests (test_sockets_LDADD): New variable.
21934         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
21935         * modules/poll-tests (test_poll_LDADD): New variable.
21936         * NEWS: Document the change.
21937
21938 2008-09-29  Bruno Haible  <bruno@clisp.org>
21939
21940         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
21941         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
21942         ARPA_INET_H directly.
21943         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
21944
21945 2008-09-28  Bruno Haible  <bruno@clisp.org>
21946
21947         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
21948         from gl_HEADER_SYS_SOCKET.
21949         (gl_HEADER_SYS_SOCKET): Invoke it.
21950         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21951
21952 2008-09-28  Bruno Haible  <bruno@clisp.org>
21953
21954         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
21955         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
21956         Needed on OSF/1 4.0.
21957
21958 2008-09-28  Bruno Haible  <bruno@clisp.org>
21959
21960         Override open more carefully.
21961         * lib/open.c (orig_open): New function.
21962         (rpl_open): Use orig_open instead of open.
21963         * lib/fcntl.in.h: Add special invocation convention.
21964         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
21965         (gl_FUNC_OPEN): Invoke it.
21966
21967         Override freopen more carefully.
21968         * lib/freopen.c (orig_freopen): New function.
21969         (rpl_freopen): Use orig_freopen instead of freopen.
21970         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
21971         (gl_FUNC_FREOPEN): Invoke it.
21972
21973         Override fopen more carefully.
21974         * lib/fopen.c (orig_fopen): New function.
21975         (rpl_fopen): Use orig_fopen instead of fopen.
21976         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
21977         (gl_FUNC_FOPEN): Invoke it.
21978         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
21979
21980 2008-09-28  Bruno Haible  <bruno@clisp.org>
21981
21982         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
21983         SIGPIPE.
21984
21985 2008-09-28  Bruno Haible  <bruno@clisp.org>
21986
21987         * tests/test-sigaction.c (handler, main): Disable the check whether
21988         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
21989         glibc systems with LinuxThreads.
21990
21991 2008-09-28  Bruno Haible  <bruno@clisp.org>
21992
21993         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
21994
21995         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
21996         with AIX xlc.
21997         * lib/fcntl.in.h (open): Likewise.
21998         Reported by Rainer Tammer <tammer@tammer.net>.
21999
22000 2008-09-28  Bruno Haible  <bruno@clisp.org>
22001
22002         * modules/posix_spawnp-tests: New file.
22003         * tests/test-posix_spawn.c: New file.
22004         * tests/test-posix_spawn.in.sh: New file.
22005
22006         New module 'posix_spawnp'.
22007         * modules/posix_spawnp: New file.
22008         * lib/spawnp.c: New file, from GNU libc with modifications.
22009         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
22010
22011         New module 'posix_spawn'.
22012         * modules/posix_spawn: New file.
22013         * lib/spawn.c: New file, from GNU libc with modifications.
22014         * doc/posix-functions/posix_spawn.texi: Mention the new module.
22015
22016         New module 'posix_spawnattr_destroy'.
22017         * modules/posix_spawnattr_destroy: New file.
22018         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
22019         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
22020         module.
22021
22022         New module 'posix_spawnattr_setsigmask'.
22023         * modules/posix_spawnattr_setsigmask: New file.
22024         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
22025         modifications.
22026         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
22027         new module.
22028
22029         New module 'posix_spawnattr_getsigmask'.
22030         * modules/posix_spawnattr_getsigmask: New file.
22031         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
22032         modifications.
22033         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
22034         new module.
22035
22036         New module 'posix_spawnattr_setsigdefault'.
22037         * modules/posix_spawnattr_setsigdefault: New file.
22038         * lib/spawnattr_setdefault.c: New file, from GNU libc with
22039         modifications.
22040         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
22041         new module.
22042
22043         New module 'posix_spawnattr_getsigdefault'.
22044         * modules/posix_spawnattr_getsigdefault: New file.
22045         * lib/spawnattr_getdefault.c: New file, from GNU libc with
22046         modifications.
22047         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
22048         new module.
22049
22050         New module 'posix_spawnattr_setschedpolicy'.
22051         * modules/posix_spawnattr_setschedpolicy: New file.
22052         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
22053         modifications.
22054         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
22055         new module.
22056
22057         New module 'posix_spawnattr_getschedpolicy'.
22058         * modules/posix_spawnattr_getschedpolicy: New file.
22059         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
22060         modifications.
22061         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
22062         new module.
22063
22064         New module 'posix_spawnattr_setschedparam'.
22065         * modules/posix_spawnattr_setschedparam: New file.
22066         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
22067         modifications.
22068         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
22069         new module.
22070
22071         New module 'posix_spawnattr_getschedparam'.
22072         * modules/posix_spawnattr_getschedparam: New file.
22073         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
22074         modifications.
22075         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
22076         new module.
22077
22078         New module 'posix_spawnattr_setpgroup'.
22079         * modules/posix_spawnattr_setpgroup: New file.
22080         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
22081         modifications.
22082         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
22083         module.
22084
22085         New module 'posix_spawnattr_getpgroup'.
22086         * modules/posix_spawnattr_getpgroup: New file.
22087         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
22088         modifications.
22089         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
22090         module.
22091
22092         New module 'posix_spawnattr_setflags'.
22093         * modules/posix_spawnattr_setflags: New file.
22094         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
22095         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
22096         module.
22097
22098         New module 'posix_spawnattr_getflags'.
22099         * modules/posix_spawnattr_getflags: New file.
22100         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
22101         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
22102         module.
22103
22104         New module 'posix_spawnattr_init'.
22105         * modules/posix_spawnattr_init: New file.
22106         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
22107         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
22108         module.
22109
22110         New module 'posix_spawn_file_actions_destroy'.
22111         * modules/posix_spawn_file_actions_destroy: New file.
22112         * lib/spawn_faction_destroy.c: New file, from GNU libc with
22113         modifications.
22114         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
22115         the new module.
22116
22117         New module 'posix_spawn_file_actions_addopen'.
22118         * modules/posix_spawn_file_actions_addopen: New file.
22119         * lib/spawn_faction_addopen.c: New file, from GNU libc with
22120         modifications.
22121         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
22122         the new module.
22123
22124         New module 'posix_spawn_file_actions_adddup2'.
22125         * modules/posix_spawn_file_actions_adddup2: New file.
22126         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
22127         modifications.
22128         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
22129         the new module.
22130
22131         New module 'posix_spawn_file_actions_addclose'.
22132         * modules/posix_spawn_file_actions_addclose: New file.
22133         * lib/spawn_faction_addclose.c: New file, from GNU libc with
22134         modifications.
22135         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
22136         the new module.
22137
22138         New module 'posix_spawn_file_actions_init'.
22139         * modules/posix_spawn_file_actions_init: New file.
22140         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
22141         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
22142         new module.
22143
22144         New module 'posix_spawn-internal'.
22145         * modules/posix_spawn-internal: New file.
22146         * lib/spawn_int.h: New file, from GNU libc with modifications.
22147         * lib/spawni.c: New file, from GNU libc with modifications.
22148         * m4/posix_spawn.m4: New file.
22149
22150         New module 'spawn'.
22151         * modules/spawn: New file.
22152         * lib/spawn.in.h: New file, from GNU libc with modifications.
22153         * m4/spawn_h.m4: New file.
22154         * doc/posix-headers/spawn.texi: Mention the new module.
22155
22156 2008-09-28  Bruno Haible  <bruno@clisp.org>
22157
22158         * modules/sched-tests: New file.
22159         * tests/test-sched.c: New file.
22160
22161         New module 'sched'.
22162         * modules/sched: New file.
22163         * lib/sched.in.h: New file.
22164         * m4/sched_h.m4: New file.
22165         * doc/posix-headers/sched.texi: Mention the new module.
22166
22167 2008-09-27  Eric Blake  <ebb9@byu.net>
22168
22169         Fix previous patch, and tweak references to $0.
22170         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
22171         (func_version, func_gnulib_dir): Don't call this program
22172         gnulib-tool.
22173         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
22174         with using $0 in function.
22175         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
22176         (func_fatal_error): Reuse the name the user invoked us with.
22177
22178 2008-09-27  Bruno Haible  <bruno@clisp.org>
22179
22180         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
22181         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
22182         (gl_ICONV_H): Not here.
22183         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
22184         instead of assigning ICONV_H directly.
22185
22186         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
22187         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
22188         WCHAR_H directly.
22189
22190 2008-09-27  Bruno Haible  <bruno@clisp.org>
22191
22192         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
22193         * modules/arpa_inet (Depends-on): Add link-warning.
22194         (Makefile.am): Insert the definition of GL_LINK-WARNING.
22195         * modules/unistd (Makefile.am): Likewise.
22196
22197 2008-09-26  Bruno Haible  <bruno@clisp.org>
22198
22199         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
22200         variables.
22201         (func_version): Essentially copied from gnulib-tool.
22202         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
22203         func_readlink): Copied from gnulib-tool.
22204
22205 2008-09-26  Bruno Haible  <bruno@clisp.org>
22206
22207         * gnulib-tool (func_version): Change directory to $gnulib_dir before
22208         invoking git-version-gen.
22209
22210 2008-09-26  Bruno Haible  <bruno@clisp.org>
22211
22212         * posix-modules: Update to directory names changed on 2008-01-19.
22213         Remove commas in output before splitting into words. No more need to
22214         avoid 'ftruncate' since 2007-02-19.
22215
22216 2008-09-26  Bruno Haible  <bruno@clisp.org>
22217
22218         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
22219
22220 2008-09-26  Bruno Haible  <bruno@clisp.org>
22221
22222         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
22223         * modules/fwriteerror (Depends-on): Add errno.
22224
22225 2008-09-26  Bruno Haible  <bruno@clisp.org>
22226
22227         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
22228         * tests/test-vc-list-files-cvs.sh: Likewise.
22229
22230 2008-09-26  Bruno Haible  <bruno@clisp.org>
22231
22232         * doc/posix-headers/sys_resource.texi: Reorder items.
22233
22234 2008-09-26  Jim Meyering  <meyering@redhat.com>
22235
22236         fts: tweak inode comparison function
22237         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
22238         inode numbers, as documented.
22239
22240         fts: sort dirent entries on inode number before traversing
22241         This avoids a quadratic, seek-related performance penalty when
22242         operating on a directory containing many entries (measurable at 10k;
22243         3.5 hours at 2 million entries with a cold cache) on certain types
22244         of file systems, including ext3 and ext4, but not tmpfs.
22245         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
22246         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
22247         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
22248         (fs_handles_readdir_ordered_dirents_efficiently): New function.
22249         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
22250         (fts_build): Set the stat.st_ino member from D_INO.
22251         If it is likely to be useful, sort dirent entries on inode number.
22252
22253         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
22254         and the struct statfs.f_type member.
22255         * modules/fts (Depends-on): Add d-ino.
22256
22257 2008-09-26  Bruno Haible  <bruno@clisp.org>
22258
22259         * modules/sigpipe-die (Depends-on): Add sigpipe.
22260
22261         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
22262         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
22263         and GNULIB_STDIO_H_SIGPIPE are set.
22264         * lib/stdio-write.c: New file.
22265         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
22266         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22267         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22268         REPLACE_STDIO_WRITE_FUNCS.
22269         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
22270         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22271         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22272         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22273         * modules/stdio (Files): Add lib/stdio-write.c.
22274         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
22275         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22276         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22277         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22278         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
22279         REPLACE_FPRINTF_POSIX.
22280         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
22281         REPLACE_PRINTF_POSIX.
22282         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
22283         REPLACE_VFPRINTF_POSIX.
22284         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
22285         REPLACE_VPRINTF_POSIX.
22286         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
22287         SIGPIPE issue.
22288         * doc/posix-functions/fputc.texi: Likewise.
22289         * doc/posix-functions/fputs.texi: Likewise.
22290         * doc/posix-functions/fwrite.texi: Likewise.
22291         * doc/posix-functions/printf.texi: Likewise.
22292         * doc/posix-functions/putc.texi: Likewise.
22293         * doc/posix-functions/putchar.texi: Likewise.
22294         * doc/posix-functions/puts.texi: Likewise.
22295         * doc/posix-functions/vfprintf.texi: Likewise.
22296         * doc/posix-functions/vprintf.texi: Likewise.
22297
22298         * modules/safe-write (Depends-on): Add write.
22299
22300         * modules/sigpipe-tests: New file.
22301         * tests/test-sigpipe.c: New file.
22302         * tests/test-sigpipe.sh: New file.
22303
22304         * modules/write: New file.
22305         * lib/unistd.in.h: Include <sys/types.h>.
22306         (write): New declaration.
22307         * lib/write.c: New file.
22308         * m4/write.m4: New file.
22309         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22310         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
22311         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
22312         GNULIB_WRITE, REPLACE_WRITE.
22313         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
22314         and the SIGPIPE issue.
22315
22316         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
22317         (raise): New declaration.
22318         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
22319         (ext_signal): New function.
22320         (rpl_raise): New function.
22321         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
22322         GNULIB_SIGNAL_H_SIGPIPE.
22323         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
22324         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
22325
22326         * modules/sigpipe: New file.
22327         * m4/sigpipe.m4: New file.
22328
22329 2008-09-25  Derek Price  <derek@ximbiot.com>
22330             Bruno Haible  <bruno@clisp.org>
22331
22332         * gnulib-tool (func_import): Report all license incompatibilities, not
22333         just the first one.
22334
22335 2008-09-25  Bruno Haible  <bruno@clisp.org>
22336
22337         * gnulib-tool (func_import): When computing the edits, consider not
22338         only the Makefile.ams that exist but also those that will be generated.
22339
22340 2008-09-25  Simon Josefsson  <simon@josefsson.org>
22341
22342         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
22343         fixes gnulib-tool --test warning about duplicate dependency.
22344
22345 2008-09-25  Bruno Haible  <bruno@clisp.org>
22346
22347         * gnulib-tool: Don't ask the user to perform edits in the generated
22348         Makefile.ams.
22349         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
22350         apply to the Makefile.am being generated.
22351         (func_emit_tests_Makefile_am): Execute edits that apply to the
22352         Makefile.am being generated.
22353         (func_import): Setup list of Makefile.am edits before emitting the
22354         Makefile.ams, not at the end.
22355         (func_create_testdir): Update.
22356         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22357
22358 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22359
22360         * gnulib-tool (func_import): Store the --tests-base option in the
22361         comment in gnulib-cache.m4.
22362
22363 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
22364
22365         * NEWS: Document increased portability that sys_select now provides.
22366
22367         * lib/sys_select.in.h: Install select wrapper.
22368         * lib/sys_socket.in.h: Use more descriptive name when there is no
22369         select wrapper.
22370         * lib/winsock-select.c: New.
22371         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
22372         Require gl_HEADER_SYS_SOCKET.
22373         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
22374         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
22375         * tests/test-sys_select.c: Add functional tests.
22376
22377 2008-09-24  Eric Blake  <ebb9@byu.net>
22378
22379         open, fopen: close fd leak in last patch
22380         * lib/open.c (rpl_open): Close fd before returning error.
22381         * lib/fopen.c (rpl_fopen): Close fd before returning error.
22382         * doc/posix-functions/open.texi (open): Document that Irix also
22383         has the bug.
22384         * doc/posix-functions/fopen.texi (fopen): Likewise.
22385         Reported by Paolo Bonzini.
22386
22387 2008-09-24  Bruno Haible  <bruno@clisp.org>
22388
22389         Ensure that a filename ending in a slash cannot be used to access a
22390         non-directory.
22391         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
22392         to check whether it's really a directory.
22393         * lib/fopen.c: Include fcntl.h, unistd.h.
22394         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
22395         and fdopen().
22396         * modules/fopen (Depends-on): Add unistd.
22397         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
22398         * tests/test-fopen.c (main): Likewise.
22399         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
22400         * doc/posix-functions/fopen.texi: Likewise.
22401         Reported by Eric Blake.
22402
22403 2008-09-23  Eric Blake  <ebb9@byu.net>
22404
22405         c-stack: avoid compiler optimizations when provoking overflow
22406         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
22407         recursion harder to optimize, to ensure a stack overflow occurs.
22408         * tests/test-c-stack.c (recurse): Likewise.
22409         Borrowed from libsigsegv.
22410
22411         c-stack: work around Irix sigaltstack bug
22412         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
22413         whether sigaltstack uses wrong end of stack_t (copied in part from
22414         libsigsegv).
22415         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
22416         Irix bug, without requiring an over-allocation.
22417         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
22418         bug.
22419
22420         fopen: document mingw bug on directories
22421         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
22422         not allowing a stream visiting a directory, even though reading
22423         from such a stream is not portable.
22424
22425 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22426
22427         * lib/poll.c: Rewrite.
22428         * modules/poll: Depend on alloca.
22429
22430 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22431
22432         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
22433         instead define prototypes for a full set of wrappers.  Ensure
22434         that Cygwin does not use the compatibility code, which is only
22435         for MinGW.
22436         * lib/winsock.c: New.
22437         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
22438         * modules/sys_socket: Add lib/winsock.c.
22439
22440         * modules/poll-tests: Add errno and perror.
22441         * tests/test-poll.c: Use ioctl, not ioctlsocket.
22442
22443 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22444
22445         * tests/test-poll.c: Downgrade minimum needed Winsock version.
22446
22447 2008-09-23  Bruno Haible  <bruno@clisp.org>
22448
22449         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
22450         * doc/glibc-functions/*: Likewise.
22451
22452 2008-09-23  Simon Josefsson  <simon@josefsson.org>
22453
22454         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
22455         success.
22456
22457 2008-09-22  Eric Blake  <ebb9@byu.net>
22458             Bruno Haible  <bruno@clisp.org>
22459
22460         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
22461         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
22462         supply %A but mishandle pseudo-NaN.
22463         Reported by Simon Josefsson.
22464
22465 2008-09-21  Bruno Haible  <bruno@clisp.org>
22466
22467         * tests/test-lock.c (main): Tweak skip message.
22468         * tests/test-tls.c (main): Likewise.
22469
22470 2008-09-21  Bruno Haible  <bruno@clisp.org>
22471
22472         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
22473         whether 'struct sigaction' has sa_sigaction here...
22474         (gl_PREREQ_SIG_HANDLER_H): ... not here.
22475         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
22476
22477 2008-09-21  Bruno Haible  <bruno@clisp.org>
22478
22479         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
22480         section.
22481         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
22482         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
22483         the new section.
22484         (Support for obsolete systems lacking POSIX:2001): New section.
22485         (String handling <string.h>): Move strdup to the new section.
22486         Suggested by Simon Josefsson and Paolo Bonzini.
22487
22488 2008-09-21  Bruno Haible  <bruno@clisp.org>
22489
22490         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
22491         exponents in %e and %g results on 'long double'. Needed for mingw's
22492         improved *printf functions.
22493         * tests/test-vasprintf-posix.c (test_function): Likewise.
22494         * tests/test-snprintf-posix.h (test_function): Likewise.
22495         * tests/test-sprintf-posix.h (test_function): Likewise.
22496         Reported by Eric Blake.
22497
22498 2008-09-21  Bruno Haible  <bruno@clisp.org>
22499
22500         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
22501         * tests/test-sprintf-posix.h (test_function): Likewise.
22502
22503 2008-09-21  Bruno Haible  <bruno@clisp.org>
22504
22505         * modules/getpass (Depends-on): Add strdup-posix.
22506
22507         New module 'strdup-posix'.
22508         * modules/strdup-posix: New file.
22509         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
22510         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
22511         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
22512         REPLACE_STRDUP.
22513         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
22514         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
22515         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
22516         strdup-posix.
22517
22518         * modules/strdup (Depends-on): Remove malloc-posix.
22519
22520 2008-09-20  Bruno Haible  <bruno@clisp.org>
22521
22522         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
22523         Wildenhues.
22524
22525 2008-09-20  Bruno Haible  <bruno@clisp.org>
22526
22527         Ensure that wint_t gets defined on IRIX 5.3.
22528         * lib/wchar.in.h (wint_t): Define if not defined by the system.
22529         * lib/wctype.in.h (wint_t): Likewise.
22530         (__wctype_wint_t): Remove type.
22531         (isw*): Use wint_t instead of __wctype_wint_t.
22532         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
22533         * modules/wchar (Files): Add m4/wint_t.m4.
22534         (Makefile.am): Substitute HAVE_WINT_T.
22535         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
22536         * tests/test-wctype.c: Check that wint_t is defined.
22537         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
22538         * doc/posix-headers/wctype.texi: Likewise.
22539         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
22540
22541 2008-09-18  Bruno Haible  <bruno@clisp.org>
22542
22543         * gnulib-tool (func_exit): Update comment.
22544
22545 2008-09-18  Simon Josefsson  <simon@josefsson.org>
22546
22547         * modules/getaddrinfo (Depends-on): Remove strdup, this module
22548         assumes strdup exists and does not depend on strdup to return
22549         ENOMEM on out of memory conditions.
22550
22551 2008-09-18  Bruno Haible  <bruno@clisp.org>
22552
22553         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
22554         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
22555         digits for the exponent.
22556
22557 2008-09-18  Jim Meyering  <meyering@redhat.com>
22558             Bruno Haible  <bruno@clisp.org>
22559
22560         * lib/vasnprintf.c (decimal_point_char): Define also if
22561         NEED_PRINTF_INFINITE_LONG_DOUBLE.
22562
22563 2008-09-16  Bruno Haible  <bruno@clisp.org>
22564         and Eric Blake  <ebb9@byu.net>
22565
22566         vasnprintf: support Irix 5.3
22567         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
22568         that mishandle long double infinity.
22569         Reported by Tom G. Christensen.
22570
22571 2008-09-16  Bruno Haible  <bruno@clisp.org>
22572
22573         * doc/glibc-functions/scandir.texi: Mention the function is missing on
22574         Solaris 9.
22575         * doc/glibc-functions/alphasort.texi: Likewise.
22576         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
22577
22578 2008-09-16  Jim Meyering  <meyering@redhat.com>
22579
22580         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
22581         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
22582         a umask modification leak out of a subshell.  Otherwise, the
22583         opensolaris /bin/sh would be accepted and thus cause unwarranted
22584         failures in the coreutils test suite.
22585
22586 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
22587
22588         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
22589         to succeed.
22590
22591 2008-09-16  Jim Meyering  <meyering@redhat.com>
22592
22593         avoid spurious test failure when library is built without ACL support
22594         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
22595         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
22596         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
22597         * tests/test-copy-acl.sh: Likewise.
22598
22599 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22600
22601         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
22602         based on character occurrence counts.
22603
22604 2008-09-15  Eric Blake  <ebb9@byu.net>
22605
22606         tests: avoid some compiler warnings
22607         * tests/test-memchr.c (main): Pass NULL indirectly.
22608         * tests/test-closein.c (main): Avoid unused variable.
22609
22610 2008-09-15  Bruno Haible  <bruno@clisp.org>
22611
22612         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
22613         are missing on OpenBSD 4.0 individually.
22614         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22615
22616 2008-09-15  Bruno Haible  <bruno@clisp.org>
22617
22618         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
22619         * doc/posix-functions/strerror.texi: Mention also Cygwin.
22620         * doc/posix-functions/perror.texi: Likewise.
22621         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
22622         is missing.
22623         Reported by Eric Blake.
22624
22625         * lib/errno.in.h: Use replacement values >= 2000.
22626         Reported by Eric Blake.
22627
22628 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22629
22630         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
22631         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
22632         limit.
22633         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
22634         compareseq was aborted.
22635
22636 2008-09-14  Bruno Haible  <bruno@clisp.org>
22637
22638         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
22639         yvec_edit_count.
22640         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
22641         (fstrcmp_bounded): Simplify result computation accordingly.
22642
22643 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22644
22645         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
22646         (fstrcmp): Define in terms of fstrcmp_bounded.
22647         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
22648         lower_bound argument.
22649         Return quickly if the result is certainly < lower_bound.
22650         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
22651
22652 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22653
22654         * lib/diffseq.h (EARLY_ABORT): New macro.
22655         (compareseq): Change return type to bool. Return true when EARLY_ABORT
22656         evaluates to true.
22657
22658 2008-09-14  Bruno Haible  <bruno@clisp.org>
22659
22660         * modules/perror-tests: New file.
22661         * tests/test-perror.sh: New file.
22662         * tests/test-perror.c: New file.
22663
22664         New module 'perror'.
22665         * lib/stdio.in.h (perror): New declaration.
22666         * lib/perror.c: New file.
22667         * m4/perror.m4: New file.
22668         * modules/perror: New file.
22669         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
22670         * doc/posix-functions/perror.texi: Mention the perror module.
22671         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
22672         REPLACE_PERROR.
22673         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
22674         REPLACE_PERROR.
22675
22676 2008-09-14  Bruno Haible  <bruno@clisp.org>
22677
22678         * modules/stdio (Makefile.am): Reorder to match the order in
22679         lib/stdio.in.h.
22680         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
22681
22682 2008-09-13  Bruno Haible  <bruno@clisp.org>
22683
22684         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
22685
22686 2008-09-13  Bruno Haible  <bruno@clisp.org>
22687
22688         Extend strerror to cover the added errno values.
22689         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
22690         (rpl_strerror): Provide error messages for the added errno values and
22691         for the WSA* values.
22692         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
22693         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
22694         strerror.
22695         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
22696         * modules/strerror (Depends-on): Add errno.
22697         * doc/posix-functions/strerror.texi: Document the change.
22698         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
22699         and EOVERFLOW.
22700
22701 2008-09-13  Bruno Haible  <bruno@clisp.org>
22702
22703         * modules/EOVERFLOW: Remove file.
22704         * m4/eoverflow.m4: Remove file.
22705         * modules/EOVERFLOW-tests: Remove file.
22706         * tests/test-EOVERFLOW.c: Remove file.
22707         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
22708         * modules/ftell (Depends-on): Likewise.
22709         * modules/getdelim (Depends-on): Likewise.
22710         * modules/getugroups (Depends-on): Likewise.
22711         * modules/poll (Depends-on): Likewise.
22712         * modules/snprintf (Depends-on): Likewise.
22713         * modules/sprintf-posix (Depends-on): Likewise.
22714         * modules/vasnprintf (Depends-on): Likewise.
22715         * modules/vasprintf (Depends-on): Likewise.
22716         * modules/vfprintf-posix (Depends-on): Likewise.
22717         * modules/vsnprintf (Depends-on): Likewise.
22718         * modules/vsprintf-posix (Depends-on): Likewise.
22719         * modules/xvasprintf (Depends-on): Likewise.
22720         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22721         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
22722         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
22723         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
22724         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22725         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
22726         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
22727         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
22728         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22729         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
22730         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
22731         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
22732         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22733         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
22734         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
22735         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
22736         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22737         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
22738         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
22739         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
22740         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22741         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
22742         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
22743         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
22744         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
22745         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22746         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
22747         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
22748         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
22749         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
22750         * MODULES.html.sh: Remove EOVERFLOW.
22751         * NEWS: Mention the change.
22752
22753 2008-09-13  Bruno Haible  <bruno@clisp.org>
22754
22755         * modules/errno-tests: New file.
22756         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
22757
22758         * lib/errno.in.h: New file.
22759         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
22760         * modules/errno: New file.
22761         * doc/posix-headers/errno.texi: Update documentation.
22762         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
22763
22764 2008-09-13  Bruno Haible  <bruno@clisp.org>
22765
22766         * tests/test-poll.c: Use #if for native Windows, rather than testing
22767         __MSVCRT__.
22768
22769 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22770             Bruno Haible  <bruno@clisp.org>
22771
22772         * lib/glob.c: Don't include <pwd.h> on native Windows.
22773         (WINDOWS32): New macro.
22774         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
22775
22776 2008-09-13  Bruno Haible  <bruno@clisp.org>
22777
22778         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
22779         (ETIMEDOUT): Remove macro.
22780         (glthread_cond_timedwait_multithreaded): New declaration.
22781         (glthread_cond_timedwait): Use it.
22782         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
22783         (glthread_cond_timedwait_multithreaded): New function.
22784
22785 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22786
22787         * modules/poll-tests: Do not check for io.h.
22788         * tests/test-poll.c: Check for __MSVCRT__ instead.
22789
22790 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22791
22792         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
22793         * modules/poll-tests: Add inet_pton, stdbool, sockets.
22794         * tests/test-poll.c: Use them.  Use _pipe on Windows.
22795
22796 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22797
22798         * modules/poll-tests: New.
22799         * tests/test-poll.c: New.
22800
22801 2008-09-12  Eric Blake  <ebb9@byu.net>
22802
22803         frexp: test for NetBSD failure on -0.0
22804         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
22805         not all, bugs from NetBSD 3.0 have been fixed.
22806         * doc/posix-functions/frexp.texi (frexp): Document bug.
22807         Reported by Thomas Klausner.
22808
22809         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
22810         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
22811         literal -0.0.
22812         Reported by Jonathan C. Patschke <jp@centtech.com>.
22813
22814 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22815
22816         * lib/glthread/cond.h: Use dummy implementation also if
22817         USE_WIN32_THREADS.
22818
22819 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22820
22821         * modules/fnmatch-posix (License): Change to LGPLv2+.
22822         * modules/fnmatch-gnu (License): Likewise.
22823
22824 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22825
22826         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
22827
22828 2008-09-11  Jim Meyering  <meyering@redhat.com>
22829
22830         * users.txt: Add gtk-vnc.
22831
22832 2008-09-08  Simon Josefsson  <simon@josefsson.org>
22833
22834         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
22835         rotate amounts.
22836
22837         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
22838         required for 16-bit and 8-bit rotates.
22839         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
22840         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
22841         UINT8_MAX instead of hard-coded constants.
22842         Suggested by Paul Eggert.
22843
22844 2008-09-07  Bruno Haible  <bruno@clisp.org>
22845
22846         * tests/test-striconveh.c (main): Check behaviour when converting from
22847         UTF-7.
22848
22849         Make striconveh work better with stateful encodings.
22850         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
22851         that iconv does not increment the inptr when returning -1/EINVAL.
22852
22853 2008-09-07  Bruno Haible  <bruno@clisp.org>
22854
22855         * build-aux/config.rpath: Update according to libtool-2.2.6.
22856         * build-aux/config.libpath: Likewise.
22857
22858 2008-09-06  Bruno Haible  <bruno@clisp.org>
22859
22860         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
22861         * lib/freadptr.c (freadptr): Likewise.
22862         * lib/freadseek.c (freadptrinc): Likewise.
22863         Reported by Simon Josefsson.
22864
22865 2008-09-06  Bruno Haible  <bruno@clisp.org>
22866
22867         * modules/freadptr (License): Change to LGPLv2+.
22868         * modules/freadseek (License): Likewise.
22869         Suggested by Eric Blake.
22870
22871         * modules/memchr2 (License): Change to LGPLv2+.
22872         Approved by Eric Blake.
22873
22874 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22875             Bruno Haible  <bruno@clisp.org>
22876
22877         Make gnulib-tool work with native 'sed' on AIX.
22878         * gnulib-tool (sed_noop): New variable.
22879         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
22880         func_add_or_update, func_create_testdir): Use it to initialize sed
22881         script variables.
22882         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
22883
22884 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
22885             Bruno Haible  <bruno@clisp.org>
22886
22887         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
22888         also works after #include directives.
22889
22890 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
22891
22892         getdate.y: reject an out-of-range timezone value
22893         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
22894         the range [-24...+24].  When specified with only one or two digits,
22895         * tests/test-getdate.c: Tests for the fix.
22896         * doc/getdate.texi: Document this change.
22897
22898 2008-09-03  Bruno Haible  <bruno@clisp.org>
22899
22900         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
22901
22902 2008-09-02  Simon Josefsson  <simon@josefsson.org>
22903
22904         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
22905         <bruce.korb@gmail.com> with ideas from Ben Pfaff
22906         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
22907         Blake <ebb9@byu.net>.
22908
22909         * tests/test-bitrotate.c: Add more test vectors.
22910
22911 2008-09-02  Eric Blake  <ebb9@byu.net>
22912
22913         vasnprintf-posix: handle large precision via %.*d
22914         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
22915         when handling it ourselves.
22916         * tests/test-vasnprintf-posix.c (test_function): Add test.
22917         * tests/test-snprintf-posix.h (test_function): Likewise.
22918         * tests/test-sprintf-posix.h (test_function): Likewise.
22919         * tests/test-vasprintf-posix.c (test_function): Likewise.
22920         Reported by Alain Guibert.
22921
22922 2008-09-01  Eric Blake  <ebb9@byu.net>
22923
22924         c-stack: make configure-time check more robust
22925         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
22926         successful sigaction call.
22927         Reported by Tom G. Christensen.
22928
22929 2008-09-01  Bruno Haible  <bruno@clisp.org>
22930
22931         New module 'findprog-lgpl'.
22932         * modules/findprog-lgpl: New file.
22933         * lib/findprog-lgpl.c: New file.
22934         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
22935         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
22936         to decide whether to use strdup or xstrdup, concatenated_filename or
22937         xconcatenated_filename.
22938
22939 2008-09-01  Bruno Haible  <bruno@clisp.org>
22940
22941         Split module 'concat-filename' into 'concat-filename' (LGPL) and
22942         'xconcat-filename' (GPL).
22943         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
22944         (License): Change to LGPLv2+.
22945         * modules/xconcat-filename: New file.
22946         * lib/concat-filename.h (concatenated_filename): Change specification.
22947         (xconcatenated_filename): New declaration.
22948         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
22949         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
22950         memory situations.
22951         * lib/xconcat-filename.c: New file.
22952         * NEWS: Mention the change.
22953         * lib/findprog.c: Include concat-filename.h, not filename.h.
22954         (find_in_path): Use xconcatenated_filename instead of
22955         concatenated_filename.
22956         * lib/javacomp.c: Include concat-filename.h, not filename.h.
22957         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
22958         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
22959         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
22960         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
22961         instead of concatenated_filename.
22962         * lib/javaexec.c: Include concat-filename.h, not filename.h.
22963         (execute_java_class): Use xconcatenated_filename instead of
22964         concatenated_filename.
22965         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
22966         * modules/javacomp (Depends-on): Likewise.
22967         * modules/javaexec (Depends-on): Likewise.
22968
22969 2008-09-01  Bruno Haible  <bruno@clisp.org>
22970
22971         Split module 'filename' into 'filename' and 'concat-filename'.
22972         * modules/filename: Keep only lib/filename.h.
22973         (License): Change to LGPLv2+.
22974         * modules/concat-filename: New file, extracted from modules/filename.
22975         * lib/filename.h (concatenated_filename): Remove declaration.
22976         * lib/concat-filename.h: New file, extracted from lib/filename.h.
22977         * lib/concat-filename.c: Include concat-filename.h.
22978         * NEWS: Mention the change.
22979
22980 2008-09-01  Simon Josefsson  <simon@josefsson.org>
22981
22982         * lib/bitrotate.h (rotl8, rotr8): Add.
22983
22984         * modules/bitrotate (configure.ac): Need
22985         AC_REQUIRE([AC_C_INLINE]).
22986         (Description): Mention stdint.h.  Reported by Bruno Haible
22987         <bruno@clisp.org>.
22988
22989         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
22990         Paolo Bonzini <bonzini@gnu.org>.
22991
22992 2008-08-31  Bruno Haible  <bruno@clisp.org>
22993
22994         Assume Solaris specific bi-arch conventions on Solaris systems.
22995         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
22996         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
22997         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
22998         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
22999         like acl_libdirstem.
23000         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
23001         acl_libdirstem.
23002         * NEWS: Mention the change.
23003         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
23004
23005 2008-08-31  Jim Meyering  <meyering@redhat.com>
23006
23007         * lib/strftime.h: Add comments describing the two added arguments.
23008
23009         remove duplicate #include directives
23010         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
23011         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
23012
23013 2008-08-31  Bruno Haible  <bruno@clisp.org>
23014
23015         New module 'sigpipe-die'.
23016         * modules/sigpipe-die: New file.
23017         * lib/sigpipe-die.h: New file.
23018         * lib/sigpipe-die.c: New file.
23019         * MODULES.html.sh (Signal handling): Add sigpipe-die.
23020
23021 2008-08-31  Bruno Haible  <bruno@clisp.org>
23022
23023         Don't override previously installed signal handlers.
23024         * lib/fatal-signal.c (saved_sigactions): New variable.
23025         (uninstall_handlers): Reset the signal to the saved handler, not
23026         to SIG_DFL (except when ignored).
23027         (install_handlers): Save the previous handlers.
23028
23029 2008-08-30  Bruno Haible  <bruno@clisp.org>
23030
23031         * gnulib-tool (func_reset_sigpipe): New function.
23032         (func_get_automake_snippet, func_modules_transitive_closure,
23033         func_import): Invoke it before a join command that reads from stdin,
23034         to avoid "echo: write error: Broken pipe" error messages on stderr.
23035         Reported by Sam Steingold <sds@gnu.org>.
23036
23037 2008-08-30  Bruno Haible  <bruno@clisp.org>
23038
23039         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
23040         Code copied from m4/open.m4.
23041         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
23042         access and the filename ends in a slash. Code copied from lib/open.c.
23043         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
23044         * tests/test-fopen.c (main): Check against bug with trailing slash.
23045
23046 2008-08-29  Bruno Haible  <bruno@clisp.org>
23047
23048         Avoid some "gcc -pedantic" warnings.
23049         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
23050         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
23051         * lib/dirent.in.h: Likewise.
23052         * lib/fcntl.in.h: Likewise.
23053         * lib/float.in.h: Likewise.
23054         * lib/iconv.in.h: Likewise.
23055         * lib/inttypes.in.h: Likewise.
23056         * lib/locale.in.h: Likewise.
23057         * lib/math.in.h: Likewise.
23058         * lib/netinet_in.in.h: Likewise.
23059         * lib/search.in.h: Likewise.
23060         * lib/signal.in.h: Likewise.
23061         * lib/stdarg.in.h: Likewise.
23062         * lib/stdint.in.h: Likewise.
23063         * lib/stdio.in.h: Likewise.
23064         * lib/stdlib.in.h: Likewise.
23065         * lib/string.in.h: Likewise.
23066         * lib/strings.in.h: Likewise.
23067         * lib/sys_select.in.h: Likewise.
23068         * lib/sys_socket.in.h: Likewise.
23069         * lib/sys_stat.in.h: Likewise.
23070         * lib/sys_time.in.h: Likewise.
23071         * lib/sysexits.in.h: Likewise.
23072         * lib/time.in.h: Likewise.
23073         * lib/unistd.in.h: Likewise.
23074         * lib/wchar.in.h: Likewise.
23075         * lib/wctype.in.h: Likewise.
23076         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
23077         * modules/fchdir (Makefile.am): Likewise.
23078         * modules/fcntl (Makefile.am): Likewise.
23079         * modules/float (Makefile.am): Likewise.
23080         * modules/iconv_open (Makefile.am): Likewise.
23081         * modules/inttypes (Makefile.am): Likewise.
23082         * modules/locale (Makefile.am): Likewise.
23083         * modules/math (Makefile.am): Likewise.
23084         * modules/netinet_in (Makefile.am): Likewise.
23085         * modules/search (Makefile.am): Likewise.
23086         * modules/signal (Makefile.am): Likewise.
23087         * modules/stdarg (Makefile.am): Likewise.
23088         * modules/stdint (Makefile.am): Likewise.
23089         * modules/stdio (Makefile.am): Likewise.
23090         * modules/stdlib (Makefile.am): Likewise.
23091         * modules/string (Makefile.am): Likewise.
23092         * modules/strings (Makefile.am): Likewise.
23093         * modules/sys_select (Makefile.am): Likewise.
23094         * modules/sys_socket (Makefile.am): Likewise.
23095         * modules/sys_stat (Makefile.am): Likewise.
23096         * modules/sys_time (Makefile.am): Likewise.
23097         * modules/sysexits (Makefile.am): Likewise.
23098         * modules/time (Makefile.am): Likewise.
23099         * modules/unistd (Makefile.am): Likewise.
23100         * modules/wchar (Makefile.am): Likewise.
23101         * modules/wctype (Makefile.am): Likewise.
23102         Reported by Reuben Thomas <rrt@sc3d.org>.
23103
23104 2008-08-29  Bruno Haible  <bruno@clisp.org>
23105
23106         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
23107         any more.
23108
23109 2008-08-29  Simon Josefsson  <simon@josefsson.org>
23110
23111         * MODULES.html.sh (Misc): Add bitrotate.
23112
23113         * modules/bitrotate: New file.
23114
23115         * lib/bitrotate.h: New file.
23116
23117         * modules/bitrotate-tests: New file.
23118
23119         * tests/test-bitrotate.c: New file.
23120
23121         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
23122         on the bitrotate module.
23123
23124         * lib/arctwo.c: Use new bitrotate module.
23125
23126 2008-08-29  Jim Meyering  <meyering@redhat.com>
23127
23128         bootstrap: merge changes from coreutils
23129         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
23130         of copied files.  Remove a kludge, now that this is fixed.
23131         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
23132         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
23133         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
23134
23135 2008-08-29  Bruno Haible  <bruno@clisp.org>
23136
23137         * MODULES.html.sh: Remove --cvs-urls option.
23138
23139 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
23140
23141         maint.mk: adjust to file name change
23142         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
23143
23144 2008-08-28  Jim Meyering  <meyering@redhat.com>
23145
23146         * modules/getndelim2 (License): Relicense to LGPLv2+.
23147         Approved by Richard Stallman for the version of 1995, and by
23148         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
23149
23150 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
23151
23152         * lib/getdelim.c (flockfile, funlockfile): Make all of them
23153         dummy if one is not available.  Do not touch them if
23154         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
23155         (getc_maybe_unlocked): New.
23156         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
23157
23158 2008-08-26  Eric Blake  <ebb9@byu.net>
23159
23160         doc/INSTALL: resync from autoconf
23161         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
23162         (INSTALL_PRELUDE): Delete; this is done more efficiently by
23163         moving...
23164         * install.texi [!autoconf]: ...here.  Resync from autoconf.
23165         * INSTALL: Regenerate.
23166         * INSTALL.ISO: New file.
23167         * INSTALL.UTF-8: Likewise.
23168
23169 2008-08-26  Jim Meyering  <meyering@redhat.com>
23170
23171         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
23172         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
23173         these definitions conditional, so that they may be overridden, too.
23174
23175 2008-08-26  Bruno Haible  <bruno@clisp.org>
23176
23177         Generate INSTALL file variants with prettier quotes.
23178         * doc/Makefile (INSTALL_PRELUDE): New macro.
23179         (INSTALL): Use it.
23180         (INSTALL.ISO, INSTALL.UTF-8): New rules.
23181
23182 2008-08-26  Bruno Haible  <bruno@clisp.org>
23183
23184         Run makeinfo in an English locale.
23185         * doc/Makefile (MAKEINFO): New variable.
23186
23187 2008-08-26  Bruno Haible  <bruno@clisp.org>
23188
23189         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
23190         Suggested by Eric Blake.
23191
23192 2008-08-25  Bruno Haible  <bruno@clisp.org>
23193
23194         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
23195
23196 2008-08-25  Eric Blake  <ebb9@byu.net>
23197
23198         c-stack: test that stack overflow can be caught
23199         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
23200         that platform allows handling stack overflow; at least OS/2 EMX
23201         has sigaltstack, but crashes before transferring control to
23202         handler on stack overflow.
23203         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
23204         check for HAVE_STACK_OVERFLOW_HANDLING.
23205         Reported by Elbert Pol.
23206
23207 2008-08-25  Bruno Haible  <bruno@clisp.org>
23208
23209         * doc/posix-functions/strftime.texi: Fix description of strftime
23210         module.
23211
23212 2008-08-24  Bruno Haible  <bruno@clisp.org>
23213
23214         * tests/uniwidth/test-uc_width2.c: New file.
23215         * tests/uniwidth/test-uc_width2.sh: New file.
23216         * modules/uniwidth/width-tests (Files): Add the new files.
23217         (TESTS): Add uniwidth/test-uc_width2.sh.
23218         (TESTS_ENVIRONMENT): New variable.
23219         (check_PROGRAMS): Add test-uc_width2.
23220         (test_uc_width2_SOURCES): New variable.
23221
23222         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
23223         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
23224         not 0x00AB.
23225         Reported by Alexander V. Lukyanov <lav@netis.ru>.
23226
23227 2008-08-22  Eric Blake  <ebb9@byu.net>
23228
23229         test-lock, test-tls: mention why a test is skipped
23230         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
23231         skipped.
23232         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
23233
23234         count-one-bits: relax license
23235         * modules/count-one-bits (License): Relicense to LGPLv2+.
23236         Suggested by Ludovic Courtès, approved by Ben Pfaff.
23237
23238 2008-08-22  Andreas Schwab  <schwab@suse.de>
23239
23240         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
23241         Remove spurious space in assignment.
23242
23243 2008-08-21  Simon Josefsson  <simon@josefsson.org>
23244
23245         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
23246         Paul Eggert <eggert@CS.UCLA.EDU>.
23247
23248 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
23249
23250         * modules/gettext: Add m4/threadlib.m4.
23251
23252 2008-08-19  Eric Blake  <ebb9@byu.net>
23253
23254         test-c-stack: fix compilation failure on FreeBSD 5.0
23255         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
23256         headers before <sys/resource.h>.
23257         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
23258         the bug.
23259         Reported by Nelson H. F. Beebe.
23260
23261         strverscmp: migrate from "strverscmp.h" to <string.h>
23262         * modules/string (Makefile.am): Add new hooks.
23263         * modules/strverscmp (Files): Remove strverscmp.h.
23264         (Depends-on): Add string.
23265         (configure.ac): Add indicator.
23266         (Include): Mention new header.
23267         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
23268         defaults.
23269         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
23270         results.
23271         * lib/strverscmp.h: Delete.
23272         * lib/string.in.h (strverscmp): Provide declaration, when needed.
23273         * tests/test-strverscmp.c (includes): Adjust client.
23274         * lib/check-version.c (includes): Likewise.
23275         * NEWS: Document the change.
23276
23277         strverscmp: add unit test
23278         * modules/strverscmp-tests: New file.
23279         * tests/test-strverscmp.c: Likewise.
23280
23281 2008-08-19  Simon Josefsson  <simon@josefsson.org>
23282
23283         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
23284         regarding Windows crypto stuff, from Mono.
23285
23286 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
23287
23288         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
23289         if present, for intel RND.  Return error on failures.
23290
23291 2008-08-18  Ben Pfaff  <blp@gnu.org>
23292
23293         gitlog-to-changelog: give better diagnostic for failed pipe-open
23294         * build-aux/gitlog-to-changelog: Improve error message: suggest
23295         that the version of Git may be too old.
23296
23297 2008-08-18  Simon Josefsson  <simon@josefsson.org>
23298
23299         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
23300         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
23301
23302 2008-08-18  Bruno Haible  <bruno@clisp.org>
23303
23304         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
23305         pthread_in_use().
23306
23307 2008-08-18  Bruno Haible  <bruno@clisp.org>
23308
23309         * lib/glthread/threadlib.c: Include <pthread.h>.
23310
23311 2008-08-18  Bruno Haible  <bruno@clisp.org>
23312
23313         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
23314         glthread_recursive_lock_* macros.
23315         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
23316         Fix syntax error.
23317
23318 2008-08-18  Bruno Haible  <bruno@clisp.org>
23319
23320         * lib/glthread/thread.c: Avoid forcing a context switch right after
23321         thread creation.
23322
23323 2008-08-17  Bruno Haible  <bruno@clisp.org>
23324
23325         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
23326         * lib/glthread/thread.h: Provide Win32 specific implementation.
23327         * modules/thread (Files): Add lib/glthread/thread.c.
23328         (Depends-on): Add lock.
23329         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
23330
23331 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23332
23333         New module 'yield'.
23334         * modules/yield: New file.
23335         * lib/glthread/yield.h: New file.
23336         * m4/yield.m4: New file.
23337         * MODULES.html.sh (Multithreading): Add yield.
23338
23339 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23340
23341         New module 'thread'.
23342         * modules/thread: New file.
23343         * lib/glthread/thread.h: New file.
23344         * m4/thread.m4: New file.
23345         * MODULES.html.sh (Multithreading): Add thread.
23346
23347 2008-08-17  Bruno Haible  <bruno@clisp.org>
23348
23349         * lib/glthread/lock.h: Include <stdlib.h> always.
23350         * lib/glthread/tls.h: Likewise.
23351         * lib/glthread/cond.h: Likewise.
23352
23353 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23354
23355         New module 'cond'.
23356         * modules/cond: New file.
23357         * lib/glthread/cond.h: New file.
23358         * lib/glthread/cond.c: New file.
23359         * m4/cond.m4: New file.
23360         * MODULES.html.sh (Multithreading): Add cond.
23361
23362 2008-08-16  Eric Blake  <ebb9@byu.net>
23363
23364         c-stack: fix regression on Irix 5.3 from 2008-06-21
23365         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
23366         sa_sigaction...
23367         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
23368         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
23369         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
23370         * modules/signal (Makefile.am): Use the value.
23371         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
23372         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
23373         * doc/posix-headers/signal.texi (signal.h): Document this
23374         portability issue.
23375         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
23376         Reported by Tom G. Christensen.
23377
23378 2008-08-17  Bruno Haible  <bruno@clisp.org>
23379
23380         New module 'threadlib'.
23381         * modules/threadlib: New file.
23382         * lib/glthread/threadlib.c: New file, extracted from
23383         lib/glthread/lock.c.
23384         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
23385         functions.
23386         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
23387         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
23388         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
23389         macros.
23390         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
23391         (gl_DISABLE_THREADS): Remove macro.
23392         * modules/lock (Files): Remove build-aux/config.rpath.
23393         (Depends-on): Remove havelib. Add threadlib.
23394         (configure.ac-early): Remove section.
23395         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
23396         * modules/tls (Depends-on): Remove lock. Add threadlib.
23397         (Link): New section, copied from threadlib.
23398         * MODULES.html.sh (Multithreading): Add threadlib.
23399
23400 2008-08-14  Bruno Haible  <bruno@clisp.org>
23401
23402         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
23403         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
23404         glthread_rwlock_unlock, glthread_rwlock_destroy,
23405         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
23406         glthread_recursive_lock_destroy): Define as macros always.
23407         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
23408         glthread_lock_lock.
23409         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
23410         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
23411         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
23412         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
23413         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
23414         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
23415         (glthread_recursive_lock_lock_func): Renamed from
23416         glthread_recursive_lock_lock.
23417         (glthread_recursive_lock_unlock_func): Renamed from
23418         glthread_recursive_lock_unlock.
23419         (glthread_recursive_lock_destroy_func): Renamed from
23420         glthread_recursive_lock_destroy.
23421
23422 2008-08-14  Bruno Haible  <bruno@clisp.org>
23423
23424         * lib/glthread/lock.h: Renamed from lib/lock.h.
23425         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
23426         * lib/glthread/tls.h: Renamed from lib/tls.h.
23427         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
23428         * lib/fstrcmp.c: Update includes.
23429         * lib/strsignal.c: Update includes.
23430         * modules/lock (Files, Makefile.am): Update.
23431         (Include): Change to "glthread/lock.h".
23432         * modules/tls (Files, Makefile.am): Update.
23433         (Include): Change to "glthread/tls.h".
23434         * tests/test-lock.c: Update includes.
23435         * tests/test-tls.c: Update includes.
23436         * NEWS: Mention the renamed header files.
23437
23438 2008-08-11  Jim Meyering  <meyering@redhat.com>
23439
23440         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
23441
23442 2008-08-11  Eric Blake  <ebb9@byu.net>
23443
23444         test-c-stack: avoid C99-ism
23445         * tests/test-c-stack.c (main): Fix whitespace, move declaration
23446         before statement.
23447         Reported by Alain Guibert.
23448
23449 2008-08-10  Jim Meyering  <meyering@redhat.com>
23450
23451         ensure that return value of uinttostr et al are not ignored
23452         * lib/inttostr.h (__GNUC_PREREQ): Define.
23453         (__attribute_warn_unused_result__): Define.
23454         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
23455
23456 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
23457
23458         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
23459         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
23460
23461 2008-08-07  Jim Meyering  <meyering@redhat.com>
23462
23463         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
23464
23465         * modules/mkstemp (License): Relicense under LGPLv2+.
23466         * modules/tempname (License): Likewise.
23467
23468 2008-08-06  Bruno Haible  <bruno@clisp.org>
23469
23470         * lib/poll.c (poll): Further micro-optimization.
23471
23472 2008-08-06  Jim Meyering  <meyering@redhat.com>
23473
23474         inet_pton.c: use locale-independent tolower
23475         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
23476         (inet_pton6): Use c_tolower rather than tolower.
23477         * modules/inet_pton (Depends-on): Add c-ctype.
23478
23479 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
23480
23481         * lib/poll.c (poll): Avoid division when timeout is 0, cache
23482         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
23483
23484 2008-08-06  Jim Meyering  <meyering@redhat.com>
23485
23486         * modules/inet_pton (License): Relicense under LGPLv2+.
23487
23488 2008-08-03  Bruno Haible  <bruno@clisp.org>
23489
23490         Additional non-aborting API for lock and tls.
23491         * lib/lock.h: Include <errno.h>.
23492         (glthread_lock_init): New macro/function.
23493         (gl_lock_init): Define as wrapper around glthread_lock_init.
23494         (glthread_lock_lock): New macro/function.
23495         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
23496         (glthread_lock_unlock): New macro/function.
23497         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
23498         (glthread_lock_destroy): New macro/function.
23499         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
23500         (glthread_rwlock_init): New macro/function.
23501         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
23502         (glthread_rwlock_rdlock): New macro/function.
23503         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
23504         (glthread_rwlock_wrlock): New macro/function.
23505         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
23506         (glthread_rwlock_unlock): New macro/function.
23507         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
23508         (glthread_rwlock_destroy): New macro/function.
23509         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
23510         (glthread_recursive_lock_init): New macro/function.
23511         (gl_recursive_lock_init): Define as wrapper around
23512         glthread_recursive_lock_init.
23513         (glthread_recursive_lock_lock): New macro/function.
23514         (gl_recursive_lock_lock): Define as wrapper around
23515         glthread_recursive_lock_lock.
23516         (glthread_recursive_lock_unlock): New macro/function.
23517         (gl_recursive_lock_unlock): Define as wrapper around
23518         glthread_recursive_lock_unlock.
23519         (glthread_recursive_lock_destroy): New macro/function.
23520         (gl_recursive_lock_destroy): Define as wrapper around
23521         glthread_recursive_lock_destroy.
23522         (glthread_once): New macro/function.
23523         (gl_once): Define as wrapper around glthread_once.
23524         Update function declarations.
23525         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
23526         glthread_rwlock_init. Return error code.
23527         (glthread_rwlock_rdlock_multithreaded): Renamed from
23528         glthread_rwlock_rdlock. Return error code.
23529         (glthread_rwlock_wrlock_multithreaded): Renamed from
23530         glthread_rwlock_wrlock. Return error code.
23531         (glthread_rwlock_unlock_multithreaded): Renamed from
23532         glthread_rwlock_unlock. Return error code.
23533         (glthread_rwlock_destroy_multithreaded): Renamed from
23534         glthread_rwlock_destroy. Return error code.
23535         (glthread_recursive_lock_init_multithreaded): Renamed from
23536         glthread_recursive_lock_init. Return error code.
23537         (glthread_recursive_lock_lock_multithreaded): Renamed from
23538         glthread_recursive_lock_lock. Return error code.
23539         (glthread_recursive_lock_unlock_multithreaded): Renamed from
23540         glthread_recursive_lock_unlock. Return error code.
23541         (glthread_recursive_lock_destroy_multithreaded): Renamed from
23542         glthread_recursive_lock_destroy. Return error code.
23543         (glthread_once_call): Make static.
23544         (glthread_once_multithreaded): Renamed from glthread_once.
23545         * lib/tls.h: Include <errno.h>.
23546         (glthread_tls_key_init): New macro/function.
23547         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
23548         (glthread_tls_set): New macro/function.
23549         (gl_tls_set): Define as wrapper around glthread_tls_set.
23550         (glthread_tls_key_destroy): New macro/function.
23551         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
23552         Update function declarations.
23553         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
23554         glthread_tls_get.
23555         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
23556
23557 2008-08-04  Eric Blake  <ebb9@byu.net>
23558
23559         gnumakefile: use space, not TAB, outside of targets
23560         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
23561
23562 2008-08-02  Jim Meyering  <meyering@redhat.com>
23563
23564         getdate.y: avoid locale-dependent date parsing failure
23565         In Turkish locales, getdate would fail to recognize keywords
23566         containing a lowercase "i".  The solution is not to rely on
23567         locale-sensitive case-conversion.
23568         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
23569         (lookup_word): Use c_toupper in place of toupper.
23570         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
23571         Reported by Vefa Bicakci <bicave@superonline.com> in
23572         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
23573         * modules/getdate (Depends-on): Add c-ctype.
23574
23575 2008-08-02  Bruno Haible  <bruno@clisp.org>
23576
23577         * gnulib-tool (func_import): When updating or creating a .gitignore
23578         file, prepend each added line with a slash, and ignore leading slashes
23579         from the existing lines.
23580         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
23581
23582 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23583
23584         Portability fix for GNU make 3.79.1.
23585         * top/GNUmakefile: Avoid 'else COND', which older GNU make
23586         versions do not understand.
23587
23588 2008-08-01  Bruno Haible  <bruno@clisp.org>
23589
23590         Work around bug of HP-UX 10.20 cc with -0.0 literal.
23591         * tests/test-isnanf.h (zero): New variable.
23592         (main): Avoid literal -0.0f.
23593         * tests/test-isnand.h (zero): New variable.
23594         (main): Avoid literal -0.0.
23595         * tests/test-isnanl.h (zero): New variable.
23596         (main): Avoid literal -0.0L.
23597         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
23598         (test_float, test_double, test_long_double): Avoid literals -0.0f,
23599         -0.0, -0.0L.
23600         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
23601         (test_signbitd): Avoid literal -0.0.
23602         (test_signbitl): Avoid literal -0.0L.
23603         * tests/test-ceilf1.c (zero): New variable.
23604         (main): Avoid literal -0.0f.
23605         * tests/test-ceill.c (zero): New variable.
23606         (main): Avoid literal -0.0L.
23607         * tests/test-floorf1.c (zero): New variable.
23608         (main): Avoid literal -0.0f.
23609         * tests/test-floorl.c (zero): New variable.
23610         (main): Avoid literal -0.0L.
23611         * tests/test-roundf1.c (zero): New variable.
23612         (main): Avoid literal -0.0f.
23613         * tests/test-round1.c (zero): New variable.
23614         (main): Avoid literal -0.0.
23615         * tests/test-roundl.c (zero): New variable.
23616         (main): Avoid literal -0.0L.
23617         * tests/test-truncf1.c (zero): New variable.
23618         (main): Avoid literal -0.0f.
23619         * tests/test-trunc1.c (zero): New variable.
23620         (main): Avoid literal -0.0.
23621         * tests/test-truncl.c (zero): New variable.
23622         (main): Avoid literal -0.0L.
23623         * tests/test-frexp.c (zero): New variable.
23624         (main): Avoid literal -0.0.
23625         * tests/test-frexpl.c (zero): New variable.
23626         (main): Avoid literal -0.0L.
23627         * tests/test-ldexpl.c (zero): New variable.
23628         (main): Avoid literal -0.0L.
23629         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
23630         (zerod, zerol): New variables.
23631         (test_function): Avoid literals -0.0, -0.0L.
23632         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
23633         (zerod, zerol): New variables.
23634         (test_function): Avoid literals -0.0, -0.0L.
23635         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
23636         (zerod, zerol): New variables.
23637         (test_function): Avoid literals -0.0, -0.0L.
23638         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
23639         (zerod, zerol): New variables.
23640         (test_function): Avoid literals -0.0, -0.0L.
23641         * tests/test-strtod.c (zero): New variable.
23642         (main): Avoid literal -0.0.
23643         Reported by Jonathan C. Patschke <jp@centtech.com>.
23644
23645 2008-07-31  Jim Meyering  <meyering@redhat.com>
23646
23647         sha256.h: correct definition of SHA224_DIGEST_SIZE
23648         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
23649         Reported by Paulie Pena IV <paulie4@gmail.com>.
23650         Define as 224 / 8, rather than as a literal.
23651         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
23652         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
23653         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
23654
23655 2008-07-31  Bruno Haible  <bruno@clisp.org>
23656
23657         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
23658         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
23659         Reported by Jonathan Patschke <jp@centtech.com>.
23660
23661 2008-07-31  Bruno Haible  <bruno@clisp.org>
23662
23663         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
23664         Reported by Paolo Bonzini <bonzini@gnu.org>.
23665
23666 2008-07-30  Eric Blake  <ebb9@byu.net>
23667
23668         test-strtod: allow compilation without -lm
23669         * tests/test-strtod.c (main): Avoid link dependence on fabs.
23670         Reported by Dennis Clarke <blastwave@gmail.com>.
23671
23672 2008-07-28  Jim Meyering  <meyering@redhat.com>
23673
23674         bootstrap: work also when there are no .po files in po/
23675         * build-aux/bootstrap (update_po_files): Complete the change
23676         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
23677
23678 2008-07-27  Jim Meyering  <meyering@redhat.com>
23679
23680         * users.txt: Add zile.
23681
23682 2008-07-26  Ben Pfaff  <blp@gnu.org>
23683
23684         Add missing dependencies on new m4/exponent[fdl].m4 files.
23685         * modules/isnanf-nolibm: Add m4/exponentf.m4.
23686         * modules/isnand-nolibm: Add m4/exponentd.m4.
23687         * modules/isnanl-nolibm: Add m4/exponentl.m4.
23688         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
23689         m4/isnan[fdl].m4, because the macros actually used moved.
23690         Reported by Jim Meyering.
23691
23692 2008-07-14  Ben Pfaff  <blp@gnu.org>
23693
23694         Add isinf module.
23695         * lib/isinf.c: New file.
23696         * lib/math.in.h: Define isinf macro if we have decided to replace
23697         it.
23698         * m4/isinf.m4: New file.
23699         * m4/math_h.m4: Initialize and substitute variables for isinf
23700         module.
23701         * modules/isinf: New file.
23702         * modules/isinf-tests: New file.
23703         * modules/math: Add substitutions for new module.
23704         * tests/test-isinf.c: New file.
23705         * doc/posix-functions/isinf.texi: Mention new module.
23706         * MODULES.html.sh: Mention new module.
23707
23708 2008-07-14  Ben Pfaff  <blp@gnu.org>
23709
23710         Factor out some macros for use by additional modules.
23711         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
23712         exponentf.m4.
23713         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
23714         exponentd.m4.
23715         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
23716         file exponentl.m4.
23717         * m4/exponentf.m4: New file.
23718         * m4/exponentd.m4: New file.
23719         * m4/exponentl.m4: New file.
23720         * modules/isnanf: Use new file m4/exponentf.m4.
23721         * modules/isnand: Use new file m4/exponentd.m4.
23722         * modules/isnanl: Use new file m4/exponentl.m4.
23723
23724 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
23725
23726         mktime.c: normalize tp->tm_isdst value to -1/0/1.
23727         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
23728         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
23729         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
23730
23731         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
23732         readlink on platforms without PATH_MAX.
23733
23734 2008-07-21  Eric Blake  <ebb9@byu.net>
23735
23736         Warn, not fail, on stale version.
23737         * top/GNUmakefile (_curr-ver): Tone down previous patch.
23738
23739         Don't allow installation with stale devel version number.
23740         * top/GNUmakefile (_is-install-target): New macro.
23741         (_curr-ver): Forbid installation with stale version number.
23742
23743 2008-07-20  Bruno Haible  <bruno@clisp.org>
23744
23745         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
23746         TESTS_ENVIRONMENT.
23747         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
23748
23749 2008-07-20  Bruno Haible  <bruno@clisp.org>
23750
23751         * lib/c-stack.h (c_stack_action): Add documentation.
23752         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
23753
23754 2008-07-20  Bruno Haible  <bruno@clisp.org>
23755
23756         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
23757         * modules/readlink (License): Likewise.
23758
23759 2008-07-17  Eric Blake  <ebb9@byu.net>
23760
23761         * modules/c-stack (Link): Fix typo.
23762
23763         Make c-stack use libsigsegv, when available.
23764         * modules/c-stack (Depends-on): Add libsigsegv.
23765         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
23766         needed.
23767         * lib/c-stack.c (SIGSTKSZ): Define fallback.
23768         (segv_handler, overflow_handler, c_stack_action)
23769         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
23770         implementation when libsigsegv is available, but only when using
23771         the library is necessary.
23772         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
23773         comment, explaining why XSI check fails on Linux.
23774         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
23775         * tests/test-c-stack2.sh: Tweak skip message.
23776         * NEWS: Document new link-time requirements.
23777
23778 2008-07-16  Eric Blake  <ebb9@byu.net>
23779
23780         c-stack: Expose false positives when not using libsigsegv.
23781         * modules/c-stack-tests (Files): Expand test.
23782         * tests/test-c-stack.c (main): Add means to conditionally trigger
23783         non-overflow SIGSEGV.
23784         * tests/test-c-stack2.sh: New file.
23785
23786 2008-07-14  Bruno Haible  <bruno@clisp.org>
23787
23788         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
23789         Reported by Eric Blake.
23790
23791 2008-07-14  Sam Steingold  <sds@gnu.org>
23792             Bruno Haible  <bruno@clisp.org>
23793
23794         New module libsigsegv.
23795         * modules/libsigsegv: New file.
23796         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
23797         modifications.
23798         * MODULES.html.sh (Signal handling): New section.
23799
23800 2008-07-14  Bruno Haible  <bruno@clisp.org>
23801
23802         * modules/unictype/ctype-* (Description): Add the word "function".
23803         Improves the resulting doc in MODULES.html.
23804
23805 2008-07-12  Ben Pfaff  <blp@gnu.org>
23806
23807         Add longlong module.
23808         * modules/longlong: New file.
23809
23810 2008-07-12  Bruno Haible  <bruno@clisp.org>
23811
23812         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
23813         to empty.
23814
23815 2008-07-10  Ben Pfaff  <blp@gnu.org>
23816
23817         Add isnan module.
23818         * doc/posix-functions/isnan.texi: Mention new module.
23819         * lib/math.in.h: Define isnan macro if we have decided to replace
23820         it.
23821         * m4/isnan.m4: New file.
23822         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
23823         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
23824         also.
23825         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
23826         redundancy.
23827         * m4/math_h.m4: Initialize and substitute variables for isnan
23828         module.
23829         * modules/isnan: New file.
23830         * modules/isnan-tests: New file.
23831         * modules/math: Add substitutions for new module.
23832         * tests/test-isnan.c: New file.
23833         * MODULES.html.sh: Mention new module.
23834
23835 2008-07-10  Ben Pfaff  <blp@gnu.org>
23836
23837         Add isnanf module.
23838         * lib/isnanf.m4: New file.
23839         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
23840         (gl_HAVE_ISNANF_IN_LIBM): New macro.
23841         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
23842         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
23843         * modules/isnanf: New file.
23844         * modules/isnanf-tests: New file.
23845         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
23846         files.
23847         * tests/test-isnanf-nolibm.c: factored most of its contents into
23848         new file tests/test-isnanf.h.
23849         * tests/test-isnanf.h: New file.
23850         * tests/test-isnanf.c: New file.
23851         * MODULES.html.sh: Mention new module.
23852         * doc/glibc-functions/isnanf.texi: Mention new module.
23853
23854 2008-07-10  Ben Pfaff  <blp@gnu.org>
23855
23856         Add isnand module.
23857         * lib/isnand.h: New file.
23858         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
23859         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
23860         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
23861         functionality also.
23862         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
23863         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
23864         (gl_HAVE_ISNAND_IN_LIBM): New macro.
23865         * modules/isnand: New file.
23866         * modules/isnand-tests: New file.
23867         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
23868         files.
23869         * tests/test-isnand-nolibm.c: factored most of its contents into
23870         new file tests/test-isnand.h.
23871         * tests/test-isnand.h: New file.
23872         * tests/test-isnand.c: New file.
23873         * MODULES.html.sh: Mention new module.
23874
23875 2008-07-10  Ben Pfaff  <blp@gnu.org>
23876
23877         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
23878         * lib/isnand.h: Rename lib/isnand-nolibm.h.
23879         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
23880         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
23881         * modules/isnanf-nolibm: Update references to renamed files.
23882         * modules/isnand-nolibm: Likewise.
23883         * modules/isnanf-nolibm-tests: Likewise.
23884         * modules/isnand-nolibm-tests: Likewise.
23885         * lib/frexp.c: Likewise.
23886         * lib/isfinite.c: Likewise.
23887         * lib/signbitd.c: Likewise.
23888         * lib/signbitf.c: Likewise.
23889         * lib/vasnprintf.c: Likewise.
23890         * tests/test-ceilf1.c: Likewise.
23891         * tests/test-ceilf2.c: Likewise.
23892         * tests/test-floorf1.c: Likewise.
23893         * tests/test-floorf2.c: Likewise.
23894         * tests/test-frexp.c: Likewise.
23895         * tests/test-round1.c: Likewise.
23896         * tests/test-round2.c: Likewise.
23897         * tests/test-roundf1.c: Likewise.
23898         * tests/test-strtod.c: Likewise.
23899         * tests/test-trunc1.c: Likewise.
23900         * tests/test-trunc2.c: Likewise.
23901         * tests/test-truncf1.c: Likewise.
23902         * tests/test-truncf2.c: Likewise.
23903         * NEWS: Mention the renamed header files.
23904
23905 2008-07-11  Jim Meyering  <meyering@redhat.com>
23906
23907         vc-list-files: make the last-resort awk code more portable
23908         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
23909         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
23910         does not support it.
23911
23912 2008-07-10  Eric Blake  <ebb9@byu.net>
23913
23914         Work with tar's bootstrap.
23915         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
23916         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
23917         an m4 comment.
23918
23919 2008-07-09  Jim Meyering  <meyering@redhat.com>
23920
23921         posix-shell.m4: fix typo that made this test malfunction
23922         * m4/posix-shell.m4: Remove capitalization in variable name.
23923
23924 2008-07-08  Bruno Haible  <bruno@clisp.org>
23925
23926         * m4/onceonly.m4: Update comments.
23927         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23928
23929 2008-07-04  Jim Meyering  <meyering@redhat.com>
23930
23931         * users.txt: Add vc-dwim.
23932         (bison, coreutils): Use the gitweb URL.
23933
23934 2008-07-03  Jim Meyering  <meyering@redhat.com>
23935
23936         * users.txt: Add libffcall.  From Sam Steingold.
23937
23938 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
23939
23940         getdate.y: do not ignore TZ with relative day, month or year offset
23941         * lib/getdate.y (get_date): Move the tz-handling block to follow the
23942         relative-date-handling, since otherwise, the latter would clobber the
23943         sole output (an updated Start value) of the tz-handling block.
23944         * tests/test-getdate.c: Tests for the fix
23945
23946 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23947
23948         Recognize 'foo_LIBRARIES += libgnu.a'.
23949         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
23950         makefile snippet has already specified an installation location,
23951         also using '+='.
23952
23953 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
23954
23955         getdate.y: factor out common actions
23956         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
23957         Use them in place of open-coded actions.
23958
23959 2008-07-01  Simon Josefsson  <simon@josefsson.org>
23960
23961         Add self-test for getdate module.
23962         * modules/getdate-tests: New file.
23963         * tests/test-getdate.c: New file.
23964
23965 2008-06-29  Bruno Haible  <bruno@clisp.org>
23966
23967         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
23968         .gitignore.
23969         Reported by Sylvain Beucler <beuc@beuc.net>.
23970
23971 2008-06-29  Bruno Haible  <bruno@clisp.org>
23972
23973         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
23974         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23975
23976 2008-06-29  Bruno Haible  <bruno@clisp.org>
23977
23978         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
23979         EXTRA_DIST.
23980         Reported by Sylvain Beucler <beuc@beuc.net>.
23981
23982 2008-06-26  Jim Meyering  <meyering@redhat.com>
23983
23984         make several modules depend on the "open" module
23985         This provides slightly increased consistency when opening-for-write
23986         the name of a non-directory spelled with a trailing slash.
23987         * modules/chdir-safer: Likewise.
23988         * modules/chown: Likewise.
23989         * modules/clean-temp: Likewise.
23990         * modules/copy-file: Likewise.
23991         * modules/fchdir: Likewise.
23992         * modules/fcntl-safer: Likewise.
23993         * modules/pipe: Likewise.
23994         * modules/utime: Likewise.
23995         Prompted by Eric Blake and Bruno Haible.
23996
23997 2008-06-24  Andreas Schwab  <schwab@suse.de>
23998
23999         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
24000         literals can be used as initializers for global variables.
24001
24002 2008-06-23  Eric Blake  <ebb9@byu.net>
24003
24004         Make gnulib-cache.m4 easier to diff.
24005         * gnulib-tool (func_import): Allow newlines when reading cached
24006         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
24007
24008 2008-06-23  Bruno Haible  <bruno@clisp.org>
24009
24010         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
24011         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
24012         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
24013         m4/signalblocking.m4.
24014         (gl_PREREQ_SIGACTION): Don't invoke it.
24015         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
24016         gl_PREREQ_SIG_HANDLER_H.
24017         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24018         Don't check for sigaction here.
24019
24020 2008-06-23  Bruno Haible  <bruno@clisp.org>
24021
24022         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
24023         (install_handlers): Don't set the SA_RESETHAND flag.
24024
24025 2008-06-23  Bruno Haible  <bruno@clisp.org>
24026
24027         * m4/sigaction.m4: Comment fixes.
24028         * lib/signal.in.h: Likewise.
24029
24030 2008-06-23  Eric Blake  <ebb9@byu.net>
24031
24032         Fix typo.
24033         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
24034
24035         Avoid SA_ namespace.
24036         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
24037         Reported by Ralf Wildenhues.
24038
24039         Avoid test failure due to SA_RESTORER.
24040         * tests/test-sigaction.c (SA_MASK): New macro.
24041         (main): Avoid failing due to extension flags being set.
24042         Reported by Jim Meyering.
24043
24044         Revert use of sig-handler.h in sigprocmask.c.
24045         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
24046         it requires the existence of struct sigaction.
24047         * lib/sigprocmask.c (handler_t): Restore typedef.
24048         (rpl_signal, old_handlers): Use local type.
24049
24050 2008-06-22  Bruno Haible  <bruno@clisp.org>
24051
24052         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
24053         conditionally.
24054         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
24055
24056 2008-06-22  Bruno Haible  <bruno@clisp.org>
24057
24058         * doc/posix-functions/siginterrupt.texi: Move note.
24059
24060         * lib/signal.in.h (SA_RESTART): New macro.
24061         * lib/sigaction.c: Update comment.
24062
24063         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
24064
24065         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
24066         (gl_PREREQ_SIGPROCMASK): Invoke it.
24067         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
24068
24069         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
24070
24071         * lib/sigprocmask.c: Update a comment.
24072
24073 2008-06-21  Eric Blake  <ebb9@byu.net>
24074
24075         Use sigaction module rather than signal().
24076         * modules/c-stack (Depends-on): Add sigaction.
24077         * modules/fatal-signal (Depends-on): Likewise.
24078         * modules/nanosleep (Depends-on): Likewise.
24079         * modules/sigprocmask (Files): Add sig-handler.h.
24080         * modules/sigaction (Files): Likewise.
24081         * lib/sig-handler.h (get_handler): New file, suggested by Paul
24082         Eggert.
24083         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
24084         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
24085         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
24086         (init_fatal_signals): Likewise.
24087         * lib/nanosleep.c (rpl_nanosleep): Likewise.
24088         (siginterrupt): Delete fallback.
24089         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
24090         instead.
24091         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
24092         siginterrupt.
24093
24094         New module sigaction, for mingw.
24095         * modules/sigaction: New module...
24096         * modules/sigaction-tests: ...and its test.
24097         * m4/sigaction.m4: New file.
24098         * lib/sigaction.c: Likewise.
24099         * tests/test-sigaction.c: Likewise.
24100         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
24101         * modules/signal (Makefile.am): Likewise.
24102         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
24103         needed.
24104         * doc/posix-headers/signal.texi (signal.h): Mention provided
24105         types.
24106         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
24107         that sigaction is preferable.
24108         * doc/posix-functions/sigaction.texi (sigaction): Mention new
24109         module.
24110         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24111         sigaction.
24112
24113         Improve robustness of sigprocmask by overriding signal.
24114         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
24115         is in use.
24116         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
24117         (SIGKILL, SIGSTOP): Provide fallbacks.
24118         (rpl_signal): Implement.
24119         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
24120         signal can be called inside handlers.
24121
24122         Fix nanosleep module on mingw.
24123         * modules/nanosleep (Depends-on): Add sys_select.
24124         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
24125
24126         Fix licensing of sigprocmask.
24127         * modules/raise (License): Relicense as LGPL.
24128
24129 2008-06-21  Bruno Haible  <bruno@clisp.org>
24130
24131         * lib/propername.c (proper_name_utf8): Don't use the transliterated
24132         result if it contains question marks.
24133         Reported by Michael Geng <linux@michaelgeng.de>.
24134
24135 2008-06-19  Bruno Haible  <bruno@clisp.org>
24136
24137         Fix CVS-ism.
24138         * doc/gnulib.texi: Include updated-stamp.texi.
24139         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
24140         (updated-stamp.texi): New rule.
24141         (gnulib.info): Depend on it.
24142         * doc/.gitignore: Add updated-stamp.texi.
24143         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
24144
24145 2008-06-19  Bruno Haible  <bruno@clisp.org>
24146
24147         * doc/Makefile (gnulib.info): Update and simplify dependencies.
24148         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
24149
24150 2008-06-19  Eric Blake  <ebb9@byu.net>
24151
24152         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
24153         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
24154         Reported by Stepan Kasal.
24155
24156 2008-06-18  Bruno Haible  <bruno@clisp.org>
24157
24158         * lib/fatal-signal.c (init_fatal_signals): Add comment.
24159         Reported by Eric Blake.
24160
24161 2008-06-18  Eric Blake  <ebb9@byu.net>
24162
24163         Work around cygwin 1.5.25 strsignal bug.
24164         * tests/test-strsignal.c: Allow for const char *.
24165         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
24166
24167 2008-06-18  Simon Josefsson  <simon@josefsson.org>
24168
24169         * users.txt: Update URL to article and add author/date
24170         information.
24171
24172 2008-06-17  Bruno Haible  <bruno@clisp.org>
24173
24174         New macro gl_DISABLE_THREADS.
24175         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
24176         if the user did not pass --enable-threads or --disable-threads option.
24177         (gl_DISABLE_THREADS): New macro.
24178         Reported by Eric Blake <ebb9@byu.net>.
24179
24180 2008-06-17  Bruno Haible  <bruno@clisp.org>
24181
24182         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
24183         when the macro ignores it.
24184         Based on a patch by Eric Blake <ebb9@byu.net>.
24185
24186 2008-06-17  Bruno Haible  <bruno@clisp.org>
24187
24188         * modules/tls (License): Change to LGPLv2+.
24189         Reported by Eric Blake.
24190
24191 2008-06-17  Eric Blake  <ebb9@byu.net>
24192
24193         Simplify c-stack prerequisites.
24194         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
24195         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
24196         no longer requires <ucontext.h> to exist.  Optimize setrlimit
24197         check.
24198         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
24199         <sys/resource.h>.
24200
24201         Move c-stack test into testsuite.
24202         * modules/c-stack-tests: New file.
24203         * lib/c-stack.c [DEBUG]: Move test program...
24204         * tests/test-c-stack.c: ...into this new file.  Skip rather than
24205         fail test if sigaltstack is lacking.
24206         * tests/test-c-stack.sh: New driver file.
24207
24208 2008-06-16  Eric Blake  <ebb9@byu.net>
24209
24210         Use raise module consistently.
24211         * modules/fatal-signal (Depends-on): Add raise.
24212         * modules/sigprocmask (Depends-on): Likewise.
24213         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
24214         * lib/sigprocmask.c (sigprocmask): Likewise.
24215         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24216         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
24217
24218         Fix compliance bug in sigpending.
24219         * lib/sigprocmask.c (sigpending): Return pending array via
24220         parameter, not return value.
24221
24222 2008-06-14  Eric Blake  <ebb9@byu.net>
24223
24224         Improve obstack-printf test code.
24225         * tests/test-obstack-printf.c (test_function): Fix comment, and
24226         simplify usage of obstack_* in macros.  Add a test for coverage.
24227         Reported by Bruno Haible.
24228
24229 2008-06-14  Bruno Haible  <bruno@clisp.org>
24230
24231         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
24232         array size as a constant, not as a const variable.
24233         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
24234         AC_USE_SYSTEM_EXTENSIONS.
24235         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
24236         Test whether the obstack_printf function actually exists.
24237         * modules/obstack-printf (Depends-on): Add extensions.
24238         (Include): Remove obstack.h.
24239         * modules/obstack-printf-posix (Depends-on): Add extensions.
24240         (Include): Remove obstack.h.
24241
24242 2008-06-13  Eric Blake  <ebb9@byu.net>
24243
24244         Add obstack-printf and obstack-printf-posix modules.
24245         * modules/obstack-printf: New file.
24246         * modules/obstack-printf-posix: Likewise.
24247         * MODULES.html.sh (Misc): Mention them.
24248         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
24249         Likewise.
24250         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
24251         Likewise.
24252         * modules/stdio (Makefile.am): Accomodate new modules.
24253         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
24254         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
24255         Declare.
24256         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
24257         functions.
24258         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
24259         (gl_REPLACE_OBSTACK_PRINTF): New macros
24260         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
24261         * tests/test-obstack-printf.c: New file.
24262         * modules/obstack-printf-tests: Likewise.
24263         * modules/obstack-printf-posix-tests: Likewise.
24264
24265 2008-06-11  Bruno Haible  <bruno@clisp.org>
24266
24267         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
24268         * lib/open.c: Include errno.h.
24269         (open): Fail when attempting to write to a file that has a trailing
24270         slash.
24271         * tests/test-open.c (main): Test against trailing slash bug.
24272         * doc/posix-functions/open.texi: Mention the trailing slash bug.
24273
24274 2008-06-10  Bruno Haible  <bruno@clisp.org>
24275
24276         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
24277         for $? to work inside the trap command, with various /bin/sh-s.
24278         * tests/test-vc-list-files-cvs.sh: Likewise.
24279
24280 2008-06-10  Bruno Haible  <bruno@clisp.org>
24281
24282         * lib/acl-internal.h: Don't include gettext.h here.
24283         * lib/set-mode-acl.c: Include gettext.h here.
24284         * lib/copy-acl.c: Likewise.
24285
24286 2008-06-10  Bruno Haible  <bruno@clisp.org>
24287
24288         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
24289         * lib/wait-process.c (wait_subprocess): Likewise.
24290         * lib/execute.h (execute): Add termsigp argument.
24291         * lib/execute.c (execute): Likewise.
24292         * lib/csharpcomp.c (compile_csharp_using_pnet,
24293         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
24294         * lib/csharpexec.c (execute_csharp_using_pnet,
24295         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
24296         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
24297         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
24298         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
24299         is_jikes_present): Update.
24300         * lib/javaexec.c (execute_java_class): Update.
24301         * lib/javaversion.c (execute_and_read_line): Update.
24302         * NEWS: Document the changes.
24303         Reported by Eric Blake.
24304
24305 2008-06-10  Eric Blake  <ebb9@byu.net>
24306
24307         Add missing include.
24308         * tests/test-strstr.c (includes): Add <signal.h>.
24309         * tests/test-strcasestr.c (includes): Likewise.
24310         * tests/test-memmem.c (includes): Likewise.
24311
24312 2008-06-10  Bruno Haible  <bruno@clisp.org>
24313
24314         * lib/wait-process.c (wait_subprocess): Add an assertion.
24315
24316 2008-06-10  Bruno Haible  <bruno@clisp.org>
24317
24318         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
24319
24320 2008-06-10  Bruno Haible  <bruno@clisp.org>
24321
24322         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
24323         using alarm().
24324         * tests/test-strcasestr.c (main): Likewise.
24325         * tests/test-strstr.c (main): Likewise.
24326
24327 2008-06-09  Bruno Haible  <bruno@clisp.org>
24328
24329         Work around the Solaris 10 ACE ACLs ABI change.
24330         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
24331         declare if ACL_NO_TRIVIAL is present.
24332         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
24333         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
24334         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
24335         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
24336         define if ACL_NO_TRIVIAL is present.
24337         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
24338         and use the current ABI.
24339         (file_has_acl): Use same #if condition as elsewhere.
24340         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
24341         in use, and use the current ABI.
24342         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
24343         Reported by Jim Meyering.
24344
24345 2008-06-09  Eric Blake  <ebb9@byu.net>
24346
24347         Work around environments that (stupidly) ignore SIGALRM.
24348         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
24349         before using alarm().
24350         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24351         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
24352         Reported by Ian Beckwith <ianb@erislabs.net>.
24353
24354         Produce autobuild blurb earlier in log.
24355         * modules/autobuild (configure.ac-early): Move AB_INIT here.
24356
24357 2008-06-09  Jim Meyering  <meyering@redhat.com>
24358         and OndÅ™ej Vašík  <ovasik@redhat.com>
24359
24360         utimens.c: correct kernel bug work-around
24361         OndÅ™ej Vašík found that the invalid return value of 280 indicates
24362         failure, not success, and the kernel bug we're trying to work
24363         around affects not just the utimensat call, but also the fallback
24364         futimens call.
24365         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
24366         not success.
24367         [HAVE_FUTIMENS]: Use the same work-around, here.
24368
24369 2008-06-09  Jim Meyering  <meyering@redhat.com>
24370
24371         add more guards around definition of ACE_-related code
24372         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
24373         ALLOW and ACE_OWNER are also defined.
24374
24375 2008-06-08  Bruno Haible  <bruno@clisp.org>
24376
24377         * lib/acl-internal.h: Add me as co-author.
24378         * lib/file-has-acl.c: Likewise.
24379         * lib/set-mode-acl.c: Likewise.
24380         * lib/copy-acl.c: Likewise.
24381
24382 2008-06-08  Bruno Haible  <bruno@clisp.org>
24383
24384         Add support for AIX ACLs.
24385         * lib/acl-internal.h (acl_nontrivial): New declaration.
24386         * lib/file-has-acl.c (acl_nontrivial): New function.
24387         (file_has_acl): Add implementation using AIX 4 ACL API.
24388         * lib/set-mode-acl.c (qset_acl): Likewise.
24389         * lib/copy-acl.c (qcopy_acl): Likewise.
24390
24391 2008-06-08  Bruno Haible  <bruno@clisp.org>
24392
24393         Add support for HP-UX ACLs.
24394         * lib/acl-internal.h (acl_nontrivial): New declaration.
24395         * lib/file-has-acl.c (acl_nontrivial): New function.
24396         (file_has_acl): Add implementation using HP-UX 11 ACL API.
24397         * lib/set-mode-acl.c (qset_acl): Likewise.
24398         * lib/copy-acl.c (qcopy_acl): Likewise.
24399
24400 2008-06-08  Bruno Haible  <bruno@clisp.org>
24401
24402         Add support for Cygwin ACLs.
24403         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
24404         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
24405         the chmod_or_fchmod call.
24406         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
24407
24408 2008-06-08  Bruno Haible  <bruno@clisp.org>
24409
24410         Fix bug with setuid modes in Solaris 10+ code.
24411         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
24412         succeeded, when the mode contains some special bits.
24413
24414 2008-06-08  Bruno Haible  <bruno@clisp.org>
24415
24416         Add support for Solaris 7..10 ACLs.
24417         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
24418         declarations.
24419         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
24420         functions.
24421         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
24422         * lib/set-mode-acl.c (qset_acl): Likewise.
24423         * lib/copy-acl.c (qcopy_acl): Likewise.
24424
24425 2008-06-08  Bruno Haible  <bruno@clisp.org>
24426
24427         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
24428         declaration.
24429         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
24430         (acl_access_nontrivial): Remove MacOS X case.
24431         (file_has_acl): Use acl_extended_nontrivial.
24432         * lib/copy-acl.c (qcopy_acl): Likewise.
24433
24434 2008-06-08  Bruno Haible  <bruno@clisp.org>
24435
24436         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
24437
24438 2008-06-08  Jim Meyering  <meyering@redhat.com>
24439
24440         * modules/acl (Maintainer): Add Bruno Haible.
24441
24442 2008-06-07  Bruno Haible  <bruno@clisp.org>
24443
24444         Improve support for Tru64 ACLs.
24445         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
24446         ACL on OSF/1.
24447
24448 2008-06-07  Bruno Haible  <bruno@clisp.org>
24449
24450         Add support for MacOS X ACLs.
24451         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
24452         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
24453         * lib/set-mode-acl.c (qset_acl): Likewise.
24454         * lib/copy-acl.c (qcopy_acl): Likewise.
24455
24456 2008-06-07  Bruno Haible  <bruno@clisp.org>
24457
24458         Fix memory leak introduced on 2008-05-22.
24459         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
24460         use.
24461
24462 2008-06-07  Bruno Haible  <bruno@clisp.org>
24463
24464         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
24465         to construct an empty ACL.
24466
24467 2008-06-07  Bruno Haible  <bruno@clisp.org>
24468
24469         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
24470         precisely.
24471         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
24472
24473 2008-06-07  Bruno Haible  <bruno@clisp.org>
24474
24475         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
24476         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
24477
24478 2008-06-07  Bruno Haible  <bruno@clisp.org>
24479
24480         * doc/posix-functions/_setjmp.texi: Explain the use of this function
24481         regardless of POSIX.
24482         * doc/posix-functions/_longjmp.texi: Likewise.
24483         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
24484         SystemV platform in this case.
24485
24486 2008-06-06  Eric Blake  <ebb9@byu.net>
24487
24488         Document abort() bugs.
24489         * doc/posix-functions/abort.texi (abort): Mention anomalies.
24490
24491         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
24492         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
24493         sigsetjmp.
24494         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
24495         siglongjmp, but only as a macro.
24496         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
24497         is obsolete.
24498         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
24499
24500         Tweak documentation to cover cygwin argz bugs.
24501         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
24502         argz bug fix; no code change needed since no cygwin releases
24503         occurred between the last fix and the bug being tested.
24504         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
24505         module and recently fixed cygwin bugs.
24506         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
24507         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
24508         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
24509         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
24510         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
24511         Likewise.
24512         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
24513         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
24514         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
24515         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
24516         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
24517         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
24518         Likewise.
24519
24520         Avoid gcc warning on cygwin.
24521         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
24522         !ACL_NO_TRIVIAL]: Avoid unused variable.
24523
24524 2008-06-05  Eric Blake  <ebb9@byu.net>
24525
24526         Be tolerant of UNKNOWN version in gnulib-tool test dir.
24527         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
24528         git-version-gen fails to come up with a version.
24529         Reported by Simon Josefsson.
24530
24531 2008-06-05  Jim Meyering  <meyering@redhat.com>
24532             Paul Eggert  <eggert@cs.ucla.edu>
24533
24534         utimens.c: work around a probable Linux kernel bug
24535         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
24536         appears to be a kernel bug that causes utimensat to return 280
24537         instead of 0, indicating success.
24538
24539 2008-06-04  Bruno Haible  <bruno@clisp.org>
24540
24541         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
24542         2008-06-01 commit.
24543
24544 2008-06-04  Bruno Haible  <bruno@clisp.org>
24545
24546         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
24547         * lib/file-has-acl.c (acl_access_nontrivial): New function.
24548         (file_has_acl): Use it. Save errno afterwards.
24549         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
24550
24551 2008-06-03  Bruno Haible  <bruno@clisp.org>
24552
24553         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
24554         draft code. Simplify #ifs.
24555         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
24556         Put Solaris code after POSIX-draft code. Fix comments regarding
24557         Solaris 10, HP-UX. Mention Cygwin.
24558         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
24559
24560 2008-06-03  Eric Blake  <ebb9@byu.net>
24561
24562         Provide fallback for older kernels.
24563         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
24564         Provide runtime fallback if kernel lacks support.
24565         Reported by Mike Frysinger.
24566
24567 2008-06-02  Bruno Haible  <bruno@clisp.org>
24568
24569         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
24570         it exists.
24571
24572 2008-06-02  Bruno Haible  <bruno@clisp.org>
24573
24574         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
24575         * lib/copy-acl.c (qcopy_acl): Update comment.
24576
24577 2008-06-02  Bruno Haible  <bruno@clisp.org>
24578
24579         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
24580         like ACL APIs.
24581
24582 2008-06-02  Bruno Haible  <bruno@clisp.org>
24583
24584         * tests/test-file-has-acl.sh: Use different code for Cygwin.
24585         * tests/test-set-mode-acl.sh: Likewise.
24586         * tests/test-copy-acl.sh: Likewise.
24587         * tests/test-copy-file.sh: Likewise.
24588
24589 2008-06-02  Bruno Haible  <bruno@clisp.org>
24590
24591         * tests/test-file-has-acl.sh: Remove unused code.
24592
24593 2008-06-01  Bruno Haible  <bruno@clisp.org>
24594
24595         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
24596         (copy_acl): Just a wrapper around qcopy_acl that emits the error
24597         messages.
24598         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
24599
24600 2008-06-01  Bruno Haible  <bruno@clisp.org>
24601
24602         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
24603         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
24604         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
24605         APIs.
24606         * modules/acl-tests (configure.ac): Remove tests now contained in
24607         m4/acl.m4.
24608
24609 2008-06-02  Jim Meyering  <meyering@redhat.com>
24610
24611         announce-gen: use a better key-server host name
24612         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
24613         it may be more consistently reliable.  Suggested by Werner Koch
24614         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
24615
24616 2008-06-01  Bruno Haible  <bruno@clisp.org>
24617
24618         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
24619         Reported by Voroskoi Andras <voroskoi@gmail.com>.
24620
24621 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
24622
24623         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
24624
24625 2008-06-01  Bruno Haible  <bruno@clisp.org>
24626
24627         New ACL tests.
24628         * tests/test-file-has-acl.sh: New file.
24629         * tests/test-file-has-acl.c: New file.
24630         * tests/test-set-mode-acl.sh: New file.
24631         * tests/test-set-mode-acl.c: New file.
24632         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
24633         * tests/test-copy-acl.c: New file.
24634         * modules/acl-tests: New file, based on modules/copy-file-tests.
24635         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
24636         (Depends-on): Add acl-tests.
24637         (configure.ac): Remove checks.
24638         (Makefile.am): Don't create test-sameacls program here any more.
24639
24640 2008-06-01  Bruno Haible  <bruno@clisp.org>
24641
24642         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
24643         * tests/test-sameacls.c: Include progname.h.
24644         (main): Invoke set_program_name. Portability fixes for MacOS X,
24645         Solaris, HP-UX.
24646
24647 2008-06-01  Bruno Haible  <bruno@clisp.org>
24648
24649         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
24650         function.
24651         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
24652
24653 2008-06-01  Bruno Haible  <bruno@clisp.org>
24654
24655         * modules/rpmatch (Depends-on): Add strdup.
24656
24657 2008-06-01  Bruno Haible  <bruno@clisp.org>
24658
24659         * lib/pipe.c: Include unistd-safer.h.
24660         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
24661         * modules/pipe (Depends-on): Add unistd-safer.
24662
24663 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24664
24665         * modules/autobuild (configure.ac): Call AB_INIT.
24666
24667 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24668
24669         * tests/test-getaddrinfo.c: Don't print debug messages by default.
24670         Suggested by Bruno Haible <bruno@clisp.org>.
24671
24672 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24673
24674         * tests/test-base64.c: Cast size_t to unsigned long when invoking
24675         printf.  Use %lu instead of %d.  Reported by Bruno Haible
24676         <bruno@clisp.org>.
24677
24678 2008-05-29  Eric Blake  <ebb9@byu.net>
24679
24680         Prefer new POSIX 200x interfaces over futimesat.
24681         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
24682         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
24683         when available.
24684         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
24685
24686 2008-05-28  Bruno Haible  <bruno@clisp.org>
24687
24688         * modules/stpcpy (License): Change to LGPLv2+.
24689         Requested by David Lutterkort <dlutter@redhat.com>.
24690
24691 2008-05-27  Bruno Haible  <bruno@clisp.org>
24692
24693         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
24694         current mingw.
24695         Reported by Jose E. Marchesi <jemarch@gnu.org>.
24696
24697 2008-05-27  Bruno Haible  <bruno@clisp.org>
24698
24699         * modules/iconv_open (Link): New section, from module 'iconv'.
24700         * modules/striconv (Link): Likewise.
24701         * modules/striconveh (Link): Likewise.
24702         * modules/xstriconv (Link): Likewise.
24703         * modules/unicodeio (Link): Likewise.
24704         * modules/propername (Link): Likewise.
24705         Reported by Jim Meyering.
24706
24707 2008-05-26  Jim Meyering  <meyering@redhat.com>
24708
24709         sha256: do not artificially restrict buffer length to be < 2^32
24710         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
24711         uint32_t to size_t.
24712         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
24713         to match.
24714
24715         avoid unaligned access errors, e.g., on sparc
24716         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
24717         direct access through a possibly-unaligned uint64* pointer.
24718         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
24719         direct access through a possibly-unaligned uint32* pointer.
24720         Prompted by this patch from Tom "spot" Callaway:
24721         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
24722
24723         sha512.c: fix typo in comment
24724         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
24725
24726 2008-05-25  Bruno Haible  <bruno@clisp.org>
24727
24728         * lib/set-mode-acl.c: Renamed from lib/acl.c.
24729         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
24730         (Makefile.am): Update lib_SOURCES.
24731
24732 2008-05-25  Bruno Haible  <bruno@clisp.org>
24733
24734         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
24735
24736 2008-05-25  Jim Meyering  <meyering@redhat.com>
24737
24738         useless-if-before-free: freed expr may have white-space differences
24739         * build-aux/useless-if-before-free: Recognize cases in which the
24740         freed expression differs from the tested one in embedded white
24741         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
24742         $1 was used, so we can't make any regexp shy.  Improved tests now
24743         detect this.
24744
24745         useless-if-before-free: accept white space in the expression.
24746         * build-aux/useless-if-before-free: For now, any white space
24747         in the expression must be identical in the free argument.
24748
24749         useless-if-before-free: efficiency tweak
24750         * build-aux/useless-if-before-free: Make the expression-matching
24751         regexp "shy".
24752         Make the *outer* regexp shy, not the expr-matching one.
24753
24754         update code-in-comment to accept cast of free arg
24755         * build-aux/useless-if-before-free: Update regexp.
24756
24757 2008-05-25  Bruno Haible  <bruno@clisp.org>
24758
24759         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
24760         * modules/copy-file-tests (Files, Makefile.am): Update.
24761         * tests/test-copy-file.c (func_test_copy): Update.
24762
24763 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
24764
24765         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
24766
24767 2008-05-23  Bruno Haible  <bruno@clisp.org>
24768
24769         Improve support for ACLs on OSF/1.
24770         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
24771         Remove fallback for unknown flavors of ACLs.
24772
24773 2008-05-22  Bruno Haible  <bruno@clisp.org>
24774
24775         Add support for ACLs on OSF/1.
24776         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
24777         replacements.
24778         (acl_free_text): New macro fallback.
24779         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
24780         acl_free.
24781         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
24782         acl_free_text function. Require AC_C_INLINE.
24783
24784 2008-05-22  Bruno Haible  <bruno@clisp.org>
24785
24786         Make copy_acl work on MacOS X 10.5.
24787         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
24788         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
24789         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
24790         If MODE_INSIDE_ACL, don't assume that every system has the same text
24791         representation for ACLs as FreeBSD.
24792         * lib/copy-acl.c (copy_acl): Add support for platforms with
24793         !MODE_INSIDE_ACL.
24794         * lib/file-has-acl.c (file_has_acl): Likewise.
24795         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
24796         FreeBSD, MacOS X, or IRIX, respectively.
24797
24798 2008-05-22  Bruno Haible  <bruno@clisp.org>
24799
24800         * lib/acl.h: Don't include <sys/acl.h>.
24801         (GETACLCNT): Move fallback to lib/acl-internal.h.
24802         * lib/acl-internal.h: Include <sys/acl.h> here.
24803         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
24804
24805 2008-05-22  Bruno Haible  <bruno@clisp.org>
24806
24807         Split off copy_acl function to separate file.
24808         * lib/copy-acl.c: New file, extracted from lib/acl.c.
24809         * lib/acl.c (copy_acl): Moved function to separate file.
24810         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
24811         * modules/acl (Files): Add lib/copy-acl.c.
24812         (Makefiles.am): Augment lib_SOURCES.
24813
24814 2008-05-22  Bruno Haible  <bruno@clisp.org>
24815
24816         * modules/copy-file-tests: New file.
24817         * tests/test-copy-file.sh: New file.
24818         * tests/test-copy-file.c: New file.
24819         * tests/test-copy-file-sameacls.c: New file.
24820
24821 2008-05-22  Eric Blake  <ebb9@byu.net>
24822
24823         Avoid gcc warning.
24824         * tests/test-memcmp.c (main): Pass NULL indirectly.
24825
24826 2008-05-21  Bruno Haible  <bruno@clisp.org>
24827
24828         Add reference doc about ACLs.
24829         * doc/acl-resources.txt: New file.
24830         * doc/acl-cygwin.txt: New file.
24831
24832 2008-05-21  Bruno Haible  <bruno@clisp.org>
24833
24834         Avoid one more warning from gcc.
24835         * lib/vasnprintf.c (IF_LINT): Update comments.
24836         (VASNPRINTF): Use it also for the 'prefix' array initializer.
24837
24838 2008-05-21  Jim Meyering  <meyering@redhat.com>
24839
24840         avoid a warning from gcc
24841         * lib/vasnprintf.c (IF_LINT): Define.
24842         (scale10_round_decimal_long_double):
24843         Use it to avoid a "may be used uninitialized" warning.
24844         (scale10_round_decimal_double): Likewise.
24845
24846 2008-05-21  Simon Josefsson  <simon@josefsson.org>
24847
24848         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
24849         declared.
24850
24851 2008-05-20  Bruno Haible  <bruno@clisp.org>
24852
24853         * tests/test-memcmp.c (main): Test also the sign of the result. Test
24854         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
24855
24856 2008-05-20  Simon Josefsson  <simon@josefsson.org>
24857
24858         * modules/memcmp-tests: New file.
24859         * tests/test-memcmp.c: New file.
24860
24861 2008-05-19  Bruno Haible  <bruno@clisp.org>
24862
24863         * modules/propername (Notice, configure.ac): Put quoted "..." into
24864         --keyword option.
24865         * lib/propername.h: Update comments accordingly.
24866         Reported by Eric Blake.
24867
24868 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
24869
24870         * modules/getpass-gnu (Depends-on): Add fseeko.
24871
24872 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24873
24874         * modules/base64-tests: New file.
24875
24876 2008-05-19  Bo Borgerson <gigabo@gmail.com>
24877
24878         * lib/base64.c (base64_decode_ctx): If a decode context structure
24879         was passed in use it to ignore newlines.  If a context structure
24880         was _not_ passed in, continue to treat newlines as garbage (this
24881         is the historical behavior).  Formerly base64_decode.
24882         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24883         takes a decode context structure.
24884         * lib/base64.h (base64_decode): Macro for four-argument calls.
24885         (base64_decode_alloc): Likewise.
24886         * lib/base64.c (base64_decode_ctx): If a decode context structure
24887         was passed in use it to ignore newlines.  If a context structure
24888         was _not_ passed in, continue to treat newlines as garbage (this
24889         is the historical behavior).  Formerly base64_decode.
24890         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24891         takes a decode context structure.
24892         * lib/base64.h (base64_decode): Macro for four-argument calls.
24893         (base64_decode_alloc): Likewise.
24894
24895 2008-05-19  Jim Meyering  <meyering@redhat.com>
24896
24897         avoid a warning from gcc
24898         * lib/trim.c (IF_LINT): Define.
24899         (trim2): Use it to avoid a "may be used uninitialized" warning.
24900
24901         Fix doc typo.
24902         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
24903
24904 2008-05-19  Bruno Haible  <bruno@clisp.org>
24905
24906         * doc/glibc-functions/getpass.texi: Document limits of other
24907         implementations.
24908
24909 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24910             Bruno Haible <bruno@clisp.org>
24911
24912         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
24913
24914 2008-05-18  Bruno Haible  <bruno@clisp.org>
24915
24916         * modules/propername: New file, from GNU gettext.
24917         * lib/propername.h: New file, from GNU gettext.
24918         * lib/propername.c: New file, from GNU gettext.
24919         * MODULES.html.sh (Internationalization functions): Add propername.
24920
24921 2008-05-16  Jim Meyering  <meyering@redhat.com>
24922             Bruno Haible  <bruno@clisp.org>
24923
24924         Avoid some warnings from "gcc -Wshadow".
24925         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
24926
24927 2008-05-15  Eric Blake  <ebb9@byu.net>
24928
24929         Extend previous patch to cygwin 1.7.0.
24930         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
24931         fast implementation in cygwin >= 1.7.0.
24932         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24933         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24934
24935 2008-05-15  Bruno Haible  <bruno@clisp.org>
24936
24937         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
24938         implementation in glibc >= 2.9.
24939         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24940         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24941
24942 2008-05-15  Bruno Haible  <bruno@clisp.org>
24943
24944         * MODULES.html.sh (Internationalization functions): Remove linebreak.
24945         (Unicode string functions): Add unilbrk/*.
24946         Reported by Karl Berry.
24947
24948 2008-05-15  Eric Blake  <ebb9@byu.net>
24949
24950         Fix violation of <stdbool.h> replacement in regex.
24951         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
24952         * lib/regexec.c (re_search_internal): Likewise.
24953         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
24954
24955 2008-05-15  Jim Meyering  <meyering@redhat.com>
24956
24957         avoid distracting test output when git or cvs is not found
24958         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
24959         * tests/test-vc-list-files-git.sh: Likewise.
24960
24961 2008-05-15  Eric Blake  <ebb9@byu.net>
24962
24963         Glibc finally accepted the memmem speedup code, bugzilla #5514.
24964         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
24965         glibc version.
24966         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
24967         * doc/posix-functions/strstr.texi (strstr): Likewise.
24968         * lib/str-two-way.h (MAX): Sychronize with glibc.
24969
24970 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
24971
24972         * lib/regcomp.c (optimize_utf8): Add a note on why we test
24973         opr.ctx_type.
24974         (calc_first): Initialize constraint field.
24975         (duplicate_node_closure): Use it instead of special casing ANCHORS.
24976         Fix grammar.
24977         (duplicate_node): Merge constraint field for all node types.
24978         (calc_eclosure_iter): Look at constraint field for all node types.
24979         * lib/regex_internal.c (create_cd_newstate): Don't look at
24980         opr.ctx_type.
24981
24982 2008-05-14  Bruno Haible  <bruno@clisp.org>
24983
24984         Help GCC to do better code generation.
24985         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
24986         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
24987         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
24988         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
24989         Declare with attribute 'malloc' if supported.
24990
24991 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
24992
24993         use "echo STR|wc -c" rather than unportable "expr length STR"
24994         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
24995         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
24996
24997 2008-05-14  Jim Meyering  <meyering@redhat.com>
24998
24999         use dd ibs=$n count=1 ... rather than less-portable head -c$n
25000         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
25001         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
25002         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
25003         via Collin Lasse.
25004
25005 2008-05-14  Eric Blake  <ebb9@byu.net>
25006
25007         Avoid quadratic growth in gl_LIBSOURCES.
25008         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
25009         Suggested by Bruno Haible.
25010
25011         Test xmemdup0.
25012         * modules/xmemdup0-tests: New file.
25013         * tests/test-xmemdup0.c: Likewise.
25014
25015 2008-05-13  Eric Blake  <ebb9@byu.net>
25016
25017         Split xmemdup0 into its own module.
25018         * modules/xmemdup0: New file.
25019         * lib/xmemdup0.h: Likewise.
25020         * lib/xmemdup0.c: Likewise.
25021         * MODULES.html.sh (Memory management functions): Add xmemdup0.
25022         * lib/xalloc.h (xmemdup0): Remove.
25023         * lib/xmalloc.c (xmemdup0): Likewise.
25024
25025 2008-05-13  Eric Blake  <ebb9@byu.net>
25026             Bruno Haible  <bruno@clisp.org>
25027
25028         Reduce number of forks required during autoconf.
25029         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
25030         and gl_LIBSOURCES_DIR.
25031         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
25032         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
25033         m4_syscmd per file.
25034         <m4_foreach_w>: Move...
25035         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
25036
25037 2008-05-13  Eric Blake  <ebb9@byu.net>
25038
25039         * gnulib-tool: Fix various comment typos.
25040
25041 2008-05-12  Bruno Haible  <bruno@clisp.org>
25042
25043         Tailor the linebreaking algorithm.
25044         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
25045
25046 2008-05-12  Bruno Haible  <bruno@clisp.org>
25047
25048         Update to Unicode 5.0.0.
25049         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25050         LBP_JV, LBP_JT. Redistribute values.
25051         (unilbrk_table): Change size.
25052         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
25053         Unicode TR#14 rev. 22.
25054         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25055         LBP_JV, LBP_JT. Redistribute values.
25056         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
25057         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
25058         Update.
25059         * lib/unilbrk/lbrkprop1.h: Regenerated.
25060         * lib/unilbrk/lbrkprop2.h: Regenerated.
25061         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
25062         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
25063         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
25064         Likewise.
25065         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
25066         Likewise.
25067         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
25068         result.
25069         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
25070         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
25071         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
25072         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
25073         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
25074         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
25075
25076 2008-05-11  Bruno Haible  <bruno@clisp.org>
25077
25078         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
25079
25080 2008-05-11  Bruno Haible  <bruno@clisp.org>
25081
25082         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
25083         * modules/unilbrk/gen-lbrk: New file.
25084
25085 2008-05-11  Bruno Haible  <bruno@clisp.org>
25086
25087         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
25088         * m4/sha512.m4 (gl_SHA512): Likewise.
25089
25090 2008-05-11  Jim Meyering  <meyering@redhat.com>
25091
25092         New modules: crypto/sha256, crypto/sha512 (from coreutils)
25093         * modules/crypto/sha256: New file.
25094         * modules/crypto/sha512: Likewise.
25095         * lib/sha256.c: Likewise.
25096         * lib/sha256.h: Likewise.
25097         * lib/sha512.c: Likewise.
25098         * lib/sha512.h: Likewise.
25099         * lib/u64.h: Likewise.
25100         * m4/sha256.m4: Likewise.
25101         * m4/sha512.m4: Likewise.
25102         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
25103
25104 2008-05-10  Bruno Haible  <bruno@clisp.org>
25105
25106         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
25107         (Input/Output <stdio.h>): Add xprintf.
25108         (Signal handling <signal.h>): Add strsignal.
25109         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
25110         (Core language properties): Add func.
25111         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
25112         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
25113         strings.
25114         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
25115         (Input/output): New section.
25116         (File system functions): Add openat-die, stat-macros.
25117         (Networking functions): Add sockets.
25118         (Unicode string functions): Add unictype/*.
25119         (Support for building libraries and executables): Add gperf.
25120         (Support for building documentation): Add agpl-3.0.
25121         (Misc): Add nocrash.
25122
25123 2008-05-10  Bruno Haible  <bruno@clisp.org>
25124
25125         * modules/unictype/gen-ctype: New file.
25126
25127 2008-05-10  Jim Meyering  <meyering@redhat.com>
25128
25129         Make chdir-safer.c more efficient on a system with no symlinks.
25130         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
25131         also if ELOOP is zero.  Suggested by Bruno Haible.
25132
25133         Make chdir-safer.c slightly safer.
25134         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
25135         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
25136
25137         Avoid compile failure on systems without ELOOP (like mingw).
25138         * lib/chdir-safer.c (ELOOP): Define if not already defined.
25139         Reported by Bruno Haible.
25140
25141 2008-05-10  Bruno Haible  <bruno@clisp.org>
25142
25143         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
25144         (is_utf8_encoding): Use a case-insensitive comparison.
25145         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
25146         streq.
25147
25148 2008-05-10  Bruno Haible  <bruno@clisp.org>
25149
25150         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
25151         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
25152         * lib/unilbrk/ulc-common.h (iconv_string_length,
25153         iconv_string_keeping_offsets): Remove declarations.
25154         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
25155         Don't include <iconv.h>, streq.h, xsize.h.
25156         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
25157         conversion.
25158         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
25159         <iconv.h>, streq.h, xsize.h.
25160         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
25161         conversion.
25162         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
25163         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
25164         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
25165         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
25166
25167 2008-05-10  Bruno Haible  <bruno@clisp.org>
25168
25169         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
25170         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
25171
25172         * modules/unilbrk/u32-width-linebreaks-tests: New file.
25173         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
25174
25175         * modules/unilbrk/u16-width-linebreaks-tests: New file.
25176         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
25177
25178         * modules/unilbrk/u8-width-linebreaks-tests: New file.
25179         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
25180
25181         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
25182         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
25183
25184         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
25185         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
25186
25187         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
25188         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
25189
25190         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
25191         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
25192
25193 2008-05-10  Bruno Haible  <bruno@clisp.org>
25194
25195         Split up 'linebreak' module.
25196         * lib/unilbrk.h: New file, based on lib/linebreak.h.
25197         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
25198         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
25199         modifications.
25200         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
25201         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
25202         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
25203         lib/linebreak.c.
25204         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
25205         lib/linebreak.c.
25206         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
25207         lib/linebreak.c.
25208         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
25209         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
25210         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
25211         lib/linebreak.c.
25212         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
25213         lib/linebreak.c.
25214         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
25215         lib/linebreak.c.
25216         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
25217         lib/linebreak.c.
25218         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
25219         lib/linebreak.c.
25220         * modules/unilbrk/base: New file.
25221         * modules/unilbrk/tables: New file.
25222         * modules/unilbrk/u8-possible-linebreaks: New file.
25223         * modules/unilbrk/u16-possible-linebreaks: New file.
25224         * modules/unilbrk/u32-possible-linebreaks: New file.
25225         * modules/unilbrk/ulc-common: New file.
25226         * modules/unilbrk/ulc-possible-linebreaks: New file.
25227         * modules/unilbrk/u8-width-linebreaks: New file.
25228         * modules/unilbrk/u16-width-linebreaks: New file.
25229         * modules/unilbrk/u32-width-linebreaks: New file.
25230         * modules/unilbrk/ulc-width-linebreaks: New file.
25231         * lib/linebreak.h: Remove file.
25232         * lib/linebreak.c: Remove file.
25233         * m4/linebreak.m4: Remove file.
25234         * modules/linebreak: Remove file.
25235         * NEWS: Mention the changes.
25236
25237 2008-05-09  Eric Blake  <ebb9@byu.net>
25238
25239         Add xmemdup0.
25240         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
25241         implementation.
25242         * lib/xmalloc.c (xmemdup0): New C implementation.
25243
25244 2008-05-08  Bruno Haible  <bruno@clisp.org>
25245
25246         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
25247
25248 2008-05-07  Eric Blake  <ebb9@byu.net>
25249
25250         Support cross-compilation of <wctype.h>.
25251         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
25252         AC_CACHE_CHECK.
25253
25254 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
25255
25256         * build-aux/vc-list-files: Add support for bzr.
25257
25258 2008-05-03  Jim Meyering  <meyering@redhat.com>
25259
25260         avoid failed assertion with tight malloc
25261         * tests/test-getndelim2.c: Correct an off-by-one assertion.
25262
25263 2008-05-03  Simon Josefsson  <simon@josefsson.org>
25264
25265         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
25266         are needed from arpa/inet.h.
25267         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
25268         Reported by Bruno Haible.
25269
25270 2008-05-02  Jim Meyering  <meyering@redhat.com>
25271
25272         avoid compilation error on FreeBSD 6
25273         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
25274
25275 2008-05-01  Jim Meyering  <meyering@redhat.com>
25276
25277         useless-if-before-free: correct --help's exit status description
25278         * build-aux/useless-if-before-free (usage): Like grep, exit 0
25279         for one or more matches, etc.  Reported by Bruno Haible.
25280
25281         vc-list-files: make the stand-alone gnulib test work
25282         * modules/vc-list-files-tests (configure.ac):
25283         Define and AC_SUBST abs_aux_dir.
25284         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
25285         $(abs_top_srcdir) to each script and having each of them
25286         duplicate the work of setting PATH, set PATH here, using
25287         the new variable, abs_aux_dir instead.
25288         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
25289         * tests/test-vc-list-files-git.sh: Likewise.
25290         Reported by Bruno Haible.
25291
25292 2008-05-01  Bruno Haible  <bruno@clisp.org>
25293
25294         * lib/getndelim2.c (getndelim2): Fix newsize computation during
25295         reallocation. Rename 'done' to 'found_delimiter'.
25296
25297 2008-05-01  Jim Meyering  <meyering@redhat.com>
25298
25299         vc-list-files: accommodate /bin/sh like the one from Solaris 10
25300         * build-aux/vc-list-files: Use `...`, not $(...).
25301
25302 2008-04-30  Jim Meyering  <meyering@redhat.com>
25303
25304         add tests for vc-list-files
25305         * modules/vc-list-files-tests: New module.
25306         * tests/test-vc-list-files-cvs.sh: New file.
25307         * tests/test-vc-list-files-git.sh: New file.
25308
25309         avoid a warning from gcc
25310         * lib/getndelim2.c (IF_LINT): Define.
25311         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
25312
25313         vc-list-files: work properly with build-aux/cvsu, too
25314         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
25315         to all cvs-based clauses.
25316
25317         vc-list-files: work properly in the CVS+awk case, too
25318         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
25319
25320         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
25321         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
25322         take more than one file argument, so .  Add quotes, just in case $dir
25323         ever contains a shell meta-character.  Prompted by Soren Hansen in
25324         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
25325
25326 2008-04-29  Eric Blake  <ebb9@byu.net>
25327
25328         Optimize getndelim2 to use block operations when possible.
25329         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
25330         freadseek, and memchr2.
25331         * lib/getndelim2.c (getndelim2): Use them for block reads.
25332
25333 2008-04-29  Bruno Haible  <bruno@clisp.org>
25334
25335         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
25336         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
25337         * modules/inet_ntop (Depends-on): Add extensions.
25338         * modules/inet_pton (Depends-on): Likewise.
25339         Reported by Simon Josefsson.
25340
25341 2008-04-29  Jim Meyering  <meyering@redhat.com>
25342
25343         When the is more than one match in a block, match all of them.
25344         * build-aux/useless-if-before-free: Iterate through each block
25345         until there are no more matches.
25346
25347         Fix broken useless-if-before-free script.
25348         * build-aux/useless-if-before-free: Fix typo: missing "?" after
25349         the expression to match cast of argument to free-like function.
25350
25351 2008-04-29  Eric Blake  <ebb9@byu.net>
25352
25353         Use new header.
25354         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
25355
25356 2008-04-29  Jim Meyering  <meyering@redhat.com>
25357
25358         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
25359         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
25360         by gnulib to exist and to declare e.g., inet_ntop.
25361         Don't include "inet_ntop.h", now removed.
25362
25363         * m4/arpa_inet_h.m4: Remove trailing blanks.
25364
25365 2008-04-29  Eric Blake  <ebb9@byu.net>
25366
25367         Silence valgrind on safe reads beyond potential array bounds.
25368         * lib/rawmemchr.valgrind: New file.
25369         * lib/strchrnul.valgrind: Likewise.
25370         * modules/rawmemchr (Files): Distribute new file.
25371         * modules/strchrnul (Files): Likewise.
25372         Suggested by Bruno Haible.
25373
25374 2008-04-29  Bruno Haible  <bruno@clisp.org>
25375
25376         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
25377         (inet_ntop, inet_pton): Change portability warning's wording.
25378         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
25379         Invoke gl_CHECK_NEXT_HEADERS.
25380         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
25381         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
25382         set ARPA_INET_H.
25383         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
25384         * modules/arpa_inet (Description): No longer only for systems that
25385         lack it.
25386         (Depends-on): Add include_next.
25387         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
25388         HAVE_ARPA_INET_H.
25389
25390 2008-04-29  Jim Meyering  <meyering@redhat.com>
25391
25392         * modules/mkdir (License): Re-license as LGPLv2+.
25393
25394 2008-04-29  Bruno Haible  <bruno@clisp.org>
25395
25396         * modules/rawmemchr (Maintainer): Set to Eric.
25397         * modules/strchrnul (Maintainer): Likewise.
25398
25399 2008-04-29  Simon Josefsson  <simon@josefsson.org>
25400
25401         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
25402         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
25403
25404         * modules/arpa_inet (arpa/inet.h): Use them.
25405
25406 2008-04-28  Eric Blake  <ebb9@byu.net>
25407
25408         Test getndelim2.
25409         * modules/getndelim2-tests: New file.
25410         * tests/test-getndelim2.c: Likewise.
25411         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
25412         stream.
25413         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
25414
25415         * MODULES.html.sh: Document new module.
25416
25417 2008-04-20  Bruno Haible  <bruno@clisp.org>
25418
25419         * lib/c-stack.c (die): Use raise.
25420         * modules/c-stack (Depends-on): Add raise.
25421
25422 2008-04-28  Bruno Haible  <bruno@clisp.org>
25423
25424         Expect rpmatch to be declared.
25425         * lib/yesno.c (rpmatch): Remove declaration.
25426
25427         Declare rpmatch.
25428         * lib/stdlib.in.h (rpmatch): New declaration.
25429         * lib/rpmatch.c: Include <stdlib.h> first.
25430         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
25431         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
25432         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
25433         HAVE_RPMATCH.
25434         * modules/rpmatch (Depends-on): Add stdlib, extensions.
25435         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25436         (Include): Set to <stdlib.h>.
25437         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
25438         HAVE_RPMATCH.
25439         * NEWS: Document the change.
25440
25441 2008-04-28  Bruno Haible  <bruno@clisp.org>
25442
25443         Change rpmatch to use nl_langinfo when appropriate.
25444         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
25445         (N_): New macro.
25446         (localized_pattern): New function/macro.
25447         (try): Remove match, nomatch arguments. Copy the pattern into safe
25448         memory before caching it.
25449         (rpmatch): Use localized_pattern. Add translator comments.
25450         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
25451         Suggested by Eric Blake.
25452         * modules/rpmatch (Depends-on): Add stdbool.
25453
25454 2008-04-28  Eric Blake  <ebb9@byu.net>
25455
25456         Add rawmemchr module, matching glibc.
25457         * modules/string (Makefile.am): New indicator.
25458         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
25459         * lib/string.in.h (rawmemchr): Declare when appropriate.
25460         * modules/rawmemchr: New file.
25461         * m4/rawmemchr.m4: Likewise.
25462         * lib/rawmemchr.c: Likewise.
25463         * modules/rawmemchr-tests: Likewise.
25464         * tests/test-rawmemchr.c: Likewise.
25465         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
25466         module.
25467         * modules/strchrnul (Depends-on): Add rawmemchr.
25468         * lib/strchrnul.c (strchrnul): Optimize a corner case.
25469
25470         Whitespace cleanup.
25471         * tests/test-strchrnul.c: Reindent.
25472         * lib/strchrnul.c: Likewise.
25473
25474         Optimize and test strchrnul.
25475         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
25476         * modules/strchrnul-tests: New file.
25477         * tests/test-strchrnul.c: Likewise.
25478
25479         Remove intprops dependency.
25480         * modules/memchr (Depends-on): Remove intprops.
25481         * modules/memrchr (Depends-on): Likewise.
25482         * modules/memchr2 (Depends-on): Likewise.
25483         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
25484         * lib/memrchr.c (__memrchr): Likewise.
25485         * lib/memrchr2.c (memchr2): Likewise.
25486         Reported by Simon Josefsson.
25487
25488 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25489
25490         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
25491         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25492
25493 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25494
25495         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
25496
25497         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
25498
25499         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
25500
25501         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
25502         declarations.
25503         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
25504
25505         * m4/inet_pton.m4: Don't check for header files.
25506
25507         * m4/inet_ntop.m4: Don't check for header files.
25508
25509 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25510
25511         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
25512         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
25513         trigger for cygwin).
25514         Reported by Bruno Haible  <bruno@clisp.org>.
25515
25516 2008-04-28  Bruno Haible  <bruno@clisp.org>
25517
25518         * doc/posix-functions/strdup.texi: Mention mingw problem.
25519
25520 2008-04-27  Bruno Haible  <bruno@clisp.org>
25521
25522         * modules/stat-time-tests (Depends-on): Add sleep.
25523         * tests/test-stat-time.c (force_unlink): New function.
25524         (cleanup): Use it.
25525         (test_mtime): Remove the ctime related tests.
25526         (test_ctime): New function, containing the ctime related tests.
25527         (main): Call test_ctime, except on native Windows platforms.
25528
25529 2008-04-27  Bruno Haible  <bruno@clisp.org>
25530
25531         * lib/rpmatch.c (rpmatch): Add some comments.
25532         Reported by James Youngman <jay@gnu.org>.
25533
25534 2008-04-27  Bruno Haible  <bruno@clisp.org>
25535
25536         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
25537         quiet NaNs.
25538
25539 2008-04-27  Bruno Haible  <bruno@clisp.org>
25540
25541         Make test-yesno.sh work on mingw.
25542         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
25543         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
25544         (main): Set stdin to binary mode.
25545         * modules/yesno-tests (Depends-on): Add binary-io.
25546
25547 2008-04-27  Bruno Haible  <bruno@clisp.org>
25548
25549         Fix 'isfinite' on x86, x86_64, ia64 platforms.
25550         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
25551         argument that lie outside the IEEE 854 domain.
25552         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
25553         (gl_ISFINITE): Use it.
25554         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
25555
25556 2008-04-27  Bruno Haible  <bruno@clisp.org>
25557
25558         Allow local renaming in config.h.
25559         * lib/memrchr.c (memrchr): Don't undefine outside libc.
25560
25561 2008-04-27  Bruno Haible  <bruno@clisp.org>
25562
25563         * lib/memchr.c (__memchr): Change type of 'i'.
25564         * lib/memchr2.c (memchr2): Likewise.
25565
25566 2008-04-26  Eric Blake  <ebb9@byu.net>
25567         and Bruno Haible  <bruno@clisp.org>
25568
25569         Optimize and test memrchr.
25570         * modules/memrchr (Depends-on): Add intprops.
25571         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
25572         * modules/memrchr-tests: New file.
25573         * tests/test-memrchr.c: New file.
25574
25575 2008-04-26  Bruno Haible  <bruno@clisp.org>
25576
25577         Add tentative support for DragonFly BSD.
25578         * lib/stdio-impl.h: Add macros for DragonFly BSD.
25579         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
25580         fp.
25581         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
25582         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
25583         * lib/fpurge.c (fpurge): Likewise.
25584         * lib/freadable.c (freaadable): Likewise.
25585         * lib/freadahead.c (freadahead): Likewise.
25586         * lib/freading.c (freading): Likewise.
25587         * lib/freadptr.c (freadptr): Likewise.
25588         * lib/freadseek.c (freadptrinc): Likewise.
25589         * lib/fseeko.c (fseeko): Likewise.
25590         * lib/fseterr.c (fseterr): Likewise.
25591         * lib/fwritable.c (fwritable): Likewise.
25592         * lib/fwriting.c (fwriting): Likewise.
25593
25594 2008-04-26  Bruno Haible  <bruno@clisp.org>
25595
25596         * lib/stdio-impl.h: New file.
25597         * lib/fbufmode.c: Include stdio-impl.h.
25598         (fbufmode): Use fp_, remove redundant #defines.
25599         * lib/fflush.c: Include stdio-impl.h.
25600         (clear_ungetc_buffer): Remove redundant #defines.
25601         * lib/fpurge.c: Include stdio-impl.h.
25602         (fpurge): Remove redundant #defines.
25603         * lib/freadable.c: Include stdio-impl.h.
25604         (freadable): Remove redundant #defines.
25605         * lib/freadahead.c: Include stdio-impl.h.
25606         (freadahead): Remove redundant #defines.
25607         * lib/freading.c: Include stdio-impl.h.
25608         (freading): Remove redundant #defines.
25609         * lib/freadptr.c: Include stdio-impl.h.
25610         (freadptr): Remove redundant #defines.
25611         * lib/freadseek.c: Include stdio-impl.h.
25612         (freadptrinc): Remove redundant #defines.
25613         * lib/fseeko.c: Include stdio-impl.h.
25614         (rpl_fseeko): Remove redundant #defines.
25615         * lib/fseterr.c: Include stdio-impl.h.
25616         (fseterr): Remove redundant #defines.
25617         * lib/fwritable.c: Include stdio-impl.h.
25618         (fwritable: Remove redundant #defines.
25619         * lib/fwriting.c: Include stdio-impl.h.
25620         (fwriting): Remove redundant #defines.
25621         * modules/fbufmode (Files): Add lib/stdio-impl.h.
25622         * modules/fflush (Files): Likewise.
25623         * modules/fpurge (Files): Likewise.
25624         * modules/freadable (Files): Likewise.
25625         * modules/freadahead (Files): Likewise.
25626         * modules/freading (Files): Likewise.
25627         * modules/freadptr (Files): Likewise.
25628         * modules/freadseek (Files): Likewise.
25629         * modules/fseeko (Files): Likewise.
25630         * modules/fseterr (Files): Likewise.
25631         * modules/fwritable (Files): Likewise.
25632         * modules/fwriting (Files): Likewise.
25633
25634 2008-04-26  Bruno Haible  <bruno@clisp.org>
25635
25636         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
25637         restore_seek_optimization, update_fpos_cache): New functions, extracted
25638         from rpl_fflush.
25639         (rpl_fflush): Use them.
25640         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
25641         (gl_REPLACE_FFLUSH): Use it.
25642
25643 2008-04-26  Bruno Haible  <bruno@clisp.org>
25644
25645         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
25646         on Solaris.
25647         * tests/test-xstrtoimax.sh: Likewise.
25648         * tests/test-xstrtoumax.sh: Likewise.
25649         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25650
25651 2008-04-26  Bruno Haible  <bruno@clisp.org>
25652
25653         * modules/memchr-tests: New file.
25654         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
25655
25656 2008-04-26  Eric Blake  <ebb9@byu.net>
25657             Bruno Haible  <bruno@clisp.org>
25658
25659         * lib/memchr.c: Include intprops.h.
25660         (__memchr): Optimize parallel detection of matching bytes. Rename local
25661         variables. Add explanatory comments.
25662
25663 2008-04-26  Bruno Haible  <bruno@clisp.org>
25664
25665         Fix module 'memchr', broken since 2000-10-28.
25666         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
25667
25668 2008-04-26  Bruno Haible  <bruno@clisp.org>
25669
25670         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
25671         comments.
25672
25673 2008-04-25  Eric Blake  <ebb9@byu.net>
25674
25675         Use native fstatat on cygwin 1.7.0.
25676         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
25677         first.
25678
25679 2008-04-23  Eric Blake  <ebb9@byu.net>
25680
25681         Improve memchr2 performance.
25682         * lib/memchr2.c (memchr2): Further optimize parallel detection of
25683         NUL bytes.
25684         * modules/memchr2 (Depends-on): Use intprops.h.
25685
25686 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25687
25688         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
25689         an inline function instead of a CPP macro.  Patch by Ben Pfaff
25690         <blp@cs.stanford.edu>.
25691
25692 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25693
25694         * lib/arpa_inet.in.h: New file.
25695
25696         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
25697         (Makefile.am): Sed in substitute header file.
25698
25699         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
25700         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
25701
25702         * modules/inet_ntop (configure.ac): Use
25703         gl_ARPA_INET_MODULE_INDICATOR.
25704
25705         * modules/inet_pton (configure.ac): Use
25706         gl_ARPA_INET_MODULE_INDICATOR.
25707
25708 2008-04-22  Jim Meyering  <meyering@redhat.com>
25709
25710         * modules/verify (License): Re-license as LGPLv2+.
25711
25712 2008-04-22  Simon Josefsson  <simon@josefsson.org>
25713
25714         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
25715         parameter to void* as per POSIX standard (MinGW uses char*).
25716
25717 2008-04-21  Bruno Haible  <bruno@clisp.org>
25718
25719         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
25720         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
25721         Define to replacements if REPLACE_ISWCNTRL is 1.
25722         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
25723         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
25724         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
25725         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
25726         what it fixes.
25727         * doc/posix-functions/iswalpha.texi: Likewise.
25728         * doc/posix-functions/iswblank.texi: Likewise.
25729         * doc/posix-functions/iswcntrl.texi: Likewise.
25730         * doc/posix-functions/iswdigit.texi: Likewise.
25731         * doc/posix-functions/iswgraph.texi: Likewise.
25732         * doc/posix-functions/iswlower.texi: Likewise.
25733         * doc/posix-functions/iswprint.texi: Likewise.
25734         * doc/posix-functions/iswpunct.texi: Likewise.
25735         * doc/posix-functions/iswspace.texi: Likewise.
25736         * doc/posix-functions/iswupper.texi: Likewise.
25737         * doc/posix-functions/iswxdigit.texi: Likewise.
25738         Reported by Alain Guibert.
25739
25740 2008-04-21  Bruno Haible  <bruno@clisp.org>
25741
25742         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
25743         Patch by Alain Guibert.
25744
25745 2008-04-21  Bruno Haible  <bruno@clisp.org>
25746
25747         Fix test failures on mingw.
25748         * tests/test-xstrtol.c (print_no_progname): New function.
25749         (main): Install it in error_print_progname hook.
25750         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
25751         * tests/test-xstrtoimax.sh: Likewise.
25752         * tests/test-xstrtoumax.sh: Likewise.
25753
25754 2008-04-21  Bruno Haible  <bruno@clisp.org>
25755
25756         Fix test failure on mingw.
25757         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
25758
25759 2008-04-21  Bruno Haible  <bruno@clisp.org>
25760
25761         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
25762         Actually assign a value.
25763
25764 2008-04-20  Bruno Haible  <bruno@clisp.org>
25765
25766         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
25767         take 2.
25768         * lib/canonicalize.c (canonicalize_file_name): Elide if the
25769         'canonicalize-lgpl' module is also used.
25770         * lib/canonicalize-lgpl.c: Undo last change.
25771         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
25772
25773 2008-04-20  Bruno Haible  <bruno@clisp.org>
25774
25775         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
25776         config.h. Provide _mkdir based fallback for mingw.
25777         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
25778         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
25779         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
25780         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
25781         rather than defining mkdir in config.h.
25782         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
25783         (gl_SYS_STAT_H_DEFAULTS): New macro.
25784         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
25785         HAVE_IO_H any more.
25786         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
25787         HAVE_DECL_MKDIR and HAVE_IO_H.
25788
25789 2008-04-20  Bruno Haible  <bruno@clisp.org>
25790
25791         * lib/isapipe.c: Port to native Windows platforms.
25792
25793 2008-04-20  Bruno Haible  <bruno@clisp.org>
25794
25795         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
25796
25797 2008-04-21  Eric Blake  <ebb9@byu.net>
25798
25799         Work around preprocessors that don't handle UINTMAX_MAX.
25800         * lib/memchr2.c (memchr2): Avoid embedded #if.
25801         Reported by Alain Guibert, fix suggested by Bruno Haible.
25802
25803 2008-04-21  Simon Josefsson  <simon@josefsson.org>
25804
25805         * doc/posix-functions/strftime.texi (strftime): Explain better
25806         Windows incompatibility.  Suggested by Micah Cowan
25807         <micah@cowan.name>.
25808
25809 2008-04-20  Bruno Haible  <bruno@clisp.org>
25810
25811         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
25812         unistr/u8-mblen.
25813
25814 2008-04-20  Bruno Haible  <bruno@clisp.org>
25815
25816         Fix test failure on platforms with non-GNU iconv.
25817         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
25818         (U_TO_U8): Use it, rather than u16_to_u8.
25819         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
25820         units at the end of the input string.
25821         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
25822
25823 2008-04-20  Bruno Haible  <bruno@clisp.org>
25824
25825         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
25826         when the resulting length is 0.
25827         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
25828
25829 2008-04-20  Bruno Haible  <bruno@clisp.org>
25830
25831         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
25832         works.
25833         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
25834
25835 2008-04-20  Bruno Haible  <bruno@clisp.org>
25836
25837         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
25838         * modules/tsearch-tests (configure.ac): Test for initstate function.
25839
25840 2008-04-20  Bruno Haible  <bruno@clisp.org>
25841
25842         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
25843         for nlink_t if missing.
25844         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
25845
25846 2008-04-19  Bruno Haible  <bruno@clisp.org>
25847
25848         Work around snprintf bug on Linux libc5.
25849         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
25850         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25851         gl_SNPRINTF_SIZE1.
25852         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25853         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
25854         that test failed.
25855         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
25856         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
25857         * modules/snprintf (Files): Add m4/printf.m4.
25858         * modules/vsnprintf (Files): Likewise.
25859         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
25860         * doc/posix-functions/vsnprintf.texi: Likewise.
25861
25862 2008-04-19  Bruno Haible  <bruno@clisp.org>
25863
25864         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
25865         from 0.0058 to less than 10^-7.
25866
25867 2008-04-19  Bruno Haible  <bruno@clisp.org>
25868
25869         Fix rounding when a precision is given.
25870         * lib/vasnprintf.c (is_borderline): New function.
25871         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
25872         9...9x.
25873         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
25874         %e, %g.
25875         * tests/test-vasprintf-posix.c (test_function): Likewise.
25876         * tests/test-snprintf-posix.h (test_function): Likewise.
25877         * tests/test-sprintf-posix.h (test_function): Likewise.
25878         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
25879         * tests/test-printf-posix.h (test_function): Likewise.
25880         * tests/test-printf-posix.output: Update.
25881         Reported by John Darrington <john@darrington.wattle.id.au> via
25882         Ben Pfaff <blp@cs.stanford.edu>.
25883
25884 2008-04-18  Simon Josefsson  <simon@josefsson.org>
25885
25886         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
25887         Suggested by Bruno Haible <bruno@clisp.org>.
25888
25889 2008-04-17  Bruno Haible  <bruno@clisp.org>
25890
25891         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
25892         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
25893         implementation.
25894         Patch by Bruce Merry <bmerry@gmail.com>.
25895
25896 2008-04-17  Simon Josefsson  <simon@josefsson.org>
25897
25898         * doc/posix-functions/strftime.texi (strftime): Mention that %e
25899         doesn't work under Windows.
25900
25901 2008-04-16  Bruno Haible  <bruno@clisp.org>
25902
25903         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
25904         New macros.
25905         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
25906         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
25907         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
25908         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
25909         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
25910         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
25911         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
25912         macros.
25913         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
25914         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
25915         Northern Sotho, Uighur.
25916
25917 2008-04-16  Bruno Haible  <bruno@clisp.org>
25918
25919         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
25920         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
25921         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
25922         Reported by Daniel Bergström <daniel@octocode.com>.
25923
25924 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
25925             Bruno Haible  <bruno@clisp.org>
25926
25927         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
25928         function.
25929         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
25930         New functions, mostly extracted from gl_locale_name_default.
25931         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
25932
25933 2008-04-16  Eric Blake  <ebb9@byu.net>
25934
25935         Adjust strtod detection to catch glibc 2.7 bug.
25936         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
25937         Reported by John Gatewood Ham.
25938
25939 2008-04-16  Bruno Haible  <bruno@clisp.org>
25940
25941         Add tentative support for Linux libc5.
25942         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
25943         * lib/fpurge.c (fpurge): Likewise.
25944         * lib/freadable.c (freadable): Likewise.
25945         * lib/freadahead.c (freadahead): Likewise.
25946         * lib/freading.c (freading): Likewise.
25947         * lib/freadptr.c (freadptr): Likewise.
25948         * lib/freadseek.c (freadptrinc): Likewise.
25949         * lib/fseeko.c (rpl_fseeko): Likewise.
25950         * lib/fseterr.c (fseterr): Likewise.
25951         * lib/fwritable.c (fwritable): Likewise.
25952         * lib/fwriting.c (fwriting): Likewise.
25953         Reported by Alain Guibert <alguibert+bts@free.fr>.
25954
25955 2008-04-15  Bruno Haible  <bruno@clisp.org>
25956
25957         * modules/mathl (configure.ac): Define module indicator.
25958
25959 2008-04-15  Bruno Haible  <bruno@clisp.org>
25960
25961         * lib/logl.c (logl): Remove unused variables.
25962
25963 2008-04-15  Bruno Haible  <bruno@clisp.org>
25964
25965         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
25966         fails.
25967
25968 2008-04-15  Bruno Haible  <bruno@clisp.org>
25969
25970         * lib/trim.c (trim2): Fix argument of isspace() macro.
25971
25972 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
25973
25974         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
25975         to 0.
25976         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
25977
25978 2008-04-14  Bruno Haible  <bruno@clisp.org>
25979
25980         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
25981         AC_LANG_PROGRAM argument.
25982         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
25983         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
25984         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
25985         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
25986         * m4/math_h.m4 (gl_MATH_H): Likewise.
25987         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
25988         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25989         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
25990         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
25991         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25992         * m4/regex.m4 (gl_REGEX): Likewise.
25993         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
25994         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
25995         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25996         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
25997         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25998         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25999         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26000         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26001
26002 2008-04-14  Jim Meyering  <meyering@redhat.com>
26003
26004         test-strtod: fix typos: s/abs/fabs/
26005         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
26006
26007 2008-04-13  Bruno Haible  <bruno@clisp.org>
26008
26009         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
26010         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
26011         module is also used and while not building the reloc-wrapper.
26012
26013 2008-04-13  Bruno Haible  <bruno@clisp.org>
26014
26015         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
26016
26017 2008-04-13  Bruno Haible  <bruno@clisp.org>
26018
26019         Fix AIX compilation failure introduced on 2008-04-02.
26020         * tests/test-frexp.c (exp): Undefine before redefining.
26021         * tests/test-frexpl.c (exp): Likewise.
26022
26023 2008-04-13  Bruno Haible  <bruno@clisp.org>
26024
26025         Work around a HP-UX stdio bug.
26026         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
26027         * tests/test-ftello.c (main): Likewise.
26028         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
26029         * doc/posix-functions/ftello.texi: Likewise.
26030
26031 2008-04-13  Bruno Haible  <bruno@clisp.org>
26032
26033         Make test-signbit pass on HP-UX/hppa.
26034         * tests/test-signbit.c (minus_zerol): New variable.
26035         (test_signbitl): Use it.
26036
26037 2008-04-13  Bruno Haible  <bruno@clisp.org>
26038
26039         Make truncl work on OSF/1 4.0.
26040         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
26041         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26042         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26043         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
26044         HAVE_DECL_TRUNCL.
26045         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
26046         HAVE_DECL_TRUNCL.
26047         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
26048
26049 2008-04-13  Bruno Haible  <bruno@clisp.org>
26050
26051         * lib/unictype.h: Remove trailing comma from enumeration definitions.
26052
26053 2008-04-13  Bruno Haible  <bruno@clisp.org>
26054
26055         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
26056         expression, so as to avoid HP-UX 11 cc compiler bug.
26057
26058 2008-04-13  Bruno Haible  <bruno@clisp.org>
26059
26060         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
26061
26062 2008-04-13  Bruno Haible  <bruno@clisp.org>
26063
26064         * lib/git-merge-changelog.c: Remove empty declaration outside of
26065         functions.
26066
26067 2008-04-13  Bruno Haible  <bruno@clisp.org>
26068
26069         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
26070
26071 2008-04-13  Bruno Haible  <bruno@clisp.org>
26072
26073         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
26074         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
26075         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
26076         also if it exists but lacks definitions of the SHUT_* macros.
26077         * modules/sys_socket (Description): Update.
26078         Reported by Elbert Pol <e.pol@chello.nl>.
26079
26080 2008-04-13  Bruno Haible  <bruno@clisp.org>
26081
26082         * lib/localcharset.c (OS2): Don't redefine if already defined.
26083         Reported by Elbert Pol <e.pol@chello.nl>.
26084
26085 2008-04-13  Bruno Haible  <bruno@clisp.org>
26086
26087         * lib/binary-io.h [__EMX__]: Include <io.h>.
26088         Reported by Elbert Pol <e.pol@chello.nl>.
26089
26090 2008-04-12  Bruno Haible  <bruno@clisp.org>
26091
26092         * lib/fpucw.h: Enable the definitions also for x86_64.
26093         Needed for NetBSD/x86_64.
26094         Reported by Thomas Klausner <tk@giga.or.at>.
26095
26096 2008-04-12  Bruno Haible  <bruno@clisp.org>
26097
26098         * tests/test-strtod.c: Include isnand.h.
26099         (main): Use isnand instead of isnan.
26100         Reported by Jim Meyering.
26101
26102 2008-04-12  Bruno Haible  <bruno@clisp.org>
26103
26104         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
26105         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
26106
26107 2008-04-12  Jim Meyering  <meyering@redhat.com>
26108
26109         * m4/math_h.m4 (gl_MATH_H): Fix typos.
26110
26111 2008-04-12  Bruno Haible  <bruno@clisp.org>
26112
26113         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
26114         Reported by Elbert Pol <e.pol@chello.nl>.
26115
26116 2008-04-12  Eric Blake  <ebb9@byu.net>
26117
26118         Work around Solaris 10 math.h bug.
26119         * m4/math_h.m4 (gl_MATH_H): Check for bug.
26120         (gl_MATH_H_DEFAULTS): Set up default.
26121         * modules/math (Makefile.am): Replace new indicators.
26122         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
26123         * tests/test-math.c (main): Test this.
26124         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
26125         * doc/posix-headers/math.texi (math.h): Mention bug.
26126         Reported by Nelson H. F. Beebe and Jim Meyering.
26127
26128 2008-04-11  Bruno Haible  <bruno@clisp.org>
26129
26130         Adapt to future versions of Apple GCC.
26131         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
26132         Reported by Peter O'Gorman <peter@pogma.com>.
26133
26134 2008-04-11  Bruno Haible  <bruno@clisp.org>
26135
26136         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
26137
26138 2008-04-11  Bruno Haible  <bruno@clisp.org>
26139
26140         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
26141
26142         * modules/getaddrinfo-tests (Makefile.am): Define
26143         test_getaddrinfo_LDADD.
26144
26145 2008-04-11  Bruno Haible  <bruno@clisp.org>
26146
26147         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
26148         (init): Fix syntax error.
26149         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
26150         is declared.
26151
26152 2008-04-11  Bruno Haible  <bruno@clisp.org>
26153
26154         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
26155         * modules/glob (Depends-on): Add stdbool.
26156
26157 2008-04-11  Bruno Haible  <bruno@clisp.org>
26158
26159         * lib/trim.c: Include <string.h>.
26160
26161 2008-04-11  Eric Blake  <ebb9@byu.net>
26162
26163         Avoid compile failure on OS/2.
26164         * lib/regex_internal.h (internal_function): Disable optimization
26165         on OS/2 (__EMX__), where it caused compiler error.
26166         Reported by Elbert Pol.
26167
26168 2008-04-11  Bruno Haible  <bruno@clisp.org>
26169
26170         Flush the standard error stream before aborting. Needed on mingw.
26171         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
26172         * tests/test-array_list.c (ASSERT): Likewise.
26173         * tests/test-array_oset.c (ASSERT): Likewise.
26174         * tests/test-avltree_list.c (ASSERT): Likewise.
26175         * tests/test-avltree_oset.c (ASSERT): Likewise.
26176         * tests/test-avltreehash_list.c (ASSERT): Likewise.
26177         * tests/test-binary-io.c (ASSERT): Likewise.
26178         * tests/test-byteswap.c (ASSERT): Likewise.
26179         * tests/test-c-ctype.c (ASSERT): Likewise.
26180         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
26181         * tests/test-c-strcasestr.c (ASSERT): Likewise.
26182         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
26183         * tests/test-c-strstr.c (ASSERT): Likewise.
26184         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
26185         * tests/test-canonicalize.c (ASSERT): Likewise.
26186         * tests/test-carray_list.c (ASSERT): Likewise.
26187         * tests/test-ceilf1.c (ASSERT): Likewise.
26188         * tests/test-ceilf2.c (ASSERT): Likewise.
26189         * tests/test-ceill.c (ASSERT): Likewise.
26190         * tests/test-count-one-bits.c (ASSERT): Likewise.
26191         * tests/test-fbufmode.c (ASSERT): Likewise.
26192         * tests/test-fflush2.c (ASSERT): Likewise.
26193         * tests/test-floorf1.c (ASSERT): Likewise.
26194         * tests/test-floorf2.c (ASSERT): Likewise.
26195         * tests/test-floorl.c (ASSERT): Likewise.
26196         * tests/test-fopen.c (ASSERT): Likewise.
26197         * tests/test-fpending.c (ASSERT): Likewise.
26198         * tests/test-fprintf-posix.c (ASSERT): Likewise.
26199         * tests/test-fpurge.c (ASSERT): Likewise.
26200         * tests/test-freadable.c (ASSERT): Likewise.
26201         * tests/test-freadahead.c (ASSERT): Likewise.
26202         * tests/test-freading.c (ASSERT): Likewise.
26203         * tests/test-freadptr.c (ASSERT): Likewise.
26204         * tests/test-freadptr2.c (ASSERT): Likewise.
26205         * tests/test-freadseek.c (ASSERT): Likewise.
26206         * tests/test-freopen.c (ASSERT): Likewise.
26207         * tests/test-frexp.c (ASSERT): Likewise.
26208         * tests/test-frexpl.c (ASSERT): Likewise.
26209         * tests/test-fseek.c (ASSERT): Likewise.
26210         * tests/test-fseeko.c (ASSERT): Likewise.
26211         * tests/test-fstrcmp.c (ASSERT): Likewise.
26212         * tests/test-ftell.c (ASSERT): Likewise.
26213         * tests/test-ftello.c (ASSERT): Likewise.
26214         * tests/test-func.c (ASSERT): Likewise.
26215         * tests/test-fwritable.c (ASSERT): Likewise.
26216         * tests/test-fwriting.c (ASSERT): Likewise.
26217         * tests/test-getdelim.c (ASSERT): Likewise.
26218         * tests/test-getline.c (ASSERT): Likewise.
26219         * tests/test-i-ring.c (ASSERT): Likewise.
26220         * tests/test-iconv-utf.c (ASSERT): Likewise.
26221         * tests/test-iconv.c (ASSERT): Likewise.
26222         * tests/test-isfinite.c (ASSERT): Likewise.
26223         * tests/test-isnand.c (ASSERT): Likewise.
26224         * tests/test-isnanf.c (ASSERT): Likewise.
26225         * tests/test-isnanl.h (ASSERT): Likewise.
26226         * tests/test-ldexpl.c (ASSERT): Likewise.
26227         * tests/test-linked_list.c (ASSERT): Likewise.
26228         * tests/test-linkedhash_list.c (ASSERT): Likewise.
26229         * tests/test-localename.c (ASSERT): Likewise.
26230         * tests/test-lseek.c (ASSERT): Likewise.
26231         * tests/test-mbscasecmp.c (ASSERT): Likewise.
26232         * tests/test-mbscasestr1.c (ASSERT): Likewise.
26233         * tests/test-mbscasestr2.c (ASSERT): Likewise.
26234         * tests/test-mbscasestr3.c (ASSERT): Likewise.
26235         * tests/test-mbscasestr4.c (ASSERT): Likewise.
26236         * tests/test-mbschr.c (ASSERT): Likewise.
26237         * tests/test-mbscspn.c (ASSERT): Likewise.
26238         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
26239         * tests/test-mbspbrk.c (ASSERT): Likewise.
26240         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
26241         * tests/test-mbsrchr.c (ASSERT): Likewise.
26242         * tests/test-mbsspn.c (ASSERT): Likewise.
26243         * tests/test-mbsstr1.c (ASSERT): Likewise.
26244         * tests/test-mbsstr2.c (ASSERT): Likewise.
26245         * tests/test-mbsstr3.c (ASSERT): Likewise.
26246         * tests/test-memchr2.c (ASSERT): Likewise.
26247         * tests/test-memmem.c (ASSERT): Likewise.
26248         * tests/test-open.c (ASSERT): Likewise.
26249         * tests/test-printf-frexp.c (ASSERT): Likewise.
26250         * tests/test-printf-frexpl.c (ASSERT): Likewise.
26251         * tests/test-printf-posix.c (ASSERT): Likewise.
26252         * tests/test-quotearg.c (ASSERT): Likewise.
26253         * tests/test-rbtree_list.c (ASSERT): Likewise.
26254         * tests/test-rbtree_oset.c (ASSERT): Likewise.
26255         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
26256         * tests/test-round1.c (ASSERT): Likewise.
26257         * tests/test-roundf1.c (ASSERT): Likewise.
26258         * tests/test-roundl.c (ASSERT): Likewise.
26259         * tests/test-signbit.c (ASSERT): Likewise.
26260         * tests/test-sleep.c (ASSERT): Likewise.
26261         * tests/test-snprintf-posix.c (ASSERT): Likewise.
26262         * tests/test-snprintf.c (ASSERT): Likewise.
26263         * tests/test-sprintf-posix.c (ASSERT): Likewise.
26264         * tests/test-stat-time.c (ASSERT): Likewise.
26265         * tests/test-strcasestr.c (ASSERT): Likewise.
26266         * tests/test-strerror.c (ASSERT): Likewise.
26267         * tests/test-striconv.c (ASSERT): Likewise.
26268         * tests/test-striconveh.c (ASSERT): Likewise.
26269         * tests/test-striconveha.c (ASSERT): Likewise.
26270         * tests/test-strsignal.c (ASSERT): Likewise.
26271         * tests/test-strstr.c (ASSERT): Likewise.
26272         * tests/test-strtod.c (ASSERT): Likewise.
26273         * tests/test-trunc1.c (ASSERT): Likewise.
26274         * tests/test-trunc2.c (ASSERT): Likewise.
26275         * tests/test-truncf1.c (ASSERT): Likewise.
26276         * tests/test-truncf2.c (ASSERT): Likewise.
26277         * tests/test-truncl.c (ASSERT): Likewise.
26278         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
26279         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
26280         * tests/test-vasnprintf.c (ASSERT): Likewise.
26281         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
26282         * tests/test-vasprintf.c (ASSERT): Likewise.
26283         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
26284         * tests/test-vprintf-posix.c (ASSERT): Likewise.
26285         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
26286         * tests/test-vsnprintf.c (ASSERT): Likewise.
26287         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
26288         * tests/test-wcwidth.c (ASSERT): Likewise.
26289         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
26290         * tests/test-xprintf-posix.c (ASSERT): Likewise.
26291         * tests/test-xvasprintf.c (ASSERT): Likewise.
26292         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
26293         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
26294         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
26295         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
26296         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
26297         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
26298         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
26299         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
26300         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
26301         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
26302         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
26303         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
26304         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
26305         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
26306         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
26307         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
26308         * tests/unictype/test-block_list.c (ASSERT): Likewise.
26309         * tests/unictype/test-block_of.c (ASSERT): Likewise.
26310         * tests/unictype/test-block_test.c (ASSERT): Likewise.
26311         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
26312         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
26313         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
26314         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
26315         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
26316         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
26317         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
26318         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
26319         * tests/unictype/test-combining.c (ASSERT): Likewise.
26320         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
26321         * tests/unictype/test-digit.c (ASSERT): Likewise.
26322         * tests/unictype/test-mirror.c (ASSERT): Likewise.
26323         * tests/unictype/test-numeric.c (ASSERT): Likewise.
26324         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
26325         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
26326         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
26327         * tests/unictype/test-scripts.c (ASSERT): Likewise.
26328         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
26329         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
26330         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
26331         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
26332         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
26333         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
26334         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
26335         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
26336         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
26337         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
26338         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
26339         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
26340         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
26341         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
26342         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
26343         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
26344         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
26345         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
26346         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
26347         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
26348         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
26349         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
26350         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
26351         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
26352         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
26353         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
26354         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
26355         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
26356         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
26357         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
26358         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
26359         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
26360         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
26361         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
26362         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
26363         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
26364         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
26365         Reported by Eric Blake.
26366
26367 2008-04-11  Bruno Haible  <bruno@clisp.org>
26368
26369         * lib/wchar.in.h: Tweak comment.
26370
26371 2008-04-11  Bruno Haible  <bruno@clisp.org>
26372
26373         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
26374         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
26375         gl_COMMON.
26376         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
26377
26378 2008-04-11  Bruno Haible  <bruno@clisp.org>
26379
26380         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
26381
26382 2008-04-11  Simon Josefsson  <simon@josefsson.org>
26383
26384         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
26385         of attempting to use non-existing /dev/*random.  Based on patch
26386         from Adam Strzelecki <ono@java.pl> in
26387         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
26388
26389 2008-04-08  Bruno Haible  <bruno@clisp.org>
26390
26391         Add tentative support for emx+gcc.
26392         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
26393         * lib/fpurge.c (fpurge): Likewise.
26394         * lib/freadable.c (freadable): Likewise.
26395         * lib/freadahead.c (freadahead): Likewise.
26396         * lib/freading.c (freading): Likewise.
26397         * lib/freadptr.c (freadptr): Likewise.
26398         * lib/freadseek.c (freadptrinc): Likewise.
26399         * lib/fseeko.c (rpl_fseeko): Likewise.
26400         * lib/fseterr.c (fseterr): Likewise.
26401         * lib/fwritable.c (fwritable): Likewise.
26402         * lib/fwriting.c (fwriting): Likewise.
26403         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
26404
26405 2008-04-09  Eric Blake  <ebb9@byu.net>
26406
26407         Avoid some autoconf warnings.
26408         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
26409         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
26410         * m4/afs.m4 (gl_AFS): Likewise.
26411         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
26412         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
26413         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26414         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
26415         (gl_INTEGER_TYPE_SUFFIX): Likewise.
26416         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
26417         (AC_CHECK_DECLS_ONCE): Likewise.
26418         Rename file...
26419         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
26420         gnulib-tool requires autoconf 2.59 or better.
26421         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
26422
26423 2008-04-08  Eric Blake  <ebb9@byu.net>
26424
26425         Use 'git describe --match' if present (added in git 1.5.5).
26426         * build-aux/git-version-gen: Limit result to tags that match 'v*'
26427         if possible.
26428
26429 2008-04-08  Bruno Haible  <bruno@clisp.org>
26430
26431         Add tentative support for OpenServer.
26432         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
26433         _ptr, _cnt.
26434         * lib/fpurge.c (fpurge): Likewise.
26435         * lib/freadable.c (freadable): Likewise.
26436         * lib/freadahead.c (freadahead): Likewise.
26437         * lib/freading.c (freading): Likewise.
26438         * lib/freadptr.c (freadptr): Likewise.
26439         * lib/freadseek.c (freadptrinc): Likewise.
26440         * lib/fseeko.c (rpl_fseeko): Likewise.
26441         * lib/fseterr.c (fseterr): Likewise.
26442         * lib/fwritable.c (fwritable): Likewise.
26443         * lib/fwriting.c (fwriting): Likewise.
26444         Reported by Roger Cornelius <rac@tenzing.org> and
26445         Brian K. White <brian@aljex.com>.
26446
26447 2008-04-06  Jim Meyering  <meyering@redhat.com>
26448
26449         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
26450
26451 2008-04-06  Bruno Haible  <bruno@clisp.org>
26452
26453         Avoid possible error with non-ASCII bytes in UTF-8 locales.
26454         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
26455         * tests/test-printf-posix.sh: Likewise.
26456         * tests/test-vfprintf-posix.sh: Likewise.
26457         * tests/test-vprintf-posix.sh: Likewise.
26458         * tests/test-xprintf-posix.sh: Likewise.
26459
26460 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26461
26462         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
26463         hide error from 'ls', needed on OS/2.
26464         Report by Elbert Pol <elbert.pol@gmail.com>.
26465
26466 2008-04-04  Eric Blake  <ebb9@byu.net>
26467
26468         Make test-fseeko.c failures meaningful.
26469         * tests/test-fseeko.c: Print line number on failure.
26470         * tests/test-fseek.c: Likewise.
26471         Reported by Nelson H. F. Beebe.
26472
26473         Improve strtod bug detection check.
26474         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
26475         required for Solaris 10.
26476         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
26477
26478 2008-04-04  Bruno Haible  <bruno@clisp.org>
26479
26480         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
26481         by m4/setenv.m4.
26482
26483 2008-04-03  Eric Blake  <ebb9@byu.net>
26484
26485         Ensure sane .version contents.
26486         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
26487         version string.
26488         * build-aux/git-version-gen: Improve documentation.
26489
26490         Make GNU make output nicer.
26491         * top/GNUmakefile [!_have-Makefile]: Add dependency on
26492         MAKECMDGOALS to enforce message for all command line targets.  Set
26493         srcdir for use in maint.mk.
26494
26495         Another maintainer tweak.
26496         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
26497         a target that regenerates version.
26498
26499 2008-04-03  Jim Meyering  <meyering@redhat.com>
26500
26501         vc-list-files: don't cause coreutils "make po-check" failure
26502         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
26503
26504 2008-04-03  Eric Blake  <ebb9@byu.net>
26505
26506         Allow VPATH usage of vc-list-files.
26507         * build-aux/vc-list-files (scriptversion): Add timestamp.
26508         (options): Add --help, --version, -C.
26509         (CVS): Support installed cvsu.
26510
26511 2008-04-02  Bruno Haible  <bruno@clisp.org>
26512
26513         Avoid some "statement with no effect" warnings from gcc.
26514         * tests/test-wctype.c (main): Explicitly ignore unused values.
26515         Reported by Jim Meyering.
26516
26517 2008-04-02  Jim Meyering  <meyering@redhat.com>
26518
26519         Avoid some warnings from "gcc -Wshadow".
26520         * tests/test-frexp.c (exp): Define to a different identifier.
26521         * tests/test-frexpl.c (exp): Likewise.
26522
26523 2008-04-03  Jim Meyering  <meyering@redhat.com>
26524
26525         bootstrap: remove dangling *.[ch] symlinks from lib
26526         * build-aux/bootstrap [dangling symlink removal]: Move find's
26527         -depth option to precede all others, to avoid a warning.
26528         Remove *.[ch] files too, and from "$source_base" (usually lib/).
26529
26530 2008-04-02  Bruno Haible  <bruno@clisp.org>
26531
26532         Avoid some warnings from "gcc -Wshadow".
26533         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
26534         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
26535         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
26536         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
26537         Reported by Jim Meyering.
26538
26539 2008-04-01  Bruno Haible  <bruno@clisp.org>
26540
26541         Fix test to work on IRIX 6.5 with cc.
26542         * tests/test-math.c (numeric_equal): New function.
26543         (main): Use it.
26544
26545 2008-04-01  Bruno Haible  <bruno@clisp.org>
26546
26547         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
26548
26549 2008-04-01  Bruno Haible  <bruno@clisp.org>
26550
26551         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
26552         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26553         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
26554         (Depends-on): Remove math.
26555
26556         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
26557         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26558         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
26559         (Depends-on): Remove math.
26560
26561         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
26562         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26563         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
26564         (Depends-on): Remove math.
26565         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
26566         (Depends-on): Remove math.
26567
26568         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
26569         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26570         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
26571         (Depends-on): Remove math.
26572         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
26573         (Depends-on): Remove math.
26574
26575         * tests/test-round1.c: Include nan.h.
26576         (main): Use NaNd instead of NAN.
26577         * modules/round-tests (Files): Add tests/nan.h.
26578
26579         * tests/test-trunc1.c: Include nan.h.
26580         (main): Use NaNd instead of NAN.
26581         * modules/trunc-tests (Files): Add tests/nan.h.
26582
26583         * tests/test-roundf1.c: Include nan.h.
26584         (main): Use NaNf instead of NAN.
26585         * modules/roundf-tests (Files): Add tests/nan.h.
26586
26587         * tests/test-truncf1.c: Include nan.h.
26588         (main): Use NaNf instead of NAN.
26589         * modules/truncf-tests (Files): Add tests/nan.h.
26590
26591         * tests/test-ceilf1.c: Include nan.h.
26592         (main): Use NaNf instead of NAN.
26593         * modules/ceilf-tests (Files): Add tests/nan.h.
26594
26595         * tests/test-floorf1.c: Include nan.h.
26596         (main): Use NaNf instead of NAN.
26597         * modules/floorf-tests (Files): Add tests/nan.h.
26598
26599         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
26600         (main): Use NaNf instead of NAN.
26601         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
26602
26603         * tests/test-isnand.c: Include nan.h instead of <math.h>.
26604         (main): Use NaNd instead of NAN.
26605         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
26606
26607         * tests/test-frexp.c: Include nan.h.
26608         (main): Use NaNd instead of NAN.
26609         * modules/frexp-tests (Files): Add tests/nan.h.
26610
26611         * lib/isnan.c: Don't include <math.h>.
26612         (FUNC): Don't use NAN macro.
26613         * modules/isnand-nolibm (Depends-on): Remove math.
26614         * modules/isnanf-nolibm (Depends-on): Remove math.
26615         * modules/isnanl (Depends-on): Remove math.
26616         * modules/isnanl-nolibm (Depends-on): Remove math.
26617
26618         * tests/nan.h: New file.
26619
26620 2008-04-01  Eric Blake  <ebb9@byu.net>
26621
26622         Fix typos.
26623         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
26624         values to be the right type.
26625
26626         For now, cater to gnulib strtod inaccuracies.
26627         * tests/test-strtod.c (main): Allow 1-ulp error on expected
26628         fractional results.  While not as nice from a QoI perspective, it
26629         is a quicker patch than correctly implementing decimal to binary
26630         rounding.
26631
26632 2008-03-31  Eric Blake  <ebb9@byu.net>
26633
26634         Guarantee a definition of NAN.
26635         * lib/math.in.h (NAN): Define if missing.
26636         * tests/test-math.c (main): Test it.
26637         * doc/posix-headers/math.texi (math.h): Document this.
26638         * lib/isnan.c (rpl_isnand): Use it.
26639         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
26640         * tests/test-floorf1.c (NaN): Likewise.
26641         * tests/test-frexp.c (NaN): Likewise.
26642         * tests/test-isnand.c (NaN): Likewise.
26643         * tests/test-isnanf.c (NaN): Likewise.
26644         * tests/test-round1.c (NaN): Likewise.
26645         * tests/test-roundf1.c (NaN): Likewise.
26646         * tests/test-snprintf-posix.h (NaN): Likewise.
26647         * tests/test-sprintf-posix.h (NaN): Likewise.
26648         * tests/test-trunc1.c (NaN): Likewise.
26649         * tests/test-truncf1.c (NaN): Likewise.
26650         * tests/test-vasnprintf-posix.c (NaN): Likewise.
26651         * tests/test-vasprintf-posix.c (NaN): Likewise.
26652         * modules/isnand-nolibm (Depends-on): Add math.
26653         * modules/isnanf-nolibm (Depends-on): Likewise.
26654         * modules/isnanl (Depends-on): Likewise.
26655         * modules/isnanl-nolibm (Depends-on): Likewise.
26656         * modules/snprintf-posix-tests (Depends-on): Likewise.
26657         * modules/sprintf-posix-tests (Depends-on): Likewise.
26658         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
26659         * modules/vsprintf-posix-tests (Depends-on): Likewise.
26660         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
26661         * modules/vasprintf-posix-tests (Depends-on): Likewise.
26662
26663 2008-03-31  Bruno Haible  <bruno@clisp.org>
26664
26665         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
26666         * doc/posix-functions/strtod.texi: Likewise.
26667
26668 2008-03-31  Bruno Haible  <bruno@clisp.org>
26669
26670         * tests/test-strtod.c (main): Don't use C99 syntax.
26671
26672 2008-03-31  Bruno Haible  <bruno@clisp.org>
26673
26674         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
26675         Reported by Eric Blake.
26676
26677 2008-03-31  Jim Meyering  <meyering@redhat.com>
26678
26679         Don't compare actual signbit return values.
26680         * tests/test-strtod.c (main): Rather, compare only their
26681         zero/non-zero nature.
26682
26683 2008-03-31  Eric Blake  <ebb9@byu.net>
26684
26685         More strtod documentation.
26686         * doc/posix-functions/strtod.texi (strtod): Interpret more test
26687         failures as distinct bugs.
26688
26689 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
26690
26691         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
26692         Problem reported by Erik Benada in
26693         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
26694
26695 2008-03-30  Bruno Haible  <bruno@clisp.org>
26696
26697         * tests/test-strtod.c: Add comments about which assertion fails on which
26698         platform.
26699         * doc/posix-functions/strtod.texi: Add info about many more platforms.
26700
26701 2008-03-30  Eric Blake  <ebb9@byu.net>
26702
26703         Test signbit behavior on zeros.
26704         * tests/test-signbit.c (test_signbitf): Add tests for zero.
26705         (test_signbitd, test_signbitl): Likewise.
26706
26707         More strtod touchups.
26708         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
26709         sign of negative underflow, for now.  Use .5, not .1.
26710         * doc/posix-functions/strtod.texi (strtod): Mention these
26711         limitations.
26712         Reported by Jim Meyering.
26713
26714 2008-03-30  Bruno Haible  <bruno@clisp.org>
26715
26716         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
26717         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
26718
26719 2008-03-30  Bruno Haible  <bruno@clisp.org>
26720
26721         Avoid failure when attempting to return empty iconv results on some
26722         platforms.
26723         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
26724         allocation, don't report ENOMEM when the resulting string is empty.
26725
26726 2008-03-30  Bruno Haible  <bruno@clisp.org>
26727
26728         Fix buffer overrun.
26729         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
26730         Don't consider the width for tmp_length. Check count against tmp_length
26731         before doing the padding. Ensure enough allocation during padding.
26732
26733 2008-03-30  Eric Blake  <ebb9@byu.net>
26734
26735         strtod touchups.
26736         * lib/strtod.c (strtod): Avoid compiler warnings.
26737         Reported by Jim Meyering.
26738
26739 2008-03-30  Bruno Haible  <bruno@clisp.org>
26740
26741         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
26742         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
26743         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
26744         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
26745         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
26746         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
26747         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
26748         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
26749
26750         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
26751         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
26752         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
26753         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
26754         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
26755         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
26756         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
26757         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
26758
26759         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
26760         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
26761         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
26762         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
26763         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
26764         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
26765         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
26766         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
26767
26768         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
26769         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
26770
26771         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
26772         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
26773
26774         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
26775         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
26776
26777         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
26778         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
26779         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
26780
26781         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
26782         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
26783         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
26784
26785         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
26786         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
26787         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
26788
26789         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
26790         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
26791         * modules/vasprintf (Depends-on): Add EOVERFLOW.
26792
26793         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
26794         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
26795         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
26796         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
26797         (Depends-on): Add EOVERFLOW.
26798         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
26799         (Depends-on): Add EOVERFLOW.
26800         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26801         (Depends-on): Add EOVERFLOW.
26802         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26803         (Depends-on): Add EOVERFLOW.
26804         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26805         (Depends-on): Add EOVERFLOW.
26806         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26807         (Depends-on): Add EOVERFLOW.
26808         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26809         (Depends-on): Add EOVERFLOW.
26810         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26811         (Depends-on): Add EOVERFLOW.
26812
26813         * lib/sprintf.c (EOVERFLOW): Remove fallback.
26814         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
26815         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
26816
26817         * lib/snprintf.c (EOVERFLOW): Remove fallback.
26818         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
26819         * modules/snprintf (Depends-on): Add EOVERFLOW.
26820
26821         * lib/poll.c (EOVERFLOW): Remove fallback.
26822         * modules/poll (Depends-on): Add EOVERFLOW.
26823
26824         * lib/getugroups.c (EOVERFLOW): Remove fallback.
26825         * modules/getugroups (Depends-on): Add EOVERFLOW.
26826
26827         * lib/getdelim.c (EOVERFLOW): Remove fallback.
26828         * modules/getdelim (Depends-on): Add EOVERFLOW.
26829
26830         * lib/ftell.c (EOVERFLOW): Remove fallback.
26831         * modules/ftell (Depends-on): Add EOVERFLOW.
26832
26833         * lib/fprintf.c (EOVERFLOW): Remove fallback.
26834         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
26835         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
26836
26837         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
26838
26839         * modules/EOVERFLOW-tests: New file.
26840         * tests/test-EOVERFLOW.c: New file.
26841
26842         * modules/EOVERFLOW: New file.
26843         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
26844
26845 2008-03-30  Bruno Haible  <bruno@clisp.org>
26846
26847         Fix bug introduced on 2007-06-10.
26848         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
26849         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
26850
26851 2008-03-30  Bruno Haible  <bruno@clisp.org>
26852
26853         Improve freadseek's efficiency after ungetc.
26854         * lib/freadseek.c: Include freadahead.h.
26855         (freadptrinc): New function, extracted from freadseek.
26856         (freadseek): Use it in a loop. Use freadahead to determine the number
26857         of loop iterations.
26858         * modules/freadseek (Depends-on): Add freadahead.
26859         (configure.ac): Require AC_C_INLINE.
26860
26861 2008-03-30  Bruno Haible  <bruno@clisp.org>
26862
26863         * lib/freadseek.c (freadseek): Don't ignore the return value of
26864         freadptr.
26865
26866 2008-03-29  Eric Blake  <ebb9@byu.net>
26867
26868         Add hex float support.
26869         * modules/strtod (Depends-on): Add c-ctype.
26870         (Link): Mention POW_LIB.
26871         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
26872         whitespace between 'e' and exponent.
26873         * tests/test-strtod.c (main): Enable hex float tests.
26874         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
26875         now provides.
26876
26877         Document various strtod bugs, with some fixes.
26878         * doc/posix-functions/strtod.texi (strtod): Document bugs with
26879         "-0x", "inf", "nan", and hex constants.
26880         * doc/posix-functions/atof.texi (atof): Likewise.
26881         * modules/stdlib (Makefile.am): Support strtod.
26882         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
26883         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
26884         detect additional strtod bugs.
26885         * lib/stdlib.in.h (rpl_strtod): Add declarations.
26886         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
26887         bool where appropriate.  Parse 'inf' and 'nan'.
26888         * tests/test-strtod.c: New file.
26889         * modules/strtod (Depends-on): Add stdbool, stdlib.
26890         (configure.ac): Turn on module indicator.
26891         * modules/strtod-tests: New module.
26892
26893 2008-03-29  Eric Blake  <ebb9@byu.net>
26894
26895         Fix ftell on mingw.
26896         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
26897         * modules/ftell-tests (Depends-on): Add binary-io.
26898         * modules/ftello-tests (Depends-on): Likewise.
26899         * tests/test-ftell.c (main): Enhance test to cover behavior after
26900         ungetc.  Enforce binary mode.
26901         * tests/test-ftello.c (main): Likewise.
26902
26903         Pass test-freadseek on cygwin.
26904         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
26905         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
26906         ungetc buffer.
26907
26908         * tests/test-fflush2.c (main): Fix typo.
26909
26910 2008-03-29  Bruno Haible  <bruno@clisp.org>
26911
26912         * tests/test-fflush2.c (main): Temporarily disable the contents of
26913         this test.
26914         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
26915         Reported by Eric Blake.
26916
26917 2008-03-28  Simon Josefsson  <simon@josefsson.org>
26918
26919         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
26920         (GC_SHA224_DIGEST_SIZE): Add.
26921
26922         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
26923         (gc_hash_digest_length): Likewise.
26924         (gc_hash_buffer): Likewise.
26925
26926 2008-03-25  Bruno Haible  <bruno@clisp.org>
26927
26928         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
26929         detail which gettext release to use.
26930         Reported by Simon Josefsson.
26931
26932 2008-03-26  Jim Meyering  <meyering@redhat.com>
26933
26934         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
26935         * modules/gnumakefile (clean-GNUmakefile): Also, use
26936         test ... && ... || : syntax rather than if-then ... fi.
26937
26938         gnumakefile: Don't double-quote-expand $(VPATH) value.
26939         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
26940
26941 2008-03-24  Eric Blake  <ebb9@byu.net>
26942
26943         Alter GNUmakefile to install into top directory.
26944         * modules/maintainer-makefile: Split, and add dependency...
26945         * modules/gnumakefile: to this new module.
26946         * build-aux/GNUmakefile: Move...
26947         * top/GNUmakefile: ...here.
26948         * build-aux/maint.mk: Move...
26949         * top/maint.mk: ...here.
26950         * MODULES.html.sh (Support for maintaining...): Document new
26951         module.
26952
26953 2008-03-23  Bruno Haible  <bruno@clisp.org>
26954
26955         * gnulib-tool: New options --vc-files, --no-vc-files.
26956         (func_usage): Document them.
26957         (vc_files): New variable.
26958         (func_import): Consider vc_files.
26959         (func_create_testdir): Set vc_files to empty.
26960         Suggested by Jim Meyering and Karl Berry.
26961
26962 2008-03-23  Bruno Haible  <bruno@clisp.org>
26963
26964         Fix regex compilation error on HP-UX 11.
26965         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
26966         * modules/regex (Files): Add m4/mbstate_t.m4.
26967         Reported by Ton Voon <ton.voon@altinity.com>.
26968
26969 2008-03-23  Bruno Haible  <bruno@clisp.org>
26970
26971         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
26972
26973 2008-03-23  Eric Blake  <ebb9@byu.net>
26974             Bruno Haible  <bruno@clisp.org>
26975
26976         Install files from top/ in the destination directory.
26977         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
26978         augmentation also for the files from top/.
26979         (func_import, func_create_testdir): Rewrite file names:
26980         top/filename -> filename.
26981
26982 2008-03-23  Bruno Haible  <bruno@clisp.org>
26983
26984         Tweak "gnulib --version" output.
26985         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
26986
26987 2008-03-23  Bruno Haible  <bruno@clisp.org>
26988
26989         Tweak "gnulib --version" output.
26990         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
26991         rather than contents of ChangeLog, when possible.
26992
26993 2008-03-21  Eric Blake  <ebb9@byu.net>
26994
26995         More --version tweaks.
26996         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
26997         date of last ChangeLog entry.
26998
26999 2008-03-21  Jim Meyering  <meyering@redhat.com>
27000
27001         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
27002
27003 2008-03-20  Eric Blake  <ebb9@byu.net>
27004
27005         VPATH fix.
27006         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
27007
27008 2008-03-20  Simon Josefsson  <simon@josefsson.org>
27009
27010         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
27011         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
27012
27013 2008-03-20  Eric Blake  <ebb9@byu.net>
27014
27015         Sync GNUmakefile with coreutils.
27016         * build-aux/GNUmakefile (have-Makefile): Rename...
27017         (_have-Makefile): ...to this, for namespace consideration.
27018         (GNUmakefile.cfg): Include, if present.
27019         (_autoreconf): Define a default.
27020         (_is-dist-target): New rule for rebuilds to pick up intra-release
27021         version.
27022         (maint-cfg.mk): Rename...
27023         (cfg.mk): ...to this.
27024
27025 2008-03-18  Jim Meyering  <meyering@redhat.com>
27026
27027         New script and module: mktempd
27028         * MODULES.html.sh (maint+release support): Add mktempd.
27029         * build-aux/mktempd: New file.
27030         * modules/mktempd: New file.
27031
27032 2008-03-15  Jim Meyering  <meyering@redhat.com>
27033
27034         Undo last change.
27035         * lib/sha1.c, lib/md5.c: 63 != ~63.
27036         Reported by Andreas Schwab.
27037
27038         sha1.c, md5.c: Hoist a redundant expression.
27039         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
27040         "ctx->buflen" only once, before calling *_process_block.
27041         * lib/md5.c (md5_process_bytes): Likewise.
27042
27043 2008-03-14  Eric Blake  <ebb9@byu.net>
27044
27045         Bump copyright year in files generated by gnulib-tool.
27046         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
27047         gnulib-tool, rather than hard-coding it.
27048
27049         Fix 'gnulib-tool --version' output to work with git.
27050         * gnulib-tool (func_gnulib_dir): New function, extracted from...
27051         (startup): ...here.
27052         (func_version): Use it to invoke git-version-gen, rather than
27053         relying on CVS keyword expansion.  Modernize wording.
27054         (cvsdatestamp, last_checkin_date, version): Kill unused
27055         variables.
27056
27057 2008-03-12  Jim Meyering  <meyering@redhat.com>
27058
27059         Recognize optional cast of the argument to free.
27060         * build-aux/useless-if-before-free: Update regexps.
27061
27062         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
27063
27064 2008-03-11  Bruno Haible  <bruno@clisp.org>
27065
27066         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
27067         by a single package.
27068         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
27069         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
27070         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
27071         Reported by Sam Steingold <sds@gnu.org>.
27072
27073 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
27074
27075         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
27076         repositories.
27077
27078 2008-03-11  Bruno Haible  <bruno@clisp.org>
27079
27080         Avoid conflicts between local macro definitions.
27081         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
27082         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
27083
27084 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
27085             Bruno Haible  <bruno@clisp.org>
27086
27087         Make va_copy work with some version of xlc on AIX 5.1.
27088         * lib/stdarg.in.h: New file.
27089         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
27090         On AIX, use a <stdarg.h> file substitute.
27091         * modules/stdarg (Files): Add lib/stdarg.in.h.
27092         (Depends-on): Add include_next.
27093         (Makefile.am): Build a stdarg.h substitute if requested.
27094         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
27095
27096 2008-03-10  Bruno Haible  <bruno@clisp.org>
27097
27098         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
27099         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
27100         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27101
27102 2008-03-10  Bruno Haible  <bruno@clisp.org>
27103
27104         * modules/stdlib (Depends-on): Add include_next, remove
27105         absolute-header.
27106
27107 2008-03-09  Bruno Haible  <bruno@clisp.org>
27108
27109         * lib/freadahead.h (freadahead): Document more precisely.
27110         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
27111         the sum of both buffer sizes.
27112         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
27113         * NEWS: Document the change.
27114
27115 2008-03-09  Bruno Haible  <bruno@clisp.org>
27116
27117         Extend freadptr to return also the buffer size.
27118         * lib/freadptr.h (freadptr): Add sizep argument.
27119         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
27120         (freadptr): Add sizep argument. Determine buffer size like freadahead
27121         does.
27122         * tests/test-freadptr.c: Don't include freadahead.h.
27123         (main): Adapt for new calling convention of freadptr.
27124         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
27125         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
27126         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
27127         tests/test-freadptr2.sh.
27128         (Depends): Remove freadahead.
27129         (TESTS): Add test-freadptr2.sh.
27130         (check_PROGRAMS): Add test-freadptr2.
27131
27132 2008-03-09  Bruno Haible  <bruno@clisp.org>
27133
27134         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
27135         Report and solution by Simon Josefsson.
27136
27137 2008-03-06  Bruno Haible  <bruno@clisp.org>
27138
27139         Make fflush after ungetc work on BSD platforms.
27140         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
27141         * tests/test-fflush2.c: New file.
27142         * tests/test-fflush2.sh: New file.
27143         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
27144         tests/test-fflush2.c.
27145         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
27146         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
27147
27148 2008-03-06  Eric Blake  <ebb9@byu.net>
27149
27150         Likewise for ftello.
27151         * modules/ftello (Dependencies): Add extensions.
27152         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
27153
27154 2008-03-06  Bruno Haible  <bruno@clisp.org>
27155
27156         * modules/fseeko (Dependencies): Add extensions.
27157         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
27158         Needed on glibc systems.
27159
27160 2008-03-06  Bruno Haible  <bruno@clisp.org>
27161
27162         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
27163         email address.
27164         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27165
27166 2008-03-06  Bruno Haible  <bruno@clisp.org>
27167
27168         * users.txt: Add libgnupdf.
27169
27170 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
27171
27172         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
27173         (Header File Substitutes, Function Substitutes,
27174         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
27175         (Build robot for gnulib): Fix typo.
27176
27177 2008-03-06  Bruno Haible  <bruno@clisp.org>
27178
27179         * doc/gnulib-tool.texi (VCS Issues): Small updates.
27180         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27181
27182 2008-03-06  Bruno Haible  <bruno@clisp.org>
27183
27184         * doc/func.texi: New file, extracted from doc/gnulib.texi.
27185         * doc/gnulib.texi: Include it.
27186
27187 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27188
27189         * modules/func (License): Change license to unlimited; there was
27190         no LGPL parts in the module anyway.
27191
27192 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27193
27194         * modules/__func__: Renamed to modules/func.
27195         * modules/__func__-tests: Renamed to modules/func-tests.
27196         * tests/test-__func__.c: Renamed to tests/test-func.c.
27197         * m4/__func__.m4: Renamed to m4/func.m4.
27198         * doc/gnulib.texi (__func__): Section renamed to func.
27199         Suggested by Eric Blake <ebb9@byu.net>.
27200
27201 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27202
27203         * doc/gnulib.texi (__func__): Use C99 terminology when talking
27204         about __func__.  Make example self-contained.  Suggested by Eric
27205         Blake <ebb9@byu.net>.
27206
27207         * tests/test-__func__.c (main): Avoid extraneous () around __func.
27208         Suggested by Eric Blake <ebb9@byu.net>.
27209
27210 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27211
27212         * modules/__func__: New file.
27213         * modules/__func__-tests: New file.
27214         * tests/test-__func__.c: New file.
27215         * m4/__func__.m4: New file.
27216         * doc/gnulib.texi (__func__): Document __func__ module.
27217
27218 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27219
27220         * modules/byteswap (License): Re-license as LGPLv2+.
27221
27222 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27223
27224         * doc/Makefile: Add pdf target.
27225
27226 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27227
27228         * modules/inline (License): Use 'unlimited', since there are only
27229         *.m4 files in this module.
27230
27231 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27232             Bruno Haible  <bruno@clisp.org>
27233
27234         Add support for HP C 7.1 on OpenVMS 8.3.
27235         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
27236
27237 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27238
27239         Update VMS specifics.
27240         * lib/getopt.c [VMS]: Remove include of unixlib.h.
27241
27242 2008-03-02  Jim Meyering  <meyering@redhat.com>
27243
27244         Remove the last dependency on the "free" module.
27245         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
27246         Reported by Bob Proulx.
27247
27248         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
27249
27250         Remove useless "if" tests before free.  Deprecate "free" module.
27251         * doc/posix-functions/free.texi: Mention that this
27252         module is no longer useful.
27253         * modules/free (Notice): Say this module is obsolete.
27254         * modules/readutmp (Depends-on): Remove free.
27255         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
27256         * lib/putenv.c (putenv): Likewise.
27257         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
27258         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
27259         * tests/test-c-strcasestr.c (main): Likewise.
27260         * tests/test-c-strstr.c (main): Likewise.
27261         * tests/test-mbscasestr1.c (main): Likewise.
27262         * tests/test-mbscasestr2.c (main): Likewise.
27263         * tests/test-mbsstr1.c (main): Likewise.
27264         * tests/test-mbsstr2.c (main): Likewise.
27265         * tests/test-memmem.c (main): Likewise.
27266         * tests/test-strcasestr.c (main): Likewise.
27267         * tests/test-striconv.c (main): Likewise.
27268         * tests/test-striconveh.c (main): Likewise.
27269         * tests/test-striconveha.c (main): Likewise.
27270         * tests/test-strstr.c (main): Likewise.
27271
27272         * build-aux/git-version-gen: Adjust a comment and the Usage string.
27273
27274         bootstrap: sync from coreutils again
27275         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
27276
27277 2008-03-01  Jim Meyering  <meyering@redhat.com>
27278
27279         bootstrap: sync from coreutils
27280         * build-aux/bootstrap (update_po_files): Copy a .po file into place
27281         also when the target doesn't exist.
27282
27283 2008-03-01  Eric Blake  <ebb9@byu.net>
27284
27285         Fix bugs in last patch.
27286         * lib/memchr2.c (memchr2): Fix typo.
27287         * tests/test-memchr2.c: Test previous bug, and don't use GNU
27288         extension.
27289         Reported by Bruce Korb.
27290
27291         New module 'memchr2'.
27292         * modules/memchr2: New file.
27293         * modules/memchr2-tests: Likewise.
27294         * lib/memchr2.h: Likewise.
27295         * lib/memchr2.c: Likewise, based on memchr.c.
27296         * tests/test-memchr2.c: New test.
27297         * MODULES.html.sh (String handling): Add memchr2.
27298
27299 2008-02-29  Bruno Haible  <bruno@clisp.org>
27300
27301         * modules/freadseek-tests: New file.
27302         * tests/test-freadseek.sh: New file.
27303         * tests/test-freadseek.c: New file.
27304
27305         New module 'freadseek'.
27306         * modules/freadseek: New file.
27307         * lib/freadseek.h: New file.
27308         * lib/freadseek.c: New file.
27309         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
27310
27311 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
27312
27313         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
27314         wydawca.
27315
27316         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
27317         program_invocation_name and program_invocation_short_name are
27318         present.
27319
27320 2008-02-28  Bruno Haible  <bruno@clisp.org>
27321
27322         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
27323         * tests/test-freadptr.sh: Also test non-seekable stdin.
27324
27325 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
27326
27327         * build-aux/bootstrap (source_base, m4_base)
27328         (doc_base, tests_base): New variables.
27329         (gnulib_tool_options): Do not hardcode base directories, use
27330         the above variables instead.
27331
27332 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
27333
27334         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
27335
27336 2008-02-28  Bruno Haible  <bruno@clisp.org>
27337
27338         * modules/freadptr-tests: New file.
27339         * tests/test-freadptr.sh: New file.
27340         * tests/test-freadptr.c: New file.
27341
27342         New module 'freadptr'.
27343         * modules/freadptr: New file.
27344         * lib/freadptr.h: New file.
27345         * lib/freadptr.c: New file.
27346         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
27347
27348 2008-02-26  Karl Berry  <karl@freefriends.org>
27349
27350         Sync from Libtool:
27351         * libltdl/argz.c (argz_add, argz_count): New functions.
27352         * libltdl/argz.in.h: Declare them.
27353         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
27354
27355 2008-02-22  Bruno Haible  <bruno@clisp.org>
27356
27357         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
27358         is a pointer type.  Needed for HP-UX 10.
27359         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
27360         * doc/posix-functions/gmtime_r.texi: Likewise.
27361         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27362
27363 2008-02-24  Bruno Haible  <bruno@clisp.org>
27364
27365         * modules/environ-tests: New file.
27366         * tests/test-environ.c: New file.
27367
27368         New module 'environ'.
27369         * modules/environ: New file.
27370         * lib/unistd.in.h (environ): New declaration.
27371         * m4/environ.m4: New file.
27372         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
27373         after use.
27374         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
27375         HAVE_DECL_ENVIRON.
27376         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
27377         HAVE_DECL_ENVIRON.
27378         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
27379         wrong claim that 'environ' is missing on some systems.
27380         * modules/execute (Depends-on): Add environ.
27381         * lib/execute.c (environ): Remove fallback declaration.
27382         * modules/pipe (Depends-on): Add environ.
27383         * lib/pipe.c (environ): Remove fallback declaration.
27384         * modules/setenv (Depends-on): Add environ.
27385         * lib/setenv.c (environ): Remove fallback declaration.
27386         * modules/unsetenv (Depends-on): Add environ.
27387         * lib/unsetenv.c (environ): Remove fallback declaration.
27388         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
27389         m4/environ.m4.
27390         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
27391         (gl_PREREQ_UNSETENV): Likewise.
27392
27393 2008-02-24  Bruno Haible  <bruno@clisp.org>
27394
27395         * doc/posix-functions/environ.texi: Document the MacOS X problem.
27396
27397 2008-02-20  Bob Proulx  <bob@proulx.com>
27398
27399         Enable use of older two part flavor 'git describe'.
27400         * build-aux/git-version-gen: If using the older two part flavor of
27401         git version then recreate the third part now present in the
27402         newer three part flavor of git describe.
27403
27404 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
27405
27406         * lib/fts.c (fts_build): Typo correction to comment.
27407
27408 2008-02-17  Bruno Haible  <bruno@clisp.org>
27409
27410         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
27411         generating no-op conflicts.
27412
27413 2008-02-17  Bruno Haible  <bruno@clisp.org>
27414
27415         Speed up by 10%.
27416         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
27417         result_entries, rather than an index-based loop.
27418
27419 2008-02-17  Bruno Haible  <bruno@clisp.org>
27420
27421         Speed up by 25%.
27422         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
27423         'hashcode_cached'.
27424         (entry_create): New function.
27425         (entry_hashcode): Use the cached hashcode if possible.
27426         (read_changelog_file, try_split_merged_entry): Use entry_create.
27427
27428 2008-02-17  Bruno Haible  <bruno@clisp.org>
27429
27430         Speed up from O(n^2) to O(n) for long ChangeLog files.
27431         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
27432         (read_changelog_file): Change implementation of entries_reversed list
27433         to rbtreehash.
27434         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
27435
27436 2008-02-17  Bruno Haible  <bruno@clisp.org>
27437
27438         New option --split-merged-entry.
27439         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
27440         (find_paragraph_end, try_split_merged_entry): New functions.
27441         (long_options): Add option --split-merged-entry.
27442         (usage): Document option --split-merged-entry.
27443         (main): Implement option --split-merged-entry.
27444         Reported by Eric Blake.
27445
27446 2008-02-17  Bruno Haible  <bruno@clisp.org>
27447
27448         * lib/git-merge-changelog.c: Include c-strstr.h.
27449         (main): Support the "git pull --rebase" situation.
27450         * modules/git-merge-changelog (Depends-on): Add c-strstr.
27451         Reported by Eric Blake.
27452
27453 2008-02-16  Eric Blake  <ebb9@byu.net>
27454
27455         Avoid doubling \ in common case of "c-maybe" quoting style.
27456         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
27457         eliding outer quotes.
27458         * lib/quotearg.h: Document this.
27459         * tests/test-quotearg.c (result_strings, inputs, results_g)
27460         (flag_results, locale_results): Test it by adding a new string to
27461         each test group.
27462         (compare_strings): Test new string.
27463
27464 2008-02-13  Eric Blake  <ebb9@byu.net>
27465
27466         Avoid trigraph quoting in default output.
27467         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
27468         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
27469         unless explicitly requested.
27470         * tests/test-quotearg.c (flag_results, main): Add additional tests.
27471
27472 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
27473
27474         Don't rely on signed integer overflowing to negative value.
27475         * lib/getugroups.c (getugroups): Include <limits.h>.
27476         Instead, compare against INT_MAX, and increment only if the test passes.
27477
27478 2008-02-13  Jim Meyering  <meyering@redhat.com>
27479         and Eric Blake  <ebb9@byu.net>
27480
27481         Avoid shadowing warning and compile errors on Linux.
27482         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
27483         forwarding macros on Linux.
27484         (dcgettext): Define a stub, for Linux.
27485         (results_g, main): Avoid warnings.
27486
27487 2008-02-12  Eric Blake  <ebb9@byu.net>
27488
27489         Silence warning in last patch.
27490         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
27491
27492         Quotearg part 4: add tests, fix c-maybe colon quoting.
27493         * lib/quotearg.h: Improve documentation.
27494         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
27495         escapes when adding outer quotes.  When quoting trigraphs, use
27496         valid C notation.  When quoting NUL, omit extra characters if next
27497         character is not digit.  Alter prototype.
27498         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
27499         callers.
27500         * modules/quotearg-tests: New module.
27501         * tests/test-quotearg.c: New test.
27502
27503 2008-02-07  Eric Blake  <ebb9@byu.net>
27504
27505         Quotearg part 3: add flag to control outer quote elision.
27506         * lib/quotearg.h (c_maybe_quoting_style): New style.
27507         (enum quoting_flags): Better documentation of flags.
27508         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
27509         c-maybe style.
27510         (quotearg_buffer_restyled): Handle new flag to elide outer
27511         quotes.
27512
27513         Quotearg part 2: add flag that can control NUL elision.
27514         * lib/quotearg.h (set_quoting_flags): New prototype.
27515         * lib/quotearg.c (struct quoting_options): Add flag field.
27516         (set_quoting_flags): New function.
27517         (quotearg_buffer_restyled): Add flags parameter.
27518         (quotearg_alloc_mem): Set the flag if length cannot be returned.
27519         (quotearg_n_options): Set the flag, since length cannot be
27520         returned.
27521         (quoting_options_from_style): Default flags correctly.
27522
27523         Quotearg part 1: more wrappers, restore quotearg_char state.
27524         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
27525         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
27526         (quotearg_colon_mem): New wrappers.
27527         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
27528         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
27529         functions.
27530         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
27531         (quotearg_colon_mem): New functions.
27532
27533 2008-02-11  Bruno Haible  <bruno@clisp.org>
27534
27535         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
27536         library in the current directory: it does not work with parallel make.
27537         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27538
27539 2008-02-11  Bruno Haible  <bruno@clisp.org>
27540
27541         * .gitattributes: New file.
27542
27543 2008-02-11  Jim Meyering  <meyering@redhat.com>
27544
27545         useless-if-before-free: Fix reversed exit values.
27546         * build-aux/useless-if-before-free: Use correct values
27547         for EXIT_MATCH and EXIT_NO_MATCH.
27548
27549         * build-aux/useless-if-before-free: Close stdout carefully.
27550
27551 2008-02-10  Bruno Haible  <bruno@clisp.org>
27552
27553         New module 'git-merge-changelog'.
27554         * modules/git-merge-changelog: New file.
27555         * lib/git-merge-changelog.c: New file.
27556
27557 2008-02-10  Jim Meyering  <meyering@redhat.com>
27558
27559         useless-if-before-free: New option: --list (-l).
27560
27561         useless-if-before-free: Don't exit immediately upon open failure.
27562         * build-aux/useless-if-before-free: Exit 2 for errors.
27563         Upon failure to open a file, don't exit immediately.
27564         Rather, just warn and continue with any remaining files.
27565
27566 2008-02-10  Bruno Haible  <bruno@clisp.org>
27567
27568         New abstract list operation 'node_set_value'.
27569         * lib/gl_list.h (gl_list_node_set_value): New function.
27570         (struct gl_list_implementation): New field node_set_value.
27571         * lib/gl_list.c (gl_list_node_set_value): New function.
27572         * lib/gl_array_list.c (gl_array_node_set_value): New function.
27573         (gl_array_list_implementation): Update.
27574         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
27575         (gl_carray_list_implementation): Update.
27576         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
27577         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
27578         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
27579         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
27580         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
27581         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
27582         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
27583         Update.
27584         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
27585         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
27586         (gl_sublist_list_implementation): Update.
27587
27588 2008-02-10  Bruno Haible  <bruno@clisp.org>
27589
27590         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
27591         Needed when ELEMENT is #defined to 'some_type *'.
27592
27593 2008-02-10  Jim Meyering  <meyering@redhat.com>
27594
27595         New script and module: useless-if-before-free
27596         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
27597         * build-aux/useless-if-before-free: New file.
27598         * modules/useless-if-before-free: New file.
27599
27600         * build-aux/gitlog-to-changelog: Use committer date, not author date.
27601
27602         xstrtol_error: Fix typo.
27603         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
27604         s/exit_failure/exit_status/.
27605
27606 2008-02-09  Jim Meyering  <meyering@redhat.com>
27607
27608         New script and module: gitlog-to-changelog
27609         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
27610         * modules/gitlog-to-changelog: New file.
27611         * build-aux/gitlog-to-changelog: New file.
27612
27613 2008-02-08  Jim Meyering  <meyering@redhat.com>
27614
27615         Avoid two "parameter unused" warnings.
27616         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
27617         Mark "st" as used.
27618
27619         Use "git COMMAND", not "git-COMMAND".
27620         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
27621         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
27622         * build-aux/git-version-gen: Use "git status", not "git-status".
27623
27624 2008-02-07  Bruno Haible  <bruno@clisp.org>
27625
27626         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
27627         Avoids a crash on Windows Vista.
27628         Reported by Adam Strzelecki <ono@java.pl> via
27629         Simon Josefsson <simon@josefsson.org>.
27630
27631 2008-02-06  Bruno Haible  <bruno@clisp.org>
27632
27633         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
27634         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
27635         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
27636         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
27637         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
27638         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27639         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
27640         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
27641         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27642         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27643         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27644         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27645         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27646         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27647         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27648         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
27649         left-adjust flag.
27650         * tests/test-snprintf-posix.h (test_function): Likewise.
27651         * tests/test-sprintf-posix.h (test_function): Likewise.
27652         * tests/test-vasprintf-posix.c (test_function): Likewise.
27653         * doc/posix-functions/fprintf.texi: Update.
27654         * doc/posix-functions/printf.texi: Update.
27655         * doc/posix-functions/snprintf.texi: Update.
27656         * doc/posix-functions/sprintf.texi: Update.
27657         * doc/posix-functions/vfprintf.texi: Update.
27658         * doc/posix-functions/vprintf.texi: Update.
27659         * doc/posix-functions/vsnprintf.texi: Update.
27660         * doc/posix-functions/vsprintf.texi: Update.
27661         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27662
27663 2008-02-06  Bruno Haible  <bruno@clisp.org>
27664
27665         Fix bug introduced on 2008-01-26.
27666         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
27667
27668 2008-02-06  Bruno Haible  <bruno@clisp.org>
27669
27670         Fix bug introduced on 2007-06-10.
27671         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
27672         !NEED_PRINTF_FLAG_ZERO.
27673
27674 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
27675
27676         getloadavg: use libperfstat on AIX5
27677         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
27678
27679 2008-02-03  Bruno Haible  <bruno@clisp.org>
27680
27681         * lib/diffseq.h: Add comments about required #includes.
27682         Reported by Michael Biggs <gnulib@doubleplum.net>.
27683
27684 2008-02-01  Bruno Haible  <bruno@clisp.org>
27685
27686         * users.txt: Add gnuit.
27687
27688 2008-01-31  Bruno Haible  <bruno@clisp.org>
27689
27690         * lib/md4.c (set_uint32): Mark as inline.
27691         * lib/md5.c (set_uint32): Likewise.
27692         * lib/sha1.c (set_uint32): Likewise.
27693         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
27694         * m4/md5.m4 (gl_MD5): Likewise.
27695         * m4/sha1.m4 (gl_SHA1): Likewise.
27696
27697 2008-01-31  Jim Meyering  <meyering@redhat.com>
27698
27699         Use "sizeof VAR", rather than a literal "4".
27700         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
27701         * lib/md4.c (md4_read_ctx): Likewise.
27702         * lib/sha1.c (sha1_read_ctx): Likewise.
27703
27704 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27705
27706         * tests/test-sha1.c: New file, based on test-md5.c.
27707
27708         * modules/crypto/sha1-tests: New file.
27709
27710 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27711
27712         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
27713
27714 2008-01-31  Jim Meyering  <meyering@redhat.com>
27715
27716         Prefer "sizeof v" over the equivalent "4".
27717         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
27718         * lib/md5.c (set_uint32): Likewise.
27719         * lib/sha1.c (set_uint32): Likewise.
27720
27721 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27722
27723         * lib/sha1.c (set_uint32): Mark function as static.
27724
27725 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27726
27727         md2: clarify comments to say that alignment is not required.
27728         * lib/md2.h: Remove warning about alignment in comment.
27729         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
27730         never been required.
27731
27732 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27733
27734         md4: adapt alignment constraint fix from sha1.
27735         * lib/md4.c (set_uint32): New function, from sha1.c
27736         (md4_read_ctx): Use it.
27737         (md4_finish_ctx): Doc fix.
27738         * lib/md4.h: Doc fix.
27739
27740 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27741
27742         md5: adapt alignment constraint fix from sha1.
27743         * lib/md5.c (set_uint32): New function, from sha1.c
27744         (md5_read_ctx): Use it.
27745         (md5_finish_ctx): Doc fix.
27746         * lib/md5.h: Doc fix.
27747
27748 2008-01-30  Peter Palfrader  <weasel@debian.org>
27749
27750         sha1: remove the result buffer alignment constraint
27751         * lib/sha1.c (set_uint32): New function.
27752         (sha1_read_ctx): Rewrite to remove the result buffer alignment
27753         constraint.
27754         (sha1_finish_ctx): Remove comment warning about alignment constraint.
27755         * lib/sha1.h: Likewise.
27756
27757 2008-01-30  Andreas Schwab  <schwab@suse.de>
27758             Bruno Haible  <bruno@clisp.org>
27759
27760         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
27761         correct definition of LDBL_MIN_EXP.
27762
27763 2008-01-30  Karl Berry  <karl@gnu.org>
27764
27765         * config/srclist-update: try to preserve x bit on updates.
27766         * config/srclistvars.sh: update for karl.
27767
27768 2008-01-29  Jim Meyering  <meyering@redhat.com>
27769
27770         vasnprintf.c: Avoid warning about unused label
27771         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
27772         "overflow" label definition and associated code with the
27773         same cpp condition that guards the sole use of that label.
27774
27775 2008-01-26  Bruno Haible  <bruno@clisp.org>
27776
27777         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
27778         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
27779         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
27780         * lib/isnanl-nolibm.h (isnanl): Likewise.
27781         Reported by Paul Eggert <eggert@cs.ucla.edu>.
27782
27783 2008-01-26  Bruno Haible  <bruno@clisp.org>
27784
27785         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
27786         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
27787
27788 2008-01-26  Bruno Haible  <bruno@clisp.org>
27789
27790         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
27791         GCC >= 4.0 built-in.
27792         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
27793
27794 2008-01-26  Bruno Haible  <bruno@clisp.org>
27795
27796         Rename isnan, applicable to 'double' only, to isnand.
27797         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
27798         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
27799         (configure.ac): Update.
27800         (Include): Replace "isnan.h" with "isnand.h".
27801         * m4/isnand.m4: Renamed from m4/isnan.m4.
27802         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
27803         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
27804         instead of isnan.c.
27805         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
27806         instead of HAVE_ISNAN_IN_LIBC.
27807         (isnand): Renamed from isnan.
27808         * lib/isnand.c: New file.
27809         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
27810         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
27811         (Makefile.am): Update.
27812         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
27813         Include isnand.h instead of isnan.h.
27814         (main): Test isnand instead of isnan.
27815         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
27816         isnan-nolibm.
27817         * modules/frexp (Depends-on): Likewise.
27818         * modules/frexp-tests (Depends-on): Likewise.
27819         * modules/frexp-nolibm (Depends-on): Likewise.
27820         * modules/frexp-nolibm-tests (Depends-on): Likewise.
27821         * modules/isfinite (Depends-on): Likewise.
27822         * modules/round-tests (Depends-on): Likewise.
27823         * modules/signbit (Depends-on): Likewise.
27824         * modules/signbit-tests (Depends-on): Likewise.
27825         * modules/snprintf-posix (Depends-on): Likewise.
27826         * modules/sprintf-posix (Depends-on): Likewise.
27827         * modules/trunc-tests (Depends-on): Likewise.
27828         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
27829         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
27830         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
27831         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
27832         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
27833         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
27834         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
27835         * modules/vasnprintf-posix (Depends-on): Likewise.
27836         * modules/vasprintf-posix (Depends-on): Likewise.
27837         * modules/vfprintf-posix (Depends-on): Likewise.
27838         * modules/vsnprintf-posix (Depends-on): Likewise.
27839         * modules/vsprintf-posix (Depends-on): Likewise.
27840         * lib/frexp.c: Include isnand.h instead of isnan.h.
27841         (ISNAN): Set to isnand instead of isnan.
27842         * lib/isfinite.c: Include isnand.h instead of isnan.h.
27843         (gl_isfinited): Use isnand instead of isnan.
27844         * lib/signbitd.c: Include isnand.h instead of isnan.h.
27845         (gl_signbitd): Use isnand instead of isnan.
27846         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
27847         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
27848         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
27849         (main): Use isnand instead of isnan.
27850         * tests/test-round1.c: Include isnand.h.
27851         (main): Use isnand instead of isnan.
27852         * tests/test-round2.c: Include isnand.h instead of isnan.h.
27853         (ISNAN): Set to isnand instead of isnan.
27854         * tests/test-trunc1.c: Include isnand.h.
27855         (main): Use isnand instead of isnan.
27856         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
27857         (equal): Use isnand instead of isnan.
27858         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
27859         isnand-nolibm.
27860         * NEWS: Mention the change.
27861
27862 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
27863             Bruno Haible  <bruno@clisp.org>
27864
27865         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
27866         the GCC builtins for signbits are present and set
27867         REPLACE_SIGNBIT_USING_GCC if so.
27868         * lib/math.in.h (signbit): Define using GCC builtins if
27869         REPLACE_SIGNBIT_USING_GCC is set.
27870         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
27871         REPLACE_SIGNBIT_USING_GCC.
27872         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
27873
27874 2008-01-25  Jim Meyering  <meyering@redhat.com>
27875
27876         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
27877         * lib/poll.c: Include <config.h>, not "config.h".
27878         * tests/test-getaddrinfo.c: Likewise.
27879
27880 2008-01-25  Simon Josefsson  <simon@josefsson.org>
27881
27882         * modules/sockets-tests: New file.
27883
27884 2008-01-24  Simon Josefsson  <simon@josefsson.org>
27885
27886         * modules/sockets: New module, can be used to call WSA_Startup and
27887         WSA_Cleanup when needed.
27888
27889         * lib/sockets.h, lib/sockets.c: New files.
27890
27891         * m4/sockets.m4: New file.
27892
27893         * tests/test-sockets.c: New file.
27894
27895 2008-01-19  Bruno Haible  <bruno@clisp.org>
27896
27897         * doc/posix-headers: Renamed from doc/headers.
27898         * doc/posix-functions: Renamed from doc/functions.
27899         * doc/gnulib.texi: Update.
27900
27901 2008-01-19  Bruno Haible  <bruno@clisp.org>
27902
27903         * doc/glibc-functions/strcasestr.texi: Include contents of
27904         doc/functions/strcasestr.texi, fixing the list of platforms.
27905         * doc/functions/strcasestr.texi: Remove file.
27906
27907 2008-01-19  Bruno Haible  <bruno@clisp.org>
27908
27909         * doc/glibc-functions/memmem.texi: Include contents of
27910         doc/functions/memmem.texi.
27911         * doc/functions/memmem.texi: Remove file.
27912
27913 2008-01-18  Bruno Haible  <bruno@clisp.org>
27914
27915         * doc/glibc-functions/*.texi: New files.
27916         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
27917         to use the new files.
27918
27919 2008-01-17  Bruno Haible  <bruno@clisp.org>
27920
27921         * tests/test-gethostname.c (main): Fix printf statement.
27922
27923 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27924
27925         * modules/gethostname-tests: New file.
27926
27927         * tests/test-gethostname.c: New file.
27928
27929 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27930
27931         * lib/gethostname.c: Include string.h unconditionally, strncpy is
27932         used by the UNAME case.  Reported by Bruno Haible
27933         <bruno@clisp.org>.
27934
27935 2008-01-17  Eric Blake  <ebb9@byu.net>
27936
27937         Convert c-strcasestr to be more efficient.
27938         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
27939         (Depends-on): Add c-strcase, remove malloca, strnlen.
27940         * tests/test-c-strcasestr.c (main): Enhance test.
27941         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
27942
27943 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27944
27945         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
27946         Use it in creating po/Makevars.
27947
27948 2008-01-15  Simon Josefsson  <simon@josefsson.org>
27949
27950         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
27951         Applications that requires it should initialize libgcrypt
27952         manually.
27953
27954 2008-01-16  Simon Josefsson  <simon@josefsson.org>
27955
27956         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
27957
27958 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
27959
27960         Fix problem with getdate on mingw32 reported by Simon Josefsson
27961         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
27962         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
27963         tzname", when deciding whether to declare tzname.
27964         * lib/strftime.c (tzname): Likewise.
27965
27966 2008-01-15  Bruno Haible  <bruno@clisp.org>
27967
27968         Work around a MacOS X 10.5 bug in frexpl().
27969         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
27970         * doc/functions/frexpl.texi: Document the bug.
27971         Reported by Elias Pipping <pipping@gentoo.org>.
27972
27973 2008-01-14  Eric Blake  <ebb9@byu.net>
27974
27975         Touch up previous patch.
27976         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
27977         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
27978
27979         Convert strcasestr module to use Two-Way algorithm.
27980         * modules/strcasestr-simple: New module, based on the old
27981         strcasestr, but with Two-Way rather than KMP.
27982         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
27983         * lib/string.in.h (rpl_strcasestr): Declare.
27984         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
27985         performance.
27986         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
27987         * modules/string (Makefile.am): Support strcasestr.
27988         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
27989         * modules/strcasestr-tests (Depends-on): Check for alarm.
27990         * tests/test-strcasestr.c: Augment test.
27991         * lib/str-two-way.h: Clean up stray macro.
27992         * NEWS: Document new module.
27993         * MODULES.html.sh (string handling): Likewise.
27994         * doc/functions/strcasestr.texi: New file.
27995         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
27996         here, since it is not a POSIX function.
27997
27998 2008-01-14  Colin Watson  <cjwatson@debian.org>
27999             Bruno Haible  <bruno@clisp.org>
28000
28001         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
28002         works fine; if not, set REPLACE_STRSIGNAL.
28003         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
28004         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28005         REPLACE_STRSIGNAL.
28006         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
28007         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
28008         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
28009
28010 2008-01-14  Bruno Haible  <bruno@clisp.org>
28011
28012         * modules/strsignal (Include): Change to <string.h>.
28013
28014 2008-01-14  Colin Watson  <cjwatson@debian.org>
28015
28016         * modules/argp (Notice): Add a notice recommending to change
28017         XGETTEXT_OPTIONS.
28018         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
28019
28020 2008-01-13  Colin Watson  <cjwatson@debian.org>
28021
28022         * modules/strsignal-tests: New file.
28023         * tests/test-strsignal.c: New file.
28024
28025         * lib/strsignal.c: New file, from glibc with modifications.
28026         * lib/siglist.h: New file, from glibc with modifications.
28027         * lib/string.in.h (strsignal): New declaration.
28028         * m4/strsignal.m4: New file.
28029         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28030         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
28031         * modules/strsignal: New file.
28032         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
28033         HAVE_DECL_STRSIGNAL.
28034
28035 2008-01-13  Bruno Haible  <bruno@clisp.org>
28036
28037         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
28038         locale encoding is not ASCII. Needed for OpenBSD 4.0.
28039         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
28040         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
28041
28042 2008-01-13  Bruno Haible  <bruno@clisp.org>
28043
28044         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
28045         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
28046         * lib/argp.h (__attribute__): Likewise.
28047         * lib/c-stack.c (__attribute__): Likewise.
28048         * lib/error.h (__attribute__): Likewise.
28049         * lib/fts.c (__attribute__): Likewise.
28050         * lib/openat.h (__attribute__): Likewise.
28051         * lib/stdio.in.h (__attribute__): Likewise.
28052         * lib/string.in.h (__attribute__): Likewise.
28053         * lib/utimens.c (__attribute__): Likewise.
28054         * lib/vasnprintf.h (__attribute__): Likewise.
28055         * lib/xalloc.h (__attribute__): Likewise.
28056         * lib/xprintf.h (__attribute__): Likewise.
28057         * lib/xstrtol.h (__attribute__): Likewise.
28058         * lib/xvasprintf.h (__attribute__): Likewise.
28059
28060 2008-01-12  Bruno Haible  <bruno@clisp.org>
28061
28062         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
28063         * doc/glibc-headers/a.out.texi: New file.
28064         * doc/glibc-headers/aliases.texi: New file.
28065         * doc/glibc-headers/alloca.texi: New file.
28066         * doc/glibc-headers/ar.texi: New file.
28067         * doc/glibc-headers/argp.texi: New file.
28068         * doc/glibc-headers/argz.texi: New file.
28069         * doc/glibc-headers/byteswap.texi: New file.
28070         * doc/glibc-headers/crypt.texi: New file.
28071         * doc/glibc-headers/endian.texi: New file.
28072         * doc/glibc-headers/envz.texi: New file.
28073         * doc/glibc-headers/err.texi: New file.
28074         * doc/glibc-headers/error.texi: New file.
28075         * doc/glibc-headers/execinfo.texi: New file.
28076         * doc/glibc-headers/fpu_control.texi: New file.
28077         * doc/glibc-headers/fstab.texi: New file.
28078         * doc/glibc-headers/fts.texi: New file.
28079         * doc/glibc-headers/getopt.texi: New file.
28080         * doc/glibc-headers/ieee754.texi: New file.
28081         * doc/glibc-headers/ifaddrs.texi: New file.
28082         * doc/glibc-headers/libintl.texi: New file.
28083         * doc/glibc-headers/mcheck.texi: New file.
28084         * doc/glibc-headers/mntent.texi: New file.
28085         * doc/glibc-headers/obstack.texi: New file.
28086         * doc/glibc-headers/paths.texi: New file.
28087         * doc/glibc-headers/printf.texi: New file.
28088         * doc/glibc-headers/pty.texi: New file.
28089         * doc/glibc-headers/resolv.texi: New file.
28090         * doc/glibc-headers/shadow.texi: New file.
28091         * doc/glibc-headers/sysexits.texi: New file.
28092         * doc/glibc-headers/ttyent.texi: New file.
28093
28094 2008-01-12  Jim Meyering  <meyering@redhat.com>
28095
28096         announce-gen: emit Gnulib's git-based version string.
28097         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
28098         New option --gnulib-version=V, where V is expected to be
28099         the output of running git describe in the gnulib directory.
28100         (get_tool_versions): Request feedback on xdelta.  I suspect it's
28101         not useful, and plan to stop publishing an xdelta file with each
28102         coreutils release.
28103
28104         * build-aux/announce-gen: Also check for lzma-compressed files.
28105
28106 2008-01-11  Bruno Haible  <bruno@clisp.org>
28107
28108         * tests/test-memmem.c (main): Increase maximum allowed time.
28109         * tests/test-strstr.c (main): Likewise.
28110
28111 2008-01-11  Bruno Haible  <bruno@clisp.org>
28112
28113         * doc/functions/memmem.texi: Add more precisions about platforms.
28114         * doc/functions/strstr.texi: Likewise.
28115
28116 2008-01-10  Eric Blake  <ebb9@byu.net>
28117
28118         * m4/strstr.m4: Delete cruft from copy-n-paste.
28119         Reported by Bruno Haible.
28120
28121 2008-01-10  Bruno Haible  <bruno@clisp.org>
28122
28123         Make c-strstr rely on strstr.
28124         * lib/c-strstr.c: Don't include str-kmp.h.
28125         (c_strstr): Define in terms of strstr.
28126         * modules/c-strstr (Files): Remove lib/str-kmp.h.
28127         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
28128
28129 2008-01-10  Bruno Haible  <bruno@clisp.org>
28130
28131         * doc/gnulib.texi (String Functions in C Locale): New section.
28132         * doc/c-ctype.texi: New file.
28133         * doc/c-strcase.texi: New file.
28134         * doc/c-strcaseeq.texi: New file.
28135         * doc/c-strcasestr.texi: New file.
28136         * doc/c-strstr.texi: New file.
28137         * doc/c-strtod.texi: New file.
28138         * doc/c-strtold.texi: New file.
28139
28140 2008-01-10  Eric Blake  <ebb9@byu.net>
28141
28142         * lib/relocatable.h: Fix a comment.
28143
28144 2008-01-10  Eric Blake  <ebb9@byu.net>
28145
28146         Share two-way algorithm.
28147         * lib/str-two-way.h: New file, merged from...
28148         * lib/memmem.c: ...here...
28149         * lib/strstr.c: ...and here.
28150         * modules/memmem (Files): Use it.
28151         * modules/strstr (Files): Likewise.
28152
28153         Avoid quadratic strstr implementations.
28154         * lib/strstr.c: New file.
28155         * m4/strstr.m4: Likewise.
28156         * modules/strstr: Likewise.
28157         * modules/strstr-tests: Likewise.
28158         * tests/test-strstr.c: Likewise.
28159         * lib/string.in.h (rpl_strstr): Declare.
28160         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
28161         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
28162         * modules/string (Makefile.am): Likewise.
28163         * MODULES.html.sh (string handling): Mention new module.
28164         * doc/functions/strstr.texi (strstr): Document the bug.
28165
28166 2008-01-10  Bruno Haible  <bruno@clisp.org>
28167
28168         * lib/relocatable.h (relocate): State whether result is freshly
28169         allocated or not.
28170         * lib/relocatable.c (relocate): Return a freshly allocated string
28171         instead of a pointer to a privately held string.
28172         Reported by Sylvain Beucler <beuc@gnu.org>.
28173
28174 2008-01-10  Colin Watson  <cjwatson@debian.org>
28175
28176         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
28177         s/S_ISNLK/S_ISLNK/.
28178
28179 2008-01-09  Bruno Haible  <bruno@clisp.org>
28180
28181         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
28182         and other files.
28183         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
28184         if it's only a guess.
28185         * modules/memmem: Simplify by depending on memmem-simple.
28186
28187 2008-01-09  Bruno Haible  <bruno@clisp.org>
28188
28189         Work around OpenBSD 4.0 tdelete() bug.
28190         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
28191         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
28192         macros and don't redefine the enum values.
28193         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
28194         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
28195         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
28196
28197 2008-01-09  Bruno Haible  <bruno@clisp.org>
28198
28199         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
28200         (main): Don't perform the tests if setlocale did not install a UTF-8
28201         locale. Needed on OpenBSD 4.0.
28202         * modules/wcwidth-tests (Depends-on): Add localcharset.
28203
28204 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
28205
28206         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
28207         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
28208         * NEWS: announce this.
28209         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
28210
28211 2008-01-09  Simon Josefsson  <simon@josefsson.org>
28212         and Eric Blake  <ebb9@byu.net>
28213
28214         Add memmem-simple module.
28215         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
28216         (gl_FUNC_MEMMEM): Separate performance from presence checks.
28217         * modules/memmem-simple: New file.
28218         * modules/memmem (Description): Tweak.
28219         * MODULES.html.sh (string handling): Mention new module.
28220         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
28221         addressed by memmem-simple.
28222         * NEWS: Document the difference.
28223
28224 2008-01-09  Eric Blake  <ebb9@byu.net>
28225
28226         Give gcc some memmem optimization hints.
28227         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
28228         (strcasestr): Declare as pure.
28229         * modules/memmem (Maintainer): Claim my implementation.
28230
28231 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28232
28233         Support AIX 6.1 and higher.
28234         * build-aux/config.libpath: Likewise.
28235         * build-aux/config.rpath: Likewise.
28236
28237 2008-01-08  Jim Meyering  <meyering@redhat.com>
28238             Bruno Haible  <bruno@clisp.org>
28239
28240         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
28241         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
28242         Reported by Peter Fales in
28243         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
28244
28245 2008-01-08  Bruno Haible  <bruno@clisp.org>
28246
28247         * modules/unictype/category-of (Depends-on): Add
28248         unictype/category-none.
28249         * modules/unictype/category-and-tests (Depends-on): Add
28250         unictype/category-{L,N,Lu,Nd}.
28251         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
28252         * modules/unictype/category-or-tests (Depends-on): Add
28253         unictype/category-{L,N}.
28254         * modules/unictype/category-name-tests (Depends-on): Add
28255         unictype/category-{Z,Nl}.
28256         Reported by Simon Josefsson.
28257
28258 2008-01-08  Bruno Haible  <bruno@clisp.org>
28259
28260         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
28261         convention better.
28262         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
28263         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
28264         Reported by Peter Miller <millerp@canb.auug.org.au>.
28265
28266 2008-01-08  Eric Blake  <ebb9@byu.net>
28267
28268         Rewrite memmem to guarantee linear complexity without malloc.
28269         * lib/memmem.c (memmem): Use Two-Way rather than
28270         Knuth-Morris-Pratt, to allow O(1) space usage.
28271         (critical_factorization, two_way_short_needle)
28272         (two_way_long_needle): New functions.
28273         (knuth_morris_pratt): Delete.
28274         * modules/memmem (Depends-on): No longer need malloca or stdbool.
28275         Add stdint.
28276         * tests/test-memmem.c (main): Add tests for periodic needle and
28277         sublinear performance.
28278         * doc/functions/memmem.texi (memmem): Document other deficiencies
28279         in cygwin and older glibc.
28280
28281 2008-01-08  Bruno Haible  <bruno@clisp.org>
28282
28283         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
28284         augmentation.
28285
28286 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
28287
28288         Add a configure time option: --disable-acl.
28289         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
28290         AC_ARG_ENABLE(acl).
28291
28292 2008-01-06  Simon Josefsson  <simon@josefsson.org>
28293
28294         * tests/test-localename.c: Don't include obsolete "setenv.h".
28295
28296         * modules/localename-tests (Depends-on): Need unsetenv.
28297
28298 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28299
28300         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
28301
28302 2008-01-06  Colin Watson  <cjwatson@debian.org>
28303
28304         * users.txt: Add man-db.
28305
28306 2008-01-07  Bruno Haible  <bruno@clisp.org>
28307
28308         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
28309         previous section name.
28310
28311 2008-01-07  Bruno Haible  <bruno@clisp.org>
28312
28313         * lib/progname.c (set_program_name): Don't strip off a leading
28314         "lt-" prefix outside a .libs directory.
28315         Suggested by Paul Eggert.
28316
28317 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
28318             Bruno Haible  <bruno@clisp.org>
28319
28320         Improve memory cleanup in 'relocatable' module.
28321         * lib/relocatable.h (compute_curr_prefix): Change return type to
28322         'char *'.
28323         * lib/relocatable.c (compute_curr_prefix): Change return type to
28324         'char *'. Free curr_installdir after use.
28325         (relocate): Free curr_prefix_better after use.
28326         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
28327
28328 2008-01-01  Bruno Haible  <bruno@clisp.org>
28329
28330         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
28331         failure on older glibc systems.
28332         Reported by Peter Fales <psfales@alcatel-lucent.com>.
28333
28334 2008-01-05  Eric Blake  <ebb9@byu.net>
28335
28336         Avoid quadratic system memmem.
28337         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
28338         Reported by Ralf Wildenhues.
28339
28340         Fix memmem test for mingw.
28341         * modules/memmem-tests (configure.ac): Check for alarm.
28342         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
28343         it.
28344         * doc/functions/memmem.texi: New file.
28345         * doc/gnulib.texi (Function Substitutes): Add memmem.
28346         Reported by Bruno Haible.
28347
28348 2008-01-04  Bruno Haible  <bruno@clisp.org>
28349
28350         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
28351         Require gl_HEADER_STRINGS_H_DEFAULTS, not
28352         gl_HEADER_STRING_H_DEFAULTS.
28353
28354 2008-01-04  Eric Blake  <ebb9@byu.net>
28355
28356         Shorten duration of memmem test.
28357         * tests/test-memmem.c (main): Use alarm to declare failure if test
28358         is taking too long.
28359         Reported by Ralf Wildenhues.
28360
28361 2007-12-21  Simon Josefsson  <simon@josefsson.org>
28362
28363         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
28364         string, needed by strerror.
28365
28366 2008-01-03  Colin Watson  <cjwatson@debian.org>
28367             Bruno Haible  <bruno@clisp.org>
28368
28369         * doc/gnulib-tool.texi (Localization): New section.
28370
28371 2008-01-02  Bruno Haible  <bruno@clisp.org>
28372
28373         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
28374         variables to 'unsigned char *' type.
28375         Reported by Paul Eggert.
28376
28377 2008-01-02  Jim Meyering  <jim@meyering.net>
28378
28379         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
28380
28381 2007-12-31  Jim Meyering  <jim@meyering.net>
28382
28383         Avoid use of private FTS type name.
28384         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
28385
28386 2007-12-30  Karl Berry  <karl@gnu.org>
28387
28388         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
28389         work around defect in Texinfo and/or the standalone Info browser.
28390
28391 2007-12-30  Bruno Haible  <bruno@clisp.org>
28392
28393         Unify 5 copies of the KMP code.
28394         * lib/str-kmp.h: New file.
28395         * lib/c-strcasestr.c: Include str-kmp.h.
28396         (knuth_morris_pratt): Remove function.
28397         (c_strcasestr): Update.
28398         * lib/c-strstr.c: Include str-kmp.h.
28399         (knuth_morris_pratt): Remove function.
28400         (c_strcasestr): Update.
28401         * lib/mbscasestr.c: Include str-kmp.h.
28402         (knuth_morris_pratt_unibyte): Remove function.
28403         * lib/mbsstr.c: Include str-kmp.h.
28404         (knuth_morris_pratt_unibyte): Remove function.
28405         * lib/strcasestr.c: Include str-kmp.h.
28406         (knuth_morris_pratt): Remove function.
28407         (strcasestr): Update.
28408         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
28409         * modules/c-strstr (Files): Likewise.
28410         * modules/mbscasestr (Files): Likewise.
28411         * modules/mbsstr (Files): Likewise.
28412         * modules/strcasestr (Files): Likewise.
28413         Suggested by Paul Eggert.
28414
28415 2007-12-30  Bruno Haible  <bruno@clisp.org>
28416
28417         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
28418         defined.
28419
28420 2007-12-30  Bruno Haible  <bruno@clisp.org>
28421
28422         * lib/xmalloca.h: Include xalloc.h.
28423         (xnmalloca): New macro.
28424
28425 2007-12-30  Bruno Haible  <bruno@clisp.org>
28426
28427         * lib/malloca.h (nmalloca): New macro.
28428         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
28429         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
28430         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
28431         knuth_morris_pratt_multibyte): Likewise.
28432         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
28433         knuth_morris_pratt_multibyte): Likewise.
28434         * lib/memmem.c (knuth_morris_pratt): Likewise.
28435         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
28436
28437 2007-12-25  Bruno Haible  <bruno@clisp.org>
28438
28439         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
28440         * lib/glob.c: Don't include openat.h.
28441         (link_exists2_p): Add back the code that deals with the
28442         !GLOB_ALTDIRFUNC case.
28443         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
28444         let it do the filename concatenation.
28445         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
28446         * modules/glob (Depends-on): Remove openat.
28447
28448 2007-12-31  Bruno Haible  <bruno@clisp.org>
28449
28450         * modules/dirfd (License): Change to LGPLv2+.
28451         Approved by Jim Meyering.
28452
28453 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
28454
28455         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
28456         when multiplying M by sizeof (size_t).
28457
28458 2007-12-10  Martin Lambers  <marlam@marlam.de>
28459
28460         Override getpagesize on mingw.
28461         * lib/getpagesize.c: New file.
28462         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
28463         * modules/getpagesize (Files): Add lib/getpagesize.c.
28464         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
28465         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
28466         REPLACE_GETPAGESIZE.
28467         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
28468
28469 2007-12-25  Bruno Haible  <bruno@clisp.org>
28470
28471         * modules/localcharset (Notice): New field.
28472         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
28473         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
28474
28475 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
28476             Bruno Haible  <bruno@clisp.org>
28477
28478         Avoid using the syntax symbol() in formatted documentation.
28479         * MODULES.html.sh (func_module): When replacing symbol() with a
28480         hyperlink, remove the parentheses. Show an error if some remain.
28481         Recognize and render the '...' syntax.
28482         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
28483         Rework. Add paragraph about GCC's inlining.
28484         * doc/alloca.texi: Likewise.
28485         * doc/error.texi: Remove parentheses from symbol reference.
28486         * doc/gnulib-intro.texi: Likewise.
28487         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
28488         * modules/fnmatch (Description): Reword to say "the ... function".
28489         * modules/full-read (Description): Likewise.
28490         * modules/full-write (Description): Likewise.
28491         * modules/safe-read (Description): Likewise.
28492         * modules/safe-write (Description): Likewise.
28493         * modules/strchrnul (Description): Likewise.
28494         * modules/trim (Description): Likewise.
28495         * modules/error (Description): Remove parentheses from symbol
28496         references.
28497         * modules/verror (Description): Likewise.
28498         Reported by Karl Berry.
28499
28500 2007-12-25  Bruno Haible  <bruno@clisp.org>
28501
28502         Fixup after 2007-10-16 commit.
28503         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
28504
28505 2007-12-24  Bruno Haible  <bruno@clisp.org>
28506
28507         Make --enable-relocatable work with DESTDIR.
28508         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
28509         to compute installdir from destprog.
28510         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
28511         also set the RELOC_DESTDIR variable.
28512         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28513
28514 2007-12-24  Bruno Haible  <bruno@clisp.org>
28515
28516         Fix link error due to xalloc_die().
28517         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
28518         of xreadlink.
28519         * lib/relocwrapper.c: Update comments.
28520         * build-aux/install-reloc: Remove xreadlink.c from file list.
28521         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
28522         xreadlink.c.
28523         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28524
28525 2007-12-24  Bruno Haible  <bruno@clisp.org>
28526
28527         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
28528         * lib/setenv.h: Remove file.
28529         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
28530         lib/setenv.h.
28531         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
28532         (Depends-on): Add stdlib.
28533         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
28534         gl_FUNC_UNSETENV.
28535         (Include): Replace setenv.h with <stdlib.h>.
28536         * modules/unsetenv: New file.
28537         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
28538         * lib/unsetenv.c: Include <stdlib.h> first.
28539         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
28540         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
28541         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
28542         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
28543         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
28544         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
28545         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
28546         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
28547         * doc/functions/unsetenv.texi: Update.
28548         * modules/xsetenv (Depends-on): Add unsetenv.
28549         * modules/getdate (Depends-on): Likewise.
28550         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
28551         * lib/xsetenv.c: Don't include setenv.h.
28552         * lib/getdate.y: Likewise.
28553         * lib/relocwrapper.c: Likewise.
28554         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
28555         (Depends-on): Add stdlib.
28556         * NEWS: Mention the changes.
28557         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28558
28559 2007-12-23  Bruno Haible  <bruno@clisp.org>
28560
28561         * lib/memmem.c (memmem): Use lowercase variable names. Tab
28562         indentation.
28563
28564 2007-12-23  Bruno Haible  <bruno@clisp.org>
28565
28566         * lib/c-strcasestr.c: Add more comments.
28567         * lib/c-strstr.c: Likewise.
28568         * lib/mbscasestr.c: Likewise.
28569         * lib/mbsstr.c: Likewise.
28570         * lib/strcasestr.c: Likewise.
28571         * lib/memmem.c: Likewise.
28572
28573 2007-12-23  Bruno Haible  <bruno@clisp.org>
28574
28575         * tests/test-memmem.c: Include <string.h> first.
28576
28577 2007-12-22  Bruno Haible  <bruno@clisp.org>
28578
28579         * gnulib-tool (func_create_testdir): Change $auxdir while generating
28580         the contents of $testsbase.
28581         Reported by Ralf Wildenhues.
28582
28583 2007-12-22  Bruno Haible  <bruno@clisp.org>
28584
28585         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
28586         two variables local_ldadd_before, local_ldadd_last.
28587
28588 2007-12-20  Eric Blake  <ebb9@byu.net>
28589
28590         Work around circular library issue when cross-compiling.
28591         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
28592         that progname.o does not need to pull in rpl_memcmp.
28593
28594 2007-12-19  Eric Blake  <ebb9@byu.net>
28595
28596         Fix memmem to avoid O(n^2) worst-case complexity.
28597         * lib/memmem.c (knuth_morris_pratt): New function.
28598         (memmem): Use it if first few naive iterations fail.
28599         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
28600         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
28601         * modules/memchr (License): Likewise.
28602         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
28603         malloca.
28604         * tests/test-memmem.c: Rewrite, borrowing ideas from
28605         test-mbsstr1.c; the old version wouldn't even compile!
28606         * modules/memmem-tests: New file.
28607         * lib/string.in.h (rpl_memmem): Add declaration.
28608         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
28609         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
28610         REPLACE_MEMMEM.
28611
28612 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
28613
28614         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
28615         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
28616         before any system include files, and undef after them all.  This
28617         should fix a problem on VMS reported by John E. Malmberg in
28618         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
28619
28620 2007-12-17  Eric Blake  <ebb9@byu.net>
28621
28622         Revert addition of verify, for BSD/OS.
28623         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
28624         can't handle large files, for the sake of obsolete platforms.
28625         * modules/fseeko (Depends-on): Remove verify.
28626         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
28627         * doc/functions/ftello.texi (ftello): Likewise.
28628         * doc/functions/fgetpos.texi (fgetpos): Likewise.
28629         Reported by Larry Jones.
28630
28631 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
28632
28633         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
28634         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
28635
28636 2007-12-17  Jim Meyering  <meyering@redhat.com>
28637
28638         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
28639         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
28640         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
28641         * modules/getcwd (Depends-on): Add openat.
28642         Reported by Petr Salinger.
28643
28644 2007-12-17  Bruno Haible  <bruno@clisp.org>
28645
28646         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
28647         avoid a segmentation fault of the configure test on x86_64 systems.
28648
28649 2007-12-15  Jim Meyering  <meyering@redhat.com>
28650
28651         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
28652
28653 2007-12-13  Eric Blake  <ebb9@byu.net>
28654
28655         Another fseek test.
28656         * tests/test-fseek.c (main): Also test ungetc handling.
28657         * tests/test-fseeko.c (main): Likewise.
28658         * modules/fseeko (Depends-on): Add verify.
28659         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
28660         large.
28661         Reported by Larry Jones.
28662
28663         Fix fseeko on mingw.
28664         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
28665         seek.
28666
28667         Beef up fseek tests.
28668         * tests/test-fseek.c (main): Also test eof handling.
28669         * tests/test-fseeko.c (main): Likewise.
28670         Reported by Larry Jones.
28671
28672 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
28673
28674         Fix fseeko on BSD-based platforms.
28675         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
28676         successful seek.
28677
28678 2007-12-12  Eric Blake  <ebb9@byu.net>
28679
28680         Allow circular dependency of separate libtests.a
28681         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
28682         when use_libtests.
28683
28684 2007-12-11  Eric Blake  <ebb9@byu.net>
28685
28686         Fix bug with -0.0L in previous patch.
28687         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
28688         * tests/test-isnan.c (main): Also test on zeroes.
28689         * tests/test-isnanf.c (main): Likewise.
28690         * tests/test-isnanl.h (main): Likewise.
28691
28692         Detect pseudo-denormals on x86 even when cross-compiling.
28693         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
28694         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
28695         invalid bit patterns that happen to satisfy ==.
28696
28697         Avoid link failures with separate libtests.a.
28698         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
28699         last, to satisfy circular dependencies.
28700
28701 2007-12-11  Eric Blake  <ebb9@byu.net>
28702         and Bruno Haible  <bruno@clisp.org>
28703
28704         Fix OpenBSD 4.0 <float.h> handling of long double.
28705         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
28706         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
28707         * doc/headers/float.texi (float.h): Document OpenBSD bug.
28708
28709 2007-12-11  Jim Meyering  <meyering@redhat.com>
28710
28711         * users.txt: Add libvirt.
28712
28713         Support versions of autoconf prior to 2.59c.
28714         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
28715         if it is not already defined.
28716
28717 2007-12-09  Bruno Haible  <bruno@clisp.org>
28718
28719         Let 'gnulib-tool --import' collect sources needed for the tests in
28720         tests/ rather than in lib/.
28721         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
28722         argument. If true, add rules to generate libtests.a, and put libtests.a
28723         into $(LDADD). Consider source files in subdirectories and set
28724         uses_subdirs.
28725         (func_emit_initmacro_start, func_emit_initmacro_end,
28726         func_emit_initmacro_done): Pass all arguments explicitly.
28727         (func_import): Determine two module lists main_modules,
28728         testsrelated_modules. Determine use_libtests. Determine two variables
28729         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
28730         instead of just sed_transform_lib_file. Determine two variables
28731         main_files and testsrelated_files. Compute 'files' as the union of
28732         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
28733         func_add_or_update. In the generated gnulib-comp.m4, collect the
28734         object files for tests/ in different variables than those for lib/.
28735         Substitute LIBTESTS_LIBDEPS.
28736         (func_create_testdir): Combine the uses_subdirs results from
28737         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
28738
28739 2007-12-09  Bruno Haible  <bruno@clisp.org>
28740
28741         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
28742         the build-aux directory.
28743
28744 2007-12-09  Bruno Haible  <bruno@clisp.org>
28745
28746         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
28747         introduced on 2006-09-09.
28748
28749 2007-12-07  Jim Meyering  <meyering@redhat.com>
28750
28751         Let these macros work also with autoconf-2.59.
28752         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
28753         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
28754         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28755
28756 2007-12-06  Jim Meyering  <meyering@redhat.com>
28757
28758         Avoid a configure-time syntax error in gl_FUNC_ACL.
28759         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
28760         function in each branch, before testing the cache variable.
28761
28762 2007-12-04  Eric Blake  <ebb9@byu.net>
28763
28764         Make scripts executable.
28765         * build-aux/config.guess: Add execute permissions.
28766         * build-aux/config.sub: Likewise.
28767         * build-aux/gendocs.sh: Likewise.
28768
28769         Fix frexp on mingw.
28770         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
28771         cross-compiling.
28772         * doc/functions/frexp.texi (frexp): Document the bug.
28773
28774         Make cygwin fseeko check more reliable.
28775         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
28776         version numbers, rather than unrelated feature check.
28777         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
28778         * doc/functions/ftello.texi (ftello): Likewise.
28779         Reported by Bruno Haible.
28780
28781         * m4/strerror.m4: Bump version number.
28782
28783 2007-12-03  Bruno Haible  <bruno@clisp.org>
28784
28785         * doc/functions/mprotect.texi: Mention the mingw problem.
28786
28787 2007-12-03  Eric Blake  <ebb9@byu.net>
28788
28789         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
28790         REPLACE_STRERROR is initialized before this macro.
28791
28792 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28793
28794         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
28795         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
28796         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
28797         put -lsec in even for programs other than 'ls'.  This fixes a problem
28798         for gettext reported by Bruno Haible in
28799         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
28800         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
28801         Add support for Solaris 10.  This isn't efficient, but should get the
28802         job done for now.
28803
28804 2007-12-03  James Youngman  <jay@gnu.org>
28805
28806         * doc/regexprops-generic.texi: change "an close-group" to "a
28807         close-group" and "illegal" to "not allowed".
28808
28809 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28810
28811         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
28812         pr_byname.h. Needed for the rare case when the maintainer has done
28813         "make maintainer-clean" in the source directory and then attempts a
28814         build outside the source directory.
28815         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
28816         scripts_byname.h.
28817
28818 2007-12-02  Martin Lambers <marlam@marlam.de>
28819             Bruno Haible  <bruno@clisp.org>
28820
28821         * lib/getpagesize.h: Remove file.
28822         * lib/unistd.in.h: Include declaration of getpagesize here.
28823         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
28824         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
28825         HAVE_SYS_PARAM_H.
28826         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
28827         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28828         * modules/getpagesize (Files): Remove lib/getpagesize.h.
28829         (Depends-on): Add unistd.
28830         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28831         (Include): Use <unistd.h> instead of getpagesize.h.
28832         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
28833         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28834         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
28835         gl_GETPAGESIZE invocation, already handled by module dependency.
28836         * lib/pagealign_alloc.c: Don't include getpagesize.h.
28837
28838 2007-12-02  Bruno Haible  <bruno@clisp.org>
28839
28840         * modules/strings-tests: New file.
28841         * tests/test-strings.c: New file.
28842
28843         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
28844         * lib/strings.in.h: New file.
28845         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
28846         * m4/strings_h.m4: New file.
28847         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
28848         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
28849         * modules/strings: New file.
28850         * modules/string (Makefile.am): Update.
28851         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
28852         Reported by Karl Berry.
28853
28854 2007-12-01  Eric Blake  <ebb9@byu.net>
28855
28856         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
28857         accomodate fix in cygwin 1.5.25.
28858
28859 2007-12-01  Jim Meyering  <meyering@redhat.com>
28860
28861         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
28862         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
28863         that would inhibit utf8-optimization of a regexp containing line-
28864         or buffer-anchors, e.g., `^', `$'.
28865
28866 2007-11-30  Bruno Haible  <bruno@clisp.org>
28867
28868         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
28869         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
28870         glthread_recursive_lock_init.
28871         * lib/lock.c (glthread_recursive_lock_init)
28872         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
28873         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28874
28875 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
28876
28877         New function qset_acl, like set_acl but with syscall semantics.
28878         * lib/acl.h (qset_acl): New decl.
28879         * lib/acl.c (qset_acl): New function.
28880         (set_acl): Use new function.  Use more-consistent diagnostics.
28881
28882 2007-11-28  Jim Meyering  <meyering@redhat.com>
28883
28884         * modules/physmem (License): Change from GPL to LGPLv2+.
28885
28886 2007-11-26  Bruno Haible  <bruno@clisp.org>
28887
28888         * lib/vasnprintf.c (decode_long_double): Don't abort if the
28889         'long double' type has excess precision.
28890         Reported by Jim Meyering in
28891         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
28892
28893 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28894
28895         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
28896         Sync from <http://gnu.org/licenses>.
28897         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
28898         with license text from same location.
28899         * doc/maintain.texi, doc/standards.texi:  Sync from
28900         <http://savannah.gnu.org/projects/gnustandards>.
28901
28902 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
28903         and Jim Meyering  <meyering@redhat.com>
28904
28905         Adjust getdate' grammar to accept a slightly more regular language.
28906         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
28907         Before, the former was rejected.
28908         * lib/getdate.y (digits_to_date_time): New function, factored
28909         out of ...
28910         (number): ...here.  Just call digits_to_date_time.
28911         (hybrid): New non-terminal to handle an <unsigned number,
28912         signed relative offset> sequence consistently.
28913
28914 2007-11-18  Jim Meyering  <meyering@redhat.com>
28915
28916         Pull my changes from coreutils:
28917         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
28918         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
28919         use of $gnulib_tool_option_extras, so that it's separated from the
28920         preceding argument.
28921
28922         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
28923         * build-aux/bootstrap (cp_mark_as_generated): Create any required
28924         parent destination directories before copying a file into place.
28925
28926 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
28927
28928         bootstrap: work also with 4-argument variant of AC_INIT
28929         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
28930
28931 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28932
28933         Port test-getaddrinfo to Solaris.
28934         Problem reported by Bruno Haible in
28935         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
28936         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
28937         explanation of setting 'hints'.
28938         Don't reject an implementation merely because it returns EAI_SERVICE.
28939         (EAI_SERVICE): Define to 0 if not defined.
28940
28941 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
28942
28943         The license of gnu-make and posix-shell is now "GPLed build tool".
28944         * modules/gnu-make (License): Likewise.
28945         * modules/posix-shell (License): Likewise.
28946
28947         New module posix-shell, for determining a POSIX shell
28948         or perhaps something that is close enough to a POSIX shell.
28949         * m4/posix-shell.m4: New file.
28950         * modules/posix-shell: New file.
28951
28952         * MODULES.html.sh: Mention new module.
28953
28954         New module gnu-make, for determining whether we're using GNU Make.
28955         * m4/gnu-make.m4: New file.
28956         * modules/gnu-make: New file.
28957         * MODULES.html.sh: Mention new module.
28958
28959 2007-11-14  Jim Meyering  <meyering@redhat.com>
28960
28961         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
28962         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
28963         use this macro to create a function _definition_.
28964         Remove useless "#undef ARGMATCH_DIE".
28965
28966 2007-11-14  Bruno Haible  <bruno@clisp.org>
28967
28968         * lib/config.charset: Update for OpenBSD 4.1.
28969         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
28970
28971 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
28972
28973         Document 64-bit #if problems in stdint.texi.
28974         * doc/headers/stdint.texi (stdint.h): Mention problems with
28975         64-bit-#if, and how to work around them.
28976
28977         Don't insist on 'long long int' support in the preprocessor.  It
28978         breaks too many things.  For example, PRIdMAX still uses a 'long
28979         long int' format with the latest Sun compiler, even though
28980         HAVE_LONG_LONG_INT isn't defined due to that compiler's
28981         preprocessor problem.  This causes the latest coreutils to dump
28982         core on Solaris 10 sparc with the Sun C compiler.
28983         Instead, fix the 2007-10-16 problem in a different way, by evaluating
28984         the troublesome expressions at configure-time, not at #if-time.
28985         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
28986         preprocessor.
28987         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
28988         compile-time C checks, done at 'configure'-time.
28989         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
28990         * modules/inttypes (Makefile): Substitute the new symbols that
28991         gl_INTTYPES_H now generates.
28992         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
28993
28994 2007-11-12  Bruno Haible  <bruno@clisp.org>
28995
28996         Tests for Unicode character classification functions.
28997
28998         * modules/unictype/bidicategory-byname-tests: New file.
28999         * modules/unictype/bidicategory-name-tests: New file.
29000         * modules/unictype/bidicategory-of-tests: New file.
29001         * modules/unictype/bidicategory-test-tests: New file.
29002         * modules/unictype/block-list-tests: New file.
29003         * modules/unictype/block-of-tests: New file.
29004         * modules/unictype/block-test-tests: New file.
29005         * modules/unictype/category-C-tests: New file.
29006         * modules/unictype/category-Cc-tests: New file.
29007         * modules/unictype/category-Cf-tests: New file.
29008         * modules/unictype/category-Cn-tests: New file.
29009         * modules/unictype/category-Co-tests: New file.
29010         * modules/unictype/category-Cs-tests: New file.
29011         * modules/unictype/category-L-tests: New file.
29012         * modules/unictype/category-Ll-tests: New file.
29013         * modules/unictype/category-Lm-tests: New file.
29014         * modules/unictype/category-Lo-tests: New file.
29015         * modules/unictype/category-Lt-tests: New file.
29016         * modules/unictype/category-Lu-tests: New file.
29017         * modules/unictype/category-M-tests: New file.
29018         * modules/unictype/category-Mc-tests: New file.
29019         * modules/unictype/category-Me-tests: New file.
29020         * modules/unictype/category-Mn-tests: New file.
29021         * modules/unictype/category-N-tests: New file.
29022         * modules/unictype/category-Nd-tests: New file.
29023         * modules/unictype/category-Nl-tests: New file.
29024         * modules/unictype/category-No-tests: New file.
29025         * modules/unictype/category-P-tests: New file.
29026         * modules/unictype/category-Pc-tests: New file.
29027         * modules/unictype/category-Pd-tests: New file.
29028         * modules/unictype/category-Pe-tests: New file.
29029         * modules/unictype/category-Pf-tests: New file.
29030         * modules/unictype/category-Pi-tests: New file.
29031         * modules/unictype/category-Po-tests: New file.
29032         * modules/unictype/category-Ps-tests: New file.
29033         * modules/unictype/category-S-tests: New file.
29034         * modules/unictype/category-Sc-tests: New file.
29035         * modules/unictype/category-Sk-tests: New file.
29036         * modules/unictype/category-Sm-tests: New file.
29037         * modules/unictype/category-So-tests: New file.
29038         * modules/unictype/category-Z-tests: New file.
29039         * modules/unictype/category-Zl-tests: New file.
29040         * modules/unictype/category-Zp-tests: New file.
29041         * modules/unictype/category-Zs-tests: New file.
29042         * modules/unictype/category-and-not-tests: New file.
29043         * modules/unictype/category-and-tests: New file.
29044         * modules/unictype/category-byname-tests: New file.
29045         * modules/unictype/category-name-tests: New file.
29046         * modules/unictype/category-none-tests: New file.
29047         * modules/unictype/category-of-tests: New file.
29048         * modules/unictype/category-or-tests: New file.
29049         * modules/unictype/category-test-withtable-tests: New file.
29050         * modules/unictype/combining-class-tests: New file.
29051         * modules/unictype/ctype-alnum-tests: New file.
29052         * modules/unictype/ctype-alpha-tests: New file.
29053         * modules/unictype/ctype-blank-tests: New file.
29054         * modules/unictype/ctype-cntrl-tests: New file.
29055         * modules/unictype/ctype-digit-tests: New file.
29056         * modules/unictype/ctype-graph-tests: New file.
29057         * modules/unictype/ctype-lower-tests: New file.
29058         * modules/unictype/ctype-print-tests: New file.
29059         * modules/unictype/ctype-punct-tests: New file.
29060         * modules/unictype/ctype-space-tests: New file.
29061         * modules/unictype/ctype-upper-tests: New file.
29062         * modules/unictype/ctype-xdigit-tests: New file.
29063         * modules/unictype/decimal-digit-tests: New file.
29064         * modules/unictype/digit-tests: New file.
29065         * modules/unictype/mirror-tests: New file.
29066         * modules/unictype/numeric-tests: New file.
29067         * modules/unictype/property-alphabetic-tests: New file.
29068         * modules/unictype/property-ascii-hex-digit-tests: New file.
29069         * modules/unictype/property-bidi-arabic-digit-tests: New file.
29070         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
29071         * modules/unictype/property-bidi-block-separator-tests: New file.
29072         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
29073         * modules/unictype/property-bidi-common-separator-tests: New file.
29074         * modules/unictype/property-bidi-control-tests: New file.
29075         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
29076         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
29077         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
29078         * modules/unictype/property-bidi-european-digit-tests: New file.
29079         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
29080         * modules/unictype/property-bidi-left-to-right-tests: New file.
29081         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
29082         * modules/unictype/property-bidi-other-neutral-tests: New file.
29083         * modules/unictype/property-bidi-pdf-tests: New file.
29084         * modules/unictype/property-bidi-segment-separator-tests: New file.
29085         * modules/unictype/property-bidi-whitespace-tests: New file.
29086         * modules/unictype/property-byname-tests: New file.
29087         * modules/unictype/property-combining-tests: New file.
29088         * modules/unictype/property-composite-tests: New file.
29089         * modules/unictype/property-currency-symbol-tests: New file.
29090         * modules/unictype/property-dash-tests: New file.
29091         * modules/unictype/property-decimal-digit-tests: New file.
29092         * modules/unictype/property-default-ignorable-code-point-tests: New file.
29093         * modules/unictype/property-deprecated-tests: New file.
29094         * modules/unictype/property-diacritic-tests: New file.
29095         * modules/unictype/property-extender-tests: New file.
29096         * modules/unictype/property-format-control-tests: New file.
29097         * modules/unictype/property-grapheme-base-tests: New file.
29098         * modules/unictype/property-grapheme-extend-tests: New file.
29099         * modules/unictype/property-grapheme-link-tests: New file.
29100         * modules/unictype/property-hex-digit-tests: New file.
29101         * modules/unictype/property-hyphen-tests: New file.
29102         * modules/unictype/property-id-continue-tests: New file.
29103         * modules/unictype/property-id-start-tests: New file.
29104         * modules/unictype/property-ideographic-tests: New file.
29105         * modules/unictype/property-ids-binary-operator-tests: New file.
29106         * modules/unictype/property-ids-trinary-operator-tests: New file.
29107         * modules/unictype/property-ignorable-control-tests: New file.
29108         * modules/unictype/property-iso-control-tests: New file.
29109         * modules/unictype/property-join-control-tests: New file.
29110         * modules/unictype/property-left-of-pair-tests: New file.
29111         * modules/unictype/property-line-separator-tests: New file.
29112         * modules/unictype/property-logical-order-exception-tests: New file.
29113         * modules/unictype/property-lowercase-tests: New file.
29114         * modules/unictype/property-math-tests: New file.
29115         * modules/unictype/property-non-break-tests: New file.
29116         * modules/unictype/property-not-a-character-tests: New file.
29117         * modules/unictype/property-numeric-tests: New file.
29118         * modules/unictype/property-other-alphabetic-tests: New file.
29119         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
29120         * modules/unictype/property-other-grapheme-extend-tests: New file.
29121         * modules/unictype/property-other-id-continue-tests: New file.
29122         * modules/unictype/property-other-id-start-tests: New file.
29123         * modules/unictype/property-other-lowercase-tests: New file.
29124         * modules/unictype/property-other-math-tests: New file.
29125         * modules/unictype/property-other-uppercase-tests: New file.
29126         * modules/unictype/property-paired-punctuation-tests: New file.
29127         * modules/unictype/property-paragraph-separator-tests: New file.
29128         * modules/unictype/property-pattern-syntax-tests: New file.
29129         * modules/unictype/property-pattern-white-space-tests: New file.
29130         * modules/unictype/property-private-use-tests: New file.
29131         * modules/unictype/property-punctuation-tests: New file.
29132         * modules/unictype/property-quotation-mark-tests: New file.
29133         * modules/unictype/property-radical-tests: New file.
29134         * modules/unictype/property-sentence-terminal-tests: New file.
29135         * modules/unictype/property-soft-dotted-tests: New file.
29136         * modules/unictype/property-space-tests: New file.
29137         * modules/unictype/property-terminal-punctuation-tests: New file.
29138         * modules/unictype/property-test-tests: New file.
29139         * modules/unictype/property-titlecase-tests: New file.
29140         * modules/unictype/property-unassigned-code-value-tests: New file.
29141         * modules/unictype/property-unified-ideograph-tests: New file.
29142         * modules/unictype/property-uppercase-tests: New file.
29143         * modules/unictype/property-variation-selector-tests: New file.
29144         * modules/unictype/property-white-space-tests: New file.
29145         * modules/unictype/property-xid-continue-tests: New file.
29146         * modules/unictype/property-xid-start-tests: New file.
29147         * modules/unictype/property-zero-width-tests: New file.
29148         * modules/unictype/scripts-tests: New file.
29149         * modules/unictype/syntax-c-ident-tests: New file.
29150         * modules/unictype/syntax-c-whitespace-tests: New file.
29151         * modules/unictype/syntax-java-ident-tests: New file.
29152         * modules/unictype/syntax-java-whitespace-tests: New file.
29153         * tests/unictype/test-bidi_byname.c: New file.
29154         * tests/unictype/test-bidi_name.c: New file.
29155         * tests/unictype/test-bidi_of.c: New file.
29156         * tests/unictype/test-bidi_test.c: New file.
29157         * tests/unictype/test-block_list.c: New file.
29158         * tests/unictype/test-block_of.c: New file.
29159         * tests/unictype/test-block_test.c: New file.
29160         * tests/unictype/test-categ_and.c: New file.
29161         * tests/unictype/test-categ_and_not.c: New file.
29162         * tests/unictype/test-categ_byname.c: New file.
29163         * tests/unictype/test-categ_name.c: New file.
29164         * tests/unictype/test-categ_none.c: New file.
29165         * tests/unictype/test-categ_of.c: New file.
29166         * tests/unictype/test-categ_or.c: New file.
29167         * tests/unictype/test-categ_test_withtable.c: New file.
29168         * tests/unictype/test-combining.c: New file.
29169         * tests/unictype/test-decdigit.c: New file.
29170         * tests/unictype/test-digit.c: New file.
29171         * tests/unictype/test-mirror.c: New file.
29172         * tests/unictype/test-numeric.c: New file.
29173         * tests/unictype/test-pr_byname.c: New file.
29174         * tests/unictype/test-pr_test.c: New file.
29175         * tests/unictype/test-predicate-part1.h: New file.
29176         * tests/unictype/test-predicate-part2.h: New file.
29177         * tests/unictype/test-scripts.c: New file.
29178         * tests/unictype/test-sy_c_ident.c: New file.
29179         * tests/unictype/test-sy_java_ident.c: New file.
29180
29181         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
29182         for Unicode 5.0.0.
29183         * tests/unictype/test-categ_Cc.c: Likewise.
29184         * tests/unictype/test-categ_Cf.c: Likewise.
29185         * tests/unictype/test-categ_Cn.c: Likewise.
29186         * tests/unictype/test-categ_Co.c: Likewise.
29187         * tests/unictype/test-categ_Cs.c: Likewise.
29188         * tests/unictype/test-categ_L.c: Likewise.
29189         * tests/unictype/test-categ_Ll.c: Likewise.
29190         * tests/unictype/test-categ_Lm.c: Likewise.
29191         * tests/unictype/test-categ_Lo.c: Likewise.
29192         * tests/unictype/test-categ_Lt.c: Likewise.
29193         * tests/unictype/test-categ_Lu.c: Likewise.
29194         * tests/unictype/test-categ_M.c: Likewise.
29195         * tests/unictype/test-categ_Mc.c: Likewise.
29196         * tests/unictype/test-categ_Me.c: Likewise.
29197         * tests/unictype/test-categ_Mn.c: Likewise.
29198         * tests/unictype/test-categ_N.c: Likewise.
29199         * tests/unictype/test-categ_Nd.c: Likewise.
29200         * tests/unictype/test-categ_Nl.c: Likewise.
29201         * tests/unictype/test-categ_No.c: Likewise.
29202         * tests/unictype/test-categ_P.c: Likewise.
29203         * tests/unictype/test-categ_Pc.c: Likewise.
29204         * tests/unictype/test-categ_Pd.c: Likewise.
29205         * tests/unictype/test-categ_Pe.c: Likewise.
29206         * tests/unictype/test-categ_Pf.c: Likewise.
29207         * tests/unictype/test-categ_Pi.c: Likewise.
29208         * tests/unictype/test-categ_Po.c: Likewise.
29209         * tests/unictype/test-categ_Ps.c: Likewise.
29210         * tests/unictype/test-categ_S.c: Likewise.
29211         * tests/unictype/test-categ_Sc.c: Likewise.
29212         * tests/unictype/test-categ_Sk.c: Likewise.
29213         * tests/unictype/test-categ_Sm.c: Likewise.
29214         * tests/unictype/test-categ_So.c: Likewise.
29215         * tests/unictype/test-categ_Z.c: Likewise.
29216         * tests/unictype/test-categ_Zl.c: Likewise.
29217         * tests/unictype/test-categ_Zp.c: Likewise.
29218         * tests/unictype/test-categ_Zs.c: Likewise.
29219         * tests/unictype/test-ctype_alnum.c: Likewise.
29220         * tests/unictype/test-ctype_alpha.c: Likewise.
29221         * tests/unictype/test-ctype_blank.c: Likewise.
29222         * tests/unictype/test-ctype_cntrl.c: Likewise.
29223         * tests/unictype/test-ctype_digit.c: Likewise.
29224         * tests/unictype/test-ctype_graph.c: Likewise.
29225         * tests/unictype/test-ctype_lower.c: Likewise.
29226         * tests/unictype/test-ctype_print.c: Likewise.
29227         * tests/unictype/test-ctype_punct.c: Likewise.
29228         * tests/unictype/test-ctype_space.c: Likewise.
29229         * tests/unictype/test-ctype_upper.c: Likewise.
29230         * tests/unictype/test-ctype_xdigit.c: Likewise.
29231         * tests/unictype/test-decdigit.h: Likewise.
29232         * tests/unictype/test-digit.h: Likewise.
29233         * tests/unictype/test-numeric.h: Likewise.
29234         * tests/unictype/test-pr_alphabetic.c: Likewise.
29235         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
29236         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
29237         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
29238         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
29239         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
29240         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
29241         * tests/unictype/test-pr_bidi_control.c: Likewise.
29242         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
29243         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
29244         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
29245         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
29246         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
29247         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
29248         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
29249         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
29250         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
29251         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
29252         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
29253         * tests/unictype/test-pr_combining.c: Likewise.
29254         * tests/unictype/test-pr_composite.c: Likewise.
29255         * tests/unictype/test-pr_currency_symbol.c: Likewise.
29256         * tests/unictype/test-pr_dash.c: Likewise.
29257         * tests/unictype/test-pr_decimal_digit.c: Likewise.
29258         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
29259         * tests/unictype/test-pr_deprecated.c: Likewise.
29260         * tests/unictype/test-pr_diacritic.c: Likewise.
29261         * tests/unictype/test-pr_extender.c: Likewise.
29262         * tests/unictype/test-pr_format_control.c: Likewise.
29263         * tests/unictype/test-pr_grapheme_base.c: Likewise.
29264         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
29265         * tests/unictype/test-pr_grapheme_link.c: Likewise.
29266         * tests/unictype/test-pr_hex_digit.c: Likewise.
29267         * tests/unictype/test-pr_hyphen.c: Likewise.
29268         * tests/unictype/test-pr_id_continue.c: Likewise.
29269         * tests/unictype/test-pr_id_start.c: Likewise.
29270         * tests/unictype/test-pr_ideographic.c: Likewise.
29271         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
29272         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
29273         * tests/unictype/test-pr_ignorable_control.c: Likewise.
29274         * tests/unictype/test-pr_iso_control.c: Likewise.
29275         * tests/unictype/test-pr_join_control.c: Likewise.
29276         * tests/unictype/test-pr_left_of_pair.c: Likewise.
29277         * tests/unictype/test-pr_line_separator.c: Likewise.
29278         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
29279         * tests/unictype/test-pr_lowercase.c: Likewise.
29280         * tests/unictype/test-pr_math.c: Likewise.
29281         * tests/unictype/test-pr_non_break.c: Likewise.
29282         * tests/unictype/test-pr_not_a_character.c: Likewise.
29283         * tests/unictype/test-pr_numeric.c: Likewise.
29284         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
29285         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
29286         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
29287         * tests/unictype/test-pr_other_id_continue.c: Likewise.
29288         * tests/unictype/test-pr_other_id_start.c: Likewise.
29289         * tests/unictype/test-pr_other_lowercase.c: Likewise.
29290         * tests/unictype/test-pr_other_math.c: Likewise.
29291         * tests/unictype/test-pr_other_uppercase.c: Likewise.
29292         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
29293         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
29294         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
29295         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
29296         * tests/unictype/test-pr_private_use.c: Likewise.
29297         * tests/unictype/test-pr_punctuation.c: Likewise.
29298         * tests/unictype/test-pr_quotation_mark.c: Likewise.
29299         * tests/unictype/test-pr_radical.c: Likewise.
29300         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
29301         * tests/unictype/test-pr_soft_dotted.c: Likewise.
29302         * tests/unictype/test-pr_space.c: Likewise.
29303         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
29304         * tests/unictype/test-pr_titlecase.c: Likewise.
29305         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
29306         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
29307         * tests/unictype/test-pr_uppercase.c: Likewise.
29308         * tests/unictype/test-pr_variation_selector.c: Likewise.
29309         * tests/unictype/test-pr_white_space.c: Likewise.
29310         * tests/unictype/test-pr_xid_continue.c: Likewise.
29311         * tests/unictype/test-pr_xid_start.c: Likewise.
29312         * tests/unictype/test-pr_zero_width.c: Likewise.
29313         * tests/unictype/test-sy_c_whitespace.c: Likewise.
29314         * tests/unictype/test-sy_java_whitespace.c: Likewise.
29315
29316 2007-11-12  Bruno Haible  <bruno@clisp.org>
29317
29318         Unicode character classification functions.
29319         * lib/unictype.h: New file.
29320         * modules/unictype/base: New file.
29321         * modules/unictype/category-L: New file.
29322         * modules/unictype/category-Lu: New file.
29323         * modules/unictype/category-Ll: New file.
29324         * modules/unictype/category-Lt: New file.
29325         * modules/unictype/category-Lm: New file.
29326         * modules/unictype/category-Lo: New file.
29327         * modules/unictype/category-M: New file.
29328         * modules/unictype/category-Mn: New file.
29329         * modules/unictype/category-Mc: New file.
29330         * modules/unictype/category-Me: New file.
29331         * modules/unictype/category-N: New file.
29332         * modules/unictype/category-Nd: New file.
29333         * modules/unictype/category-Nl: New file.
29334         * modules/unictype/category-No: New file.
29335         * modules/unictype/category-P: New file.
29336         * modules/unictype/category-Pc: New file.
29337         * modules/unictype/category-Pd: New file.
29338         * modules/unictype/category-Ps: New file.
29339         * modules/unictype/category-Pe: New file.
29340         * modules/unictype/category-Pi: New file.
29341         * modules/unictype/category-Pf: New file.
29342         * modules/unictype/category-Po: New file.
29343         * modules/unictype/category-S: New file.
29344         * modules/unictype/category-Sm: New file.
29345         * modules/unictype/category-Sc: New file.
29346         * modules/unictype/category-Sk: New file.
29347         * modules/unictype/category-So: New file.
29348         * modules/unictype/category-Z: New file.
29349         * modules/unictype/category-Zs: New file.
29350         * modules/unictype/category-Zl: New file.
29351         * modules/unictype/category-Zp: New file.
29352         * modules/unictype/category-C: New file.
29353         * modules/unictype/category-Cc: New file.
29354         * modules/unictype/category-Cf: New file.
29355         * modules/unictype/category-Cs: New file.
29356         * modules/unictype/category-Co: New file.
29357         * modules/unictype/category-Cn: New file.
29358         * modules/unictype/category-or: New file.
29359         * modules/unictype/category-of: New file.
29360         * modules/unictype/category-test: New file.
29361         * modules/unictype/category-test-withtable: New file.
29362         * modules/unictype/category-byname: New file.
29363         * modules/unictype/category-none: New file.
29364         * modules/unictype/category-and: New file.
29365         * modules/unictype/category-and-not: New file.
29366         * modules/unictype/category-name: New file.
29367         * modules/unictype/combining-class: New file.
29368         * modules/unictype/category-all: New file.
29369         * modules/unictype/bidicategory-all: New file.
29370         * modules/unictype/bidicategory-byname: New file.
29371         * modules/unictype/bidicategory-name: New file.
29372         * modules/unictype/bidicategory-of: New file.
29373         * modules/unictype/bidicategory-test: New file.
29374         * modules/unictype/decimal-digit: New file.
29375         * modules/unictype/digit: New file.
29376         * modules/unictype/numeric: New file.
29377         * modules/unictype/mirror: New file.
29378         * modules/unictype/property-white-space: New file.
29379         * modules/unictype/property-alphabetic: New file.
29380         * modules/unictype/property-other-alphabetic: New file.
29381         * modules/unictype/property-not-a-character: New file.
29382         * modules/unictype/property-default-ignorable-code-point: New file.
29383         * modules/unictype/property-other-default-ignorable-code-point: New
29384         file.
29385         * modules/unictype/property-deprecated: New file.
29386         * modules/unictype/property-logical-order-exception: New file.
29387         * modules/unictype/property-variation-selector: New file.
29388         * modules/unictype/property-private-use: New file.
29389         * modules/unictype/property-unassigned-code-value: New file.
29390         * modules/unictype/property-uppercase: New file.
29391         * modules/unictype/property-other-uppercase: New file.
29392         * modules/unictype/property-lowercase: New file.
29393         * modules/unictype/property-other-lowercase: New file.
29394         * modules/unictype/property-titlecase: New file.
29395         * modules/unictype/property-soft-dotted: New file.
29396         * modules/unictype/property-id-start: New file.
29397         * modules/unictype/property-other-id-start: New file.
29398         * modules/unictype/property-id-continue: New file.
29399         * modules/unictype/property-other-id-continue: New file.
29400         * modules/unictype/property-xid-start: New file.
29401         * modules/unictype/property-xid-continue: New file.
29402         * modules/unictype/property-pattern-white-space: New file.
29403         * modules/unictype/property-pattern-syntax: New file.
29404         * modules/unictype/property-join-control: New file.
29405         * modules/unictype/property-grapheme-base: New file.
29406         * modules/unictype/property-grapheme-extend: New file.
29407         * modules/unictype/property-other-grapheme-extend: New file.
29408         * modules/unictype/property-grapheme-link: New file.
29409         * modules/unictype/property-bidi-control: New file.
29410         * modules/unictype/property-bidi-left-to-right: New file.
29411         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
29412         * modules/unictype/property-bidi-arabic-right-to-left: New file.
29413         * modules/unictype/property-bidi-european-digit: New file.
29414         * modules/unictype/property-bidi-eur-num-separator: New file.
29415         * modules/unictype/property-bidi-eur-num-terminator: New file.
29416         * modules/unictype/property-bidi-arabic-digit: New file.
29417         * modules/unictype/property-bidi-common-separator: New file.
29418         * modules/unictype/property-bidi-block-separator: New file.
29419         * modules/unictype/property-bidi-segment-separator: New file.
29420         * modules/unictype/property-bidi-whitespace: New file.
29421         * modules/unictype/property-bidi-non-spacing-mark: New file.
29422         * modules/unictype/property-bidi-boundary-neutral: New file.
29423         * modules/unictype/property-bidi-pdf: New file.
29424         * modules/unictype/property-bidi-embedding-or-override: New file.
29425         * modules/unictype/property-bidi-other-neutral: New file.
29426         * modules/unictype/property-hex-digit: New file.
29427         * modules/unictype/property-ascii-hex-digit: New file.
29428         * modules/unictype/property-ideographic: New file.
29429         * modules/unictype/property-unified-ideograph: New file.
29430         * modules/unictype/property-radical: New file.
29431         * modules/unictype/property-ids-binary-operator: New file.
29432         * modules/unictype/property-ids-trinary-operator: New file.
29433         * modules/unictype/property-zero-width: New file.
29434         * modules/unictype/property-space: New file.
29435         * modules/unictype/property-non-break: New file.
29436         * modules/unictype/property-iso-control: New file.
29437         * modules/unictype/property-format-control: New file.
29438         * modules/unictype/property-dash: New file.
29439         * modules/unictype/property-hyphen: New file.
29440         * modules/unictype/property-punctuation: New file.
29441         * modules/unictype/property-line-separator: New file.
29442         * modules/unictype/property-paragraph-separator: New file.
29443         * modules/unictype/property-quotation-mark: New file.
29444         * modules/unictype/property-sentence-terminal: New file.
29445         * modules/unictype/property-terminal-punctuation: New file.
29446         * modules/unictype/property-currency-symbol: New file.
29447         * modules/unictype/property-math: New file.
29448         * modules/unictype/property-other-math: New file.
29449         * modules/unictype/property-paired-punctuation: New file.
29450         * modules/unictype/property-left-of-pair: New file.
29451         * modules/unictype/property-combining: New file.
29452         * modules/unictype/property-composite: New file.
29453         * modules/unictype/property-decimal-digit: New file.
29454         * modules/unictype/property-numeric: New file.
29455         * modules/unictype/property-diacritic: New file.
29456         * modules/unictype/property-extender: New file.
29457         * modules/unictype/property-ignorable-control: New file.
29458         * modules/unictype/property-test: New file.
29459         * modules/unictype/property-byname: New file.
29460         * modules/unictype/property-all: New file.
29461         * modules/unictype/scripts: New file.
29462         * modules/unictype/scripts-all: New file.
29463         * modules/unictype/block-of: New file.
29464         * modules/unictype/block-test: New file.
29465         * modules/unictype/block-list: New file.
29466         * modules/unictype/block-all: New file.
29467         * modules/unictype/syntax-c-whitespace: New file.
29468         * modules/unictype/syntax-java-whitespace: New file.
29469         * modules/unictype/syntax-c-ident: New file.
29470         * modules/unictype/syntax-java-ident: New file.
29471         * modules/unictype/ctype-alnum: New file.
29472         * modules/unictype/ctype-alpha: New file.
29473         * modules/unictype/ctype-cntrl: New file.
29474         * modules/unictype/ctype-digit: New file.
29475         * modules/unictype/ctype-graph: New file.
29476         * modules/unictype/ctype-lower: New file.
29477         * modules/unictype/ctype-print: New file.
29478         * modules/unictype/ctype-punct: New file.
29479         * modules/unictype/ctype-space: New file.
29480         * modules/unictype/ctype-upper: New file.
29481         * modules/unictype/ctype-xdigit: New file.
29482         * modules/unictype/ctype-blank: New file.
29483         * lib/unictype/bidi_byname.c: New file.
29484         * lib/unictype/bidi_name.c: New file.
29485         * lib/unictype/bidi_of.c: New file.
29486         * lib/unictype/bidi_test.c: New file.
29487         * lib/unictype/bitmap.h: New file.
29488         * lib/unictype/block_test.c: New file.
29489         * lib/unictype/blocks.c: New file.
29490         * lib/unictype/categ_C.c: New file.
29491         * lib/unictype/categ_Cc.c: New file.
29492         * lib/unictype/categ_Cf.c: New file.
29493         * lib/unictype/categ_Cn.c: New file.
29494         * lib/unictype/categ_Co.c: New file.
29495         * lib/unictype/categ_Cs.c: New file.
29496         * lib/unictype/categ_L.c: New file.
29497         * lib/unictype/categ_Ll.c: New file.
29498         * lib/unictype/categ_Lm.c: New file.
29499         * lib/unictype/categ_Lo.c: New file.
29500         * lib/unictype/categ_Lt.c: New file.
29501         * lib/unictype/categ_Lu.c: New file.
29502         * lib/unictype/categ_M.c: New file.
29503         * lib/unictype/categ_Mc.c: New file.
29504         * lib/unictype/categ_Me.c: New file.
29505         * lib/unictype/categ_Mn.c: New file.
29506         * lib/unictype/categ_N.c: New file.
29507         * lib/unictype/categ_Nd.c: New file.
29508         * lib/unictype/categ_Nl.c: New file.
29509         * lib/unictype/categ_No.c: New file.
29510         * lib/unictype/categ_P.c: New file.
29511         * lib/unictype/categ_Pc.c: New file.
29512         * lib/unictype/categ_Pd.c: New file.
29513         * lib/unictype/categ_Pe.c: New file.
29514         * lib/unictype/categ_Pf.c: New file.
29515         * lib/unictype/categ_Pi.c: New file.
29516         * lib/unictype/categ_Po.c: New file.
29517         * lib/unictype/categ_Ps.c: New file.
29518         * lib/unictype/categ_S.c: New file.
29519         * lib/unictype/categ_Sc.c: New file.
29520         * lib/unictype/categ_Sk.c: New file.
29521         * lib/unictype/categ_Sm.c: New file.
29522         * lib/unictype/categ_So.c: New file.
29523         * lib/unictype/categ_Z.c: New file.
29524         * lib/unictype/categ_Zl.c: New file.
29525         * lib/unictype/categ_Zp.c: New file.
29526         * lib/unictype/categ_Zs.c: New file.
29527         * lib/unictype/categ_and.c: New file.
29528         * lib/unictype/categ_and_not.c: New file.
29529         * lib/unictype/categ_byname.c: New file.
29530         * lib/unictype/categ_name.c: New file.
29531         * lib/unictype/categ_none.c: New file.
29532         * lib/unictype/categ_of.c: New file.
29533         * lib/unictype/categ_or.c: New file.
29534         * lib/unictype/categ_test.c: New file.
29535         * lib/unictype/combining.c: New file.
29536         * lib/unictype/ctype_alnum.c: New file.
29537         * lib/unictype/ctype_alpha.c: New file.
29538         * lib/unictype/ctype_blank.c: New file.
29539         * lib/unictype/ctype_cntrl.c: New file.
29540         * lib/unictype/ctype_digit.c: New file.
29541         * lib/unictype/ctype_graph.c: New file.
29542         * lib/unictype/ctype_lower.c: New file.
29543         * lib/unictype/ctype_print.c: New file.
29544         * lib/unictype/ctype_punct.c: New file.
29545         * lib/unictype/ctype_space.c: New file.
29546         * lib/unictype/ctype_upper.c: New file.
29547         * lib/unictype/ctype_xdigit.c: New file.
29548         * lib/unictype/decdigit.c: New file.
29549         * lib/unictype/digit.c: New file.
29550         * lib/unictype/identsyntaxmap.h: New file.
29551         * lib/unictype/mirror.c: New file.
29552         * lib/unictype/numeric.c: New file.
29553         * lib/unictype/pr_alphabetic.c: New file.
29554         * lib/unictype/pr_ascii_hex_digit.c: New file.
29555         * lib/unictype/pr_bidi_arabic_digit.c: New file.
29556         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
29557         * lib/unictype/pr_bidi_block_separator.c: New file.
29558         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
29559         * lib/unictype/pr_bidi_common_separator.c: New file.
29560         * lib/unictype/pr_bidi_control.c: New file.
29561         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
29562         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
29563         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
29564         * lib/unictype/pr_bidi_european_digit.c: New file.
29565         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
29566         * lib/unictype/pr_bidi_left_to_right.c: New file.
29567         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
29568         * lib/unictype/pr_bidi_other_neutral.c: New file.
29569         * lib/unictype/pr_bidi_pdf.c: New file.
29570         * lib/unictype/pr_bidi_segment_separator.c: New file.
29571         * lib/unictype/pr_bidi_whitespace.c: New file.
29572         * lib/unictype/pr_byname.c: New file.
29573         * lib/unictype/pr_byname.gperf: New file.
29574         * lib/unictype/pr_combining.c: New file.
29575         * lib/unictype/pr_composite.c: New file.
29576         * lib/unictype/pr_currency_symbol.c: New file.
29577         * lib/unictype/pr_dash.c: New file.
29578         * lib/unictype/pr_decimal_digit.c: New file.
29579         * lib/unictype/pr_default_ignorable_code_point.c: New file.
29580         * lib/unictype/pr_deprecated.c: New file.
29581         * lib/unictype/pr_diacritic.c: New file.
29582         * lib/unictype/pr_extender.c: New file.
29583         * lib/unictype/pr_format_control.c: New file.
29584         * lib/unictype/pr_grapheme_base.c: New file.
29585         * lib/unictype/pr_grapheme_extend.c: New file.
29586         * lib/unictype/pr_grapheme_link.c: New file.
29587         * lib/unictype/pr_hex_digit.c: New file.
29588         * lib/unictype/pr_hyphen.c: New file.
29589         * lib/unictype/pr_id_continue.c: New file.
29590         * lib/unictype/pr_id_start.c: New file.
29591         * lib/unictype/pr_ideographic.c: New file.
29592         * lib/unictype/pr_ids_binary_operator.c: New file.
29593         * lib/unictype/pr_ids_trinary_operator.c: New file.
29594         * lib/unictype/pr_ignorable_control.c: New file.
29595         * lib/unictype/pr_iso_control.c: New file.
29596         * lib/unictype/pr_join_control.c: New file.
29597         * lib/unictype/pr_left_of_pair.c: New file.
29598         * lib/unictype/pr_line_separator.c: New file.
29599         * lib/unictype/pr_logical_order_exception.c: New file.
29600         * lib/unictype/pr_lowercase.c: New file.
29601         * lib/unictype/pr_math.c: New file.
29602         * lib/unictype/pr_non_break.c: New file.
29603         * lib/unictype/pr_not_a_character.c: New file.
29604         * lib/unictype/pr_numeric.c: New file.
29605         * lib/unictype/pr_other_alphabetic.c: New file.
29606         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
29607         * lib/unictype/pr_other_grapheme_extend.c: New file.
29608         * lib/unictype/pr_other_id_continue.c: New file.
29609         * lib/unictype/pr_other_id_start.c: New file.
29610         * lib/unictype/pr_other_lowercase.c: New file.
29611         * lib/unictype/pr_other_math.c: New file.
29612         * lib/unictype/pr_other_uppercase.c: New file.
29613         * lib/unictype/pr_paired_punctuation.c: New file.
29614         * lib/unictype/pr_paragraph_separator.c: New file.
29615         * lib/unictype/pr_pattern_syntax.c: New file.
29616         * lib/unictype/pr_pattern_white_space.c: New file.
29617         * lib/unictype/pr_private_use.c: New file.
29618         * lib/unictype/pr_punctuation.c: New file.
29619         * lib/unictype/pr_quotation_mark.c: New file.
29620         * lib/unictype/pr_radical.c: New file.
29621         * lib/unictype/pr_sentence_terminal.c: New file.
29622         * lib/unictype/pr_soft_dotted.c: New file.
29623         * lib/unictype/pr_space.c: New file.
29624         * lib/unictype/pr_terminal_punctuation.c: New file.
29625         * lib/unictype/pr_test.c: New file.
29626         * lib/unictype/pr_titlecase.c: New file.
29627         * lib/unictype/pr_unassigned_code_value.c: New file.
29628         * lib/unictype/pr_unified_ideograph.c: New file.
29629         * lib/unictype/pr_uppercase.c: New file.
29630         * lib/unictype/pr_variation_selector.c: New file.
29631         * lib/unictype/pr_white_space.c: New file.
29632         * lib/unictype/pr_xid_continue.c: New file.
29633         * lib/unictype/pr_xid_start.c: New file.
29634         * lib/unictype/pr_zero_width.c: New file.
29635         * lib/unictype/scripts.c: New file.
29636         * lib/unictype/sy_c_ident.c: New file.
29637         * lib/unictype/sy_c_whitespace.c: New file.
29638         * lib/unictype/sy_java_ident.c: New file.
29639         * lib/unictype/sy_java_whitespace.c: New file.
29640
29641         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
29642         Unicode 5.0.0.
29643         * lib/unictype/blocks.h: Likewise.
29644         * lib/unictype/categ_C.h: Likewise.
29645         * lib/unictype/categ_Cc.h: Likewise.
29646         * lib/unictype/categ_Cf.h: Likewise.
29647         * lib/unictype/categ_Cn.h: Likewise.
29648         * lib/unictype/categ_Co.h: Likewise.
29649         * lib/unictype/categ_Cs.h: Likewise.
29650         * lib/unictype/categ_L.h: Likewise.
29651         * lib/unictype/categ_Ll.h: Likewise.
29652         * lib/unictype/categ_Lm.h: Likewise.
29653         * lib/unictype/categ_Lo.h: Likewise.
29654         * lib/unictype/categ_Lt.h: Likewise.
29655         * lib/unictype/categ_Lu.h: Likewise.
29656         * lib/unictype/categ_M.h: Likewise.
29657         * lib/unictype/categ_Mc.h: Likewise.
29658         * lib/unictype/categ_Me.h: Likewise.
29659         * lib/unictype/categ_Mn.h: Likewise.
29660         * lib/unictype/categ_N.h: Likewise.
29661         * lib/unictype/categ_Nd.h: Likewise.
29662         * lib/unictype/categ_Nl.h: Likewise.
29663         * lib/unictype/categ_No.h: Likewise.
29664         * lib/unictype/categ_P.h: Likewise.
29665         * lib/unictype/categ_Pc.h: Likewise.
29666         * lib/unictype/categ_Pd.h: Likewise.
29667         * lib/unictype/categ_Pe.h: Likewise.
29668         * lib/unictype/categ_Pf.h: Likewise.
29669         * lib/unictype/categ_Pi.h: Likewise.
29670         * lib/unictype/categ_Po.h: Likewise.
29671         * lib/unictype/categ_Ps.h: Likewise.
29672         * lib/unictype/categ_S.h: Likewise.
29673         * lib/unictype/categ_Sc.h: Likewise.
29674         * lib/unictype/categ_Sk.h: Likewise.
29675         * lib/unictype/categ_Sm.h: Likewise.
29676         * lib/unictype/categ_So.h: Likewise.
29677         * lib/unictype/categ_Z.h: Likewise.
29678         * lib/unictype/categ_Zl.h: Likewise.
29679         * lib/unictype/categ_Zp.h: Likewise.
29680         * lib/unictype/categ_Zs.h: Likewise.
29681         * lib/unictype/categ_of.h: Likewise.
29682         * lib/unictype/combining.h: Likewise.
29683         * lib/unictype/ctype_alnum.h: Likewise.
29684         * lib/unictype/ctype_alpha.h: Likewise.
29685         * lib/unictype/ctype_blank.h: Likewise.
29686         * lib/unictype/ctype_cntrl.h: Likewise.
29687         * lib/unictype/ctype_digit.h: Likewise.
29688         * lib/unictype/ctype_graph.h: Likewise.
29689         * lib/unictype/ctype_lower.h: Likewise.
29690         * lib/unictype/ctype_print.h: Likewise.
29691         * lib/unictype/ctype_punct.h: Likewise.
29692         * lib/unictype/ctype_space.h: Likewise.
29693         * lib/unictype/ctype_upper.h: Likewise.
29694         * lib/unictype/ctype_xdigit.h: Likewise.
29695         * lib/unictype/decdigit.h: Likewise.
29696         * lib/unictype/digit.h: Likewise.
29697         * lib/unictype/mirror.h: Likewise.
29698         * lib/unictype/numeric.h: Likewise.
29699         * lib/unictype/pr_alphabetic.h: Likewise.
29700         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
29701         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
29702         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
29703         * lib/unictype/pr_bidi_block_separator.h: Likewise.
29704         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
29705         * lib/unictype/pr_bidi_common_separator.h: Likewise.
29706         * lib/unictype/pr_bidi_control.h: Likewise.
29707         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
29708         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
29709         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
29710         * lib/unictype/pr_bidi_european_digit.h: Likewise.
29711         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
29712         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
29713         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
29714         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
29715         * lib/unictype/pr_bidi_pdf.h: Likewise.
29716         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
29717         * lib/unictype/pr_bidi_whitespace.h: Likewise.
29718         * lib/unictype/pr_combining.h: Likewise.
29719         * lib/unictype/pr_composite.h: Likewise.
29720         * lib/unictype/pr_currency_symbol.h: Likewise.
29721         * lib/unictype/pr_dash.h: Likewise.
29722         * lib/unictype/pr_decimal_digit.h: Likewise.
29723         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
29724         * lib/unictype/pr_deprecated.h: Likewise.
29725         * lib/unictype/pr_diacritic.h: Likewise.
29726         * lib/unictype/pr_extender.h: Likewise.
29727         * lib/unictype/pr_format_control.h: Likewise.
29728         * lib/unictype/pr_grapheme_base.h: Likewise.
29729         * lib/unictype/pr_grapheme_extend.h: Likewise.
29730         * lib/unictype/pr_grapheme_link.h: Likewise.
29731         * lib/unictype/pr_hex_digit.h: Likewise.
29732         * lib/unictype/pr_hyphen.h: Likewise.
29733         * lib/unictype/pr_id_continue.h: Likewise.
29734         * lib/unictype/pr_id_start.h: Likewise.
29735         * lib/unictype/pr_ideographic.h: Likewise.
29736         * lib/unictype/pr_ids_binary_operator.h: Likewise.
29737         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
29738         * lib/unictype/pr_ignorable_control.h: Likewise.
29739         * lib/unictype/pr_iso_control.h: Likewise.
29740         * lib/unictype/pr_join_control.h: Likewise.
29741         * lib/unictype/pr_left_of_pair.h: Likewise.
29742         * lib/unictype/pr_line_separator.h: Likewise.
29743         * lib/unictype/pr_logical_order_exception.h: Likewise.
29744         * lib/unictype/pr_lowercase.h: Likewise.
29745         * lib/unictype/pr_math.h: Likewise.
29746         * lib/unictype/pr_non_break.h: Likewise.
29747         * lib/unictype/pr_not_a_character.h: Likewise.
29748         * lib/unictype/pr_numeric.h: Likewise.
29749         * lib/unictype/pr_other_alphabetic.h: Likewise.
29750         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
29751         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
29752         * lib/unictype/pr_other_id_continue.h: Likewise.
29753         * lib/unictype/pr_other_id_start.h: Likewise.
29754         * lib/unictype/pr_other_lowercase.h: Likewise.
29755         * lib/unictype/pr_other_math.h: Likewise.
29756         * lib/unictype/pr_other_uppercase.h: Likewise.
29757         * lib/unictype/pr_paired_punctuation.h: Likewise.
29758         * lib/unictype/pr_paragraph_separator.h: Likewise.
29759         * lib/unictype/pr_pattern_syntax.h: Likewise.
29760         * lib/unictype/pr_pattern_white_space.h: Likewise.
29761         * lib/unictype/pr_private_use.h: Likewise.
29762         * lib/unictype/pr_punctuation.h: Likewise.
29763         * lib/unictype/pr_quotation_mark.h: Likewise.
29764         * lib/unictype/pr_radical.h: Likewise.
29765         * lib/unictype/pr_sentence_terminal.h: Likewise.
29766         * lib/unictype/pr_soft_dotted.h: Likewise.
29767         * lib/unictype/pr_space.h: Likewise.
29768         * lib/unictype/pr_terminal_punctuation.h: Likewise.
29769         * lib/unictype/pr_titlecase.h: Likewise.
29770         * lib/unictype/pr_unassigned_code_value.h: Likewise.
29771         * lib/unictype/pr_unified_ideograph.h: Likewise.
29772         * lib/unictype/pr_uppercase.h: Likewise.
29773         * lib/unictype/pr_variation_selector.h: Likewise.
29774         * lib/unictype/pr_white_space.h: Likewise.
29775         * lib/unictype/pr_xid_continue.h: Likewise.
29776         * lib/unictype/pr_xid_start.h: Likewise.
29777         * lib/unictype/pr_zero_width.h: Likewise.
29778         * lib/unictype/scripts.h: Likewise.
29779         * lib/unictype/scripts_byname.gperf: Likewise.
29780         * lib/unictype/sy_c_ident.h: Likewise.
29781         * lib/unictype/sy_c_whitespace.h: Likewise.
29782         * lib/unictype/sy_java_ident.h: Likewise.
29783         * lib/unictype/sy_java_whitespace.h: Likewise.
29784
29785         * lib/unictype/Makefile: New file.
29786         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
29787         glibc.
29788         * lib/unictype/3level.h: New file, copied from glibc.
29789         * lib/unictype/3levelbit.h: New file.
29790
29791 2007-11-11  Bruno Haible  <bruno@clisp.org>
29792
29793         * modules/gperf: New file.
29794         * modules/iconv_open (Depends-on): Add it.
29795         (Makefile.am): Remove the GPERF definition.
29796
29797 2007-11-11  Bruno Haible  <bruno@clisp.org>
29798
29799         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
29800         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
29801
29802 2007-11-11  Bruno Haible  <bruno@clisp.org>
29803
29804         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
29805         (usage): Remove function.
29806
29807 2007-11-11  Bruno Haible  <bruno@clisp.org>
29808
29809         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
29810         gl_FUNC_CEILF_LIBS.
29811         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
29812         gl_FUNC_CEIL_LIBS.
29813         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
29814         gl_FUNC_CEILL_LIBS.
29815         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
29816         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
29817         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
29818
29819 2007-11-11  Bruno Haible  <bruno@clisp.org>
29820
29821         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
29822         roundf were declared but do not exist on functions.
29823         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
29824         roundl were declared but do not exist on functions.
29825         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
29826         HAVE_FLOORL_AND_CEILL, respectively.
29827         Needed for Sun C on Solaris 10.
29828
29829 2007-11-11  Bruno Haible  <bruno@clisp.org>
29830
29831         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
29832         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
29833         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
29834         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
29835         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
29836         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
29837         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
29838         HAVE_DECL_ROUNDF.
29839         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
29840         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
29841         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
29842         of HAVE_DECL_ROUND*.
29843         * modules/math (Makefile.am): Update.
29844
29845 2007-11-10  Bruno Haible  <bruno@clisp.org>
29846
29847         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
29848         ptrdiff_t as m4/intl.m4.
29849
29850 2007-11-10  Jim Meyering  <meyering@redhat.com>
29851
29852         Avoid link failure for the argmatch test.
29853         * tests/test-argmatch.c (usage): Define function to avoid a link
29854         failure: argmatch_die requires a usage function.
29855
29856 2007-11-09  Bruno Haible  <bruno@clisp.org>
29857
29858         * doc/functions/snprintf.texi: Mention BeOS deficiency.
29859         * doc/functions/vsnprintf.texi: Likewise.
29860         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
29861         with a size argument < 2.
29862
29863 2007-11-09  Bruno Haible  <bruno@clisp.org>
29864
29865         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
29866         buffer. Fixes an inefficiency introduced on 2007-11-03.
29867
29868 2007-11-09  Bruno Haible  <bruno@clisp.org>
29869
29870         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
29871         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
29872
29873 2007-11-08  Jim Meyering  <meyering@redhat.com>
29874
29875         Change cache variable name prefix "jm_" to "gl_" everywhere.
29876         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
29877         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
29878         * m4/uptime.m4: s/gl_/jm_/
29879
29880 2007-11-07  Bruno Haible  <bruno@clisp.org>
29881
29882         Update to GNU gettext 0.17.
29883         * m4/intl.m4: Update to GNU gettext 0.17.
29884         * m4/po.m4: Likewise.
29885         * modules/gettext (Files): Remove m4/ulonglong.m4.
29886         (configure.ac): Require gettext infrastructure from version 0.17.
29887
29888 2007-11-06  Bruno Haible  <bruno@clisp.org>
29889
29890         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
29891         symbolic values are not defined in a public header.
29892         * lib/freadable.c (freadable) [QNX]: Likewise.
29893         * lib/freadahead.c (freadahead) [QNX]: Likewise.
29894         * lib/freading.c (freading) [QNX]: Likewise.
29895         * lib/fseterr.c (fseterr) [QNX]: Likewise.
29896         * lib/fwritable.c (fwritable) [QNX]: Likewise.
29897         * lib/fwriting.c (fwriting) [QNX]: Likewise.
29898         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
29899         Reported by Alain Magloire.
29900
29901         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
29902
29903 2007-11-05  Bruno Haible  <bruno@clisp.org>
29904
29905         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
29906         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
29907         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
29908         Reported by Eric Blake.
29909
29910 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29911             Bruno Haible  <bruno@clisp.org>
29912
29913         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
29914         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
29915         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
29916         (malloc): Undefine also before including <stdlib.h>.
29917         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
29918         Needed on OSF/1 4.0.
29919
29920 2007-11-05  Jim Meyering  <meyering@redhat.com>
29921
29922         git-version-gen: sync from coreutils.
29923         * build-aux/git-version-gen: Add comments.
29924         Change the first '-' to '.' in the snapshot version string,
29925         e.g., 6.9-377-08144 -> 6.9.377-08144
29926         Remove first parameter.
29927         Don't declare a version "-dirty" merely because a time
29928         stamp has changed.
29929
29930 2007-11-04  Bruno Haible  <bruno@clisp.org>
29931
29932         * lib/lock.h: Protect all macro definitions containing an 'if'
29933         statement through a "do { ... } while (0)".
29934         * lib/tls.h: Likewise.
29935
29936 2007-11-04  Bruno Haible  <bruno@clisp.org>
29937
29938         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
29939
29940 2007-11-04  Bruno Haible  <bruno@clisp.org>
29941
29942         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
29943         * modules/fprintf-posix (Depends-on): Add nocrash.
29944         * modules/snprintf-posix (Depends-on): Likewise.
29945         * modules/sprintf-posix (Depends-on): Likewise.
29946         * modules/vasnprintf-posix (Depends-on): Likewise.
29947         * modules/vasprintf-posix (Depends-on): Likewise.
29948         * modules/vfprintf-posix (Depends-on): Likewise.
29949         * modules/vsnprintf-posix (Depends-on): Likewise.
29950         * modules/vsprintf-posix (Depends-on): Likewise.
29951         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
29952         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
29953         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
29954         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
29955         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
29956         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
29957         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
29958
29959 2007-11-04  Bruno Haible  <bruno@clisp.org>
29960
29961         * modules/nocrash: New file.
29962         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
29963         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
29964
29965 2007-11-04  Bruno Haible  <bruno@clisp.org>
29966
29967         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
29968         precision handling.
29969         * tests/test-vasprintf-posix.c (test_function): Likewise.
29970         * tests/test-snprintf-posix.h (test_function): Likewise.
29971         * tests/test-sprintf-posix.h (test_function): Likewise.
29972
29973         Fix *printf behaviour for large precisions on mingw and BeOS.
29974         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
29975         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
29976         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
29977         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29978         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29979         gl_PRINTF_PRECISION and test its result. Invoke
29980         gl_PREREQ_VASNPRINTF_PRECISION.
29981         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29982         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29983         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29984         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29985         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29986         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29987         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29988         * doc/functions/fprintf.texi: Update.
29989         * doc/functions/printf.texi: Update.
29990         * doc/functions/snprintf.texi: Update.
29991         * doc/functions/sprintf.texi: Update.
29992         * doc/functions/vfprintf.texi: Update.
29993         * doc/functions/vprintf.texi: Update.
29994         * doc/functions/vsnprintf.texi: Update.
29995         * doc/functions/vsprintf.texi: Update.
29996
29997 2007-11-04  Bruno Haible  <bruno@clisp.org>
29998
29999         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
30000
30001 2007-11-04  Bruno Haible  <bruno@clisp.org>
30002
30003         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
30004         Reported by Sylvain Beucler <beuc@gnu.org>.
30005
30006 2007-11-03  Bruno Haible  <bruno@clisp.org>
30007
30008         * tests/test-fprintf-posix2.sh: New file.
30009         * tests/test-fprintf-posix2.c: New file.
30010         * modules/fprintf-posix-tests (Files): Add them.
30011         (TESTS): Add test-fprintf-posix2.sh.
30012         (configure.ac): Check for getrlimit and setrlimit.
30013         (check_PROGRAMS): Add test-fprintf-posix2.
30014
30015         * tests/test-printf-posix2.sh: New file.
30016         * tests/test-printf-posix2.c: New file.
30017         * modules/printf-posix-tests (Files): Add them.
30018         (TESTS): Add test-printf-posix2.sh.
30019         (configure.ac): Check for getrlimit and setrlimit.
30020         (check_PROGRAMS): Add test-printf-posix2.
30021
30022         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
30023         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
30024         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
30025         (decode_double): New function, copied from decode_long_double.
30026         (scale10_round_decimal_decoded): New function, extracted from
30027         scale10_round_decimal_long_double.
30028         (scale10_round_decimal_long_double): Use it.
30029         (scale10_round_decimal_double): New function.
30030         (floorlog10): New function.
30031         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
30032         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
30033         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
30034         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30035         gl_PRINTF_ENOMEM and test its result. Invoke
30036         gl_PREREQ_VASNPRINTF_ENOMEM.
30037         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30038         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30039         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30040         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30041         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30042         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30043         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30044         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
30045         * modules/snprintf-posix (Depends-on): Likewise.
30046         * modules/sprintf-posix (Depends-on): Likewise.
30047         * modules/vasnprintf-posix (Depends-on): Likewise.
30048         * modules/vasprintf-posix (Depends-on): Likewise.
30049         * modules/vfprintf-posix (Depends-on): Likewise.
30050         * modules/vsnprintf-posix (Depends-on): Likewise.
30051         * modules/vsprintf-posix (Depends-on): Likewise.
30052         * doc/functions/fprintf.texi: Update.
30053         * doc/functions/printf.texi: Update.
30054         * doc/functions/snprintf.texi: Update.
30055         * doc/functions/sprintf.texi: Update.
30056         * doc/functions/vfprintf.texi: Update.
30057         * doc/functions/vprintf.texi: Update.
30058         * doc/functions/vsnprintf.texi: Update.
30059         * doc/functions/vsprintf.texi: Update.
30060
30061 2007-11-03  Bruno Haible  <bruno@clisp.org>
30062
30063         * modules/frexp-nolibm-tests: New file.
30064
30065         * modules/frexp-nolibm: New file.
30066         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
30067
30068 2007-11-03  Bruno Haible  <bruno@clisp.org>
30069
30070         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
30071         value is C99 compliant.
30072         Needed for OSF/1 5.1.
30073
30074 2007-11-03  Bruno Haible  <bruno@clisp.org>
30075
30076         Fix out-of-memory handling of vasnprintf.
30077         * lib/printf-parse.c: Include <errno.h>.
30078         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
30079         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
30080         is already set.
30081
30082 2007-11-02  Eric Blake  <ebb9@byu.net>
30083
30084         Fix tests on cygwin.
30085         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
30086
30087 2007-11-01  Bruno Haible  <bruno@clisp.org>
30088
30089         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
30090         warning.
30091         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
30092         needed for POSIX compatibility.
30093
30094 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
30095
30096         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
30097         for compatibility with GNU.
30098
30099 2007-11-01  Bruno Haible  <bruno@clisp.org>
30100
30101         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
30102         (putenv): Renamed from rpl_putenv. Change argument type from
30103         'const char *' to 'char *'.
30104         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
30105         of defining putenv in config.h, just set REPLACE_PUTENV.
30106         * modules/putenv (Depends-on): Add stdlib.
30107         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30108         (Include): Use <stdlib.h>.
30109         * lib/stdlib.in.h (putenv): New declaration.
30110         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
30111         REPLACE_PUTENV.
30112         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
30113         REPLACE_PUTENV.
30114         Needed for MacOS X 10.5.0.
30115         Reported by Peter O'Gorman <peter@pogma.com>.
30116
30117 2007-11-01  Jim Meyering  <meyering@redhat.com>
30118
30119         Treat an empty date string exactly like "0".
30120         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
30121         if the remaining date string (to be parsed) is empty, use "0".
30122         Reported by Mischa Molhoek and discussed in this thread:
30123         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
30124
30125 2007-10-31  Bruno Haible  <bruno@clisp.org>
30126
30127         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
30128         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
30129         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
30130         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
30131         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
30132         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
30133
30134 2007-10-31  Bruno Haible  <bruno@clisp.org>
30135
30136         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
30137         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
30138         (AC_TYPE_LONG_LONG_INT): Use it.
30139         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
30140         it as well.
30141         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
30142         to m4/longlong.m4.
30143         * modules/stdint (Files): Remove m4/ulonglong.m4.
30144         * modules/strtoull (Files): Use m4/longlong.m4 instead of
30145         m4/ulonglong.m4.
30146         * modules/strtoumax (Files): Likewise.
30147
30148 2007-10-30  Bruno Haible  <bruno@clisp.org>
30149
30150         * modules/xvasprintf-posix: New file.
30151         Suggested by Eric Blake.
30152
30153 2007-10-30  Bruno Haible  <bruno@clisp.org>
30154
30155         * modules/xprintf-posix-tests: New file.
30156         * tests/test-xprintf-posix.sh: New file.
30157         * tests/test-xprintf-posix.c: New file.
30158         * tests/test-xfprintf-posix.c: New file.
30159
30160         * modules/xprintf-posix: New file.
30161
30162 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30163
30164         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
30165         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
30166         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
30167
30168 2007-10-29  Bruno Haible  <bruno@clisp.org>
30169
30170         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
30171         contain the special marker '_cv_'.
30172         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
30173         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
30174         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
30175         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
30176         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
30177         Reported by Ralf Wildenhues.
30178
30179 2007-10-29  Bruno Haible  <bruno@clisp.org>
30180
30181         * gnulib-tool (func_import): When --lgpl is not specified, set
30182         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
30183         GPLv3.
30184         Reported by Simon Josefsson.
30185
30186 2007-10-28  Bruno Haible  <bruno@clisp.org>
30187
30188         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
30189         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
30190         HAVE_DECL_ISFINITE.
30191         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30192         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
30193         HAVE_DECL_ISFINITE.
30194
30195 2007-10-28  Bruno Haible  <bruno@clisp.org>
30196
30197         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
30198         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
30199
30200 2007-10-28  Bruno Haible  <bruno@clisp.org>
30201
30202         Fix link errors with Sun C 5.0 on Solaris 10.
30203         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
30204         function is declared but not present in the compiler's libm.
30205         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
30206         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
30207         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
30208         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
30209         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
30210         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
30211         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
30212         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30213         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
30214         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
30215         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
30216         HAVE_DECL_FLOORL.
30217
30218 2007-10-28  Bruno Haible  <bruno@clisp.org>
30219
30220         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
30221         gl_FUNC_FLOORL. Cache the result.
30222         (gl_FUNC_FLOORL): Use it.
30223         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
30224         gl_FUNC_CEILL. Cache the result.
30225         (gl_FUNC_CEILL): Use it.
30226
30227         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
30228         gl_FUNC_FLOOR. Cache the result.
30229         (gl_FUNC_FLOOR): Use it.
30230         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
30231         gl_FUNC_CEIL. Cache the result.
30232         (gl_FUNC_CEIL): Use it.
30233
30234         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
30235         gl_FUNC_FLOORF. Cache the result.
30236         (gl_FUNC_FLOORF): Use it.
30237         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
30238         gl_FUNC_CEILF. Cache the result.
30239         (gl_FUNC_CEILF): Use it.
30240
30241 2007-10-28  Bruno Haible  <bruno@clisp.org>
30242
30243         * gnulib-tool: Allow specifying the LGPL version number through
30244         --lgpl=2 or --lgpl=3.
30245         (func_usage): Document --lgpl with argument.
30246         Handle --lgpl=... arguments.
30247         (func_import): Recognize also gl_LGPL calls with an argument. When
30248         --lgpl=2 is used and the module's license is just LGPL, report an
30249         error. Set sed_transform_lib_file according to the lgpl variable. In
30250         the generated files, use --lgpl or gl_LGPL invocations with argument,
30251         if necessary.
30252         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
30253         an LGPv2+ license.
30254         * doc/gnulib-tool.texi (Modified imports): Update explanation of
30255         gl_LGPL macro.
30256
30257 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30258             Bruno Haible  <bruno@clisp.org>
30259
30260         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
30261         (u16_uctomb_aux): Likewise.
30262         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
30263         !HAVE_INLINE.
30264         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
30265
30266 2007-10-28  Bruno Haible  <bruno@clisp.org>
30267
30268         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
30269         Invoke AM_GETTEXT_OPTION if it exists.
30270         * modules/vasprintf: Likewise.
30271         * modules/verror: Likewise.
30272         * modules/xprintf: Likewise.
30273         * modules/xvasprintf: Likewise.
30274
30275 2007-10-27  Ben Pfaff  <blp@gnu.org>
30276
30277         * lib/math.in.h: Define isfinite macro and prototypes for
30278         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
30279         implementations.
30280         * m4/math_h.m4: New substitutions for isfinite module.
30281         * lib/isfinite.c: New file.
30282         * m4/isfinite.m4: New file.
30283         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
30284         * modules/isfinite: New file.
30285         * modules/isfinite-tests: New file.
30286         * tests/tests-isfinite.c: New file.
30287         * doc/functions/isfinite.texi: Mention isfinite module.
30288         * MODULES.html.sh: Mention new module.
30289
30290 2007-10-27  Ben Pfaff  <blp@gnu.org>
30291
30292         Ralf Wildenhues reported that Tru64 4.0D declares the round
30293         functions but does not have definitions.
30294         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
30295         cannot be found in any library, set the output variable to
30296         "missing" instead of "".
30297         * m4/round.m4: Also use our substitute if we cannot find round in
30298         any library, even if it is declared.
30299         * m4/roundf.m4: Likewise for roundf.
30300         * m4/roundl.m4: Likewise for roundl.
30301         * lib/math.in.h: Undefine roundf, round, roundl before defining
30302         their replacements, to allow for hypothetical systems where these
30303         may be defined as macros but not available in libraries.
30304
30305 2007-10-27  Bruno Haible  <bruno@clisp.org>
30306
30307         * doc/gnulib.texi: Invoke @firstparagraphindent.
30308         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
30309         changes in gnulib.
30310         (Source changes): New section.
30311
30312 2007-10-26  Bruno Haible  <bruno@clisp.org>
30313
30314         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
30315         borrowed from autoconf.
30316
30317 2007-10-26  Bruno Haible  <bruno@clisp.org>
30318
30319         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
30320         strerror returned the empty string. Needed on HP-UX 11.00.
30321
30322 2007-10-24  Micah Cowan  <micah@cowan.name>
30323
30324         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
30325         * build-aux/bootstrap: Remove support for now-unnecessary option,
30326         --cvs-user, and envvars CVS_USER, CVS_RSH.
30327
30328 2007-10-24  Jim Meyering  <meyering@redhat.com>
30329
30330         Avoid diagnostics from sha1sum when there is no cached checksum.
30331         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
30332         if the po.s1 file hasn't been created yet.
30333
30334         * build-aux/bootstrap: Sync from coreutils:
30335         2007-10-24  Jim Meyering  <meyering@redhat.com>
30336         Get gnulib from the git repository, not from an obsolete cvs one.
30337         * build-aux/bootstrap: Suggestion from Micah Cowan.
30338         2007-10-04  Jim Meyering  <jim@meyering.net>
30339         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
30340         (update_po_files): Work also when there are no .po files in po/.
30341
30342 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
30343
30344         * README: Append ".git" to git and cg examples.
30345         Problem reported by Benoit Sigoure.
30346
30347 2007-10-23  Micah Cowan  <micah@cowan.name>
30348
30349         * users.txt: Add wget.
30350
30351 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30352
30353         Fix linking of some unistdio tests on FreeBSD.
30354         * modules/unistdio/u16-vsnprintf-tests
30355         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
30356         * modules/unistdio/u16-vsprintf-tests
30357         (test_u16_vsnprintf1_LDADD): Likewise.
30358         * modules/unistdio/u32-vsnprintf-tests
30359         (test_u32_vsnprintf1_LDADD): Likewise.
30360         * modules/unistdio/u32-vsprintf-tests
30361         (test_u32_vsprintf1_LDADD): Likewise.
30362         * modules/unistdio/u8-vsnprintf-tests
30363         (test_u8_vsnprintf1_LDADD): Likewise.
30364         * modules/unistdio/u8-vsprintf-tests
30365         (test_u8_vsprintf1_LDADD): Likewise.
30366         * modules/unistdio/ulc-vsnprintf-tests
30367         (test_ulc_vsnprintf1_LDADD): Likewise.
30368         * modules/unistdio/ulc-vsprintf-tests
30369         (test_ulc_vsprintf1_LDADD): Likewise.
30370
30371         Fix linking of some uniconv tests on FreeBSD.
30372         * modules/uniconv/u16-conv-from-enc-tests
30373         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
30374         * modules/uniconv/u16-conv-to-enc-tests
30375         (test_u16_conv_to_enc_LDADD): Likewise.
30376         * modules/uniconv/u16-strconv-from-enc-tests
30377         (test_u16_strconv_from_enc_LDADD): Likewise.
30378         * modules/uniconv/u16-strconv-to-enc-tests
30379         (test_u16_strconv_to_enc_LDADD): Likewise.
30380         * modules/uniconv/u32-conv-from-enc-tests
30381         (test_u32_conv_from_enc_LDADD): Likewise.
30382         * modules/uniconv/u32-conv-to-enc-tests
30383         (test_u32_conv_to_enc_LDADD): Likewise.
30384         * modules/uniconv/u32-strconv-from-enc-tests
30385         (test_u32_strconv_from_enc_LDADD): Likewise.
30386         * modules/uniconv/u32-strconv-to-enc-tests
30387         (test_u32_strconv_to_enc_LDADD): Likewise.
30388         * modules/uniconv/u8-conv-from-enc-tests
30389         (test_u8_conv_from_enc_LDADD): Likewise.
30390         * modules/uniconv/u8-conv-to-enc-tests
30391         (test_u8_conv_to_enc_LDADD): Likewise.
30392         * modules/uniconv/u8-strconv-from-enc-tests
30393         (test_u8_strconv_from_enc_LDADD): Likewise.
30394         * modules/uniconv/u8-strconv-to-enc-tests
30395         (test_u8_strconv_to_enc_LDADD): Likewise.
30396
30397 2007-10-22  Bruno Haible  <bruno@clisp.org>
30398
30399         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
30400         size.
30401
30402 2007-10-22  Eric Blake  <ebb9@byu.net>
30403
30404         Tweak x*printf documentation.
30405         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
30406         variable name and comments.
30407         Suggested by Bruno Haible.
30408
30409 2007-10-22  Bruno Haible  <bruno@clisp.org>
30410
30411         * lib/acl.c (copy_acl): Fix file name in comment.
30412
30413 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30414
30415         Fix Tru64 problem with stdbool.h.
30416         * lib/stdbool.in.h (false, true):
30417         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
30418         Don't declare as an enum in this situation; it runs afoul of Tru64.
30419         Problem reported by Steven M. Schweda in
30420         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
30421
30422 2007-10-22  Eric Blake  <ebb9@byu.net>
30423
30424         Also wrap vf?printf.
30425         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
30426         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
30427         (xvprintf, xvfprintf): New functions.
30428
30429 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30430
30431         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
30432         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
30433
30434         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
30435         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
30436
30437 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30438
30439         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
30440         by Bruno Haible.
30441
30442 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30443
30444         * lib/getloadavg.c
30445         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
30446         Undef `sys' after including sys/table.h, for Tru64 4.0D.
30447
30448         * tests/test-i-ring.c: Work for C89.
30449
30450 2007-10-22  Bruno Haible  <bruno@clisp.org>
30451
30452         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
30453         -1u, in preprocessor expression, so that we don't test for the bug
30454         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
30455         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
30456
30457 2007-10-22  Eric Blake  <ebb9@byu.net>
30458
30459         * tests/test-yesno.sh: Silence stderr during test.
30460
30461 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30462
30463         * modules/crypto/gc-camellia: New file.
30464
30465         * m4/gc-camellia.m4: New file.
30466
30467         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
30468
30469         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
30470
30471 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30472
30473         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
30474         --help to stdout.  Reported by sms@antinode.org (Steven
30475         M. Schweda).
30476
30477 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30478
30479         * users.txt: Fix link to libksba.
30480
30481 2007-10-21  Ben Pfaff  <blp@gnu.org>
30482
30483         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
30484         round.c roundf implementation that depends on floorf and ceilf to
30485         be tested unconditionally.
30486
30487 2007-10-21  Ben Pfaff  <blp@gnu.org>
30488
30489         * m4/check-libm-func.m4: Removed.
30490         * m4/check-math-lib.m4: New file.
30491         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
30492         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
30493         definition and lack of AC_LIBOBJ([roundf]).
30494         * m4/roundl.m4: Ditto, and similarly for roundl.
30495         * modules/round: Reference new m4 file.
30496         * modules/roundf: Ditto.
30497         * modules/roundl: Ditto.
30498         * tests/test-round2.c (main): Use ROUND instead of round.
30499         Bug report from Bruno Haible.
30500
30501 2007-10-21  Bruno Haible  <bruno@clisp.org>
30502
30503         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
30504         context.
30505
30506 2007-10-21  Bruno Haible  <bruno@clisp.org>
30507
30508         * tests/test-wcwidth.c (main): Allow negative result for some control
30509         characters.
30510
30511         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
30512         Needed on OSF/1 5.1.
30513
30514 2007-10-21  Bruno Haible  <bruno@clisp.org>
30515
30516         * tests/test-floorf1.c: Include isnanf.h.
30517         (main): Use isnanf() instead of isnan().
30518         * tests/test-ceilf1.c: Include isnanf.h.
30519         (main): Use isnanf() instead of isnan().
30520         * tests/test-truncf1.c: Include isnanf.h.
30521         (main): Use isnanf() instead of isnan().
30522         * tests/test-roundf1.c: Include isnanf.h.
30523         (main): Use isnanf() instead of isnan().
30524
30525 2007-10-21  Eric Blake  <ebb9@byu.net>
30526
30527         * users.txt: Update URL for m4.
30528
30529 2007-10-21  Bruno Haible  <bruno@clisp.org>
30530
30531         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
30532
30533 2007-10-21  Bruno Haible  <bruno@clisp.org>
30534
30535         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
30536         Git's management files if the CVS files are not present.
30537
30538 2007-10-20  Bruno Haible  <bruno@clisp.org>
30539
30540         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
30541         gcc-3.4.x.
30542
30543 2007-10-20  Ben Pfaff  <blp@gnu.org>
30544
30545         * lib/math.in.h: Declare round, roundf, roundl if we are providing
30546         implementations.
30547         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
30548         * lib/round.c: New file.
30549         * lib/roundf.c: New file.
30550         * lib/roundl.c: New file.
30551         * m4/round.m4: New file.
30552         * m4/roundf.m4: New file.
30553         * m4/roundl.m4: New file.
30554         * m4/check-libm-func-m4: New file.
30555         * modules/math: Replace round, roundf, roundl related @VARS@ in
30556         math.in.h.
30557         * modules/round: New file.
30558         * modules/round-tests: New file.
30559         * modules/roundf: New file.
30560         * modules/roundf-tests: New file.
30561         * modules/roundl: New file.
30562         * modules/roundl-tests: New file.
30563         * tests/test-round1.c: New file.
30564         * tests/test-round2.c: New file.
30565         * tests/test-roundf1.c: New file.
30566         * tests/test-roundf2.c: New file.
30567         * tests/test-roundl.c: New file.
30568         * doc/functions/round.texi: Mention round module.
30569         * doc/functions/roundf.texi: Mention roundf module.
30570         * doc/functions/roundl.texi: Mention roundl module.
30571         * MODULES.html.sh: Mention new modules.
30572         Thanks to Bruno Haible for suggestions.
30573
30574 2007-10-20  Jim Meyering  <meyering@redhat.com>
30575
30576         * lib/xprintf.c: Include <config.h> unconditionally.
30577
30578         Change xprintf's license to GPL.
30579         * modules/xprintf (License): s/LGPL/GPL/, since this module
30580         depends on modules (exit and exitfail) which are GPL.
30581         Suggestion from Bruno Haible.
30582
30583         xprintf fixes.
30584         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
30585         Use a clearer diagnostic.
30586         Patch from Bruno Haible.
30587
30588 2007-10-20  Bruno Haible  <bruno@clisp.org>
30589
30590         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
30591         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
30592         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30593
30594 2007-10-20  Bruno Haible  <bruno@clisp.org>
30595
30596         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
30597         precision in the comparison result > x - 1 or similar.
30598         * tests/test-ceilf2.c (correct_result_p): Likewise.
30599         * tests/test-truncf2.c (correct_result_p): Likewise.
30600         * tests/test-trunc2.c (correct_result_p): Likewise.
30601         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30602
30603 2007-10-20  Bruno Haible  <bruno@clisp.org>
30604
30605         * modules/ceil: New file.
30606         * m4/ceil.m4: New file.
30607         * doc/functions/ceil.texi: Mention the 'ceil' module.
30608
30609 2007-10-20  Bruno Haible  <bruno@clisp.org>
30610
30611         * modules/floor: New file.
30612         * m4/floor.m4: New file.
30613         * doc/functions/floor.texi: Mention the 'floor' module.
30614
30615 2007-10-20  Bruno Haible  <bruno@clisp.org>
30616
30617         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
30618         of %a.
30619         * modules/floorf-tests (Depends-on): Likewise.
30620         * modules/truncf-tests (Depends-on): Likewise.
30621         * modules/trunc-tests (Depends-on): Likewise.
30622         Reported by Ben Pfaff.
30623
30624 2007-10-19  Jim Meyering  <meyering@redhat.com>
30625
30626         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
30627         Don't bother testing specific errno values.  Just test ferror.
30628
30629         New module: xprintf
30630         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
30631
30632 2007-10-19  Bruno Haible  <bruno@clisp.org>
30633
30634         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
30635         syntax.
30636         * modules/javaexec (Makefile.am): Likewise.
30637         * modules/relocatable-prog (Makefile.am): Likewise.
30638         Suggested by Jim Meyering.
30639
30640 2007-10-18  Bruno Haible  <bruno@clisp.org>
30641
30642         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
30643         Reported by Jim Meyering.
30644
30645 2007-10-18  Eric Blake  <ebb9@byu.net>
30646
30647         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
30648
30649 2007-10-18  Bruno Haible  <bruno@clisp.org>
30650
30651         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
30652         the format string into writable memory. Needed in Fortify conditions.
30653
30654 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
30655             Bruno Haible  <bruno@clisp.org>
30656
30657         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
30658         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
30659         * modules/trim (Depends-on): Add mbchar.
30660         (configure.ac): Add gl_FUNC_MBRTOWC.
30661         (Makefile.am): Augment lib_SOURCES.
30662
30663 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
30664
30665         Modify glob.c to use fstatat and dirfd, to simplify it.
30666         Suggested by Eric Blake.
30667         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
30668         Don't include <stdbool.h>; not used.
30669         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
30670         (link_exists_p): Simplify implementation, since we can now assume
30671         dirfd and fstatat.
30672         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
30673
30674 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30675
30676         * gnulib-tool (func_get_dependencies): Fix sed script to
30677         match only tests.
30678
30679 2007-10-17  Bruno Haible  <bruno@clisp.org>
30680
30681         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
30682         allow locale names without encoding suffix.
30683         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
30684         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
30685
30686 2007-10-16  Bruno Haible  <bruno@clisp.org>
30687
30688         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
30689         * lib/getgroups.c (getgroups): Likewise.
30690         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
30691
30692 2007-10-16  Bruno Haible  <bruno@clisp.org>
30693
30694         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
30695         * modules/malloc-posix (License): Likewise.
30696         * modules/realloc-posix (License): Likewise.
30697         * modules/calloc-posix (License): Likewise.
30698         * modules/intprops (License): Change from GPL to LGPL, with
30699         Paul Eggert's approval.
30700
30701 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30702
30703         Merge glibc changes into lib/glob.c.
30704
30705         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
30706         2007-10-15 04:59:03 UTC.  Here are the changes:
30707
30708         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
30709
30710         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
30711
30712         * lib/glob.c: Add some branch prediction throughout.
30713
30714         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
30715
30716         [BZ #5103]
30717         * lib/glob.c (glob): Recognize patterns starting \/.
30718
30719         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
30720
30721         [BZ #3996]
30722         * lib/glob.c (attribute_hidden): Define if not defined.
30723         (glob): Unescape dirname, filename or username when needed and not
30724         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
30725         is NULL.  Handle unescaped [ in pattern without closing ].
30726         Don't pass GLOB_CHECK down to recursive glob for directories.
30727         (__glob_pattern_type): New function.
30728         (__glob_pattern_p): Implement using __glob_pattern_type.
30729         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
30730         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
30731         Remove unreachable code.
30732
30733         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
30734
30735         * lib/glob.c (glob_in_dir): Add some comments and asserts to
30736         explain why there are no leaks.
30737
30738         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
30739
30740         [BZ #3253]
30741         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
30742         time, rather allocate increasingly bigger arrays of pointers, if
30743         possible with alloca, if too large with malloc.
30744
30745 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30746
30747         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
30748         Problem reported by H.Merijn Brand in
30749         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
30750         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
30751         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
30752
30753 2007-10-15  Bruno Haible  <bruno@clisp.org>
30754
30755         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
30756         with explicit rpl_ prefix.
30757         * lib/fopen.c (fopen): Likewise.
30758         * lib/freopen.c (freopen): Likewise.
30759         * lib/iconv.c (iconv): Likewise.
30760         * lib/iconv_close.c (iconv_close): Likewise.
30761
30762 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30763
30764         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
30765
30766 2007-10-15  Bruno Haible  <bruno@clisp.org>
30767
30768         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
30769         <stddef.h> instead of <stdlib.h> since we only need NULL.
30770         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30771
30772 2007-10-15  Bruno Haible  <bruno@clisp.org>
30773
30774         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
30775         Replace paragraph talking about LIBOBJS.
30776         Reported by Colin Watson <cjwatson@debian.org>.
30777
30778 2007-10-15  Bruno Haible  <bruno@clisp.org>
30779
30780         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
30781         <stdlib.h> before using NULL.
30782
30783 2007-10-15  Simon Josefsson  <simon@josefsson.org>
30784
30785         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
30786         Reported by Albert Chin <china@thewrittenword.com>.
30787
30788 2007-10-14  Bruno Haible  <bruno@clisp.org>
30789
30790         * modules/iconv_open-utf-tests: New file.
30791         * tests/test-iconv-utf.c: New file.
30792
30793         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
30794         * modules/iconv_open-utf: New file.
30795         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
30796         (iconv, iconv_close): New declarations.
30797         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
30798         be defined.
30799         (iconv_open): Add special handling of conversion between UTF-8 and
30800         UTF-{16,32}{BE,LE}.
30801         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
30802         * lib/iconv_close.c: New file.
30803         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
30804         gl_FUNC_ICONV_OPEN.
30805         (gl_FUNC_ICONV_OPEN): Use it.
30806         (gl_FUNC_ICONV_OPEN_UTF): New macro.
30807         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
30808         and REPLACE_ICONV_UTF.
30809         * modules/iconv_open (Depends-on): Add c-strcase.
30810         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
30811         ICONV_CONST.
30812         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
30813
30814 2007-10-13  Albert Chin  <china@thewrittenword.com>
30815             Bruno Haible  <bruno@clisp.org>
30816
30817         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
30818         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
30819
30820 2007-10-13  Bruno Haible  <bruno@clisp.org>
30821
30822         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
30823         defined, use the ISO C99 inline semantics.
30824         * lib/argp.h (ARGP_EI): Likewise.
30825
30826 2007-10-13  Bruno Haible  <bruno@clisp.org>
30827
30828         Handle 'inline' change in gcc 4.3.0.
30829         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
30830         argp_fmtstream_write, argp_fmtstream_set_lmargin,
30831         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
30832         argp_fmtstream_point): Disable 'extern' declaration if the function
30833         definition is going to be provided inline.
30834         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
30835         semantics, not the ISO C99 inline semantics.
30836         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
30837         'extern' declaration if the function definition is going to be provided
30838         inline.
30839         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
30840         the GNU C inline semantics, not the ISO C99 inline semantics. With
30841         GCC 4.2, avoid a warning.
30842
30843 2007-10-13  Bruno Haible  <bruno@clisp.org>
30844
30845         * lib/freading.h (freading): Enable the use of __freading for
30846         glibc >= 2.7.
30847         * lib/freading.c (freading): Likewise.
30848
30849 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
30850
30851         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
30852         "warning: C99 inline functions are not supported; using GNU89".
30853
30854 2007-10-12  Bruno Haible  <bruno@clisp.org>
30855
30856         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
30857         of 2.
30858         * tests/test-ceilf2.c: New file.
30859         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
30860
30861         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
30862         * modules/ceilf-tests: Update.
30863
30864 2007-10-12  Bruno Haible  <bruno@clisp.org>
30865
30866         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
30867         of 2.
30868         * tests/test-floorf2.c: New file.
30869         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
30870
30871         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
30872         * modules/floorf-tests: Update.
30873
30874 2007-10-12  Bruno Haible  <bruno@clisp.org>
30875
30876         * tests/test-trunc2.c: New file.
30877         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
30878
30879         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
30880         * modules/trunc-tests: Update.
30881
30882 2007-10-12  Bruno Haible  <bruno@clisp.org>
30883
30884         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
30885         of 2.
30886         * tests/test-truncf2.c: New file.
30887         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
30888
30889         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
30890         * modules/truncf-tests: Update.
30891
30892 2007-10-11  Eric Blake  <ebb9@byu.net>
30893
30894         Don't claim strerror is broken on Interix.
30895         * doc/functions/strerror.texi (strerror): Known broken systems are
30896         now Solaris 8, and not Interix.
30897         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
30898         Interix on cross-compile.
30899         Reported by Martin Koeppe in
30900         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
30901
30902 2007-10-11  Bruno Haible  <bruno@clisp.org>
30903
30904         * modules/i-ring-tests: New file.
30905         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
30906         instead of assert.
30907
30908 2007-10-11  Bruno Haible  <bruno@clisp.org>
30909
30910         * modules/filenamecat-tests: New file.
30911         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
30912         * lib/filenamecat.c: Remove test code.
30913
30914 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
30915
30916         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
30917
30918         * lib/strerror.c: Include <string.h> always, to test interface,
30919         and to remove the need for the dummy.
30920         Include intprops.h to compute width instead of doing it ourselves
30921         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
30922         (strerror): Define it to return NULL if there's no system strerror.
30923         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
30924         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
30925         ancient pre-strerror Unix systems well any more.  Saying "unknown
30926         system error" is enough.
30927         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
30928         simpler strerror.c implementation.
30929         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
30930         Simplify the tests to reflect the simpler strerror implementation.
30931         * modules/strerror (Depends-on): Add intprops.
30932
30933 2007-10-09  Eric Blake  <ebb9@byu.net>
30934
30935         Silence test-fpending.
30936         * modules/fpending-tests (Files): Add wrapper script.
30937         * tests/test-fpending.sh: New file.
30938
30939 2007-10-09  Bruno Haible  <bruno@clisp.org>
30940
30941         * MODULES.html.sh (func_module): Don't create a hyperlink for
30942         function names like 'printf_frexp'.
30943         (Misc): Add crc, memxor.
30944         (Characteristics of floating types): New section.
30945         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
30946         isnanf-nolibm, signbit, trunc, truncf, truncl.
30947         (Enhancements for ISO C 99 functions): New subsection Input/output.
30948         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
30949         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
30950         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
30951         (Compatibility checks for POSIX:2001 functions): Add clock-time.
30952         (Enhancements for POSIX:2001 functions): Add chdir-long.
30953         (File system functions): Add areadlink, chdir-safer, read-file.
30954         Remove cycle-check.
30955         (File system as inode set): New section.
30956         (Date and time): Add gethrxtime.
30957         (Multithreading): Add openmp.
30958         (Internationalization functions): Add localename.
30959         (Unicode string functions): Add unistr/u*-mbsnlen.
30960         (Support for maintaining and releasing projects): Add git-version-gen.
30961         (Lone files): Remove directories.
30962
30963 2007-10-08  Ben Pfaff  <blp@gnu.org>
30964
30965         * lib/xmalloca.h: Fix typo in comment.
30966
30967 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30968
30969         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
30970         when avoiding problems with integer overflow.  Use a portable test
30971         instead.
30972
30973 2007-10-08  Simon Josefsson  <simon@josefsson.org>
30974
30975         * modules/dummy (License): Change to LGPLv2+.
30976         * modules/float (License): Likewise
30977         * modules/realloc (License): Likewise
30978         * modules/stdlib (License): Likewise
30979
30980 2007-10-07  Bruno Haible  <bruno@clisp.org>
30981
30982         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
30983         * floor.c (TWO_MANT_DIG): Likewise.
30984         * ceil.c (TWO_MANT_DIG): Likewise.
30985         Reported by Ben Pfaff.
30986
30987 2007-10-07  Bruno Haible  <bruno@clisp.org>
30988
30989         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
30990         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
30991         * lib/frexp.c (FUNC): Likewise.
30992         * lib/printf-frexp.h (printf_frexp): Likewise.
30993         * lib/printf-frexpl.h (printf_frexpl): Likewise.
30994         * lib/printf-frexp.c (FUNC): Likewise.
30995         Suggested by Jim Meyering.
30996
30997 2007-10-07  Jim Meyering  <meyering@redhat.com>
30998
30999         Make xnanosleep's integer overflow test more robust.
31000         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
31001         so that gcc-4.3.0 doesn't optimize away this test for overflow.
31002
31003 2007-10-07  Bruno Haible  <bruno@clisp.org>
31004
31005         * NEWS: Mention the license change.
31006
31007         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
31008         abbreviations in the modules files.
31009
31010         Change copyright notice from GPLv2+ to GPLv3+.
31011         * README: Change copyright notice.
31012         * MODULES.html.sh: Likewise.
31013         * build-aux/bootstrap.conf: Likewise.
31014         * build-aux/config.libpath: Likewise.
31015         * build-aux/csharpcomp.sh.in: Likewise.
31016         * build-aux/csharpexec.sh.in: Likewise.
31017         * build-aux/install-reloc: Likewise.
31018         * build-aux/javacomp.sh.in: Likewise.
31019         * build-aux/javaexec.sh.in: Likewise.
31020         * build-aux/ldd.sh.in: Likewise.
31021         * build-aux/reloc-ldflags: Likewise.
31022         * build-aux/relocatable.sh.in: Likewise.
31023         * build-aux/x-to-1.in: Likewise.
31024         * check-module: Likewise.
31025         * config/srclistvars.sh: Likewise.
31026         * gnulib-tool: Likewise.
31027         * lib/acl-internal.h: Likewise.
31028         * lib/acl.c: Likewise.
31029         * lib/acl.h: Likewise.
31030         * lib/acl_entries.c: Likewise.
31031         * lib/areadlink-with-size.c: Likewise.
31032         * lib/areadlink.c: Likewise.
31033         * lib/areadlink.h: Likewise.
31034         * lib/argmatch.c: Likewise.
31035         * lib/argmatch.h: Likewise.
31036         * lib/argp-ba.c: Likewise.
31037         * lib/argp-eexst.c: Likewise.
31038         * lib/argp-fmtstream.c: Likewise.
31039         * lib/argp-fmtstream.h: Likewise.
31040         * lib/argp-fs-xinl.c: Likewise.
31041         * lib/argp-help.c: Likewise.
31042         * lib/argp-namefrob.h: Likewise.
31043         * lib/argp-parse.c: Likewise.
31044         * lib/argp-pin.c: Likewise.
31045         * lib/argp-pv.c: Likewise.
31046         * lib/argp-pvh.c: Likewise.
31047         * lib/argp-xinl.c: Likewise.
31048         * lib/argp.h: Likewise.
31049         * lib/at-func.c: Likewise.
31050         * lib/atanl.c: Likewise.
31051         * lib/backupfile.c: Likewise.
31052         * lib/backupfile.h: Likewise.
31053         * lib/basename.c: Likewise.
31054         * lib/binary-io.h: Likewise.
31055         * lib/byteswap.in.h: Likewise.
31056         * lib/c-stack.c: Likewise.
31057         * lib/c-stack.h: Likewise.
31058         * lib/c-strcasestr.c: Likewise.
31059         * lib/c-strcasestr.h: Likewise.
31060         * lib/c-strstr.c: Likewise.
31061         * lib/c-strstr.h: Likewise.
31062         * lib/c-strtod.c: Likewise.
31063         * lib/calloc.c: Likewise.
31064         * lib/canon-host.c: Likewise.
31065         * lib/canon-host.h: Likewise.
31066         * lib/canonicalize-lgpl.c: Likewise.
31067         * lib/canonicalize.c: Likewise.
31068         * lib/canonicalize.h: Likewise.
31069         * lib/ceil.c: Likewise.
31070         * lib/ceilf.c: Likewise.
31071         * lib/ceill.c: Likewise.
31072         * lib/chdir-long.c: Likewise.
31073         * lib/chdir-long.h: Likewise.
31074         * lib/chdir-safer.c: Likewise.
31075         * lib/chdir-safer.h: Likewise.
31076         * lib/chown.c: Likewise.
31077         * lib/classpath.c: Likewise.
31078         * lib/classpath.h: Likewise.
31079         * lib/clean-temp.c: Likewise.
31080         * lib/clean-temp.h: Likewise.
31081         * lib/cloexec.c: Likewise.
31082         * lib/close-stream.c: Likewise.
31083         * lib/closein.c: Likewise.
31084         * lib/closein.h: Likewise.
31085         * lib/closeout.c: Likewise.
31086         * lib/closeout.h: Likewise.
31087         * lib/concat-filename.c: Likewise.
31088         * lib/copy-file.c: Likewise.
31089         * lib/copy-file.h: Likewise.
31090         * lib/count-one-bits.h: Likewise.
31091         * lib/crc.c: Likewise.
31092         * lib/crc.h: Likewise.
31093         * lib/creat-safer.c: Likewise.
31094         * lib/csharpcomp.c: Likewise.
31095         * lib/csharpcomp.h: Likewise.
31096         * lib/csharpexec.c: Likewise.
31097         * lib/csharpexec.h: Likewise.
31098         * lib/cycle-check.c: Likewise.
31099         * lib/cycle-check.h: Likewise.
31100         * lib/diacrit.c: Likewise.
31101         * lib/diacrit.h: Likewise.
31102         * lib/diffseq.h: Likewise.
31103         * lib/dirchownmod.c: Likewise.
31104         * lib/dirent.in.h: Likewise.
31105         * lib/dirfd.c: Likewise.
31106         * lib/dirfd.h: Likewise.
31107         * lib/dirname.c: Likewise.
31108         * lib/dirname.h: Likewise.
31109         * lib/dummy.c: Likewise.
31110         * lib/dup-safer.c: Likewise.
31111         * lib/dup2.c: Likewise.
31112         * lib/eealloc.h: Likewise.
31113         * lib/error.c: Likewise.
31114         * lib/error.h: Likewise.
31115         * lib/euidaccess.c: Likewise.
31116         * lib/exclude.c: Likewise.
31117         * lib/exclude.h: Likewise.
31118         * lib/execute.c: Likewise.
31119         * lib/execute.h: Likewise.
31120         * lib/exitfail.c: Likewise.
31121         * lib/exitfail.h: Likewise.
31122         * lib/expl.c: Likewise.
31123         * lib/fatal-signal.c: Likewise.
31124         * lib/fatal-signal.h: Likewise.
31125         * lib/fbufmode.c: Likewise.
31126         * lib/fbufmode.h: Likewise.
31127         * lib/fchdir.c: Likewise.
31128         * lib/fchmodat.c: Likewise.
31129         * lib/fchownat.c: Likewise.
31130         * lib/fcntl--.h: Likewise.
31131         * lib/fcntl-safer.h: Likewise.
31132         * lib/fcntl.in.h: Likewise.
31133         * lib/fd-safer.c: Likewise.
31134         * lib/fflush.c: Likewise.
31135         * lib/file-has-acl.c: Likewise.
31136         * lib/file-set.c: Likewise.
31137         * lib/file-type.c: Likewise.
31138         * lib/file-type.h: Likewise.
31139         * lib/fileblocks.c: Likewise.
31140         * lib/filemode.c: Likewise.
31141         * lib/filemode.h: Likewise.
31142         * lib/filename.h: Likewise.
31143         * lib/filenamecat.c: Likewise.
31144         * lib/filenamecat.h: Likewise.
31145         * lib/findprog.c: Likewise.
31146         * lib/findprog.h: Likewise.
31147         * lib/float.in.h: Likewise.
31148         * lib/floor.c: Likewise.
31149         * lib/floorf.c: Likewise.
31150         * lib/floorl.c: Likewise.
31151         * lib/fopen-safer.c: Likewise.
31152         * lib/fopen.c: Likewise.
31153         * lib/fpending.c: Likewise.
31154         * lib/fpending.h: Likewise.
31155         * lib/fprintf.c: Likewise.
31156         * lib/fprintftime.h: Likewise.
31157         * lib/fpucw.h: Likewise.
31158         * lib/fpurge.c: Likewise.
31159         * lib/fpurge.h: Likewise.
31160         * lib/freadable.c: Likewise.
31161         * lib/freadable.h: Likewise.
31162         * lib/freadahead.c: Likewise.
31163         * lib/freadahead.h: Likewise.
31164         * lib/freading.c: Likewise.
31165         * lib/freading.h: Likewise.
31166         * lib/free.c: Likewise.
31167         * lib/freopen.c: Likewise.
31168         * lib/frexp.c: Likewise.
31169         * lib/frexpl.c: Likewise.
31170         * lib/fseek.c: Likewise.
31171         * lib/fseterr.c: Likewise.
31172         * lib/fseterr.h: Likewise.
31173         * lib/fstatat.c: Likewise.
31174         * lib/fstrcmp.c: Likewise.
31175         * lib/fstrcmp.h: Likewise.
31176         * lib/fsusage.c: Likewise.
31177         * lib/fsusage.h: Likewise.
31178         * lib/ftell.c: Likewise.
31179         * lib/ftello.c: Likewise.
31180         * lib/fts-cycle.c: Likewise.
31181         * lib/fts.c: Likewise.
31182         * lib/fts_.h: Likewise.
31183         * lib/full-read.c: Likewise.
31184         * lib/full-read.h: Likewise.
31185         * lib/full-write.c: Likewise.
31186         * lib/full-write.h: Likewise.
31187         * lib/fwritable.c: Likewise.
31188         * lib/fwritable.h: Likewise.
31189         * lib/fwriteerror.c: Likewise.
31190         * lib/fwriteerror.h: Likewise.
31191         * lib/fwriting.c: Likewise.
31192         * lib/fwriting.h: Likewise.
31193         * lib/gcd.c: Likewise.
31194         * lib/gcd.h: Likewise.
31195         * lib/getcwd.c: Likewise.
31196         * lib/getdate.h: Likewise.
31197         * lib/getdate.y: Likewise.
31198         * lib/getdomainname.c: Likewise.
31199         * lib/getdomainname.h: Likewise.
31200         * lib/getgroups.c: Likewise.
31201         * lib/gethostname.c: Likewise.
31202         * lib/gethrxtime.c: Likewise.
31203         * lib/gethrxtime.h: Likewise.
31204         * lib/getloadavg.c: Likewise.
31205         * lib/getndelim2.c: Likewise.
31206         * lib/getndelim2.h: Likewise.
31207         * lib/getnline.c: Likewise.
31208         * lib/getnline.h: Likewise.
31209         * lib/getopt.c: Likewise.
31210         * lib/getopt.in.h: Likewise.
31211         * lib/getopt1.c: Likewise.
31212         * lib/getopt_int.h: Likewise.
31213         * lib/getpagesize.h: Likewise.
31214         * lib/getsubopt.c: Likewise.
31215         * lib/gettime.c: Likewise.
31216         * lib/getugroups.c: Likewise.
31217         * lib/getugroups.h: Likewise.
31218         * lib/getusershell.c: Likewise.
31219         * lib/gl_anyavltree_list1.h: Likewise.
31220         * lib/gl_anyavltree_list2.h: Likewise.
31221         * lib/gl_anyhash_list1.h: Likewise.
31222         * lib/gl_anyhash_list2.h: Likewise.
31223         * lib/gl_anylinked_list1.h: Likewise.
31224         * lib/gl_anylinked_list2.h: Likewise.
31225         * lib/gl_anyrbtree_list1.h: Likewise.
31226         * lib/gl_anyrbtree_list2.h: Likewise.
31227         * lib/gl_anytree_list1.h: Likewise.
31228         * lib/gl_anytree_list2.h: Likewise.
31229         * lib/gl_anytree_oset.h: Likewise.
31230         * lib/gl_anytreehash_list1.h: Likewise.
31231         * lib/gl_anytreehash_list2.h: Likewise.
31232         * lib/gl_array_list.c: Likewise.
31233         * lib/gl_array_list.h: Likewise.
31234         * lib/gl_array_oset.c: Likewise.
31235         * lib/gl_array_oset.h: Likewise.
31236         * lib/gl_avltree_list.c: Likewise.
31237         * lib/gl_avltree_list.h: Likewise.
31238         * lib/gl_avltree_oset.c: Likewise.
31239         * lib/gl_avltree_oset.h: Likewise.
31240         * lib/gl_avltreehash_list.c: Likewise.
31241         * lib/gl_avltreehash_list.h: Likewise.
31242         * lib/gl_carray_list.c: Likewise.
31243         * lib/gl_carray_list.h: Likewise.
31244         * lib/gl_linked_list.c: Likewise.
31245         * lib/gl_linked_list.h: Likewise.
31246         * lib/gl_linkedhash_list.c: Likewise.
31247         * lib/gl_linkedhash_list.h: Likewise.
31248         * lib/gl_list.c: Likewise.
31249         * lib/gl_list.h: Likewise.
31250         * lib/gl_oset.c: Likewise.
31251         * lib/gl_oset.h: Likewise.
31252         * lib/gl_rbtree_list.c: Likewise.
31253         * lib/gl_rbtree_list.h: Likewise.
31254         * lib/gl_rbtree_oset.c: Likewise.
31255         * lib/gl_rbtree_oset.h: Likewise.
31256         * lib/gl_rbtreehash_list.c: Likewise.
31257         * lib/gl_rbtreehash_list.h: Likewise.
31258         * lib/gl_sublist.c: Likewise.
31259         * lib/gl_sublist.h: Likewise.
31260         * lib/group-member.c: Likewise.
31261         * lib/group-member.h: Likewise.
31262         * lib/hard-locale.c: Likewise.
31263         * lib/hard-locale.h: Likewise.
31264         * lib/hash-pjw.c: Likewise.
31265         * lib/hash-pjw.h: Likewise.
31266         * lib/hash-triple.c: Likewise.
31267         * lib/hash.c: Likewise.
31268         * lib/hash.h: Likewise.
31269         * lib/human.c: Likewise.
31270         * lib/human.h: Likewise.
31271         * lib/i-ring.c: Likewise.
31272         * lib/i-ring.h: Likewise.
31273         * lib/idcache.c: Likewise.
31274         * lib/imaxabs.c: Likewise.
31275         * lib/imaxdiv.c: Likewise.
31276         * lib/inet_pton.c: Likewise.
31277         * lib/inet_pton.h: Likewise.
31278         * lib/intprops.h: Likewise.
31279         * lib/inttostr.c: Likewise.
31280         * lib/inttostr.h: Likewise.
31281         * lib/inttypes.in.h: Likewise.
31282         * lib/isapipe.c: Likewise.
31283         * lib/isdir.c: Likewise.
31284         * lib/isnan.c: Likewise.
31285         * lib/isnan.h: Likewise.
31286         * lib/isnanf.c: Likewise.
31287         * lib/isnanf.h: Likewise.
31288         * lib/isnanl-nolibm.h: Likewise.
31289         * lib/isnanl.c: Likewise.
31290         * lib/isnanl.h: Likewise.
31291         * lib/javacomp.c: Likewise.
31292         * lib/javacomp.h: Likewise.
31293         * lib/javaexec.c: Likewise.
31294         * lib/javaexec.h: Likewise.
31295         * lib/javaversion.c: Likewise.
31296         * lib/javaversion.h: Likewise.
31297         * lib/javaversion.java: Likewise.
31298         * lib/lbrkprop.h: Likewise.
31299         * lib/lchmod.h: Likewise.
31300         * lib/lchown.c: Likewise.
31301         * lib/ldexpl.c: Likewise.
31302         * lib/linebreak.c: Likewise.
31303         * lib/linebreak.h: Likewise.
31304         * lib/linebuffer.c: Likewise.
31305         * lib/linebuffer.h: Likewise.
31306         * lib/locale.in.h: Likewise.
31307         * lib/logl.c: Likewise.
31308         * lib/long-options.c: Likewise.
31309         * lib/long-options.h: Likewise.
31310         * lib/lstat.c: Likewise.
31311         * lib/lstat.h: Likewise.
31312         * lib/math.in.h: Likewise.
31313         * lib/mbchar.c: Likewise.
31314         * lib/mbchar.h: Likewise.
31315         * lib/mbfile.h: Likewise.
31316         * lib/mbiter.h: Likewise.
31317         * lib/mbscasecmp.c: Likewise.
31318         * lib/mbscasestr.c: Likewise.
31319         * lib/mbschr.c: Likewise.
31320         * lib/mbscspn.c: Likewise.
31321         * lib/mbslen.c: Likewise.
31322         * lib/mbsncasecmp.c: Likewise.
31323         * lib/mbsnlen.c: Likewise.
31324         * lib/mbspbrk.c: Likewise.
31325         * lib/mbspcasecmp.c: Likewise.
31326         * lib/mbsrchr.c: Likewise.
31327         * lib/mbssep.c: Likewise.
31328         * lib/mbsspn.c: Likewise.
31329         * lib/mbsstr.c: Likewise.
31330         * lib/mbstok_r.c: Likewise.
31331         * lib/mbswidth.c: Likewise.
31332         * lib/mbswidth.h: Likewise.
31333         * lib/mbuiter.h: Likewise.
31334         * lib/memcasecmp.c: Likewise.
31335         * lib/memcasecmp.h: Likewise.
31336         * lib/memchr.c: Likewise.
31337         * lib/memcmp.c: Likewise.
31338         * lib/memcoll.c: Likewise.
31339         * lib/memcoll.h: Likewise.
31340         * lib/memcpy.c: Likewise.
31341         * lib/memrchr.c: Likewise.
31342         * lib/mkancesdirs.c: Likewise.
31343         * lib/mkdir-p.c: Likewise.
31344         * lib/mkdir-p.h: Likewise.
31345         * lib/mkdir.c: Likewise.
31346         * lib/mkdirat.c: Likewise.
31347         * lib/mkdtemp.c: Likewise.
31348         * lib/mkstemp-safer.c: Likewise.
31349         * lib/mkstemp.c: Likewise.
31350         * lib/modechange.c: Likewise.
31351         * lib/modechange.h: Likewise.
31352         * lib/mountlist.c: Likewise.
31353         * lib/mountlist.h: Likewise.
31354         * lib/mpsort.c: Likewise.
31355         * lib/nanosleep.c: Likewise.
31356         * lib/obstack.c: Likewise.
31357         * lib/obstack.h: Likewise.
31358         * lib/open-safer.c: Likewise.
31359         * lib/open.c: Likewise.
31360         * lib/openat-die.c: Likewise.
31361         * lib/openat-priv.h: Likewise.
31362         * lib/openat-proc.c: Likewise.
31363         * lib/openat.c: Likewise.
31364         * lib/openat.h: Likewise.
31365         * lib/pagealign_alloc.c: Likewise.
31366         * lib/pagealign_alloc.h: Likewise.
31367         * lib/physmem.c: Likewise.
31368         * lib/physmem.h: Likewise.
31369         * lib/pipe-safer.c: Likewise.
31370         * lib/pipe.c: Likewise.
31371         * lib/pipe.h: Likewise.
31372         * lib/posixtm.c: Likewise.
31373         * lib/posixtm.h: Likewise.
31374         * lib/posixver.c: Likewise.
31375         * lib/printf-frexp.c: Likewise.
31376         * lib/printf-frexp.h: Likewise.
31377         * lib/printf-frexpl.c: Likewise.
31378         * lib/printf-frexpl.h: Likewise.
31379         * lib/printf.c: Likewise.
31380         * lib/progname.c: Likewise.
31381         * lib/progname.h: Likewise.
31382         * lib/progreloc.c: Likewise.
31383         * lib/putenv.c: Likewise.
31384         * lib/quote.c: Likewise.
31385         * lib/quote.h: Likewise.
31386         * lib/quotearg.c: Likewise.
31387         * lib/quotearg.h: Likewise.
31388         * lib/raise.c: Likewise.
31389         * lib/readline.c: Likewise.
31390         * lib/readline.h: Likewise.
31391         * lib/readlink.c: Likewise.
31392         * lib/readtokens.c: Likewise.
31393         * lib/readtokens.h: Likewise.
31394         * lib/readtokens0.c: Likewise.
31395         * lib/readtokens0.h: Likewise.
31396         * lib/readutmp.c: Likewise.
31397         * lib/readutmp.h: Likewise.
31398         * lib/realloc.c: Likewise.
31399         * lib/relocwrapper.c: Likewise.
31400         * lib/rename-dest-slash.c: Likewise.
31401         * lib/rename.c: Likewise.
31402         * lib/rmdir.c: Likewise.
31403         * lib/rpmatch.c: Likewise.
31404         * lib/safe-read.c: Likewise.
31405         * lib/safe-read.h: Likewise.
31406         * lib/safe-write.c: Likewise.
31407         * lib/safe-write.h: Likewise.
31408         * lib/same-inode.h: Likewise.
31409         * lib/same.c: Likewise.
31410         * lib/same.h: Likewise.
31411         * lib/save-cwd.c: Likewise.
31412         * lib/save-cwd.h: Likewise.
31413         * lib/savedir.c: Likewise.
31414         * lib/savedir.h: Likewise.
31415         * lib/savewd.c: Likewise.
31416         * lib/savewd.h: Likewise.
31417         * lib/search.in.h: Likewise.
31418         * lib/setenv.c: Likewise.
31419         * lib/setenv.h: Likewise.
31420         * lib/settime.c: Likewise.
31421         * lib/sh-quote.c: Likewise.
31422         * lib/sh-quote.h: Likewise.
31423         * lib/sig2str.c: Likewise.
31424         * lib/sig2str.h: Likewise.
31425         * lib/signal.in.h: Likewise.
31426         * lib/signbitd.c: Likewise.
31427         * lib/signbitf.c: Likewise.
31428         * lib/signbitl.c: Likewise.
31429         * lib/sigprocmask.c: Likewise.
31430         * lib/sincosl.c: Likewise.
31431         * lib/sleep.c: Likewise.
31432         * lib/sprintf.c: Likewise.
31433         * lib/sqrtl.c: Likewise.
31434         * lib/stat-time.h: Likewise.
31435         * lib/stdio--.h: Likewise.
31436         * lib/stdio-safer.h: Likewise.
31437         * lib/stdlib--.h: Likewise.
31438         * lib/stdlib-safer.h: Likewise.
31439         * lib/stdlib.in.h: Likewise.
31440         * lib/stpcpy.c: Likewise.
31441         * lib/stpncpy.c: Likewise.
31442         * lib/strchrnul.c: Likewise.
31443         * lib/strcspn.c: Likewise.
31444         * lib/strerror.c: Likewise.
31445         * lib/strftime.c: Likewise.
31446         * lib/strftime.h: Likewise.
31447         * lib/striconveh.c: Likewise.
31448         * lib/striconveh.h: Likewise.
31449         * lib/striconveha.c: Likewise.
31450         * lib/striconveha.h: Likewise.
31451         * lib/stripslash.c: Likewise.
31452         * lib/strnlen1.c: Likewise.
31453         * lib/strnlen1.h: Likewise.
31454         * lib/strtod.c: Likewise.
31455         * lib/strtoimax.c: Likewise.
31456         * lib/strtok_r.c: Likewise.
31457         * lib/strtol.c: Likewise.
31458         * lib/strtoll.c: Likewise.
31459         * lib/strtoul.c: Likewise.
31460         * lib/strtoull.c: Likewise.
31461         * lib/sysexits.in.h: Likewise.
31462         * lib/tempname.c: Likewise.
31463         * lib/tempname.h: Likewise.
31464         * lib/timespec.h: Likewise.
31465         * lib/tls.c: Likewise.
31466         * lib/tls.h: Likewise.
31467         * lib/tmpdir.c: Likewise.
31468         * lib/tmpdir.h: Likewise.
31469         * lib/tmpfile-safer.c: Likewise.
31470         * lib/tmpfile.c: Likewise.
31471         * lib/trigl.c: Likewise.
31472         * lib/trigl.h: Likewise.
31473         * lib/trim.c: Likewise.
31474         * lib/trim.h: Likewise.
31475         * lib/trunc.c: Likewise.
31476         * lib/truncf.c: Likewise.
31477         * lib/truncl.c: Likewise.
31478         * lib/tsearch.c: Likewise.
31479         * lib/unicodeio.c: Likewise.
31480         * lib/unicodeio.h: Likewise.
31481         * lib/unistd--.h: Likewise.
31482         * lib/unistd-safer.h: Likewise.
31483         * lib/unistdio/ulc-fprintf.c: Likewise.
31484         * lib/unistdio/ulc-vfprintf.c: Likewise.
31485         * lib/unlinkdir.c: Likewise.
31486         * lib/unlinkdir.h: Likewise.
31487         * lib/unlocked-io.h: Likewise.
31488         * lib/unsetenv.c: Likewise.
31489         * lib/userspec.c: Likewise.
31490         * lib/utime.c: Likewise.
31491         * lib/utimecmp.c: Likewise.
31492         * lib/utimecmp.h: Likewise.
31493         * lib/utimens.c: Likewise.
31494         * lib/verify.h: Likewise.
31495         * lib/verror.c: Likewise.
31496         * lib/verror.h: Likewise.
31497         * lib/version-etc-fsf.c: Likewise.
31498         * lib/version-etc.c: Likewise.
31499         * lib/version-etc.h: Likewise.
31500         * lib/vfprintf.c: Likewise.
31501         * lib/vprintf.c: Likewise.
31502         * lib/vsprintf.c: Likewise.
31503         * lib/w32spawn.h: Likewise.
31504         * lib/wait-process.c: Likewise.
31505         * lib/wait-process.h: Likewise.
31506         * lib/wcwidth.c: Likewise.
31507         * lib/write-any-file.c: Likewise.
31508         * lib/xalloc-die.c: Likewise.
31509         * lib/xalloc.h: Likewise.
31510         * lib/xasprintf.c: Likewise.
31511         * lib/xgetcwd.c: Likewise.
31512         * lib/xgetcwd.h: Likewise.
31513         * lib/xgetdomainname.c: Likewise.
31514         * lib/xgetdomainname.h: Likewise.
31515         * lib/xgethostname.c: Likewise.
31516         * lib/xmalloc.c: Likewise.
31517         * lib/xmalloca.c: Likewise.
31518         * lib/xmalloca.h: Likewise.
31519         * lib/xmemcoll.c: Likewise.
31520         * lib/xnanosleep.c: Likewise.
31521         * lib/xreadlink.c: Likewise.
31522         * lib/xreadlink.h: Likewise.
31523         * lib/xsetenv.c: Likewise.
31524         * lib/xsetenv.h: Likewise.
31525         * lib/xstriconv.c: Likewise.
31526         * lib/xstriconv.h: Likewise.
31527         * lib/xstrndup.c: Likewise.
31528         * lib/xstrndup.h: Likewise.
31529         * lib/xstrtod.c: Likewise.
31530         * lib/xstrtod.h: Likewise.
31531         * lib/xstrtol-error.c: Likewise.
31532         * lib/xstrtol.c: Likewise.
31533         * lib/xstrtol.h: Likewise.
31534         * lib/xtime.h: Likewise.
31535         * lib/xvasprintf.c: Likewise.
31536         * lib/xvasprintf.h: Likewise.
31537         * lib/yesno.c: Likewise.
31538         * lib/yesno.h: Likewise.
31539         * posix-modules: Likewise.
31540         * tests/test-alloca-opt.c: Likewise.
31541         * tests/test-arcfour.c: Likewise.
31542         * tests/test-arctwo.c: Likewise.
31543         * tests/test-argmatch.c: Likewise.
31544         * tests/test-argp-2.sh: Likewise.
31545         * tests/test-argp.c: Likewise.
31546         * tests/test-arpa_inet.c: Likewise.
31547         * tests/test-array_list.c: Likewise.
31548         * tests/test-array_oset.c: Likewise.
31549         * tests/test-atexit.c: Likewise.
31550         * tests/test-avltree_list.c: Likewise.
31551         * tests/test-avltree_oset.c: Likewise.
31552         * tests/test-avltreehash_list.c: Likewise.
31553         * tests/test-base64.c: Likewise.
31554         * tests/test-binary-io.c: Likewise.
31555         * tests/test-byteswap.c: Likewise.
31556         * tests/test-c-ctype.c: Likewise.
31557         * tests/test-c-strcasecmp.c: Likewise.
31558         * tests/test-c-strcasestr.c: Likewise.
31559         * tests/test-c-strncasecmp.c: Likewise.
31560         * tests/test-c-strstr.c: Likewise.
31561         * tests/test-canonicalize-lgpl.c: Likewise.
31562         * tests/test-canonicalize.c: Likewise.
31563         * tests/test-carray_list.c: Likewise.
31564         * tests/test-ceilf.c: Likewise.
31565         * tests/test-ceill.c: Likewise.
31566         * tests/test-count-one-bits.c: Likewise.
31567         * tests/test-crc.c: Likewise.
31568         * tests/test-dirname.c: Likewise.
31569         * tests/test-fbufmode.c: Likewise.
31570         * tests/test-fcntl.c: Likewise.
31571         * tests/test-fflush.c: Likewise.
31572         * tests/test-floorf.c: Likewise.
31573         * tests/test-floorl.c: Likewise.
31574         * tests/test-fopen.c: Likewise.
31575         * tests/test-fprintf-posix.c: Likewise.
31576         * tests/test-fprintf-posix.h: Likewise.
31577         * tests/test-fpurge.c: Likewise.
31578         * tests/test-freadable.c: Likewise.
31579         * tests/test-freadahead.c: Likewise.
31580         * tests/test-freading.c: Likewise.
31581         * tests/test-freopen.c: Likewise.
31582         * tests/test-frexp.c: Likewise.
31583         * tests/test-frexpl.c: Likewise.
31584         * tests/test-fseek.c: Likewise.
31585         * tests/test-fseeko.c: Likewise.
31586         * tests/test-fseterr.c: Likewise.
31587         * tests/test-fstrcmp.c: Likewise.
31588         * tests/test-ftell.c: Likewise.
31589         * tests/test-ftello.c: Likewise.
31590         * tests/test-fwritable.c: Likewise.
31591         * tests/test-fwriting.c: Likewise.
31592         * tests/test-getaddrinfo.c: Likewise.
31593         * tests/test-getpass.c: Likewise.
31594         * tests/test-gettimeofday.c: Likewise.
31595         * tests/test-hmac-md5.c: Likewise.
31596         * tests/test-hmac-sha1.c: Likewise.
31597         * tests/test-iconv.c: Likewise.
31598         * tests/test-iconvme.c: Likewise.
31599         * tests/test-inttypes.c: Likewise.
31600         * tests/test-isnan.c: Likewise.
31601         * tests/test-isnanf.c: Likewise.
31602         * tests/test-isnanl-nolibm.c: Likewise.
31603         * tests/test-isnanl.c: Likewise.
31604         * tests/test-isnanl.h: Likewise.
31605         * tests/test-ldexpl.c: Likewise.
31606         * tests/test-linked_list.c: Likewise.
31607         * tests/test-linkedhash_list.c: Likewise.
31608         * tests/test-locale.c: Likewise.
31609         * tests/test-localename.c: Likewise.
31610         * tests/test-lock.c: Likewise.
31611         * tests/test-lseek.c: Likewise.
31612         * tests/test-malloca.c: Likewise.
31613         * tests/test-math.c: Likewise.
31614         * tests/test-mbscasecmp.c: Likewise.
31615         * tests/test-mbscasestr1.c: Likewise.
31616         * tests/test-mbscasestr2.c: Likewise.
31617         * tests/test-mbscasestr3.c: Likewise.
31618         * tests/test-mbscasestr4.c: Likewise.
31619         * tests/test-mbschr.c: Likewise.
31620         * tests/test-mbscspn.c: Likewise.
31621         * tests/test-mbsncasecmp.c: Likewise.
31622         * tests/test-mbspbrk.c: Likewise.
31623         * tests/test-mbspcasecmp.c: Likewise.
31624         * tests/test-mbsrchr.c: Likewise.
31625         * tests/test-mbsspn.c: Likewise.
31626         * tests/test-mbsstr1.c: Likewise.
31627         * tests/test-mbsstr2.c: Likewise.
31628         * tests/test-mbsstr3.c: Likewise.
31629         * tests/test-md5.c: Likewise.
31630         * tests/test-memmem.c: Likewise.
31631         * tests/test-netinet_in.c: Likewise.
31632         * tests/test-open.c: Likewise.
31633         * tests/test-printf-frexp.c: Likewise.
31634         * tests/test-printf-frexpl.c: Likewise.
31635         * tests/test-printf-posix.c: Likewise.
31636         * tests/test-printf-posix.h: Likewise.
31637         * tests/test-rbtree_list.c: Likewise.
31638         * tests/test-rbtree_oset.c: Likewise.
31639         * tests/test-rbtreehash_list.c: Likewise.
31640         * tests/test-read-file.c: Likewise.
31641         * tests/test-rijndael.c: Likewise.
31642         * tests/test-search.c: Likewise.
31643         * tests/test-signbit.c: Likewise.
31644         * tests/test-sleep.c: Likewise.
31645         * tests/test-snprintf-posix.c: Likewise.
31646         * tests/test-snprintf-posix.h: Likewise.
31647         * tests/test-snprintf.c: Likewise.
31648         * tests/test-sprintf-posix.c: Likewise.
31649         * tests/test-sprintf-posix.h: Likewise.
31650         * tests/test-stat-time.c: Likewise.
31651         * tests/test-stdbool.c: Likewise.
31652         * tests/test-stdint.c: Likewise.
31653         * tests/test-stdio.c: Likewise.
31654         * tests/test-stdlib.c: Likewise.
31655         * tests/test-stpncpy.c: Likewise.
31656         * tests/test-strcasestr.c: Likewise.
31657         * tests/test-striconv.c: Likewise.
31658         * tests/test-striconveh.c: Likewise.
31659         * tests/test-striconveha.c: Likewise.
31660         * tests/test-string.c: Likewise.
31661         * tests/test-sys_select.c: Likewise.
31662         * tests/test-sys_socket.c: Likewise.
31663         * tests/test-sys_stat.c: Likewise.
31664         * tests/test-sys_time.c: Likewise.
31665         * tests/test-sysexits.c: Likewise.
31666         * tests/test-time.c: Likewise.
31667         * tests/test-tls.c: Likewise.
31668         * tests/test-trunc.c: Likewise.
31669         * tests/test-truncf.c: Likewise.
31670         * tests/test-truncl.c: Likewise.
31671         * tests/test-unistd.c: Likewise.
31672         * tests/test-vasnprintf-posix.c: Likewise.
31673         * tests/test-vasnprintf-posix2.c: Likewise.
31674         * tests/test-vasnprintf.c: Likewise.
31675         * tests/test-vasprintf-posix.c: Likewise.
31676         * tests/test-vasprintf.c: Likewise.
31677         * tests/test-verify.c: Likewise.
31678         * tests/test-vfprintf-posix.c: Likewise.
31679         * tests/test-vprintf-posix.c: Likewise.
31680         * tests/test-vsnprintf-posix.c: Likewise.
31681         * tests/test-vsnprintf.c: Likewise.
31682         * tests/test-vsprintf-posix.c: Likewise.
31683         * tests/test-wchar.c: Likewise.
31684         * tests/test-wctype.c: Likewise.
31685         * tests/test-wcwidth.c: Likewise.
31686         * tests/test-xstrtol.c: Likewise.
31687         * tests/test-xvasprintf.c: Likewise.
31688         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
31689         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
31690         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
31691         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
31692         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
31693         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
31694         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
31695         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
31696         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
31697         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
31698         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
31699         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
31700         * tests/uniname/test-uninames.c: Likewise.
31701         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
31702         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
31703         * tests/unistdio/test-u16-printf1.h: Likewise.
31704         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
31705         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
31706         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
31707         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
31708         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
31709         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
31710         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
31711         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
31712         * tests/unistdio/test-u32-printf1.h: Likewise.
31713         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
31714         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
31715         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
31716         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
31717         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
31718         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
31719         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
31720         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
31721         * tests/unistdio/test-u8-printf1.h: Likewise.
31722         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
31723         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
31724         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
31725         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
31726         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
31727         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
31728         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
31729         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
31730         * tests/unistdio/test-ulc-printf1.h: Likewise.
31731         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
31732         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
31733         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
31734         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
31735         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
31736         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
31737         * tests/uniwidth/test-u16-strwidth.c: Likewise.
31738         * tests/uniwidth/test-u16-width.c: Likewise.
31739         * tests/uniwidth/test-u32-strwidth.c: Likewise.
31740         * tests/uniwidth/test-u32-width.c: Likewise.
31741         * tests/uniwidth/test-u8-strwidth.c: Likewise.
31742         * tests/uniwidth/test-u8-width.c: Likewise.
31743         * tests/uniwidth/test-uc_width.c: Likewise.
31744         * config/srclist-update: Likewise.
31745         (fixlicense): Update to GPLv3+.
31746
31747         Change copyright notice from LGPLv2.1+ to LGPLv3+.
31748         * tests/test-tsearch.c: Change copyright notice.
31749
31750         Change copyright notice from LGPLv2.0+ to LGPLv3+.
31751         * lib/c-strcaseeq.h: Change copyright notice.
31752         * lib/streq.h: Likewise.
31753         * lib/uniconv.h: Likewise.
31754         * lib/uniconv/u-conv-from-enc.h: Likewise.
31755         * lib/uniconv/u-conv-to-enc.h: Likewise.
31756         * lib/uniconv/u-strconv-from-enc.h: Likewise.
31757         * lib/uniconv/u-strconv-to-enc.h: Likewise.
31758         * lib/uniconv/u16-conv-from-enc.c: Likewise.
31759         * lib/uniconv/u16-conv-to-enc.c: Likewise.
31760         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
31761         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
31762         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
31763         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
31764         * lib/uniconv/u32-conv-from-enc.c: Likewise.
31765         * lib/uniconv/u32-conv-to-enc.c: Likewise.
31766         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
31767         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
31768         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
31769         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
31770         * lib/uniconv/u8-conv-from-enc.c: Likewise.
31771         * lib/uniconv/u8-conv-to-enc.c: Likewise.
31772         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
31773         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
31774         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
31775         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
31776         * lib/uniname.h: Likewise.
31777         * lib/uniname/uniname.c: Likewise.
31778         * lib/unistdio.h: Likewise.
31779         * lib/unistdio/u-asnprintf.h: Likewise.
31780         * lib/unistdio/u-asprintf.h: Likewise.
31781         * lib/unistdio/u-printf-args.c: Likewise.
31782         * lib/unistdio/u-printf-args.h: Likewise.
31783         * lib/unistdio/u-printf-parse.h: Likewise.
31784         * lib/unistdio/u-snprintf.h: Likewise.
31785         * lib/unistdio/u-sprintf.h: Likewise.
31786         * lib/unistdio/u-vasprintf.h: Likewise.
31787         * lib/unistdio/u-vsnprintf.h: Likewise.
31788         * lib/unistdio/u-vsprintf.h: Likewise.
31789         * lib/unistdio/u16-asnprintf.c: Likewise.
31790         * lib/unistdio/u16-asprintf.c: Likewise.
31791         * lib/unistdio/u16-printf-parse.c: Likewise.
31792         * lib/unistdio/u16-snprintf.c: Likewise.
31793         * lib/unistdio/u16-sprintf.c: Likewise.
31794         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
31795         * lib/unistdio/u16-u16-asprintf.c: Likewise.
31796         * lib/unistdio/u16-u16-snprintf.c: Likewise.
31797         * lib/unistdio/u16-u16-sprintf.c: Likewise.
31798         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
31799         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
31800         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
31801         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
31802         * lib/unistdio/u16-vasnprintf.c: Likewise.
31803         * lib/unistdio/u16-vasprintf.c: Likewise.
31804         * lib/unistdio/u16-vsnprintf.c: Likewise.
31805         * lib/unistdio/u16-vsprintf.c: Likewise.
31806         * lib/unistdio/u32-asnprintf.c: Likewise.
31807         * lib/unistdio/u32-asprintf.c: Likewise.
31808         * lib/unistdio/u32-printf-parse.c: Likewise.
31809         * lib/unistdio/u32-snprintf.c: Likewise.
31810         * lib/unistdio/u32-sprintf.c: Likewise.
31811         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
31812         * lib/unistdio/u32-u32-asprintf.c: Likewise.
31813         * lib/unistdio/u32-u32-snprintf.c: Likewise.
31814         * lib/unistdio/u32-u32-sprintf.c: Likewise.
31815         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
31816         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
31817         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
31818         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
31819         * lib/unistdio/u32-vasnprintf.c: Likewise.
31820         * lib/unistdio/u32-vasprintf.c: Likewise.
31821         * lib/unistdio/u32-vsnprintf.c: Likewise.
31822         * lib/unistdio/u32-vsprintf.c: Likewise.
31823         * lib/unistdio/u8-asnprintf.c: Likewise.
31824         * lib/unistdio/u8-asprintf.c: Likewise.
31825         * lib/unistdio/u8-printf-parse.c: Likewise.
31826         * lib/unistdio/u8-snprintf.c: Likewise.
31827         * lib/unistdio/u8-sprintf.c: Likewise.
31828         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
31829         * lib/unistdio/u8-u8-asprintf.c: Likewise.
31830         * lib/unistdio/u8-u8-snprintf.c: Likewise.
31831         * lib/unistdio/u8-u8-sprintf.c: Likewise.
31832         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
31833         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
31834         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
31835         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
31836         * lib/unistdio/u8-vasnprintf.c: Likewise.
31837         * lib/unistdio/u8-vasprintf.c: Likewise.
31838         * lib/unistdio/u8-vsnprintf.c: Likewise.
31839         * lib/unistdio/u8-vsprintf.c: Likewise.
31840         * lib/unistdio/ulc-asnprintf.c: Likewise.
31841         * lib/unistdio/ulc-asprintf.c: Likewise.
31842         * lib/unistdio/ulc-printf-parse.c: Likewise.
31843         * lib/unistdio/ulc-snprintf.c: Likewise.
31844         * lib/unistdio/ulc-sprintf.c: Likewise.
31845         * lib/unistdio/ulc-vasnprintf.c: Likewise.
31846         * lib/unistdio/ulc-vasprintf.c: Likewise.
31847         * lib/unistdio/ulc-vsnprintf.c: Likewise.
31848         * lib/unistdio/ulc-vsprintf.c: Likewise.
31849         * lib/unistr.h: Likewise.
31850         * lib/unistr/u-cpy-alloc.h: Likewise.
31851         * lib/unistr/u-cpy.h: Likewise.
31852         * lib/unistr/u-endswith.h: Likewise.
31853         * lib/unistr/u-move.h: Likewise.
31854         * lib/unistr/u-set.h: Likewise.
31855         * lib/unistr/u-startswith.h: Likewise.
31856         * lib/unistr/u-stpcpy.h: Likewise.
31857         * lib/unistr/u-stpncpy.h: Likewise.
31858         * lib/unistr/u-strcat.h: Likewise.
31859         * lib/unistr/u-strcpy.h: Likewise.
31860         * lib/unistr/u-strcspn.h: Likewise.
31861         * lib/unistr/u-strdup.h: Likewise.
31862         * lib/unistr/u-strlen.h: Likewise.
31863         * lib/unistr/u-strncat.h: Likewise.
31864         * lib/unistr/u-strncpy.h: Likewise.
31865         * lib/unistr/u-strnlen.h: Likewise.
31866         * lib/unistr/u-strpbrk.h: Likewise.
31867         * lib/unistr/u-strspn.h: Likewise.
31868         * lib/unistr/u-strstr.h: Likewise.
31869         * lib/unistr/u-strtok.h: Likewise.
31870         * lib/unistr/u16-check.c: Likewise.
31871         * lib/unistr/u16-chr.c: Likewise.
31872         * lib/unistr/u16-cmp.c: Likewise.
31873         * lib/unistr/u16-cpy-alloc.c: Likewise.
31874         * lib/unistr/u16-cpy.c: Likewise.
31875         * lib/unistr/u16-endswith.c: Likewise.
31876         * lib/unistr/u16-mblen.c: Likewise.
31877         * lib/unistr/u16-mbsnlen.c: Likewise.
31878         * lib/unistr/u16-mbtouc-aux.c: Likewise.
31879         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
31880         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
31881         * lib/unistr/u16-mbtouc.c: Likewise.
31882         * lib/unistr/u16-mbtoucr.c: Likewise.
31883         * lib/unistr/u16-move.c: Likewise.
31884         * lib/unistr/u16-next.c: Likewise.
31885         * lib/unistr/u16-prev.c: Likewise.
31886         * lib/unistr/u16-set.c: Likewise.
31887         * lib/unistr/u16-startswith.c: Likewise.
31888         * lib/unistr/u16-stpcpy.c: Likewise.
31889         * lib/unistr/u16-stpncpy.c: Likewise.
31890         * lib/unistr/u16-strcat.c: Likewise.
31891         * lib/unistr/u16-strchr.c: Likewise.
31892         * lib/unistr/u16-strcmp.c: Likewise.
31893         * lib/unistr/u16-strcpy.c: Likewise.
31894         * lib/unistr/u16-strcspn.c: Likewise.
31895         * lib/unistr/u16-strdup.c: Likewise.
31896         * lib/unistr/u16-strlen.c: Likewise.
31897         * lib/unistr/u16-strmblen.c: Likewise.
31898         * lib/unistr/u16-strmbtouc.c: Likewise.
31899         * lib/unistr/u16-strncat.c: Likewise.
31900         * lib/unistr/u16-strncmp.c: Likewise.
31901         * lib/unistr/u16-strncpy.c: Likewise.
31902         * lib/unistr/u16-strnlen.c: Likewise.
31903         * lib/unistr/u16-strpbrk.c: Likewise.
31904         * lib/unistr/u16-strrchr.c: Likewise.
31905         * lib/unistr/u16-strspn.c: Likewise.
31906         * lib/unistr/u16-strstr.c: Likewise.
31907         * lib/unistr/u16-strtok.c: Likewise.
31908         * lib/unistr/u16-to-u32.c: Likewise.
31909         * lib/unistr/u16-to-u8.c: Likewise.
31910         * lib/unistr/u16-uctomb-aux.c: Likewise.
31911         * lib/unistr/u16-uctomb.c: Likewise.
31912         * lib/unistr/u32-check.c: Likewise.
31913         * lib/unistr/u32-chr.c: Likewise.
31914         * lib/unistr/u32-cmp.c: Likewise.
31915         * lib/unistr/u32-cpy-alloc.c: Likewise.
31916         * lib/unistr/u32-cpy.c: Likewise.
31917         * lib/unistr/u32-endswith.c: Likewise.
31918         * lib/unistr/u32-mblen.c: Likewise.
31919         * lib/unistr/u32-mbsnlen.c: Likewise.
31920         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
31921         * lib/unistr/u32-mbtouc.c: Likewise.
31922         * lib/unistr/u32-mbtoucr.c: Likewise.
31923         * lib/unistr/u32-move.c: Likewise.
31924         * lib/unistr/u32-next.c: Likewise.
31925         * lib/unistr/u32-prev.c: Likewise.
31926         * lib/unistr/u32-set.c: Likewise.
31927         * lib/unistr/u32-startswith.c: Likewise.
31928         * lib/unistr/u32-stpcpy.c: Likewise.
31929         * lib/unistr/u32-stpncpy.c: Likewise.
31930         * lib/unistr/u32-strcat.c: Likewise.
31931         * lib/unistr/u32-strchr.c: Likewise.
31932         * lib/unistr/u32-strcmp.c: Likewise.
31933         * lib/unistr/u32-strcpy.c: Likewise.
31934         * lib/unistr/u32-strcspn.c: Likewise.
31935         * lib/unistr/u32-strdup.c: Likewise.
31936         * lib/unistr/u32-strlen.c: Likewise.
31937         * lib/unistr/u32-strmblen.c: Likewise.
31938         * lib/unistr/u32-strmbtouc.c: Likewise.
31939         * lib/unistr/u32-strncat.c: Likewise.
31940         * lib/unistr/u32-strncmp.c: Likewise.
31941         * lib/unistr/u32-strncpy.c: Likewise.
31942         * lib/unistr/u32-strnlen.c: Likewise.
31943         * lib/unistr/u32-strpbrk.c: Likewise.
31944         * lib/unistr/u32-strrchr.c: Likewise.
31945         * lib/unistr/u32-strspn.c: Likewise.
31946         * lib/unistr/u32-strstr.c: Likewise.
31947         * lib/unistr/u32-strtok.c: Likewise.
31948         * lib/unistr/u32-to-u16.c: Likewise.
31949         * lib/unistr/u32-to-u8.c: Likewise.
31950         * lib/unistr/u32-uctomb.c: Likewise.
31951         * lib/unistr/u8-check.c: Likewise.
31952         * lib/unistr/u8-chr.c: Likewise.
31953         * lib/unistr/u8-cmp.c: Likewise.
31954         * lib/unistr/u8-cpy-alloc.c: Likewise.
31955         * lib/unistr/u8-cpy.c: Likewise.
31956         * lib/unistr/u8-endswith.c: Likewise.
31957         * lib/unistr/u8-mblen.c: Likewise.
31958         * lib/unistr/u8-mbsnlen.c: Likewise.
31959         * lib/unistr/u8-mbtouc-aux.c: Likewise.
31960         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
31961         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
31962         * lib/unistr/u8-mbtouc.c: Likewise.
31963         * lib/unistr/u8-mbtoucr.c: Likewise.
31964         * lib/unistr/u8-move.c: Likewise.
31965         * lib/unistr/u8-next.c: Likewise.
31966         * lib/unistr/u8-prev.c: Likewise.
31967         * lib/unistr/u8-set.c: Likewise.
31968         * lib/unistr/u8-startswith.c: Likewise.
31969         * lib/unistr/u8-stpcpy.c: Likewise.
31970         * lib/unistr/u8-stpncpy.c: Likewise.
31971         * lib/unistr/u8-strcat.c: Likewise.
31972         * lib/unistr/u8-strchr.c: Likewise.
31973         * lib/unistr/u8-strcmp.c: Likewise.
31974         * lib/unistr/u8-strcpy.c: Likewise.
31975         * lib/unistr/u8-strcspn.c: Likewise.
31976         * lib/unistr/u8-strdup.c: Likewise.
31977         * lib/unistr/u8-strlen.c: Likewise.
31978         * lib/unistr/u8-strmblen.c: Likewise.
31979         * lib/unistr/u8-strmbtouc.c: Likewise.
31980         * lib/unistr/u8-strncat.c: Likewise.
31981         * lib/unistr/u8-strncmp.c: Likewise.
31982         * lib/unistr/u8-strncpy.c: Likewise.
31983         * lib/unistr/u8-strnlen.c: Likewise.
31984         * lib/unistr/u8-strpbrk.c: Likewise.
31985         * lib/unistr/u8-strrchr.c: Likewise.
31986         * lib/unistr/u8-strspn.c: Likewise.
31987         * lib/unistr/u8-strstr.c: Likewise.
31988         * lib/unistr/u8-strtok.c: Likewise.
31989         * lib/unistr/u8-to-u16.c: Likewise.
31990         * lib/unistr/u8-to-u32.c: Likewise.
31991         * lib/unistr/u8-uctomb-aux.c: Likewise.
31992         * lib/unistr/u8-uctomb.c: Likewise.
31993         * lib/unitypes.h: Likewise.
31994         * lib/uniwidth.h: Likewise.
31995         * lib/uniwidth/cjk.h: Likewise.
31996         * lib/uniwidth/u16-strwidth.c: Likewise.
31997         * lib/uniwidth/u16-width.c: Likewise.
31998         * lib/uniwidth/u32-strwidth.c: Likewise.
31999         * lib/uniwidth/u32-width.c: Likewise.
32000         * lib/uniwidth/u8-strwidth.c: Likewise.
32001         * lib/uniwidth/u8-width.c: Likewise.
32002         * lib/uniwidth/width.c: Likewise.
32003
32004 2007-10-07  Bruno Haible  <bruno@clisp.org>
32005
32006         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
32007         The file is still under LGPL (see modules/inttypes).
32008
32009 2007-10-06  Bruno Haible  <bruno@clisp.org>
32010
32011         * modules/trunc (Dependencies): Add 'extensions'.
32012         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
32013         Reported by Ben Pfaff <blp@gnu.org>.
32014
32015 2007-10-06  Bruno Haible  <bruno@clisp.org>
32016
32017         * modules/freopen-tests: New file.
32018         * tests/test-freopen.c: New file.
32019
32020         * modules/fopen-tests: New file.
32021         * tests/test-fopen.c: New file.
32022
32023         * modules/fopen: New file.
32024         * lib/fopen.c: New file.
32025         * m4/fopen.m4: New file.
32026         * modules/freopen: New file.
32027         * lib/freopen.c: New file.
32028         * m4/freopen.m4: New file.
32029         * lib/stdio.in.h (fopen, freopen): New declarations.
32030         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
32031         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32032         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
32033         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32034         * doc/functions/fopen.texi: Mention the 'fopen' module.
32035         * doc/functions/freopen.texi: Mention the 'freopen' module.
32036
32037 2007-10-06  Bruno Haible  <bruno@clisp.org>
32038
32039         * modules/open-tests: New file.
32040         * tests/test-open.c: New file.
32041
32042         * modules/open: New file.
32043         * lib/open.c: New file.
32044         * m4/open.m4: New file.
32045         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
32046         lib/open.c does.
32047         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
32048         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
32049         macros.
32050         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
32051         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
32052         REPLACE_OPEN.
32053         * doc/functions/open.texi: Mention the 'open' module.
32054
32055 2007-10-04  Bruno Haible  <bruno@clisp.org>
32056
32057         * modules/ceill-tests: New file.
32058         * tests/test-ceill.c: New file.
32059
32060         * modules/ceill: New file.
32061         * lib/ceill.c: Replace entire file.
32062         * m4/ceill.m4: New file.
32063         * lib/math.in.h (ceill): Replace declaration.
32064         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
32065         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
32066         * doc/functions/ceill.texi: Mention the 'ceill' module.
32067         * modules/mathl (Files): Remove lib/ceill.c.
32068         (Depends-on): Add ceill.
32069
32070 2007-10-04  Bruno Haible  <bruno@clisp.org>
32071
32072         * modules/ceilf-tests: New file.
32073         * tests/test-ceilf.c: New file.
32074
32075         * modules/ceilf: New file.
32076         * lib/ceil.c: New file.
32077         * lib/ceilf.c: New file.
32078         * m4/ceilf.m4: New file.
32079         * lib/math.in.h (ceilf): New declaration.
32080         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
32081         HAVE_DECL_CEILF.
32082         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
32083         HAVE_DECL_CEILF.
32084         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
32085
32086 2007-10-04  Bruno Haible  <bruno@clisp.org>
32087
32088         * modules/floorl-tests: New file.
32089         * tests/test-floorl.c: New file.
32090
32091         * modules/floorl: New file.
32092         * lib/floorl.c: Replace entire file.
32093         * m4/floorl.m4: New file.
32094         * lib/math.in.h (floorl): Replace declaration.
32095         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
32096         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
32097         * doc/functions/floorl.texi: Mention the 'floorl' module.
32098         * modules/mathl (Files): Remove lib/floorl.c.
32099         (Depends-on): Add floorl.
32100
32101 2007-10-04  Bruno Haible  <bruno@clisp.org>
32102
32103         * modules/floorf-tests: New file.
32104         * tests/test-floorf.c: New file.
32105
32106         * modules/floorf: New file.
32107         * lib/floor.c: New file.
32108         * lib/floorf.c: New file.
32109         * m4/floorf.m4: New file.
32110         * lib/math.in.h (floorf): New declaration.
32111         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
32112         HAVE_DECL_FLOORF.
32113         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
32114         HAVE_DECL_FLOORF.
32115         * doc/functions/floorf.texi: Mention the 'floorf' module.
32116
32117 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
32118             Bruno Haible  <bruno@clisp.org>
32119
32120         Advertise for the Git server instead of the CVS server.
32121         * doc/gnulib-intro.texi (Steady Development): Mention the Git
32122         repository instead of the CVS one.
32123         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
32124         about all VCS systems generically.
32125         * doc/gnulib.texi (Introduction): Capitalize `Git'.
32126
32127 2007-10-04  Bruno Haible  <bruno@clisp.org>
32128
32129         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
32130         means.
32131         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
32132
32133 2007-10-04  Bruno Haible  <bruno@clisp.org>
32134
32135         * modules/truncl-tests: New file.
32136         * tests/test-truncl.c: New file.
32137
32138         * modules/truncl: New file.
32139         * lib/truncl.c: New file.
32140         * m4/truncl.m4: New file.
32141         * lib/math.in.h (truncl): New declaration.
32142         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
32143         HAVE_DECL_TRUNCL.
32144         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
32145         HAVE_DECL_TRUNCL.
32146         * doc/functions/truncl.texi: Mention the 'truncl' module.
32147
32148 2007-10-04  Bruno Haible  <bruno@clisp.org>
32149
32150         * modules/truncf-tests: New file.
32151         * tests/test-truncf.c: New file.
32152
32153         * modules/truncf: New file.
32154         * lib/trunc.c: Make paramerizable through USE_* macros.
32155         * lib/truncf.c: New file.
32156         * m4/truncf.m4: New file.
32157         * lib/math.in.h (truncf): New declaration.
32158         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
32159         HAVE_DECL_TRUNCF.
32160         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
32161         HAVE_DECL_TRUNCF.
32162         * doc/functions/truncf.texi: Mention the 'truncf' module.
32163
32164 2007-10-03  Bruno Haible  <bruno@clisp.org>
32165
32166         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
32167         augmentation also for tests modules.
32168         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
32169         * modules/atexit-tests (Makefile.am): Likewise.
32170         * modules/binary-io-tests (Makefile.am): Likewise.
32171         * modules/c-strcase-tests (Makefile.am): Likewise.
32172         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
32173         * modules/canonicalize-tests (Makefile.am): Likewise.
32174         * modules/closein-tests (Makefile.am): Likewise.
32175         * modules/fprintf-posix-tests (Makefile.am): Likewise.
32176         * modules/freadahead-tests (Makefile.am): Likewise.
32177         * modules/fseek-tests (Makefile.am): Likewise.
32178         * modules/fseeko-tests (Makefile.am): Likewise.
32179         * modules/ftell-tests (Makefile.am): Likewise.
32180         * modules/ftello-tests (Makefile.am): Likewise.
32181         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
32182         * modules/isnanl-tests (Makefile.am): Likewise.
32183         * modules/lseek-tests (Makefile.am): Likewise.
32184         * modules/mbscasecmp-tests (Makefile.am): Likewise.
32185         * modules/mbscasestr-tests (Makefile.am): Likewise.
32186         * modules/mbschr-tests (Makefile.am): Likewise.
32187         * modules/mbscspn-tests (Makefile.am): Likewise.
32188         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
32189         * modules/mbspbrk-tests (Makefile.am): Likewise.
32190         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
32191         * modules/mbsrchr-tests (Makefile.am): Likewise.
32192         * modules/mbsspn-tests (Makefile.am): Likewise.
32193         * modules/mbsstr-tests (Makefile.am): Likewise.
32194         * modules/printf-posix-tests (Makefile.am): Likewise.
32195         * modules/snprintf-posix-tests (Makefile.am): Likewise.
32196         * modules/sprintf-posix-tests (Makefile.am): Likewise.
32197         * modules/tsearch-tests (Makefile.am): Likewise.
32198         * modules/uniname/uniname-tests (Makefile.am): Likewise.
32199         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
32200         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
32201         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
32202         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
32203         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
32204         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
32205         * modules/vprintf-posix-tests (Makefile.am): Likewise.
32206         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
32207         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
32208         * modules/xstrtoimax-tests (Makefile.am): Likewise.
32209         * modules/xstrtol-tests (Makefile.am): Likewise.
32210         * modules/xstrtoumax-tests (Makefile.am): Likewise.
32211         * modules/yesno-tests (Makefile.am): Likewise.
32212
32213 2007-10-03  Bruno Haible  <bruno@clisp.org>
32214
32215         * modules/trunc-tests: New file.
32216         * tests/test-trunc.c: New file.
32217
32218         * modules/trunc: New file.
32219         * lib/trunc.c: New file.
32220         * m4/trunc.m4: New file.
32221         * lib/math.in.h (trunc): New declaration.
32222         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
32223         HAVE_DECL_TRUNC.
32224         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
32225         HAVE_DECL_TRUNC.
32226         * doc/functions/trunc.texi: Mention the 'trunc' module.
32227
32228 2007-10-03  Bruno Haible  <bruno@clisp.org>
32229
32230         * tests/test-fpending.c: New file, mostly copied
32231         from coreutils/lib/t-fpending.c.
32232         * modules/fpending-tests: New file.
32233
32234 2007-10-03  Bruno Haible  <bruno@clisp.org>
32235
32236         Port the stdio extensions to QNX (untested).
32237         * lib/fseterr.c (fseterr): Add support for QNX.
32238         * lib/fbufmode.c (fbufmode): Likewise.
32239         * lib/freadable.c (freadable): Likewise.
32240         * lib/fwritable.c (fwritable): Likewise.
32241         * lib/freading.c (freading): Likewise.
32242         * lib/fwriting.c (fwriting): Likewise.
32243         * lib/freadahead.c (freadahed): Likewise.
32244         * lib/fpurge.c (fpurge): Likewise.
32245         * lib/fseeko.c (rpl_fseeko): Likewise.
32246
32247 2007-10-03  Bruno Haible  <bruno@clisp.org>
32248             Jim Meyering  <jim@meyering.net>
32249             Eric Blake  <ebb9@byu.net>
32250
32251         * doc/relocatable.texi: Use @command instead of @program.
32252
32253 2007-10-02  Jim Meyering  <jim@meyering.net>
32254
32255         Perform one more "_.h" -> ".in.h" substitution.
32256         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
32257         instead of unistd_.h here, too.
32258
32259 2007-10-01  Bruno Haible  <bruno@clisp.org>
32260
32261         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
32262         Needed for the alloca-opt module.
32263
32264 2007-09-30  Bruno Haible  <bruno@clisp.org>
32265
32266         * lib/alloca.in.h: Renamed from lib/alloca_.h.
32267         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
32268         alloca_.h.
32269         * lib/argz.in.h: Renamed from lib/argz_.h.
32270         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
32271         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
32272         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
32273         byteswap_.h.
32274         * lib/dirent.in.h: Renamed from lib/dirent_.h.
32275         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
32276         dirent_.h.
32277         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
32278         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
32279         fcntl_.h.
32280         * lib/float.in.h: Renamed from lib/float_.h.
32281         * modules/float (Files, Makefile.am): Use float.in.h instead of
32282         float_.h.
32283         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
32284         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
32285         fnmatch_.h.
32286         * lib/getopt.in.h: Renamed from lib/getopt_.h.
32287         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
32288         getopt_.h.
32289         * lib/glob.in.h: Renamed from lib/glob_.h.
32290         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
32291         * lib/iconv.in.h: Renamed from lib/iconv_.h.
32292         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
32293         iconv_.h.
32294         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
32295         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
32296         inttypes_.h.
32297         * lib/locale.in.h: Renamed from lib/locale_.h.
32298         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
32299         locale_.h.
32300         * lib/math.in.h: Renamed from lib/math_.h.
32301         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
32302         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
32303         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
32304         of netinet_in_.h. Add dependency.
32305         * lib/poll.in.h: Renamed from lib/poll_.h.
32306         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
32307         * lib/search.in.h: Renamed from lib/search_.h.
32308         * modules/search (Files, Makefile.am): Use search.in.h instead of
32309         search_.h.
32310         * lib/signal.in.h: Renamed from lib/signal_.h.
32311         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
32312         _signal.h.
32313         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
32314         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
32315         stdbool_.h.
32316         * lib/stdint.in.h: Renamed from lib/stdint_.h.
32317         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
32318         stdint_.h.
32319         * lib/stdio.in.h: Renamed from lib/stdio_.h.
32320         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
32321         stdio_.h.
32322         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
32323         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
32324         stdlib_.h.
32325         * lib/string.in.h: Renamed from lib/string_.h.
32326         * modules/string (Files, Makefile.am): Use string.in.h instead of
32327         string_.h.
32328         * doc/gnulib-tool.texi (Initial import): Update.
32329         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
32330         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
32331         of sys_select_.h. Add dependency.
32332         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
32333         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
32334         of sys_socket_.h.
32335         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
32336         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
32337         sys_stat_.h.
32338         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
32339         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
32340         sys_time_.h.
32341         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
32342         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
32343         sysexits_.h.
32344         * lib/time.in.h: Renamed from lib/time_.h.
32345         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
32346         * lib/unistd.in.h: Renamed from lib/unistd_.h.
32347         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
32348         unistd_.h.
32349         * lib/wchar.in.h: Renamed from lib/wchar_.h.
32350         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
32351         wchar_.h.
32352         * lib/wctype.in.h: Renamed from lib/wctype_.h.
32353         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
32354         wctype_.h.
32355         * build-aux/bootstrap (slurp): Update.
32356         * lib/.cppi-disable: Update.
32357
32358 2007-09-30  Bruno Haible  <bruno@clisp.org>
32359
32360         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
32361         Needed on BeOS.
32362
32363 2007-09-30  Bruno Haible  <bruno@clisp.org>
32364
32365         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
32366
32367 2007-09-29  Bruno Haible  <bruno@clisp.org>
32368
32369         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
32370
32371 2007-09-29  Bruno Haible  <bruno@clisp.org>
32372
32373         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
32374         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
32375         * build-aux/install-reloc: Compile also areadlink.c.
32376         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
32377
32378 2007-09-29  Bruno Haible  <bruno@clisp.org>
32379
32380         * gnulib-tool (func_emit_initmacro_done): Indentation.
32381
32382 2007-09-29  Bruno Haible  <bruno@clisp.org>
32383
32384         * README: Add CVS checkout update instructions.
32385         Info from Bob Proulx <bob@proulx.com>.
32386
32387 2007-09-28  Eric Blake  <ebb9@byu.net>
32388
32389         Provide move-if-change.
32390         * build-aux/move-if-change: New file, based on best practice
32391         rather than any canonical upstream location.
32392
32393 2007-09-28  Jim Meyering  <jim@meyering.net>
32394
32395         Fix canonicalize loop-detection corner case.
32396         Do not attempt to stat the symlink values stored via seen_triple.
32397         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
32398         on linux-2.6.18, (but not 2.6.22).
32399         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
32400         triple_compare.  The former compares dev,ino,filename, while the latter
32401         would actually stat dirname(filename) when dev and ino were equal.
32402         * lib/hash-triple.c: Install <string.h>.
32403         (STREQ): Define.
32404         (triple_compare_ino_str): New function.
32405         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
32406
32407 2007-09-28  Eric Blake  <ebb9@byu.net>
32408
32409         Enforce that AC_REPLACE_FUNCS files exist.
32410         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
32411         override check for typos.
32412
32413         Fix test-closein on Solaris 10.
32414         * tests/test-closein.c (main): Don't assume stdin can be inherited
32415         closed on all systems.
32416         * tests/test-closein.sh: Likewise.
32417         Reported by Piotr Tarnowski.
32418
32419 2007-09-28  Jim Meyering  <jim@meyering.net>
32420
32421         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
32422
32423 2007-09-27  Jim Meyering  <jim@meyering.net>
32424
32425         canonicalize: Avoid a false-positive cycle failure.
32426         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
32427         Sort.  Remove cycle-check.
32428         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
32429         not cycle-check.h.
32430         (seen_triple): New function.
32431         (canonicalize_filename_mode): Use it instead of cycle-check.
32432         * tests/test-canonicalize.c: Add a test for this bug.
32433         * tests/test-canonicalize.sh: Set up and run the test.
32434
32435         New module, file-set, from coreutils.
32436         * modules/file-set: Define it.
32437         * lib/file-set.c, lib/file-set.h: Implement.
32438
32439         New module, hash-triple, from coreutils.
32440         * modules/hash-triple: Define it.
32441         * lib/hash-triple.c, lib/hash-triple.h: Implement.
32442
32443 2007-09-25  Eric Blake  <ebb9@byu.net>
32444
32445         Fix strerror on Interix.
32446         * lib/string_.h (strerror): Declare replacement.
32447         * doc/functions/strerror.texi (strerror): Document the Interix
32448         shortcoming.
32449         * modules/string (Makefile.am): Support new hooks.
32450         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
32451         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
32452         gl_FUNC_STRERROR_SEPARATE.
32453         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
32454         * lib/strerror.c (rpl_strerror): Provide replacement.
32455         * modules/strerror (Depends-on): Add string.
32456         (configure.ac): Detect use of module.
32457         * tests/test-strerror.c: New file.
32458         * modules/strerror-tests: New test module.
32459         * modules/argp (Depends-on): Add strerror.
32460         * modules/error (Depends-on): Likewise.
32461         Reported by Martin Koeppe.
32462
32463 2007-09-24  Bruno Haible  <bruno@clisp.org>
32464
32465         * README: Update git instructions.
32466
32467 2007-09-24  Eric Blake  <ebb9@byu.net>
32468
32469         Revert fpending breakage from 2007-09-08.
32470         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
32471         __fpending.c.
32472
32473 2007-09-24  Jim Meyering  <jim@meyering.net>
32474
32475         filenamecat.c: Add a test.
32476         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
32477         showing how the function works when DIR is the empty string.
32478
32479 2007-09-21  Simon Josefsson  <simon@josefsson.org>
32480
32481         * tests/test-canonicalize.sh: Turn on executable bit.
32482
32483 2007-09-19  Eric Blake  <ebb9@byu.net>
32484
32485         * README: Update CVS instructions.
32486
32487 2007-09-18  Bruno Haible  <bruno@clisp.org>
32488
32489         * modules/areadlink: New file.
32490         * lib/areadlink.h (areadlink): New declaration.
32491         * lib/areadlink.c: New file, based on lib/xreadlink.c.
32492
32493 2007-09-17  Jim Meyering  <jim@meyering.net>
32494
32495         * lib/savewd.c (ESTALE) [!defined]: Define.
32496         Reported to be required on Interix by Martin Koeppe.
32497
32498 2007-09-17  Bruno Haible  <bruno@clisp.org>
32499
32500         * gnulib-tool (func_version): Use $version.
32501
32502 2007-09-16  Bruno Haible  <bruno@clisp.org>
32503
32504         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
32505         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
32506         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
32507         Reported by Greg Schafer <gschafer@zip.com.au>.
32508
32509 2007-09-15  Bruno Haible  <bruno@clisp.org>
32510
32511         * gnulib-tool (sed): Try a little harder to make bash understand the
32512         alias.
32513         Reported by Bruce Korb <bruce.korb@gmail.com>.
32514
32515 2007-09-13  Eric Blake  <ebb9@byu.net>
32516
32517         * ChangeLog: Remove conflict markers.
32518
32519 2007-09-13  Simon Josefsson  <simon@josefsson.org>
32520
32521         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
32522         Reported by Bruno Haible <bruno@clisp.org>.
32523
32524 2007-09-12  Bruno Haible  <bruno@clisp.org>
32525
32526         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
32527         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
32528         is not defined.
32529
32530 2007-09-12  Eric Blake  <ebb9@byu.net>
32531
32532         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
32533         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
32534         Autoconf definition.
32535         * modules/euidaccess (Depends-on): Add extensions, for
32536         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
32537         * modules/fnmatch (Depends-on): Likewise.
32538         * modules/getaddrinfo (Depends-on): Likewise.
32539         * modules/getdelim (Depends-on): Likewise.
32540         * modules/getline (Depends-on): Likewise.
32541         * modules/getsubopt (Depends-on): Likewise.
32542         * modules/gettext (Depends-on): Likewise.
32543         * modules/group-member (Depends-on): Likewise.
32544         * modules/mbchar (Depends-on): Likewise.
32545         * modules/memmem (Depends-on): Likewise.
32546         * modules/mempcpy (Depends-on): Likewise.
32547         * modules/memrchr (Depends-on): Likewise.
32548         * modules/pagealign_alloc (Depends-on): Likewise.
32549         * modules/readutmp (Depends-on): Likewise.
32550         * modules/stpcpy (Depends-on): Likewise.
32551         * modules/stpncpy (Depends-on): Likewise.
32552         * modules/strchrnul (Depends-on): Likewise.
32553         * modules/strndup (Depends-on): Likewise.
32554         * modules/strsep (Depends-on): Likewise.
32555         * modules/strverscmp (Depends-on): Likewise.
32556         * modules/vasprintf (Depends-on): Likewise.
32557         * modules/wcwidth (Depends-on): Likewise.
32558         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
32559         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
32560         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
32561         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
32562         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
32563         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32564         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
32565         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
32566         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
32567         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
32568         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
32569         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32570         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32571         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
32572         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
32573         * m4/readutmp.m4 (gl_READUTMP): Likewise.
32574         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
32575         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32576         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32577         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32578         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32579         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32580         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32581         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
32582         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
32583         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
32584         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
32585         so that lock.m4 can be used in gettext without extensions module.
32586
32587 2007-09-11  Bruno Haible  <bruno@clisp.org>
32588
32589         * m4/isc-posix.m4: Remove file.
32590         Suggested by Eric Blake.
32591
32592 2007-09-11  Eric Blake  <ebb9@byu.net>
32593
32594         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
32595
32596 2007-09-10  Bruno Haible  <bruno@clisp.org>
32597
32598         * posix-modules: Fix typo in error message.
32599         Reported by Matt <mkraai@beckman.com>.
32600
32601 2007-09-09  Bruno Haible  <bruno@clisp.org>
32602
32603         * doc/functions/getdelim.texi: Update list of platforms lacking the
32604         function.
32605         * doc/functions/getline.texi: Likewise.
32606
32607 2007-09-09  Jim Meyering  <jim@meyering.net>
32608
32609         * lib/hash.c (hash_initialize): Detect calloc failure.
32610         Reported by Bruno Haible.
32611
32612 2007-09-09  Bruno Haible  <bruno@clisp.org>
32613
32614         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
32615         malloc or realloc fails.
32616
32617 2007-09-09  Bruno Haible  <bruno@clisp.org>
32618
32619         * modules/getcwd (Depends-on): Add malloc-posix.
32620         * modules/glob (Depends-on): Likewise.
32621         * modules/putenv (Depends-on): Likewise.
32622         * modules/strdup (Depends-on): Likewise.
32623         * modules/getdelim (Depends-on): Add realloc-posix.
32624         * modules/read-file (Depends-on): Likewise.
32625
32626 2007-09-09  Bruno Haible  <bruno@clisp.org>
32627
32628         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
32629         (gl_FUNC_MALLOC_POSIX): Require it.
32630         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
32631         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
32632         * modules/realloc (Files): Add m4/malloc.m4.
32633         * modules/calloc (Files): Likewise.
32634
32635 2007-09-09  Bruno Haible  <bruno@clisp.org>
32636
32637         * modules/malloc-posix: New file.
32638         * modules/malloc (Depends-on): Add malloc-posix.
32639         * lib/malloc.c: Include errno.h.
32640         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
32641         and a POSIX-compatible malloc into a single function. Set ENOMEM
32642         when returning NULL.
32643         * m4/malloc.m4: New file.
32644         * doc/functions/malloc.texi: Mention the malloc-posix module.
32645         * lib/stdlib_.h (malloc): New declaration.
32646         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32647         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
32648         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
32649         and HAVE_MALLOC_POSIX.
32650
32651 2007-09-09  Bruno Haible  <bruno@clisp.org>
32652
32653         * modules/realloc-posix: New file.
32654         * modules/realloc (Depends-on): Add realloc-posix.
32655         * lib/realloc.c: Include errno.h.
32656         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
32657         and a POSIX-compatible realloc into a single function. Set ENOMEM
32658         when returning NULL.
32659         * m4/realloc.m4: New file.
32660         * doc/functions/realloc.texi: Mention the realloc-posix module.
32661         * lib/stdlib_.h (realloc): New declaration.
32662         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32663         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
32664         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
32665         and HAVE_REALLOC_POSIX.
32666
32667 2007-09-09  Bruno Haible  <bruno@clisp.org>
32668
32669         * modules/calloc-posix: New file.
32670         * modules/calloc (Depends-on): Add calloc-posix.
32671         * lib/calloc.c: Include errno.h.
32672         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
32673         and a POSIX-compatible calloc into a single function. Set ENOMEM
32674         when returning NULL.
32675         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
32676         * doc/functions/calloc.texi: Mention the calloc-posix module.
32677         * lib/stdlib_.h (calloc): New declaration.
32678         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32679         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
32680         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
32681         and HAVE_CALLOC_POSIX.
32682
32683 2007-09-09  Bruno Haible  <bruno@clisp.org>
32684
32685         Allow for modules to show an arbitrary notice.
32686         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
32687         * gnulib-tool: New option --extract-notice.
32688         (func_usage): Document it.
32689         (sed_extract_prog): Update.
32690         (func_get_notice): New function.
32691         (func_modules_notice): New function.
32692         (func_import, func_create_testdir): Invoke it.
32693         Suggested by Jim Meyering.
32694
32695 2007-09-09  Bruno Haible  <bruno@clisp.org>
32696
32697         * gnulib-tool: New options --verbose, --quiet.
32698         (func_usage): Document them.
32699         (verbose): New variable.
32700         (func_execute_command): New function.
32701         (func_import): Don't show the module list and the file list if
32702         $verbose < 0.
32703         (func_create_testdir): Likewise. Use func_execute_command.
32704         (func_create_megatestdir): Use func_execute_command.
32705
32706 2007-09-08  Bruno Haible  <bruno@clisp.org>
32707
32708         * gnulib-tool (func_import): Prefer rsync over wget when available,
32709         for fetching the PO files.
32710
32711 2007-09-08  Bruno Haible  <bruno@clisp.org>
32712
32713         * posix-modules: New file. Portions copied from gnulib-tool.
32714         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
32715
32716 2007-09-08  Jim Meyering  <jim@meyering.net>
32717
32718         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
32719         * lib/fpending.h: Rename from __fpending.h.
32720         * lib/fpending.c: Rename from __fpending.c.
32721         Include "fpending.h", not "__fpending.h".
32722         * lib/__fpending.h, lib/__fpending.c: Remove files.
32723         * modules/fpending (Files): Reflect new file names.
32724         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
32725
32726 2007-09-08  Bruno Haible  <bruno@clisp.org>
32727
32728         * m4/inttypes-h.m4: Remove stub file.
32729
32730 2007-09-07  Simon Josefsson  <simon@josefsson.org>
32731
32732         * doc/headers/stdint.texi: Discuss #include_next issue.
32733
32734 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32735
32736         * build-aux/bootstrap: Remove obsolete comment about wget --help.
32737
32738 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32739
32740         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
32741         in variable name.
32742
32743 2007-09-03  Jim Meyering  <jim@meyering.net>
32744
32745         New module: git-version-gen.
32746         * modules/git-version-gen: New file.
32747
32748         Import changes from coreutils for bootstrap script.
32749
32750         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
32751
32752         bootstrap: uses rsync to download the .po files
32753         * build-aux/bootstrap (po_download_command_format): New global.
32754         (download_po_files): Use rsync.
32755         (update_po_files): Don't remove .po files after download,
32756         so future rsync runs can take advantage of the copies.
32757
32758         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
32759
32760         Solve the unnecessary-.po-file-regeneration problem once and for all.
32761         * build-aux/bootstrap (download_po_files): New function, renamed from
32762         get_translations.  Now, downloads, but doesn't update LINGUAS.
32763         (update_po_files): New function.
32764
32765         bootstrap: Ignore more.
32766         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
32767         uniwidth to e.g., lib/.gitignore.
32768         (slurp): Handle the sys_stat_.h -> sys mapping, too.
32769
32770         * build-aux/bootstrap: New setting: vc_ignore.
32771         (insert_sorted_if_absent): Create $file if absent.
32772         Adapt to new, possibly empty, list: $vc_ignore.
32773
32774         bootstrap: generate more ignorable names
32775         * build-aux/bootstrap (slurp): When generating ignorable names,
32776         also map .sin to .sed, .gperf to .c, and .y to .c.
32777
32778 2007-09-03  Jim Meyering  <jim@meyering.net>
32779
32780         * build-aux/git-version-gen: New file, from coreutils.  For details, see
32781         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
32782
32783 2007-09-02  Bruno Haible  <bruno@clisp.org>
32784
32785         Fix mis-recognition of 'mcs' on QNX 6.
32786         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
32787         output contains the string "Mono".
32788         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
32789         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
32790
32791 2007-09-01  Bruno Haible  <bruno@clisp.org>
32792
32793         Fix collision between uniwidth/* and linebreak modules.
32794         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
32795         u32_width): Remove declarations.
32796         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
32797         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
32798         streq3, streq2, streq1, streq0): Remove functions.
32799         (STREQ): Remove macro.
32800         (is_cjk_encoding): Remove function.
32801         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
32802         (uc_width, u8_width, u16_width, u32_width): Remove functions.
32803         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
32804         * NEWS: Document the change.
32805
32806 2007-09-01  Bruno Haible  <bruno@clisp.org>
32807
32808         * lib/streq.h: Add double-inclusion guard.
32809
32810 2007-09-01  Karl Berry  <karl@gnu.org>
32811
32812         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
32813
32814 2007-08-28  Jim Meyering  <jim@meyering.net>
32815
32816         Rename mreadlink_with_size to areadlink_with_size.
32817         * NEWS: Document the change.
32818         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
32819         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
32820         * lib/mreadlink.h: Rename this to...
32821         * lib/areadlink.h: ...this.
32822         * modules/mreadlink-with-size: Rename this to...
32823         * modules/areadlink-with-size: ...this.
32824         * lib/canonicalize.c: Reflect the renaming.
32825         * modules/canonicalize: Likewise.
32826
32827 2007-08-26  Bruno Haible  <bruno@clisp.org>
32828
32829         * gnulib-tool (func_import): When deciding which files to remove,
32830         consider also dangling symbolic links.
32831         Reported by Eric Blake.
32832
32833 2007-08-26  Bruno Haible  <bruno@clisp.org>
32834
32835         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
32836
32837 2007-08-23  Simon Josefsson  <simon@josefsson.org>
32838
32839         * lib/readline.c: Don't include getline.h, the prototype is now
32840         found in stdio.h.
32841
32842 2007-08-23  Jim Meyering  <jim@meyering.net>
32843
32844         Getdelim touchup.
32845         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
32846         around the funlockfile call, since funlockfile never sets errno.
32847         Don't set errno upon failed realloc.
32848
32849 2007-08-22  Eric Blake  <ebb9@byu.net>
32850
32851         Getline touchups.
32852         * lib/getdelim.c (getdelim): Revert regression that required *n to
32853         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
32854         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
32855         getdelim, rather than whether implementation is missing.
32856         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
32857         * lib/stdio_.h (getline): Also declare if replacement is
32858         required.
32859         * doc/functions/getdelim.texi: New file.
32860         * doc/functions/getline.texi: Likewise.
32861         * doc/gnulib.texi (Function Substitutes): Add new files.
32862         Reported by Bruno Haible.
32863
32864 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
32865
32866         * users.txt: Add Guile.
32867
32868 2007-08-22  Eric Blake  <ebb9@byu.net>
32869
32870         * tests/test-getdelim.c (main): Use remove, not unlink.
32871         * tests/test-getline.c (main): Likewise.
32872
32873         Move getline and getdelim into stdio.h, per POSIX 200x.
32874         * modules/getline (Files): Remove getline.h.
32875         (Depends-on): Add stdio.
32876         (configure.ac): Add module indicator.
32877         * modules/getdelim (Files): Remove getdelim.h.
32878         (Depends-on): Add stdio.
32879         (configure.ac): Add module indicator.
32880         * modules/stdio (Makefile.am): Work with new indicators.
32881         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
32882         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
32883         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32884         * lib/getdelim.h: Delete.
32885         * lib/getline.h: Delete.
32886         * lib/stdio_.h (getdelim, getline): Declare.
32887         * modules/getdelim-tests: New module.
32888         * modules/getline-tests: Likewise.
32889         * tests/test-getdelim.c: New file.
32890         * tests/test-getline.c: Likewise.
32891         * NEWS: Document the change.
32892         * lib/getline.c: Update choice of header.
32893         * lib/csharpcomp.c: Likewise.
32894         * lib/getpass.c: Likewise.
32895         * lib/javacomp.c: Likewise.
32896         * lib/javaversion.c: Likewise.
32897         * lib/yesno.c: Likewise.
32898         * lib/getdelim.c: Likewise.
32899         (getdelim): Set errno on failure, and avoid memory leak.
32900
32901 2007-08-19  Bruno Haible  <bruno@clisp.org>
32902
32903         * modules/closein (Depends-on): Add freadahead.
32904         * lib/closein.c: Include freadahead.h.
32905         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
32906         is zero.
32907
32908 2007-08-19  Bruno Haible  <bruno@clisp.org>
32909
32910         * modules/freadahead-tests: New file.
32911         * tests/test-freadahead.sh: New file.
32912         * tests/test-freadahead.c: New file.
32913
32914         * modules/freadahead: New file.
32915         * lib/freadahead.h: New file.
32916         * lib/freadahead.c: New file.
32917         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
32918         fbufmode, fpurge, freadable, fwritable.
32919
32920 2007-08-19  Eric Blake  <ebb9@byu.net>
32921
32922         Test yesno in combination with closein.
32923         * lib/yesno.c (yesno): Document use of stdin.
32924         * modules/yesno-tests (Files): New module.
32925         * tests/test-yesno.c (main): New file.
32926         * tests/test-yesno.sh: Likewise.
32927
32928 2007-08-19  Bruno Haible  <bruno@clisp.org>
32929
32930         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
32931         * lib/fseeko.c (rpl_fseeko): Likewise.
32932         * lib/fseterr.c (fseterr): Likewise.
32933
32934 2007-08-19  Bruno Haible  <bruno@clisp.org>
32935
32936         * tests/test-lseek.c (main): Disable a test for BeOS.
32937         * doc/functions/lseek.texi: Document the BeOS bug.
32938
32939 2007-08-19  Bruno Haible  <bruno@clisp.org>
32940             Eric Blake  <ebb9@byu.net>
32941
32942         * lib/lseek.c: Include <sys/stat.h>.
32943         (rpl_lseek): Add workaround code also for Unix platforms.
32944         Needed for BeOS.
32945         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
32946         * doc/functions/lseek.texi: Document BeOS definiency.
32947
32948 2007-08-18  Bruno Haible  <bruno@clisp.org>
32949
32950         * modules/fstrcmp-tests: New file.
32951         * tests/test-fstrcmp.c: New file.
32952
32953 2007-08-18  Bruno Haible  <bruno@clisp.org>
32954
32955         * modules/fstrcmp: New file, from GNU gettext with modifications.
32956         * lib/fstrcmp.h: New file, from GNU gettext.
32957         * lib/fstrcmp.c: New file, from GNU gettext.
32958         * MODULES.html.sh (String handling): Add fstrcmp.
32959
32960 2007-08-18  Bruno Haible  <bruno@clisp.org>
32961
32962         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
32963         'bool'.
32964         (diag, compareseq): Remove const from the ctxt argument.
32965         (USE_HEURISTIC): Undefine at the end.
32966
32967 2007-08-18  Jim Meyering  <jim@meyering.net>
32968
32969         New file: lib/idcache.h
32970         * NEWS: Mention the addition.
32971         * modules/idcache (Files): Add lib/idcache.h
32972         * lib/idcache.c: Include "idcache.h".
32973         Don't include <sys/types.h>.
32974         Add a FIXME comment.
32975         Move file-scoped "static" declarations to the top.
32976         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
32977
32978 2007-08-17  Bruno Haible  <bruno@clisp.org>
32979         and Paul Eggert  <eggert@cs.ucla.edu>
32980
32981         * MODULES.html.sh: Add diffseq.
32982         * modules/diffseq: New file.
32983         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
32984         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
32985
32986 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32987
32988         Import changes from coreutils for bootstrap script.
32989
32990         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
32991
32992         * build-aux/bootstrap (slurp): Work even in environments where
32993         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
32994         current code does not slurp files whose names start with ".", and
32995         this looks like it might be a troublesome area.
32996
32997         2007-07-11  Jim Meyering  <jim@meyering.net>
32998
32999         If there's a GPL vN copyright comment, require that N == 3.
33000
33001         2007-07-08  Jim Meyering  <jim@meyering.net>
33002
33003         Run the coreutils-specific code only if tests/Makefile.am.in exists.
33004         * build-aux/bootstrap (mam_template): Move definition out of loop.
33005
33006         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
33007
33008         * build-aux/bootstrap (symlink_to_dir): Rename function from
33009         symlink_to_gnulib.  Add a directory parameter.  Update all
33010         callers.
33011         (cp_mark_as_generated): Also check for -- and link to -- files in
33012         gl/.
33013
33014         2007-07-08  Jim Meyering  <jim@meyering.net>
33015
33016         Adapt to deeper hierarchy in gnulib.
33017         * build-aux/bootstrap (symlink_to_dir): If the destination
33018         directory doesn't exist, create it. This is required at least for
33019         "lib/uniwidth/cjk.h".
33020
33021         2007-05-15  Jim Meyering  <jim@meyering.net>
33022
33023         * build-aux/bootstrap: Now that generated Makefile.am files
33024         are no longer under version control, they must be created at
33025         bootstrap time.
33026
33027 2007-08-14  Ben Pfaff  <blp@gnu.org>
33028
33029         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
33030
33031 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
33032
33033         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
33034         given the changes below.
33035         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
33036         even on hosts that have padding bits beyond the supported 64.
33037
33038 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
33039
33040         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
33041         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
33042         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
33043         depends on it.
33044         (xstrtol_error): Remove.
33045         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
33046         but with a different signature.
33047         (ATTRIBUTE_NORETURN, __attribute__): New macros.
33048         * lib/xstrtol-error.c: Include exitfail.h.
33049         (xstrtol_fatal): New function, with a different signature from the
33050         old xstrtol_error, so that the caller need not worry about passing
33051         in an exit status, or about storage management of the option argument.
33052         (xstrtol_error): Now a static function.  Redo signature to
33053         implement xstrtol_fatal.  Output the correct number of hyphens in
33054         front of the option so that the caller need not worry about
33055         storage management.
33056         (N_): New macro.
33057         (_): Remove; not used now.
33058         * modules/xstrtol: Depend on getopt.
33059         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
33060         of old STRTOL_FATAL_ERROR macro.
33061         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
33062         of test program.
33063         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
33064         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
33065
33066 2007-08-08  Eric Blake  <ebb9@byu.net>
33067
33068         * lib/xstrtol-error.c: Add missing include.
33069
33070         Move xstrtol messages into gnulib domain, when --pobase is used.
33071         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
33072         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
33073         * modules/xstrtol (Files): Distribute new file.
33074         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
33075         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
33076         * tests/test-xstrtol.c: ...into new file.
33077         * tests/test-xstrtoul.c: Also test xstrtoul.
33078         * tests/test-xstrtoimax.c: Also test xstrtoimax.
33079         * tests/test-xstrtoumax.c: Also test xstrtoumax.
33080         * tests/test-xstrtol.sh: Drive the tests.
33081         * tests/test-xstrtoimax.sh: Likewise.
33082         * tests/test-xstrtoumax.sh: Likewise.
33083         * modules/xstrtol-tests: New module.
33084         * modules/xstrtoimax-tests: Likewise.
33085         * modules/xstrtoumax-tests: Likewise.
33086
33087 2007-08-08  Jim Meyering  <jim@meyering.net>
33088
33089         New function: mfile_name_concat.
33090         * lib/filenamecat.c (mfile_name_concat): New function, just like
33091         file_name_concat, but return NULL upon failure rather than exiting
33092         with a diagnostic.
33093         * lib/filenamecat.h: Declare it.
33094
33095 2007-08-07  Bruno Haible  <bruno@clisp.org>
33096
33097         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
33098         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
33099         warning from gcc.
33100         Reported by Eric Blake.
33101
33102 2007-08-07  Simon Josefsson  <simon@josefsson.org>
33103
33104         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
33105         * modules/crypto/arcfour (License): Likewise.
33106         * modules/crypto/des-tests (License): Likewise.
33107         * modules/crypto/gc-arctwo-tests (License): Likewise.
33108         * modules/crypto/gc-des-tests (License): Likewise.
33109         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
33110         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
33111         * modules/crypto/gc-md2-tests (License): Likewise.
33112         * modules/crypto/gc-md4-tests (License): Likewise.
33113         * modules/crypto/gc-md5-tests (License): Likewise.
33114         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
33115         * modules/crypto/gc-rijndael-tests (License): Likewise.
33116         * modules/crypto/gc-sha1-tests (License): Likewise.
33117         * modules/crypto/gc-tests (License): Likewise.
33118         * modules/crypto/hmac-md5 (License): Likewise.
33119         * modules/crypto/hmac-sha1 (License): Likewise.
33120         * modules/crypto/md2-tests (License): Likewise.
33121         * modules/crypto/md4-tests (License): Likewise.
33122         * modules/crypto/md5 (License): Likewise.
33123         * modules/crypto/rijndael (License): Likewise.
33124         * modules/crypto/sha1 (License): Likewise.
33125         * modules/memxor (License): Likewise.
33126
33127 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33128         and Bruno Haible  <bruno@clisp.org>
33129
33130         * NEWS: Describe interface changes to human, xstrtol.
33131         * lib/human.h: Include <xstrtol.h>.
33132         (human_options): Return enum strtol_error, not int.  Remove
33133         bool arg; take int * instead.
33134         * lib/human.c: Don't include "gettext.h".
33135         (_): Remove; no longer used.
33136         Don't include <xstrtol.h>, since human.h does it.
33137         (human_options): Adjust to abovementioned interface changes.
33138         Do not report error to stderr; that's now the caller's
33139         responsibility.
33140         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
33141         interface change.
33142         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
33143         Str, Argument_type_string.  All uses changed.  Put " argument"
33144         in diagnostics to make them clearer.  Change wording of suffix
33145         message for clarity.
33146         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
33147         Argument_type_string.
33148         (STRTOL_FATAL_WARN): Remove; no longer used.
33149         * modules/human (Depends-on): Remove gettext-h.
33150
33151 2007-08-06  Simon Josefsson  <simon@josefsson.org>
33152
33153         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
33154
33155 2007-07-31  Bruno Haible  <bruno@clisp.org>
33156
33157         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
33158         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
33159         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
33160
33161 2007-07-31  Bruno Haible  <bruno@clisp.org>
33162
33163         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
33164         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
33165
33166 2007-07-30  Bruno Haible  <bruno@clisp.org>
33167
33168         * modules/base64 (License): Use the synonymous term "LGPLv2+".
33169         * modules/c-ctype (License): Likewise.
33170         * modules/c-strcase (License): Likewise.
33171         * modules/check-version (License): Likewise.
33172         * modules/iconv (License): Likewise.
33173         * modules/iconv_open (License): Likewise.
33174         * modules/read-file (License): Likewise.
33175         * modules/striconv (License): Likewise.
33176         * modules/strverscmp (License): Likewise.
33177         * modules/vasprintf (License): Likewise.
33178         * modules/crypto/des (License): Likewise.
33179         * modules/crypto/gc (License): Likewise.
33180         * modules/crypto/gc-arcfour (License): Likewise.
33181         * modules/crypto/gc-arctwo (License): Likewise.
33182         * modules/crypto/gc-des (License): Likewise.
33183         * modules/crypto/gc-hmac-md5 (License): Likewise.
33184         * modules/crypto/gc-hmac-sha1 (License): Likewise.
33185         * modules/crypto/gc-md2 (License): Likewise.
33186         * modules/crypto/gc-md4 (License): Likewise.
33187         * modules/crypto/gc-md5 (License): Likewise.
33188         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
33189         * modules/crypto/gc-random (License): Likewise.
33190         * modules/crypto/gc-rijndael (License): Likewise.
33191         * modules/crypto/gc-sha1 (License): Likewise.
33192         * modules/crypto/md2 (License): Likewise.
33193         * modules/crypto/md4 (License): Likewise.
33194
33195 2007-07-30  Jim Meyering  <jim@meyering.net>
33196
33197         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
33198         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
33199         it has valid stat data.  This bug would cause du not to count the
33200         sizes of inaccessible directories.
33201         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
33202         in <http://bugzilla.redhat.com/250077>.
33203
33204 2007-07-25  Peter O'Gorman  <peter@pogma.com>
33205             Bruno Haible  <bruno@clisp.org>
33206
33207         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
33208         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
33209         #include_next, gives a diagnostic about it, but reports no error in
33210         the exit code.
33211         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
33212
33213 2007-07-24  Ben Pfaff  <blp@gnu.org>
33214
33215         Improve name: "count-one-bits" is better than "popcount".
33216         * MODULES.html.sh: Update name.
33217         * lib/popcount.h: Renamed lib/count-one-bits.h.
33218         (popcount): Renamed count_one_bits.
33219         (popcountl): Renamed count_one_bits_l.
33220         (popcountll): Renamed count_one_bits_ll.
33221         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
33222         * modules/popcount: Renamed module/count-one-bits.
33223         * modules/popcount-tests: Renamed module/count-one-bits-tests.
33224         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
33225
33226 2007-07-23  Ben Pfaff  <blp@gnu.org>
33227
33228         * lib/popcount.h (popcount32): Reduce size of constants, to allow
33229         better code generation, and add U to large constants to avoid
33230         warnings, in non-GCC case.
33231         Suggested by Bruno Haible.
33232
33233 2007-07-23  Ben Pfaff  <blp@gnu.org>
33234
33235         * lib/popcount.h: Use verify_true instead of if...abort.
33236         * modules/popcount: Depend on verify module.
33237         Suggested by Jim Meyering.
33238
33239 2007-07-23  Bruno Haible  <bruno@clisp.org>
33240
33241         * gnulib-tool (func_import): Create a .cvsignore file also when the
33242         directory is not yet in CVS but the toplevel directory is. When
33243         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
33244         Reported by Karl Berry.
33245
33246 2007-07-22  Ben Pfaff  <blp@gnu.org>
33247
33248         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
33249         case.
33250         Suggested by Eric Blake.
33251
33252 2007-07-22  Ben Pfaff  <blp@gnu.org>
33253
33254         New module: popcount.
33255         * MODULES.html.sh: Add popcount.
33256         * modules/popcount: New file.
33257         * modules/popcount-tests: New file.
33258         * tests/test-popcount.c: New file.
33259         * lib/popcount.h: New file.
33260         * m4/popcount.m4: New file.
33261
33262 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
33263
33264         * build-aux/announce-gen: Update to GPLv3.
33265
33266         * build-aux/config.guess: Update from config.
33267
33268 2007-07-21  Bruno Haible  <bruno@clisp.org>
33269
33270         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
33271         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
33272
33273 2007-07-20  Jim Meyering  <jim@meyering.net>
33274
33275         * check-module: Diagnose a self-dependency.
33276
33277 2007-07-19  Bruno Haible  <bruno@clisp.org>
33278
33279         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
33280         empty.
33281         Reported by Eric Blake.
33282
33283 2007-07-18  Bruno Haible  <bruno@clisp.org>
33284
33285         * gnulib-tool: New options --po-base, --po-domain.
33286         (func_usage): Document them.
33287         (pobase, po_domain): New variables.
33288         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
33289         DEFAULT_TEXT_DOMAIN.
33290         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
33291         (func_import): Consider pobase and po_domain. Create a po/ directory.
33292         (func_create_testdir): Set pobase and po_domain to empty.
33293         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
33294         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
33295
33296 2007-07-18  Bruno Haible  <bruno@clisp.org>
33297
33298         * gnulib-tool (func_get_automake_snippet): Synthesize also an
33299         EXTRA_DIST augmentation for files in build-aux/.
33300
33301 2007-07-16  Bruno Haible  <bruno@clisp.org>
33302
33303         * modules/lseek (License): Use the synonymous term "LGPLv2+".
33304         * modules/getdelim (License): Likewise.
33305
33306 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33307
33308         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
33309         * modules/d-type (License): Likewise.
33310         * modules/extensions (License): Likewise.
33311         * modules/fnmatch (License): Likewise.
33312         * modules/fseeko (License): Likewise.
33313         * modules/getaddrinfo (License): Likewise.
33314         * modules/getline (License): Likewise.
33315         * modules/getlogin_r (License): Likewise.
33316         * modules/getpass (License): Likewise.
33317         * modules/gettimeofday (License): Likewise.
33318         * modules/glob (License): Likewise.
33319         * modules/inet_ntop (License): Likewise.
33320         * modules/malloc (License): Likewise.
33321         * modules/malloca (License): Likewise.
33322         * modules/memmem (License): Likewise.
33323         * modules/mempcpy (License): Likewise.
33324         * modules/memset (License): Likewise.
33325         * modules/minmax (License): Likewise.
33326         * modules/mktime (License): Likewise.
33327         * modules/netinet_in (License): Likewise.
33328         * modules/pathmax (License): Likewise.
33329         * modules/poll (License): Likewise.
33330         * modules/regex (License): Likewise.
33331         * modules/snprintf (License): Likewise.
33332         * modules/stdbool (License): Likewise.
33333         * modules/stdint (License): Likewise.
33334         * modules/stdio (License): Likewise.
33335         * modules/strcase (License): Likewise.
33336         * modules/strcasestr (License): Likewise.
33337         * modules/strdup (License): Likewise.
33338         * modules/string (License): Likewise.
33339         * modules/strndup (License): Likewise.
33340         * modules/strnlen (License): Likewise.
33341         * modules/strpbrk (License): Likewise.
33342         * modules/strptime (License): Likewise.
33343         * modules/strsep (License): Likewise.
33344         * modules/sys_select (License): Likewise.
33345         * modules/sys_socket (License): Likewise.
33346         * modules/sys_stat (License): Likewise.
33347         * modules/sys_time (License): Likewise.
33348         * modules/time (License): Likewise.
33349         * modules/time_r (License): Likewise.
33350         * modules/timegm (License): Likewise.
33351         * modules/unistd (License): Likewise.
33352         * modules/vsnprintf (License): Likewise.
33353         * modules/wctype (License): Likewise.
33354
33355 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33356
33357         * modules/argz (License): LGPLv2+.
33358
33359 2007-07-15  Karl Berry  <karl@gnu.org>
33360
33361         * doc/gnulib.texi: revise node structure per new fdl.texi.
33362
33363 2007-07-14  Bruno Haible  <bruno@clisp.org>
33364
33365         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
33366         the output file.
33367         * lib/uniname/uninames.h: Regenerated.
33368
33369 2007-07-14  Karl Berry  <karl@gnu.org>
33370
33371         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
33372         omitting sectioning and index commands.
33373
33374 2007-07-13  Bruno Haible  <bruno@clisp.org>
33375
33376         New gnulib-tool option --more-symlinks.
33377         * gnulib-tool (func_usage): Document --more-symlinks.
33378         (do_copyrights): New variable.
33379         Recognize option --more-symlinks.
33380         (func_import): Don't add a copyright notice transform to
33381         sed_transform_lib_file if do_copyrights is empty.
33382
33383 2007-07-13  Bruno Haible  <bruno@clisp.org>
33384
33385         * lib/vasnprintf.c (decimal_point_char): Define also if
33386         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
33387         && !NEED_PRINTF_DIRECTIVE_A.
33388         Reported by Clemens Koller <clemens.koller@anagramm.de> via
33389         Gary V. Vaughan <gary@gnu.org>.
33390
33391 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
33392
33393         * lib/inttypes_.h: Undo previous change, since it was fixed
33394         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
33395
33396 2007-07-13  Bruno Haible  <bruno@clisp.org>
33397
33398         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
33399         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
33400
33401 2007-07-13  Jim Meyering  <jim@meyering.net>
33402
33403         df: Don't fail for Tru64's "file-on-file mount".
33404         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
33405         so we fall through and use statfs instead.  Details here:
33406         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
33407         Reported by Albert Chin.
33408
33409 2007-07-13  Bruno Haible  <bruno@clisp.org>
33410
33411         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
33412         * modules/configmake (License): Likewise.
33413         * modules/gettext (License): Likewise.
33414         * modules/gettext-h (License): Likewise.
33415         * modules/include_next (License): Likewise.
33416         * modules/link-warning (License): Likewise.
33417         * modules/localcharset (License): Likewise.
33418         * modules/localename (License): Likewise.
33419         * modules/lock (License): Likewise.
33420         * modules/relocatable-lib-lgpl (License): Likewise.
33421         * modules/size_max (License): Likewise.
33422         * modules/vasnprintf (License): Likewise.
33423         * modules/wchar (License): Likewise.
33424         * modules/xsize (License): Likewise.
33425
33426 2007-07-13  Bruno Haible  <bruno@clisp.org>
33427
33428         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
33429         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
33430
33431 2007-07-12  Bruno Haible  <bruno@clisp.org>
33432
33433         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
33434         in the modules files.
33435
33436 2007-07-11  Karl Berry  <karl@gnu.org>
33437
33438         * MODULES.html.sh (func_module): use
33439          sed -e '\|^'"${includefile}"'$|d'
33440          instead of /.../d, to avoid errors on $includefile's containing /.
33441
33442 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
33443
33444         * gnulib-tool (func_import): Avoid duplication of --avoid
33445         statements
33446         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
33447         names to `_' in variable names.
33448
33449 2007-07-10  Eric Blake  <ebb9@byu.net>
33450
33451         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
33452         * NEWS: Document this change.
33453
33454 2007-07-08  Bruno Haible  <bruno@clisp.org>
33455
33456         Update to Unicode 5.0.
33457         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
33458         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
33459         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
33460         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
33461         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
33462         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
33463         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
33464         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
33465         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
33466         U+10A3F, U+1D242..U+1D244.
33467         (nonspacing_table_ind): Update.
33468         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
33469         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
33470
33471 2007-07-08  Bruno Haible  <bruno@clisp.org>
33472
33473         Update to Unicode 5.0.
33474         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
33475         code transform. Extend the name index field of unicode_name_to_code and
33476         unicode_code_to_name from 16 to 24 bits.
33477         * lib/uniname/uniname.c (unicode_character_name,
33478         unicode_name_character): Add the range 0x12xxx to the code transform.
33479         * lib/uniname/uninames.h: Regenerated.
33480         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
33481
33482 2007-07-07  Bruno Haible  <bruno@clisp.org>
33483
33484         * modules/wcwidth-tests: New file.
33485         * tests/test-wcwidth.c: New file.
33486
33487         Work around MacOS X wcwidth() bug.
33488         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
33489         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
33490         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
33491         original wcwidth in non-UTF-8 locales.
33492         * modules/wcwidth (Depends-on): Add localcharset, streq,
33493         uniwidth/width.
33494         * doc/functions/wcwidth.texi: Update.
33495
33496 2007-07-07  Bruno Haible  <bruno@clisp.org>
33497
33498         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
33499         (wcwidth): New declaration.
33500         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
33501         macros.
33502         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
33503         here. Prepare for creating <wchar.h> unconditionally.
33504         * modules/wchar (Depends-on): Add link-warning.
33505         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
33506         REPLACE_WCWIDTH, and GL_LINK_WARNING.
33507         * lib/wcwidth.h: Remove file.
33508         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
33509         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
33510         * modules/wcwidth (Files): Remove lib/wcwidth.h.
33511         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
33512         (Include): Replace wcwidth.h with <wchar.h>.
33513         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
33514         * lib/mbchar.h: Don't include wcwidth.h.
33515         * lib/mbswidth.c: Likewise.
33516         * NEWS: Mention the change.
33517
33518 2007-07-07  Bruno Haible  <bruno@clisp.org>
33519
33520         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
33521         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
33522         definition with an external declaration.
33523         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
33524         defined as a function. Remove AC_C_INLINE requirement.
33525         * modules/wcwidth (Files): Add lib/wcwidth.c.
33526         (Makefile.am): Remove redundant statement.
33527
33528 2007-07-07  Bruno Haible  <bruno@clisp.org>
33529
33530         * MODULES.html.sh (Unicode string functions): Add the new modules.
33531
33532         * tests/uniwidth/test-u32-strwidth.c: New file.
33533         * modules/uniwidth/u32-strwidth-tests: New file.
33534
33535         * lib/uniwidth/u32-strwidth.c: New file.
33536         * modules/uniwidth/u32-strwidth: New file.
33537
33538         * tests/uniwidth/test-u16-strwidth.c: New file.
33539         * modules/uniwidth/u16-strwidth-tests: New file.
33540
33541         * lib/uniwidth/u16-strwidth.c: New file.
33542         * modules/uniwidth/u16-strwidth: New file.
33543
33544         * tests/uniwidth/test-u8-strwidth.c: New file.
33545         * modules/uniwidth/u8-strwidth-tests: New file.
33546
33547         * lib/uniwidth/u8-strwidth.c: New file.
33548         * modules/uniwidth/u8-strwidth: New file.
33549
33550         * tests/uniwidth/test-u32-width.c: New file.
33551         * modules/uniwidth/u32-width-tests: New file.
33552
33553         * lib/uniwidth/u32-width.c: New file.
33554         * modules/uniwidth/u32-width: New file.
33555
33556         * tests/uniwidth/test-u16-width.c: New file.
33557         * modules/uniwidth/u16-width-tests: New file.
33558
33559         * lib/uniwidth/u16-width.c: New file.
33560         * modules/uniwidth/u16-width: New file.
33561
33562         * tests/uniwidth/test-u8-width.c: New file.
33563         * modules/uniwidth/u8-width-tests: New file.
33564
33565         * lib/uniwidth/u8-width.c: New file.
33566         * modules/uniwidth/u8-width: New file.
33567
33568         * tests/uniwidth/test-uc_width.c: New file.
33569         * modules/uniwidth/width-tests: New file.
33570
33571         * lib/uniwidth/width.c: New file, from GNU libiconv.
33572         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
33573         * modules/uniwidth/width: New file.
33574
33575         * lib/uniwidth.h: New file, from GNU libiconv.
33576         * modules/uniwidth/base: New file.
33577
33578 2007-07-07  Bruno Haible  <bruno@clisp.org>
33579
33580         * lib/uniname.h: New file, from GNU gettext.
33581         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
33582         * lib/uniname/uninames.h: New file, from GNU gettext.
33583         * lib/uniname/uniname.c: New file, from GNU gettext.
33584         * tests/uniname/test-uninames.sh: New file.
33585         * tests/uniname/test-uninames.c: New file, from GNU gettext.
33586         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
33587         * modules/uniname/base: New file.
33588         * modules/uniname/uniname: New file.
33589         * modules/uniname/uniname-tests: New file.
33590         * MODULES.html.sh (Unicode string functions): Add the new modules.
33591
33592 2007-07-06  Bruno Haible  <bruno@clisp.org>
33593
33594         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
33595
33596 2007-07-06  Bruno Haible  <bruno@clisp.org>
33597
33598         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
33599         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
33600         includes <cygwin/sys_time.h> which includes <sys/select.h> which
33601         include <sys/time.h>.
33602         Reported by Eric Blake.
33603
33604 2007-07-06  Eric Blake  <ebb9@byu.net>
33605
33606         Fix testing canonicalize on cygwin.
33607         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33608         Revert patch from 2007-06-19.
33609         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
33610         canonicalize module is also in use.
33611         * tests/test-canonicalize.c: New file.
33612         * tests/test-canonicalize.sh: Likewise.
33613         * modules/canonicalize-tests: Likewise.
33614
33615 2007-07-06  Jim Meyering  <jim@meyering.net>
33616
33617         * lib/getugroups.c (getugroups): Detect getgrent failure.
33618         Adjust comment to reflect reality: this function may return -1.
33619
33620 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
33621
33622         * build-aux/bootstrap (TP_URL,get_translations): Update to use
33623         the new TP address.
33624         (usage): Fix typo
33625         (gnulib_mk): New variable.
33626
33627 2007-07-05  Jim Meyering  <jim@meyering.net>
33628
33629         Don't let endgrent clobber errno, no matter how improbable.
33630         * lib/getugroups.c (getugroups): Save and restore errno around
33631         endgrent call.
33632
33633         Close the group DB even when failing with 2^31 or more members.
33634         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
33635
33636 2007-07-04  Jim Meyering  <jim@meyering.net>
33637
33638         * lib/getugroups.h: New file.
33639         * lib/getugroups.c: Include "getugroups.h".
33640         Remove uses of "register" keyword.
33641         Move local variable, "cp", down into scope where used.
33642         Give "username" parameter the "const" attribute.
33643         * modules/getugroups (Files): Add lib/getugroups.h
33644
33645 2007-07-04  Karl Berry  <karl@gnu.org>
33646
33647         * MODULES.html.sh (func_all_modules): Complete rename of
33648         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
33649
33650 2007-07-02  Bruno Haible  <bruno@clisp.org>
33651
33652         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
33653         mode, when inttypes.h comes from gnulib.
33654         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
33655
33656 2007-07-02  Simon Josefsson  <simon@josefsson.org>
33657
33658         * NEWS: Mention lgpl module name change.
33659
33660         * modules/lgpl-2.1: Renamed from lgpl.
33661
33662         * NEWS: Mention gpl module name change.
33663
33664         * modules/gpl-3.0: New file, based on gpl-2.0.
33665
33666         * modules/gpl-2.0: Renamed from gpl.
33667
33668         * modules/gpl: Fix filename, doc/gpl.texi is now found at
33669         doc/gpl-2.0.texi.
33670
33671 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33672
33673         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
33674         #define __STDC_LIMIT_MACROS temporarily while including
33675         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
33676         Problem reported by Joel E. Denny in
33677         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
33678
33679 2007-07-01  Bruno Haible  <bruno@clisp.org>
33680
33681         * lib/unistdio.h: New file.
33682         * lib/unistdio/u-asnprintf.h: New file.
33683         * lib/unistdio/u-asprintf.h: New file.
33684         * lib/unistdio/u-printf-args.c: New file.
33685         * lib/unistdio/u-printf-args.h: New file.
33686         * lib/unistdio/u-printf-parse.h: New file.
33687         * lib/unistdio/u-snprintf.h: New file.
33688         * lib/unistdio/u-sprintf.h: New file.
33689         * lib/unistdio/u-vasprintf.h: New file.
33690         * lib/unistdio/u-vsnprintf.h: New file.
33691         * lib/unistdio/u-vsprintf.h: New file.
33692         * lib/unistdio/ulc-asnprintf.c: New file.
33693         * lib/unistdio/ulc-asprintf.c: New file.
33694         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
33695         * lib/unistdio/ulc-printf-parse.c: New file.
33696         * lib/unistdio/ulc-snprintf.c: New file.
33697         * lib/unistdio/ulc-sprintf.c: New file.
33698         * lib/unistdio/ulc-vasnprintf.c: New file.
33699         * lib/unistdio/ulc-vasprintf.c: New file.
33700         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
33701         * lib/unistdio/ulc-vsnprintf.c: New file.
33702         * lib/unistdio/ulc-vsprintf.c: New file.
33703         * lib/unistdio/u8-asnprintf.c: New file.
33704         * lib/unistdio/u8-asprintf.c: New file.
33705         * lib/unistdio/u8-printf-parse.c: New file.
33706         * lib/unistdio/u8-snprintf.c: New file.
33707         * lib/unistdio/u8-sprintf.c: New file.
33708         * lib/unistdio/u8-vasnprintf.c: New file.
33709         * lib/unistdio/u8-vasprintf.c: New file.
33710         * lib/unistdio/u8-vsnprintf.c: New file.
33711         * lib/unistdio/u8-vsprintf.c: New file.
33712         * lib/unistdio/u8-u8-asnprintf.c: New file.
33713         * lib/unistdio/u8-u8-asprintf.c: New file.
33714         * lib/unistdio/u8-u8-snprintf.c: New file.
33715         * lib/unistdio/u8-u8-sprintf.c: New file.
33716         * lib/unistdio/u8-u8-vasnprintf.c: New file.
33717         * lib/unistdio/u8-u8-vasprintf.c: New file.
33718         * lib/unistdio/u8-u8-vsnprintf.c: New file.
33719         * lib/unistdio/u8-u8-vsprintf.c: New file.
33720         * lib/unistdio/u16-asnprintf.c: New file.
33721         * lib/unistdio/u16-asprintf.c: New file.
33722         * lib/unistdio/u16-printf-parse.c: New file.
33723         * lib/unistdio/u16-snprintf.c: New file.
33724         * lib/unistdio/u16-sprintf.c: New file.
33725         * lib/unistdio/u16-vasnprintf.c: New file.
33726         * lib/unistdio/u16-vasprintf.c: New file.
33727         * lib/unistdio/u16-vsnprintf.c: New file.
33728         * lib/unistdio/u16-vsprintf.c: New file.
33729         * lib/unistdio/u16-u16-asnprintf.c: New file.
33730         * lib/unistdio/u16-u16-asprintf.c: New file.
33731         * lib/unistdio/u16-u16-snprintf.c: New file.
33732         * lib/unistdio/u16-u16-sprintf.c: New file.
33733         * lib/unistdio/u16-u16-vasnprintf.c: New file.
33734         * lib/unistdio/u16-u16-vasprintf.c: New file.
33735         * lib/unistdio/u16-u16-vsnprintf.c: New file.
33736         * lib/unistdio/u16-u16-vsprintf.c: New file.
33737         * lib/unistdio/u32-asnprintf.c: New file.
33738         * lib/unistdio/u32-asprintf.c: New file.
33739         * lib/unistdio/u32-printf-parse.c: New file.
33740         * lib/unistdio/u32-snprintf.c: New file.
33741         * lib/unistdio/u32-sprintf.c: New file.
33742         * lib/unistdio/u32-vasnprintf.c: New file.
33743         * lib/unistdio/u32-vasprintf.c: New file.
33744         * lib/unistdio/u32-vsnprintf.c: New file.
33745         * lib/unistdio/u32-vsprintf.c: New file.
33746         * lib/unistdio/u32-u32-asnprintf.c: New file.
33747         * lib/unistdio/u32-u32-asprintf.c: New file.
33748         * lib/unistdio/u32-u32-snprintf.c: New file.
33749         * lib/unistdio/u32-u32-sprintf.c: New file.
33750         * lib/unistdio/u32-u32-vasnprintf.c: New file.
33751         * lib/unistdio/u32-u32-vasprintf.c: New file.
33752         * lib/unistdio/u32-u32-vsnprintf.c: New file.
33753         * lib/unistdio/u32-u32-vsprintf.c: New file.
33754         * tests/unistdio/test-ulc-asnprintf1.c: New file.
33755         * tests/unistdio/test-ulc-asnprintf1.h: New file.
33756         * tests/unistdio/test-ulc-printf1.h: New file.
33757         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
33758         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
33759         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
33760         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
33761         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
33762         * tests/unistdio/test-ulc-vasprintf1.c: New file.
33763         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
33764         * tests/unistdio/test-ulc-vsprintf1.c: New file.
33765         * tests/unistdio/test-u8-asnprintf1.c: New file.
33766         * tests/unistdio/test-u8-asnprintf1.h: New file.
33767         * tests/unistdio/test-u8-printf1.h: New file.
33768         * tests/unistdio/test-u8-vasnprintf1.c: New file.
33769         * tests/unistdio/test-u8-vasnprintf2.c: New file.
33770         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
33771         * tests/unistdio/test-u8-vasnprintf3.c: New file.
33772         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
33773         * tests/unistdio/test-u8-vasprintf1.c: New file.
33774         * tests/unistdio/test-u8-vsnprintf1.c: New file.
33775         * tests/unistdio/test-u8-vsprintf1.c: New file.
33776         * tests/unistdio/test-u16-asnprintf1.c: New file.
33777         * tests/unistdio/test-u16-asnprintf1.h: New file.
33778         * tests/unistdio/test-u16-printf1.h: New file.
33779         * tests/unistdio/test-u16-vasnprintf1.c: New file.
33780         * tests/unistdio/test-u16-vasnprintf2.c: New file.
33781         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
33782         * tests/unistdio/test-u16-vasnprintf3.c: New file.
33783         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
33784         * tests/unistdio/test-u16-vasprintf1.c: New file.
33785         * tests/unistdio/test-u16-vsnprintf1.c: New file.
33786         * tests/unistdio/test-u16-vsprintf1.c: New file.
33787         * tests/unistdio/test-u32-asnprintf1.c: New file.
33788         * tests/unistdio/test-u32-asnprintf1.h: New file.
33789         * tests/unistdio/test-u32-printf1.h: New file.
33790         * tests/unistdio/test-u32-vasnprintf1.c: New file.
33791         * tests/unistdio/test-u32-vasnprintf2.c: New file.
33792         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
33793         * tests/unistdio/test-u32-vasnprintf3.c: New file.
33794         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
33795         * tests/unistdio/test-u32-vasprintf1.c: New file.
33796         * tests/unistdio/test-u32-vsnprintf1.c: New file.
33797         * tests/unistdio/test-u32-vsprintf1.c: New file.
33798         * modules/unistdio/base: New file.
33799         * modules/unistdio/u-printf-args: New file.
33800         * modules/unistdio/ulc-asnprintf: New file.
33801         * modules/unistdio/ulc-asprintf: New file.
33802         * modules/unistdio/ulc-fprintf: New file.
33803         * modules/unistdio/ulc-printf-parse: New file.
33804         * modules/unistdio/ulc-snprintf: New file.
33805         * modules/unistdio/ulc-sprintf: New file.
33806         * modules/unistdio/ulc-vasnprintf: New file.
33807         * modules/unistdio/ulc-vasprintf: New file.
33808         * modules/unistdio/ulc-vfprintf: New file.
33809         * modules/unistdio/ulc-vsnprintf: New file.
33810         * modules/unistdio/ulc-vsprintf: New file.
33811         * modules/unistdio/u8-asnprintf: New file.
33812         * modules/unistdio/u8-asprintf: New file.
33813         * modules/unistdio/u8-printf-parse: New file.
33814         * modules/unistdio/u8-snprintf: New file.
33815         * modules/unistdio/u8-sprintf: New file.
33816         * modules/unistdio/u8-vasnprintf: New file.
33817         * modules/unistdio/u8-vasprintf: New file.
33818         * modules/unistdio/u8-vsnprintf: New file.
33819         * modules/unistdio/u8-vsprintf: New file.
33820         * modules/unistdio/u8-u8-asnprintf: New file.
33821         * modules/unistdio/u8-u8-asprintf: New file.
33822         * modules/unistdio/u8-u8-snprintf: New file.
33823         * modules/unistdio/u8-u8-sprintf: New file.
33824         * modules/unistdio/u8-u8-vasnprintf: New file.
33825         * modules/unistdio/u8-u8-vasprintf: New file.
33826         * modules/unistdio/u8-u8-vsnprintf: New file.
33827         * modules/unistdio/u8-u8-vsprintf: New file.
33828         * modules/unistdio/u16-asnprintf: New file.
33829         * modules/unistdio/u16-asprintf: New file.
33830         * modules/unistdio/u16-printf-parse: New file.
33831         * modules/unistdio/u16-snprintf: New file.
33832         * modules/unistdio/u16-sprintf: New file.
33833         * modules/unistdio/u16-vasnprintf: New file.
33834         * modules/unistdio/u16-vasprintf: New file.
33835         * modules/unistdio/u16-vsnprintf: New file.
33836         * modules/unistdio/u16-vsprintf: New file.
33837         * modules/unistdio/u16-u16-asnprintf: New file.
33838         * modules/unistdio/u16-u16-asprintf: New file.
33839         * modules/unistdio/u16-u16-snprintf: New file.
33840         * modules/unistdio/u16-u16-sprintf: New file.
33841         * modules/unistdio/u16-u16-vasnprintf: New file.
33842         * modules/unistdio/u16-u16-vasprintf: New file.
33843         * modules/unistdio/u16-u16-vsnprintf: New file.
33844         * modules/unistdio/u16-u16-vsprintf: New file.
33845         * modules/unistdio/u32-asnprintf: New file.
33846         * modules/unistdio/u32-asprintf: New file.
33847         * modules/unistdio/u32-printf-parse: New file.
33848         * modules/unistdio/u32-snprintf: New file.
33849         * modules/unistdio/u32-sprintf: New file.
33850         * modules/unistdio/u32-vasnprintf: New file.
33851         * modules/unistdio/u32-vasprintf: New file.
33852         * modules/unistdio/u32-vsnprintf: New file.
33853         * modules/unistdio/u32-vsprintf: New file.
33854         * modules/unistdio/u32-u32-asnprintf: New file.
33855         * modules/unistdio/u32-u32-asprintf: New file.
33856         * modules/unistdio/u32-u32-snprintf: New file.
33857         * modules/unistdio/u32-u32-sprintf: New file.
33858         * modules/unistdio/u32-u32-vasnprintf: New file.
33859         * modules/unistdio/u32-u32-vasprintf: New file.
33860         * modules/unistdio/u32-u32-vsnprintf: New file.
33861         * modules/unistdio/u32-u32-vsprintf: New file.
33862         * modules/unistdio/ulc-asnprintf-tests: New file.
33863         * modules/unistdio/ulc-vasnprintf-tests: New file.
33864         * modules/unistdio/ulc-vasprintf-tests: New file.
33865         * modules/unistdio/ulc-vsnprintf-tests: New file.
33866         * modules/unistdio/ulc-vsprintf-tests: New file.
33867         * modules/unistdio/u8-asnprintf-tests: New file.
33868         * modules/unistdio/u8-vasnprintf-tests: New file.
33869         * modules/unistdio/u8-vasprintf-tests: New file.
33870         * modules/unistdio/u8-vsnprintf-tests: New file.
33871         * modules/unistdio/u8-vsprintf-tests: New file.
33872         * modules/unistdio/u16-asnprintf-tests: New file.
33873         * modules/unistdio/u16-vasnprintf-tests: New file.
33874         * modules/unistdio/u16-vasprintf-tests: New file.
33875         * modules/unistdio/u16-vsnprintf-tests: New file.
33876         * modules/unistdio/u16-vsprintf-tests: New file.
33877         * modules/unistdio/u32-asnprintf-tests: New file.
33878         * modules/unistdio/u32-vasnprintf-tests: New file.
33879         * modules/unistdio/u32-vasprintf-tests: New file.
33880         * modules/unistdio/u32-vsnprintf-tests: New file.
33881         * modules/unistdio/u32-vsprintf-tests: New file.
33882         * MODULES.html.sh (Unicode string functions): Add the new modules.
33883
33884 2007-07-01  Bruno Haible  <bruno@clisp.org>
33885
33886         * lib/sprintf.c (sprintf): Limit the available length estimation,
33887         to avoid address wraparound.
33888         * lib/vsprintf.c (vsprintf): Likewise.
33889         * modules/sprintf-posix (Dependencies): Add stdint.
33890         * modules/vsprintf-posix (Dependencies): Likewise.
33891
33892 2007-07-01  Bruno Haible  <bruno@clisp.org>
33893
33894         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
33895         Windows PATH as well. Conservative double-quoting. Comments.
33896
33897 2007-07-01  Bruno Haible  <bruno@clisp.org>
33898             Eric Blake  <ebb9@byu.net>
33899             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33900
33901         * gnulib-tool (self_abspathname): Fix algorithm to cope with
33902         empty components in $PATH, denoting '.'.
33903
33904 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33905
33906         * gnulib-tool: Fix indentation.
33907         (func_create_megatestdir): Likewise.
33908         Report by Bruno Haible.
33909
33910 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33911
33912         Sync from Automake.
33913         * build-aux/gnupload: Fix shell portability issues with for loops.
33914         Report by Karl Berry.
33915
33916 2007-06-29  Simon Josefsson  <simon@josefsson.org>
33917
33918         * build-aux/maint.mk (POURL): Use translationproject.org.
33919
33920 2007-06-27  Simon Josefsson  <simon@josefsson.org>
33921             Bruno Haible  <bruno@clisp.org>
33922
33923         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
33924         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
33925         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
33926         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
33927         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
33928
33929 2007-06-27  Bruno Haible  <bruno@clisp.org>
33930
33931         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
33932         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
33933
33934 2007-06-26  Karl Berry  <karl@gnu.org>
33935
33936         * MODULES.html.sh: remove xreadlink-with-size.
33937
33938 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33939
33940         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
33941         method that I hope also handles the double-include problem noted
33942         by Bruno Haible in
33943         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
33944
33945 2007-06-23  Bruno Haible  <bruno@clisp.org>
33946
33947         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33948         Don't let the 'mostlyclean' target fail if the last subdirectory could
33949         not be removed.
33950         Reported by Karl Berry.
33951
33952 2007-06-23  Bruno Haible  <bruno@clisp.org>
33953
33954         * gnulib-tool (echo): Add a speedier workaround for ksh.
33955         * tests/test-echo.sh: Likewise.
33956
33957 2007-06-23  Bruno Haible  <bruno@clisp.org>
33958
33959         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
33960         * tests/test-echo.sh: Likewise.
33961
33962 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33963
33964         * gnulib-tool (IFS): Initialize early, so we don't set it to
33965         empty later.
33966         (self_abspathname): Rewrite algorithm to set it, reindent.
33967         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
33968         (func_create_megatestdir): Merge some sed scripts.
33969
33970 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33971
33972         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
33973         exposed by Sun Studio 11 cc on Solaris 8.
33974
33975 2007-06-22  Bruno Haible  <bruno@clisp.org>
33976
33977         * gnulib-tool (echo): Ensure the echo primitive does not interpret
33978         backslashes.
33979         * tests/test-echo.sh: New file.
33980
33981 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33982
33983         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
33984         simplify `sed_replace_build_aux' scripts, they are portable but
33985         echoing them with `echo' is not.
33986         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
33987
33988 2007-06-21  Karl Berry  <karl@gnu.org>
33989
33990         * config/srclist.txt: guess we can't handle the licenses via
33991         srclist at the moment.
33992
33993 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33994
33995         * MODULES.html.sh: Add include_next.
33996         * modules/include_next: New file.
33997
33998 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33999
34000         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
34001         INCLUDE_NEXT.
34002         (gl_CHECK_NEXT_HEADERS): New macro.
34003         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
34004         the obsolescent gl_ABSOLUTE_HEADER.
34005         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
34006         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
34007         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
34008         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
34009         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
34010         * m4/math_h.m4 (gl_MATH_H): Likewise.
34011         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
34012         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
34013         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
34014         * m4/stdint.m4 (gl_STDINT_H): Likewise.
34015         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
34016         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
34017         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
34018         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
34019         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
34020         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
34021         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
34022         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
34023         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
34024         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
34025         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
34026         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
34027         * m4/inttypes.m4 (gl_INTTYPES_H): Define
34028         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
34029         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
34030         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
34031         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
34032         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
34033         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
34034         * lib/float_.h: Likewise.
34035         * lib/inttypes_.h: Likewise.
34036         * lib/math_.h: Likewise.
34037         * lib/search_.h: Likewise.
34038         * lib/signal_.h: Likewise.
34039         * lib/stdint_.h: Likewise.
34040         * lib/stdio_.h: Likewise.
34041         * lib/stdlib_.h: Likewise.
34042         * lib/string_.h: Likewise.
34043         * lib/sys_stat_.h: Likewise.
34044         * lib/sys_time_.h: Likewise.
34045         * lib/time_.h: Likewise.
34046         * lib/unistd_.h: Likewise.
34047         * lib/wchar_.h: Likewise.
34048         * lib/wctype_.h: Likewise.
34049         * lib/dirent_.h: Likewise.
34050         * lib/iconv_.h: Likewise.
34051         * lib/locale_.h: Likewise.
34052         * lib/netinet_in_.h: Likewise.
34053         * lib/sys_select_.h: Likewise.
34054         * lib/sys_socket_.h: Likewise.
34055         * lib/sysexits_.h: Likewise.
34056         * modules/fcntl (Depends-on): Depend on include_next, not
34057         absolute_header.
34058         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
34059         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
34060         * modules/fchdir: Likewise.
34061         * modules/float: Likewise.
34062         * modules/iconv_open: Likewise.
34063         * modules/inttypes: Likewise.
34064         * modules/locale: Likewise.
34065         * modules/math: Likewise.
34066         * modules/netinet_in: Likewise.
34067         * modules/search: Likewise.
34068         * modules/signal: Likewise.
34069         * modules/stdint: Likewise.
34070         * modules/stdio: Likewise.
34071         * modules/stdlib: Likewise.
34072         * modules/string: Likewise.
34073         * modules/sys_select: Likewise.
34074         * modules/sys_socket: Likewise.
34075         * modules/sys_stat: Likewise.
34076         * modules/sys_time: Likewise.
34077         * modules/sysexits: Likewise.
34078         * modules/time: Likewise.
34079         * modules/unistd: Likewise.
34080         * modules/wchar: Likewise.
34081         * modules/wctype: Likewise.
34082         * modules/sys_stat: Change maintainer to "all".
34083         * modules/unistd: Likewise.
34084
34085 2007-06-20  Karl Berry  <karl@gnu.org>
34086
34087         * config/srclist.txt: track www changes in license files.
34088
34089 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
34090
34091         * build-aux/bootstrap: Remove stray dot.
34092         Make sure build_aux settings are honored when linking
34093         gnulib_extra_files.
34094
34095 2007-06-19  Eric Blake  <ebb9@byu.net>
34096
34097         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
34098         Allow compilation on cygwin.
34099
34100 2007-06-19  Jim Meyering  <jim@meyering.net>
34101
34102         xreadlink-with-size: Remove module.  No longer used.
34103         Ex-callers now use xreadlink or mreadlink-with-size.
34104         * modules/xreadlink-with-size: Remove module.
34105         * lib/xreadlink-with-size.c: Remove file.
34106         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
34107         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
34108         just before the function definition *is* accurate.
34109
34110         Eliminate one way canonicalize_filename_mode could exit.
34111         * lib/canonicalize.c (canonicalize_filename_mode):
34112         Use mreadlink_with_size, not xreadlink_with_size.
34113
34114 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
34115
34116         Detect porting problems to FreeBSD/arm, which has time_t wider than
34117         long int.  Original problem reported for GNU diff by Xin Li in
34118         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
34119         * modules/getdate (Depends-on): Add intprops, verify.
34120         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
34121         is an integer type no wider than long int.
34122
34123 2007-06-18  Jim Meyering  <jim@meyering.net>
34124
34125         New module: mreadlink-with-size.
34126         * MODULES.html.sh: Add mreadlink-with-size.
34127         * modules/mreadlink-with-size: New module
34128         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
34129         not xreadlink-with-size.
34130         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
34131
34132 2007-06-16  Bruno Haible  <bruno@clisp.org>
34133
34134         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
34135         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
34136         Reported by Gary V. Vaughan <gary@gnu.org>.
34137
34138 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
34139
34140         Revamp lchown so that it lives in unistd.h where it belongs.
34141         * lib/lchown.h: Remove.
34142         * lib/dirchownmod.c: Don't include lib/lchown.h.
34143         * lib/fchownat.c: Likewise.
34144         * lib/openat.c: Likewise.
34145         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
34146         does not follow symlinks.
34147         (EOPNOTSUPP): Define if not defined.
34148         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
34149         is defined to 0.
34150         (lchown): New decl.
34151         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
34152         Do not check for lchown decl.
34153         Set REPLACE_LCHOWN.
34154         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
34155         REPLACE_LCHOWN.
34156         * modules/chown: Make it clear it follows symlinks.
34157         * modules/lchown: Make it clear it doesn't follow symlinks.
34158         (Files): Remove lib/lchown.h
34159         (Depends-on): Add unistd.
34160         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
34161         (Include): Include <unistd.h>, not "lchown.h".
34162         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
34163         REPLACE_LCHOWN.
34164
34165 2007-06-15  Jim Meyering  <jim@meyering.net>
34166
34167         Change license (GPL to LGPL) of fsusage and dependents.
34168         * modules/fsusage (License): Change to LGPL.
34169         * modules/full-read (License): Likewise.
34170         * modules/full-write (License): Likewise.
34171         * modules/safe-read (License): Likewise.
34172         * modules/safe-write (License): Likewise.
34173
34174 2007-06-14  Ben Pfaff  <blp@gnu.org>
34175
34176         Missing part of allocsa -> malloca transition.
34177         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
34178         gl_MALLOCA.
34179
34180 2007-06-12  Bruno Haible  <bruno@clisp.org>
34181
34182         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
34183         to ia64, x86_64, i386.
34184         Reported by Eric Blake.
34185
34186 2007-06-12  Bruno Haible  <bruno@clisp.org>
34187
34188         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
34189         cross-compiling to x86_64.
34190
34191 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
34192
34193         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
34194         glitch reported by Ralf Wildenhues in
34195         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
34196
34197         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
34198         Vin Shelton.
34199
34200 2007-06-11  Bruno Haible  <bruno@clisp.org>
34201
34202         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
34203         replacement string.
34204         Reported by Eric Blake.
34205
34206 2007-06-10  Bruno Haible  <bruno@clisp.org>
34207
34208         Prepare vasnprintf code for use with Unicode strings.
34209         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
34210         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
34211         TYPE_U32_STRING.
34212         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
34213         a_u32_string variants.
34214         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34215         * lib/printf-args.c: Don't include config.h and the specification
34216         header if PRINTF_FETCHARGS is already defined.
34217         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34218         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
34219         TYPE_U16_STRING, TYPE_U32_STRING.
34220         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
34221         u16_directive, u16_directives, u32_directive, u32_directives): New
34222         types.
34223         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
34224         New declarations.
34225         * lib/printf-parse.c: Don't include config.h and the specification
34226         header if PRINTF_PARSE is already defined. Eliminate the set of
34227         parameters for WIDE_CHAR_VERSION; the user of this file must provide
34228         them now. Include c-ctype.h.
34229         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
34230         directive and CHAR_T_ONLY_ASCII.
34231         * lib/vasnprintf.c: Don't include config.h and the specification header
34232         if VASNPRINTF is already defined.
34233         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
34234         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
34235         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
34236         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
34237         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
34238         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
34239         code accordingly.
34240         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
34241         pad_ourselves also in this case, with the 'c' and 's' directives, and
34242         with a different notion of "width".
34243         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
34244
34245 2007-06-10  Bruno Haible  <bruno@clisp.org>
34246
34247         * modules/unistr/u32-mbsnlen: New file.
34248         * lib/unistr/u32-mbsnlen.c: New file.
34249
34250         * modules/unistr/u16-mbsnlen: New file.
34251         * lib/unistr/u16-mbsnlen.c: New file.
34252
34253         * modules/unistr/u8-mbsnlen: New file.
34254         * lib/unistr/u8-mbsnlen.c: New file.
34255
34256         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
34257         declarations.
34258
34259 2007-06-10  Bruno Haible  <bruno@clisp.org>
34260
34261         * lib/string_.h (mbsnlen): New declaration.
34262         * lib/mbsnlen.c: New file.
34263         * m4/mbsnlen.m4: New file.
34264         * modules/mbsnlen: New file.
34265         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
34266         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
34267         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
34268
34269 2007-06-10  Bruno Haible  <bruno@clisp.org>
34270
34271         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
34272
34273 2007-06-10  Bruno Haible  <bruno@clisp.org>
34274
34275         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
34276         * lib/mbuiter.h: Likewise.
34277
34278 2007-06-10  Bruno Haible  <bruno@clisp.org>
34279
34280         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
34281         declaration.
34282
34283 2007-06-10  Karl Berry  <karl@gnu.org>
34284
34285         * config/srclist.txt: remove gettext entries, Bruno prefers
34286         to update individually.
34287
34288 2007-06-10  Bruno Haible  <bruno@clisp.org>
34289
34290         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
34291         'maxlen'. Ensure only length + width bytes are allocated, not
34292         length + 1 + width.
34293
34294 2007-06-09  Bruno Haible  <bruno@clisp.org>
34295
34296         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
34297         (CHAR_T): Remove macro.
34298         (VASNPRINTF): Update.
34299
34300 2007-06-09  Bruno Haible  <bruno@clisp.org>
34301
34302         * MODULES.html.sh (Unicode string functions): Add the new modules.
34303
34304         * modules/uniconv/u32-conv-to-enc: New file.
34305         * lib/uniconv/u32-conv-to-enc.c: New file.
34306         * modules/uniconv/u32-conv-to-enc-tests: New file.
34307         * tests/uniconv/test-u32-conv-to-enc.c: New file.
34308
34309         * modules/uniconv/u16-conv-to-enc: New file.
34310         * lib/uniconv/u16-conv-to-enc.c: New file.
34311         * lib/uniconv/u-conv-to-enc.h: New file.
34312         * modules/uniconv/u16-conv-to-enc-tests: New file.
34313         * tests/uniconv/test-u16-conv-to-enc.c: New file.
34314
34315         * modules/uniconv/u8-conv-to-enc: New file.
34316         * lib/uniconv/u8-conv-to-enc.c: New file.
34317         * modules/uniconv/u8-conv-to-enc-tests: New file.
34318         * tests/uniconv/test-u8-conv-to-enc.c: New file.
34319
34320         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
34321         u32_conv_to_encoding): New declarations.
34322
34323 2007-06-09  Bruno Haible  <bruno@clisp.org>
34324
34325         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
34326
34327 2007-06-09  Bruno Haible  <bruno@clisp.org>
34328
34329         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
34330         * modules/malloca: Renamed from modules/allocsa, updated.
34331         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
34332         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
34333         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
34334         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
34335         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
34336         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
34337         * modules/xmalloca: Renamed from modules/xallocsa, updated.
34338         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
34339         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
34340         * modules/c-strcasestr (Depends-on): Update.
34341         * lib/c-strcasestr.c: Update.
34342         * modules/c-strstr (Depends-on): Update.
34343         * lib/c-strstr.c: Update.
34344         * modules/canonicalize-lgpl (Depends-on): Update.
34345         * lib/canonicalize-lgpl.c: Update.
34346         * modules/clean-temp (Depends-on): Update.
34347         * lib/clean-temp.c: Update.
34348         * modules/csharpcomp (Depends-on): Update.
34349         * lib/csharpcomp.c: Update.
34350         * modules/csharpexec (Depends-on): Update.
34351         * lib/csharpexec.c: Update.
34352         * modules/javacomp (Depends-on): Update.
34353         * lib/javacomp.c: Update.
34354         * modules/javaexec (Depends-on): Update.
34355         * lib/javaexec.c: Update.
34356         * modules/mbscasestr (Depends-on): Update.
34357         * lib/mbscasestr.c: Update.
34358         * modules/mbsstr (Depends-on): Update.
34359         * lib/mbsstr.c: Update.
34360         * modules/setenv (Depends-on): Update.
34361         * lib/setenv.c: Update.
34362         * modules/strcasestr (Depends-on): Update.
34363         * lib/strcasestr.c: Update.
34364         * modules/striconveha (Depends-on): Update.
34365         * lib/striconveha.c: Update.
34366         * modules/relocatable-prog-wrapper (Files): Update.
34367         * lib/relocwrapper.c: Update.
34368         * build-aux/install-reloc: Update.
34369         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
34370
34371 2007-06-08  Bruno Haible  <bruno@clisp.org>
34372
34373         Port to uClibc.
34374         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
34375         * lib/fpurge.c (fpurge): Likewise.
34376         * lib/freading.c (freading): Likewise.
34377         * lib/fseeko.c (rpl_fseeko): Likewise.
34378         * lib/fseterr.c (fseterr): Likewise.
34379         * lib/fwriting.c (fwriting): Likewise.
34380         * tests/test-fflush.c (main): Avoid a failure on uClibc.
34381
34382 2007-06-08  Bruno Haible  <bruno@clisp.org>
34383
34384         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
34385         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
34386         * modules/gettext (Files): Add m4/intlmacosx.m4.
34387
34388 2007-06-07  Bruno Haible  <bruno@clisp.org>
34389
34390         * modules/localename-tests: New file.
34391         * tests/test-localename.c: New file.
34392
34393         New module 'localename'.
34394         * lib/localename.h: New file.
34395         * lib/localename.c: New file, from GNU gettext.
34396         * m4/localename.m4: New file.
34397         * modules/localename: New file.
34398
34399 2007-06-07  Bruno Haible  <bruno@clisp.org>
34400
34401         Work around the lack of <wchar.h> on some builds of uClibc.
34402         * doc/headers/wchar.texi: Update.
34403         * lib/wchar_.h: Include <wchar.h> only if it exists.
34404         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
34405         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
34406         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
34407         doesn't exist.
34408         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
34409         * modules/mbfile (Depends-on): Add wchar.
34410         * modules/mbiter (Depends-on): Likewise.
34411         * modules/mbuiter (Depends-on): Likewise.
34412         Reported by Simon Josefsson.
34413
34414 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
34415
34416         Work around problem reported by Steven M. Schweda in
34417         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
34418         Tru64 5.1B with the Compaq compiler environment installed declares
34419         an 'isblank' function but does not define it in the C library.
34420         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
34421         * lib/regex_internal.h (isblank): Likewise.
34422         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
34423         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34424
34425 2007-06-05  Bruno Haible  <bruno@clisp.org>
34426
34427         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
34428         ia64.
34429         * modules/printf-safe: New file.
34430         * modules/fprintf-posix (Depends-on): Add printf-safe.
34431         * modules/printf-posix (Depends-on): Likewise.
34432         * modules/snprintf-posix (Depends-on): Likewise.
34433         * modules/sprintf-posix (Depends-on): Likewise.
34434         * modules/vasnprintf-posix (Depends-on): Likewise.
34435         * modules/vasprintf-posix (Depends-on): Likewise.
34436         * modules/vfprintf-posix (Depends-on): Likewise.
34437         * modules/vprintf-posix (Depends-on): Likewise.
34438         * modules/vsnprintf-posix (Depends-on): Likewise.
34439         * modules/vsprintf-posix (Depends-on): Likewise.
34440         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
34441         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
34442         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
34443         "no" on i386, x86_64, ia64.
34444         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
34445         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34446         on i386, x86_64, ia64.
34447         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
34448         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34449         on i386, x86_64, ia64.
34450         * tests/test-vasnprintf-posix.c: Include float.h.
34451         (LDBL80_WORDS): New macro.
34452         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34453         on i386, x86_64, ia64.
34454         * tests/test-vasprintf-posix.c: Include float.h.
34455         (LDBL80_WORDS): New macro.
34456         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34457         on i386, x86_64, ia64.
34458         * tests/test-snprintf-posix.c: Include float.h.
34459         * tests/test-sprintf-posix.c: Likewise.
34460         * tests/test-vsnprintf-posix.c: Likewise.
34461         * tests/test-vsprintf-posix.c: Likewise.
34462
34463 2007-06-05  Bruno Haible  <bruno@clisp.org>
34464
34465         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
34466         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
34467         non-IEEE numbers on i386, x86_64, ia64.
34468         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
34469         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
34470         * tests/test-isnanl.h: Include float.h.
34471         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
34472
34473 2007-06-05  Bruno Haible  <bruno@clisp.org>
34474
34475         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
34476         also the %a / %A. Handle the %a / %A code before this extra handling.
34477
34478 2007-06-05  Bruno Haible  <bruno@clisp.org>
34479
34480         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
34481         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
34482
34483 2007-06-05  Bruno Haible  <bruno@clisp.org>
34484
34485         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
34486         typo in variable name.
34487
34488 2007-06-05  Eric Blake  <ebb9@byu.net>
34489
34490         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
34491         Reported by Simon Josefsson.
34492
34493 2007-06-04  Bruno Haible  <bruno@clisp.org>
34494
34495         Avoid test failures on some PowerPC platforms.
34496         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
34497         Define differently for PowerPC.
34498         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
34499         Reported by Gary V. Vaughan <gary@gnu.org>.
34500
34501 2007-06-02  Bruno Haible  <bruno@clisp.org>
34502
34503         Fix test-stdint failure on FreeBSD/ia64.
34504         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
34505         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
34506         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
34507         * doc/headers/stdint.texi: Update.
34508
34509 2007-06-01  Bruno Haible  <bruno@clisp.org>
34510
34511         * tests/test-binary-io.c (main): Pass a third argument to open().
34512         Reported by Gary V. Vaughan <gary@gnu.org>.
34513
34514 2007-06-01  Bruno Haible  <bruno@clisp.org>
34515
34516         * doc/functions/frexpl.texi: Update for mingw.
34517
34518 2007-06-01  Bruno Haible  <bruno@clisp.org>
34519
34520         * tests/test-lseek.c (main): Disable test of errno for invalid third
34521         argument.
34522         * doc/functions/lseek.texi: Update.
34523         Reported by Gary V. Vaughan <gary@gnu.org>.
34524
34525 2007-05-28  Bruno Haible  <bruno@clisp.org>
34526
34527         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
34528
34529 2007-05-31  Eric Blake  <ebb9@byu.net>
34530
34531         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
34532         cross compiling.
34533
34534 2007-05-30  Eric Blake  <ebb9@byu.net>
34535         and Bruno Haible  <bruno@clisp.org>
34536
34537         Work around mingw test failures exposed by m4-1.4.9b.
34538         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
34539         * tests/test-unistd.c: Disable uid_t and git_t tests for the
34540         moment.
34541
34542 2007-05-30  Bruno Haible  <bruno@clisp.org>
34543
34544         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
34545         assuming that they are closed. Needed on HP-UX 11.
34546
34547 2007-05-29  Bruno Haible  <bruno@clisp.org>
34548
34549         Fix a problem with #include_next.
34550         * lib/dirent_.h: Split the double-inclusion guard.
34551         * lib/fcntl_.h: Likewise.
34552         * lib/float_.h: Likewise.
34553         * lib/iconv_.h: Likewise.
34554         * lib/inttypes_.h: Likewise.
34555         * lib/locale_.h: Likewise.
34556         * lib/math_.h: Likewise.
34557         * lib/netinet_in_.h: Likewise.
34558         * lib/search_.h: Likewise.
34559         * lib/signal_.h: Likewise.
34560         * lib/stdint_.h: Likewise.
34561         * lib/stdio_.h: Likewise.
34562         * lib/stdlib_.h: Likewise.
34563         * lib/string_.h: Likewise.
34564         * lib/sys_select_.h: Likewise.
34565         * lib/sys_socket_.h: Likewise.
34566         * lib/sys_stat_.h: Likewise.
34567         * lib/sys_time_.h: Likewise.
34568         * lib/sysexits_.h: Likewise.
34569         * lib/time_.h: Likewise.
34570         * lib/unistd_.h: Likewise.
34571         * lib/wchar_.h: Likewise.
34572         * lib/wctype_.h: Likewise.
34573
34574 2007-05-29  Bruno Haible  <bruno@clisp.org>
34575
34576         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
34577         for the moment.
34578
34579 2007-05-29  Bruno Haible  <bruno@clisp.org>
34580
34581         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
34582         invocation.
34583         Reported by Eric Blake.
34584
34585 2007-05-29  Bruno Haible  <bruno@clisp.org>
34586
34587         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
34588         compiling case.
34589
34590 2007-05-29  Eric Blake  <ebb9@byu.net>
34591             Bruno Haible  <bruno@clisp.org>
34592
34593         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
34594         cross compiles.
34595
34596 2007-05-28  Eric Blake  <ebb9@byu.net>
34597
34598         * modules/closein-tests (test_closein_LDADD): Support test on
34599         cygwin with libtool.
34600
34601 2007-05-28  Bruno Haible  <bruno@clisp.org>
34602
34603         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
34604         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
34605         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
34606         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
34607         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
34608         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
34609         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
34610         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
34611         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
34612
34613 2007-05-28  Eric Blake  <ebb9@byu.net>
34614
34615         Unconditionally include <config.h> in unit tests.
34616         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
34617         * tests/test-allocsa.c, tests/test-arcfour.c,
34618         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
34619         tests/test-array_list.c, tests/test-array_oset.c,
34620         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
34621         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
34622         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
34623         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
34624         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
34625         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
34626         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
34627         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
34628         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
34629         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
34630         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
34631         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
34632         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
34633         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
34634         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
34635         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
34636         test-md5.c, test-memmem.c, test-printf-posix.c,
34637         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
34638         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
34639         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
34640         test-strcasestr.c, test-striconv.c, test-striconveh.c,
34641         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
34642         test-vasnprintf-posix2.c, test-vasnprintf.c,
34643         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
34644         test-vfprintf-posix.c, test-vprintf-posix.c,
34645         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
34646         test-xvasprintf.c: Likewise.
34647
34648 2007-05-28  Bruno Haible  <bruno@clisp.org>
34649
34650         * gnulib-tool (func_import): Remember the --with-tests command-line
34651         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
34652         Reported by Eric Blake.
34653
34654 2007-05-28  Bruno Haible  <bruno@clisp.org>
34655
34656         * modules/ftell-tests: New file.
34657         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
34658         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
34659
34660         * lib/ftell.c: New file.
34661         * modules/ftell: New file.
34662         * m4/ftell.m4: New file.
34663         * doc/functions/ftell.texi: Update.
34664         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
34665         REPLACE_FTELL.
34666         * lib/stdio_.h (rpl_ftell): New declaration.
34667         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
34668         REPLACE_FTELL.
34669
34670 2007-05-28  Eric Blake  <ebb9@byu.net>
34671
34672         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
34673
34674 2007-05-28  Bruno Haible  <bruno@clisp.org>
34675
34676         * modules/fseek-tests: New file.
34677         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
34678         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
34679
34680         * lib/fseek.c: New file.
34681         * modules/fseek: New file.
34682         * m4/fseek.m4: New file.
34683         * doc/functions/fseek.texi: Update.
34684         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
34685         REPLACE_FSEEK.
34686         * lib/stdio_.h (rpl_fseek): New declaration.
34687         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
34688         REPLACE_FSEEK.
34689
34690 2007-05-28  Bruno Haible  <bruno@clisp.org>
34691
34692         * lib/stdio_.h (fflush): More comments.
34693
34694 2007-05-28  Bruno Haible  <bruno@clisp.org>
34695
34696         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
34697         runtime test.
34698
34699 2007-05-28  Eric Blake  <ebb9@byu.net>
34700
34701         Improve lseek module.
34702         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
34703         * lib/unistd_.h (lseek): Scale back link warning message.
34704         * tests/test-lseek.c: Beef up test.
34705         * tests/test-lseek.sh: Exercise more facets of lseek.
34706         Reported by Bruno Haible.
34707
34708 2007-05-28  Bruno Haible  <bruno@clisp.org>
34709
34710         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
34711         to define.
34712
34713 2007-05-27  Bruno Haible  <bruno@clisp.org>
34714
34715         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
34716
34717 2007-05-27  Bruno Haible  <bruno@clisp.org>
34718
34719         * modules/openmp: New file.
34720         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
34721         Noah Misch.
34722
34723 2007-05-26  Bruno Haible  <bruno@clisp.org>
34724
34725         * modules/chdir-long (Depends-on): Add fchdir.
34726         * modules/chdir-safer (Depends-on): Likewise.
34727         * modules/fts (Depends-on): Likewise.
34728         * modules/fts-lgpl (Depends-on): Likewise.
34729         * modules/openat (Depends-on): Likewise.
34730         * modules/savewd (Depends-on): Likewise.
34731
34732 2007-05-24  Eric Blake  <ebb9@byu.net>
34733
34734         Fix lseek on mingw.
34735         * modules/lseek: New module.
34736         * m4/lseek.m4: New file.
34737         * lib/lseek.c: New file.
34738         * modules/lseek-tests: New file.
34739         * tests/test-lseek.c: New file.
34740         * tests/test-lseek.sh: New file.
34741         * MODULES.html.sh: Document lseek module.
34742         * modules/fflush (Depends-on): Add lseek, fseeko.
34743         * modules/fseeko (Depends-on): Likewise.
34744         * modules/ftello (Depends-on): Likewise.
34745         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
34746         broken.
34747         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
34748         broken.
34749         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
34750         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
34751         * lib/ftello.c (rpl_ftello): Likewise.
34752         * tests/test-fseeko.c (main): Test this.
34753         * tests/test-fseeko.sh: Likewise.
34754         * tests/test-ftello.c (main): Likewise.
34755         * tests/test-ftello.sh: Likewise.
34756         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
34757         implies replacing fseek.
34758         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
34759         HAVE_FTELLO.
34760         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
34761         * modules/unistd (Makefile.am): Likewise.
34762         * lib/unistd_.h (lseek): Declare a replacement.
34763         * doc/functions/lseek.texi (lseek): Document this fix.
34764         * doc/functions/fseek.texi (fseek): Likewise.
34765         * doc/functions/ftell.texi (ftell): Likewise.
34766
34767 2007-05-24  Bruno Haible  <bruno@clisp.org>
34768
34769         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
34770         in the printed representation of a NaN.
34771         * tests/test-vasprintf-posix.c (test_function): Likewise.
34772         * tests/test-snprintf-posix.h (test_function): Likewise.
34773         * tests/test-sprintf-posix.h (test_function): Likewise.
34774         Reported by Eric Blake.
34775
34776 2007-05-23  Eric Blake  <ebb9@byu.net>
34777
34778         Fix fseeko/ftello on cygwin 1.5.24.
34779         * doc/functions/fseeko.texi (fseeko): Document the fix.
34780         * doc/functions/ftello.texi (ftello): Document the fix.
34781         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
34782         * doc/functions/stdout.text (stdout): New file.
34783         * doc/functions/stderr.text (stderr): New file.
34784         * doc/gnulib.texi (Function Substitutes): Use new files.
34785         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
34786         prior to 1.7.0.
34787         * tests/test-ftello.c (main): Likewise for ftello.
34788         * tests/test-fseeko.sh: New file.
34789         * tests/test-ftello.sh: New file.
34790         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
34791         with seekable stdin.
34792         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
34793         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
34794         (gl_REPLACE_FSEEKO): New macro.
34795         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
34796         * modules/fseeko (Files): Distribute fseeko.c.
34797         * modules/ftello (Files): Distribute ftello.c.
34798         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
34799         mode.
34800         * lib/ftello.c (rpl_ftello): New file.
34801         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
34802         fseeko, ftello.
34803         (gl_STDIN_LARGE_OFFSET): New macro.
34804         * modules/stdio (Makefile.am): Perform the replacement.
34805         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
34806
34807 2007-05-23  Bruno Haible  <bruno@clisp.org>
34808
34809         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
34810         GNULIB_POSIXCHECK is defined.
34811
34812 2007-05-21  Bruno Haible  <bruno@clisp.org>
34813
34814         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
34815         Check also the output for NaN arguments. When cross-compiling, guess
34816         no on IRIX.
34817         * lib/vasnprintf.c: Update comments.
34818         * tests/test-vasnprintf-posix.c (strisnan): New function.
34819         (test_function): Use it.
34820         * tests/test-vasprintf-posix.c (strisnan): New function.
34821         (test_function): Use it.
34822         * tests/test-snprintf-posix.h (strisnan): New function.
34823         (test_function): Use it.
34824         * tests/test-sprintf-posix.h (strisnan): New function.
34825         (test_function): Use it.
34826         Reported by Eric Blake.
34827
34828 2007-05-20  Bruno Haible  <bruno@clisp.org>
34829
34830         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
34831         numbers that fails on BeOS.
34832         * doc/functions/frexpl.texi: Update.
34833
34834 2007-05-20  Jim Meyering  <jim@meyering.net>
34835
34836         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
34837         forced upon us by glibc-2.6.
34838
34839 2007-05-20  Bruno Haible  <bruno@clisp.org>
34840
34841         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
34842         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
34843         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
34844         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
34845         NEED_PRINTF_INFINITE.
34846         (is_infinitel): New function.
34847         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
34848         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
34849         gl_PREREQ_VASNPRINTF_INFINITE.
34850         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
34851         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34852         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
34853         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
34854         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
34855         gl_PREREQ_VASNPRINTF_INFINITE.
34856         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34857         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34858         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34859         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34860         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34861         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34862         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34863         * doc/functions/fprintf.texi: Update.
34864         * doc/functions/printf.texi: Update.
34865         * doc/functions/snprintf.texi: Update.
34866         * doc/functions/sprintf.texi: Update.
34867         * doc/functions/vfprintf.texi: Update.
34868         * doc/functions/vprintf.texi: Update.
34869         * doc/functions/vsnprintf.texi: Update.
34870         * doc/functions/vsprintf.texi: Update.
34871
34872 2007-05-20  Bruno Haible  <bruno@clisp.org>
34873
34874         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
34875         was not found in libc.
34876         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
34877
34878 2007-05-20  Bruno Haible  <bruno@clisp.org>
34879
34880         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34881         printed as "-nan" instead of "nan".
34882         * tests/test-vasprintf-posix.c (test_function): Likewise.
34883         * tests/test-snprintf-posix.h (test_function): Likewise.
34884         * tests/test-sprintf-posix.h (test_function): Likewise.
34885         Needed for HP-UX 11.
34886
34887 2007-05-20  Jim Meyering  <jim@meyering.net>
34888
34889         Fix buggy test for the fchownat-deref bug.
34890         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
34891         symlink required for the run-test.  Without it, this test would
34892         always declare that fchownat doesn't work, and client code would
34893         unnecessarily use the replacement function with fixed libc.
34894         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
34895         Reported by Greg Schafer.
34896
34897 2007-05-19  Bruno Haible  <bruno@clisp.org>
34898
34899         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
34900         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
34901         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
34902         Needed for IRIX 6.5 and Solaris 2.5.1.
34903
34904 2007-05-19  Bruno Haible  <bruno@clisp.org>
34905
34906         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
34907         (test_function): Skip tests involving -0.0 on platforms where
34908         -0.0 = 0.0.
34909         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
34910         (test_function): Skip tests involving -0.0 on platforms where
34911         -0.0 = 0.0.
34912         * tests/test-snprintf-posix.h (have_minus_zero): New function.
34913         (test_function): Skip tests involving -0.0 on platforms where
34914         -0.0 = 0.0.
34915         * tests/test-sprintf-posix.h (have_minus_zero): New function.
34916         (test_function): Skip tests involving -0.0 on platforms where
34917         -0.0 = 0.0.
34918         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
34919         tests.
34920         * tests/test-printf-posix.h (test_function): Likewise.
34921         * tests/test-printf-posix.output: Remove all -0.0 related results.
34922         Needed for IRIX 6.5.
34923
34924 2007-05-19  Bruno Haible  <bruno@clisp.org>
34925
34926         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34927         printed as "nan0x7fffffff" instead of "nan".
34928         * tests/test-vasprintf-posix.c (test_function): Likewise.
34929         * tests/test-snprintf-posix.h (test_function): Likewise.
34930         * tests/test-sprintf-posix.h (test_function): Likewise.
34931         * tests/test-fprintf-posix.h (NaN): Remove macro.
34932         (test_function): Remove all NaN related tests.
34933         * tests/test-printf-posix.h (NaN): Remove macro.
34934         (test_function): Remove all NaN related tests.
34935         * tests/test-printf-posix.output: Remove all NaN related results.
34936         Needed for IRIX 6.5.
34937
34938 2007-05-19  Bruno Haible  <bruno@clisp.org>
34939
34940         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
34941         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
34942
34943 2007-05-19  Bruno Haible  <bruno@clisp.org>
34944
34945         * lib/float_.h: New file.
34946         * m4/float_h.m4: New file.
34947         * modules/float: New file.
34948         * modules/isnanl (Dependencies): Add float.
34949         * modules/isnanl-nolibm (Dependencies): Likewise.
34950         * modules/mathl (Dependencies): Likewise.
34951         * modules/printf-frexpl (Dependencies): Likewise.
34952         * modules/signbit (Dependencies): Likewise.
34953         * modules/vasnprintf (Dependencies): Likewise.
34954         * doc/headers/float.texi: Update.
34955
34956 2007-05-19  Jim Meyering  <jim@meyering.net>
34957
34958         * lib/utimens.c (gl_futimens): Rename from futimens,
34959         now that glibc-2.6 declares futimens.
34960         * lib/utimens.h: Likewise.
34961
34962 2007-05-19  Bruno Haible  <bruno@clisp.org>
34963
34964         Avoid test failures on mingw.
34965         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
34966         * tests/test-printf-posix.sh: Likewise.
34967         * tests/test-vfprintf-posix.sh: Likewise.
34968         * tests/test-vprintf-posix.sh: Likewise.
34969
34970 2007-05-19  Bruno Haible  <bruno@clisp.org>
34971
34972         Fix *printf result for NaN, Inf, -0.0 on mingw.
34973         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
34974         * lib/vasnprintf.c: Include math.h and isnan.h.
34975         (is_infinite_or_zero): New function.
34976         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
34977         values in the %f, %F, %e, %E, %g, %G directives.
34978         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
34979         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34980         gl_PRINTF_INFINITE and test its result. Invoke
34981         gl_PREREQ_VASNPRINTF_INFINITE.
34982         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34983         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34984         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34985         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34986         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34987         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34988         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34989         * doc/functions/fprintf.texi: Update.
34990         * doc/functions/printf.texi: Update.
34991         * doc/functions/snprintf.texi: Update.
34992         * doc/functions/sprintf.texi: Update.
34993         * doc/functions/vfprintf.texi: Update.
34994         * doc/functions/vprintf.texi: Update.
34995         * doc/functions/vsnprintf.texi: Update.
34996         * doc/functions/vsprintf.texi: Update.
34997
34998 2007-05-19  Bruno Haible  <bruno@clisp.org>
34999
35000         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
35001         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
35002         Instead of multiplying with 10^k, set extra_zeroes to k.
35003         (scale10_round_long_double): Remove function.
35004
35005 2007-05-18  Bruno Haible  <bruno@clisp.org>
35006
35007         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
35008         introduced on 2007-05-06.
35009
35010 2007-05-18  Bruno Haible  <bruno@clisp.org>
35011
35012         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
35013         %g directives.
35014         * tests/test-vasprintf-posix.c (test_function): Likewise.
35015         * tests/test-snprintf-posix.h (test_function): Likewise.
35016         * tests/test-sprintf-posix.h (test_function): Likewise.
35017
35018 2007-05-18  Bruno Haible  <bruno@clisp.org>
35019
35020         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
35021         (strmatch): New function.
35022         (test_function): Test the %f directive on numbers of various exponents.
35023         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
35024         (strmatch): New function.
35025         (test_function): Test the %f directive on numbers of various exponents.
35026         * tests/test-snprintf-posix.h (strmatch): New function.
35027         (test_function): Test the %f directive on numbers of various exponents.
35028         * tests/test-sprintf-posix.h (strmatch): New function.
35029         (test_function): Test the %f directive on numbers of various exponents.
35030         * tests/test-snprintf-posix.c (SIZEOF): New macro.
35031         * tests/test-sprintf-posix.c (SIZEOF): New macro.
35032         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
35033         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
35034
35035 2007-05-18  Bruno Haible  <bruno@clisp.org>
35036
35037         Add support for 'long double' number output.
35038         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
35039         * lib/vasnprintf.c: Include math.h and float+.h.
35040         (mp_limb_t): New type.
35041         (GMP_LIMB_BITS): New macro.
35042         (mp_twolimb_t): New type.
35043         (GMP_TWOLIMB_BITS): New macro.
35044         (mpn_t): New type.
35045         (multiply, divide, convert_to_decimal, decode_long_double,
35046         scale10_round_long_double, scale10_round_decimal_long_double,
35047         floorlog10l): New functions.
35048         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
35049         for the %f, %F, %e, %E, %g, %G directives.
35050         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
35051         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35052         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
35053         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
35054         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35055         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35056         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35057         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35058         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35059         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35060         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35061         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
35062         * modules/snprintf-posix (Depends-on): Likewise.
35063         * modules/sprintf-posix (Depends-on): Likewise.
35064         * modules/vasnprintf-posix (Depends-on): Likewise.
35065         * modules/vasprintf-posix (Depends-on): Likewise.
35066         * modules/vfprintf-posix (Depends-on): Likewise.
35067         * modules/vsnprintf-posix (Depends-on): Likewise.
35068         * modules/vsprintf-posix (Depends-on): Likewise.
35069         * modules/vasnprintf (Files): Add lib/float+.h.
35070         * doc/functions/fprintf.texi: Update.
35071         * doc/functions/printf.texi: Update.
35072         * doc/functions/snprintf.texi: Update.
35073         * doc/functions/sprintf.texi: Update.
35074         * doc/functions/vfprintf.texi: Update.
35075         * doc/functions/vprintf.texi: Update.
35076         * doc/functions/vsnprintf.texi: Update.
35077         * doc/functions/vsprintf.texi: Update.
35078
35079 2007-05-18  Bruno Haible  <bruno@clisp.org>
35080
35081         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
35082
35083 2007-05-18  Bruno Haible  <bruno@clisp.org>
35084
35085         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
35086         for printing 64-bit integers. Needed for mingw.
35087
35088 2007-05-18  Bruno Haible  <bruno@clisp.org>
35089
35090         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35091         gl_FUNC_FREXPL_WORKS.
35092         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
35093
35094 2007-05-18  Bruno Haible  <bruno@clisp.org>
35095
35096         * modules/frexpl-nolibm-tests: New file.
35097
35098         * modules/frexpl-nolibm: New file.
35099         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
35100
35101 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
35102
35103         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
35104         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35105         GCC 4.2, which otherwise issues a lot of warnings.
35106         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
35107         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
35108         Likewise.
35109         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
35110         * modules/iconv_open (iconv.h): Likewise.
35111         * modules/locale (locale.h): Likewise.
35112         * modules/netinet_in (netinet/in.h): Likewise.
35113         * modules/sys_select (sys_select.h): Likewise.
35114         * modules/sys_socket (sys/socket.h): Likewise.
35115         * modules/sys_stat (sys/stat.h): Likewise.
35116         * modules/sysexits (sysexits.h): Likewise.
35117         * modules/unistd (unistd.h): Likewise.
35118
35119 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35120
35121         * modules/closein-tests (Makefile.am): Distribute
35122         `test-closein.sh'.
35123
35124 2007-05-17  Bruno Haible  <bruno@clisp.org>
35125
35126         * tests/test-printf-posix.output: Renamed from
35127         tests/test-fprintf-posix.out.
35128         * modules/fprintf-posix-tests: Update.
35129         * modules/printf-posix-tests: Update.
35130         * modules/vfprintf-posix-tests: Update.
35131         * modules/vprintf-posix-tests: Update.
35132         * tests/test-fprintf-posix.sh: Update.
35133         * tests/test-printf-posix.sh: Update.
35134         * tests/test-vfprintf-posix.sh: Update.
35135         * tests/test-vprintf-posix.sh: Update.
35136         Reported by Ralf Wildenhues.
35137
35138 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
35139
35140         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
35141         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35142         GCC 4.2, which otherwise issues a lot of warnings.
35143         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
35144         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
35145         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
35146         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
35147         it should no longer be needed.
35148         * lib/string_.h: Likewise.
35149         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
35150         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
35151         * modules/inttypes (inttypes.h): Likewise.
35152         * modules/math (math.h): Likewise.
35153         * modules/search (search.h): Likewise.
35154         * modules/signal (signal.h): Likewise.
35155         * modules/stdint (stdint.h): Likewise.
35156         * modules/stdio (stdio.h): Likewise.
35157         * modules/stdlib (stdlib.h): Likewise.
35158         * modules/string (string.h): Likewise.
35159         * modules/sys_time (sys/time.h): Likewise.
35160         * modules/time (time.h): Likewise.
35161         * modules/wchar (wchar.h): Likewise.
35162         * modules/wctype (wtype.h): Likewise.
35163
35164 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
35165
35166         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
35167
35168 2007-05-13  Bruno Haible  <bruno@clisp.org>
35169
35170         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
35171         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
35172         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
35173         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
35174         (gl_PREREQ_STRTOK_R): Don't require it here.
35175
35176 2007-05-13  Bruno Haible  <bruno@clisp.org>
35177
35178         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
35179         when used in C++ mode.
35180
35181 2007-05-12  Bruno Haible  <bruno@clisp.org>
35182
35183         * lib/linebuffer.h: Tweak doc.
35184         * lib/linebuffer.c: Likewise.
35185
35186 2007-05-12  James Youngman  <jay@gnu.org>
35187
35188         * lib/linebuffer.c (readlinebuffer_delim): New function,
35189         like readlinebuffer, but use a caller-specified delimiter.
35190         (readlinebuffer): Just call readlinebuffer_delim with '\n'
35191         as the delimiter.
35192         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
35193
35194 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
35195
35196         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
35197         * modules/openat (Files): Remove openat-die.c.
35198         (Depends-on): Add openat-die.
35199         * modules/openat-die: New module.
35200
35201 2007-05-06  Bruno Haible  <bruno@clisp.org>
35202
35203         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
35204         Update with info about Cygwin.
35205         * doc/functions/fprintf.texi: Update.
35206         * doc/functions/printf.texi: Update.
35207         * doc/functions/snprintf.texi: Update.
35208         * doc/functions/sprintf.texi: Update.
35209         * doc/functions/vfprintf.texi: Update.
35210         * doc/functions/vprintf.texi: Update.
35211         * doc/functions/vsnprintf.texi: Update.
35212         * doc/functions/vsprintf.texi: Update.
35213         Reported by Eric Blake.
35214
35215 2007-05-06  Bruno Haible  <bruno@clisp.org>
35216
35217         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
35218         padding ourselves for the floating-point directives.
35219         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
35220         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
35221         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35222         gl_PRINTF_FLAG_ZERO and test its result. Invoke
35223         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
35224         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35225         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35226         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35227         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35228         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35229         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35230         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35231         * tests/test-snprintf-posix.h (test_function): Also check the width
35232         and some flags in the %f directive.
35233         * tests/test-sprintf-posix.h (test_function): Likewise.
35234         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35235         * tests/test-vasprintf-posix.c (test_function): Likewise.
35236         * doc/functions/fprintf.texi: Update.
35237         * doc/functions/printf.texi: Update.
35238         * doc/functions/snprintf.texi: Update.
35239         * doc/functions/sprintf.texi: Update.
35240         * doc/functions/vfprintf.texi: Update.
35241         * doc/functions/vprintf.texi: Update.
35242         * doc/functions/vsnprintf.texi: Update.
35243         * doc/functions/vsprintf.texi: Update.
35244
35245 2007-05-06  Bruno Haible  <bruno@clisp.org>
35246
35247         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
35248         pass the ' flag character to sprintf or snprintf.
35249         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
35250         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
35251         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35252         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
35253         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
35254         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35255         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35256         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35257         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35258         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35259         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35260         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35261         * tests/test-snprintf-posix.h (test_function): Also check the grouping
35262         flag.
35263         * tests/test-sprintf-posix.h (test_function): Likewise.
35264         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35265         * tests/test-vasprintf-posix.c (test_function): Likewise.
35266         * doc/functions/fprintf.texi: Update.
35267         * doc/functions/printf.texi: Update.
35268         * doc/functions/snprintf.texi: Update.
35269         * doc/functions/sprintf.texi: Update.
35270         * doc/functions/vfprintf.texi: Update.
35271         * doc/functions/vprintf.texi: Update.
35272         * doc/functions/vsnprintf.texi: Update.
35273         * doc/functions/vsprintf.texi: Update.
35274
35275 2007-05-01  Bruno Haible  <bruno@clisp.org>
35276
35277         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
35278
35279 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
35280
35281         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
35282         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
35283
35284 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
35285
35286         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
35287         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
35288         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
35289
35290 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
35291
35292         * lib/argp-help.c (struct hol_entry): New member `ord'.
35293         (HOL_ENTRY_PTRCMP): Use ord for comparison
35294         (hol_sort): Initialize ord.
35295
35296 2007-05-01  Bruno Haible  <bruno@clisp.org>
35297
35298         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
35299         Reported by Eric Blake.
35300         * doc/gnulib.texi (Function Substitutes): Update.
35301
35302 2007-05-01  Bruno Haible  <bruno@clisp.org>
35303
35304         * doc/functions.texi: Remove file, now redundant through
35305         doc/functions/*.texi.
35306
35307 2007-05-01  Bruno Haible  <bruno@clisp.org>
35308
35309         * modules/argp (Depends-on): Add sleep.
35310
35311 2007-05-01  Bruno Haible  <bruno@clisp.org>
35312
35313         * modules/sleep-tests: New file.
35314         * tests/test-sleep.c: New file.
35315
35316         * modules/sleep: New file.
35317         * lib/sleep.c: New file.
35318         * m4/sleep.m4: New file.
35319         * lib/unistd_.h (sleep): New declaration.
35320         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
35321         HAVE_SLEEP.
35322         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
35323         * doc/functions/sleep.texi: Document the sleep module.
35324
35325 2007-05-01  Bruno Haible  <bruno@clisp.org>
35326
35327         * lib/sigprocmask.h: Remove file.
35328         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
35329         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
35330         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
35331         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
35332         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
35333         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
35334         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
35335         HAVE_SIGSET_T as a shell variable.
35336         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
35337         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
35338         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
35339         (Depends-on): Add signal. Remove verify.
35340         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
35341         (Include): Mention <signal.h> instead of sigprocmask.h.
35342         * NEWS: Mention the change.
35343         * lib/fatal-signal.c: Don't include sigprocmask.h.
35344
35345 2007-05-01  Bruno Haible  <bruno@clisp.org>
35346
35347         * modules/signal: New file.
35348         * lib/signal_.h: New file.
35349         * m4/signal_h.m4: New file.
35350
35351 2007-05-01  Bruno Haible  <bruno@clisp.org>
35352
35353         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
35354         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
35355         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
35356         HAVE_WCTYPE_CTMP_BUG into wctype.h.
35357
35358 2007-05-01  Bruno Haible  <bruno@clisp.org>
35359
35360         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
35361         configure time.
35362         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
35363         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
35364         * modules/sys_stat (Makefile.am): Substitute their values into
35365         sys/stat.h.
35366
35367 2007-05-01  Bruno Haible  <bruno@clisp.org>
35368
35369         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
35370         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
35371         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
35372
35373 2007-05-01  Bruno Haible  <bruno@clisp.org>
35374
35375         * doc/header/assert.texi: Undo last change: don't mention the gnulib
35376         'assert' module here.
35377
35378 2007-05-01  Bruno Haible  <bruno@clisp.org>
35379
35380         * doc/functions/*.texi: New files.
35381         * doc/functions/google-ranking.txt: New file.
35382         * doc/gnulib.texi (Function Substitutes): New chapter.
35383         (ctime, inet_ntoa): Remove sections.
35384         * doc/ctime.texi: Remove file.
35385         * doc/inet_ntoa.texi: Remove file.
35386         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
35387         dependencies.
35388         (%.info): New rule, specifying a --reference-limit.
35389
35390 2007-05-01  Bruno Haible  <bruno@clisp.org>
35391
35392         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
35393
35394 2007-05-01  Bruno Haible  <bruno@clisp.org>
35395
35396         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
35397         the portability of 'mkdir' to mingw systems.
35398
35399 2007-05-01  Bruno Haible  <bruno@clisp.org>
35400
35401         * doc/headers/google-ranking.txt: New file.
35402
35403 2007-04-30  Eric Blake  <ebb9@byu.net>
35404
35405         Prefer fseeko to fseek.
35406         * modules/getpass (Depends-on): Add fseeko.
35407         * lib/getpass.c (getpass): Use fseeko, not fseek.
35408
35409 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
35410
35411         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
35412         assumes the sorting is stable, while most qsort implementations
35413         are not.  Use argument addresses to ensure they never compare as
35414         equal.
35415
35416         * tests/test-argp-2.sh (usage-indent test): Fix output
35417         (func_compare): Restore diff options
35418         * tests/test-argp.c: Restore #include "progname.h"
35419
35420 2007-04-29  Bruno Haible  <bruno@clisp.org>
35421
35422         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
35423         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35424         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
35425         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35426         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
35427         (configure.ac): Define CHECK_SNPRINTF_POSIX.
35428         (TESTS, check_PROGRAMS): Add test-snprintf.
35429         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
35430         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
35431         (TESTS, check_PROGRAMS): Add test-vsnprintf.
35432         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
35433         assertions that fail on HP-UX, OSF/1, or IRIX.
35434         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
35435
35436 2007-04-29  Bruno Haible  <bruno@clisp.org>
35437
35438         * MODULES.html.sh (posix_functions): Remove 'contents'.
35439
35440 2007-04-29  Karl Berry  <karl@gnu.org>
35441
35442         * config/srclist.txt (gendocs_template_min): new entry.
35443
35444 2007-04-29  Bruno Haible  <bruno@clisp.org>
35445
35446         Work around fpurge bug on BSD systems.
35447         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
35448         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
35449         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
35450         fpurge to rpl_fpurge if the system already has this function.
35451         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
35452         the case where the system already has this function. Correct invariants
35453         on BSD systems.
35454         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
35455         BSD systems.
35456
35457 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
35458
35459         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
35460         proposed by Sven Verdoolaege.
35461
35462         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
35463         options.
35464         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
35465         (usage and help tests): Update
35466
35467 2007-04-29  Bruno Haible  <bruno@clisp.org>
35468
35469         * tests/test-fflush.c (main): Use a file of size 17, not 10.
35470         Print more information in case of failure. Disable a test on BeOS.
35471
35472 2007-04-29  Bruno Haible  <bruno@clisp.org>
35473
35474         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
35475         This helps debugging on systems on which no gdb is available.
35476
35477 2007-04-29  Bruno Haible  <bruno@clisp.org>
35478
35479         * lib/freading.h: Improve comments.
35480         * lib/fwriting.h: Likewise.
35481         * tests/test-freading.c (main): Don't check freading immediately after
35482         repositioning. Needed for glibc.
35483
35484 2007-04-29  Bruno Haible  <bruno@clisp.org>
35485
35486         * lib/freading.c (freading): Trivial simplification.
35487
35488 2007-04-28  Bruno Haible  <bruno@clisp.org>
35489
35490         * tests/test-fwriting.c (main): Also test the interaction between
35491         fflush and fwriting.
35492         * modules/fwriting-tests (Depends-on): Add fflush.
35493
35494         * tests/test-freading.c (main): Also test the interaction between
35495         fflush and freading.
35496         * modules/freading-tests (Depends-on): Add fflush.
35497
35498 2007-04-28  Bruno Haible  <bruno@clisp.org>
35499
35500         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
35501         fseeko and ftello.
35502         Suggested by Eric Blake.
35503
35504 2007-04-28  Jim Meyering  <jim@meyering.net>
35505
35506         Avoid false-negative in gl_STDINT_H's C99 conformance test.
35507         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
35508         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
35509
35510 2007-04-27  Eric Blake  <ebb9@byu.net>
35511
35512         * doc/headers/assert.texi (assert.h): Document assert module use.
35513
35514 2007-04-27  Bruno Haible  <bruno@clisp.org>
35515
35516         * doc/headers/*.texi: New files.
35517         * doc/gnulib.texi (Header File Substitutes): New chapter.
35518         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
35519         dependencies.
35520         (standards.info ,standards.html, standards.dvi): Update dependencies.
35521         (mostlyclean, clean): New targets.
35522
35523 2007-04-27  Bruno Haible  <bruno@clisp.org>
35524
35525         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
35526         * modules/sysexits (Files, Makefile.am): Update.
35527
35528         * lib/sys_socket_.h: Renamed from lib/socket_.h.
35529         * modules/sys_socket (Files, Makefile.am): Update.
35530
35531         * lib/sys_stat_.h: Renamed from lib/stat_.h.
35532         * modules/sys_stat (Files, Makefile.am): Update.
35533
35534 2007-04-27  Eric Blake  <ebb9@byu.net>
35535
35536         * lib/freading.h: Improve comments.
35537         * lib/fwriting.h: Likewise.
35538         * lib/fflush.c: Likewise.
35539
35540         Fix closein for mingw.
35541         * modules/closein-tests: Add tests for closein.
35542         * tests/test-closein.c: New file.
35543         * tests/test-closein.sh: Likewise.
35544         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
35545         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
35546
35547 2007-04-27  Bruno Haible  <bruno@clisp.org>
35548
35549         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
35550         version is < 6.
35551         * lib/math_.h [__DECC]: Likewise.
35552         * lib/stdio_.h [__DECC]: Likewise.
35553         * lib/stdlib_.h [__DECC]: Likewise.
35554         * lib/string_.h [__DECC]: Likewise.
35555         * lib/time_.h [__DECC]: Likewise.
35556         * lib/wchar_.h [__DECC]: Likewise.
35557         * lib/wctype_.h [__DECC]: Likewise.
35558
35559 2007-04-27  Bruno Haible  <bruno@clisp.org>
35560
35561         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
35562
35563 2007-04-27  Bruno Haible  <bruno@clisp.org>
35564
35565         * lib/fflush.c: Add comments.
35566         * modules/fpurge-tests (Depends-on): Add fflush.
35567         * modules/freadable-tests (Depends-on): Likewise.
35568         * modules/fwritable-tests (Depends-on): Likewise.
35569
35570 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
35571
35572         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
35573         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
35574         Report by Bruno Haible <bruno@clisp.org>.
35575
35576 2007-04-26  Eric Blake  <ebb9@byu.net>
35577
35578         Fix fflush on mingw.
35579         * modules/fflush (Depends-on): Add freading.
35580         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
35581         but unread data.
35582
35583 2007-04-26  Eric Blake  <ebb9@byu.net>
35584         and Bruno Haible  <bruno@clisp.org>
35585
35586         Implement freading and fwriting.
35587         * lib/freading.c: New file.
35588         * lib/freading.h: Likewise.
35589         * m4/freading.m4: Likewise.
35590         * modules/freading: Likewise.
35591         * modules/freading-tests: Likewise.
35592         * tests/test-freading.c: Likewise.
35593         * lib/fwriting.c: New file.
35594         * lib/fwriting.h: Likewise.
35595         * m4/fwriting.m4: Likewise.
35596         * modules/fwriting: Likewise.
35597         * modules/fwriting-tests: Likewise.
35598         * tests/test-fwriting.c: Likewise.
35599         * MODULES.html.sh (File stream based Input/Output): Mention them.
35600
35601 2007-04-26  Bruno Haible  <bruno@clisp.org>
35602
35603         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
35604         'long' when we assume it.
35605         Suggested by Eric Blake.
35606
35607 2007-04-26  Bruno Haible  <bruno@clisp.org>
35608
35609         Ensure fseeko, ftello are declared on glibc systems.
35610         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
35611         * modules/fseeko (configure.ac-early): Likewise.
35612         * modules/ftello (configure.ac-early): Likewise.
35613         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
35614         AC_FUNC_FSEEKO for this.
35615         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
35616         (gl_CHECK_FSEEKO): Remove macro.
35617
35618 2007-04-26  Bruno Haible  <bruno@clisp.org>
35619
35620         * tests/test-fflush.c (main): Also check the ftell result after
35621         fflush and fseek/fseeko.
35622         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
35623         file descriptor position cache in the stream.
35624         * lib/fseeko.c (rpl_fseeko): Likewise.
35625
35626 2007-04-26  Bruno Haible  <bruno@clisp.org>
35627
35628         * modules/fflush-tests (Depends-on): Add fseeko.
35629
35630 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
35631             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35632
35633         * lib/argz_.h: ensure error_t definition is obtained in same
35634         mechanism system argz.h would have.
35635         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
35636         argz facilities are known bad.  Err on the side of caution if
35637         cross-compiling.
35638
35639 2007-04-25  Eric Blake  <ebb9@byu.net>
35640
35641         * lib/fpurge.c (includes): Use stdlib.h for free.
35642         * tests/test-fflush.c (main): Also test fflush-fseeko.
35643
35644 2007-04-25  Bruno Haible  <bruno@clisp.org>
35645
35646         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
35647         * lib/fseeko.c: New file.
35648         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
35649         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
35650         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
35651         gl_FUNC_FSEEKO.
35652         (gl_FUNC_FSEEKO): Invoke it.
35653         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
35654         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
35655         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
35656
35657 2007-04-25  Bruno Haible  <bruno@clisp.org>
35658
35659         * modules/fflush (Depends-on): Add ftello.
35660
35661 2007-04-25  Bruno Haible  <bruno@clisp.org>
35662
35663         * modules/ftello-tests: New file.
35664         * tests/test-ftello.c: New file.
35665
35666         * modules/ftello: New file.
35667         * m4/ftello.m4: New file.
35668         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
35669         HAVE_FTELLO.
35670         * lib/stdio_.h (ftello): New declaration.
35671         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
35672         HAVE_FTELLO.
35673
35674 2007-04-25  Bruno Haible  <bruno@clisp.org>
35675
35676         * modules/fseeko-tests: New file.
35677         * tests/test-fseeko.c: New file.
35678
35679         * modules/fseeko: New file.
35680         * m4/fseeko.m4: New file.
35681         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
35682         HAVE_FSEEKO.
35683         * lib/stdio_.h (fseeko): New declaration.
35684         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
35685         HAVE_FSEEKO.
35686
35687 2007-04-25  Bruno Haible  <bruno@clisp.org>
35688
35689         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
35690
35691 2007-04-25  Bruno Haible  <bruno@clisp.org>
35692
35693         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
35694         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
35695         * tests/test-unistd.c: Likewise.
35696         * tests/test-fcntl.c: Likewise.
35697
35698 2007-04-23  Eric Blake  <ebb9@byu.net>
35699
35700         * lib/fflush.c: Fix missing include.
35701         Reported by Bruno Haible.
35702
35703 2007-04-23  Bruno Haible  <bruno@clisp.org>
35704
35705         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
35706         Reported by Eric Blake.
35707
35708 2007-04-23  Bruno Haible  <bruno@clisp.org>
35709
35710         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
35711
35712 2007-04-23  Bruno Haible  <bruno@clisp.org>
35713
35714         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
35715
35716 2007-04-23  Bruno Haible  <bruno@clisp.org>
35717
35718         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
35719         Needed on HP-UX 11.
35720
35721 2007-04-16  Eric Blake  <ebb9@byu.net>
35722
35723         Make fflush rely on fpurge.
35724         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
35725         open coding all variants.
35726         * modules/fflush (Depends-on): Add fpurge and unistd.
35727         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
35728         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
35729
35730         Fix --with-tests compilation on cygwin.
35731         * modules/argmatch-tests (Makefile.am): List gnulib library first
35732         in LDADD.
35733         * modules/argp-tests (Makefile.am): Likewise.
35734         * modules/array-list-tests (Makefile.am): Likewise.
35735         * modules/array-oset-tests (Makefile.am): Likewise.
35736         * modules/avltree-list-tests (Makefile.am): Likewise.
35737         * modules/avltree-oset-tests (Makefile.am): Likewise.
35738         * modules/avltreehash-list-tests (Makefile.am): Likewise.
35739         * modules/carray-list-tests (Makefile.am): Likewise.
35740         * modules/dirname-tests (Makefile.am): Likewise.
35741         * modules/frexp-tests (Makefile.am): Likewise.
35742         * modules/isnanl-tests (Makefile.am): Likewise.
35743         * modules/linked-list-tests (Makefile.am): Likewise.
35744         * modules/linkedhash-list-tests (Makefile.am): Likewise.
35745         * modules/lock-tests (Makefile.am): Likewise.
35746         * modules/rbtree-list-tests (Makefile.am): Likewise.
35747         * modules/rbtree-oset-tests (Makefile.am): Likewise.
35748         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
35749         * modules/tls-tests (Makefile.am): Likewise.
35750         * modules/tsearch-tests (Makefile.am): Likewise.
35751         * modules/xvasprintf-tests (Makefile.am): Likewise.
35752
35753         Fix fpurge for cygwin.
35754         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
35755         value.
35756         * modules/fpurge-tests (Depends-on): Clean up trash.
35757
35758 2007-04-16  Simon Josefsson  <simon@josefsson.org>
35759
35760         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
35761
35762         * m4/autobuild.m4: Re-indent.
35763
35764 2007-04-13  Bruno Haible  <bruno@clisp.org>
35765
35766         * modules/fpurge-tests: New file.
35767         * tests/test-fpurge.c: New file.
35768
35769         * modules/fpurge: New file.
35770         * lib/fpurge.h: New file.
35771         * lib/fpurge.c: New file.
35772         * m4/fpurge.m4: New file.
35773
35774 2007-04-13  Bruno Haible  <bruno@clisp.org>
35775
35776         * modules/fbufmode-tests: New file.
35777         * tests/test-fbufmode.c: New file.
35778
35779         * modules/fbufmode: New file.
35780         * lib/fbufmode.h: New file.
35781         * lib/fbufmode.c: New file.
35782         * m4/fbufmode.m4: New file.
35783
35784 2007-04-13  Bruno Haible  <bruno@clisp.org>
35785
35786         * modules/fwritable-tests: New file.
35787         * tests/test-fwritable.c: New file.
35788
35789         * modules/fwritable: New file.
35790         * lib/fwritable.h: New file.
35791         * lib/fwritable.c: New file.
35792         * m4/fwritable.m4: New file.
35793
35794 2007-04-13  Bruno Haible  <bruno@clisp.org>
35795
35796         * modules/freadable-tests: New file.
35797         * tests/test-freadable.c: New file.
35798
35799         * modules/freadable: New file.
35800         * lib/freadable.h: New file.
35801         * lib/freadable.c: New file.
35802         * m4/freadable.m4: New file.
35803
35804 2007-04-13  Bruno Haible  <bruno@clisp.org>
35805
35806         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
35807         MOSTLYCLEANFILES.
35808
35809 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35810
35811         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
35812         gzip bootstrap.conf to avoid dragging in i18n machinery.
35813         (gnulib_tool_option): Use it.
35814
35815 2007-04-13  Bruno Haible  <bruno@clisp.org>
35816
35817         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
35818         %F directives.
35819         * tests/test-vasprintf-posix.c (test_function): Likewise.
35820         * tests/test-snprintf-posix.h (test_function): Likewise.
35821         * tests/test-sprintf-posix.h (test_function): Likewise.
35822         * tests/test-fprintf-posix.h (test_function): Likewise.
35823         * tests/test-printf-posix.h (test_function): Likewise.
35824         * tests/test-fprintf-posix.out: Likewise.
35825
35826 2007-04-13  Bruno Haible  <bruno@clisp.org>
35827
35828         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
35829         * modules/tls-tests (configure.ac): Likewise.
35830         Reported by Arto C. Nirkko <anirkko@insel.ch>.
35831
35832 2007-04-13  Bruno Haible  <bruno@clisp.org>
35833
35834         * lib/tls.c (glthread_tls_get): Fix return type.
35835         Patch by Arto C. Nirkko <anirkko@insel.ch>.
35836
35837 2007-04-12  Eric Blake  <ebb9@byu.net>
35838
35839         * modules/gettime (Depends-on): Remove gettime.
35840         Reported by Dmitry V. Levin.
35841
35842 2007-04-12  Bruno Haible  <bruno@clisp.org>
35843
35844         * modules/fflush (Include): Mention <stdio.h>.
35845         * modules/strtoimax (Include): Mention <inttypes.h>.
35846         * modules/strtoumax (Include): Likewise.
35847
35848 2007-04-12  Eric Blake  <ebb9@byu.net>
35849
35850         * .cvsignore: New file.
35851         * .gitignore: Likewise.
35852
35853 2007-04-12  Bruno Haible  <bruno@clisp.org>
35854
35855         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
35856         not before, since $(LDADD) often contains libgnu.a.
35857         * modules/striconv-tests (test_striconv_LDADD): Likewise.
35858         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
35859         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
35860         Needed on Cygwin.
35861
35862 2007-04-12  Eric Blake  <ebb9@byu.net>
35863
35864         Work around glibc's failure to flush stdin on fclose.
35865         * lib/closein.c (close_stdin): Flush stdin before closing.
35866
35867         Work around glibc's failure to reset seekable stdin on exit.
35868         * modules/closein: New module.
35869         * lib/closein.c: New file.
35870         * lib/closein.h: Likewise.
35871         * m4/closein.m4: Likewise.
35872         * MODULES.html.sh (File stream based Input/Output): Document it.
35873
35874 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35875
35876         * gnulib-tool: Rename generated 'autobuild' script to
35877         'do-autobuild' in --create-megatestdir output.
35878
35879         * doc/gnulib.texi (Build robot for gnulib): Fix.
35880
35881 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35882
35883         * modules/sysexits (Depends-on): Add absolute-header.
35884
35885 2007-04-12  Eric Blake  <ebb9@byu.net>
35886
35887         No need to preserve errno on success.
35888         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
35889         Reported by Bruno Haible.
35890
35891 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35892
35893         * MODULES.html.sh (Support for maintaining and releasing
35894         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
35895
35896 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35897
35898         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
35899
35900 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35901
35902         * modules/autobuild: New module.
35903
35904         * m4/autobuild.m4: New file.
35905
35906 2007-04-11  Bruno Haible  <bruno@clisp.org>
35907
35908         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
35909         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
35910         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
35911         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
35912         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35913         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35914         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35915         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35916         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35917         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35918         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
35919         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35920         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35921         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
35922         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35923         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35924         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
35925         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35926         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35927         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
35928         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35929         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35930         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
35931         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35932         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35933         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
35934         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35935         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35936         Reported by Eric Blake.
35937
35938 2007-04-11  Bruno Haible  <bruno@clisp.org>
35939
35940         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
35941
35942 2007-04-10  Bruno Haible  <bruno@clisp.org>
35943
35944         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
35945         for NaN and Infinity. Needed on FreeBSD 6.1.
35946         * tests/test-vasnprintf-posix.c (test_function): Undo last change
35947         regarding results for "%010a" of Infinity and NaN.
35948         * tests/test-vasprintf-posix.c (test_function): Likewise.
35949         * tests/test-snprintf-posix.h (test_function): Likewise.
35950         * tests/test-sprintf-posix.h (test_function): Likewise.
35951         * tests/test-fprintf-posix.h (test_function): Likewise.
35952         * tests/test-printf-posix.h (test_function): Likewise.
35953         * tests/test-fprintf-posix.out: Likewise.
35954
35955 2007-04-10  Bruno Haible  <bruno@clisp.org>
35956
35957         * modules/locale-tests: New file.
35958         * tests/test-locale.c: New file.
35959
35960         * modules/locale: New file.
35961         * lib/locale_.h: New file.
35962         * m4/locale_h.m4: New file.
35963
35964 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
35965             Bruno Haible  <bruno@clisp.org>
35966
35967         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
35968         be determined, test for availability of the copysignf, copysign,
35969         copysignl functions.
35970         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
35971         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
35972         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
35973
35974 2007-04-09  Eric Blake  <ebb9@byu.net>
35975
35976         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
35977         * modules/stdio (Makefile.am): Support fflush.
35978         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
35979         * modules/fflush: New file.
35980         * lib/fflush.c: Likewise.
35981         * m4/fflush.m4: Likewise.
35982         * modules/fflush-tests: New test.
35983         * tests/test-fflush.c: Likewise.
35984         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
35985
35986 2007-04-06  Bruno Haible  <bruno@clisp.org>
35987
35988         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
35989         (VASNPRINTF): Use signbit for faster determination whether to print a
35990         minus sign.
35991         * modules/vasnprintf (Files): Remove lib/float+.h.
35992         * modules/fprintf-posix (Depends-on): Add signbit.
35993         * modules/snprintf-posix (Depends-on): Likewise.
35994         * modules/sprintf-posix (Depends-on): Likewise.
35995         * modules/vasnprintf-posix (Depends-on): Likewise.
35996         * modules/vasprintf-posix (Depends-on): Likewise.
35997         * modules/vfprintf-posix (Depends-on): Likewise.
35998         * modules/vsnprintf-posix (Depends-on): Likewise.
35999         * modules/vsprintf-posix (Depends-on): Likewise.
36000
36001 2007-04-06  Bruno Haible  <bruno@clisp.org>
36002
36003         * tests/test-frexp.c (main): Test also the sign bit of zero results.
36004         * tests/test-frexpl.c (main): Likewise.
36005         * tests/test-ldexpl.c (main): Likewise.
36006         * modules/frexp-tests (Depends-on): Add signbit.
36007         * modules/frexpl-tests (Depdends-on): Likewise.
36008         * modules/ldexpl-tests (Depdends-on): Likewise.
36009
36010 2007-04-06  Bruno Haible  <bruno@clisp.org>
36011
36012         * modules/signbit-tests: New file.
36013         * tests/test-signbit.c: New file.
36014
36015         * modules/signbit: New file.
36016         * lib/signbitf.c: New file.
36017         * lib/signbitd.c: New file.
36018         * lib/signbitl.c: New file.
36019         * m4/signbit.m4: New file.
36020         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
36021         (signbit): New macro.
36022         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
36023         REPLACE_SIGNBIT.
36024         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
36025         REPLACE_FREXPL into math.h.
36026
36027 2007-04-06  Bruno Haible  <bruno@clisp.org>
36028
36029         * modules/isnanf-nolibm-tests: New file.
36030         * tests/test-isnanf.c: New file.
36031
36032         * modules/isnanf-nolibm: New file.
36033         * lib/isnanf.h: New file.
36034         * lib/isnanf.c: New file.
36035         * lib/isnan.c: Consider the USE_FLOAT macro.
36036         * m4/isnanf.m4: New file.
36037
36038 2007-04-06  Bruno Haible  <bruno@clisp.org>
36039
36040         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
36041         (Link): New section.
36042
36043         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
36044
36045 2007-04-06  Bruno Haible  <bruno@clisp.org>
36046
36047         Assume the 'long double' type.
36048         * m4/longdouble.m4: Remove file.
36049         * config/srclist.txt: Don't mention longdouble.m4.
36050         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
36051         * lib/float+.h: Likewise.
36052         * lib/frexp.c: Likewise.
36053         * lib/printf-args.h: Likewise.
36054         * lib/printf-args.c: Likewise.
36055         * lib/printf-frexp.c: Likewise.
36056         * lib/printf-parse.c: Likewise.
36057         * lib/vasnprintf.c: Likewise.
36058         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
36059         * m4/intl.m4: Likewise.
36060         * m4/isnanl.m4: Likewise.
36061         * m4/printf.m4: Likewise.
36062         * m4/printf-frexpl.m4: Likewise.
36063         * m4/vasnprintf.m4: Likewise.
36064         * modules/allocsa (Files): Remove m4/longdouble.m4.
36065         * modules/gettext (Files): Likewise.
36066         * modules/relocatable-prog-wrapper (Files): Likewise.
36067         * modules/vasnprintf (Files): Likewise.
36068         * modules/isnanl (Files): Likewise.
36069         (Include): Simplify.
36070         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
36071         (Include): Simplify.
36072         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
36073         (Include): Simplify.
36074         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
36075         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36076         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
36077         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36078         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36079         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36080         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
36081         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36082         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36083         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36084         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
36085         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36086         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
36087         * tests/test-isnanl.c: Likewise.
36088         * tests/test-snprintf-posix.h: Likewise.
36089         * tests/test-sprintf-posix.h: Likewise.
36090         * tests/test-vasnprintf-posix.c: Likewise.
36091         * tests/test-vasnprintf-posix2.c: Likewise.
36092         * tests/test-vasprintf-posix.c: Likewise.
36093
36094 2007-04-06  Bruno Haible  <bruno@clisp.org>
36095
36096         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
36097         * lib/math_.h [__DECC]: Include the overridden include file through
36098         #include_next, outside the double-inclusion guard.
36099         * lib/stdio_.h [__DECC]: Likewise.
36100         * lib/stdlib_.h [__DECC]: Likewise.
36101         * lib/string_.h [__DECC]: Likewise.
36102         * lib/time_.h [__DECC]: Likewise.
36103         * lib/wchar_.h [__DECC]: Likewise.
36104         * lib/wctype_.h [__DECC]: Likewise.
36105         * lib/inttypes_.h [__DECC]: Likewise.
36106         Reported by Albert Chin <china@thewrittenword.com> in
36107         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
36108
36109 2007-04-04  Eric Blake  <ebb9@byu.net>
36110
36111         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
36112         1.5.x.
36113
36114 2007-04-04  Bruno Haible  <bruno@clisp.org>
36115
36116         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
36117         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
36118
36119 2007-04-04  Bruno Haible  <bruno@clisp.org>
36120
36121         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
36122         results for "%010a" of Infinity and NaN.
36123         * tests/test-vasprintf-posix.c (test_function): Likewise.
36124         * tests/test-snprintf-posix.h (test_function): Likewise.
36125         * tests/test-sprintf-posix.h (test_function): Likewise.
36126         * tests/test-fprintf-posix.h (test_function): Remove these tests.
36127         * tests/test-printf-posix.h (test_function): Likewise.
36128         * tests/test-fprintf-posix.out: Update.
36129         Needed for FreeBSD 6.1.
36130
36131 2007-04-04  Bruno Haible  <bruno@clisp.org>
36132
36133         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
36134         directly used by the gnulib modules nor by gnulib-tool.
36135
36136 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
36137
36138         * DEPENDENCIES: Give overall description of version dependency
36139         desirability.  Use more-typical names for apps.
36140         Add shell, coreutils, diffutils, grep, tar, gzip.
36141
36142 2007-04-04  Simon Josefsson  <simon@josefsson.org>
36143
36144         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
36145
36146 2007-04-04  Karl Berry  <karl@gnu.org>
36147
36148         * MODULES.html.sh (func_module): missing '.
36149
36150 2007-04-03  Bruno Haible  <bruno@clisp.org>
36151
36152         * modules/argmatch-tests (Makefile.am): New variable
36153         test_argmatch_LDADD.
36154         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
36155         * modules/array-list-tests (Makefile.am): New variable
36156         test_array_list_LDADD.
36157         * modules/array-oset-tests (Makefile.am): New variable
36158         test_array_oset_LDADD.
36159         * modules/avltree-list-tests (Makefile.am): New variable
36160         test_avltree_list_LDADD.
36161         * modules/avltree-oset-tests (Makefile.am): New variable
36162         test_avltree_oset_LDADD.
36163         * modules/avltreehash-list-tests (Makefile.am): New variable
36164         test_avltreehash_list_LDADD.
36165         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
36166         test_canonicalize_lgpl_LDADD.
36167         * modules/carray-list-tests (Makefile.am): New variable
36168         test_carray_list_LDADD.
36169         * modules/dirname-tests (Makefile.am): New variable
36170         test_dirname_LDADD.
36171         * modules/linked-list-tests (Makefile.am): New variable
36172         test_linked_list_LDADD.
36173         * modules/linkedhash-list-tests (Makefile.am): New variable
36174         test_linkedhash_list_LDADD.
36175         * modules/rbtree-list-tests (Makefile.am): New variable
36176         test_rbtree_list_LDADD.
36177         * modules/rbtree-oset-tests (Makefile.am): New variable
36178         test_rbtree_oset_LDADD.
36179         * modules/rbtreehash-list-tests (Makefile.am): New variable
36180         test_rbtreehash_list_LDADD.
36181         * modules/xvasprintf-tests (Makefile.am): New variable
36182         test_xvasprintf_LDADD.
36183         Reported by Eric Blake.
36184
36185 2007-04-03  Eric Blake  <ebb9@byu.net>
36186
36187         * DEPENDENCIES: Weaken m4 requirements.
36188
36189 2007-04-03  Bruno Haible  <bruno@clisp.org>
36190
36191         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
36192         * modules/isnanl-tests (configure.ac): Likewise.
36193
36194 2007-04-03  Ben Pfaff  <blp@gnu.org>
36195
36196         * modules/iconv_open: Add $(srcdir)/ to source directory
36197         references in Makefile fragments that call gperf, to fix VPATH
36198         builds.
36199
36200 2007-04-03  Bruno Haible  <bruno@clisp.org>
36201
36202         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
36203         * lib/ldexpl.c: Undo last change.
36204
36205 2007-04-03  Bruno Haible  <bruno@clisp.org>
36206
36207         * modules/printf-frexpl (Depends-on): Undo last change.
36208         (Files): Add m4/ldexpl.m4.
36209
36210 2007-04-03  Bruno Haible  <bruno@clisp.org>
36211
36212         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
36213         * modules/isnanl (Link): New section.
36214
36215         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
36216         * modules/frexp (Link): New section.
36217
36218         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
36219         * modules/frexpl (Link): New section.
36220
36221         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
36222         * modules/ldexpl (Link): New section.
36223
36224 2007-04-03  Bruno Haible  <bruno@clisp.org>
36225
36226         * modules/TEMPLATE-EXTENDED: New file.
36227         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
36228
36229 2007-04-03  Bruno Haible  <bruno@clisp.org>
36230
36231         * DEPENDENCIES: New file.
36232         Suggested by Simon Josefsson.
36233
36234 2007-04-03  Bruno Haible  <bruno@clisp.org>
36235
36236         * doc/gnulib.texi: Escape @.
36237
36238 2007-04-03  James Youngman  <jay@gnu.org>
36239         and Paul Eggert  <eggert@cs.ucla.edu>
36240
36241         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
36242         birthtime on all systems that have birthtime, not just those which
36243         use st_birthtimensec rather than st_birthtim.  Putting zero in
36244         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
36245         that the birth time is not available for files on an NFS mount.
36246
36247 2007-04-03  Simon Josefsson  <simon@josefsson.org>
36248
36249         * modules/memxor: Move back from crypto/, suggested by Bruno.
36250         * modules/crypto/hmac-sha1: Fix memxor dependency.
36251
36252         * modules/crypto/gc: Moved from ../.
36253
36254 2007-04-02  Eric Blake  <ebb9@byu.net>
36255
36256         * lib/ldexpl.c (includes): Avoid libm.
36257
36258         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
36259
36260 2007-04-02  Bruno Haible  <bruno@clisp.org>
36261
36262         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
36263         on IRIX.
36264
36265 2007-04-02  Bruno Haible  <bruno@clisp.org>
36266
36267         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
36268         x86 or x86_64 platforms running MacOS X.
36269         Reported by Ryan Schmidt <@ryandesign.com>.
36270
36271 2007-04-02  Bruno Haible  <bruno@clisp.org>
36272
36273         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
36274         i386.
36275
36276 2007-04-01  Simon Josefsson  <simon@josefsson.org>
36277
36278         * modules/crypto/arcfour: Moved from ../.
36279         * modules/crypto/arcfour-tests: Moved from ../.
36280         * modules/crypto/arctwo: Moved from ../.
36281         * modules/crypto/arctwo-tests: Moved from ../.
36282         * modules/crypto/des: Moved from ../.
36283         * modules/crypto/des-tests: Moved from ../.
36284         * modules/crypto/gc-arcfour: Moved from ../.
36285         * modules/crypto/gc-arcfour-tests: Moved from ../.
36286         * modules/crypto/gc-arctwo: Moved from ../.
36287         * modules/crypto/gc-arctwo-tests: Moved from ../.
36288         * modules/crypto/gc-des: Moved from ../.
36289         * modules/crypto/gc-des-tests: Moved from ../.
36290         * modules/crypto/gc-hmac-md5: Moved from ../.
36291         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
36292         * modules/crypto/gc-hmac-sha1: Moved from ../.
36293         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
36294         * modules/crypto/gc-md2: Moved from ../.
36295         * modules/crypto/gc-md2-tests: Moved from ../.
36296         * modules/crypto/gc-md4: Moved from ../.
36297         * modules/crypto/gc-md4-tests: Moved from ../.
36298         * modules/crypto/gc-md5: Moved from ../.
36299         * modules/crypto/gc-md5-tests: Moved from ../.
36300         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
36301         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
36302         * modules/crypto/gc-random: Moved from ../.
36303         * modules/crypto/gc-rijndael: Moved from ../.
36304         * modules/crypto/gc-rijndael-tests: Moved from ../.
36305         * modules/crypto/gc-sha1: Moved from ../.
36306         * modules/crypto/gc-sha1-tests: Moved from ../.
36307         * modules/crypto/gc-tests: Moved from ../.
36308         * modules/crypto/hmac-md5: Moved from ../.
36309         * modules/crypto/hmac-md5-tests: Moved from ../.
36310         * modules/crypto/hmac-sha1: Moved from ../.
36311         * modules/crypto/hmac-sha1-tests: Moved from ../.
36312         * modules/crypto/md2: Moved from ../.
36313         * modules/crypto/md2-tests: Moved from ../.
36314         * modules/crypto/md4: Moved from ../.
36315         * modules/crypto/md4-tests: Moved from ../.
36316         * modules/crypto/md5: Moved from ../.
36317         * modules/crypto/md5-tests: Moved from ../.
36318         * modules/crypto/memxor: Moved from ../.
36319         * modules/crypto/rijndael: Moved from ../.
36320         * modules/crypto/rijndael-tests: Moved from ../.
36321         * modules/crypto/sha1: Moved from ../.
36322
36323 2007-03-30  James Youngman  <jay@gnu.org>
36324
36325         * tests/test-stat-time.c (prepare_test): use chmod() rather than
36326         rename() to change the ctime of a file (because ctime is unaffected
36327         by rename on jfs2 on AIX 5.1).
36328         (main): Start by doing cleanup, in case a previous run failed leaving
36329         test files behind.
36330
36331 2007-03-31  Bruno Haible  <bruno@clisp.org>
36332
36333         Support old proprietary implementations of iconv.
36334         * modules/iconv_open: New file.
36335         * lib/iconv_.h: New file.
36336         * m4/iconv_h.m4: New file.
36337         * lib/iconv_open.c: New file.
36338         * lib/iconv_open-aix.gperf: New file.
36339         * lib/iconv_open-hpux.gperf: New file.
36340         * lib/iconv_open-irix.gperf: New file.
36341         * lib/iconv_open-osf.gperf: New file.
36342         * m4/iconv_open.m4: New file.
36343         * modules/linebreak (Depends-on): Add iconv_open.
36344         * modules/striconv (Depends-on): Likewise.
36345         * modules/striconveh (Depends-on): Likewise.
36346         * modules/unicodeio (Depends-on): Likewise.
36347         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
36348         (iconv_t)(-1).
36349         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
36350         conversion if cd is (iconv_t)(-1).
36351         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
36352         is not possible.
36353
36354 2007-03-31  Bruno Haible  <bruno@clisp.org>
36355
36356         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
36357         work on Solaris either. Protect also second use of "autodetect_jp".
36358
36359 2007-03-31  Bruno Haible  <bruno@clisp.org>
36360
36361         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
36362         the function is not present.
36363
36364 2007-03-31  Bruno Haible  <bruno@clisp.org>
36365
36366         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
36367         the function is not present.
36368
36369 2007-03-31  Bruno Haible  <bruno@clisp.org>
36370
36371         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
36372         a bug in HP-UX iconv_open().
36373
36374 2007-03-31  Bruno Haible  <bruno@clisp.org>
36375
36376         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
36377         (Mathematics <math.h>): New section, add fpieee.
36378         (Input/output <stdio.h>): Add fseterr.
36379         (Mathematics <math.h>): New section, add printf-frexp.
36380         (Container data structures): Add sublist.
36381         (Core language properties): Add fpucw, inline.
36382         (Functions for greatest-width integer types <inttypes.h>): Add
36383         imaxabs, imaxdiv, inttypes.
36384         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
36385         isnanl-nolibm, ldexp.
36386         (Mathematics <math.h>): New section, add printf-frexpl.
36387         (Support for systems lacking POSIX:2001): Add fprintf-posix,
36388         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
36389         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
36390         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
36391         (Unicode string functions): Add unistr/u*-mbtoucr.
36392         (Java): Add javacomp-script, javaexec-script.
36393         (C#): Add csharpcomp-script, csharpexec-script.
36394         (Support for building libraries and executables): Add havelib,
36395         relocatable-*.
36396         (Support for maintaining and releasing projects): Renamed from
36397         'Support for maintaining and release projects'. Add announce-gen.
36398
36399 2007-03-31  Bruno Haible  <bruno@clisp.org>
36400
36401         * README: Talk primarily about git.
36402         (git and CVS): Renamed from CVS.
36403         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
36404         gnulib is available through git.
36405         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
36406
36407 2007-03-30  Bruno Haible  <bruno@clisp.org>
36408
36409         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
36410         * lib/poll_.h: Likewise.
36411         * lib/stat_.h: Likewise.
36412         * lib/sys_time_.h: Likewise.
36413         * lib/sysexit_.h: Likewise.
36414         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
36415         * lib/stdbool_.h: Likewise.
36416         * lib/byteswap_.h: Add double-inclusion guard.
36417
36418 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
36419
36420         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
36421
36422 2007-03-30  Karl Berry  <karl@gnu.org>
36423
36424         * config/srclist-update: double space after USA in the license
36425         substitution, since that's how it's usually (?) written.
36426
36427 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
36428
36429         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
36430         reported by Bruno Haible.
36431
36432 2007-03-29  Bruno Haible  <bruno@clisp.org>
36433
36434         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
36435         a bug in AIX iconv().
36436
36437 2007-03-29  Bruno Haible  <bruno@clisp.org>
36438
36439         * modules/ldexpl-tests: New file.
36440         * tests/test-ldexpl.c: New file.
36441
36442 2007-03-29  Bruno Haible  <bruno@clisp.org>
36443
36444         * lib/ldexpl.c: Include fpucw.h.
36445         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
36446         multiplication.
36447         * modules/ldexpl (Depends-on): Add fpucw.
36448
36449 2007-03-29  Bruno Haible  <bruno@clisp.org>
36450
36451         * modules/ldexpl: New file.
36452         * m4/ldexpl.m4: New file.
36453         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
36454         set.
36455         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
36456         REPLACE_LDEXPL.
36457         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
36458         REPLACE_LDEXPL.
36459         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
36460         gl_FUNC_LDEXPL_WORKS.
36461         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
36462         * modules/mathl (Files): Remove lib/ldexpl.c.
36463         (Depends-on): Add ldexpl.
36464
36465 2007-03-29  Bruno Haible  <bruno@clisp.org>
36466
36467         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
36468
36469 2007-03-29  Bruno Haible  <bruno@clisp.org>
36470
36471         * tests/test-striconveh.c (main): Don't assume that a direct conversion
36472         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
36473         and possibly also HP-UX.
36474         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
36475         work on AIX, IRIX, HP-UX, OSF/1.
36476         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
36477         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
36478         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
36479         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
36480         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
36481         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
36482
36483 2007-03-29  Bruno Haible  <bruno@clisp.org>
36484
36485         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
36486
36487 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
36488
36489         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
36490         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
36491
36492 2007-03-29  Eric Blake  <ebb9@byu.net>
36493
36494         * lib/acl-internal.h: Remove redundant include.
36495         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
36496         Cygwin when a file is locked.
36497
36498 2007-03-29  Bruno Haible  <bruno@clisp.org>
36499
36500         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
36501         file.
36502         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
36503
36504 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
36505
36506         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
36507         try to remove a parent directory if the child couldn't be removed
36508         (except for the first rmdir, which could fail because the child
36509         doesn't exist).  Problem reported by Jeff Blaine in
36510         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
36511
36512 2007-03-28  Bruno Haible  <bruno@clisp.org>
36513
36514         * lib/striconveh.c (utf8conv_carefully): New function.
36515         (mem_cd_iconveh_internal): Invoke it.
36516
36517 2007-03-28  Bruno Haible  <bruno@clisp.org>
36518
36519         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
36520         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
36521         input.
36522         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
36523         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
36524         unistr/u8-uctomb.
36525
36526 2007-03-28  Bruno Haible  <bruno@clisp.org>
36527
36528         * modules/unistr/u8-mbtoucr: New file.
36529         * lib/unistr/u8-mbtoucr.c: New file.
36530         * modules/unistr/u16-mbtoucr: New file.
36531         * lib/unistr/u16-mbtoucr.c: New file.
36532         * modules/unistr/u16-mbtoucr: New file.
36533         * lib/unistr/u16-mbtoucr.c: New file.
36534         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
36535
36536 2007-03-27  Simon Josefsson  <simon@josefsson.org>
36537             Bruno Haible  <bruno@clisp.org>
36538
36539         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
36540         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
36541         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
36542
36543         * m4/stdio_h.m4: Add stubs for vasprintf too.
36544
36545         * modules/stdio: Support vasprintf in sed command.
36546
36547         * modules/vasprintf: Depend on stdio for prototypes.  Remove
36548         vasprintf.h.  Add stdio module indicator.
36549
36550         * lib/stdio_.h: Declare asprintf and vasprintf, based on
36551         vasprintf.h.
36552
36553         * lib/vasprintf.h: File removed.
36554
36555         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
36556         * lib/vasprintf.c: Ditto.
36557         * lib/xvasprintf.c: Ditto.
36558         * tests/test-vasprintf-posix.c: Ditto.
36559         * tests/test-vasprintf.c: Ditto.
36560
36561 2007-03-27  Bruno Haible  <bruno@clisp.org>
36562
36563         Make vasnprintf multithread-safe.
36564         * lib/vasnprintf.c (decimal_point_char): New function.
36565         (VASNPRINTF): Use it.
36566         Suggested by Simon Josefsson.
36567
36568 2007-03-27  Eric Blake  <ebb9@byu.net>
36569
36570         Support sub-second birthtime on cygwin.
36571         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
36572         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
36573         (get_stat_birthtime): Also work with st_birthtim.
36574
36575 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
36576
36577         * lib/stat-time.h (USE_BIRTHTIME): Remove.
36578         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
36579         (get_stat_birthtime_ns): Do not try to use "spare" fields.
36580         (get_stat_birthtime_ns): Simplify compile-time tests.
36581         (get_stat_birthtime): Change the API to look like
36582         get_stat_mtime etc., except return a negative tv_nsec on error.
36583         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
36584         Don't check for "spare" fields.
36585         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
36586         or for struct stat.st_birthtime, as these tests aren't used.
36587         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
36588
36589 2007-03-27  Bruno Haible  <bruno@clisp.org>
36590
36591         * lib/stat-time.h: Include <sys/stat.h>.
36592
36593 2007-03-27  James Youngman  <jay@gnu.org>
36594
36595         * lib/stat-time.h (get_stat_birthtime): New function for
36596           retrieving st_birthtime as provided by UFS2 (hence *BSD).
36597         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
36598           and its variants.
36599         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
36600         * modules/stat-time-test: New file.
36601         * tests/test-stat-time.c: New test, devised by Bruno Haible.
36602
36603 2007-03-26  Bruno Haible  <bruno@clisp.org>
36604
36605         Better support of signalling NaNs.
36606         * lib/atanl.c: Include isnanl.h.
36607         (atanl): Perform test for NaN at the beginning of the function and
36608         through a call to isnanl.
36609         * lib/cosl.c: Include isnanl.h.
36610         (cosl): Perform test for NaN at the beginning of the function and
36611         through a call to isnanl.
36612         * lib/ldexpl.c: Include isnanl.h.
36613         (ldexpl): Perform test for NaN through a call to isnanl.
36614         * lib/logl.c: Include isnanl.h.
36615         (logl): Perform test for NaN at the beginning of the function and
36616         through a call to isnanl.
36617         * lib/sinl.c: Include isnanl.h.
36618         (sinl): Perform test for NaN at the beginning of the function and
36619         through a call to isnanl.
36620         * lib/sqrtl.c: Include isnanl.h.
36621         (sqrtl): Perform test for NaN at the beginning of the function and
36622         through a call to isnanl.
36623         * lib/tanl.c: Include isnanl.h.
36624         (tanl): Perform test for NaN at the beginning of the function and
36625         through a call to isnanl.
36626         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
36627         * modules/mathl (Depends-on): Add isnanl.
36628
36629 2007-03-26  Eric Blake  <ebb9@byu.net>
36630
36631         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
36632         regression in logic sense of previous patch.
36633
36634 2007-03-26  Bruno Haible  <bruno@clisp.org>
36635
36636         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
36637         unportable shell command "if ! ...".
36638         Reported by Ralf Wildenhues.
36639
36640 2007-03-25  Bruno Haible  <bruno@clisp.org>
36641
36642         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
36643         <sysexits.h> file, and only add EX_CONFIG.
36644         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
36645         absolute file name and whether it is sufficient. Substitute also
36646         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
36647         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
36648         ABSOLUTE_SYSEXITS_H into sysexits.h.
36649
36650 2007-03-25  Bruno Haible  <bruno@clisp.org>
36651
36652         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
36653         hints is NULL.
36654
36655 2007-03-25  Bruno Haible  <bruno@clisp.org>
36656
36657         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
36658         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
36659
36660 2007-03-25  Bruno Haible  <bruno@clisp.org>
36661
36662         * lib/vasnprintf.c: Include langinfo.h.
36663         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
36664         multithread-safe.
36665         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
36666         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
36667         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
36668         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36669         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36670         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36671         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
36672         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
36673         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36674         Reported by Simon Josefsson.
36675
36676 2007-03-25  Bruno Haible  <bruno@clisp.org>
36677
36678         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
36679         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
36680         * modules/vasnprintf (Depends-on): Add stdint.
36681
36682 2007-03-25  Bruno Haible  <bruno@clisp.org>
36683
36684         * modules/fpieee: New file.
36685         * m4/fpieee.m4: New file.
36686         * modules/isnan-nolibm (Depends-on): Add fpieee.
36687         * modules/isnanl-nolibm (Depends-on): Add fpieee.
36688         * modules/isnanl (Depends-on): Add fpieee.
36689
36690 2007-03-25  Bruno Haible  <bruno@clisp.org>
36691
36692         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
36693
36694 2007-03-25  Bruno Haible  <bruno@clisp.org>
36695
36696         Avoid test failures on IRIX 6.5.
36697         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
36698         (main): Use it.
36699         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
36700         macros.
36701         (main): Use them.
36702
36703 2007-03-25  Bruno Haible  <bruno@clisp.org>
36704
36705         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
36706         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
36707         exists but doesn't work.
36708         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
36709         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
36710         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
36711         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
36712
36713 2007-03-25  Bruno Haible  <bruno@clisp.org>
36714
36715         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
36716         returns inf. Needed on IRIX 6.5.
36717
36718 2007-03-25  Bruno Haible  <bruno@clisp.org>
36719
36720         * tests/test-frexpl.c: Include isnanl-nolibm.h.
36721         (main): Use isnanl instead of x != x idiom.
36722         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
36723
36724         * tests/test-frexp.c: Include isnan.h.
36725         (main): Use isnan instead of x != x idiom.
36726         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
36727
36728 2007-03-25  Bruno Haible  <bruno@clisp.org>
36729
36730         * tests/test-frexp.c (NaN): New function/macro.
36731         (main): Use it instead of 0.0 / 0.0.
36732         * tests/test-isnan.c (NaN): New function/macro.
36733         (main): Use it instead of 0.0 / 0.0.
36734         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
36735         (test_function): Use it instead of 0.0 / 0.0.
36736         * tests/test-vasprintf-posix.c (NaN): New function/macro.
36737         (test_function): Use it instead of 0.0 / 0.0.
36738         * tests/test-snprintf-posix.h (NaN): New function/macro.
36739         (test_function): Use it instead of 0.0 / 0.0.
36740         * tests/test-sprintf-posix.h (NaN): New function/macro.
36741         (test_function): Use it instead of 0.0 / 0.0.
36742         * tests/test-fprintf-posix.h (NaN): New function/macro.
36743         (test_function): Use it instead of 0.0 / 0.0.
36744         * tests/test-printf-posix.h (NaN): New function/macro.
36745         (test_function): Use it instead of 0.0 / 0.0.
36746
36747         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
36748
36749 2007-03-25  Bruno Haible  <bruno@clisp.org>
36750
36751         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
36752
36753 2007-03-25  Bruno Haible  <bruno@clisp.org>
36754
36755         * lib/regexec.c (merge_state_with_log): Make static.
36756
36757 2007-03-25  Bruno Haible  <bruno@clisp.org>
36758
36759         * lib/trigl.c (kernel_rem_pio2): Make static.
36760
36761 2007-03-25  Bruno Haible  <bruno@clisp.org>
36762
36763         * lib/sincosl.c (sincosl_table): Make static.
36764
36765 2007-03-25  Bruno Haible  <bruno@clisp.org>
36766
36767         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
36768         if the compiler does not support C99.
36769
36770 2007-03-25  Bruno Haible  <bruno@clisp.org>
36771
36772         * modules/time (Makefile.am): Ensure all rule action lines start with a
36773         tab.
36774
36775 2007-03-24  Bruno Haible  <bruno@clisp.org>
36776
36777         * modules/tsearch-tests: New file.
36778         * tests/test-tsearch.sh: New file.
36779         * tests/test-tsearch.c: New file, mostly copied from glibc.
36780
36781         * modules/search-tests: New file.
36782         * tests/test-search.c: New file.
36783
36784         * modules/search: New file.
36785         * lib/search_.h: New file, incorporating lib/tsearch.h.
36786         * m4/search_h.m4: New file.
36787         * lib/tsearch.h: Remove file.
36788         * lib/tsearch.c: Include search.h instead of tsearch.h.
36789         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
36790         HAVE_TSEARCH.
36791         * modules/tsearch (Files): Remove lib/tsearch.h.
36792         (Depends-on): Add search.
36793         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
36794         (Include): Change tsearch.h into search.h.
36795
36796 2007-03-24  Bruno Haible  <bruno@clisp.org>
36797
36798         * modules/fpucw: New file.
36799         * lib/fpucw.h: New file.
36800         * lib/frexp.c: Include fpucw.h.
36801         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36802         (FUNC): Use them.
36803         * lib/printf-frexp.c: Include fpucw.h.
36804         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36805         (FUNC): Use them.
36806         * lib/vasnprintf.c: Include fpucw.h.
36807         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
36808         'long double' calculations.
36809         * tests/test-frexpl.c: Include fpucw.h.
36810         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36811         * tests/test-printf-frexpl.c: Include fpucw.h.
36812         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36813         * modules/frexpl (Depends-on): Add fpucw.
36814         * modules/printf-frexpl (Depends-on): Likewise.
36815         * modules/fprintf-posix (Depends-on): Likewise.
36816         * modules/snprintf-posix (Depends-on): Likewise.
36817         * modules/sprintf-posix (Depends-on): Likewise.
36818         * modules/vasnprintf-posix (Depends-on): Likewise.
36819         * modules/vasprintf-posix (Depends-on): Likewise.
36820         * modules/vfprintf-posix (Depends-on): Likewise.
36821         * modules/vsnprintf-posix (Depends-on): Likewise.
36822         * modules/vsprintf-posix (Depends-on): Likewise.
36823         * modules/frexpl-tests (Depends-on): Likewise.
36824         * modules/printf-frexpl-tests (Depends-on): Likewise.
36825
36826 2007-03-24  Bruno Haible  <bruno@clisp.org>
36827
36828         * lib/float+.h: New file.
36829         * lib/isnan.c: Include float+.h.
36830         (SIZE): New macro.
36831         (FUNC): Compare only SIZE bytes of the value.
36832         * lib/vasnprintf.c: Include float+.h.
36833         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
36834         SIZEOF_LDBL or SIZEOF_DBL bytes.
36835         * modules/isnan-nolibm (Files): Add lib/float+.h.
36836         * modules/isnanl-nolibm (Files): Add lib/float+.h.
36837         * modules/isnanl (Files): Add lib/float+.h.
36838         * modules/vasnprintf (Files): Add lib/float+.h.
36839
36840 2007-03-24  Bruno Haible  <bruno@clisp.org>
36841
36842         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
36843         include isnanl-nolibm.h.
36844
36845 2007-03-24  Bruno Haible  <bruno@clisp.org>
36846
36847         * tests/test-read-file.c (main): Don't produce spurious output for
36848         expected situations. Make the test fail if it encountered unexpected
36849         results.
36850
36851 2007-03-24  Bruno Haible  <bruno@clisp.org>
36852
36853         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
36854         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
36855
36856 2007-03-24  Bruno Haible  <bruno@clisp.org>
36857
36858         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
36859
36860 2007-03-24  Bruno Haible  <bruno@clisp.org>
36861
36862         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
36863         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
36864
36865         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
36866         * modules/utf8-ucs4: Turn into a symbolic link to module
36867         unistr/u8-mbtouc.
36868
36869         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
36870         utf8-ucs4-unsafe.
36871         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
36872         unistr/u8-mbtouc-unsafe.
36873
36874         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
36875         * modules/utf16-ucs4: Turn into a symbolic link to module
36876         unistr/u16-mbtouc.
36877
36878         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
36879         utf16-ucs4-unsafe.
36880         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
36881         unistr/u16-mbtouc-unsafe.
36882
36883         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
36884         * modules/ucs4-utf8: Turn into a symbolic link to module
36885         unistr/u8-ubtomb.
36886
36887         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
36888         * modules/ucs4-utf16: Turn into a symbolic link to module
36889         unistr/u16-ubtomb.
36890
36891 2007-03-24  Bruno Haible  <bruno@clisp.org>
36892
36893         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
36894         Enable the function only if HAVE_INLINE.
36895         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
36896         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36897         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
36898         Enable the function only if HAVE_INLINE.
36899         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
36900         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36901         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
36902         Enable the function only if HAVE_INLINE.
36903         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
36904         Enable the function only if HAVE_INLINE.
36905         * modules/utf8-ucs4: Update.
36906         * modules/utf8-ucs4-unsafe: Update.
36907         * modules/utf16-ucs4: Update.
36908         * modules/utf16-ucs4-unsafe: Update.
36909         * modules/ucs4-utf8: Update.
36910         * modules/ucs4-utf16: Update.
36911
36912 2007-03-24  Bruno Haible  <bruno@clisp.org>
36913
36914         * lib/utf8-ucs4.h: Remove file.
36915         * lib/utf8-ucs4-unsafe.h: Remove file.
36916         * lib/utf16-ucs4.h: Remove file.
36917         * lib/utf16-ucs4-unsafe.h: Remove file.
36918         * lib/ucs4-utf8.h: Remove file.
36919         * lib/ucs4-utf16.h: Remove file.
36920         * lib/unistr.h: Include their previous contents.
36921         * m4/utf-ucs4.m4: Remove file.
36922         * m4/ucs4-utf.m4: Remove file.
36923         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
36924         (Depends-on): Add unistr/base.
36925         (configure.ac): Remove gl_UTF_UCS4.
36926         (Makefile.am): Update.
36927         (Include): Change to unistr.h.
36928         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
36929         (Depends-on): Add unistr/base.
36930         (configure.ac): Remove gl_UTF_UCS4.
36931         (Makefile.am): Update.
36932         (Include): Change to unistr.h.
36933         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
36934         (Depends-on): Add unistr/base.
36935         (configure.ac): Remove gl_UTF_UCS4.
36936         (Makefile.am): Update.
36937         (Include): Change to unistr.h.
36938         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
36939         (Depends-on): Add unistr/base.
36940         (configure.ac): Remove gl_UTF_UCS4.
36941         (Makefile.am): Update.
36942         (Include): Change to unistr.h.
36943         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
36944         (Depends-on): Add unistr/base.
36945         (configure.ac): Remove gl_UCS4_UTF.
36946         (Makefile.am): Update.
36947         (Include): Change to unistr.h.
36948         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
36949         (Depends-on): Add unistr/base.
36950         (configure.ac): Remove gl_UCS4_UTF.
36951         (Makefile.am): Update.
36952         (Include): Change to unistr.h.
36953         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
36954         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
36955         utf8-ucs4-unsafe.h.
36956         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
36957         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
36958         utf16-ucs4-unsafe.h.
36959         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
36960         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
36961         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
36962         * lib/unistr/u8-strchr.c: Likewise.
36963         * lib/unistr/u8-strrchr.c: Likewise.
36964         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
36965         * lib/unistr/u16-strchr.c: Likewise.
36966         * lib/unistr/u16-strrchr.c: Likewise.
36967         * lib/striconveh.c: Update.
36968         * lib/linebreak.c: Update.
36969
36970 2007-03-24  Bruno Haible  <bruno@clisp.org>
36971
36972         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
36973         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
36974
36975 2007-03-22  Bruno Haible  <bruno@clisp.org>
36976
36977         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
36978
36979 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
36980
36981         * MODULES.html.sh (File system functions): New module write-any-file.
36982         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
36983         * m4/write-any-file.m4: New files.
36984
36985 2007-03-23  Eric Blake  <ebb9@byu.net>
36986
36987         * gnulib-tool: Rearrange space-tab sequences, since some editors
36988         like to eat them.
36989
36990 2007-03-23  Eric Blake  <ebb9@byu.net>
36991
36992         * lib/version-etc.c (version_etc_va): Update license wording to
36993         be more concise.  Recommended by Richard Stallman.
36994
36995 2007-03-22  Bruno Haible  <bruno@clisp.org>
36996
36997         * lib/poll.c (MSG_PEEK): New fallback definition.
36998
36999 2007-03-22  Bruno Haible  <bruno@clisp.org>
37000
37001         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
37002         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
37003         (main): Update.
37004         Fixes a compilation error on BeOS.
37005
37006 2007-03-22  Bruno Haible  <bruno@clisp.org>
37007
37008         * modules/frexpl-tests: New file.
37009         * tests/test-frexpl.c: New file.
37010
37011         * modules/frexpl: New file.
37012         * m4/frexpl.m4: New file.
37013         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
37014         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
37015         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
37016         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
37017         (Depends-on): Add frexpl. Remove isnanl-nolibm.
37018         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
37019
37020 2007-03-22  Bruno Haible  <bruno@clisp.org>
37021
37022         * lib/frexpl.c: Share code with lib/frexp.c.
37023         * modules/mathl (Files): Add lib/frexp.c.
37024         (Depends-on): Add isnanl-nolibm.
37025
37026 2007-03-22  Bruno Haible  <bruno@clisp.org>
37027
37028         * modules/printf-frexp (Files): Add m4/frexp.m4.
37029         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
37030         only if the found frexp function actually works.
37031
37032 2007-03-22  Bruno Haible  <bruno@clisp.org>
37033
37034         * lib/frexp.c: Remove older implementation that uses divisions.
37035
37036 2007-03-21  Bruno Haible  <bruno@clisp.org>
37037
37038         * modules/frexp-tests: New file.
37039         * tests/test-frexp.c: New file.
37040
37041         * modules/frexp: New file.
37042         * lib/frexp.c: New file.
37043         * m4/frexp.m4: New file.
37044         * lib/math_.h (frexp): New declaration.
37045         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
37046         REPLACE_FREXP.
37047         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
37048
37049 2007-03-21  Bruno Haible  <bruno@clisp.org>
37050
37051         * modules/isnanl-tests: New file.
37052         * tests/test-isnanl.c: New file.
37053
37054         * modules/isnanl: New file.
37055         * lib/isnanl.h: New file.
37056         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
37057         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
37058         gl_FUNC_ISNANL_WORKS.
37059         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
37060         New macros.
37061
37062 2007-03-21  Bruno Haible  <bruno@clisp.org>
37063
37064         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
37065         lib/isnanl.h.
37066         (Include): Update.
37067         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
37068         * lib/vasnprintf.c: Update.
37069         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
37070         tests/test-isnanl.h, remove tests/test-isnanl.c.
37071         (Makefile.am): Update.
37072         * tests/test-isnanl-nolibm.c: New file.
37073         * tests/test-isnanl.h: New file.
37074         * tests/test-isnanl.c: Remove file.
37075
37076 2007-03-21  Jim Meyering  <jim@meyering.net>
37077
37078         When trying to open ".", treat ESTALE like EACCES.
37079         * lib/savewd.c (savewd_save): Resort to forking not just upon
37080         failure with EACCES, but also when errno is ESTALE.
37081
37082 2007-03-20  Bruno Haible  <bruno@clisp.org>
37083
37084         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
37085         Needed on AIX 5.1. Reported by Matthew Woehlke.
37086
37087 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37088
37089         Suggestions by Bruno Haible:
37090         * lib/acl-internal.h: Include "gettext.h" rather than rolling
37091         our own.
37092         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
37093         * modules/acl (Depends-on): Add gettext.
37094
37095 2007-03-19  Bruno Haible  <bruno@clisp.org>
37096
37097         * modules/iconvme: Remove file.
37098         * lib/iconvme.h: Remove file.
37099         * lib/iconvme.c: Remove file.
37100         * m4/iconvme.m4: Remove file.
37101
37102 2007-03-19  Bruno Haible  <bruno@clisp.org>
37103
37104         * doc/relocatable-maint.texi: Break long shell script line.
37105         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37106
37107 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37108
37109         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
37110         handle file_has_acl.
37111         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
37112         * lib/acl.c: Move header inclusions and related macro defns into
37113         lib/acl-internal.h.
37114         (S_ISLNK): Remove defn, since that's now done for us.
37115         (file_has_acl): Move to lib/file-has-acl.c.
37116         Call acl_trivial if available.  This is the crucial part of the fix.
37117         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
37118         shared within the library.  Rewrite a bit, partly to make it compatible
37119         with the GNU coding style.
37120         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
37121         Remove unnecessary double-quotes.
37122         Don't test for acl_to_text; the build will catch that.
37123         Replace acl_entries if it doesn't exist and it is needed.
37124         Check for -lsec and acl_trivial (as used on Solaris 10).
37125         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
37126         lib/file-has-acl.c.
37127         (Depends-on): Add sys_stat, for S_ISLNK.
37128
37129 2007-03-19  Ben Pfaff  <blp@gnu.org>
37130
37131         * doc/gnulib.texi: Fix typos.
37132         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37133
37134 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37135
37136         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
37137         If size is zero here, buf must be zero.
37138
37139 2007-03-19  Simon Josefsson  <simon@josefsson.org>
37140
37141         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
37142         <bruno@clisp.org>.
37143
37144 2007-03-18  Bruno Haible  <bruno@clisp.org>
37145
37146         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
37147         Suggested by Eric Blake.
37148
37149 2007-03-18  Ben Pfaff  <blp@gnu.org>
37150
37151         * doc/relocatable.texi: Recommend using as prefix a directory
37152         that does not exist and will never be created.  Based on
37153         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
37154         and others.
37155
37156 2007-03-17  Bruno Haible  <bruno@clisp.org>
37157
37158         * lib/fchownat.c: Include lchown.h.
37159
37160 2007-03-17  Bruno Haible  <bruno@clisp.org>
37161
37162         Fix endless loop when the given allocated size was > INT_MAX.
37163         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
37164         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
37165         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
37166         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
37167         * lib/sprintf.c (sprintf): Likewise.
37168
37169 2007-03-17  Bruno Haible  <bruno@clisp.org>
37170
37171         * tests/test-argp-2.sh (func_compare): Output a context diff.
37172
37173 2007-03-17  Bruno Haible  <bruno@clisp.org>
37174
37175         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
37176         locale's decimal-point character.
37177
37178 2007-03-17  Bruno Haible  <bruno@clisp.org>
37179
37180         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
37181         before comparing it. Needed because on some platforms (e.g. x86) a
37182         'long double' occupies less bytes than sizeof (long double).
37183
37184 2007-03-17  Bruno Haible  <bruno@clisp.org>
37185
37186         * tests/test-crc.c (main): Make printf statements 64-bit clean.
37187         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
37188         * tests/test-getaddrinfo.c (simple): Likewise.
37189         * tests/test-read-file.c (main): Likewise.
37190
37191 2007-03-17  Bruno Haible  <bruno@clisp.org>
37192
37193         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
37194
37195 2007-03-17  Bruno Haible  <bruno@clisp.org>
37196
37197         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
37198         unused variable.
37199
37200 2007-03-17  Bruno Haible  <bruno@clisp.org>
37201
37202         * tests/test-c-strcasecmp.c: Include c-strcase.h.
37203         * tests/test-c-strncasecmp.c: Likewise.
37204
37205 2007-03-17  Bruno Haible  <bruno@clisp.org>
37206
37207         * modules/stdlib (Depends-on): Add unistd.
37208         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
37209         Needed for MacOS X 10.3.
37210
37211 2007-03-17  Bruno Haible  <bruno@clisp.org>
37212
37213         * lib/unistr/u-strdup.h: Include <stdlib.h>.
37214
37215 2007-03-17  Bruno Haible  <bruno@clisp.org>
37216
37217         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
37218
37219 2007-03-17  Bruno Haible  <bruno@clisp.org>
37220
37221         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
37222         to reflect files copied from gnulib (with or without modifications).
37223         Suggested by Jim Meyering.
37224
37225 2007-03-17  Eric Blake  <ebb9@byu.net>
37226
37227         * NEWS: Document stdlib change from 2007-02-18.
37228
37229 2007-03-17  Jim Meyering  <jim@meyering.net>
37230
37231         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
37232         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
37233         someone uses a name containing shell meta-characters.
37234         Reported by Alfred M. Szmidt.
37235
37236         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
37237
37238 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37239
37240         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
37241         and copy gettext configuration files only if configure.ac contains
37242         a use of AM_GNU_GETTEXT_VERSION.
37243
37244 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37245
37246         * build-aux/bootstrap (gnulib_name): New variable.
37247         (gnulib_tool_options): Use it.
37248
37249 2007-03-13  Simon Josefsson  <simon@josefsson.org>
37250
37251         * tests/test-des.c: Use new namespace.
37252
37253 2007-03-15  Bruno Haible  <bruno@clisp.org>
37254
37255         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
37256         Reported by James Youngman <jay@gnu.org>.
37257
37258 2007-03-15  Bruno Haible  <bruno@clisp.org>
37259
37260         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
37261         declared prototype. Needed with cc on OSF/1 5.1.
37262
37263 2007-03-15  Bruno Haible  <bruno@clisp.org>
37264
37265         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
37266         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
37267         (struct gl_list_implementation): Add dispose_fn argument to the
37268         'create_empty', 'create' methods.
37269         (struct gl_list_impl_base): Add field 'dispose_fn'.
37270         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
37271         argument.
37272         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
37273         dispose_fn argument.
37274         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
37275         dispose_fn on the dropped values.
37276         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
37277         dispose_fn argument.
37278         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
37279         dropped values.
37280         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
37281         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37282         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
37283         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37284         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
37285         argument.
37286         (gl_tree_list_free): Call dispose_fn on the dropped values.
37287         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
37288         the dropped values.
37289         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
37290         Add dispose_fn argument.
37291         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
37292         Call dispose_fn on the dropped values.
37293         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
37294         Add dispose_fn argument.
37295         (gl_sublist_create): Initialize the 'dispose_fn' field.
37296         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
37297         * tests/test-array_list.c (main): Update.
37298         * tests/test-carray_list.c (main): Update.
37299         * tests/test-avltree_list.c (main): Update.
37300         * tests/test-rbtree_list.c (main): Update.
37301         * tests/test-avltreehash_list.c (main): Update.
37302         * tests/test-rbtreehash_list.c (main): Update.
37303         * tests/test-linked_list.c (main): Update.
37304         * tests/test-linkedhash_list.c (main): Update.
37305         * tests/test-array_oset.c (main): Update.
37306
37307 2007-03-15  Bruno Haible  <bruno@clisp.org>
37308
37309         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
37310         (gl_oset_create_empty): Add dispose_fn argument.
37311         (struct gl_oset_implementation): Add dispose_fn argument to
37312         'create_empty' method.
37313         (struct gl_oset_impl_base): Add dispose_fn field.
37314         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
37315         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
37316         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
37317         values.
37318         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
37319         (gl_tree_oset_free): Call dispose_fn on the dropped values.
37320         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37321         dropped value.
37322         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37323         dropped value.
37324         * tests/test-array_oset.c (main): Update.
37325         * tests/test-avltree_oset.c (main): Update.
37326         * tests/test-rbtree_oset.c (main): Update.
37327         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
37328
37329 2007-03-13  Bruno Haible  <bruno@clisp.org>
37330
37331         * tests/test-stdbool.c (i): Update after last patch.
37332
37333 2007-03-12  Bruno Haible  <bruno@clisp.org>
37334
37335         * lib/quotearg.c: Include <wctype.h> early, before the definition of
37336         the iswprint macro. Needed on Solaris 2.5.1.
37337
37338 2007-03-12  Bruno Haible  <bruno@clisp.org>
37339
37340         * tests/test-printf-frexp.c (main): Declare x as volatile.
37341
37342 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37343
37344         * doc/gnulib.texi (Build robot for gnulib): New section.
37345
37346 2007-03-12  Jim Meyering  <jim@meyering.net>
37347
37348         * build-aux/bootstrap: New file.
37349         * build-aux/bootstrap.conf: New file, from coreutils.
37350
37351 2007-03-11  Bruno Haible  <bruno@clisp.org>
37352
37353         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
37354
37355 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37356
37357         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
37358         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
37359         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
37360
37361 2007-03-11  Bruno Haible  <bruno@clisp.org>
37362
37363         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
37364         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
37365
37366 2007-03-11  Bruno Haible  <bruno@clisp.org>
37367
37368         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
37369         formula. Needed for SunPRO C 5.0.
37370
37371 2007-03-11  Bruno Haible  <bruno@clisp.org>
37372
37373         * modules/long-options (Depends-on): Add getopt.
37374
37375 2007-03-11  Bruno Haible  <bruno@clisp.org>
37376
37377         * modules/modechange (Depends-on): Add stdbool.
37378
37379 2007-03-11  Bruno Haible  <bruno@clisp.org>
37380
37381         * modules/i-ring (Depends-on): Add stdbool.
37382
37383 2007-03-11  Bruno Haible  <bruno@clisp.org>
37384
37385         * modules/gc-des (Depends-on): Add stdbool.
37386
37387 2007-03-11  Bruno Haible  <bruno@clisp.org>
37388
37389         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
37390
37391 2007-03-11  Bruno Haible  <bruno@clisp.org>
37392
37393         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
37394
37395 2007-03-11  Bruno Haible  <bruno@clisp.org>
37396
37397         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
37398
37399 2007-03-11  Bruno Haible  <bruno@clisp.org>
37400
37401         * lib/vasnprintf.c (sprintf): Undefine.
37402
37403 2007-03-11  Bruno Haible  <bruno@clisp.org>
37404
37405         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
37406         initializers in SunPRO C and Compaq C compilers.
37407
37408 2007-03-11  Bruno Haible  <bruno@clisp.org>
37409
37410         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
37411         decrementing code ANSI C compliant.
37412
37413 2007-03-11  Bruno Haible  <bruno@clisp.org>
37414
37415         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
37416         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
37417
37418 2007-03-11  Bruno Haible  <bruno@clisp.org>
37419
37420         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
37421         <stdbool.h> substitute doesn't pass.
37422
37423 2007-03-11  Bruno Haible  <bruno@clisp.org>
37424
37425         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
37426
37427 2007-03-11  Bruno Haible  <bruno@clisp.org>
37428
37429         * gnulib-tool (func_create_megatestdir): Create also an autobuild
37430         script, for submission to autobuild.josefsson.org.
37431
37432 2007-03-10  Bruno Haible  <bruno@clisp.org>
37433
37434         * modules/canonicalize-lgpl-tests: New file.
37435         * tests/test-canonicalize-lgpl.sh: New file.
37436         * tests/test-canonicalize-lgpl.c: New file.
37437
37438         * modules/c-strcase-tests: New file.
37439         * tests/test-c-strcase.sh: New file.
37440         * tests/test-c-strcasecmp.c: New file.
37441         * tests/test-c-strncasecmp.c: New file.
37442
37443         * modules/atexit-tests: New file.
37444         * tests/test-atexit.sh: New file.
37445         * tests/test-atexit.c: New file.
37446
37447 2007-03-10  Bruno Haible  <bruno@clisp.org>
37448
37449         * tests/test-binary-io.sh: Use temporary filenames that are not so
37450         likely to clash with those of other tests (in a parallel make).
37451         * tests/test-binary-io.c: Likewise.
37452
37453 2007-03-10  Bruno Haible  <bruno@clisp.org>
37454
37455         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
37456         fallback; use #error instead.
37457         Suggested by Simon Josefsson.
37458
37459 2007-03-10  Bruno Haible  <bruno@clisp.org>
37460
37461         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
37462         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
37463         first and the last.
37464
37465 2007-03-10  Bruno Haible  <bruno@clisp.org>
37466
37467         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
37468
37469 2007-03-10  Bruno Haible  <bruno@clisp.org>
37470
37471         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
37472         "make distcheck".
37473         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
37474         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
37475         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
37476
37477 2007-03-10  Bruno Haible  <bruno@clisp.org>
37478
37479         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
37480         variable.
37481         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
37482         variable.
37483
37484 2007-03-09  Eric Blake  <ebb9@byu.net>
37485         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
37486
37487         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
37488         types are not being provided by gnulib.
37489         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
37490         types are supported.
37491
37492 2007-03-10  Bruno Haible  <bruno@clisp.org>
37493
37494         * lib/stdio_.h (__attribute__): New macro.
37495         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
37496         vsprintf): Specify __attribute__ __format__ for GCC.
37497         Suggested by Eric Blake.
37498
37499 2007-03-09  Bruno Haible  <bruno@clisp.org>
37500
37501         * modules/printf-posix-tests: New file.
37502         * tests/test-printf-posix.sh: New file.
37503         * tests/test-printf-posix.c: New file.
37504
37505         * modules/printf-posix: New file.
37506         * lib/printf.c: New file.
37507         * m4/printf-posix-rpl.m4: New file.
37508         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
37509         REPLACE_PRINTF.
37510         * lib/stdio_.h (printf): New declaration.
37511         (format, __format__, ____printf____, ____scanf____, ____strftime____,
37512         ____strfmon____): New macros.
37513         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
37514         REPLACE_PRINTF.
37515
37516 2007-03-09  Bruno Haible  <bruno@clisp.org>
37517
37518         * tests/test-vasnprintf-posix2.sh: New file.
37519         * tests/test-vasnprintf-posix2.c: New file.
37520         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
37521         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
37522         (Makefile.am): Activate test-vasnprintf-posix2.sh.
37523
37524         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
37525         a locale dependent decimal point, rather than always '.'.
37526
37527 2007-03-09  Eric Blake  <ebb9@byu.net>
37528
37529         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
37530         spite of platforms like Tandem/NSK that define it to -1.
37531
37532 2007-03-08  Bruno Haible  <bruno@clisp.org>
37533
37534         * modules/vprintf-posix-tests: New file.
37535         * tests/test-vprintf-posix.sh: New file.
37536         * tests/test-vprintf-posix.c: New file.
37537         * tests/test-printf-posix.h: New file.
37538
37539         * modules/vprintf-posix: New file.
37540         * lib/vprintf.c: New file.
37541         * m4/vprintf-posix.m4: New file.
37542         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
37543         REPLACE_VPRINTF.
37544         * lib/stdio_.h (vprintf): New declaration.
37545         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
37546         REPLACE_VPRINTF.
37547
37548 2007-03-08  Bruno Haible  <bruno@clisp.org>
37549
37550         * modules/fprintf-posix-tests: New file.
37551         * tests/test-fprintf-posix.sh: New file.
37552         * tests/test-fprintf-posix.c: New file.
37553
37554         * modules/fprintf-posix: New file.
37555         * lib/fprintf.c: New file.
37556         * m4/fprintf-posix.m4: New file.
37557         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
37558         REPLACE_FPRINTF.
37559         * lib/stdio_.h (fprintf): New declaration.
37560         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
37561         REPLACE_FPRINTF.
37562
37563 2007-03-08  Bruno Haible  <bruno@clisp.org>
37564
37565         * modules/vfprintf-posix-tests: New file.
37566         * tests/test-vfprintf-posix.sh: New file.
37567         * tests/test-vfprintf-posix.c: New file.
37568         * tests/test-fprintf-posix.h: New file.
37569         * tests/test-fprintf-posix.out: New file.
37570
37571         * modules/vfprintf-posix: New file.
37572         * lib/vfprintf.c: New file.
37573         * m4/vfprintf-posix.m4: New file.
37574         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
37575         REPLACE_VFPRINTF.
37576         * lib/stdio_.h (vfprintf): New declaration.
37577         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
37578         REPLACE_VFPRINTF.
37579
37580 2007-03-08  Bruno Haible  <bruno@clisp.org>
37581
37582         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
37583
37584 2007-03-08  Bruno Haible  <bruno@clisp.org>
37585
37586         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
37587         instead of 'expr' invocations.
37588         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
37589         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
37590         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
37591         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
37592         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
37593         Suggested by Paul Eggert.
37594
37595 2007-03-08  Bruno Haible  <bruno@clisp.org>
37596
37597         * modules/fseterr-tests: New file.
37598         * tests/test-fseterr.c: New file.
37599
37600         * modules/fseterr: New file.
37601         * lib/fseterr.h: New file.
37602         * lib/fseterr.c: New file.
37603
37604 2007-03-08  Bruno Haible  <bruno@clisp.org>
37605
37606         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
37607         * lib/getopt_.h: Likewise.
37608         * lib/mbswidth.h: Likewise.
37609         * lib/setenv.h: Likewise.
37610         * lib/vasnprintf.h: Likewise.
37611         * lib/vasprintf.h: Likewise.
37612         * lib/verror.h: Likewise.
37613         * lib/xsetenv.h: Likewise.
37614         * lib/xvasprintf.h: Likewise.
37615
37616 2007-03-08  Jim Meyering  <jim@meyering.net>
37617
37618         * users.txt: Add parted.
37619
37620         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
37621
37622 2007-03-07  Bruno Haible  <bruno@clisp.org>
37623
37624         * m4/printf.m4: Make the shell script snippets copy&pastable.
37625
37626 2007-03-02  Bruno Haible  <bruno@clisp.org>
37627
37628         * lib/netinet_in_.h: New file.
37629         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
37630         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
37631         * modules/netinet_in (Files): Add lib/netinet_in_.h.
37632         (Depends-on): Add absolute-header.
37633         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
37634         into netinet/in.h.
37635
37636 2007-03-03  Bruno Haible  <bruno@clisp.org>
37637
37638         * lib/sys_select_.h: New file.
37639         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
37640         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
37641         * modules/sys_select (Files): Add lib/sys_select_.h.
37642         (Depends-on): Add absolute-header.
37643         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
37644         into sys/select.h.
37645
37646 2007-03-02  Bruno Haible  <bruno@clisp.org>
37647
37648         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
37649         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
37650         values.
37651         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
37652         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
37653         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
37654         * modules/sys_socket (Depends-on): Add absolute-header.
37655         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
37656         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
37657         (Include): Remove requirement of inclusion of <sys/types.h>.
37658
37659 2007-03-02  Bruno Haible  <bruno@clisp.org>
37660
37661         * lib/byteswap_.h (bswap_32): Fix formula.
37662
37663 2007-03-06  Bruno Haible  <bruno@clisp.org>
37664
37665         * modules/sprintf-posix-tests: New file.
37666         * tests/test-sprintf-posix.c: New file.
37667
37668         * modules/sprintf-posix: New file.
37669         * lib/sprintf.c: New file.
37670         * m4/sprintf-posix.m4: New file.
37671         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
37672         REPLACE_SPRINTF.
37673         * lib/stdio_.h (sprintf): New declaration.
37674         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
37675         REPLACE_SPRINTF.
37676
37677 2007-03-06  Bruno Haible  <bruno@clisp.org>
37678
37679         * modules/vsprintf-posix-tests: New file.
37680         * tests/test-vsprintf-posix.c: New file.
37681         * tests/test-sprintf-posix.h: New file.
37682
37683         * modules/vsprintf-posix: New file.
37684         * lib/vsprintf.c: New file.
37685         * m4/vsprintf-posix.m4: New file.
37686         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
37687         REPLACE_VSPRINTF.
37688         * lib/stdio_.h (vsprintf): New declaration.
37689         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
37690         REPLACE_VSPRINTF.
37691
37692 2007-03-06  Bruno Haible  <bruno@clisp.org>
37693
37694         * modules/vsnprintf (Depend-on): Remove minmax.
37695
37696 2007-03-06  Bruno Haible  <bruno@clisp.org>
37697
37698         * modules/snprintf-posix-tests: New file.
37699         * tests/test-snprintf-posix.c: New file.
37700
37701         * modules/snprintf-posix: New file.
37702         * m4/snprintf-posix.m4: New file.
37703         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
37704         gl_FUNC_SNPRINTF.
37705         (gl_FUNC_SNPRINTF): Invoke it.
37706         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
37707         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
37708         is set.
37709         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
37710
37711 2007-03-06  Bruno Haible  <bruno@clisp.org>
37712
37713         * modules/vsnprintf-posix-tests: New file.
37714         * tests/test-vsnprintf-posix.c: New file.
37715         * tests/test-snprintf-posix.h: New file.
37716
37717         * modules/vsnprintf-posix: New file.
37718         * m4/vsnprintf-posix.m4: New file.
37719         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
37720         gl_FUNC_VSNPRINTF.
37721         (gl_FUNC_VSNPRINTF): Invoke it.
37722         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
37723         * lib/stdio_.h (vsnprintf): Define as a replacement if
37724         REPLACE_VSNPRINTF is set.
37725         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
37726
37727 2007-03-06  Bruno Haible  <bruno@clisp.org>
37728
37729         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
37730         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
37731
37732 2007-03-06  Bruno Haible  <bruno@clisp.org>
37733
37734         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
37735         (asinl): Declare also if HAVE_DECL_ASINL is set.
37736         (atanl): Declare also if HAVE_DECL_ATANL is set.
37737         (ceill): Declare also if HAVE_DECL_CEILL is set.
37738         (cosl): Declare also if HAVE_DECL_COSL is set.
37739         (expl): Declare also if HAVE_DECL_EXPL is set.
37740         (floorl): Declare also if HAVE_DECL_FLOORL is set.
37741         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
37742         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
37743         (logl): Declare also if HAVE_DECL_LOGL is set.
37744         (sinl): Declare also if HAVE_DECL_SINL is set.
37745         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
37746         (tanl): Declare also if HAVE_DECL_TANL is set.
37747         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
37748         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
37749         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
37750         declaration of frexpl, ldexpl.
37751         * modules/printf-frexpl (Depends-on): Add math.
37752         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
37753
37754 2007-03-05  Bruno Haible  <bruno@clisp.org>
37755
37756         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
37757         frexpl and ldexpl are declared.
37758         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
37759
37760 2007-03-05  Bruno Haible  <bruno@clisp.org>
37761
37762         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
37763         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
37764
37765 2007-03-05  Bruno Haible  <bruno@clisp.org>
37766
37767         * lib/stdio_.h: Include <stddef.h>.
37768
37769 2007-03-05  Bruno Haible  <bruno@clisp.org>
37770
37771         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
37772
37773 2007-03-05  Bruno Haible  <bruno@clisp.org>
37774
37775         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
37776         NetBSD 4, from Ralf Wildenhues.
37777
37778 2007-03-04  Bruno Haible  <bruno@clisp.org>
37779
37780         * lib/vasprintf.h: Update #if logic for the case when the functions
37781         exist but are overridden.
37782
37783 2007-03-04  Bruno Haible  <bruno@clisp.org>
37784
37785         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
37786         implementations: glibc-2.4 and MacOS X 10.3.
37787         * tests/test-vasnprintf-posix.c (test_function): Test also the case
37788         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
37789         * tests/test-vasprintf-posix.c (test_function): Likewise.
37790
37791 2007-03-04  Bruno Haible  <bruno@clisp.org>
37792
37793         * modules/vasprintf-posix-tests: New file.
37794         * tests/test-vasprintf-posix.c: New file.
37795
37796         * modules/vasprintf-posix: New file.
37797         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
37798         defined.
37799         * m4/vasprintf-posix.m4: New file.
37800         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
37801         gl_FUNC_VASPRINTF.
37802         (gl_FUNC_VASPRINTF): Invoke it.
37803         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
37804         here.
37805         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
37806
37807 2007-03-04  Bruno Haible  <bruno@clisp.org>
37808
37809         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
37810         REPLACE_GETTIMEOFDAY.
37811         * modules/sys_time (Makefile.am): Likewise.
37812         * m4/sys_time_h.m4: Likewise.
37813         * m4/gettimeofday.m4: Likewise.
37814
37815 2007-03-04  Bruno Haible  <bruno@clisp.org>
37816
37817         * modules/vasnprintf-posix-tests: New file.
37818         * tests/test-vasnprintf-posix.c: New file.
37819
37820         * modules/vasnprintf-posix: New file.
37821         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
37822         printf-frexpl.h.
37823         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
37824         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
37825         REPLACE_VASNPRINTF is defined.
37826         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
37827         gl_FUNC_VASNPRINTF.
37828         (gl_FUNC_VASNPRINTF): Invoke it.
37829         * m4/vasnprintf-posix.m4: New file.
37830         * m4/printf.m4: New file.
37831
37832 2007-03-04  Bruno Haible  <bruno@clisp.org>
37833
37834         Compile progreloc.c only if --enable-relocatable is specified.
37835         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
37836         if --enable-relocatable was specified.
37837         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
37838         lib_SOURCES.
37839
37840 2007-03-04  Jim Meyering  <jim@meyering.net>
37841
37842         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
37843         Use it consistently, rather than enumerating errno constants.
37844
37845 2007-03-04  Bruno Haible  <bruno@clisp.org>
37846
37847         * modules/xvasprintf-tests: New file.
37848         * tests/test-xvasprintf.c: New file.
37849
37850         * modules/vasprintf-tests: New file.
37851         * tests/test-vasprintf.c: New file.
37852
37853         * modules/vasnprintf-tests: New file.
37854         * tests/test-vasnprintf.c: New file.
37855
37856         * modules/vsnprintf-tests: New file.
37857         * tests/test-vsnprintf.c: New file.
37858
37859         * modules/snprintf-tests: New file.
37860         * tests/test-snprintf.c: New file.
37861
37862 2007-03-04  Bruno Haible  <bruno@clisp.org>
37863
37864         Compile relocatable.c only if --enable-relocatable is specified.
37865         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
37866         gl_RELOCATABLE_LIBRARY.
37867         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
37868         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
37869         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
37870         gl_RELOCATABLE_LIBRARY.
37871         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
37872         (Makefile.am): Remove lib_SOURCES.
37873         * modules/relocatable-lib-lgpl (configure.ac): Invoke
37874         gl_RELOCATABLE_LIBRARY.
37875         (Makefile.am): Remove lib_SOURCES.
37876         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
37877         always.
37878         * modules/relocatable-prog-wrapper (configure.ac): Invoke
37879         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
37880
37881 2007-03-04  Bruno Haible  <bruno@clisp.org>
37882
37883         * modules/argmatch-tests: New file.
37884         * tests/test-argmatch.c: New file.
37885
37886         * tests/test-allocsa.c (main): Halve the number of loop runs.
37887
37888         * modules/alloca-opt-tests: New file.
37889         * tests/test-alloca-opt.c: New file.
37890
37891 2007-03-04  Jim Meyering  <jim@meyering.net>
37892
37893         Work around difference between Linux ACLs and Solaris 10 ZFS.
37894         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
37895         for EINVAL.
37896
37897 2007-03-03  Bruno Haible  <bruno@clisp.org>
37898
37899         * modules/relocatable-prog (Depends-on): Add back progreloc's
37900         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
37901
37902 2007-03-03  Bruno Haible  <bruno@clisp.org>
37903
37904         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
37905         * modules/relocatable-lib: New file.
37906
37907 2007-03-03  Bruno Haible  <bruno@clisp.org>
37908
37909         * modules/relocatable-prog: Renamed from modules/relocatable.
37910         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
37911
37912 2007-03-03  Bruno Haible  <bruno@clisp.org>
37913
37914         * modules/relocatable-script (Files): Add doc/relocatable.texi,
37915         m4/relocatable-lib.m4.
37916         (Depends-on): Remove 'relocatable'.
37917         (configure.ac): Add gl_RELOCATABLE_NOP.
37918
37919 2007-03-03  Bruno Haible  <bruno@clisp.org>
37920
37921         * modules/relocatable-prog-wrapper: New file.
37922         * modules/relocatable (Depends-on): Add it. Remove all other
37923         dependencies except progname.
37924         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
37925
37926         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
37927         (gl_FUNC_STRERROR): Nop.
37928         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
37929
37930         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
37931         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
37932
37933         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
37934         (gl_FUNC_READLINK): Update.
37935
37936         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
37937
37938 2007-03-03  Bruno Haible  <bruno@clisp.org>
37939
37940         * lib/xreadlink.c: Include <unistd.h> unconditionally.
37941         * modules/xreadlink (Depends-on): Add unistd.
37942         * modules/xreadlink-with-size (Depends-on): Likewise.
37943
37944 2007-03-03  Bruno Haible  <bruno@clisp.org>
37945
37946         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
37947         extracted from gt_FUNC_SETENV.
37948         (gt_FUNC_SETENV): Remove macro.
37949         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
37950         remove gt_FUNC_SETENV.
37951
37952 2007-03-03  Bruno Haible  <bruno@clisp.org>
37953
37954         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
37955         ENABLE_RELOCATABLE here.
37956         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
37957
37958 2007-03-03  Bruno Haible  <bruno@clisp.org>
37959
37960         * modules/rbtreehash-list-tests (Depends-on): Add progname.
37961         * tests/test-rbtreehash_list.c: Include progname.h.
37962         (main): Call set_program_name.
37963
37964         * modules/rbtree-oset-tests (Depends-on): Add progname.
37965         * tests/test-rbtree_oset.c: Include progname.h.
37966         (main): Call set_program_name.
37967
37968         * modules/rbtree-list-tests (Depends-on): Add progname.
37969         * tests/test-rbtree_list.c: Include progname.h.
37970         (main): Call set_program_name.
37971
37972         * modules/linked-list-tests (Depends-on): Add progname.
37973         * tests/test-linked_list.c: Include progname.h.
37974         (main): Call set_program_name.
37975
37976 2007-03-03  Bruno Haible  <bruno@clisp.org>
37977
37978         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
37979         All uses of __restrict changed to _Restrict_.
37980         * lib/glob_.h (__restrict): Remove macro.
37981
37982 2007-03-02  Bruno Haible  <bruno@clisp.org>
37983
37984         * modules/gettext (configure.ac): Require gettext infrastructure
37985         from version 0.16.1.
37986
37987 2007-03-02  Bruno Haible  <bruno@clisp.org>
37988
37989         * modules/linkedhash-list-tests (Depends-on): Add progname.
37990         * tests/test-linkedhash_list.c: Include progname.h.
37991         (main): Call set_program_name.
37992
37993         * modules/carray-list-tests (Depends-on): Add progname.
37994         * tests/test-carray_list.c: Include progname.h.
37995         (main): Call set_program_name.
37996
37997         * modules/avltreehash-list-tests (Depends-on): Add progname.
37998         * tests/test-avltreehash_list.c: Include progname.h.
37999         (main): Call set_program_name.
38000
38001         * modules/avltree-oset-tests (Depends-on): Add progname.
38002         * tests/test-avltree_oset.c: Include progname.h.
38003         (main): Call set_program_name.
38004
38005         * modules/avltree-list-tests (Depends-on): Add progname.
38006         * tests/test-avltree_list.c: Include progname.h.
38007         (main): Call set_program_name.
38008
38009         * modules/array-oset-tests (Depends-on): Add progname.
38010         * tests/test-array_oset.c: Include progname.h.
38011         (main): Call set_program_name.
38012
38013         * modules/array-list-tests (Depends-on): Add progname.
38014         * tests/test-array_list.c: Include progname.h.
38015         (main): Call set_program_name.
38016
38017         * modules/argp-tests (Depends-on): Add progname.
38018         * tests/test-argp.c: Include argp.h first. Include progname.h.
38019         (main): Call set_program_name.
38020
38021 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
38022
38023         * doc/gnulib-tool.texi (Initial import): Reword description of
38024         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
38025         limited effect even if defined after the first system include.
38026
38027 2007-03-01  Bruno Haible  <bruno@clisp.org>
38028
38029         * build-aux/config.libpath: Update to libtool-1.5.22.
38030         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
38031
38032 2007-03-01  Bruno Haible  <bruno@clisp.org>
38033
38034         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
38035         foo_CFLAGS.
38036         Reported by Ralf Wildenhues.
38037
38038 2007-03-01  Bruno Haible  <bruno@clisp.org>
38039
38040         * build-aux/install-reloc: Remove object files left over by some
38041         compilers.
38042         Reported by Ralf Wildenhues.
38043
38044 2007-03-01  Bruno Haible  <bruno@clisp.org>
38045
38046         * build-aux/install-reloc: Break long lines.
38047
38048 2007-03-01  Bruno Haible  <bruno@clisp.org>
38049
38050         * doc/relocatable.texi: Document that it may not work on OpenBSD.
38051         Reported by Ralf Wildenhues.
38052
38053 2007-03-01  Bruno Haible  <bruno@clisp.org>
38054
38055         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
38056         include ordering constraints.
38057
38058 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
38059
38060         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
38061         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
38062         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
38063         as another example.
38064         * lib/time_.h: Fix misspelling.
38065         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
38066         Require gl_HEADER_TIME_H_DEFAULTS.
38067         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
38068         * m4/time_r.m4 (gl_TIME_R): Likewise.
38069         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
38070
38071 2007-03-01  Bruno Haible  <bruno@clisp.org>
38072
38073         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
38074         * m4/utimens.m4 (gl_UTIMENS): Likewise.
38075
38076 2007-03-01  Jim Meyering  <jim@meyering.net>
38077
38078         * modules/xreadlink (Maintainer): Add my name.
38079         * modules/xreadlink-with-size (Depends-on): Alphabetize.
38080
38081 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
38082             Bruno Haible  <bruno@clisp.org>
38083
38084         * build-aux/install-reloc: Compile also c-ctype.c.
38085         * build-aux/relocatable.sh.in: New file.
38086         * doc/relocatable.texi: New file.
38087         * doc/relocatable-maint.texi: New file.
38088         * doc/gnulib.texi: Include relocatable-maint.texi.
38089         * lib/progreloc.c: Include unistd.h unconditionally.
38090         * lib/relocwrapper.c: Include unistd.h unconditionally.
38091         Include c-ctype.h.
38092         (add_dotbin): Use c_tolower.
38093         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
38094         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
38095         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
38096         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
38097         to m4/relocatable-lib.m4.
38098         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
38099         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
38100         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
38101         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
38102         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
38103         * modules/relocatable: New file.
38104         * modules/relocatable-lib: New file.
38105         * modules/relocatable-script: New file.
38106
38107 2007-02-28  Bruno Haible  <bruno@clisp.org>
38108
38109         Import --enable-relocatable infrastructure.
38110         * build-aux/config.libpath: New file, from GNU gettext.
38111         * build-aux/install-reloc: New file, from GNU gettext.
38112         * build-aux/reloc-ldflags: New file, from GNU gettext.
38113         * lib/relocatable.h: New file, from GNU gettext.
38114         * lib/relocatable.c: New file, from GNU gettext.
38115         * lib/relocwrapper.c: New file, from GNU gettext.
38116         * m4/relocatable.m4: New file, from GNU gettext.
38117
38118 2007-02-28  Bruno Haible  <bruno@clisp.org>
38119
38120         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
38121
38122         * modules/xreadlink: New file, from GNU gettext with modifications.
38123         * lib/xreadlink.c: New file, from GNU gettext.
38124         * lib/xreadlink.h: Add comments.
38125         (xreadlink): New declaration.
38126
38127         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
38128         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
38129         lib/xreadlink-with-size.c.
38130         (configure.ac): Remove gl_XREADLINK invocation.
38131         (Makefile.am): Augment lib_SOURCES.
38132         * m4/xreadlink.m4: Remove file.
38133         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
38134         (xreadlink_with_size): Renamed from xreadink.
38135         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
38136         * modules/canonicalize (Depends-on): Replace xreadlink with
38137         xreadlink-with-size.
38138         * lib/canonicalize.c (canonicalize_filename_mode): Update.
38139
38140 2007-02-25  Jim Meyering  <jim@meyering.net>
38141
38142         * build-aux/announce-gen: When complaining about excess arguments,
38143         list them.
38144
38145 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
38146
38147         * README: Document signed integer overflow situation more
38148         accurately.
38149
38150 2007-02-25  Bruno Haible  <bruno@clisp.org>
38151
38152         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
38153         'a' or 'A' conversion.
38154
38155 2007-02-25  Bruno Haible  <bruno@clisp.org>
38156
38157         * modules/filename: Renamed from modules/pathname.
38158         (Files): Replace lib/pathname.h with lib/filename.h. Replace
38159         lib/concatpath.c with lib/concat-filename.c.
38160         (Makefile.am): Update.
38161         (Include): Replace pathname.h with filename.h.
38162         * lib/filename.h: Renamed from lib/pathname.h.
38163         (concatenated_filename): Renamed from concatenated_pathname.
38164         * lib/concat-filename.c: Renamed from lib/concatpath.c.
38165         (concatenated_filename): Renamed from concatenated_pathname.
38166         * lib/findprog.c: Include filename.h instead of pathname.h.
38167         (find_in_path): Update.
38168         * lib/javacomp.c: Include filename.h instead of pathname.h.
38169         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
38170         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
38171         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
38172         is_oldgcj_14_13_usable, is_javac_usable): Update.
38173         * lib/javaexec.c: Include filename.h instead of pathname.h.
38174         (execute_java_class): Update.
38175         * modules/findprog: Update.
38176         * modules/javacomp: Update.
38177         * modules/javaexec: Update.
38178         * MODULES.html.sh (File system functions): Add 'filename', remove
38179         'pathname'.
38180
38181 2007-02-25  Bruno Haible  <bruno@clisp.org>
38182
38183         * modules/printf-frexpl-tests: New file.
38184         * tests/test-printf-frexpl.c: New file.
38185
38186         * modules/printf-frexpl: New file.
38187         * lib/printf-frexpl.h: New file.
38188         * lib/printf-frexpl.c: New file.
38189         * m4/printf-frexpl.m4: New file.
38190
38191 2007-02-25  Bruno Haible  <bruno@clisp.org>
38192
38193         * modules/printf-frexp-tests: New file.
38194         * tests/test-printf-frexp.c: New file.
38195
38196         * modules/printf-frexp: New file.
38197         * lib/printf-frexp.h: New file.
38198         * lib/printf-frexp.c: New file.
38199         * m4/printf-frexp.m4: New file.
38200
38201 2007-02-25  Bruno Haible  <bruno@clisp.org>
38202
38203         Assume automake >= 1.10 for the tests.
38204         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
38205         * modules/arctwo-tests: Likewise.
38206         * modules/argp-tests: Likewise.
38207         * modules/avltree-list-tests: Likewise.
38208         * modules/avltree-oset-tests: Likewise.
38209         * modules/avltreehash-list-tests: Likewise.
38210         * modules/carray-list-tests: Likewise.
38211         * modules/crc-tests: Likewise.
38212         * modules/des-tests: Likewise.
38213         * modules/gc-arcfour-tests: Likewise.
38214         * modules/gc-arctwo-tests: Likewise.
38215         * modules/gc-des-tests: Likewise.
38216         * modules/gc-hmac-md5-tests: Likewise.
38217         * modules/gc-hmac-sha1-tests: Likewise.
38218         * modules/gc-md2-tests: Likewise.
38219         * modules/gc-md4-tests: Likewise.
38220         * modules/gc-md5-tests: Likewise.
38221         * modules/gc-pbkdf2-sha1-tests: Likewise.
38222         * modules/gc-rijndael-tests: Likewise.
38223         * modules/gc-sha1-tests: Likewise.
38224         * modules/gc-tests: Likewise.
38225         * modules/getaddrinfo-tests: Likewise.
38226         * modules/hmac-md5-tests: Likewise.
38227         * modules/hmac-sha1-tests: Likewise.
38228         * modules/linked-list-tests: Likewise.
38229         * modules/linkedhash-list-tests: Likewise.
38230         * modules/lock-tests: Likewise.
38231         * modules/md2-tests: Likewise.
38232         * modules/md4-tests: Likewise.
38233         * modules/md5-tests: Likewise.
38234         * modules/rbtree-list-tests: Likewise.
38235         * modules/rbtree-oset-tests: Likewise.
38236         * modules/rbtreehash-list-tests: Likewise.
38237         * modules/read-file-tests: Likewise.
38238         * modules/rijndael-tests: Likewise.
38239         * modules/stdint-tests: Likewise.
38240         * modules/tls-tests: Likewise.
38241
38242 2007-02-24  Bruno Haible  <bruno@clisp.org>
38243
38244         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
38245         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
38246         function; instead check whether isnan with a double argument links.
38247         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
38248         function; instead check whether isnan with a 'long double' argument
38249         links.
38250         Reported by Eric Blake <ebb9@byu.net>.
38251
38252 2007-02-24  Bruno Haible  <bruno@clisp.org>
38253
38254         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
38255         defined.
38256         * lib/isnanl.c: Remove all code. Just include isnan.c.
38257         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
38258
38259 2007-02-25  Jim Meyering  <jim@meyering.net>
38260
38261         Avoid conflicting types for 'unsetenv' on FreeBSD.
38262         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
38263         conflicting with FreeBSD's (5.0 and 6.1) function declaration
38264         in stdlib.h.
38265
38266 2007-02-24  Bruno Haible  <bruno@clisp.org>
38267
38268         * modules/isnanl-nolibm-tests: New file.
38269         * tests/test-isnanl.c: New file.
38270
38271         * modules/isnanl-nolibm: New file.
38272         * lib/isnanl.h: New file.
38273         * lib/isnanl.c: New file.
38274         * m4/isnanl.m4: New file.
38275
38276 2007-02-24  Bruno Haible  <bruno@clisp.org>
38277
38278         * modules/isnan-nolibm-tests: New file.
38279         * tests/test-isnan.c: New file.
38280
38281         * modules/isnan-nolibm: New file.
38282         * lib/isnan.h: New file.
38283         * lib/isnan.c: New file.
38284         * m4/isnan.m4: New file.
38285
38286 2007-02-24  Bruno Haible  <bruno@clisp.org>
38287
38288         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
38289         assume that an exponent fits in 20 bits.
38290
38291 2007-02-24  Jim Meyering  <jim@meyering.net>
38292
38293         * m4/regex.m4: Update the description of the configure-time option,
38294         --without-included-regex, to state accurately what the defaults are,
38295         and perhaps to give people an idea why using this option is risky.
38296
38297 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
38298
38299         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
38300         loops on small arguments.  This attempts to avoid the problem
38301         Bruno Haible reported for AIX 4.3.2 in
38302         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
38303
38304 2007-02-23  Bruno Haible  <bruno@clisp.org>
38305
38306         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
38307         Needed for help2man.
38308
38309 2007-02-23  Karl Berry  <karl@gnu.org>
38310
38311         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
38312         exists, foo.h should be cvs-ignored, not committed.
38313
38314 2007-02-23  Eric Blake  <ebb9@byu.net>
38315
38316         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
38317         * lib/stat-time.h (includes): Likewise.
38318         * lib/utimecmp.c (includes): Likewise.
38319         * lib/utimens.h (includes): Likewise.
38320         * lib/getdate.y (includes): Also include "timespec.h" for use
38321         internal to the module.
38322         * modules/utimens (Depends-on): Revert yesterday's patch.
38323         * modules/nanosleep (Depends-on): Add missing dependency.
38324
38325 2007-02-22  Bruno Haible  <bruno@clisp.org>
38326
38327         * lib/glob.c: Don't include getlogin_r.h.
38328
38329 2007-02-22  Jim Meyering  <jim@meyering.net>
38330
38331         * modules/utimens (Depends-on): Add timespec, required for
38332         utimens.h's inclusion of timespec.h.
38333
38334 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
38335
38336         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
38337         long unreadable paths in GNU/Linux.  Problem reported by Andreas
38338         Schwab in
38339         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
38340         I'll try to think of a better way to fix the Solaris problem.
38341
38342         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
38343         like glibc; on Solaris 10, it fails with errno == EINVAL.
38344         POSIX says the behavior is unspecified if the first argument is NULL,
38345         so play it safe and never pass NULL to the system getcwd.
38346
38347 2007-02-21  Jim Meyering  <jim@meyering.net>
38348
38349         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
38350         of gettimeofday.  It would conflict with the one now always
38351         provided via sys_time_.h.  Reported by Matthew Woehlke, as
38352         an IRIX 6.5 build failure.
38353
38354 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
38355
38356         Minor fixups to port to Solaris 10 with Sun C 5.8.
38357         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
38358         * modules/getcwd (Depends-on): Add dirfd.
38359         * lib/putenv.c (putenv): #undef it.
38360         (rpl_putenv): New decl.
38361         (malloc, free): Include <stdlib.h> rather than prototyping separately.
38362
38363 2007-02-20  Bruno Haible  <bruno@clisp.org>
38364
38365         * modules/stdio-tests: New file.
38366         * tests/test-stdio.c: New file.
38367
38368         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
38369         (Depends-on): Add stdio.
38370         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
38371         (Include): Use <stdio.h> instead of vsnprintf.h.
38372         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
38373         HAVE_DECL_VSNPRINTF.
38374         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
38375
38376         * modules/snprintf (Files): Remove lib/snprintf.h.
38377         (Depends-on): Add stdio.
38378         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
38379         (Include): Use <stdio.h> instead of snprintf.h.
38380         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
38381         HAVE_DECL_SNPRINTF.
38382         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
38383         * lib/getaddrinfo.c: Likewise.
38384
38385         * modules/stdio: New file.
38386         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
38387         * lib/snprintf.h: Remove file.
38388         * lib/vsnprintf.h: Remove file.
38389         * lib/.cppi-disable: Remove snprintf.h.
38390         * m4/stdio_h.m4: New file.
38391         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
38392
38393 2007-02-20  Jim Meyering  <jim@meyering.net>
38394
38395         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
38396         used by e.g., mingw.  From Bruno Haible.
38397
38398 2007-02-19  Bruno Haible  <bruno@clisp.org>
38399
38400         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
38401         warnings.
38402         Reported by Ben Pfaff <blp@cs.stanford.edu>.
38403
38404 2007-02-19  Bruno Haible  <bruno@clisp.org>
38405
38406         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
38407         from mingw users.
38408
38409 2007-02-19  Bruno Haible  <bruno@clisp.org>
38410
38411         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
38412         warnings.
38413         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
38414
38415 2007-02-19  Jim Meyering  <jim@meyering.net>
38416
38417         Don't use FD after a successful "fdopendir (fd)".
38418         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
38419         Reset it by calling dirfd on the just-obtained DIR*.
38420
38421         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
38422         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
38423
38424 2007-02-18  Bruno Haible  <bruno@clisp.org>
38425
38426         * lib/readlink.c: Include <unistd.h>.
38427         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
38428         HAVE_READLINK.
38429         * modules/readlink (Depends-on): Add unistd.
38430         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38431         (Include): Add <unistd.h>.
38432
38433         * lib/getlogin_r.h: Remove file.
38434         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
38435         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
38436         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
38437         HAVE_DECL_GETLOGIN_R.
38438         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
38439         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38440         (Include): Use <unistd.h> instead of getlogin_r.h.
38441
38442         * lib/getcwd.h: Remove file.
38443         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
38444         * lib/xgetcwd.c: Likewise.
38445         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
38446         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
38447         * modules/getcwd (Files): Remove lib/getcwd.h.
38448         (Depends-on): Add unistd.
38449         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38450         (Include): Use <unistd.h> instad of getcwd.h.
38451
38452         * lib/ftruncate.c: Include <unistd.h> first.
38453         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
38454         Set HAVE_FTRUNCATE.
38455         * modules/ftruncate (Depends-on): Add unistd.
38456         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38457
38458         * lib/fchdir.c: Include <unistd.h> first.
38459         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
38460         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
38461         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
38462         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38463         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
38464
38465         * lib/dup2.c: Include <unistd.h> first.
38466         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
38467         HAVE_DUP2.
38468         * modules/dup2 (Depends-on): Add unistd.
38469         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38470
38471         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
38472         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
38473         REPLACE_CHOWN. Don't define chown as a macro here.
38474         * modules/chown (Depends-on): Add unistd.
38475         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38476
38477         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
38478         Add definition for GL_LINK_WARNING.
38479         (chown, dup2): New declarations.
38480         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
38481         link warning.
38482         (ftruncate): New declaration.
38483         (getcwd): New declaration, taken from old getcwd.h.
38484         (getlogin_r): New declaration, taken from old getlogin_r.h.
38485         (readlink): New declaration.
38486         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
38487         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
38488         (gl_PREREQ_UNISTD): Remove macro.
38489         (gl_UNISTD_MODULE_INDICATOR): New macro.
38490         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
38491         many new variables. Don't set UNISTD_H.
38492         * modules/unistd (Description): Change.
38493         (Depends-on): Add link-warning.
38494         (configure.ac): Update.
38495         (Makefile.am): Create unistd.h always. Substitute many new variables
38496         into it.
38497
38498 2007-02-18  Bruno Haible  <bruno@clisp.org>
38499
38500         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
38501         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
38502         HAVE_GETSUBOPT.
38503         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
38504         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
38505         * lib/getsubopt.h: Remove file.
38506         * modules/getsubopt (Files): Remove lib/getsubopt.h.
38507         (Depends-on): Add stdlib.
38508         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38509         (Includes): Use <stdlib.h> instead of getsubopt.h.
38510         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
38511         Set HAVE_GETSUBOPT.
38512         * lib/getsubopt.c: Don't include getsubopt.h.
38513
38514 2007-02-18  Bruno Haible  <bruno@clisp.org>
38515
38516         * modules/fchdir (Depends-on): Add dup2.
38517
38518 2007-02-18  Bruno Haible  <bruno@clisp.org>
38519
38520         * lib/stdlib_.h: Handle glibc's special invocation convention
38521         specially.
38522
38523 2007-02-18  Bruno Haible  <bruno@clisp.org>
38524
38525         * modules/stdlib-tests: New file.
38526         * tests/test-stdlib.c: New file.
38527
38528         * modules/mkstemp (Files): Remove lib/mkstemp.h.
38529         (Depends-on): Add stdlib.
38530         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38531         (Includes): Use <stdlib.h> instead of mkstemp.h.
38532         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
38533         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
38534         * lib/mkstemp.c: Don't include mkstemp.h.
38535         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
38536         * lib/stdlib--.h: Don't include mkstemp.h.
38537
38538         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
38539         (Depends-on): Add stdlib.
38540         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38541         (Includes): Use <stdlib.h> instead of mkdtemp.h.
38542         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
38543         HAVE_MKDTEMP.
38544         * lib/mkdtemp.c: Don't include mkdtemp.h.
38545         * lib/clean-temp.c: Don't include mkdtemp.h.
38546
38547         * modules/exit (Files): Remove lib/exit.h.
38548         (Depends-on): Add stdlib.
38549         (Makefile.am): Remove lib_SOURCES.
38550         (Include): Use <stdlib.h> instead of exit.h.
38551         * lib/argmatch.c: Don't include exit.h.
38552         * lib/execute.c: Likewise.
38553         * lib/pagealign_alloc.c: Likewise.
38554         * lib/pipe.c: Likewise.
38555         * lib/wait-process.c: Likewise.
38556         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
38557         * lib/exitfail.c: Likewise.
38558         * lib/savewd.c: Likewise.
38559         * lib/xsetenv.c: Likewise.
38560
38561         * modules/stdlib: New file.
38562         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
38563         and extra comments about mkstemp().
38564         * lib/exit.h: Remove file.
38565         * lib/mkdtemp.h: Remove file.
38566         * lib/mkstemp.h: Remove file.
38567         * m4/stdlib_h.m4: New file.
38568         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
38569
38570 2007-02-18  Bruno Haible  <bruno@clisp.org>
38571
38572         * modules/math-tests: New file.
38573         * tests/test-math.c: New file.
38574
38575         * modules/math: New file.
38576         * modules/mathl (Files): Remove lib/mathl.h.
38577         (Depends-on): Add math.
38578         (Makefile.am): Don't mention mathl.h.
38579         (Include): Use <math.h> instead of mathl.h.
38580         * lib/math_.h: New file.
38581         * lib/mathl.h: Remove file.
38582         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
38583         mathl.h.
38584         * lib/asinl.c: Likewise.
38585         * lib/atanl.c: Likewise.
38586         * lib/ceill.c: Likewise.
38587         * lib/cosl.c: Likewise.
38588         * lib/expl.c: Likewise.
38589         * lib/floorl.c: Likewise.
38590         * lib/frexpl.c: Likewise.
38591         * lib/ldexpl.c: Likewise.
38592         * lib/logl.c: Likewise.
38593         * lib/sincosl.c: Likewise.
38594         * lib/sinl.c: Likewise.
38595         * lib/sqrtl.c: Likewise.
38596         * lib/tanl.c: Likewise.
38597         * lib/trigl.c: Likewise.
38598         * m4/math_h.m4: New file.
38599         * MODULES.html.sh (Mathematics): Add math.
38600
38601 2007-02-17  Bruno Haible  <bruno@clisp.org>
38602
38603         * modules/wctype-tests: New file.
38604         * tests/test-wctype.c: New file.
38605
38606         * modules/wchar-tests: New file.
38607         * tests/test-wchar.c: New file.
38608
38609         * modules/unistd-tests: New file.
38610         * tests/test-unistd.c: New file.
38611
38612         * modules/time-tests: New file.
38613         * tests/test-time.c: New file.
38614
38615         * modules/sysexits-tests: New file.
38616         * tests/test-sysexits.c: New file.
38617
38618         * modules/sys_time-tests: New file.
38619         * tests/test-sys_time.c: New file.
38620
38621         * modules/sys_stat-tests: New file.
38622         * tests/test-sys_stat.c: New file.
38623
38624         * modules/sys_socket-tests: New file.
38625         * tests/test-sys_socket.c: New file.
38626
38627         * modules/sys_select-tests: New file.
38628         * tests/test-sys_select.c: New file.
38629
38630         * modules/string-tests: New file.
38631         * tests/test-string.c: New file.
38632
38633         * modules/stdbool-tests: New file.
38634         * tests/test-stdbool.c: New file.
38635
38636         * modules/netinet_in-tests: New file.
38637         * tests/test-netinet_in.c: New file.
38638
38639         * modules/inttypes-tests: New file.
38640         * tests/test-inttypes.c: New file.
38641
38642         * modules/fcntl-tests: New file.
38643         * tests/test-fcntl.c: New file.
38644
38645         * modules/byteswap-tests: New file.
38646         * tests/test-byteswap.c: New file.
38647
38648         * modules/arpa_inet-tests: New file.
38649         * tests/test-arpa_inet.c: New file.
38650
38651 2007-02-17  Bruno Haible  <bruno@clisp.org>
38652
38653         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
38654         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
38655         if the corresponding module is not enabled. Emit link warnings if
38656         the function is used nevertheless.
38657         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
38658         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
38659         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
38660         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
38661         * modules/inttypes (Depends-on): Add link-warning.
38662         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38663         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
38664         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
38665         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
38666         * modules/imaxdiv (configure.ac): Likewise.
38667         * modules/strtoimax (configure.ac): Likewise.
38668         * modules/strtoumax (configure.ac): Likewise.
38669
38670 2007-02-17  Bruno Haible  <bruno@clisp.org>
38671
38672         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
38673         gl_STRING_MODULE_INDICATOR_DEFAULTS.
38674         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
38675         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
38676
38677 2007-02-17  Bruno Haible  <bruno@clisp.org>
38678
38679         * modules/link-warning: New file.
38680         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
38681         * lib/string_.h (GL_LINK_WARNING): Remove definition.
38682         * modules/string (Depends-on): Add link-warning.
38683         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38684         string.h.
38685         * MODULES.html.sh (Support for building libraries and executables): Add
38686         link-warning.
38687
38688 2007-02-17  Bruno Haible  <bruno@clisp.org>
38689
38690         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
38691         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
38692         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
38693         long lines.
38694
38695 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
38696             Bruno Haible  <bruno@clisp.org>
38697
38698         * modules/tmpfile: New file.
38699         * lib/tmpfile.c: New file.
38700         * m4/tmpfile.m4: New file.
38701         * MODULES.html.sh (func_all_modules): New section "Input/output".
38702
38703 2007-02-15  Bruno Haible  <bruno@clisp.org>
38704
38705         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
38706         (supports_delete_on_close): New function.
38707         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
38708
38709 2007-02-14  Bruno Haible  <bruno@clisp.org>
38710
38711         * modules/mbspcasecmp-tests: New file.
38712         * tests/test-mbspcasecmp.sh: New file.
38713         * tests/test-mbspcasecmp.c: New file.
38714
38715         New module mbspcasecmp.
38716         * modules/mbspcasecmp: New file.
38717         * lib/mbspcasecmp.c: New file.
38718         * lib/string_.h (strncasecmp): Change warning message.
38719         (mbspcasecmp): New declaration.
38720         * m4/mbspcasecmp.m4: New file.
38721         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38722         GNULIB_MBSPCASECMP.
38723         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
38724         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
38725
38726 2007-02-14  Bruno Haible  <bruno@clisp.org>
38727
38728         * modules/mbsncasecmp-tests: New file.
38729         * tests/test-mbsncasecmp.sh: New file.
38730         * tests/test-mbsncasecmp.c: New file.
38731
38732         New module mbsncasecmp.
38733         * modules/mbsncasecmp: New file.
38734         * lib/mbsncasecmp.c: New file.
38735         * lib/string_.h (mbsncasecmp): New declaration.
38736         * m4/mbsncasecmp.m4: New file.
38737         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38738         GNULIB_MBSNCASECMP.
38739         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
38740         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
38741
38742 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38743
38744         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
38745         Verify that it doesn't overlap with our flags.
38746         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
38747         do not have the desired effect in multibyte locales; instead, use
38748         mbscasecmp.
38749         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
38750         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
38751         we don't require GNU fnmatch ourselves (if our users require it, they
38752         should do so explicitly).
38753
38754         Fix regex code so it doesn't rely on strcasecmp.
38755         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
38756         Otherwise, include gnulib's langinfo.h.
38757         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
38758         undesirable behavior in non-C locales.  Instead, rely on localecharset.
38759         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
38760         * modules/regex (FILES): Remove m4/codeset.m4.
38761         (Depends-on): Add localcharset.  Remove strcase.
38762
38763 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38764
38765         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
38766         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
38767
38768 2007-02-13  Bruno Haible  <bruno@clisp.org>
38769
38770         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
38771         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38772
38773 2007-02-12  Bruno Haible  <bruno@clisp.org>
38774
38775         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38776         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
38777         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
38778         time warning rather than a link error.
38779
38780 2007-02-12  Bruno Haible  <bruno@clisp.org>
38781
38782         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
38783         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
38784         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38785
38786 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38787
38788         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38789         args, not 2.
38790
38791 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38792
38793         New module 'time', so that apps can include <time.h> as per
38794         POSIX and GNU instead of separate include files like time_r.h
38795         and timegm.h.  This implementation tries out a simpler approach
38796         for replacing decls in standard include files (as compared to
38797         the string module), somewhat as an experiment.
38798
38799         * config/srclist.txt: Comment out mktime.c for now.
38800         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
38801         since it doesn't apply any more.  Use generic wording instead.
38802         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
38803         'time'.
38804         * lib/time_.h, m4/time_h.m4, modules/time: New files.
38805         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
38806         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
38807         Don't include <sys/types.h>; no longer needed since we assume C89.
38808         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
38809         * lib/strftime.c: Likewise.
38810         * lib/time_r.c: Likewise.
38811         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
38812         * lib/nanosleep.c: Include <time.h> first, to check interface.
38813         * lib/strptime.c: Likewise.
38814         * lib/time_r.c: Likewise.
38815         * lib/timegm.c: Likewise.
38816         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
38817         needed.
38818         * lib/timegm.c: Don't include timegm.h; no longer needed.
38819         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
38820         time.h now handles any problems in that area.
38821         (struct timespec, nanosleep): Remove; time.h now arranges for these.
38822         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
38823         that time.h defines struct timespec.
38824         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
38825         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
38826         handles that.
38827         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
38828         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
38829         needed.  Set REPLACE_LOCALTIME.
38830         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
38831         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
38832         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
38833         nanosleep; time_h.m4 now does that.  Don't require
38834         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
38835         module handles this now.
38836         * modules/getdate (Depends-on): Remove timespec.  Add time.
38837         * modules/nanosleep (Depends-on): Likewise.
38838         * modules/stat-time (Depends-on): Likewise.
38839         * modules/nanosleep (Include): Include time.h, not timespec.h.
38840         * modules/strptime (Files): Remove lib/strptime.h.
38841         (Depends-on): Add extensions, time.
38842         (Include): Include time.h, not strptime.h.
38843         * modules/time_r (Files): Remove lib/time_r.h.
38844         (Depends-on): Add time.
38845         (Include): Include time.h, not time_r.h.
38846         * modules/timegm: Likewise.
38847         * modules/timespec (Description): Now does timespec-related decls
38848         of our own, instead of struct timespec itself.
38849         (Depends-on): Add time; remove extensions.
38850         (Maintainer): Add self.
38851         * modules/utimecmp (Depends-on): Add time; remove timespec.
38852         * modules/utimens (Depends-on): Likewise.
38853         * modules/xnanosleep (Depends-on): Likewise.
38854
38855 2007-02-11  Bruno Haible  <bruno@clisp.org>
38856
38857         * lib/c-strstr.c: Include allocsa.h.
38858         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38859         * lib/c-strcasestr.c: Include allocsa.h.
38860         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38861         * lib/strcasestr.c: Include allocsa.h.
38862         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38863         * lib/mbsstr.c: Include allocsa.h.
38864         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38865         allocsa/freesa instead of malloc/free.
38866         * lib/mbscasestr.c: Include allocsa.h.
38867         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38868         allocsa/freesa instead of malloc/free.
38869         * modules/c-strstr (Depends-on): Add allocsa.
38870         * modules/c-strcasestr (Depends-on): Likewise.
38871         * modules/strcasestr (Depends-on): Likewise.
38872         * modules/mbsstr (Depends-on): Likewise.
38873         * modules/mbscasestr (Depends-on): Likewise.
38874
38875 2007-02-11  Bruno Haible  <bruno@clisp.org>
38876
38877         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
38878
38879         * modules/mbsspn-tests: New file.
38880         * tests/test-mbsspn.sh: New file.
38881         * tests/test-mbsspn.c: New file.
38882
38883 2007-02-11  Bruno Haible  <bruno@clisp.org>
38884
38885         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
38886
38887         * modules/mbspbrk-tests: New file.
38888         * tests/test-mbspbrk.sh: New file.
38889         * tests/test-mbspbrk.c: New file.
38890
38891 2007-02-11  Bruno Haible  <bruno@clisp.org>
38892
38893         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
38894         unneeded cast.
38895
38896         * modules/mbscspn-tests: New file.
38897         * tests/test-mbscspn.sh: New file.
38898         * tests/test-mbscspn.c: New file.
38899
38900 2007-02-11  Bruno Haible  <bruno@clisp.org>
38901
38902         * modules/mbscasecmp-tests: New file.
38903         * tests/test-mbscasecmp.sh: New file.
38904         * tests/test-mbscasecmp.c: New file.
38905
38906 2007-02-11  Bruno Haible  <bruno@clisp.org>
38907
38908         Ensure O(n) worst-case complexity of mbscasestr.
38909         * lib/mbscasestr.c: Include stdbool.h.
38910         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38911         functions.
38912         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
38913         the bookkeeping indicates that it's worth it.
38914         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
38915
38916         * modules/mbscasestr-tests: New file.
38917         * tests/test-mbscasestr1.c: New file.
38918         * tests/test-mbscasestr2.sh: New file.
38919         * tests/test-mbscasestr2.c: New file.
38920         * tests/test-mbscasestr3.sh: New file.
38921         * tests/test-mbscasestr3.c: New file.
38922         * tests/test-mbscasestr4.sh: New file.
38923         * tests/test-mbscasestr4.c: New file.
38924         * m4/locale-tr.m4: New file.
38925
38926 2007-02-11  Bruno Haible  <bruno@clisp.org>
38927
38928         Ensure O(n) worst-case complexity of mbsstr.
38929         * lib/mbsstr.c: Include stdbool.h.
38930         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38931         functions.
38932         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
38933         bookkeeping indicates that it's worth it.
38934         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
38935
38936         * modules/mbsstr-tests: New file.
38937         * tests/test-mbsstr1.c: New file.
38938         * tests/test-mbsstr2.sh: New file.
38939         * tests/test-mbsstr2.c: New file.
38940         * tests/test-mbsstr3.sh: New file.
38941         * tests/test-mbsstr3.c: New file.
38942         * m4/locale-fr.m4: New file.
38943
38944 2007-02-11  Bruno Haible  <bruno@clisp.org>
38945
38946         * lib/mbsrchr.c (mbsrchr): Fix bug.
38947
38948         * modules/mbsrchr-tests: New file.
38949         * tests/test-mbsrchr.sh: New file.
38950         * tests/test-mbsrchr.c: New file.
38951
38952 2007-02-11  Bruno Haible  <bruno@clisp.org>
38953
38954         * lib/mbschr.c (mbschr): Fix bug.
38955
38956         * modules/mbschr-tests: New file.
38957         * tests/test-mbschr.sh: New file.
38958         * tests/test-mbschr.c: New file.
38959         * m4/locale-zh.m4: New file.
38960
38961 2007-02-11  Bruno Haible  <bruno@clisp.org>
38962
38963         Support for copying multibyte string iterators.
38964         * lib/mbiter.h: Include <string.h>.
38965         (mbiter_multi_copy): New function.
38966         (mbi_copy): New macro.
38967         * lib/mbuiter.h: Include <string.h>.
38968         (mbuiter_multi_copy): New function.
38969         (mbui_copy): New macro.
38970
38971 2007-02-11  Bruno Haible  <bruno@clisp.org>
38972
38973         New module mbslen.
38974         * modules/mbslen: New file.
38975         * lib/mbslen.c: New file.
38976         * lib/string_.h (mbslen): New declaration.
38977         * m4/mbslen.m4: New file.
38978         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38979         GNULIB_MBSLEN.
38980         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
38981         * MODULES.html.sh (Internationalization functions): Add mbslen.
38982
38983 2007-02-11  Bruno Haible  <bruno@clisp.org>
38984
38985         Ensure O(n) worst-case complexity of strcasestr substitute.
38986         * lib/strcasestr.c: Include stdbool.h.
38987         (knuth_morris_pratt): New function.
38988         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38989         bookkeeping indicates that it's worth it.
38990         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
38991
38992         * modules/strcasestr-tests: New file.
38993         * tests/test-strcasestr.c: New file.
38994
38995 2007-02-11  Bruno Haible  <bruno@clisp.org>
38996
38997         Ensure O(n) worst-case complexity of c_strcasestr.
38998         * lib/c-strcasestr.c: Include stdbool.h, string.h.
38999         (knuth_morris_pratt): New function.
39000         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
39001         the bookkeeping indicates that it's worth it.
39002         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
39003
39004         * modules/c-strcasestr-tests: New file.
39005         * tests/test-c-strcasestr.c: New file.
39006
39007 2007-02-11  Bruno Haible  <bruno@clisp.org>
39008
39009         Ensure O(n) worst-case complexity of c_strstr.
39010         * lib/c-strstr.c: Include stdbool.h, string.h.
39011         (knuth_morris_pratt): New function.
39012         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
39013         bookkeeping indicates that it's worth it.
39014         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
39015
39016         * lib/c-strstr.c: Complete rewrite for maintainability.
39017
39018         * modules/c-strstr-tests: New file.
39019         * tests/test-c-strstr.c: New file.
39020
39021 2007-02-11  Bruno Haible  <bruno@clisp.org>
39022
39023         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
39024         5.2.1 and earlier, whereby \055 was treated just like the range
39025         delimiter '-'.
39026         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
39027
39028 2007-02-08  Bruno Haible  <bruno@clisp.org>
39029
39030         * modules/regex (Depends-on): Add stdbool.
39031         Reported by Dalibor Topic <robilad@kaffe.org>.
39032
39033 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
39034
39035         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
39036         Prefer returning from main to exiting from it.
39037         Remove unnecessary parens after sizeof.
39038
39039 2007-02-05  Bruno Haible  <bruno@clisp.org>
39040
39041         New module mbssep.
39042         * modules/mbssep: New file.
39043         * lib/mbssep.c: New file.
39044         * lib/string_.h (strsep): Add a conditional link warning.
39045         (mbssep): New declaration.
39046         * m4/mbssep.m4: New file.
39047         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39048         GNULIB_MBSSEP.
39049         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
39050         * MODULES.html.sh (Internationalization functions): Add mbssep.
39051
39052 2007-02-05  Bruno Haible  <bruno@clisp.org>
39053
39054         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
39055         Optimize search in case of 1 delimiter.
39056
39057 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39058
39059         * lib/acl.h: Include sys/types.h before sys/acl.h.
39060
39061 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39062
39063         Merge upstream fix for glibc bugzilla #3957:
39064
39065         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
39066
39067         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
39068         bit for RE_HAT_LISTS_NOT_NEWLINE.
39069         (build_charclass_op): Remove bogus comment.
39070
39071 2007-02-05  Simon Josefsson  <simon@josefsson.org>
39072
39073         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
39074
39075 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39076
39077         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
39078         * lib/memmem.c [!defined _LIBC]: Include config.h.
39079
39080 2007-02-04  Bruno Haible  <bruno@clisp.org>
39081
39082         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
39083         warning message.
39084
39085 2007-02-04  Bruno Haible  <bruno@clisp.org>
39086
39087         New module mbstok_r.
39088         * modules/mbstok_r: New file.
39089         * lib/mbstok_r.c: New file.
39090         * lib/string_.h (strtok_r): Change argument names to match the
39091         comments. Add a conditional link warning.
39092         (mbstok_r): New declaration.
39093         * m4/mbstok_r.m4: New file.
39094         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39095         GNULIB_MBSTOK_R.
39096         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
39097         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
39098
39099 2007-02-04  Bruno Haible  <bruno@clisp.org>
39100
39101         New module mbsspn.
39102         * modules/mbsspn: New file.
39103         * lib/mbsspn.c: New file.
39104         * lib/string_.h (strspn): Add a conditional link warning.
39105         (mbsspn): New declaration.
39106         * m4/mbsspn.m4: New file.
39107         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39108         GNULIB_MBSSPN.
39109         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
39110         * MODULES.html.sh (Internationalization functions): Add mbsspn.
39111
39112 2007-02-04  Bruno Haible  <bruno@clisp.org>
39113
39114         New module mbspbrk.
39115         * modules/mbspbrk: New file.
39116         * lib/mbspbrk.c: New file.
39117         * lib/string_.h (strpbrk): Add a conditional link warning.
39118         (mbspbrk): New declaration.
39119         * m4/mbspbrk.m4: New file.
39120         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39121         GNULIB_MBSPBRK.
39122         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
39123         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
39124
39125 2007-02-04  Bruno Haible  <bruno@clisp.org>
39126
39127         New module mbscspn.
39128         * modules/mbscspn: New file.
39129         * lib/mbscspn.c: New file.
39130         * lib/string_.h (strcspn): Add a conditional link warning.
39131         (mbscspn): New declaration.
39132         * m4/mbscspn.m4: New file.
39133         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39134         GNULIB_MBSCSPN.
39135         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
39136         * MODULES.html.sh (Internationalization functions): Add mbscspn.
39137
39138 2007-02-04  Bruno Haible  <bruno@clisp.org>
39139
39140         New module mbscasestr, reduced goal of strcasestr.
39141         * modules/mbscasestr: New file.
39142         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
39143         (mbscasestr): Renamed from strcasestr.
39144         * lib/strcasestr.c: Don't include mbuiter.h.
39145         (strcasestr): Remove support for multibyte locales.
39146         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
39147         Change the conditional link warning.
39148         (mbscasestr): New declaration.
39149         * m4/mbscasestr.m4: New file.
39150         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
39151         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
39152         REPLACE_STRCASESTR.
39153         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
39154         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39155         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39156         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
39157         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
39158         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39159         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
39160         (Depends-on): Remove mbuiter.
39161         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
39162
39163 2007-02-04  Bruno Haible  <bruno@clisp.org>
39164
39165         Simplify handling of strncasecmp.
39166         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
39167         the conditional link warning.
39168         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39169         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
39170         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
39171         * modules/strcase (configure.ac): Don't invoke
39172         gl_STRING_MODULE_INDICATOR.
39173         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
39174
39175 2007-02-04  Bruno Haible  <bruno@clisp.org>
39176
39177         New module mbscasecmp, reduced goal of strcasecmp.
39178         * modules/mbscasecmp: New file.
39179         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
39180         (mbscasecmp): Renamed from strcasecmp.
39181         * lib/strcasecmp.c: Don't include mbuiter.h.
39182         (strcasecmp): Remove support for multibyte locales.
39183         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
39184         Change the conditional link warning.
39185         (mbscasecmp): New declaration.
39186         * m4/mbscasecmp.m4: New file.
39187         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
39188         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
39189         REPLACE_STRCASECMP.
39190         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
39191         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39192         GNULIB_MBSCASECMP.
39193         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
39194         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
39195         * modules/strcase (Files): Remove m4/mbrtowc.m4.
39196         (Depends-on): Remove mbuiter.
39197         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
39198
39199 2007-02-04  Bruno Haible  <bruno@clisp.org>
39200
39201         New module mbsstr. Remove module strstr.
39202         * modules/mbsstr: New file.
39203         * modules/strstr: Remove file.
39204         * lib/mbsstr.c: Renamed from lib/strstr.c.
39205         (mbsstr): Renamed from strstr.
39206         * lib/string_.h (strstr): Remove declaration. Change the conditional
39207         link warning.
39208         (mbsstr): New declaration.
39209         * m4/mbsstr.m4: New file.
39210         * m4/strstr.m4: Remove file.
39211         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
39212         REPLACE_STRSTR.
39213         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
39214         Don't initialize GNULIB_STRSTR.
39215         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
39216         substitute GNULIB_STRSTR and REPLACE_STRSTR.
39217         * MODULES.html.sh (Internationalization functions): Add mbsstr.
39218         (Support for systems lacking ANSI C 89): Remove strstr.
39219
39220 2007-02-04  Bruno Haible  <bruno@clisp.org>
39221
39222         New module mbsrchr.
39223         * modules/mbsrchr: New file.
39224         * lib/mbsrchr.c: New file.
39225         * lib/string_.h (strrchr): Add a conditional link warning.
39226         (mbsrchr): New declaration.
39227         * m4/mbsrchr.m4: New file.
39228         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39229         GNULIB_MBSRCHR.
39230         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
39231         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
39232
39233 2007-02-04  Bruno Haible  <bruno@clisp.org>
39234
39235         New module mbschr.
39236         * modules/mbschr: New file.
39237         * lib/mbschr.c: New file.
39238         * lib/string_.h (strchr): Add a conditional link warning.
39239         (mbschr): New declaration.
39240         * m4/mbschr.m4: New file.
39241         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39242         GNULIB_MBSCHR.
39243         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
39244         * MODULES.html.sh (Internationalization functions): Add mbschr.
39245
39246 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39247
39248         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
39249
39250         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
39251
39252 2007-02-04  Bruno Haible  <bruno@clisp.org>
39253
39254         New module description section 'configure.ac-early'.
39255         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
39256         (func_get_autoconf_early_snippet): New function.
39257         (func_import, func_create_testdir): Use it. Remove special cases for
39258         modules 'extensions' and 'lock'.
39259         * modules/extensions (configure.ac-early): Require
39260         gl_USE_SYSTEM_EXTENSIONS.
39261         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
39262
39263 2007-02-04  Bruno Haible  <bruno@clisp.org>
39264
39265         Make use of gcj-4.3's -fsource and -ftarget option.
39266         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
39267         and if so try the options -fsource and -ftarget.
39268         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
39269         source_version, ftarget_option, target_version arguments.
39270         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
39271         (is_envjavac_oldgcj_14_14_usable): Renamed from
39272         is_envjavac_gcj_14_14_usable.
39273         (is_envjavac_oldgcj_14_13_usable): Renamed from
39274         is_envjavac_gcj_14_13_usable.
39275         (is_gcj_present): Update.
39276         (is_gcj_43, is_gcj43_usable): New functions.
39277         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
39278         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
39279         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
39280         try the options -fsource and -ftarget.
39281
39282 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39283
39284         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
39285         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
39286         larger value.
39287
39288 2007-02-03  Jim Meyering  <jim@meyering.net>
39289
39290         Give tools a better chance to allocate space for very large buffers.
39291         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
39292
39293         Make pwd and readlink work also when run with an unreadable parent dir
39294         on systems with openat support.
39295         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
39296         provided getcwd function, even when we have openat support.
39297         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
39298
39299 2007-02-02  Bruno Haible  <bruno@clisp.org>
39300
39301         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
39302         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
39303         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
39304         portability problems if one of these functions is only used on specific
39305         platforms.
39306         Reported by Paul Eggert.
39307
39308 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
39309
39310         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
39311         is causing more trouble than it's curing.
39312         * lib/regex_internal.h (__mempcpy): Remove.
39313         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
39314         (and make the code a tad smaller to boot).
39315         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
39316
39317 2007-02-02  Jim Meyering  <jim@meyering.net>
39318
39319         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
39320         section, not in the Makefile.am: one.
39321
39322 2007-02-02  Eric Blake  <ebb9@byu.net>
39323
39324         * lib/strchrnul.c: Always include config.h first.
39325
39326         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
39327         gnulib strstr is not necessary here.
39328
39329 2007-02-02  Simon Josefsson  <simon@josefsson.org>
39330
39331         * m4/socklen.m4: Fix typo.
39332
39333 2007-02-02  Eric Blake  <ebb9@byu.net>
39334
39335         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
39336         * modules/netinet_in (Makefile.am): Likewise.
39337
39338 2007-02-01  Bruno Haible  <bruno@clisp.org>
39339
39340         * lib/string_.h (GL_LINK_WARNING): New macro.
39341         (strcasecmp, strstr, strcasestr): If provided by the system,
39342         conditionally define as a macro that leads to a warning instead of to
39343         an error.
39344         (strncasecmp): Conditionally define as a macro that leads to a warning.
39345
39346 2007-02-01  Karl Berry  <karl@gnu.org>
39347
39348         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
39349
39350 2007-02-01  Bruno Haible  <bruno@clisp.org>
39351
39352         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
39353         renamings.
39354
39355 2007-02-01  Eric Blake  <ebb9@byu.net>
39356
39357         * modules/regex (Depends-on): Revert dependence on mempcpy.
39358         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
39359         module's definition of mempcpy.
39360         Reported by Paul Eggert.
39361
39362 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
39363
39364         * lib/string_.h: If the gnulib module XYZ is not present, undefine
39365         the symbol XYZ before redefining it.  This fixes a problem with
39366         programs that don't use XYZ, when compiled on systems that define
39367         XYZ to something else.
39368
39369 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
39370
39371         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
39372         occurs when "mkdir -m foo" creates a setgid directory that is (1)
39373         writeable to group or other and (2) is intended to have a special
39374         mode bit that is set or cleared.  In such a case, the directory
39375         should be neither group- nor other-writeable until the special
39376         mode bits are right.
39377
39378 2007-01-31  Eric Blake  <ebb9@byu.net>
39379
39380         * modules/mountlist (Depends-on): Add strstr.
39381
39382         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
39383         bug.
39384         * modules/string (Makefile.am): Remove redundant replacement.
39385         * modules/regex (Depends-on): Add mempcpy.
39386
39387 2007-01-31  Bruno Haible  <bruno@clisp.org>
39388
39389         New module description field 'Link'.
39390         * gnulib-tool (func_usage): Document --extract-link-directive.
39391         (sed_extract_prog): Recognize 'Link' directive.
39392         (func_get_link_directive): New function.
39393         (func_import): Show summary of link directives.
39394         Handle --extract-link-directive option.
39395         * modules/acl (Link): New section.
39396         * modules/clock-time (Link): New section.
39397         * modules/euidaccess (Link): New section.
39398         * modules/gettext (Link): New section.
39399         * modules/iconv (Link): New section.
39400         * modules/lock (Link): New section.
39401         * modules/nanosleep (Link): New section.
39402         * modules/readline (Link): New section.
39403
39404 2007-01-27  Bruno Haible  <bruno@clisp.org>
39405
39406         Enforce the use of gnulib modules for unportable <string.h> functions.
39407         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
39408         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
39409         (gl_HEADER_STRING_H_BODY): Require it.
39410         * lib/string_.h: If the gnulib module XYZ is not present, redefine
39411         the symbol XYZ to one that gives a link error.
39412         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
39413         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
39414         * modules/mempcpy (configure.ac): Likewise.
39415         * modules/memrchr (configure.ac): Likewise.
39416         * modules/stpcpy (configure.ac): Likewise.
39417         * modules/stpncpy (configure.ac): Likewise.
39418         * modules/strcase (configure.ac): Likewise.
39419         * modules/strcasestr (configure.ac): Likewise.
39420         * modules/strchrnul (configure.ac): Likewise.
39421         * modules/strdup (configure.ac): Likewise.
39422         * modules/strndup (configure.ac): Likewise.
39423         * modules/strnlen (configure.ac): Likewise.
39424         * modules/strpbrk (configure.ac): Likewise.
39425         * modules/strsep (configure.ac): Likewise.
39426         * modules/strstr (configure.ac): Likewise.
39427         * modules/strtok_r (configure.ac): Likewise.
39428
39429 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
39430
39431         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
39432
39433 2007-01-30  Jim Meyering  <jim@meyering.net>
39434
39435         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
39436
39437 2007-01-29  Bruno Haible  <bruno@clisp.org>
39438
39439         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
39440         * lib/execute.c: Likewise.
39441         * lib/pipe.c: Likewise.
39442         * lib/printf-args.h: Likewise.
39443         * lib/printf-args.c: Likewise.
39444         * lib/printf-parse.c: Likewise.
39445         * lib/vasnprintf.c: Likewise.
39446
39447 2007-01-29  Eric Blake  <ebb9@byu.net>
39448
39449         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
39450         declaration.
39451
39452 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
39453
39454         * lib/strptime.h (strptime): Use 'restrict' for args where
39455         POSIX requires this.
39456         * lib/strptime.c (strptime): Likewise.
39457         Change license notice from LGPL to GPL, since gnulib-tool will
39458         change this as needed.
39459         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
39460         defined.
39461         Include "strptime.h" first, to check interface.
39462         Do not #undef _LIBC and _NL_CURRENT.
39463         Do not include <stdlib.h>; no longer needed.
39464         Include "time_r.h" and declare ptime_locale_status
39465         only if _LIBC is not defined.
39466         (__P): Remove unused macro.
39467         (match_string): Bring back glibc version, but use it only if _LIBC
39468         is defined.
39469         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
39470         Remove unnecessary assertion and abort() call.
39471         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
39472         * m4/strptime.m4: Fix serial number comment.
39473         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
39474         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
39475         (Depends-on): Add time_r.
39476
39477 2007-01-29  Bruno Haible  <bruno@clisp.org>
39478
39479         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
39480         strptime.
39481         * modules/strptime (Depends-on): Add stdbool.
39482         * lib/strptime.h: Include <time.h> always. Add comments.
39483
39484 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
39485
39486         * modules/strptime: New file.
39487         * lib/strptime.h: New file.
39488         * lib/strptime.c: New file.
39489         * m4/strptime.m4: New file.
39490
39491 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
39492
39493         * MODULES.html.sh: New module mpsort.
39494         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
39495
39496         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
39497         a circularity problem with HP-UX ia64 reported by Bob Proulx in
39498         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
39499         All uses changed.
39500         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
39501         All uses changed.
39502         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
39503         to _Restrict_.
39504         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
39505         the parameter matches the prototype.
39506
39507 2007-01-28  Jim Meyering  <jim@meyering.net>
39508
39509         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
39510         sys/time.h here, reverting that part of the previous patch:
39511         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
39512
39513 2007-01-28  Bruno Haible  <bruno@clisp.org>
39514
39515         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
39516         value of $(SYS_TIME_H).
39517         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
39518         remove it conditionally, too. [added by Jim Meyering]
39519         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
39520         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39521         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
39522         GETTIMEOFDAY_REPLACEMENT to 1.
39523
39524 2007-01-28  Bruno Haible  <bruno@clisp.org>
39525
39526         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
39527         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
39528         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
39529         Set UNISTD_H instead of UNISTD_H2.
39530         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
39531
39532 2007-01-28  Bruno Haible  <bruno@clisp.org>
39533
39534         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
39535         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
39536
39537 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39538
39539         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
39540         (func_create_testdir): Ensure C locale for `grep' and `tr'
39541         character ranges.
39542         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
39543         ACLOCAL_AMFLAGS parsing state machine.
39544
39545 2007-01-27  Bruno Haible  <bruno@clisp.org>
39546
39547         * modules/unistr/base: Update.
39548
39549 2007-01-27  Bruno Haible  <bruno@clisp.org>
39550
39551         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
39552         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
39553         * modules/unistr/u32-mbtouc-unsafe: Renamed from
39554         modules/unistr/u32-mbtouc.
39555         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
39556         * lib/unistr.h: Update.
39557         * lib/linebreak.c: Update.
39558         * modules/unistr/u32-mbtouc: Renamed from
39559         modules/unistr/u32-mbtouc-safe.
39560         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
39561         * lib/unistr.h: Update.
39562         * lib/unistr/u32-to-u8.c: Update.
39563         * lib/unistr/u32-to-u16.c: Update.
39564
39565 2007-01-27  Bruno Haible  <bruno@clisp.org>
39566
39567         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
39568         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
39569         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
39570         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
39571         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
39572         * modules/unistr/u16-mbtouc-unsafe: Renamed from
39573         modules/unistr/u16-mbtouc.
39574         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
39575         * lib/unistr.h: Update.
39576         * lib/linebreak.c: Update.
39577         * modules/linebreak: Update.
39578         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
39579         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
39580         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
39581         * modules/unistr/u16-mbtouc: Renamed from
39582         modules/unistr/u16-mbtouc-safe.
39583         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
39584         * lib/unistr.h: Update.
39585         * lib/unistr/u16-to-u8.c: Update.
39586         * modules/unistr/u16-to-u8: Update.
39587         * lib/unistr/u16-to-u32.c: Update.
39588         * modules/unistr/u16-to-u32: Update.
39589
39590 2007-01-27  Bruno Haible  <bruno@clisp.org>
39591
39592         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
39593         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
39594         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
39595         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
39596         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
39597         * modules/unistr/u8-mbtouc-unsafe: Renamed from
39598         modules/unistr/u8-mbtouc.
39599         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
39600         * lib/unistr.h: Update.
39601         * lib/striconveh.c: Update.
39602         * modules/striconveh: Update.
39603         * lib/linebreak.c: Update.
39604         * modules/linebreak: Update.
39605         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
39606         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
39607         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
39608         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
39609         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
39610         * lib/unistr.h: Update.
39611         * lib/striconveh.c: Update.
39612         * modules/striconveh: Update.
39613         * lib/unistr/u8-to-u16.c: Update.
39614         * modules/unistr/u8-to-u16: Update.
39615         * lib/unistr/u8-to-u32.c: Update.
39616         * modules/unistr/u8-to-u32: Update.
39617
39618 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39619
39620         Sync from Libtool.
39621         * lib/argz.c: Do not include strings.h nor memory.h, include
39622         string.h unconditionally.  Patch by Simon Josefsson.
39623
39624 2007-01-27  Bruno Haible  <bruno@clisp.org>
39625
39626         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
39627         from gl_HEADER_STRING_H_BODY.
39628         (gl_HEADER_STRING_H_BODY): Require it.
39629         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
39630         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
39631         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
39632         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
39633         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
39634         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
39635         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
39636         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
39637         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
39638         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
39639         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
39640         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
39641         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
39642         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
39643         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
39644
39645 2007-01-27  Bruno Haible  <bruno@clisp.org>
39646
39647         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
39648         check_PROGRAMS into noinst_PROGRAMS.
39649         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
39650         check_PROGRAMS in this case.
39651         (func_import): Set for_test to false.
39652         (func_create_testdir): Set for_test to true.
39653
39654 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
39655             Bruno Haible  <bruno@clisp.org>
39656
39657         * modules/strcasestr (Files): Remove lib/strcasestr.h.
39658         (Depends-on): Add string.
39659         (Includes): Use <string.h> instead of strcasestr.h.
39660         * modules/string (Makefile.am): Also substitute the value of
39661         REPLACE_STRCASESTR.
39662         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
39663         assume strcasestr is declared in <string.h> not <strings.h>. Also
39664         set REPLACE_STRCASESTR.
39665         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
39666         REPLACE_STRCASESTR.
39667         * lib/strcasestr.h: Remove file.
39668         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
39669         * lib/string_.h (strcasestr): New declaration.
39670
39671 2007-01-27  Bruno Haible  <bruno@clisp.org>
39672
39673         * lib/string_.h: Use 'extern'.
39674
39675 2007-01-27  Jim Meyering  <jim@meyering.net>
39676
39677         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
39678         of set-but-not-used local, "q".
39679
39680         * lib/mempcpy.c: Include <config.h> before <string.h>.
39681         This fixes a compilation error on HP-UX, due to the system's
39682         "restrict"-using mempcpy prototype.
39683
39684 2007-01-26  Bruno Haible  <bruno@clisp.org>
39685
39686         Small optimization.
39687         * lib/javacomp.c: Include c-strstr.h.
39688          (is_envjavac_gcj): Use c_strstr instead of strstr.
39689         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
39690
39691 2007-01-26  Bruno Haible  <bruno@clisp.org>
39692
39693         * MODULES.html.sh (Unicode string functions): Add the new modules.
39694
39695         * modules/uniconv/u32-strconv-to-locale: New file.
39696         * lib/uniconv/u32-strconv-to-locale.c: New file.
39697
39698         * modules/uniconv/u16-strconv-to-locale: New file.
39699         * lib/uniconv/u16-strconv-to-locale.c: New file.
39700
39701         * modules/uniconv/u8-strconv-to-locale: New file.
39702         * lib/uniconv/u8-strconv-to-locale.c: New file.
39703
39704         * modules/uniconv/u32-strconv-from-locale: New file.
39705         * lib/uniconv/u32-strconv-from-locale.c: New file.
39706
39707         * modules/uniconv/u16-strconv-from-locale: New file.
39708         * lib/uniconv/u16-strconv-from-locale.c: New file.
39709
39710         * modules/uniconv/u8-strconv-from-locale: New file.
39711         * lib/uniconv/u8-strconv-from-locale.c: New file.
39712
39713         * modules/uniconv/u32-strconv-to-enc: New file.
39714         * lib/uniconv/u32-strconv-to-enc.c: New file.
39715         * modules/uniconv/u32-strconv-to-enc-tests: New file.
39716         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
39717
39718         * modules/uniconv/u16-strconv-to-enc: New file.
39719         * lib/uniconv/u16-strconv-to-enc.c: New file.
39720         * lib/uniconv/u-strconv-to-enc.h: New file.
39721         * modules/uniconv/u16-strconv-to-enc-tests: New file.
39722         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
39723
39724         * modules/uniconv/u8-strconv-to-enc: New file.
39725         * lib/uniconv/u8-strconv-to-enc.c: New file.
39726         * modules/uniconv/u8-strconv-to-enc-tests: New file.
39727         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
39728
39729         * modules/uniconv/u32-strconv-from-enc: New file.
39730         * lib/uniconv/u32-strconv-from-enc.c: New file.
39731         * modules/uniconv/u32-strconv-from-enc-tests: New file.
39732         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
39733
39734         * modules/uniconv/u16-strconv-from-enc: New file.
39735         * lib/uniconv/u16-strconv-from-enc.c: New file.
39736         * modules/uniconv/u16-strconv-from-enc-tests: New file.
39737         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
39738
39739         * modules/uniconv/u8-strconv-from-enc: New file.
39740         * lib/uniconv/u8-strconv-from-enc.c: New file.
39741         * lib/uniconv/u-strconv-from-enc.h: New file.
39742         * modules/uniconv/u8-strconv-from-enc-tests: New file.
39743         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
39744
39745         * modules/uniconv/u32-conv-from-enc: New file.
39746         * lib/uniconv/u32-conv-from-enc.c: New file.
39747         * modules/uniconv/u32-conv-from-enc-tests: New file.
39748         * tests/uniconv/test-u32-conv-from-enc.c: New file.
39749
39750         * modules/uniconv/u16-conv-from-enc: New file.
39751         * lib/uniconv/u16-conv-from-enc.c: New file.
39752         * lib/uniconv/u-conv-from-enc.h: New file.
39753         * modules/uniconv/u16-conv-from-enc-tests: New file.
39754         * tests/uniconv/test-u16-conv-from-enc.c: New file.
39755
39756         * modules/uniconv/u8-conv-from-enc: New file.
39757         * lib/uniconv/u8-conv-from-enc.c: New file.
39758         * modules/uniconv/u8-conv-from-enc-tests: New file.
39759         * tests/uniconv/test-u8-conv-from-enc.c: New file.
39760
39761         * modules/uniconv/base: New file.
39762         * lib/uniconv.h: New file.
39763
39764 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
39765
39766         * doc/gnulib-tool.texi (Initial import): Update to match current
39767         behavior with strdup module.
39768         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
39769         * lib/memmem.h: Remove; all uses removed.  This is now done
39770         by <string.h>.
39771         * lib/mempcpy.h: Likewise.
39772         * lib/memrchr.h: Likewise.
39773         * lib/stpcpy.h: Likewise.
39774         * lib/stpncpy.h: Likewise.
39775         * lib/strcase.h: Likewise.
39776         * lib/strchrnul.h: Likewise.
39777         * lib/strdup.h: Likewise.
39778         * lib/strndup.h: Likewise.
39779         * lib/strnlen.h: Likewise.
39780         * lib/strpbrk.h: Likewise.
39781         * lib/strsep.h: Likewise.
39782         * lib/strstr.h: Likewise.
39783         * lib/strtok_r.h: Likewise.
39784         * lib/string_.h: New file.
39785         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
39786         Rely on <string.h> instead.
39787         * lib/canon-host.c: Likewise.
39788         * lib/chdir-long.c: Likewise.
39789         * lib/concatpath.c: Likewise.
39790         * lib/exclude.c: Likewise.
39791         * lib/fchdir.c: Likewise.
39792         * lib/getaddrinfo.c: Likewise.
39793         * lib/getcwd.c: Likewise.
39794         * lib/getsubopt.c: Likewise.
39795         * lib/glob.c: Likewise.
39796         * lib/hard-locale.c: Likewise.
39797         * lib/iconvme.c: Likewise.
39798         * lib/javacomp.c: Likewise.
39799         * lib/mempcpy.c: Likewise.
39800         * lib/memrchr.c: Likewise.
39801         * lib/regex_internal.h: Likewise.
39802         * lib/stpncpy.c: Likewise.
39803         * lib/strcasecmp.c: Likewise.
39804         * lib/strchrnul.c: Likewise.
39805         * lib/strdup.c: Likewise.
39806         * lib/striconv.c: Likewise.
39807         * lib/striconveh.c: Likewise.
39808         * lib/striconveha.c: Likewise.
39809         * lib/strncasecmp.c: Likewise.
39810         * lib/strndup.c: Likewise.
39811         * lib/strnlen.c: Likewise.
39812         * lib/strsep.c: Likewise.
39813         * lib/strstr.c: Likewise.
39814         * lib/strtok_r.c: Likewise.
39815         * lib/userspec.c: Likewise.
39816         * lib/w32spawn.h: Likewise.
39817         * lib/xstrndup.c: Likewise.
39818         * lib/mountlist.c (strstr): Remove decl.
39819         * m4/string_h.m4: New file.
39820         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
39821         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
39822         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
39823         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
39824         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
39825         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
39826         Set REPLACE_STRCASECMP if necessary.
39827         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
39828         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
39829         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
39830         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
39831         HAVE_DECL_STRDUP if necessary.
39832         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
39833         since gl_FUNC_STRNDUP does that now.
39834         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
39835         Check for decl here...
39836         (gl_PREREQ_STRNLEN): ... not here.
39837         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
39838         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
39839         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
39840         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
39841         necessary.
39842         * modules/string: New file.
39843         * modules/memmem (Files): Remove special-purpose include file.
39844         (Depends-on): Add string.
39845         (Include): Include <string.h>, not the removed file.
39846         * modules/mempcpy: Likewise.
39847         * modules/memrchr: Likewise.
39848         * modules/stpcpy: Likewise.
39849         * modules/stpncpy: Likewise.
39850         * modules/strcase: Likewise.
39851         * modules/strchrnul: Likewise.
39852         * modules/strdup: Likewise.
39853         * modules/strndup: Likewise.
39854         * modules/strnlen: Likewise.
39855         * modules/strpbrk: Likewise.
39856         * modules/strsep: Likewise.
39857         * modules/strstr: Likewise.
39858         * modules/strtok_r: Likewise.
39859         * tests/test-dirname.c: Don't include "strdup.h", since
39860         <string.h> now suffices.
39861         * tests/test-memmem.c: Don't include "memmem.h", since
39862         <string.h> now suffices.
39863
39864 2007-01-25  Bruno Haible  <bruno@clisp.org>
39865
39866         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
39867         *resultp is 0.
39868
39869         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
39870         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
39871         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
39872         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
39873
39874         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
39875         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
39876         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
39877         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
39878         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
39879         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
39880
39881 2007-01-24  Bruno Haible  <bruno@clisp.org>
39882
39883         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
39884         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
39885         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
39886         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
39887         gl_FUNC_FTS_CORE.
39888         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
39889         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
39890         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39891         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
39892         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
39893         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
39894         gl_FUNC_FCHOWNAT.
39895         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
39896         gl_FUNC_STRFTIME.
39897         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
39898         Reported by Ralf Wildenhues.
39899
39900 2007-01-24  Bruno Haible  <bruno@clisp.org>
39901
39902         Drop AC_REQUIRE calls that are redundant with the module dependencies.
39903         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
39904         gl_GETADDRINFO.
39905         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
39906         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
39907         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
39908
39909 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
39910
39911         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
39912         Don't use 'exit'; just return from 'main'.
39913         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
39914
39915         * lib/fnmatch_.h: Readjust white space and comments to match
39916         glibc, to avoid spurious diffs.
39917
39918 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39919
39920         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
39921         2004-12-01 change by Jakub Jelinek, since this code won't compile
39922         if !LIBC.  Problem reported by Bob Proulx.
39923
39924 2007-01-23  Bruno Haible  <bruno@clisp.org>
39925
39926         * lib/striconveh.c: Include c-strcaseeq.h.
39927         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
39928         * modules/striconveh (Depends-on): Add c-strcaseeq.
39929
39930 2007-01-23  Bruno Haible  <bruno@clisp.org>
39931
39932         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
39933
39934         * modules/c-strcaseeq: New file.
39935         * lib/c-strcaseeq.h: New file.
39936
39937         * modules/streq: New file.
39938         * lib/streq.h: New file.
39939
39940 2007-01-23  Bruno Haible  <bruno@clisp.org>
39941
39942         * modules/striconveha-tests: New file.
39943         * tests/test-striconveha.c: New file.
39944
39945         * lib/striconveha.h: Include <stdbool.h>.
39946         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
39947         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
39948         (mem_iconveha_notranslit): Renamed from mem_iconveha.
39949         (mem_iconveha): New function.
39950         (str_iconveha_notranslit): Renamed from str_iconveha.
39951         (str_iconveha): New function.
39952         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
39953         c-strcase.
39954
39955 2007-01-23  Bruno Haible  <bruno@clisp.org>
39956
39957         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
39958         encodings without forgiving before trying any encoding with handler.
39959         (str_iconveha): Try all encodings without forgiving before trying any
39960         encoding with handler.
39961
39962 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39963
39964         Import the following changes from libc.
39965
39966         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39967
39968         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
39969
39970         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39971
39972         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
39973         normal_bracket label.
39974
39975         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
39976
39977         [BZ #361]
39978         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
39979         to normal_bracket after fetching the next character.
39980
39981 2007-01-22  Bruno Haible  <bruno@clisp.org>
39982
39983         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
39984         argument.
39985         * lib/striconveh.c (iconv_carefully_1): New function.
39986         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
39987         argument.
39988         (str_cd_iconveh): Update.
39989         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
39990         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
39991         * tests/test-striconveh.c (MAGIC): New macro.
39992         (new_offsets): New function.
39993         (main): Test call with and without offsets.
39994
39995 2007-01-22  Bruno Haible  <bruno@clisp.org>
39996
39997         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
39998         * modules/sys_select (Makefile.am): Likewise.
39999         * modules/sys_socket (Makefile.am): Likewise.
40000         * modules/sys_time (Makefile.am): Likewise.
40001
40002 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
40003
40004         * modules/gettimeofday (License): Change from GPL to LGPL, since
40005         gettimeofday is a library function.
40006
40007 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40008
40009         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
40010
40011 2007-01-21  Bruno Haible  <bruno@clisp.org>
40012
40013         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
40014
40015 2007-01-21  Bruno Haible  <bruno@clisp.org>
40016
40017         * modules/striconveha: New file.
40018         * lib/striconveha.h: New file.
40019         * lib/striconveha.c: New file.
40020         * MODULES.html.sh (Internationalization functions): Add striconveha.
40021         * lib/striconv.c (str_iconv): Optimize the case of an empty input
40022         string.
40023         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
40024
40025 2007-01-21  Bruno Haible  <bruno@clisp.org>
40026
40027         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
40028         * lib/striconveh.c (str_iconveh): Likewise.
40029
40030 2007-01-21  Bruno Haible  <bruno@clisp.org>
40031
40032         * lib/striconveh.h (mem_iconveh): New declaration.
40033         * lib/striconveh.c (mem_iconveh): New function.
40034         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
40035
40036 2007-01-21  Bruno Haible  <bruno@clisp.org>
40037
40038         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
40039
40040         * lib/striconveh.h (mem_cd_iconveh): Change specification.
40041         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
40042         original result buffer.
40043         (str_cd_iconveh): Update.
40044         * tests/test-striconveh.c (main): Update.
40045
40046         * lib/striconv.h (mem_cd_iconv): Change specification.
40047         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
40048         result buffer.
40049         (str_cd_iconv): Update.
40050         * tests/test-striconv.c (main): Update.
40051
40052 2007-01-21  Bruno Haible  <bruno@clisp.org>
40053
40054         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
40055
40056 2007-01-20  Jim Meyering  <jim@meyering.net>
40057
40058         * lib/userspec.c (parse_with_separator): If a user or group string
40059         starts with "+", skip the corresponding name-to-ID look-up, since
40060         such a look-up must fail: user and group names may not include "+".
40061
40062 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
40063
40064         * lib/poll.c: Include sys/time.h and time.h unconditionally,
40065         since we now assume the sys_time module.
40066         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
40067         check for sys/time.h; no longer needed.
40068         * modules/poll (Depends-on): Depend on sys_time.
40069
40070 2007-01-18  Bruno Haible  <bruno@clisp.org>
40071
40072         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
40073         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40074
40075         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
40076         gettimeofday.
40077
40078         * tests/test-gettimeofday.c: Include <time.h>.
40079         (dummy): Remove variable.
40080
40081         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
40082         gl_HEADER_SYS_TIME_H.
40083         (gl_HEADER_SYS_TIME_H): New macro.
40084
40085         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
40086         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40087         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
40088         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
40089         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40090         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
40091         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
40092         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40093         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
40094         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
40095         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40096
40097         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
40098         last change; it caused a compilation error when cross-compiling to
40099         Cygwin.
40100
40101 2007-01-18  Jim Meyering  <jim@meyering.net>
40102
40103         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
40104         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
40105         than the race-prone "test -d sys || mkdir sys".
40106         (configure.ac): Use AC_PROG_MKDIR_P.
40107         * modules/sys_select: Likewise.
40108         * modules/sys_socket: Likewise.
40109         * modules/sys_time: Likewise.
40110
40111 2007-01-18  Eric Blake  <ebb9@byu.net>
40112
40113         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
40114         replace gettimeofday.
40115         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
40116         name, to avoid infinite recursion.
40117
40118 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
40119
40120         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
40121         module sys_time.
40122         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
40123         assume timespec.h defines struct timeval.
40124         * lib/settime.c: Likewise.
40125         * lib/utimens.c: Likewise.
40126         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
40127         since we now assume the gettimeofday module.
40128         * lib/tempname.c (__gen_tempname): Likewise.
40129         * lib/gettimeofday.h: Remove.
40130         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
40131         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
40132         Include <time.h>, for 'time()'.
40133         (localtime_buffer_addr): Also use this workaround if
40134         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
40135         to simplify the uses.  All uses changed.
40136         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
40137         that #undef is inside {}, and 'const' follows type name consistently.
40138         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
40139         (gettimeofday): Do not use the maximum possible value for
40140         tv->tv_usec, since that might break usages other than ls.c.
40141         Instead, we'll leave ls.c alone.  This undoes today's patch
40142         by Bruno.  Add a compile-time warning for 1s-clock resolution;
40143         we've never observed the problem but might as well keep the
40144         canary.
40145         * lib/nanosleep.c: Include timespec.h first, for interface check.
40146         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
40147         now assume the sys_time module.
40148         * lib/tempname.c: Likewise.
40149         * lib/timespec.h: Likewise.
40150         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
40151         needed.
40152         * lib/strftime.c: Likewise.
40153         * lib/timespec.h: Likewise.
40154         * lib/posixtm.c: Include posixtm.h first, for interface check.
40155         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
40156         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
40157         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
40158         * lib/sys_time_.h: New file.
40159         * lib/timespec.h (struct timespec): Use long int, not long.
40160         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
40161         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
40162         Remove obsolescent call to AC_HEADER_TIME.
40163         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
40164         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40165         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40166         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
40167         Likewise.
40168         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
40169         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
40170         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
40171         into the sys_time module.  Check for gettimeofday just once.
40172         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
40173         for gettimeofday signature to just check the signature.  Merely
40174         compile it, since linking doesn't test signature.  Improve test for
40175         whether gettimeofday.o is actually needed.
40176         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
40177         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
40178         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
40179         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40180         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
40181         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
40182         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
40183         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
40184         than worrying about sys/time.h.
40185         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
40186         Don't bother worrying about TIME_WITH_SYS_TIME.
40187         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
40188         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
40189         * m4/sys_time_h.m4: New file.
40190         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
40191         Don't include sys/time.h.  Return from main rather than exiting.
40192         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
40193         all uses changed.
40194         * modules/gethrxtime (Depends-on): Add sys_time.
40195         * modules/gettime (Depends-on): Likewise.
40196         * modules/gettimeofday (Depends-on): Likewise.
40197         * modules/nanosleep (Depends-on): Likewise.
40198         * modules/settime (Depends-on): Likewise.
40199         * modules/tempname (Depends-on): Likewise.
40200         * modules/utimens (Depends-on): Likewise.
40201         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
40202         (Include:) Change back to <sys/time.h>.
40203         (Maintainer:) Add self.
40204         * modules/sys_time: New file.
40205         * modules/tempname (Depends-on): Add gettimeofday.
40206         * tests/test-gettimeofday.c: Include <sys/time.h>
40207         rather than gettimeofday.h.
40208
40209 2007-01-17  Bruno Haible  <bruno@clisp.org>
40210
40211         * gnulib-tool (func_get_license): Revert last patch. Instead, let
40212         the license default to GPL.
40213         (func_create_testdir): Don't complain if a module is LGPL and its
40214         tests module depends on GPLed modules.
40215
40216 2007-01-17  Bruno Haible  <bruno@clisp.org>
40217
40218         * lib/gettimeofday.c (gettimeofday): Add code for the case
40219         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
40220         maximum possible value for tv->tv_usec, rather than the minimum one.
40221
40222 2005-10-08  Martin Lambers  <marlam@marlam.de>
40223 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
40224 2007-01-16  Bruno Haible  <bruno@clisp.org>
40225
40226         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
40227         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
40228         gl_FUNC_GETTIMEOFDAY.
40229         (Include): Add gettimeofday.h.
40230         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
40231         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
40232         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
40233         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
40234         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
40235         * lib/gettimeofday.h: New file.
40236         * lib/gettimeofday.c: Include <sys/timeb.h>.
40237         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
40238         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40239         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
40240         fall back on time().
40241
40242         * tests/test-gettimeofday.c: New file.
40243         * modules/gettimeofday-tests: New file.
40244
40245 2007-01-16  Eric Blake  <ebb9@byu.net>
40246
40247         * modules/fnmatch (Depends-on): Depend on wchar.
40248         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
40249         * m4/fnmatch.m4: Likewise.
40250         * modules/mbchar (Makefile.am): Assume <wchar.h>.
40251         * m4/mbchar.m4: Likewise.
40252         * modules/mbswidth (Depends-on): Depend on wchar.
40253         * lib/mbswidth.c: Assume <wchar.h>.
40254         * m4/mbswidth.m4: Likewise.
40255         * modules/quotearg (Depends-on): Depend on wchar.
40256         * lib/quotearg.c: Assume <wchar.h>.
40257         * m4/quotearg.m4: Likewise.
40258         * modules/regex (Depends-on): Depend on wchar.
40259         * lib/regex_internal.h: Assume <wchar.h>.
40260         * m4/regex.m4: Likewise.
40261         * modules/stdint (Depends-on): Depend on wchar.
40262         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
40263         * m4/stdint.m4: Likewise.
40264         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
40265         * modules/strftime (Depends-on): Depend on wchar.
40266         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
40267         * modules/strtol (Depends-on): Depend on wchar.
40268         * lib/strtol.c: Assume <wchar.h>.
40269         * modules/wcwidth (Depends-on): Depend on wchar.
40270         * lib/wcwidth.h: Assume <wchar.h>.
40271         * m4/wcwidth.m4: Likewise.
40272
40273 2007-01-16  Bruno Haible  <bruno@clisp.org>
40274
40275         * modules/csharpexec-script: New, created from...
40276         * modules/csharpexec: ... this.
40277
40278 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
40279
40280         * modules/javaexec-script: New, created from...
40281         * modules/javaexec: ... this.
40282
40283 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40284
40285         * modules/poll (Dependencies): Add sys_select.
40286
40287 2007-01-15  Jim Meyering  <jim@meyering.net>
40288
40289         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
40290         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
40291         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
40292         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
40293
40294 2007-01-15  Bruno Haible  <bruno@clisp.org>
40295
40296         * modules/striconveh: New file.
40297         * lib/striconveh.h: New file.
40298         * lib/striconveh.c: New file.
40299         * MODULES.html.sh (Internationalization functions): Add striconveh.
40300
40301         * modules/striconveh-tests: New file.
40302         * tests/test-striconveh.c: New file.
40303
40304 2007-01-15  Bruno Haible  <bruno@clisp.org>
40305
40306         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
40307         not from GNU libiconv or GNU libc.
40308
40309 2007-01-15  Bruno Haible  <bruno@clisp.org>
40310
40311         * doc/gnulib-intro.texi (Copyright): Explain the different license
40312         terms for module descriptions, autoconf macros, tests, documentation.
40313
40314 2007-01-14  Bruno Haible  <bruno@clisp.org>
40315
40316         * modules/striconv-tests: New file.
40317         * tests/test-striconv.c: New file.
40318
40319 2007-01-14  Bruno Haible  <bruno@clisp.org>
40320
40321         * modules/iconv-tests: New file.
40322         * tests/test-iconv.c: New file.
40323
40324 2007-01-14  Bruno Haible  <bruno@clisp.org>
40325
40326         * gnulib-tool (func_get_license): For test modules, use the license of
40327         the main module.
40328
40329 2007-01-14  Bruno Haible  <bruno@clisp.org>
40330
40331         * modules/iconv (Include): Clarify that <iconv.h> can only be included
40332         if iconv is found to exist.
40333
40334 2007-01-14  Bruno Haible  <bruno@clisp.org>
40335
40336         * modules/c-ctype-tests: New file.
40337         * tests/test-c-ctype.c: New file.
40338
40339 2007-01-14  Bruno Haible  <bruno@clisp.org>
40340
40341         * modules/binary-io-tests: New file.
40342         * tests/test-binary-io.sh: New file.
40343         * tests/test-binary-io.c: New file.
40344
40345 2007-01-14  Bruno Haible  <bruno@clisp.org>
40346
40347         * modules/array-oset-tests: New file.
40348         * tests/test-array_oset.c: New file.
40349
40350 2007-01-14  Bruno Haible  <bruno@clisp.org>
40351
40352         * modules/array-list-tests: New file.
40353         * tests/test-array_list.c: New file.
40354
40355 2007-01-14  Bruno Haible  <bruno@clisp.org>
40356
40357         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
40358         and make.
40359         Reported by Simon Josefsson in
40360         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
40361
40362 2007-01-14  Bruno Haible  <bruno@clisp.org>
40363
40364         * modules/allocsa-tests: New file.
40365         * tests/test-allocsa.c: New file.
40366
40367 2007-01-14  Bruno Haible  <bruno@clisp.org>
40368
40369         * modules/fchdir (Depends-on): Add absolute-header.
40370         * modules/unistd (Depends-on): Likewise.
40371
40372 2006-12-30  Bruno Haible  <bruno@clisp.org>
40373
40374         * modules/fchdir: New file.
40375         * modules/unistd (Files): Add lib/unistd_.h.
40376         (Makefile.am): Generate unistd.h from unistd_.h.
40377         * lib/fchdir.c: New file.
40378         * lib/dirent_.h: New file.
40379         * lib/unistd_.h: New file.
40380         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
40381         * m4/fchdir.m4: New file.
40382         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
40383         (gl_HEADER_UNISTD): Invoke it.
40384         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
40385         function.
40386         * lib/backupfile.c (opendir, closedir): Undefine.
40387         * lib/chown.c (open, close): Undefine.
40388         * lib/clean-temp.c (open, close): Undefine.
40389         * lib/copy-file.c (open, close): Undefine.
40390         * lib/execute.c (open, close): Undefine.
40391         * lib/fsusage.c (open, close): Undefine.
40392         * lib/gc-gnulib.c (open, close): Undefine.
40393         * lib/getcwd.c (opendir, closedir): Undefine.
40394         * lib/glob.c (opendir, closedir): Undefine.
40395         * lib/javacomp.c (open, close): Undefine.
40396         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
40397         * lib/openat-proc.c (open, close): Undefine.
40398         * lib/pagealign_alloc.c (open, close): Undefine.
40399         * lib/pipe.c (open, close): Undefine.
40400         * lib/progreloc.c (open, close): Undefine.
40401         * lib/savedir.c (opendir, closedir): Undefine.
40402         * lib/utime.c (open, close): Undefine.
40403         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
40404
40405 2007-01-10  Bruno Haible  <bruno@clisp.org>
40406
40407         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
40408
40409 2007-01-12  Eric Blake  <ebb9@byu.net>
40410
40411         Provide a robust <wchar.h>.  Further simplifications are now
40412         possible in other modules, but not included here.
40413         * modules/wchar: New module.
40414         * m4/wchar.m4: New file.
40415         * lib/wchar_.h: Likewise.
40416         * modules/mbchar (Depends-on): Depend on wchar, as the first use
40417         of the new module.
40418         * MODULES.html.sh (Extended multibyte and wide character utilities):
40419         New section.
40420
40421 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
40422
40423         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
40424         to a reasonable default for memory allocation.
40425         (xreadlink): Don't allocate a huge buffer, to work around a buggy
40426         file system that reports garbage st_size values for symlinks.
40427         Problem reported by Liyang Hu.
40428
40429 2007-01-11  Simon Josefsson  <simon@josefsson.org>
40430
40431         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
40432         Emacs .#* auto-save files).
40433
40434 2007-01-11  Bruno Haible  <bruno@clisp.org>
40435
40436         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
40437         directory.
40438
40439 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
40440
40441         Use @...@ consistently in lib/wctype_.h.
40442         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
40443         on it being set to 1 or 0.
40444         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
40445         go back to AC_SUBSTing it.
40446         * modules/wctype (Makefile.am): Undo previous change.
40447
40448 2007-01-10  Eric Blake  <ebb9@byu.net>
40449
40450         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
40451         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
40452         * modules/wctype (Makefile.am): Likewise.
40453         Reported by Chris McGuire.
40454
40455 2007-01-10  Jim Meyering  <jim@meyering.net>
40456
40457         fts.c: a small readability/maintainability improvement
40458         * lib/fts.c (fts_read): Make this code slightly more readable and
40459         maintainable by hoisting the "sp->fts_cur = p" assignments to
40460         immediately follow the statements that set P.  Derived from
40461         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
40462
40463 2007-01-10  Eric Blake  <ebb9@byu.net>
40464
40465         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
40466         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
40467         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40468         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
40469         Reported by Chris McGuire.
40470
40471 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40472
40473         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
40474         in sed script.
40475
40476 2007-01-09  Bruno Haible  <bruno@clisp.org>
40477
40478         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
40479         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
40480         variables.
40481         (func_module): Use them.
40482
40483 2007-01-09  Bruno Haible  <bruno@clisp.org>
40484
40485         * modules/unistr/base: New file.
40486         * lib/unistr.h: New file.
40487
40488         * modules/unistr/u8-to-u16: New file.
40489         * lib/unistr/u8-to-u16.c: New file.
40490
40491         * modules/unistr/u8-to-u32: New file.
40492         * lib/unistr/u8-to-u32.c: New file.
40493
40494         * modules/unistr/u16-to-u8: New file.
40495         * lib/unistr/u16-to-u8.c: New file.
40496
40497         * modules/unistr/u16-to-u32: New file.
40498         * lib/unistr/u16-to-u32.c: New file.
40499
40500         * modules/unistr/u32-to-u8: New file.
40501         * lib/unistr/u32-to-u8.c: New file.
40502
40503         * modules/unistr/u32-to-u16: New file.
40504         * lib/unistr/u32-to-u16.c: New file.
40505
40506         * modules/unistr/u8-check: New file.
40507         * modules/unistr/u16-check: New file.
40508         * modules/unistr/u32-check: New file.
40509         * lib/unistr/u8-check.c: New file.
40510         * lib/unistr/u16-check.c: New file.
40511         * lib/unistr/u32-check.c: New file.
40512
40513         * modules/unistr/u8-chr: New file.
40514         * modules/unistr/u16-chr: New file.
40515         * modules/unistr/u32-chr: New file.
40516         * lib/unistr/u8-chr.c: New file.
40517         * lib/unistr/u16-chr.c: New file.
40518         * lib/unistr/u32-chr.c: New file.
40519
40520         * modules/unistr/u8-cmp: New file.
40521         * modules/unistr/u16-cmp: New file.
40522         * modules/unistr/u32-cmp: New file.
40523         * lib/unistr/u8-cmp.c: New file.
40524         * lib/unistr/u16-cmp.c: New file.
40525         * lib/unistr/u32-cmp.c: New file.
40526
40527         * modules/unistr/u8-cpy: New file.
40528         * modules/unistr/u16-cpy: New file.
40529         * modules/unistr/u32-cpy: New file.
40530         * lib/unistr/u8-cpy.c: New file.
40531         * lib/unistr/u16-cpy.c: New file.
40532         * lib/unistr/u32-cpy.c: New file.
40533         * lib/unistr/u-cpy.h: New file.
40534
40535         * modules/unistr/u8-cpy-alloc: New file.
40536         * modules/unistr/u16-cpy-alloc: New file.
40537         * modules/unistr/u32-cpy-alloc: New file.
40538         * lib/unistr/u8-cpy-alloc.c: New file.
40539         * lib/unistr/u16-cpy-alloc.c: New file.
40540         * lib/unistr/u32-cpy-alloc.c: New file.
40541         * lib/unistr/u-cpy-alloc.h: New file.
40542
40543         * modules/unistr/u8-endswith: New file.
40544         * modules/unistr/u16-endswith: New file.
40545         * modules/unistr/u32-endswith: New file.
40546         * lib/unistr/u8-endswith.c: New file.
40547         * lib/unistr/u16-endswith.c: New file.
40548         * lib/unistr/u32-endswith.c: New file.
40549         * lib/unistr/u-endswith.h: New file.
40550
40551         * modules/unistr/u8-mblen: New file.
40552         * modules/unistr/u16-mblen: New file.
40553         * modules/unistr/u32-mblen: New file.
40554         * lib/unistr/u8-mblen.c: New file.
40555         * lib/unistr/u16-mblen.c: New file.
40556         * lib/unistr/u32-mblen.c: New file.
40557
40558         * modules/unistr/u8-mbtouc: New file.
40559         * modules/unistr/u16-mbtouc: New file.
40560         * modules/unistr/u32-mbtouc: New file.
40561         * lib/unistr/u8-mbtouc.c: New file.
40562         * lib/unistr/u16-mbtouc.c: New file.
40563         * lib/unistr/u32-mbtouc.c: New file.
40564
40565         * modules/unistr/u8-mbtouc-safe: New file.
40566         * modules/unistr/u16-mbtouc-safe: New file.
40567         * modules/unistr/u32-mbtouc-safe: New file.
40568         * lib/unistr/u8-mbtouc-safe.c: New file.
40569         * lib/unistr/u16-mbtouc-safe.c: New file.
40570         * lib/unistr/u32-mbtouc-safe.c: New file.
40571
40572         * modules/unistr/u8-move: New file.
40573         * modules/unistr/u16-move: New file.
40574         * modules/unistr/u32-move: New file.
40575         * lib/unistr/u8-move.c: New file.
40576         * lib/unistr/u16-move.c: New file.
40577         * lib/unistr/u32-move.c: New file.
40578         * lib/unistr/u-move.h: New file.
40579
40580         * modules/unistr/u8-next: New file.
40581         * modules/unistr/u16-next: New file.
40582         * modules/unistr/u32-next: New file.
40583         * lib/unistr/u8-next.c: New file.
40584         * lib/unistr/u16-next.c: New file.
40585         * lib/unistr/u32-next.c: New file.
40586
40587         * modules/unistr/u8-prev: New file.
40588         * modules/unistr/u16-prev: New file.
40589         * modules/unistr/u32-prev: New file.
40590         * lib/unistr/u8-prev.c: New file.
40591         * lib/unistr/u16-prev.c: New file.
40592         * lib/unistr/u32-prev.c: New file.
40593
40594         * modules/unistr/u8-set: New file.
40595         * modules/unistr/u16-set: New file.
40596         * modules/unistr/u32-set: New file.
40597         * lib/unistr/u8-set.c: New file.
40598         * lib/unistr/u16-set.c: New file.
40599         * lib/unistr/u32-set.c: New file.
40600         * lib/unistr/u-set.h: New file.
40601
40602         * modules/unistr/u8-startswith: New file.
40603         * modules/unistr/u16-startswith: New file.
40604         * modules/unistr/u32-startswith: New file.
40605         * lib/unistr/u8-startswith.c: New file.
40606         * lib/unistr/u16-startswith.c: New file.
40607         * lib/unistr/u32-startswith.c: New file.
40608         * lib/unistr/u-startswith.h: New file.
40609
40610         * modules/unistr/u8-stpcpy: New file.
40611         * modules/unistr/u16-stpcpy: New file.
40612         * modules/unistr/u32-stpcpy: New file.
40613         * lib/unistr/u8-stpcpy.c: New file.
40614         * lib/unistr/u16-stpcpy.c: New file.
40615         * lib/unistr/u32-stpcpy.c: New file.
40616         * lib/unistr/u-stpcpy.h: New file.
40617
40618         * modules/unistr/u8-stpncpy: New file.
40619         * modules/unistr/u16-stpncpy: New file.
40620         * modules/unistr/u32-stpncpy: New file.
40621         * lib/unistr/u8-stpncpy.c: New file.
40622         * lib/unistr/u16-stpncpy.c: New file.
40623         * lib/unistr/u32-stpncpy.c: New file.
40624         * lib/unistr/u-stpncpy.h: New file.
40625
40626         * modules/unistr/u8-strcat: New file.
40627         * modules/unistr/u16-strcat: New file.
40628         * modules/unistr/u32-strcat: New file.
40629         * lib/unistr/u8-strcat.c: New file.
40630         * lib/unistr/u16-strcat.c: New file.
40631         * lib/unistr/u32-strcat.c: New file.
40632         * lib/unistr/u-strcat.h: New file.
40633
40634         * modules/unistr/u8-strchr: New file.
40635         * modules/unistr/u16-strchr: New file.
40636         * modules/unistr/u32-strchr: New file.
40637         * lib/unistr/u8-strchr.c: New file.
40638         * lib/unistr/u16-strchr.c: New file.
40639         * lib/unistr/u32-strchr.c: New file.
40640
40641         * modules/unistr/u8-strcmp: New file.
40642         * modules/unistr/u16-strcmp: New file.
40643         * modules/unistr/u32-strcmp: New file.
40644         * lib/unistr/u8-strcmp.c: New file.
40645         * lib/unistr/u16-strcmp.c: New file.
40646         * lib/unistr/u32-strcmp.c: New file.
40647
40648         * modules/unistr/u8-strcpy: New file.
40649         * modules/unistr/u16-strcpy: New file.
40650         * modules/unistr/u32-strcpy: New file.
40651         * lib/unistr/u8-strcpy.c: New file.
40652         * lib/unistr/u16-strcpy.c: New file.
40653         * lib/unistr/u32-strcpy.c: New file.
40654         * lib/unistr/u-strcpy.h: New file.
40655
40656         * modules/unistr/u8-strcspn: New file.
40657         * modules/unistr/u16-strcspn: New file.
40658         * modules/unistr/u32-strcspn: New file.
40659         * lib/unistr/u8-strcspn.c: New file.
40660         * lib/unistr/u16-strcspn.c: New file.
40661         * lib/unistr/u32-strcspn.c: New file.
40662         * lib/unistr/u-strcspn.h: New file.
40663
40664         * modules/unistr/u8-strdup: New file.
40665         * modules/unistr/u16-strdup: New file.
40666         * modules/unistr/u32-strdup: New file.
40667         * lib/unistr/u8-strdup.c: New file.
40668         * lib/unistr/u16-strdup.c: New file.
40669         * lib/unistr/u32-strdup.c: New file.
40670         * lib/unistr/u-strdup.h: New file.
40671
40672         * modules/unistr/u8-strlen: New file.
40673         * modules/unistr/u16-strlen: New file.
40674         * modules/unistr/u32-strlen: New file.
40675         * lib/unistr/u8-strlen.c: New file.
40676         * lib/unistr/u16-strlen.c: New file.
40677         * lib/unistr/u32-strlen.c: New file.
40678         * lib/unistr/u-strlen.h: New file.
40679
40680         * modules/unistr/u8-strmblen: New file.
40681         * modules/unistr/u16-strmblen: New file.
40682         * modules/unistr/u32-strmblen: New file.
40683         * lib/unistr/u8-strmblen.c: New file.
40684         * lib/unistr/u16-strmblen.c: New file.
40685         * lib/unistr/u32-strmblen.c: New file.
40686
40687         * modules/unistr/u8-strmbtouc: New file.
40688         * modules/unistr/u16-strmbtouc: New file.
40689         * modules/unistr/u32-strmbtouc: New file.
40690         * lib/unistr/u8-strmbtouc.c: New file.
40691         * lib/unistr/u16-strmbtouc.c: New file.
40692         * lib/unistr/u32-strmbtouc.c: New file.
40693
40694         * modules/unistr/u8-strncat: New file.
40695         * modules/unistr/u16-strncat: New file.
40696         * modules/unistr/u32-strncat: New file.
40697         * lib/unistr/u8-strncat.c: New file.
40698         * lib/unistr/u16-strncat.c: New file.
40699         * lib/unistr/u32-strncat.c: New file.
40700         * lib/unistr/u-strncat.h: New file.
40701
40702         * modules/unistr/u8-strncmp: New file.
40703         * modules/unistr/u16-strncmp: New file.
40704         * modules/unistr/u32-strncmp: New file.
40705         * lib/unistr/u8-strncmp.c: New file.
40706         * lib/unistr/u16-strncmp.c: New file.
40707         * lib/unistr/u32-strncmp.c: New file.
40708
40709         * modules/unistr/u8-strncpy: New file.
40710         * modules/unistr/u16-strncpy: New file.
40711         * modules/unistr/u32-strncpy: New file.
40712         * lib/unistr/u8-strncpy.c: New file.
40713         * lib/unistr/u16-strncpy.c: New file.
40714         * lib/unistr/u32-strncpy.c: New file.
40715         * lib/unistr/u-strncpy.h: New file.
40716
40717         * modules/unistr/u8-strnlen: New file.
40718         * modules/unistr/u16-strnlen: New file.
40719         * modules/unistr/u32-strnlen: New file.
40720         * lib/unistr/u8-strnlen.c: New file.
40721         * lib/unistr/u16-strnlen.c: New file.
40722         * lib/unistr/u32-strnlen.c: New file.
40723         * lib/unistr/u-strnlen.h: New file.
40724
40725         * modules/unistr/u8-strpbrk: New file.
40726         * modules/unistr/u16-strpbrk: New file.
40727         * modules/unistr/u32-strpbrk: New file.
40728         * lib/unistr/u8-strpbrk.c: New file.
40729         * lib/unistr/u16-strpbrk.c: New file.
40730         * lib/unistr/u32-strpbrk.c: New file.
40731         * lib/unistr/u-strpbrk.h: New file.
40732
40733         * modules/unistr/u8-strrchr: New file.
40734         * modules/unistr/u16-strrchr: New file.
40735         * modules/unistr/u32-strrchr: New file.
40736         * lib/unistr/u8-strrchr.c: New file.
40737         * lib/unistr/u16-strrchr.c: New file.
40738         * lib/unistr/u32-strrchr.c: New file.
40739
40740         * modules/unistr/u8-strspn: New file.
40741         * modules/unistr/u16-strspn: New file.
40742         * modules/unistr/u32-strspn: New file.
40743         * lib/unistr/u8-strspn.c: New file.
40744         * lib/unistr/u16-strspn.c: New file.
40745         * lib/unistr/u32-strspn.c: New file.
40746         * lib/unistr/u-strspn.h: New file.
40747
40748         * modules/unistr/u8-strstr: New file.
40749         * modules/unistr/u16-strstr: New file.
40750         * modules/unistr/u32-strstr: New file.
40751         * lib/unistr/u8-strstr.c: New file.
40752         * lib/unistr/u16-strstr.c: New file.
40753         * lib/unistr/u32-strstr.c: New file.
40754         * lib/unistr/u-strstr.h: New file.
40755
40756         * modules/unistr/u8-strtok: New file.
40757         * modules/unistr/u16-strtok: New file.
40758         * modules/unistr/u32-strtok: New file.
40759         * lib/unistr/u8-strtok.c: New file.
40760         * lib/unistr/u16-strtok.c: New file.
40761         * lib/unistr/u32-strtok.c: New file.
40762         * lib/unistr/u-strtok.h: New file.
40763
40764         * modules/unistr/u8-uctomb: New file.
40765         * modules/unistr/u16-uctomb: New file.
40766         * modules/unistr/u32-uctomb: New file.
40767         * lib/unistr/u8-uctomb.c: New file.
40768         * lib/unistr/u16-uctomb.c: New file.
40769         * lib/unistr/u32-uctomb.c: New file.
40770
40771         * MODULES.html.sh (Unicode string functions): Add the new modules.
40772
40773 2007-01-08  Bruno Haible  <bruno@clisp.org>
40774
40775         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
40776         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
40777         subdirectories.
40778
40779 2007-01-08  Karl Berry  <karl@gnu.org>
40780
40781         * doc/error.texi: mention that main() fns must set program_name
40782         when progname is used.
40783
40784 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
40785
40786         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
40787         WCTYPE_H is empty, for the benefit of builds from non-distclean
40788         directories.  Problem reported by Eric Blake in
40789         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
40790
40791 2007-01-08  Bruno Haible  <bruno@clisp.org>
40792
40793         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
40794         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
40795         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
40796         PROVIDE_CANONICALIZE_FILENAME_MODE.
40797         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
40798
40799 2007-01-08  Bruno Haible  <bruno@clisp.org>
40800
40801         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
40802         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
40803         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
40804         * lib/fts.c: Likewise.
40805         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
40806
40807 2006-12-25  Bruno Haible  <bruno@clisp.org>
40808
40809         * modules/utf8-ucs4-safe: New file.
40810         * lib/utf8-ucs4-safe.h: New file.
40811         * lib/unistr/utf8-ucs4-safe.c: New file.
40812
40813         * modules/utf16-ucs4-safe: New file.
40814         * lib/utf16-ucs4-safe.h: New file.
40815         * lib/unistr/utf16-ucs4-safe.c: New file.
40816
40817         * MODULES.html.sh (Unicode string functions): Add the new modules.
40818
40819 2007-01-08  Bruno Haible  <bruno@clisp.org>
40820
40821         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
40822         (Depends-on): Add unitypes.
40823         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40824         (u8_mbtouc_aux): Move out to separate file.
40825         (u8_mbtouc): Use ucs4_t, uint8_t types.
40826         * lib/unistr/utf8-ucs4.c: New file.
40827
40828         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
40829         (Depends-on): Add unitypes.
40830         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40831         (u16_mbtouc_aux): Move out to separate file.
40832         (u16_mbtouc): Use ucs4_t, uint16_t types.
40833         * lib/unistr/utf16-ucs4.c: New file.
40834
40835         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
40836         (Depends-on): Add unitypes.
40837         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
40838         (u8_uctomb_aux): Move out to separate file.
40839         (u8_uctomb): Use ucs4_t, uint8_t types.
40840         * lib/unistr/ucs4-utf8.c: New file.
40841
40842         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
40843         (Depends-on): Add unitypes.
40844         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
40845         (u16_uctomb_aux): Move out to separate file.
40846         (u16_uctomb): Use ucs4_t, uint16_t types.
40847         * lib/unistr/ucs4-utf16.c: New file.
40848
40849 2006-12-25  Bruno Haible  <bruno@clisp.org>
40850
40851         * modules/unitypes: New file.
40852         * lib/unitypes.h: New file.
40853         * MODULES.html.sh (func_all_modules): New section "Unicode string
40854         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
40855         this section. Add unitypes.
40856
40857 2007-01-08  Bruno Haible  <bruno@clisp.org>
40858
40859         Avoid variable names that conflict with those from libtool.
40860         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
40861         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
40862         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
40863         library_names_spec to acl_library_names_spec, hardcode_* to
40864         acl_hardcode_*.
40865         Reported by Ralf Wildenhues.
40866
40867 2007-01-08  Bruno Haible  <bruno@clisp.org>
40868
40869         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
40870         definition.
40871         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
40872         definition.
40873         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
40874         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
40875         definition.
40876         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
40877         definition.
40878         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
40879         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
40880         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
40881         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
40882         definition.
40883         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
40884         definition.
40885         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
40886         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
40887         GC_USE_<algorithm>.
40888         * lib/gc-libgcrypt.c: Likewise.
40889         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
40890         * modules/gc-arctwo (configure.ac): Likewise.
40891         * modules/gc-des (configure.ac): Likewise.
40892         * modules/gc-hmac-md5 (configure.ac): Likewise.
40893         * modules/gc-hmac-sha1 (configure.ac): Likewise.
40894         * modules/gc-md2 (configure.ac): Likewise.
40895         * modules/gc-md4 (configure.ac): Likewise.
40896         * modules/gc-md5 (configure.ac): Likewise.
40897         * modules/gc-random (configure.ac): Likewise.
40898         * modules/gc-rijndael (configure.ac): Likewise.
40899         * modules/gc-sha1 (configure.ac): Likewise.
40900
40901 2007-01-08  Bruno Haible  <bruno@clisp.org>
40902
40903         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
40904         macro definition.
40905         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
40906         definition.
40907         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
40908         definition.
40909         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
40910         * modules/fcntl-safer (configure.ac): Likewise.
40911         * modules/fopen-safer (configure.ac): Likewise.
40912         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
40913         GNULIB_FWRITEERROR macro definition.
40914
40915 2007-01-08  Bruno Haible  <bruno@clisp.org>
40916
40917         * m4/gnulib-common.m4: New file.
40918         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
40919         (func_get_filelist): Add m4/gnulib-common.m4.
40920
40921 2007-01-08  Bruno Haible  <bruno@clisp.org>
40922
40923         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
40924         command.
40925
40926 2007-01-08  Jim Meyering  <jim@meyering.net>
40927
40928         Use a more robust test for a "can't happen" condition.
40929         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
40930         narrowed the st_size value.  Presuming the "can't happen" condition
40931         is true, that narrowing could conceivably convert an invalid st_size
40932         value into a valid one.  Instead, use a change based on Matthew
40933         Woehlke's original patch.
40934
40935         Slight readability improvement: use an assert-like macro
40936         in place of literal "abort ()" uses.
40937         * lib/fts.c (fts_assert): Define.
40938         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
40939         Use this macro instead of a bare 'abort'.
40940
40941 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
40942
40943         Don't worry about using IRIX 5.3's wctype.h broken definitions;
40944         simply work around them.
40945         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
40946         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
40947         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
40948         declaring.
40949         Don't bother to define as macros, since the standard doesn't require it.
40950         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
40951         longer worry about IRIX 5.3.
40952         (HAVE_WCTYPE_CTMP_BUG): Remove.
40953
40954 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40955
40956         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
40957         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
40958         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
40959         Problems reported by Georg Schwarz for IRIX 5.3.
40960
40961         * gnulib-tool (autoconf_minversion): Take the maximum version number
40962         found, not the minimum.  Problem reported by James Youngman.
40963
40964 2007-01-03  Karl Berry  <karl@gnu.org>
40965
40966         * doc/error.texi: new file, explaining interaction with progname.
40967         * doc/gnulib.texi: include it.  Update copyright.
40968
40969 2007-01-03  Simon Josefsson  <simon@josefsson.org>
40970
40971         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
40972         AC_CANONICAL_HOST, to improve autobuild outputs.
40973
40974 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
40975             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40976
40977         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
40978         sockets, server sockets, and other file descriptors.  Count errors
40979         to compute the return value.  Reorder the code a bit to be easier
40980         to follow.  Don't set event bits that were not requested (except
40981         POLLERR and POLLHUP).
40982
40983 2007-01-01  Bruno Haible  <bruno@clisp.org>
40984
40985         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
40986
40987 2007-01-03  Jim Meyering  <jim@meyering.net>
40988
40989         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
40990
40991 2007-01-02  Bruno Haible  <bruno@clisp.org>
40992
40993         * modules/settime (Include): Require timespec.h.
40994         * modules/nanosleep (Include): Likewise.
40995
40996 2007-01-01  Bruno Haible  <bruno@clisp.org>
40997
40998         * gnulib-tool (func_emit_copyright_notice): Bump year.
40999         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
41000
41001 2007-01-01  Bruno Haible  <bruno@clisp.org>
41002
41003         Improve support for OpenBSD.
41004         * build-aux/config.rpath (libname_spec): Export.
41005         (library_names_spec): New variable. Export.
41006         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
41007         library_names_spec from the config.rpath output. Locate shared library
41008         through the name pattern in library_names_spec.
41009
41010 2007-01-01  Eric Blake  <ebb9@byu.net>
41011
41012         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
41013
41014 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
41015
41016         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
41017         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
41018         assume the C locale, and avoid an "eval" that could cause trouble.
41019         Problem with SORT reported by Bob Proulx.
41020
41021         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
41022         Define.  Trivial patch from Henning Nielsen Lund, originally
41023         sent to bug-grep@gnu.org today.
41024
41025 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
41026
41027         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
41028         struct stat.  Problem reported by Henning Nielsen Lund.
41029         * lib/acl.c: Include acl.h first, to check interface.  Don't
41030         bother to include sys/types.h and sys/stat.h again.
41031
41032 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
41033
41034         Import the following change from libc; problem reported by
41035         Sven Verdoolaege.
41036
41037         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
41038
41039         [BZ #1373]
41040         * lib/argp.h: Remove __NTH for __argp_usage inline function.
41041
41042 2006-12-28  Jim Meyering  <jim@meyering.net>
41043
41044         * build-aux/announce-gen: Do not assume that the package
41045         builds any of tar.gz, tar.bz2, and .xdelta files.
41046         Suggestion from Simon Josefsson.
41047
41048 2006-12-28  Simon Josefsson  <simon@josefsson.org>
41049
41050         * modules/announce-gen: New file.
41051
41052 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
41053
41054         * lib/mbchar.h: Just include <wctype.h>; the wctype module
41055         handles its gotchas now.
41056         * lib/mbswidth.c: Likewise.
41057         * lib/wcwidth.h: Likewise.
41058         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
41059         and iswcntrl; the wctype module does this stuff now.
41060         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
41061         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
41062         * modules/mbchar (Depends-on): Add wctype.
41063         * modules/mbswidth (Depends-on): Likewise.
41064         * modules/wcwidth (Depends-on): Likewise.
41065
41066 2006-12-27  Eric Blake  <ebb9@byu.net>
41067
41068         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
41069         module uses more than what <wctype.h> is required to provide.
41070
41071 2006-12-26  Eric Blake  <ebb9@byu.net>
41072
41073         * gnulib-tool (sed_extract_prog): Avoid space-tab.
41074
41075 2006-12-26  Eric Blake  <ebb9@byu.net>
41076
41077         * modules/absolute-header: New module.
41078         * modules/fcntl (Depends-on): Depend on it.
41079         * modules/inttypes (Depends-on): Likewise.
41080         * modules/stdint (Depends-on): Likewise.
41081         * modules/sys_stat (Depends-on): Likewise.
41082         * modules/wctype (Depends-on): Likewise.
41083         * MODULES.html.sh (Support for building libraries and
41084         executables): Document it.
41085
41086 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
41087
41088         * gnulib-tool (SED): Remove, undoing previous change.
41089         The problem was that it broke coreutils on Solaris, because
41090         "sed --posix" leaked into a makefile.
41091         (sed): New alias, if 'alias' and GNU sed.
41092
41093 2006-12-24  Jim Meyering  <jim@meyering.net>
41094
41095         Work around an fchownat bug in glibc-2.4:
41096         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
41097         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
41098         in spite of the -P option.
41099         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
41100         New macros.
41101         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
41102         * modules/openat (Files): Add lib/fchownat.c.
41103         * lib/openat.c (fchownat): Don't define here.  Move to...
41104         * lib/fchownat.c: ...this new file.
41105
41106 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41107
41108         Fix bug reported by Bruno Haible in
41109         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
41110         where quotearg.c didn't compile on Mac OS X 10.2 because it
41111         lacks <wchar.h> and wint_t.
41112         * lib/wctype_.h (__wctype_wint_t): New type.
41113         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
41114         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
41115         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
41116         Arg is now of type __wctype_wint_t, not wint_t.
41117         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
41118         substitute HAVE_WINT_T.
41119         * modules/wctype (Files): Add m4/wint_t.m4.
41120         (wctype.h): Substitute HAVE_WINT_T.
41121
41122 2006-12-23  Bruno Haible  <bruno@clisp.org>
41123
41124         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
41125
41126 2006-12-23  Bruno Haible  <bruno@clisp.org>
41127
41128         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
41129         S_ISLNK.
41130         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
41131         mingw.
41132
41133 2006-12-22  Bruno Haible  <bruno@clisp.org>
41134
41135         * lib/copy-file.c: Include acl.h.
41136         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
41137         Close the file descriptors only after being done with copy_acl.
41138         * modules/copy-file (Depends-on): Add acl.
41139
41140 2006-12-22  Bruno Haible  <bruno@clisp.org>
41141
41142         * gnulib-tool (SED): New variable.
41143         Use $SED instead of sed everywhere.
41144
41145 2006-12-22  Bruno Haible  <bruno@clisp.org>
41146
41147         * modules/no-c++: New file.
41148         * m4/no-c++.m4: New file.
41149         * MODULES.html.sh (Support for building libraries and executables):
41150         Add no-c++.
41151
41152 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
41153
41154         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
41155         Include <limits.h>, and use its INT_MAX to rewrite the
41156         j loop so that it does not overflow 'int'.  Problem reported by
41157         Ralf Wildenhues in
41158         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
41159         Play it safe by shifting left by 1 rather than multiplying by 2,
41160         as GCC is less likely to optimize this away when the value
41161         is signed (when it assumes overflow leads to undefined behavior).
41162         Also, don't assume time_t uses two's complement.
41163
41164 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
41165
41166         * MODULES.html.sh: New module wctype.
41167         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
41168         * lib/fnmatch.c: Don't bother to include <wchar.h> before
41169         <wctype.h>, since the new wctype module should fix this.
41170         * lib/quotearg.c: Include <wctype.h> unconditionally, since
41171         the wctype module should arrange for it.
41172         * lib/regex_internal.h: Likewise.
41173         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
41174         since the wctype module should handle this now.
41175         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
41176         * modules/fnmatch (Depends-on): Add wctype.
41177         * modules/quotearg (Depends-on): Likewise.
41178         * modules/regex (Depends-on): Likewise.
41179
41180 2006-12-19  Bruno Haible  <bruno@clisp.org>
41181
41182         * lib/strdup.h [C++]: Wrap definitions in extern "C".
41183         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
41184
41185 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41186
41187         * modules/savewd (Depends-on): Fix dependency on fcntl.
41188
41189 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41190
41191         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
41192         conforms to C99, rather than relying on the user's environment
41193         setting of STDINT_H.
41194
41195 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41196         and Eric Blake  <ebb9@byu.net>
41197
41198         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
41199         This is more consistent with the other defines here.
41200         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
41201         Port to z/OS.  Problem reported by Paul Gilmartin.
41202         Change local vars to use gl_ prefix rather than ac_.
41203         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
41204         with other defines.
41205         * modules/double-slash-root: New module.
41206         * modules/dirname (Files): Remove m4/double-slash-root.m4.
41207         (Depends-on): Add double-slash-root.
41208         * MODULES.html.sh (File system functions): Mention new module.
41209
41210 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
41211
41212         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
41213         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
41214         This is for the benefit of gzip, which doesn't do i18n.
41215
41216 2006-12-12  Jim Meyering  <jim@meyering.net>
41217
41218         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
41219         Reported by Andreas Schwab <schwab@suse.de>.
41220
41221 2006-12-12  Bruno Haible  <bruno@clisp.org>
41222
41223         Merge these changes.
41224         2006-09-05  Bruno Haible  <bruno@clisp.org>
41225         * lib/iconvme.c (iconv_string): No need to save and restore errno when
41226         iconv_alloc succeeded.
41227         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
41228         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
41229         test for " && dest " at the end - dest is always != NULL there. Call
41230         iconv with 4xNULL arguments initially, to reset the state. Call iconv
41231         with 2xNULL arguments, also to flush the state storage. Handle the
41232         IRIX iconv behaviour. Realloc the final result, to throw away unused
41233         memory.
41234
41235 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
41236
41237         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
41238         and fchmodat unconditionally, since glibc 2.4 has them.
41239         Problem reported by Arkadiusz Miskiewicz.
41240
41241 2006-12-10  Bruno Haible  <bruno@clisp.org>
41242
41243         * gnulib-tool (func_import): Show the include files only for those
41244         modules that are copied and specified.
41245         Reported by Karl Berry.
41246
41247 2006-12-08  Jim Meyering  <jim@meyering.net>
41248
41249         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
41250         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
41251
41252         * build-aux/announce-gen: Add two new options, both optional:
41253         --bootstrap-tools=TOOL_LIST
41254               a comma-separated list of tools, e.g.,
41255               autoconf,automake,bison,gnulib
41256         --gnulib-snapshot-date=DATE
41257               if gnulib is in the bootstrap tool list,
41258               then report this as the snapshot date.
41259               If not specified, use the current date/time.
41260               If you specify a date here, be sure it's UTC.
41261
41262 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41263
41264         * tests/test-argp-2.sh: Fix test to match actual output.
41265         (func_compare): Fix sed script to be portable.
41266
41267 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
41268
41269         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
41270         workaround for this case.  It is not autoconfigured now; offhand
41271         it's hard to see how to autoconfigure it.
41272
41273 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
41274
41275         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
41276         a directory that is about to be chowned.  Such a directory's
41277         initial file permissions should permit the owner only and this
41278         should not be changed until after the chown, since the group and
41279         other bits would be incorrect if they granted permission before
41280         the chown.
41281
41282         Fix porting problem for iswctype reported by Georg Schwarz in:
41283         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
41284         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
41285         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
41286         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
41287         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
41288
41289 2006-12-03  Jim Meyering  <jim@meyering.net>
41290
41291         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
41292         p->fts_statp may not yet be defined.
41293         (fts_read): Instead, set it in the caller, once p->fts_statp is
41294         sure to be defined, and corresponds to a top-level directory.
41295         This bug made du -x fail.  Here's the coreutils test case:
41296         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
41297         Reported by Mike Frysinger.
41298
41299 2006-12-01  Jim Meyering  <jim@meyering.net>
41300
41301         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
41302         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
41303         Reported by Simon Josefsson.
41304
41305 2006-11-30  Jim Meyering  <jim@meyering.net>
41306
41307         * m4/warning.m4: Use the all-permissive copyright notice
41308         recommended by RMS (rather than LGPL).
41309         * m4/vararrays.m4: Likewise.
41310         * m4/flexmember.m4: Likewise.
41311
41312 2006-11-29  Bruno Haible  <bruno@clisp.org>
41313
41314         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41315         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
41316         using +=.
41317         Reported by Simon Josefsson <simon@josefsson.org>.
41318
41319 2006-11-28  James Youngman <jay@gnu.org>
41320
41321         * README: Advise users that they might find the bug-gnulib@gnu.org
41322         and autotools-announce@gnu.org mailing lists useful.
41323
41324 2006-11-28  Bruno Haible  <bruno@clisp.org>
41325
41326         * m4/ptrdiff_max.m4: Remove file.
41327
41328 2006-11-21  Bruno Haible  <bruno@clisp.org>
41329
41330         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
41331         _AC_COMPUTE_INT.
41332         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41333         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
41334         _AC_COMPUTE_INT.
41335         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41336         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
41337         _AC_COMPUTE_INT.
41338         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41339
41340 2006-11-28  Jim Meyering  <jim@meyering.net>
41341
41342         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
41343         warning from "gcc -Wshadow" about shadowing the builtin.
41344
41345 2006-11-27  Bruno Haible  <bruno@clisp.org>
41346
41347         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
41348         _AC_COMPUTE_INT.
41349         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41350
41351 2006-11-27  Bruno Haible  <bruno@clisp.org>
41352             Paul Eggert  <eggert@cs.ucla.edu>
41353
41354         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
41355
41356 2006-11-26  Bruno Haible  <bruno@clisp.org>
41357
41358         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41359         noinst_LTLIBRARIES.
41360
41361 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
41362             Bruno Haible  <bruno@clisp.org>
41363
41364         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
41365         if compiling with "gcc -ansi".
41366
41367 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
41368
41369         Fix some incompatibilities with gcc -ansi -pedantic.
41370         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
41371         if compiling pedantically with GCC, unless it's C99 or later.
41372         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
41373         it mishandles gcc -ansi -pedantic as well.
41374         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
41375         if gcc -pedantic.
41376         * lib/regexec.c (check_node_accept_bytes): Don't use auto
41377         initializers for struct if -pedantic, unless it's C99 or later.
41378
41379 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
41380
41381         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
41382         Don't close an fd more than once. Identical atimes indicate
41383         success, not failure.
41384
41385 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
41386
41387         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
41388
41389 2006-11-23  Jim Meyering  <jim@meyering.net>
41390
41391         * build-aux/announce-gen: New file.  From coreutils.
41392
41393 2006-11-22  Jim Meyering  <jim@meyering.net>
41394
41395         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
41396         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
41397         (fts_read): Use a temporary to narrow the overused st_size member
41398         before using it in a switch statement.  Reported by Matthew Woehlke.
41399
41400         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
41401         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
41402
41403 2006-11-20  Bruno Haible  <bruno@clisp.org>
41404
41405         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
41406         changequote instead of pairs of brackets.
41407         Reported by Andreas Schwab <schwab@suse.de>.
41408
41409 2006-11-21  Jim Meyering  <jim@meyering.net>
41410
41411         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
41412         so as to remain compatible with older compilers.
41413         Patch from Michael Deutschmann.
41414
41415 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41416
41417         * MODULES.html.sh (File system functions): Add openat.
41418
41419         * lib/openat.h (rpl_fstatat): New macro, if
41420         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
41421         (fstatat): Define to rpl_fstatat under the same conditions,
41422         unless COMPILING_FSTATAT.
41423         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
41424         seems to have the bug.
41425         * lib/fstatat.c: New file.
41426         * modules/openat (Files): Add it.
41427
41428 2006-11-20  Bruno Haible  <bruno@clisp.org>
41429
41430         * Makefile: New file.
41431
41432 2006-11-20  Jim Meyering  <jim@meyering.net>
41433
41434         The beginnings of syntax-related checks for gnulib.
41435         * lib/Makefile: New file.
41436         * lib/t-idcache: New script.  Ensure that the two halves of
41437         idcache.c stay in sync.
41438
41439         * lib/idcache.c: Adjust comments in user- and group- portions to
41440         be more accurate, and to be consistent with one another.
41441
41442 2006-11-20  Jim Meyering  <jim@meyering.net>
41443
41444         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
41445         continue using the flexible array member (thus, this module performs
41446         half as many malloc calls), with the addition that...
41447         (getgroup, getuser): Consistently record a non-match via an empty
41448         "name" string, and map an empty string match to a NULL return value.
41449         * modules/idcache (Depends-on): Re-add flexmember.
41450
41451         * lib/idcache.c (getuser): Remove all uses of the register keyword.
41452         (getuidbyname, getgroup, getgidbyname): Likewise.
41453
41454         Use cleaner syntax: NULL rather than 0.
41455         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
41456
41457 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41458
41459         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
41460         It mishandled the case where the group was missing.
41461         Problem reported by Greg Schafer.
41462         * modules/idcache: Likewise.
41463
41464 2006-11-18  Jim Meyering  <jim@meyering.net>
41465
41466         * check-module (%exempt_header): Add exception for some
41467         conditionally-included headers.
41468
41469         * modules/i-ring (Depends-on): Add verify.
41470         (License): Change to LGPL.
41471
41472 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41473
41474         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
41475         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
41476         and inttostr.h.  Use snprintf rather than uinttostr, so that
41477         LGPLed code doesn't depend on GPLed.
41478
41479 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41480
41481         * modules/inline (License): Change from GPL to LGPL.
41482
41483 2006-11-17  Jim Meyering  <jim@meyering.net>
41484
41485         * modules/d-type (License): Switch to LGPL.
41486
41487 2006-11-15  Bruno Haible  <bruno@clisp.org>
41488
41489         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
41490
41491 2006-11-15  Eric Blake  <ebb9@byu.net>
41492
41493         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
41494         the module dependency.
41495
41496 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41497             Bruno Haible  <bruno@clisp.org>
41498
41499         * gnulib-tool (func_create_testdir): Add license consistency check.
41500
41501 2006-11-15  Eric Blake  <ebb9@byu.net>
41502
41503         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
41504         random "(cached)" in configure output.
41505
41506 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41507
41508         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
41509         test for conforming inttypes.h is both announced and cached.
41510
41511         * MODULES.html.sh (seen_modules, seen_files): New variables.
41512         (func_module): Rewrite to use a few less gnulib-tool and sed
41513         invocations.  Avoid a couple of quadratic algorithms for ...
41514         (missed_modules, missed_files): ... these, with ...
41515         (func_append, func_tmpdir): ... these new functions, from
41516         gnulib-tool.  Analogously, install traps for cleanup.
41517
41518         * tests/test-gc.c (main): Remove unused variables.
41519         * tests/test-read-file.c: Include stdlib.h, for 'free'.
41520
41521 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
41522
41523         * modules/inttostr (License): Change to LGPL.
41524
41525 2006-11-14  Eric Blake  <ebb9@byu.net>
41526
41527         * modules/tempname (License): Change to LGPL.
41528
41529 2006-11-14  Eric Blake  <ebb9@byu.net>
41530
41531         * doc/functions.texi (Function Portability): *printf functions on
41532         Cygwin now understand all POSIX size specifiers.
41533
41534 2006-11-14  Bruno Haible  <bruno@clisp.org>
41535
41536         * modules/c-ctype (License): Change to LGPL.
41537
41538 2006-11-12  Bruno Haible  <bruno@clisp.org>
41539
41540         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
41541         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
41542         for GNOME libraries, for which the include files are installed in
41543         subdirectories of $prefix/include.
41544
41545 2006-11-12  Bruno Haible  <bruno@clisp.org>
41546
41547         * m4/lib-link.m4: Require at least autoconf-2.54.
41548         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
41549         name to underscores for the --with option.
41550
41551 2006-11-13  Bruno Haible  <bruno@clisp.org>
41552
41553         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
41554         the tests directory.
41555         Reported by Ralf Wildenhues.
41556
41557 2006-11-13  Bruno Haible  <bruno@clisp.org>
41558
41559         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
41560         (func_emit_initmacro_end): Undo the override here.
41561         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
41562         Works around the famous automake error in coreutils.
41563
41564 2006-11-13  Eric Blake  <ebb9@byu.net>
41565
41566         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
41567         element, not its node.
41568
41569 2006-11-12  Bruno Haible  <bruno@clisp.org>
41570
41571         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
41572         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
41573
41574 2006-11-12  Bruno Haible  <bruno@clisp.org>
41575
41576         * gnulib-tool: New option --local-symlink.
41577         (func_usage): Document it.
41578         (lsymbolic): New variable.
41579         (func_import, func_create_testdir): If --symlink was not specified,
41580         test whether --local-symlink was specified and the file comes from
41581         the local_gnulib_dir.
41582
41583 2006-11-12  Bruno Haible  <bruno@clisp.org>
41584
41585         * gnulib-tool (func_ln): New function.
41586         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
41587
41588 2006-11-12  Bruno Haible  <bruno@clisp.org>
41589
41590         Finish support for source files in subdirectories.
41591         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
41592         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
41593         AUTOMAKE_OPTIONS.
41594         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
41595
41596 2006-11-12  Bruno Haible  <bruno@clisp.org>
41597
41598         * gnulib-tool (func_get_automake_snippet): Synthesize also an
41599         EXTRA_lib_SOURCES augmentation.
41600         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
41601
41602 2006-11-12  Jim Meyering  <jim@meyering.net>
41603
41604         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
41605         file descriptors.  This also averts a failure on systems with
41606         native openat support when a traversed directory lacks "x" access.
41607         * lib/fts_.h: Include "i-ring.h"
41608         (struct FTS) [fts_fd_ring]: New member.
41609         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
41610         (FCHDIR): Add parentheses.
41611         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
41612         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
41613         When descending, rather than simply closing the previous
41614         fts_cwd_fd value, push that file descriptor onto the ring.
41615         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
41616         (fts_open): Initialize the new fd_ring member.
41617         (fts_close): Clear the ring.
41618         (fts_safe_changedir): When possible, use our new fd_ring to skip
41619         the diropen and fstat and dev/ino comparison that would normally
41620         accompany a virtual `chdir ("..")'.
41621
41622         * modules/fts (Depends-on): Add i-ring.
41623         * modules/i-ring: New module.
41624         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
41625         * m4/i-ring.m4: New file.
41626
41627 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41628
41629         * gnulib-tool (func_create_testdir): Fix replacement of
41630         `build-aux' in configure.ac.  Run autotools in gltests
41631         subdirectory.
41632         (func_create_testdir, func_create_megatestdir, test): There is
41633         no need for '--force' in most autotool invocations in a new
41634         tree.  Actually fail the whole test if any of the tools, or the
41635         configure or make stages fail.
41636
41637         Sync from Automake.
41638         * build-aux/gnupload: Revert last change.  Add pointer to upload
41639         instructions of the GNU Maintenance Instructions.
41640         Suggestion by Karl Berry.
41641
41642 2006-11-10  Jim Meyering  <jim@meyering.net>
41643
41644         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
41645
41646 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41647
41648         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
41649         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
41650         (bind_textdomain_codeset) [! ENABLE_NLS]:
41651         Evaluate all the arguments.  That way, callers get compatible behavior
41652         if the arguments have side effects.  Also, it avoids some GCC
41653         diagnostics in some cases; Joel E. Denny reported problems when Bison
41654         was configured with --enable-gcc-warnigs.
41655
41656 2006-11-10  Jim Meyering  <jim@meyering.net>
41657
41658         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
41659         relevant options in CFLAGS (like -O, -fno-inline) are taken into
41660         account.
41661
41662 2006-11-10  Jim Meyering  <jim@meyering.net>
41663
41664         * modules/inline: New file/module.
41665         * modules/xalloc (Files): Remove m4/inline.m4.
41666         (Depends-on): Add inline, instead.
41667         * modules/oset: Likewise.
41668         * modules/list: Likewise.
41669
41670 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41671
41672         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
41673         Problem reported by Matthew Woehlke.
41674
41675 2006-11-09  Bruno Haible  <bruno@clisp.org>
41676
41677         * lib/tempname.c (gen_tempname): Remove variant that invokes
41678         __gen_tempname.
41679         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
41680         __gen_tempname.
41681
41682 2006-11-08  Bruno Haible  <bruno@clisp.org>
41683
41684         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
41685         to 'yes' instead of 'cross-compiling'.
41686
41687 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
41688
41689         * lib/quotearg.h (quotearg_free): New decl.
41690         * lib/quotearg.c (quotearg_free): New function.
41691         (slot0, nslots, slotvec0, slotvec):
41692         Now file-scope so that quotearg_free can get at them.
41693
41694 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41695
41696         Sync from Automake.
41697         * build-aux/gnupload: Add missing 'gnu' to example URL.
41698         Report by Karl Berry.
41699
41700 2006-11-08  Bruno Haible  <bruno@clisp.org>
41701
41702         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
41703         Suggested by Paul Eggert.
41704
41705 2006-11-08  Jim Meyering  <jim@meyering.net>
41706
41707         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
41708         It's already included if !_LIBC.
41709         (fts_safe_changedir): Add a comment.
41710
41711 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41712
41713         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
41714         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
41715         Matthew Woehlke.
41716
41717         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
41718         definitions up, to avoid colliding with change below.
41719         (static_inline) [HAVE_INLINE]: New macro.
41720         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
41721         Provide extern decls when !HAVE_INLINE.  Do not define unless
41722         static_inline is defined, either by us or by xmalloc.c.  Use
41723         static_inline rather than static inline.
41724         (XCALLOC): Optimize sizeof(T) = 1 case.
41725         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
41726
41727 2006-11-07  Bruno Haible  <bruno@clisp.org>
41728
41729         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
41730         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
41731         AC_C_INLINE.
41732         * modules/xalloc (Files): Add m4/inline.m4.
41733
41734 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41735
41736         * README: Fix typo.
41737         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
41738         (Miscellanous Notes): ...from this.
41739
41740 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41741
41742         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
41743         Mention that offsetof should be used instead of sizeof.
41744         From Bruno Haible.
41745
41746 2006-11-07  Bruno Haible  <bruno@clisp.org>
41747
41748         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
41749
41750 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41751
41752         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41753         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
41754         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41755         (gl_tree_add_before, gl_tree_add_after):
41756         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
41757         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
41758         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
41759         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
41760         (gl_linked_add_after, gl_linked_add_at): Likewise.
41761         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
41762         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41763         (gl_tree_add_before, gl_tree_add_after): Likewise.
41764         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
41765         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
41766         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
41767
41768 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41769
41770         * lib/gl_oset.h: Use C comment style, not C++ comment style.
41771
41772 2006-11-06  Bruno Haible  <bruno@clisp.org>
41773
41774         * m4/inline.m4: New file.
41775         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
41776         * modules/list (Files): Add m4/inline.m4.
41777         * modules/oset (Files): Likewise.
41778
41779 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41780
41781         * lib/idcache.c: Include <stddef.h>, for offsetof.
41782         (struct userid.name): Change from char * to a flexible array member.
41783         All uses changed.
41784         * modules/idcache (Depends-on): Add flexmember.
41785
41786         * MODULES.html.sh (Core language properties): New module flexmember.
41787         * modules/flexmember, m4/flexmember.m4: New files.
41788
41789         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
41790         inline functions that are identical with the old xnmalloc_inline,
41791         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
41792         that we can avoid some unnecessary integer multiplications and
41793         divisions in the common case where the element size is known at
41794         compile time.
41795         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
41796         needed.
41797         (xnboundedmalloc): Remove.
41798         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
41799         arguments, for consistency with rest of this header.
41800         (xcharalloc): Rewrite using XNMALLOC.
41801         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
41802         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
41803         versions have been moved to lib/xalloc.h and renamed to be the
41804         non-*_inline versions.
41805         (xmalloc, xrealloc): Implement without reference to the xnmalloc
41806         and xnrealloc functions, since those functions are now inline and
41807         now call us.
41808         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
41809         renaming described above.
41810         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
41811         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
41812         captures the dependency in AC_C_INLINE.
41813
41814         New module canonicalize-lgpl, proposed by Charles Wilson in
41815         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
41816         with a few small changes afterwards.
41817         * MODULES.html.sh (File system functions): New module
41818         canonicalize-lgpl.
41819         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
41820         and canonicalize_file_name.
41821         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
41822         * modules/canonicalize-lgpl: New files.
41823
41824 2006-11-05  Bruno Haible  <bruno@clisp.org>
41825
41826         * gnulib-tool (func_import, func_create_testdir): Create directories
41827         also for files in subdirectories of lib/.
41828
41829 2006-11-05  Bruno Haible  <bruno@clisp.org>
41830
41831         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
41832         ANSI C compliant.
41833
41834 2006-11-03  Bruno Haible  <bruno@clisp.org>
41835
41836         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41837         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
41838         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
41839         (xnboundedmalloc): New inline function.
41840         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
41841         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
41842         xmalloc.
41843         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
41844         xmalloc.
41845         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
41846         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
41847         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
41848         xmalloc.
41849         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41850         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
41851         xmalloc.
41852         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
41853         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41854         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
41855         xmalloc.
41856         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41857         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
41858         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41859         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
41860         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
41861         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
41862         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
41863
41864 2006-11-03  Bruno Haible  <bruno@clisp.org>
41865
41866         * lib/c-ctype.h [C++]: Define functions without name mangling.
41867         * lib/fwriteerror.h [C++]: Likewise.
41868         * lib/gcd.h [C++]: Likewise.
41869         * lib/linebreak.h [C++]: Likewise.
41870
41871 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41872
41873         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
41874         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
41875         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
41876         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
41877         Check for functions and headers just once.
41878         Check for declaration of canonicalize_file_name.
41879         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
41880
41881 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41882
41883         * gnulib-tool (func_import): Fix typo in actioncmd.
41884
41885 2006-11-02  Bruno Haible  <bruno@clisp.org>
41886
41887         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
41888         newline sequence in the Makefile.am snippet as a space, like "make"
41889         does.
41890         Reported by Roger Persson <perrog@gmail.com>.
41891
41892 2006-11-01  Bruno Haible  <bruno@clisp.org>
41893
41894         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
41895         already declared in <string.h>.
41896         * lib/strcase.h (strncasecmp): Don't declare it if yes.
41897
41898 2006-11-01  Bruno Haible  <bruno@clisp.org>
41899
41900         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
41901         * lib/strcase.h: Include <string.h>.
41902         (strcasecmp): Define to rpl_strcasecmp here.
41903
41904 2006-11-01  Bruno Haible  <bruno@clisp.org>
41905
41906         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
41907
41908 2006-11-01  Eric Blake  <ebb9@byu.net>
41909
41910         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
41911
41912         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
41913
41914 2006-10-29  Bruno Haible  <bruno@clisp.org>
41915
41916         Make it compile in C++ mode.
41917         * lib/full-write.c (full_rw): Add a cast.
41918
41919 2006-11-01  Bruno Haible  <bruno@clisp.org>
41920
41921         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
41922         be POSIX compliant.
41923         Reported by Roger Persson <perrog@gmail.com>.
41924
41925 2006-11-01  Eric Blake  <ebb9@byu.net>
41926
41927         * lib/getopt_.h: Fix comments.
41928
41929 2006-10-31  Eric Blake  <ebb9@byu.net>
41930
41931         * modules/tmpdir (Depends-on): Add sys_stat.
41932         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
41933         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
41934         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
41935         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
41936         tempname.
41937
41938 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
41939
41940         Avoid some C++ diagnostics reported by Bruno Haible.
41941         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
41942         xmalloc.
41943         (quotearg_alloc): Use xcharalloc rather than xmalloc.
41944         (struct slotvec): Move to top level.
41945         (quotearg_n_options): Rewrite to avoid xmalloc.
41946         * lib/xalloc.h (xcharalloc): New function.
41947         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
41948         [defined __cplusplus]: Add function template that provides result
41949         type propagation.  This part of the change is from Bruno Haible.
41950
41951 2006-10-29  Bruno Haible  <bruno@clisp.org>
41952
41953         Make it compile in C++ mode.
41954         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
41955         * lib/strnlen1.c (strnlen1): Cast memchr result.
41956         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
41957         * lib/clean-temp.c (string_equals, string_hash): Add casts.
41958         (create_temp_dir): Rename local variable 'template'.
41959         (compile_csharp_using_sscli): Add cast.
41960         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
41961         * lib/findprog.c (find_in_path): Likewise.
41962         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
41963         * lib/wait-process.c (register_slave_subprocess): Likewise.
41964
41965 2006-10-22  Bruno Haible  <bruno@clisp.org>
41966
41967         * modules/tsearch: New file.
41968         * lib/tsearch.h: New file.
41969         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
41970         * m4/tsearch.m4: New file.
41971         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
41972
41973 2006-10-29  Eric Blake  <ebb9@byu.net>
41974
41975         * lib/arcfour.c: Assume config.h.
41976         * lib/arctwo.c: Likewise.
41977         * lib/base64.c: Likewise.
41978         * lib/check-version.c: Likewise.
41979         * lib/crc.c: Likewise.
41980         * lib/des.c: Likewise.
41981         * lib/gc-gnulib.c: Likewise.
41982         * lib/gc-libgcrypt.c: Likewise.
41983         * lib/gc-pbkdf2-sha1.c: Likewise.
41984         * lib/getaddrinfo.c: Likewise.
41985         * lib/getdelim.c: Likewise.
41986         * lib/getline.c: Likewise.
41987         * lib/hmac-md5.c: Likewise.
41988         * lib/hmac-sha1.c: Likewise.
41989         * lib/iconvme.c: Likewise.
41990         * lib/md2.c: Likewise.
41991         * lib/md4.c: Likewise.
41992         * lib/memxor.c: Likewise.
41993         * lib/read-file.c: Likewise.
41994         * lib/readline.c: Likewise.
41995         * lib/rijndael-alg-fst.c: Likewise.
41996         * lib/rijndael-api-fst.c: Likewise.
41997         * lib/xgetdomainname.c: Likewise.
41998
41999 2006-10-28  Eric Blake  <ebb9@byu.net>
42000
42001         * lib/xstrndup.c: Assume config.h.
42002
42003 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42004
42005         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
42006         stat-macros.h is now for our own macros, whereas stat_h is for
42007         macros in the <sys/stat.h> name space.
42008         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
42009         (STAT_MACROS_H): Remove.
42010         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
42011         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
42012         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
42013         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
42014         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
42015         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
42016         Move these macros to ...
42017         * lib/stat_.h: here.  Don't include stat-macros.h.
42018         * lib/canonicalize.c: Don't include stat-macros.h.
42019         * lib/chown.c: Likewise.
42020         * lib/euidaccess.c: Likewise.
42021         * lib/file-type.c: Likewise.
42022         * lib/filemode.c: Likewise.
42023         * lib/glob.c: Likewise.
42024         * lib/isapipe.c: Likewise.
42025         * lib/lchown.c: Likewise.
42026         * lib/lstat.c: Likewise.
42027         * lib/mkdir-p.c: Likewise.
42028         * lib/rmdir.c: Likewise.
42029         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
42030         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
42031         unless mkdir isn't declared, to speed up 'configure'.
42032         Always create sys/stat.h, since it's unlikely any real sys/stat.h
42033         would define all the S_* symbols.
42034         * modules/canonicalize (Depends-on):
42035         Depend on sys_stat, not stat-macros.
42036         * modules/chown: Likewise.
42037         * modules/euidaccess: Likewise.
42038         * modules/filemode: Likewise.
42039         * modules/file-type: Likewise.
42040         * modules/glob: Likewise.
42041         * modules/isapipe: Likewise.
42042         * modules/lchown: Likewise.
42043         * modules/lstat: Likewise.
42044         * modules/mkancesdirs: Likewise.
42045         * modules/rmdir: Likewise.
42046         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
42047         * modules/modechange: Likewise.
42048         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
42049         (configure.ac): Remove gl_STAT_MACROS.
42050         * modules/sys_stat (Depends-on): Remove stat-macros.
42051
42052 2006-10-27  Bruno Haible  <bruno@clisp.org>
42053
42054         * m4/signed.m4: Remove file.
42055         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
42056         invocation.
42057         * modules/vasnprintf (Files): Remove m4/signed.m4.
42058
42059 2006-10-27  Bruno Haible  <bruno@clisp.org>
42060
42061         Update to GNU gettext 0.16.
42062         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
42063         m4/inttypes-h.m4, m4/signed.m4.
42064         * m4/gettext.m4: Update to GNU gettext 0.16.
42065         * m4/intl.m4: New file, from GNU gettext.
42066         * m4/intldir.m4: New file, from GNU gettext.
42067         * config/srclist.txt: Update
42068
42069 2006-10-27  Eric Blake  <ebb9@byu.net>
42070
42071         * MODULES.html.sh: Document tempname.
42072         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
42073         dependencies.
42074         (Files): Move lib/tempname.c...
42075         * modules/tempname: ...to this new module.
42076         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
42077         (gl_PREREQ_TEMPNAME): Move...
42078         * m4/tempname.m4: ...to this new file.
42079         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
42080         * modules/sys_stat (Depends-on): Add stat-macros.
42081         * lib/stat_.h (includes): Pick up stat macros.
42082         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
42083         if stat macros are broken.
42084         * lib/tempname.c (includes): No need to include "stat-macros.h".
42085         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
42086         (direxists, __path_search) [!_LIBC]: Don't compile these in
42087         gnulib; the tmpdir module covers that.
42088         * lib/tempname.h: New file.
42089
42090 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
42091
42092         * COPYING: Explain how gnulib-tool converts licence headers.
42093         Almost all wording by Eric Blake.
42094
42095 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
42096
42097         * lib/mbchar.h (is_basic_table): Make read-only.
42098         * lib/mbchar.c (is_basic_table): Likewise.
42099         Reported by John Darrington.
42100
42101 2006-10-25  Bruno Haible  <bruno@clisp.org>
42102
42103         * lib/progname.h (set_program_name): Undefine before defining.
42104
42105 2006-10-25  Bruno Haible  <bruno@clisp.org>
42106
42107         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
42108         false for non-gcc C++ compilers.
42109         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
42110
42111 2006-10-24  Bruno Haible  <bruno@clisp.org>
42112
42113         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
42114         iconv implementations like Irix iconv.
42115
42116 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42117
42118         * modules/vararrays: New file.
42119         * m4/vararrays.m4: New file, taken from diffutils.
42120         * MODULES.html.sh: New module vararrays.
42121
42122 2006-10-24  Karl Berry  <karl@gnu.org>
42123
42124         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
42125         Don't call GNU Unix.
42126
42127 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42128
42129         * users.txt: Add Libtool.
42130
42131         Sync from Libtool:
42132
42133         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42134
42135         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
42136         to gnulib's policy of including config.h unconditionally.
42137
42138 2006-10-24  Bruno Haible  <bruno@clisp.org>
42139
42140         * modules/wcwidth (Files): Add m4/wint_t.m4.
42141         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
42142         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
42143
42144 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42145
42146         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
42147         to pacify GCC with some -W flags enabled.  Problem reported by
42148         Bruno Haible.
42149
42150 2006-10-24  Jim Meyering  <jim@meyering.net>
42151
42152         * MODULES.html.sh: Remove uinttostr.  It's not a module.
42153         Reported by Karl Berry.
42154
42155 2006-10-23  Bruno Haible  <bruno@clisp.org>
42156
42157         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
42158
42159 2006-10-24  Bruno Haible  <bruno@clisp.org>
42160
42161         * lib/gl_list.h: Use C comment style, not C++ comment style.
42162
42163 2006-10-23  Eric Blake  <ebb9@byu.net>
42164
42165         * lib/getaddrinfo.c (includes): Add missing include.
42166
42167 2006-10-23  Bruno Haible  <bruno@clisp.org>
42168             Paul Eggert  <eggert@cs.ucla.edu>
42169
42170         Ability to rename obstack_free.
42171         * lib/obstack.h (__obstack_free): New macro. Declare instead of
42172         obstack_free.
42173         (obstack_free): Invoke the __obstack_free macro.
42174         * lib/obstack.c (obstack_free): Use __obstack_free macro.
42175
42176 2006-10-23  Bruno Haible  <bruno@clisp.org>
42177             Paul Eggert  <eggert@cs.ucla.edu>
42178
42179         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
42180         __argc, __argv from the declaration. (They are defined as macros on
42181         mingw.)
42182
42183 2006-10-22  Bruno Haible  <bruno@clisp.org>
42184
42185         * doc/gnulib-intro.texi: New file.
42186         * doc/gnulib.texi: Include it.
42187
42188 2006-10-21  Bruno Haible  <bruno@clisp.org>
42189
42190         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
42191         "Introduction", "Miscellanous Notes", "Particular Modules".
42192
42193 2006-10-21  Bruno Haible  <bruno@clisp.org>
42194
42195         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42196         Change mostlyclean-local rule to avoid sh syntax error from bash
42197         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
42198
42199 2006-10-23  Jim Meyering  <jim@meyering.net>
42200
42201         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
42202         in place of snprintf.
42203
42204         * modules/inttostr (Files): Add lib/uinttostr.c.
42205         * lib/uinttostr.c (inttostr): New file/function.
42206         * lib/inttostr.h (uinttostr): Declare.
42207         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
42208         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
42209         Add uinttostr.
42210         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
42211
42212 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42213
42214         * lib/canonicalize.c (ELOOP): Define if not already defined.
42215         Problem reported by Bruno Haible in
42216         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
42217
42218 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42219
42220         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
42221         Problem reported by Perry Smith and Ville Laurikari.
42222
42223         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
42224         uses.
42225
42226 2006-10-19  Bruno Haible  <bruno@clisp.org>
42227
42228         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
42229         for mingw.
42230
42231 2006-10-19  Bruno Haible  <bruno@clisp.org>
42232
42233         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
42234         Needed for mingw.
42235
42236 2006-10-19  Bruno Haible  <bruno@clisp.org>
42237
42238         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
42239
42240 2006-10-19  Bruno Haible  <bruno@clisp.org>
42241
42242         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
42243         it.
42244
42245 2006-10-19  Bruno Haible  <bruno@clisp.org>
42246
42247         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
42248         invocation.
42249
42250 2006-10-19  Bruno Haible  <bruno@clisp.org>
42251
42252         * gnulib-tool (func_create_testdir): Don't include ftruncate and
42253         mountlist by default.
42254
42255 2006-10-16  Bruno Haible  <bruno@clisp.org>
42256
42257         * lib/c-strstr.c: Include c-strstr.h.
42258
42259 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
42260
42261         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
42262         in a slash.
42263
42264 2006-10-18  Bruno Haible  <bruno@clisp.org>
42265
42266         * lib/lock.h [C++]: Wrap definitions in extern "C".
42267
42268 2006-10-18  Bruno Haible  <bruno@clisp.org>
42269
42270         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
42271         gl_LIBOBJS list.
42272
42273 2006-10-18  Bruno Haible  <bruno@clisp.org>
42274
42275         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
42276
42277 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
42278
42279         * lib/xstrtol.h: Include gettext.h.
42280         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
42281         Problem reported by Eric Blake.
42282         * modules/xstrtol (Depends-on): Add gettext-h.
42283
42284 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
42285
42286         * lib/strftime.c (advance): New macro.
42287         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
42288         incomplete type, so you can't add 0 to it.  Problem and patch
42289         reported by Eelco Dolstra for dietlibc.
42290
42291 2006-10-18  Jim Meyering  <jim@meyering.net>
42292
42293         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
42294         type for a local, and rename it: s/up/user_proc/.
42295
42296 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
42297
42298         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
42299         READ_UTMP_USER_PROCESS.
42300         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
42301
42302 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
42303
42304         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
42305         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
42306
42307 2006-10-17  Eric Blake  <ebb9@byu.net>
42308
42309         * lib/sigprocmask.c (sigprocmask): Fix typo.
42310
42311         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
42312
42313         * modules/clean-temp (Makefile.am): Don't add to make output...
42314         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
42315         config.h.
42316
42317 2006-10-17  Bruno Haible  <bruno@clisp.org>
42318
42319         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
42320         differently if DEFAULT_TEXT_DOMAIN is set.
42321
42322 2006-10-16  Bruno Haible  <bruno@clisp.org>
42323
42324         * lib/clean-temp.c: Include fwriteerror.h.
42325
42326 2006-10-16  Bruno Haible  <bruno@clisp.org>
42327
42328         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
42329
42330 2006-10-16  Bruno Haible  <bruno@clisp.org>
42331
42332         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
42333         * lib/sigprocmask.h: Include <sys/types.h>.
42334         (sigset_t): Use the system's definition if present.
42335
42336 2006-10-17  Eric Blake  <ebb9@byu.net>
42337
42338         * lib/xvasprintf.c (includes): Assume config.h.
42339         * lib/xasprintf.c (includes): Likewise.
42340
42341 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
42342
42343         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
42344         at least as wide as intmax_t.
42345
42346 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
42347
42348         (Imported from Automake.)
42349         * build-aux/gnupload: Update to version 1.1 of directive file.
42350
42351 2006-10-16  Eric Blake  <ebb9@byu.net>
42352
42353         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
42354         match Automake 1.10a.
42355
42356 2006-10-14  Bruno Haible  <bruno@clisp.org>
42357
42358         * modules/sigprocmask: New file.
42359         * lib/sigprocmask.h: New file.
42360         * lib/sigprocmask.c: New file.
42361         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
42362         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
42363         request sigprocmask.o.
42364         (gl_PREREQ_SIGPROCMASK): New macro.
42365         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
42366         (Depends-on): Add sigprocmask.
42367         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
42368         gt_SIGNALBLOCKING. Test for 'raise' only once.
42369         * lib/fatal-signal.c: Include sigprocmask.h.
42370         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
42371         unblock_fatal_signals): Define always.
42372         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
42373         sigprocmask.
42374
42375 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42376
42377         Sync from Automake.
42378         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
42379         which incorrectly sets the mode of an existing destination
42380         directory.  In some cases the unpatched install-sh could do the
42381         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
42382         system.  We hope this is rare in practice, but it's clearly worth
42383         fixing.  Problem reported by Alex Unleashed in
42384         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
42385         Also, don't bother to check for -m bugs unless we're using -m;
42386         suggested by Stepan Kasal.
42387
42388 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42389
42390         Sync from Automake.
42391         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
42392         `-c' flag, so they appear at the same position as in %FASTDEP%
42393         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
42394         which ignores unknown options only after the first non-option.
42395         Bug report against M4 by Nelson H. F. Beebe.
42396
42397 2006-10-13  Jim Meyering  <jim@meyering.net>
42398
42399         Fix a bug in yesterday's change.
42400         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
42401         p->fts_statp->st_dev would be used uninitialized.
42402         Ensures that we always call fts_stat on the very first entry.
42403         Miklos Szeredi reported that find -xdev stopped working.
42404
42405 2006-10-12  Bruno Haible  <bruno@clisp.org>
42406
42407         * gnulib-tool (func_get_automake_snippet): Append an automatically
42408         computed EXTRA_DIST augmentation.
42409         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
42410         * modules/alloca-opt (Makefile.am): Likewise.
42411         * modules/allocsa (Makefile.am): Likewise.
42412         * modules/arcfour (Makefile.am): Likewise.
42413         * modules/arctwo (Makefile.am): Likewise.
42414         * modules/argmatch (Makefile.am): Likewise.
42415         * modules/argz (Makefile.am): Likewise.
42416         * modules/atexit (Makefile.am): Likewise.
42417         * modules/backupfile (Makefile.am): Likewise.
42418         * modules/byteswap (Makefile.am): Likewise.
42419         * modules/c-strtod (Makefile.am): Likewise.
42420         * modules/c-strtold (Makefile.am): Likewise.
42421         * modules/calloc (Makefile.am): Likewise.
42422         * modules/canon-host (Makefile.am): Likewise.
42423         * modules/canonicalize (Makefile.am): Likewise.
42424         * modules/chdir-long (Makefile.am): Likewise.
42425         * modules/chdir-safer (Makefile.am): Likewise.
42426         * modules/check-version (Makefile.am): Likewise.
42427         * modules/chown (Makefile.am): Likewise.
42428         * modules/cloexec (Makefile.am): Likewise.
42429         * modules/close-stream (Makefile.am): Likewise.
42430         * modules/closeout (Makefile.am): Likewise.
42431         * modules/crc (Makefile.am): Likewise.
42432         * modules/csharpexec (Makefile.am): Likewise.
42433         * modules/cycle-check (Makefile.am): Likewise.
42434         * modules/des (Makefile.am): Likewise.
42435         * modules/dev-ino (Makefile.am): Likewise.
42436         * modules/dirfd (Makefile.am): Likewise.
42437         * modules/dirname (Makefile.am): Likewise.
42438         * modules/dup2 (Makefile.am): Likewise.
42439         * modules/eealloc (Makefile.am): Likewise.
42440         * modules/error (Makefile.am): Likewise.
42441         * modules/euidaccess (Makefile.am): Likewise.
42442         * modules/exclude (Makefile.am): Likewise.
42443         * modules/exitfail (Makefile.am): Likewise.
42444         * modules/fcntl-safer (Makefile.am): Likewise.
42445         * modules/fcntl (Makefile.am): Likewise.
42446         * modules/file-type (Makefile.am): Likewise.
42447         * modules/fileblocks (Makefile.am): Likewise.
42448         * modules/filemode (Makefile.am): Likewise.
42449         * modules/filenamecat (Makefile.am): Likewise.
42450         * modules/fnmatch (Makefile.am): Likewise.
42451         * modules/fopen-safer (Makefile.am): Likewise.
42452         * modules/fpending (Makefile.am): Likewise.
42453         * modules/fprintftime (Makefile.am): Likewise.
42454         * modules/free (Makefile.am): Likewise.
42455         * modules/fsusage (Makefile.am): Likewise.
42456         * modules/ftruncate (Makefile.am): Likewise.
42457         * modules/fts (Makefile.am): Likewise.
42458         * modules/gc-arcfour (Makefile.am): Likewise.
42459         * modules/gc-des (Makefile.am): Likewise.
42460         * modules/gc-hmac-md5 (Makefile.am): Likewise.
42461         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
42462         * modules/gc-md4 (Makefile.am): Likewise.
42463         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
42464         * modules/gc-sha1 (Makefile.am): Likewise.
42465         * modules/gc (Makefile.am): Likewise.
42466         * modules/getaddrinfo (Makefile.am): Likewise.
42467         * modules/getcwd (Makefile.am): Likewise.
42468         * modules/getdelim (Makefile.am): Likewise.
42469         * modules/getdomainname (Makefile.am): Likewise.
42470         * modules/getgroups (Makefile.am): Likewise.
42471         * modules/gethostname (Makefile.am): Likewise.
42472         * modules/gethrxtime (Makefile.am): Likewise.
42473         * modules/getline (Makefile.am): Likewise.
42474         * modules/getloadavg (Makefile.am): Likewise.
42475         * modules/getlogin_r (Makefile.am): Likewise.
42476         * modules/getndelim2 (Makefile.am): Likewise.
42477         * modules/getopt (Makefile.am): Likewise.
42478         * modules/getpagesize (Makefile.am): Likewise.
42479         * modules/getpass-gnu (Makefile.am): Likewise.
42480         * modules/getpass (Makefile.am): Likewise.
42481         * modules/getsubopt (Makefile.am): Likewise.
42482         * modules/gettime (Makefile.am): Likewise.
42483         * modules/gettimeofday (Makefile.am): Likewise.
42484         * modules/getugroups (Makefile.am): Likewise.
42485         * modules/getusershell (Makefile.am): Likewise.
42486         * modules/glob (Makefile.am): Likewise.
42487         * modules/group-member (Makefile.am): Likewise.
42488         * modules/hard-locale (Makefile.am): Likewise.
42489         * modules/hash (Makefile.am): Likewise.
42490         * modules/hmac-md5 (Makefile.am): Likewise.
42491         * modules/hmac-sha1 (Makefile.am): Likewise.
42492         * modules/human (Makefile.am): Likewise.
42493         * modules/idcache (Makefile.am): Likewise.
42494         * modules/imaxabs (Makefile.am): Likewise.
42495         * modules/imaxdiv (Makefile.am): Likewise.
42496         * modules/inet_ntop (Makefile.am): Likewise.
42497         * modules/inet_pton (Makefile.am): Likewise.
42498         * modules/intprops (Makefile.am): Likewise.
42499         * modules/inttostr (Makefile.am): Likewise.
42500         * modules/inttypes (Makefile.am): Likewise.
42501         * modules/isapipe (Makefile.am): Likewise.
42502         * modules/javaversion (Makefile.am): Likewise.
42503         * modules/lchmod (Makefile.am): Likewise.
42504         * modules/lchown (Makefile.am): Likewise.
42505         * modules/localcharset (Makefile.am): Likewise.
42506         * modules/long-options (Makefile.am): Likewise.
42507         * modules/lstat (Makefile.am): Likewise.
42508         * modules/malloc (Makefile.am): Likewise.
42509         * modules/mathl (Makefile.am): Likewise.
42510         * modules/mbchar (Makefile.am): Likewise.
42511         * modules/md2 (Makefile.am): Likewise.
42512         * modules/md4 (Makefile.am): Likewise.
42513         * modules/md5 (Makefile.am): Likewise.
42514         * modules/memcasecmp (Makefile.am): Likewise.
42515         * modules/memchr (Makefile.am): Likewise.
42516         * modules/memcmp (Makefile.am): Likewise.
42517         * modules/memcoll (Makefile.am): Likewise.
42518         * modules/memcpy (Makefile.am): Likewise.
42519         * modules/memmem (Makefile.am): Likewise.
42520         * modules/memmove (Makefile.am): Likewise.
42521         * modules/mempcpy (Makefile.am): Likewise.
42522         * modules/memrchr (Makefile.am): Likewise.
42523         * modules/memset (Makefile.am): Likewise.
42524         * modules/memxor (Makefile.am): Likewise.
42525         * modules/mkancesdirs (Makefile.am): Likewise.
42526         * modules/mkdir-p (Makefile.am): Likewise.
42527         * modules/mkdir (Makefile.am): Likewise.
42528         * modules/mkdtemp (Makefile.am): Likewise.
42529         * modules/mkstemp (Makefile.am): Likewise.
42530         * modules/mktime (Makefile.am): Likewise.
42531         * modules/modechange (Makefile.am): Likewise.
42532         * modules/mountlist (Makefile.am): Likewise.
42533         * modules/nanosleep (Makefile.am): Likewise.
42534         * modules/obstack (Makefile.am): Likewise.
42535         * modules/openat (Makefile.am): Likewise.
42536         * modules/pagealign_alloc (Makefile.am): Likewise.
42537         * modules/pathmax (Makefile.am): Likewise.
42538         * modules/physmem (Makefile.am): Likewise.
42539         * modules/poll (Makefile.am): Likewise.
42540         * modules/posixtm (Makefile.am): Likewise.
42541         * modules/posixver (Makefile.am): Likewise.
42542         * modules/putenv (Makefile.am): Likewise.
42543         * modules/quote (Makefile.am): Likewise.
42544         * modules/quotearg (Makefile.am): Likewise.
42545         * modules/raise (Makefile.am): Likewise.
42546         * modules/read-file (Makefile.am): Likewise.
42547         * modules/readline (Makefile.am): Likewise.
42548         * modules/readlink (Makefile.am): Likewise.
42549         * modules/readtokens (Makefile.am): Likewise.
42550         * modules/readutmp (Makefile.am): Likewise.
42551         * modules/realloc (Makefile.am): Likewise.
42552         * modules/regex (Makefile.am): Likewise.
42553         * modules/rename-dest-slash (Makefile.am): Likewise.
42554         * modules/rename (Makefile.am): Likewise.
42555         * modules/rijndael (Makefile.am): Likewise.
42556         * modules/rmdir (Makefile.am): Likewise.
42557         * modules/rpmatch (Makefile.am): Likewise.
42558         * modules/safe-read (Makefile.am): Likewise.
42559         * modules/safe-write (Makefile.am): Likewise.
42560         * modules/same-inode (Makefile.am): Likewise.
42561         * modules/same (Makefile.am): Likewise.
42562         * modules/save-cwd (Makefile.am): Likewise.
42563         * modules/savedir (Makefile.am): Likewise.
42564         * modules/setenv (Makefile.am): Likewise.
42565         * modules/settime (Makefile.am): Likewise.
42566         * modules/sha1 (Makefile.am): Likewise.
42567         * modules/sig2str (Makefile.am): Likewise.
42568         * modules/snprintf (Makefile.am): Likewise.
42569         * modules/stat-macros (Makefile.am): Likewise.
42570         * modules/stat-time (Makefile.am): Likewise.
42571         * modules/stdbool (Makefile.am): Likewise.
42572         * modules/stdint (Makefile.am): Likewise.
42573         * modules/stdlib-safer (Makefile.am): Likewise.
42574         * modules/stpcpy (Makefile.am): Likewise.
42575         * modules/stpncpy (Makefile.am): Likewise.
42576         * modules/strcase (Makefile.am): Likewise.
42577         * modules/strcasestr (Makefile.am): Likewise.
42578         * modules/strchrnul (Makefile.am): Likewise.
42579         * modules/strcspn (Makefile.am): Likewise.
42580         * modules/strdup (Makefile.am): Likewise.
42581         * modules/strerror (Makefile.am): Likewise.
42582         * modules/strftime (Makefile.am): Likewise.
42583         * modules/strndup (Makefile.am): Likewise.
42584         * modules/strnlen (Makefile.am): Likewise.
42585         * modules/strpbrk (Makefile.am): Likewise.
42586         * modules/strsep (Makefile.am): Likewise.
42587         * modules/strstr (Makefile.am): Likewise.
42588         * modules/strtod (Makefile.am): Likewise.
42589         * modules/strtoimax (Makefile.am): Likewise.
42590         * modules/strtok_r (Makefile.am): Likewise.
42591         * modules/strtol (Makefile.am): Likewise.
42592         * modules/strtoll (Makefile.am): Likewise.
42593         * modules/strtoul (Makefile.am): Likewise.
42594         * modules/strtoull (Makefile.am): Likewise.
42595         * modules/strtoumax (Makefile.am): Likewise.
42596         * modules/strverscmp (Makefile.am): Likewise.
42597         * modules/sys_socket (Makefile.am): Likewise.
42598         * modules/sys_stat (Makefile.am): Likewise.
42599         * modules/sysexits (Makefile.am): Likewise.
42600         * modules/time_r (Makefile.am): Likewise.
42601         * modules/timegm (Makefile.am): Likewise.
42602         * modules/timespec (Makefile.am): Likewise.
42603         * modules/tmpfile-safer (Makefile.am): Likewise.
42604         * modules/trim (Makefile.am): Likewise.
42605         * modules/unistd-safer (Makefile.am): Likewise.
42606         * modules/unlinkdir (Makefile.am): Likewise.
42607         * modules/unlocked-io (Makefile.am): Likewise.
42608         * modules/userspec (Makefile.am): Likewise.
42609         * modules/utime (Makefile.am): Likewise.
42610         * modules/utimecmp (Makefile.am): Likewise.
42611         * modules/utimens (Makefile.am): Likewise.
42612         * modules/vasnprintf (Makefile.am): Likewise.
42613         * modules/vasprintf (Makefile.am): Likewise.
42614         * modules/vsnprintf (Makefile.am): Likewise.
42615         * modules/xalloc (Makefile.am): Likewise.
42616         * modules/xgetcwd (Makefile.am): Likewise.
42617         * modules/xnanosleep (Makefile.am): Likewise.
42618         * modules/xreadlink (Makefile.am): Likewise.
42619         * modules/xstrtod (Makefile.am): Likewise.
42620         * modules/xstrtol (Makefile.am): Likewise.
42621         * modules/xstrtold (Makefile.am): Likewise.
42622         * modules/yesno (Makefile.am): Likewise.
42623         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
42624
42625 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42626
42627         * modules/error (Makefile.am): Distribute files through
42628         EXTRA_DIST, not lib_SOURCES.
42629
42630 2006-10-12  Eric Blake  <ebb9@byu.net>
42631
42632         * modules/error (Makefile.am): Distribute files in /lib.
42633         * modules/obstack (Makefile.am): Likewise.
42634
42635 2006-10-12  Bruno Haible  <bruno@clisp.org>
42636
42637         * modules/acl (Makefile.am): Distribute all files in lib/ through
42638         EXTRA_DIST.
42639         * modules/arcfour (Makefile.am): Likewise.
42640         * modules/arctwo (Makefile.am): Likewise.
42641         * modules/argmatch (Makefile.am): Likewise.
42642         * modules/argz (Makefile.am): Likewise.
42643         * modules/atexit (Makefile.am): Likewise.
42644         * modules/backupfile (Makefile.am): Likewise.
42645         * modules/c-strtod (Makefile.am): Likewise.
42646         * modules/c-strtold (Makefile.am): Likewise.
42647         * modules/calloc (Makefile.am): Likewise.
42648         * modules/canon-host (Makefile.am): Likewise.
42649         * modules/canonicalize (Makefile.am): Likewise.
42650         * modules/chdir-long (Makefile.am): Likewise.
42651         * modules/chdir-safer (Makefile.am): Likewise.
42652         * modules/check-version (Makefile.am): Likewise.
42653         * modules/chown (Makefile.am): Likewise.
42654         * modules/cloexec (Makefile.am): Likewise.
42655         * modules/close-stream (Makefile.am): Likewise.
42656         * modules/closeout (Makefile.am): Likewise.
42657         * modules/crc (Makefile.am): Likewise.
42658         * modules/cycle-check (Makefile.am): Likewise.
42659         * modules/des (Makefile.am): Likewise.
42660         * modules/dirfd (Makefile.am): Likewise.
42661         * modules/dirname (Makefile.am): Likewise.
42662         * modules/dup2 (Makefile.am): Likewise.
42663         * modules/euidaccess (Makefile.am): Likewise.
42664         * modules/exclude (Makefile.am): Likewise.
42665         * modules/exitfail (Makefile.am): Likewise.
42666         * modules/fcntl-safer (Makefile.am): Likewise.
42667         * modules/file-type (Makefile.am): Likewise.
42668         * modules/fileblocks (Makefile.am): Likewise.
42669         * modules/filemode (Makefile.am): Likewise.
42670         * modules/filenamecat (Makefile.am): Likewise.
42671         * modules/fnmatch (Makefile.am): Likewise.
42672         * modules/fopen-safer (Makefile.am): Likewise.
42673         * modules/fpending (Makefile.am): Likewise.
42674         * modules/fprintftime (Makefile.am): Likewise.
42675         * modules/free (Makefile.am): Likewise.
42676         * modules/fsusage (Makefile.am): Likewise.
42677         * modules/ftruncate (Makefile.am): Likewise.
42678         * modules/fts (Makefile.am): Likewise.
42679         * modules/gc (Makefile.am): Likewise.
42680         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
42681         * modules/getaddrinfo (Makefile.am): Likewise.
42682         * modules/getcwd (Makefile.am): Likewise.
42683         * modules/getdelim (Makefile.am): Likewise.
42684         * modules/getdomainname (Makefile.am): Likewise.
42685         * modules/getgroups (Makefile.am): Likewise.
42686         * modules/gethostname (Makefile.am): Likewise.
42687         * modules/gethrxtime (Makefile.am): Likewise.
42688         * modules/getline (Makefile.am): Likewise.
42689         * modules/getloadavg (Makefile.am): Likewise.
42690         * modules/getlogin_r (Makefile.am): Likewise.
42691         * modules/getopt (Makefile.am): Likewise.
42692         * modules/getpass (Makefile.am): Likewise.
42693         * modules/getpass-gnu (Makefile.am): Likewise.
42694         * modules/getsubopt (Makefile.am): Likewise.
42695         * modules/gettime (Makefile.am): Likewise.
42696         * modules/gettimeofday (Makefile.am): Likewise.
42697         * modules/getugroups (Makefile.am): Likewise.
42698         * modules/getusershell (Makefile.am): Likewise.
42699         * modules/glob (Makefile.am): Likewise.
42700         * modules/group-member (Makefile.am): Likewise.
42701         * modules/hard-locale (Makefile.am): Likewise.
42702         * modules/hash (Makefile.am): Likewise.
42703         * modules/hmac-md5 (Makefile.am): Likewise.
42704         * modules/hmac-sha1 (Makefile.am): Likewise.
42705         * modules/human (Makefile.am): Likewise.
42706         * modules/idcache (Makefile.am): Likewise.
42707         * modules/imaxabs (Makefile.am): Likewise.
42708         * modules/imaxdiv (Makefile.am): Likewise.
42709         * modules/inet_ntop (Makefile.am): Likewise.
42710         * modules/inet_pton (Makefile.am): Likewise.
42711         * modules/inttostr (Makefile.am): Likewise.
42712         * modules/isapipe (Makefile.am): Likewise.
42713         * modules/lchown (Makefile.am): Likewise.
42714         * modules/long-options (Makefile.am): Likewise.
42715         * modules/lstat (Makefile.am): Likewise.
42716         * modules/malloc (Makefile.am): Likewise.
42717         * modules/mathl (Makefile.am): Likewise.
42718         * modules/mbchar (Makefile.am): Likewise.
42719         * modules/md2 (Makefile.am): Likewise.
42720         * modules/md4 (Makefile.am): Likewise.
42721         * modules/md5 (Makefile.am): Likewise.
42722         * modules/memcasecmp (Makefile.am): Likewise.
42723         * modules/memchr (Makefile.am): Likewise.
42724         * modules/memcmp (Makefile.am): Likewise.
42725         * modules/memcoll (Makefile.am): Likewise.
42726         * modules/memcpy (Makefile.am): Likewise.
42727         * modules/memmem (Makefile.am): Likewise.
42728         * modules/memmove (Makefile.am): Likewise.
42729         * modules/mempcpy (Makefile.am): Likewise.
42730         * modules/memrchr (Makefile.am): Likewise.
42731         * modules/memset (Makefile.am): Likewise.
42732         * modules/memxor (Makefile.am): Likewise.
42733         * modules/mkancesdirs (Makefile.am): Likewise.
42734         * modules/mkdir (Makefile.am): Likewise.
42735         * modules/mkdir-p (Makefile.am): Likewise.
42736         * modules/mkdtemp (Makefile.am): Likewise.
42737         * modules/mkstemp (Makefile.am): Likewise.
42738         * modules/mktime (Makefile.am): Likewise.
42739         * modules/modechange (Makefile.am): Likewise.
42740         * modules/mountlist (Makefile.am): Likewise.
42741         * modules/nanosleep (Makefile.am): Likewise.
42742         * modules/openat (Makefile.am): Likewise.
42743         * modules/pagealign_alloc (Makefile.am): Likewise.
42744         * modules/physmem (Makefile.am): Likewise.
42745         * modules/poll (Makefile.am): Likewise.
42746         * modules/posixtm (Makefile.am): Likewise.
42747         * modules/posixver (Makefile.am): Likewise.
42748         * modules/putenv (Makefile.am): Likewise.
42749         * modules/quote (Makefile.am): Likewise.
42750         * modules/quotearg (Makefile.am): Likewise.
42751         * modules/raise (Makefile.am): Likewise.
42752         * modules/read-file (Makefile.am): Likewise.
42753         * modules/readline (Makefile.am): Likewise.
42754         * modules/readlink (Makefile.am): Likewise.
42755         * modules/readtokens (Makefile.am): Likewise.
42756         * modules/readutmp (Makefile.am): Likewise.
42757         * modules/realloc (Makefile.am): Likewise.
42758         * modules/regex (Makefile.am): Likewise.
42759         * modules/rename (Makefile.am): Likewise.
42760         * modules/rename-dest-slash (Makefile.am): Likewise.
42761         * modules/rijndael (Makefile.am): Likewise.
42762         * modules/rmdir (Makefile.am): Likewise.
42763         * modules/rpmatch (Makefile.am): Likewise.
42764         * modules/safe-read (Makefile.am): Likewise.
42765         * modules/safe-write (Makefile.am): Likewise.
42766         * modules/same (Makefile.am): Likewise.
42767         * modules/save-cwd (Makefile.am): Likewise.
42768         * modules/savedir (Makefile.am): Likewise.
42769         * modules/setenv (Makefile.am): Likewise.
42770         * modules/settime (Makefile.am): Likewise.
42771         * modules/sha1 (Makefile.am): Likewise.
42772         * modules/sig2str (Makefile.am): Likewise.
42773         * modules/snprintf (Makefile.am): Likewise.
42774         * modules/stdlib-safer (Makefile.am): Likewise.
42775         * modules/stpcpy (Makefile.am): Likewise.
42776         * modules/stpncpy (Makefile.am): Likewise.
42777         * modules/strcase (Makefile.am): Likewise.
42778         * modules/strcasestr (Makefile.am): Likewise.
42779         * modules/strchrnul (Makefile.am): Likewise.
42780         * modules/strcspn (Makefile.am): Likewise.
42781         * modules/strdup (Makefile.am): Likewise.
42782         * modules/strerror (Makefile.am): Likewise.
42783         * modules/strftime (Makefile.am): Likewise.
42784         * modules/strndup (Makefile.am): Likewise.
42785         * modules/strnlen (Makefile.am): Likewise.
42786         * modules/strpbrk (Makefile.am): Likewise.
42787         * modules/strsep (Makefile.am): Likewise.
42788         * modules/strstr (Makefile.am): Likewise.
42789         * modules/strtod (Makefile.am): Likewise.
42790         * modules/strtoimax (Makefile.am): Likewise.
42791         * modules/strtok_r (Makefile.am): Likewise.
42792         * modules/strtol (Makefile.am): Likewise.
42793         * modules/strtoll (Makefile.am): Likewise.
42794         * modules/strtoul (Makefile.am): Likewise.
42795         * modules/strtoull (Makefile.am): Likewise.
42796         * modules/strtoumax (Makefile.am): Likewise.
42797         * modules/strverscmp (Makefile.am): Likewise.
42798         * modules/time_r (Makefile.am): Likewise.
42799         * modules/timegm (Makefile.am): Likewise.
42800         * modules/tmpfile-safer (Makefile.am): Likewise.
42801         * modules/unistd-safer (Makefile.am): Likewise.
42802         * modules/unlinkdir (Makefile.am): Likewise.
42803         * modules/userspec (Makefile.am): Likewise.
42804         * modules/utime (Makefile.am): Likewise.
42805         * modules/utimecmp (Makefile.am): Likewise.
42806         * modules/utimens (Makefile.am): Likewise.
42807         * modules/vasnprintf (Makefile.am): Likewise.
42808         * modules/vasprintf (Makefile.am): Likewise.
42809         * modules/vsnprintf (Makefile.am): Likewise.
42810         * modules/xalloc (Makefile.am): Likewise.
42811         * modules/xgetcwd (Makefile.am): Likewise.
42812         * modules/xnanosleep (Makefile.am): Likewise.
42813         * modules/xreadlink (Makefile.am): Likewise.
42814         * modules/xstrtod (Makefile.am): Likewise.
42815         * modules/xstrtol (Makefile.am): Likewise.
42816         * modules/xstrtold (Makefile.am): Likewise.
42817         * modules/yesno (Makefile.am): Likewise.
42818
42819 2006-10-12  Jim Meyering  <jim@meyering.net>
42820
42821         * m4/getloadavg.m4: Revert the change below.
42822
42823         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
42824         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
42825         fail with a symlink, which is what coreutils' ./bootstrap now
42826         creates by default.
42827
42828 2006-10-12  Bruno Haible  <bruno@clisp.org>
42829
42830         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
42831         mingw.
42832         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
42833         MSVC and mingw explicitly.
42834
42835 2006-10-11  Simon Josefsson  <jas@extundo.com>
42836             Bruno Haible  <bruno@clisp.org>
42837
42838         Add support for multiple gnulib-tool invocations in the scope of a
42839         single configure.ac file.
42840         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
42841         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
42842         with the same contents as the _LIBADD variable.
42843         (func_emit_initmacro_start, func_emit_initmacro_end,
42844         func_emit_initmacro_done): New functions.
42845         (func_import, func_create_testdir): Invoke them. Allow the identifiers
42846         gl_LIBOBJS and gl_LTLIBOBJS.
42847
42848 2006-10-11  Bruno Haible  <bruno@clisp.org>
42849
42850         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
42851         (func_create_testdir): Don't create po/Makefile.am, don't invoke
42852         autoreconf. Instead, invoke autopoint explicitly but move back the
42853         *.m4 files from gnulib.
42854
42855 2006-10-11  Bruno Haible  <bruno@clisp.org>
42856
42857         * gnulib-tool (func_usage): Make module names after --create-testdir
42858         optional.
42859         (func_create_testdir): If no module was specified, use nearly all
42860         modules.
42861
42862 2006-10-12  Jim Meyering  <jim@meyering.net>
42863
42864         Big performance improvement for fts-based tools that use FTS_NOSTAT.
42865         Avoid spurious inode-mismatch problems on non-POSIX file systems.
42866         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
42867         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
42868         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
42869         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
42870         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
42871         (fts_set_stat_required): New function.
42872         (fts_open): Defer the calls to fts_stat, if possible or requested.
42873         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
42874         into fts_stat itself.
42875         (fts_read): Perform any required (deferred) fts_stat call.
42876         (fts_build): Likewise, for the directory we're about to open and read.
42877         In the readdir loop, carefully decide whether each entry will require
42878         an eventual call to fts_stat, using dirent.d_type info if available.
42879         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
42880         a command line argument into this function.  Update all callers.
42881         Map a return value of FTS_DOT to FTS_D for a command line argument.
42882         * modules/fts (Depends-on): Add d-type.  Alphabetize.
42883         Thanks to Miklos Szeredi for his tenacity and for the initial
42884         bug report about "find" failing on a FUSE-based file system.
42885
42886         * lib/fts.c (fts_open): Use consistent indentation.
42887
42888 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42889
42890         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
42891         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
42892         reported by Jim Meyering.  All uses of cache variables renamed
42893         to match Autoconf's.
42894         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
42895         the other one.
42896
42897         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
42898         Fix misspelling in diagnostic.
42899
42900 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42901
42902         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
42903         defined.  Problem reported by Matthew Woehlke.
42904
42905         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
42906         Add support for Tandem NonStop R series.
42907         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
42908         Use new macro.
42909
42910         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
42911         (has_trailing_slash): Omit size arg; all callers changed.
42912         Omit 'inline', since it doesn't help performance and we'd
42913         need to configure it.
42914         Don't count //, ///, etc. as having a trailing slash.
42915         As a side effect, this removes a C99ism reported by Matthew Woehlke.
42916         (rpl_rename_dest_slash): On failure, use rename's errno rather
42917         than (in some cases) an incorrect or junk errno.
42918         Simplify code by removing need to compute length; this does
42919         cause it to make two passes instead of one over the file name,
42920         but it's worth it.
42921
42922         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
42923         change, since Autoconf's version may no longer be appropriate now
42924         that we are using CVS Autoconf's version.  Add support for Tandem.
42925
42926 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42927             Bruno Haible  <bruno@clisp.org>
42928
42929         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
42930         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
42931         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
42932         gl_AC_TYPE_LONG_LONG.
42933
42934         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
42935         instead of HAVE_LONG_LONG.
42936         * lib/printf-args.c (printf_fetchargs): Likewise.
42937         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
42938         * lib/vasnprintf.c (VASNPRINTF): Likewise.
42939         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
42940         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
42941         gl_AC_TYPE_LONG_LONG.
42942
42943 2006-10-11  Bruno Haible  <bruno@clisp.org>
42944
42945         * m4/longlong.m4: Add comments.
42946         * m4/ulonglong.m4: Likewise.
42947
42948 2006-10-10  Bruno Haible  <bruno@clisp.org>
42949
42950         Make it possible to #define stpcpy, strdup to aliases.
42951         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
42952         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
42953
42954 2006-10-10  Bruno Haible  <bruno@clisp.org>
42955
42956         Make it possible to #define gcd to an alias.
42957         * lib/gcd.c: Include config.h.
42958
42959 2006-10-10  Bruno Haible  <bruno@clisp.org>
42960
42961         Make it possible to #define c_isascii to an alias.
42962         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
42963         defined. Undefine the macros before defining them, to avoid gcc
42964         warnings.
42965         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
42966         define NO_C_CTYPE_MACROS early.
42967
42968 2006-10-10  Bruno Haible  <bruno@clisp.org>
42969
42970         Make it possible to #define set_program_name to an alias.
42971         * lib/progname.c: Don't undefine set_program_name; instead, undefine
42972         ENABLE_RELOCATABLE early.
42973
42974 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42975
42976         Port to Tandem NSK OSS, which has 64-bit signed int but at most
42977         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
42978         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
42979         More generally, don't assume that 64-bit signed int is available
42980         if unsigned int is, and vice versa.
42981         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
42982         unsigned symbols, not on their signed counterparts.
42983         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
42984         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
42985         (UINT64_C, UINTMAX_C):
42986         Likewise.
42987         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
42988         unsigned counterparts.
42989         (Have_long_long, Unsigned): New macros.
42990         (Int): Renamed from INT.
42991         (strtoimax): Use the new macros.
42992         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
42993         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
42994         * modules/inttypes (inttypes.h): Substitute
42995         HAVE_UNSIGNED_LONG_LONG_INT.
42996         * modules/stdint (stdint.h): Likewise.
42997         (Files): Add m4/ulonglong.m4.
42998
42999 2006-10-10  Bruno Haible  <bruno@clisp.org>
43000
43001         Fix a gcc -Wshadow warning.
43002         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
43003         to 'bucket'.
43004         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
43005         gl_linked_indexof_from_to): Likewise.
43006         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
43007         Likewise.
43008         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
43009         Likewise.
43010         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
43011         Reported by Eric Blake.
43012
43013 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
43014
43015         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
43016         for NetBSD.  Problem reported by Bruno Haible.
43017
43018 2006-10-09  Jim Meyering  <jim@meyering.net>
43019
43020         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
43021         Patch from Bruno Haible.
43022
43023 2006-10-09  Jim Meyering  <jim@meyering.net>
43024
43025         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
43026         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
43027         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
43028
43029 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
43030
43031         Don't include <config.h> twice; this doesn't work in some cases,
43032         e.g., when config.h has "#define intmax_t long long int" and
43033         we include <config.h>, <inttypes.h>, <config.h> in that order.
43034         Problem reported by Matthew Woehlke in:
43035         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
43036         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
43037         * lib/fts-cycle.c: Don't include config.h.
43038         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
43039         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
43040         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
43041         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
43042         inttypes.h.
43043         * lib/xstrtoumax.c: Likewise.
43044         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
43045         __strtol and the like, so that this module is more like its siblings.
43046         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
43047         Remove; no longer needed now that we assume gnulib inttypes.h.
43048
43049 2006-10-08  Bruno Haible  <bruno@clisp.org>
43050
43051         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
43052         option.
43053
43054 2006-10-07  Jim Meyering  <jim@meyering.net>
43055
43056         * modules/inttypes (inttypes.h): Revert what seems to have been
43057         an inadvertent part of today's change: use "|", not "/" in the
43058         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
43059
43060 2006-10-07  Bruno Haible  <bruno@clisp.org>
43061
43062         * modules/sublist: New file.
43063
43064 2006-10-07  Bruno Haible  <bruno@clisp.org>
43065
43066         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
43067         * modules/argz (argz.h): Likewise.
43068         * modules/arpa_inet (arpa/inet.h): Likewise.
43069         * modules/byteswap (byteswap.h): Likewise.
43070         * modules/configmake (configmake.h): Likewise.
43071         * modules/fcntl (fcntl.h): Likewise.
43072         * modules/fnmatch (fnmatch.h): Likewise.
43073         * modules/getopt (getopt.h): Likewise.
43074         * modules/glob (glob.h): Likewise.
43075         * modules/inttypes (inttypes.h): Likewise.
43076         * modules/netinet_in (netinet/in.h): Likewise.
43077         * modules/poll (poll.h): Likewise.
43078         * modules/stdbool (stdbool.h): Likewise.
43079         * modules/stdint (stdint.h): Likewise.
43080         * modules/sys_select (sys/select.h): Likewise.
43081         * modules/sys_socket (sys/socket.h): Likewise.
43082         * modules/sys_stat (sys/stat.h): Likewise.
43083         * modules/sysexits (sysexits.h): Likewise.
43084         * modules/unistd (unistd.h): Likewise.
43085         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
43086         Add a "DO NOT EDIT" comment to the generated file.
43087         (func_import): Likewise for gnulib-comp.m4.
43088
43089 2006-10-07  Bruno Haible  <bruno@clisp.org>
43090
43091         * lib/gl_sublist.h: New file.
43092         * lib/gl_sublist.c: New file.
43093
43094 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43095
43096         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
43097         name (relative to the original working directory) and the file
43098         name component (relative to the temporary working directory).  All
43099         callers changed.
43100         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
43101         * lib/mkdir-p.c (make_dir_parents): Likewise.
43102         * lib/mkdir-p.h (make_dir_parents): Likewise.
43103
43104 2006-10-06  Eric Blake  <ebb9@byu.net>
43105
43106         Define several macros for use by the clean-temp module.
43107         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
43108         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
43109         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
43110
43111         * lib/clean-temp.h (close_stream_temp): New declaration.
43112         * lib/clean-temp.c (includes): Pull in headers according to what
43113         other modules are in use.
43114         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
43115
43116 2006-10-06  Bruno Haible  <bruno@clisp.org>
43117
43118         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
43119         instead of fopen, fwriteerror.
43120
43121 2006-10-06  Bruno Haible  <bruno@clisp.org>
43122
43123         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
43124         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
43125         int.
43126         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
43127         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
43128         Return an error indicator.
43129         Suggested by Eric Blake.
43130
43131 2006-10-06  Bruno Haible  <bruno@clisp.org>
43132
43133         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
43134         Reported by Eric Blake.
43135
43136 2006-10-06  Bruno Haible  <bruno@clisp.org>
43137
43138         * modules/closeout (Description): Mention stderr too.
43139
43140 2006-10-06  Bruno Haible  <bruno@clisp.org>
43141         and Paul Eggert  <eggert@cs.ucla.edu>
43142
43143         * lib/closeout.c (close_stdout): Also close stderr.
43144         * lib/closeout.h: Update comment.
43145
43146 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
43147
43148         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
43149         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
43150         * lib/dirchownmod.c: Include lchown.h.
43151         * lib/lchown.c: Don't include files that lchown.h now includes.
43152         Don't declare chown, since lchown.h now does that.
43153         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
43154         (lchown): Define to rpl_chown if lchown is declared but
43155         does not exist.  Declare using a prototype if lchown is not
43156         declared.  Add a copyright notice.
43157         * lib/mkstemp.h: Include <unistd.h>.
43158         * lib/openat.c: Include lchown.h.
43159
43160         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
43161         we now test for that separately.
43162         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
43163         rather than O_NOFOLLOW, when testing whether it's possible to
43164         avoid a race condition reliably.
43165         * lib/savewd.c (savewd_chdir): Likewise.
43166
43167         Remove macros that are no longer needed now that stdint.h is
43168         reliable.
43169         * lib/fsusage.c (UINTMAX_MAX): Remove.
43170         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
43171         * lib/utimecmp.c (SIZE_MAX): Remove.
43172
43173         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
43174
43175         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
43176         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
43177         O_NOATIME works.
43178
43179 2006-10-05  Bruno Haible  <bruno@clisp.org>
43180
43181         * lib/gl_list.h (gl_sortedlist_search_from_to,
43182         gl_sortedlist_indexof_from_to): New declarations.
43183         (gl_list_implementation): New fields sortedlist_search_from_to,
43184         sortedlist_indexof_from_to.
43185         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
43186         inline functions.
43187         * lib/gl_list.c (gl_sortedlist_search_from_to,
43188         gl_sortedlist_indexof_from_to): New functions.
43189         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
43190         function.
43191         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
43192         (gl_array_sortedlist_search_from_to): New function.
43193         (gl_array_list_implementation): Update.
43194         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
43195         function.
43196         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
43197         (gl_carray_sortedlist_search_from_to): New function.
43198         (gl_carray_list_implementation): Update.
43199         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
43200         gl_linked_sortedlist_indexof_from_to): New functions.
43201         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43202         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43203         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
43204         gl_tree_sortedlist_indexof_from_to): New functions.
43205         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43206         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43207         Update.
43208         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43209         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
43210         Update.
43211
43212 2006-10-05  Bruno Haible  <bruno@clisp.org>
43213
43214         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
43215         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
43216         (struct gl_list_implementation): Add fields search_from_to,
43217         indexof_from_to. Remove fields search, indexof.
43218         (gl_list_search): Use the search_from_to method.
43219         (gl_list_search_from, gl_list_search_from_to): New functions.
43220         (gl_list_indexof): Use the indexof_from_to method.
43221         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43222         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
43223         (gl_list_search_from, gl_list_search_from_to): New functions.
43224         (gl_list_indexof): Use the indexof_from_to method.
43225         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43226         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
43227         gl_array_indexof. Add start_index, end_index arguments.
43228         (gl_array_search_from_to): Renamed from gl_array_search. Add
43229         start_index, end_index arguments.
43230         (gl_array_remove, gl_array_list_implementation): Update.
43231         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
43232         gl_carray_indexof. Add start_index, end_index arguments.
43233         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
43234         start_index, end_index arguments.
43235         (gl_carray_remove, gl_carray_list_implementation): Update.
43236         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
43237         gl_linked_search. Add start_index, end_index arguments.
43238         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
43239         start_index, end_index arguments.
43240         (gl_linked_remove): Update.
43241         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43242         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43243         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
43244         field to 'size_t'.
43245         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
43246         gl_tree_search. Add start_index, end_index arguments.
43247         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43248         start_index, end_index arguments.
43249         (gl_tree_remove): Update.
43250         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43251         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43252         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
43253         function.
43254         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
43255         gl_tree_search. Add start_index, end_index arguments.
43256         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43257         start_index, end_index arguments.
43258         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43259         Update.
43260         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
43261
43262 2006-10-05  Bruno Haible  <bruno@clisp.org>
43263
43264         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
43265
43266         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
43267         fwriteerror_temp): New declarations.
43268         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
43269         (descriptors): New variable.
43270         (cleanup): First, close the descriptors.
43271         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
43272         fclose_temp, fwriteerror_temp): New functions.
43273
43274 2006-10-04  Jim Meyering  <jim@meyering.net>
43275
43276         * lib/fts.c (fts_open): Tiny comment change.
43277
43278 2006-10-04  Bruno Haible  <bruno@clisp.org>
43279
43280         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
43281         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
43282         gl_LOCK_BODY.
43283         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
43284         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
43285         gl_LOCK_EARLY_BODY.
43286         (gl_LOCK): Require gl_LOCK_BODY.
43287
43288 2006-10-04  Bruno Haible  <bruno@clisp.org>
43289
43290         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
43291         (gl_oset_search_atleast): New declaration.
43292         (struct gl_oset_implementation): Add field 'search_atleast'.
43293         (gl_oset_search_atleast): New inline function.
43294         * lib/gl_oset.c (gl_oset_search_atleast): New function.
43295         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
43296         (gl_array_oset_implementation): Update.
43297         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
43298         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
43299         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
43300
43301 2006-10-04  Bruno Haible  <bruno@clisp.org>
43302
43303         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
43304
43305 2006-10-03  Bruno Haible  <bruno@clisp.org>
43306
43307         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
43308         from gl_avltreehash_list_implementation.
43309
43310 2006-10-03  Bruno Haible  <bruno@clisp.org>
43311
43312         * lib/gl_oset.c (gl_oset_add): Fix return type.
43313
43314 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
43315
43316         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
43317
43318 2006-10-02  Eric Blake  <ebb9@byu.net>
43319
43320         * modules/strnlen (Depends-on): Add extensions.
43321
43322 2006-10-02  Eric Blake  <ebb9@byu.net>
43323
43324         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
43325         definition in 2.60+.
43326
43327 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
43328
43329         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
43330         checks.
43331
43332 2006-10-02  Bruno Haible  <bruno@clisp.org>
43333
43334         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
43335         to the AUTOMAKE_OPTIONS.
43336         Reported by Jim Meyering.
43337
43338 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
43339
43340         Work around bug in Solaris 10 /proc file system:
43341         /proc/self/fd/NNN/.. isn't the parent directory of
43342         the directory whose file descriptor is NNN.  This needs to
43343         be worked around at run time, not compile time, since a
43344         program might be built on Solaris 8, where things work, and
43345         run on Solaris 10.
43346         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
43347         to use the following interface instead:
43348         (OPENAT_BUFFER_SIZE): New macro.
43349         (openat_proc_name): New function.
43350         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
43351         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
43352         Likewise.
43353         * lib/openat-proc.c: New file.
43354         * modules/openat (Files): Add lib/openat-proc.c.
43355         (Depends-on): Add same-inode, stdbool.
43356         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
43357
43358 2006-09-29  Bruno Haible  <bruno@clisp.org>
43359
43360         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
43361         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
43362         argument. Set stdout_closed before testing for ferror, not after.
43363         (fwriteerror, fwriteerror_no_ebadf): New functions.
43364
43365 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43366
43367         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
43368
43369 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
43370
43371         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
43372         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
43373
43374 2006-09-28  Jim Meyering  <jim@meyering.net>
43375
43376         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
43377         Include <unistd.h>.
43378
43379 2006-09-28  Bruno Haible  <bruno@clisp.org>
43380
43381         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
43382         * modules/linkedhash-list (Depends-on): Likewise.
43383         * modules/rbtreehash-list (Depends-on): Likewise.
43384
43385 2006-09-28  Bruno Haible  <bruno@clisp.org>
43386
43387         * lib/strndup.h: Simplify the redefinition of strndup.
43388         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
43389         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
43390
43391 2006-09-28  Bruno Haible  <bruno@clisp.org>
43392
43393         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
43394         * lib/gl_linkedhash_list.c: Likewise.
43395         * lib/gl_rbtreehash_list.c: Likewise.
43396
43397 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
43398
43399         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
43400         getaddrinfo.
43401
43402         * lib/__fpending.h: Don't include <stdio_ext.h> unless
43403         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
43404         it causes <stdio_ext.h> to cause a compile-time error.
43405         Problem reported by Nelson H. F. Beebe.
43406         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
43407         of HAVE_DECL___PENDING.
43408
43409         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
43410         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
43411         declaration.
43412
43413 2006-09-27  Jim Meyering  <jim@meyering.net>
43414
43415         This file could end up with a definition for a function
43416         named __strndup, rather than rpl_strndup on a system with
43417         incomplete weak_alias support.
43418         * lib/strndup.c (strndup): Rename from __strndup.
43419         Remove #defines that used to map __strndup to strndup.
43420         Don't use K&R prototypes.
43421         Remove LIBC-related code, since this file is not sync'd with glibc.
43422         * lib/strndup.h: Revamp, accordingly.
43423         * m4/strndup.m4: Modernize.
43424
43425 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
43426
43427         * modules/savewd (Depends-on): Add 'raise'.
43428         * lib/savewd.c: Include <signal.h>, for 'raise'.
43429
43430 2006-09-26  Jim Meyering  <jim@meyering.net>
43431
43432         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
43433         when we detect Darwin 8.7.0's acl_get_file bug.
43434         Rearrange to perform the new (below) run-test while $LIBS
43435         contains any acl-related library.  Set USE_ACL at the end.
43436         (gl_ACL_GET_FILE): New function.
43437
43438 2006-09-26  Eric Blake  <ebb9@byu.net>
43439
43440         * lib/verror.c: Include <config.h> unconditionally.
43441
43442 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
43443
43444         * modules/clock-time (Maintainer): Add self.
43445         * modules/getlogin_r (Depends-on): Add extensions.
43446
43447 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43448
43449         * modules/clock-time: New module.
43450         * modules/nanosleep (Depends-on): Add clock-time.
43451         * modules/gethrxtime (Depends-on): Likewise.
43452         * modules/gettime (Depends-on): Likewise.
43453         * modules/settime (Depends-on): Likewise.
43454
43455         * modules/fts-lgpl: Depend on openat.
43456         * modules/mkancesdirs: Depend on savewd.
43457         * modules/mkdir-p: Likewise.
43458
43459 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43460
43461         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
43462
43463         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
43464         `gl_have_arbitrary_file_name_length_limit' to
43465         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
43466         actually works between configure runs.
43467
43468 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43469             Bruno Haible  <bruno@clisp.org>
43470
43471         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
43472
43473 2006-09-25  Jim Meyering  <jim@meyering.net>
43474
43475         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
43476         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
43477
43478 2006-09-25  Eric Blake  <ebb9@byu.net>
43479
43480         * gnulib-tool (func_import, func_create_testdir): Fix typos in
43481         exec's in 2006-09-18 patch when shuffling fds.
43482
43483 2006-09-25  Bruno Haible  <bruno@clisp.org>
43484
43485         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
43486         Reported by Jim Meyering.
43487
43488 2006-09-24  Jim Meyering  <jim@meyering.net>
43489
43490         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
43491         compare a pointer against a literal "0".  That caused failures with
43492         at least HP-UX's hpcc.
43493
43494 2006-09-22  Simon Josefsson  <jas@extundo.com>
43495
43496         * modules/gc-sha1:
43497         * modules/gc-md4:
43498         * modules/gc-hmac-sha1:
43499         * modules/gc-hmac-md5:
43500         * modules/gc-des:
43501         * modules/gc-arcfour: Distribute more files.
43502
43503 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43504
43505         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
43506         (gl_linked_iterator_from_to): Initialize struct completely.
43507         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
43508         (gl_tree_iterator_from_to): Likewise
43509         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
43510         * lib/gl_array_list.c [lint] (gl_array_iterator)
43511         (gl_array_iterator_from_to): Likewise.
43512         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
43513         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
43514         (gl_carray_iterator_from_to): Likewise.
43515
43516         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
43517         * lib/md4.c (md4_process_block): Remove unused variable.
43518         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
43519         parentheses for clarity.
43520
43521 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43522
43523         * modules/bison-i18n (Depends-on): Add gettext.
43524
43525 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43526
43527         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
43528         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
43529         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
43530         also add missing comma that caused broken test.
43531         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
43532         stdlib.h, for `abort'.
43533         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
43534         variables.
43535         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
43536         include unistd.h if present, for `rmdir'.
43537         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
43538         variables.
43539         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
43540         in the process include standard headers for prototypes.
43541         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
43542         gets declared on GNU/Linux.
43543         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
43544         unistd.h, for `rmdir'.
43545         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
43546
43547         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
43548         always true.
43549         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
43550
43551         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
43552
43553 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43554
43555         * gnulib-tool (func_version): Create output all at once.  This
43556         may help avoid triggering unnecessary SIGPIPEs, and at any
43557         rate it doesn't hurt.
43558
43559 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43560             Bruno Haible  <bruno@clisp.org>
43561
43562         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
43563         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
43564         * m4/signed.m4 (bh_C_SIGNED): Likewise.
43565
43566         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
43567         (gl_FUNC_VASPRINTF): Invoke it.
43568
43569 2006-09-22  Bruno Haible  <bruno@clisp.org>
43570
43571         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
43572         getloadavg.c as first argument.
43573
43574 2006-09-22  Bruno Haible  <bruno@clisp.org>
43575
43576         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
43577         at the beginning of the gl_INIT macro.
43578         * modules/getloadavg (configure.ac): Pass $gl_source_base to
43579         gl_GETLOADAVG.
43580
43581 2006-09-22  Bruno Haible  <bruno@clisp.org>
43582
43583         * gnulib-tool (func_create_megatestdir): Don't include the config-h
43584         module.
43585         Suggested by Ralf Wildenhues.
43586
43587 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
43588
43589         Import this patch from libc:
43590
43591         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
43592
43593         * lib/regex_internal.c (re_string_reconstruct): Handle
43594         offset < pstr->valid_raw_len && pstr->offsets_needed case.
43595         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
43596         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
43597         re_string_context_at.
43598
43599         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
43600         now requires it.
43601         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
43602         gl_REGEX now does it for us.
43603         (gl_REGEX): Add test taken from
43604         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
43605
43606         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
43607         Check that large offsets work.  Modernize Autoconf usages.
43608         Prefer "yes" to mean a good thing rather than a bad.
43609         Don't put "#define mkstemp" in config.h, as this might interfere
43610         with standard system headers that "#define mkstemp mkstemp64".
43611
43612         * modules/mkstemp (Depends-on): Add extensions, so that
43613         mkstemp is visible on some platforms.
43614         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
43615         (Include): Change to "mkstemp.h" from <stdlib.h>.
43616         (Files): Add mkstemp.h.
43617
43618         * lib/mkstemp.h: New file, since some standard headers
43619         #define mkstemp.
43620         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
43621         Include "mkstemp.h".
43622         Make the _LIBC code resemble glibc original more,
43623         e.g., use K&R style.
43624         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
43625         (mkstemp): Remove, since mkstemp.h does this for us.
43626         * lib/stdlib--.h: Include mkstemp.h.
43627
43628         Import this patch from libc:
43629
43630         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
43631
43632         * lib/tempname.c (__gen_tempname): Change attempts_min
43633         into a macro.  Use preprocessor to decide how to initialize
43634         attempts [Coverity CID 67].
43635
43636 2006-09-20  Bruno Haible  <bruno@clisp.org>
43637
43638         * lib/mkdtemp.c: Import from libc.
43639         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
43640                 * sysdeps/posix/tempname.c (__gen_tempname): Change
43641                 attempts_min into a macro.  Use preprocessor to decide how to
43642                 initialize attempts [Coverity CID 67].
43643         2001-11-27  Paul Eggert  <eggert@twinsun.com>
43644                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
43645                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
43646
43647 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43648
43649         * gnulib-tool (func_exit): New function, to allow to pass the
43650         exit status portably through the trap.  Use everywhere.
43651         (--help, --version): Signal a write error.
43652         (trap): catch SIGPIPE, for write errors.
43653         Exit at the end of the trap, with the correct exit status.
43654
43655 2006-09-19  Karl Berry  <karl@gnu.org>
43656
43657         * doc/gnulib.texi: note about the license texinfo files.
43658
43659 2006-09-19  Eric Blake  <ebb9@byu.net>
43660
43661         * gnulib-tool: Avoid space-tab.
43662
43663 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43664
43665         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
43666         that prevented coreutils 6.1 from building.  Problem reported
43667         by Petter Reinholdtsen.
43668
43669 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43670
43671         * gnulib-tool (avoidlist): Fix typo that broke options like
43672         --avoid=lock that are used by coreutils bootstrap.
43673
43674 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
43675
43676         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
43677         more systematically.
43678
43679 2006-09-18  Jim Meyering  <jim@meyering.net>
43680
43681         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
43682
43683 2006-09-18  Bruno Haible  <bruno@clisp.org>
43684
43685         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
43686
43687 2006-09-18  Bruno Haible  <bruno@clisp.org>
43688
43689         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
43690         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
43691         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
43692         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
43693         * m4/gettext.m4: Require autoconf >= 2.52.
43694         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
43695         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
43696         of gl_cv_header_inttypes_h.
43697
43698 2006-09-18  Bruno Haible  <bruno@clisp.org>
43699
43700         * lib/javaversion.c: Include configmake.h.
43701
43702 2006-09-18  Bruno Haible  <bruno@clisp.org>
43703
43704         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
43705         avoid that the while loops be executed in a subshell.
43706
43707 2006-09-18  Bruno Haible  <bruno@clisp.org>
43708
43709         * MODULES.html.sh (func_module): Break long lines.
43710         Suggested by Bruce Korb <bkorb@gnu.org>.
43711
43712 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43713
43714         Speed up by a factor of 1.12.
43715         * gnulib-tool (nl): New variable.
43716         (func_import): Rewrite include directive extraction to only read each
43717         directive once.
43718
43719 2006-09-17  Bruno Haible  <bruno@clisp.org>
43720
43721         * modules/javaversion (Makefile.am): Remove DEFS setting.
43722         (Depends-on): Add configmake, for PKGDATADIR definition.
43723
43724 2006-09-17  Bruno Haible  <bruno@clisp.org>
43725
43726         * gnulib-tool (func_create_testdir): Rewrite all files at once.
43727
43728 2006-09-17  Bruno Haible  <bruno@clisp.org>
43729
43730         * gnulib-tool (func_append): New function, stolen from libtool.m4.
43731         (func_modules_transitive_closure, func_modules_add_dummy,
43732         func_modules_to_filelist, func_import, func_create_testdir,
43733         func_create_megatestdir, ...): Use it wherever possible.
43734         Suggested by Ralf Wildenhues.
43735
43736 2006-09-16  Karl Berry  <karl@gnu.org>
43737
43738         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
43739         to avoid sectioning errors.
43740         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
43741         [ifinfo]: blank line after @center-ed titles.
43742         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
43743         Spell FSF address consistently with others.
43744         (These changes approved by rms.)
43745
43746 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43747
43748         Speed up by a factor of 1.61.
43749         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
43750         already checked module names again.
43751
43752 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43753
43754         Speed up by a factor of 1.13.
43755         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
43756         for new_files, and the input to func_add_or_update.
43757
43758 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43759
43760         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
43761         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
43762
43763 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43764
43765         * modules/mkancesdirs (Depends-on): Add fcntl.
43766         * modules/savewd: New file.
43767         * MODULES.html.sh (File system functions): Add savewd.
43768
43769         * modules/configmake (Makefile.am): Add support for the
43770         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
43771
43772 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43773
43774         * m4/savewd.m4: New file.
43775
43776 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43777
43778         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
43779         (dirchownmod): New arg FD.  All callers changed.
43780         Use FD rather than opening the directory ourself, as opening is
43781         now the caller's responsibility.
43782         * lib/dirchownmod.h: Likewise.
43783         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
43784         hosts that require <sys/types.h> before <sys/stat.h>.  Include
43785         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
43786         (test_dir): Remove.
43787         (mkancesdirs): Return length of prefix of FILE that has already
43788         been made, or -2 if there is a child doing the work.  Redo
43789         algorithm so that it is O(N) rather than O(N**2).  Optimize away
43790         ".", and treat ".." specially since it might stray back into
43791         already-created areas.  Use a subprocess if necessary.  New arg
43792         WD; all users changed.  MAKE_DIR function should now return 1
43793         if it creates a directory that is not readable.  Return -2 if
43794         a child process is spun off.
43795         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
43796         Adjust signature to match code.
43797         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
43798         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
43799         all users changed.
43800         * lib/savewd.c, lib/savewd.h: New files.
43801
43802 2006-09-15  Jim Meyering  <jim@meyering.net>
43803
43804         * modules/rename-dest-slash: New module.
43805         * MODULES.html.sh (posix_compat): Add it here.
43806
43807         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
43808
43809 2006-09-15  Jim Meyering  <jim@meyering.net>
43810
43811         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
43812         file.
43813
43814         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
43815
43816 2006-09-15  Jim Meyering  <jim@meyering.net>
43817
43818         * lib/rename-dest-slash.c (has_trailing_slash): Use
43819         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
43820         (rpl_rename_dest_slash): Perform the cheaper trailing slash
43821         test before testing whether SRC is a directory.
43822         Suggestions from Bruno Haible.
43823
43824         Avoid a warning about an unused variable.
43825         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
43826         into the #ifdef block where it's used.
43827
43828         * lib/rename-dest-slash.c: New file.
43829
43830 2006-09-14  Bruno Haible  <bruno@clisp.org>
43831
43832         * lib/allocsa.c: Include <config.h> unconditionally.
43833         * lib/asnprintf.c: Likewise.
43834         * lib/asprintf.c: Likewise.
43835         * lib/c-strcasecmp.c: Likewise.
43836         * lib/c-strcasestr.c: Likewise.
43837         * lib/c-strncasecmp.c: Likewise.
43838         * lib/c-strstr.c: Likewise.
43839         * lib/classpath.c: Likewise.
43840         * lib/clean-temp.c: Likewise.
43841         * lib/concatpath.c: Likewise.
43842         * lib/copy-file.c: Likewise.
43843         * lib/csharpcomp.c: Likewise.
43844         * lib/csharpexec.c: Likewise.
43845         * lib/execute.c: Likewise.
43846         * lib/fatal-signal.c: Likewise.
43847         * lib/findprog.c: Likewise.
43848         * lib/fwriteerror.c: Likewise.
43849         * lib/gl_array_list.c: Likewise.
43850         * lib/gl_array_oset.c: Likewise.
43851         * lib/gl_avltree_list.c: Likewise.
43852         * lib/gl_avltree_oset.c: Likewise.
43853         * lib/gl_avltreehash_list.c: Likewise.
43854         * lib/gl_carray_list.c: Likewise.
43855         * lib/gl_linked_list.c: Likewise.
43856         * lib/gl_linkedhash_list.c: Likewise.
43857         * lib/gl_list.c: Likewise.
43858         * lib/gl_oset.c: Likewise.
43859         * lib/gl_rbtree_list.c: Likewise.
43860         * lib/gl_rbtree_oset.c: Likewise.
43861         * lib/gl_rbtreehash_list.c: Likewise.
43862         * lib/imaxabs.c: Likewise.
43863         * lib/imaxdiv.c: Likewise.
43864         * lib/javacomp.c: Likewise.
43865         * lib/javaexec.c: Likewise.
43866         * lib/javaversion.c: Likewise.
43867         * lib/linebreak.c: Likewise.
43868         * lib/localcharset.c: Likewise.
43869         * lib/lock.c: Likewise.
43870         * lib/mbchar.c: Likewise.
43871         * lib/mbswidth.c: Likewise.
43872         * lib/mkdtemp.c: Likewise.
43873         * lib/pipe.c: Likewise.
43874         * lib/printf-args.c: Likewise.
43875         * lib/printf-parse.c: Likewise.
43876         * lib/progname.c: Likewise.
43877         * lib/progreloc.c: Likewise.
43878         * lib/readlink.c: Likewise.
43879         * lib/sh-quote.c: Likewise.
43880         * lib/stpcpy.c: Likewise.
43881         * lib/stpncpy.c: Likewise.
43882         * lib/strcasecmp.c: Likewise.
43883         * lib/strcasestr.c: Likewise.
43884         * lib/strcspn.c: Likewise.
43885         * lib/striconv.c: Likewise.
43886         * lib/strncasecmp.c: Likewise.
43887         * lib/strnlen1.c: Likewise.
43888         * lib/strstr.c: Likewise.
43889         * lib/strtok_r.c: Likewise.
43890         * lib/tls.c: Likewise.
43891         * lib/tmpdir.c: Likewise.
43892         * lib/unicodeio.c: Likewise.
43893         * lib/unsetenv.c: Likewise.
43894         * lib/vasnprintf.c: Likewise.
43895         * lib/vasprintf.c: Likewise.
43896         * lib/wait-process.c: Likewise.
43897         * lib/xallocsa.c: Likewise.
43898         * lib/xsetenv.c: Likewise.
43899         * lib/xstriconv.c: Likewise.
43900
43901 2006-09-13  Simon Josefsson  <jas@extundo.com>
43902
43903         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
43904         that internally, suggested by Ralf Wildenhues
43905         <Ralf.Wildenhues@gmx.de>.
43906
43907 2006-09-13  Simon Josefsson  <jas@extundo.com>
43908
43909         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
43910         @LIBOBJS@.
43911         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43912
43913 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
43914
43915         * lib/_fpending.c: Include <config.h> unconditionally, since we no
43916         longer worry about uses that don't define HAVE_CONFIG_H.
43917         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
43918         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
43919         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
43920         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
43921         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
43922         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
43923         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
43924         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
43925         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
43926         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
43927         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
43928         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
43929         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
43930         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
43931         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
43932         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
43933         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
43934         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
43935         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
43936         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
43937         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
43938         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
43939         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
43940         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
43941         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
43942         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
43943         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
43944         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
43945         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
43946         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
43947         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
43948         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
43949         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
43950         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
43951         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
43952         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
43953         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
43954         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
43955         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
43956         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
43957         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
43958         Likewise.
43959
43960 2006-09-13  Eric Blake  <ebb9@byu.net>
43961
43962         * lib/getopt.c: Fix typo in last commit.
43963
43964 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
43965
43966         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
43967         dgettext.
43968
43969 2006-09-12  Jim Meyering  <jim@meyering.net>
43970
43971         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
43972         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
43973         Reported by Nelson H. F. Beebe.
43974
43975 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
43976
43977         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
43978         program_invocation_name and program_invocation_short_name are
43979         initialized.
43980         * lib/argp-namefrob.h: Move declarations of program_invocation_name
43981         and program_invocation_short_name to argp.h, so they are visible
43982         to user programs.
43983         * lib/argp.h: Likewise
43984
43985 2006-09-10  Bruno Haible  <bruno@clisp.org>
43986
43987         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
43988         m4/inttypes_h.m4, m4/uintmax_t.m4.
43989
43990 2006-09-10  Bruno Haible  <bruno@clisp.org>
43991
43992         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
43993         gl_AC_TYPE_UINTMAX_T.
43994
43995 2006-09-10  Bruno Haible  <bruno@clisp.org>
43996
43997         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
43998
43999 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44000
44001         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
44002         convention.  Text proposed by Bruno Haible.
44003         (struct argp_option): Document the use of N_() wrappers.
44004
44005         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
44006         '\v', and translate the two parts separately, instead of feeding
44007         the whole string to gettext.  This allows to exclude
44008         '\v' from the strings visible to the translator by writing doc
44009         strings as N_("..") "\v" N_("..").
44010
44011 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
44012
44013         * config/srclist.txt: Undo latest change; the bug was fixed.
44014
44015 2006-09-09  Bruno Haible  <bruno@clisp.org>
44016
44017         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
44018         assignments if building a library without libtool.
44019         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
44020         in func_emit_lib_Makefile_am.
44021         (func_import): When building a static library libfoo.a, arrange to
44022         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
44023         (func_create_testdir): Likewise.
44024         * modules/gc (configure.ac, Makefile.am): If building statically,
44025         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
44026         * modules/iconvme (configure.ac, Makefile.am): Likewise.
44027         * modules/striconv (configure.ac, Makefile.am): Likewise.
44028         Based on a suggestion by Ralf Wildenhues.
44029
44030 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44031
44032         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
44033         Check for unistd.h too, since Autoconf doesn't assume POSIX.
44034         Also:
44035
44036         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44037         Add year_2050_test to catch glibc bug 2821
44038         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44039
44040         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44041         Prefer #ifdef to #if.
44042
44043         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
44044         Return from 'main' instead of calling 'exit'.
44045
44046 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44047
44048         * lib/mktime.c (guess_time_tm): Fix bug where mktime
44049         returned the maximum time_t value rather than (time_t) -1.
44050         Problem originally reported by William Bardwell
44051         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44052
44053         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44054         Moved to here ...
44055         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44056         ... from here.
44057
44058 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44059
44060         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
44061         2821 is fixed.
44062
44063 2006-09-08  Jim Meyering  <jim@meyering.net>
44064
44065         Don't make generated files read-only.  That would bother too many
44066         people.  However, do retain the ability to work when targets are
44067         read-only: remove the destination and temporary files before writing
44068         them (when generated via sed or echo), or by using the -f option for
44069         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
44070         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44071         * modules/byteswap, modules/configmake, modules/fcntl:
44072         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44073         * modules/localcharset, modules/netinet_in, modules/poll:
44074         * modules/stdbool, modules/stdint, modules/sys_select:
44075         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44076
44077 2006-09-08  Jim Meyering  <jim@meyering.net>
44078
44079         Avoid new build failure on FreeBSD 6.0.
44080         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
44081         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
44082         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
44083
44084 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44085
44086         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
44087
44088 2006-09-07  Jim Meyering  <jim@meyering.net>
44089
44090         Fix global typo in last change: use chmod u-w, not chmod u-x.
44091         Spotted by Paul Eggert and Bruce Korb.
44092         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44093         * modules/byteswap, modules/configmake, modules/fcntl:
44094         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44095         * modules/localcharset, modules/netinet_in, modules/poll:
44096         * modules/stdbool, modules/stdint, modules/sys_select:
44097         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44098
44099 2006-09-06  Jim Meyering  <jim@meyering.net>
44100
44101         Make generated files be read-only.
44102         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
44103         Ensure that each generated file is now read-only.
44104         * modules/argz: Likewise.
44105         * modules/arpa_inet: Likewise.
44106         * modules/byteswap: Likewise.
44107         * modules/configmake: Likewise.
44108         * modules/fcntl: Likewise.
44109         * modules/fnmatch: Likewise.
44110         * modules/getopt: Likewise.
44111         * modules/glob: Likewise.
44112         * modules/inttypes: Likewise.
44113         * modules/netinet_in: Likewise.
44114         * modules/poll: Likewise.
44115         * modules/stdbool: Likewise.
44116         * modules/stdint: Likewise.
44117         * modules/sys_select: Likewise.
44118         * modules/sys_socket: Likewise.
44119         * modules/sys_stat: Likewise.
44120         * modules/sysexits: Likewise.
44121         * modules/localcharset: Same as above, but continue using temporary
44122         file named "t-$@" (why different?) rather than the "$@-t" used
44123         everywhere else.
44124
44125         * modules/sysexits (Makefile.am): Replace literal occurrences
44126         of "sysexit.h" more readable, and more consistent, "$@".
44127
44128 2006-09-06  Bruno Haible  <bruno@clisp.org>
44129
44130         * modules/striconv: New file.
44131         * modules/xstriconv: New file.
44132         * MODULES.html.sh (Internationalization functions): Add striconv,
44133         xstriconv.
44134
44135 2006-09-06  Bruno Haible  <bruno@clisp.org>
44136
44137         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
44138         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
44139         not using libtool correctly.
44140
44141 2006-09-06  Bruno Haible  <bruno@clisp.org>
44142
44143         * lib/striconv.h: New file.
44144         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
44145         iconvstring.c.
44146         * lib/xstriconv.h: New file.
44147         * lib/xstriconv.c: New file.
44148
44149 2006-09-06  Bruno Haible  <bruno@clisp.org>
44150
44151         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
44152         lib_..._LDFLAGS.
44153
44154 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44155
44156         * lib/argz_.h: Sync from Libtool.
44157
44158         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
44159                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44160
44161         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
44162
44163 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44164
44165         * modules/trim: New file.
44166
44167 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44168
44169         * lib/trim.h: New file.
44170         * lib/trim.c: New file.
44171
44172 2006-09-05  Bruno Haible  <bruno@clisp.org>
44173
44174         * MODULES.html.sh (String handling): Add trim.
44175
44176 2006-09-04  Karl Berry  <karl@gnu.org>
44177
44178         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
44179         until next release.
44180
44181 2006-09-03  Bruno Haible  <bruno@clisp.org>
44182
44183         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
44184         correctly.
44185
44186 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44187
44188         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
44189         not gl_GETLOADAVG.  Omit unneeded semicolons.
44190         Problems reported by Ralf Wildenhues in
44191         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44192         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
44193         at the end, which is the usual gnulib style.
44194
44195         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
44196         of doing all the work ourselves.
44197         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
44198         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
44199
44200 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44201
44202         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
44203         Problem reported by Ralf Wildenhues in
44204         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44205
44206         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
44207         HAVE_STRUCT_STATFS_F_FSTYPENAME.
44208
44209 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44210
44211         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
44212         yesterday's patch by changing test -n to test -z.
44213
44214 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44215
44216         * modules/getloadavg (Files): Add m4/getloadavg.m4.
44217         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
44218         the former is now obsolescent.
44219
44220         * modules/chdir-long (Depends-on): Add fcntl.
44221
44222 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44223
44224         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
44225         obsolescent, and programs should use gnulib instead.
44226         * m4/getloadavg.m4: New file, with contents taken from Autoconf
44227         but with prefixes changed.
44228
44229 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44230
44231         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
44232         or stdbool.h, because they might not exist while configuring.
44233
44234         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
44235         Don't include unistd.h or limits.h; not needed, since chdir-long.h
44236         does that for us.
44237         (O_DIRECTORY): Remove.
44238
44239 2006-08-31  Eric Blake  <ebb9@byu.net>
44240
44241         * gnulib-tool: Don't let emacs change spaces to TAB.
44242
44243 2006-08-31  Bruno Haible  <bruno@clisp.org>
44244
44245         * gnulib-tool: When calling func_import more than once, do it in a
44246         subshell.
44247         Reported by Eric Blake <ebb9@byu.net>.
44248
44249 2006-08-31  Bruno Haible  <bruno@clisp.org>
44250
44251         * gnulib-tool (nl): Remove variable.
44252         (sed_transform_lib_file): Use more robust test for config-h module.
44253         (func_import): Fix typo in 2006-08-25 patch.
44254
44255 2006-08-31  Bruno Haible  <bruno@clisp.org>
44256
44257         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
44258         specified, augment Makefile.am variables instead of assigning them.
44259
44260 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44261
44262         Work around a bug in both the Linux and SunOS 64-bit kernels:
44263         nanosleep mishandles sleeps for longer than 2**31 seconds.
44264         Problem reported by Frank v Waveren in
44265         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44266         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
44267         Check for nanosleep bug.
44268         (LIB_NANOSLEEP): Append clock_gettime library if needed.
44269
44270 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44271
44272         Work around a bug in both the Linux and SunOS 64-bit kernels:
44273         nanosleep mishandles sleeps for longer than 2**31 seconds.
44274         Problem reported by Frank v Waveren in
44275         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44276         * lib/nanosleep.c (BILLION): New constant.
44277         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
44278         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
44279         implementation.
44280
44281 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44282
44283         * modules/nanosleep (Depends-on): Add gettime.
44284
44285 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44286         and Simon Josefsson  <jas@extundo.com>
44287         and Oskar Liljeblad  <oskar@osk.mine.nu>
44288
44289         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
44290         * gnulib-tool (func_import): New license type 'unmodifiable license
44291         text'.
44292         * modules/fdl: Use it.  Longer description.
44293         * module/gpl, module/lgpl: New files.
44294
44295 2006-08-30  Jim Meyering  <jim@meyering.net>
44296
44297         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
44298         shadowing the parameter.
44299
44300 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44301
44302         Sync from Libtool:
44303
44304         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44305
44306         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
44307         sharing with gnulib.  Report by Eric Blake.
44308
44309 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44310
44311         * modules/isapipe: New file.
44312         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
44313
44314 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44315
44316         * modules/configmake (Makefile.am): Add a comment, and omit
44317         the CONFIGMAKE_ prefix from generated macro names.  Suggested
44318         by Bruno Haible.
44319
44320 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44321
44322         * m4/isapipe.m4: New file.
44323
44324 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44325
44326         * lib/isapipe.c, lib/isapipe.h: New files.
44327
44328 2006-08-29  Jim Meyering  <jim@meyering.net>
44329
44330         * modules/configmake (Makefile.am): Make configmake.h depend on
44331         Makefile.  Otherwise, a stale configmake.h could hang around.
44332
44333 2006-08-29  Eric Blake  <ebb9@byu.net>
44334
44335         * lib/error.c (error_at_line, print_errno_message): Match libc, after
44336         resolution of upstream bug 3044.
44337
44338 2006-08-29  Bruno Haible  <bruno@clisp.org>
44339
44340         * modules/localcharset (Depends-on): Add configmake.
44341         (Makefile.am): Remove setting of LIBDIR through DEFS.
44342
44343 2006-08-29  Bruno Haible  <bruno@clisp.org>
44344
44345         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
44346         defined.
44347
44348 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44349
44350         * modules/fcntl: New file.
44351         * modules/chdir-safer (Depends-on): Add fcntl.
44352         * modules/fts: Likewise.
44353         * modules/mkdir-p: Likewise.
44354
44355         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
44356         This undoes the most recent change, since we're now addressing the
44357         problem in a different way.
44358
44359         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
44360         into output, since the output might be called Makefile.am even
44361         if $makefile_name is something different.
44362         (func_import): Use $makefile_am rather than
44363         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
44364         empty.
44365
44366         * modules/inttypes (Files): Add m4/inttypes-h.m4.
44367
44368 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44369
44370         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
44371         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
44372         recent change to stdint.m4, since we're now addressing the problem in a
44373         different way.
44374
44375 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44376
44377         * m4/fcntl_h.m4: New file.
44378
44379 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44380
44381         * lib/fcntl_.h: New file.
44382         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
44383         the fcntl module.
44384         * lib/dirchownmod.c: Likewise.
44385         * lib/fts.c: Likewise.
44386
44387         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
44388         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
44389         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
44390         just before including <inttypes.h>, to avoid circular inclusion.
44391
44392 2006-08-28  Jim Meyering  <jim@meyering.net>
44393
44394         * doc/visibility.texi: Actually read and correct the grammar of the
44395         sentence affected by yesterday's change.
44396
44397 2006-08-28  Eric Blake  <ebb9@byu.net>
44398
44399         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
44400         needs wrapper.
44401
44402 2006-08-28  Eric Blake  <ebb9@byu.net>
44403
44404         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
44405
44406 2006-08-28  Eric Blake  <ebb9@byu.net>
44407
44408         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
44409
44410 2006-08-28  Bruno Haible  <bruno@clisp.org>
44411
44412         * modules/c-strstr: New file, from GNU gettext.
44413         * MODULES.html.sh (String handling): Add c-strstr.
44414
44415 2006-08-28  Bruno Haible  <bruno@clisp.org>
44416
44417         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
44418         macros.
44419         Reported by Eric Blake.
44420
44421 2006-08-28  Bruno Haible  <bruno@clisp.org>
44422
44423         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
44424         (VASNPRINTF): Return a string of length > INT_MAX without failing.
44425         * lib/vasprintf.c: Include errno.h, limits.h.
44426         (EOVERFLOW): New fallback definition.
44427         (vasprintf): Test here whether the string length is > INT_MAX.
44428         * lib/vsnprintf.c: Include errno.h, limits.h.
44429         (EOVERFLOW): New fallback definition.
44430         (vsnprintf): Fix bug when generated string was too long for the buffer.
44431         Test here whether the string length is > INT_MAX.
44432
44433 2006-08-28  Bruno Haible  <bruno@clisp.org>
44434
44435         * lib/inttypes_.h (SCNX*): Remove definitions.
44436         Reported by Eric Blake.
44437
44438 2006-08-28  Bruno Haible  <bruno@clisp.org>
44439
44440         * lib/c-strstr.h: New file, from GNU gettext.
44441         * lib/c-strstr.c: New file, from GNU gettext.
44442
44443 2006-08-28  Bruno Haible  <bruno@clisp.org>
44444
44445         * gnulib-tool: Reorder some statements.
44446
44447 2006-08-28  Bruno Haible  <bruno@clisp.org>
44448
44449         * gnulib-tool: New option --makefile-name.
44450         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
44451         $makefile_name.
44452         (func_import): Write $makefile_name to the cache file, and read it from
44453         there unless explicitly specified. Use $makefile_name as file name
44454         instead of Makefile.am. Adjust the recommendations accordingly.
44455
44456 2006-08-28  Bruno Haible  <bruno@clisp.org>
44457
44458         * gnulib-tool (func_verify_module): Check against misapplying patch.
44459
44460 2006-08-28  Bruno Haible  <bruno@clisp.org>
44461
44462         * gnulib-tool (func_relativize, func_relconcat): New functions.
44463         Give an error if --local-dir is given with --update.
44464         Remove trailing slashes from $local_gnulib_dir.
44465         (func_import): Store the relativized $local_gnulib_dir in
44466         gnulib-cache.m4, and read it from there if not specified explicitly.
44467
44468 2006-08-28  Bruno Haible  <bruno@clisp.org>
44469
44470         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
44471         is the current directory. Respect also $local_gnulib_dir.
44472
44473 2006-08-28  Bruno Haible  <bruno@clisp.org>
44474             Simon Josefsson  <jas@extundo.com>
44475
44476         BeOS portability.
44477         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
44478
44479 2006-08-27  Jim Meyering  <jim@meyering.net>
44480
44481         * doc/visibility.texi: Remove duplicate word: "pointer".
44482
44483 2006-08-26  Bruno Haible  <bruno@clisp.org>
44484
44485         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
44486         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
44487         (Makefile.am): Create inttypes.h from inttypes_.h.
44488         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
44489
44490         * modules/imaxabs: New file.
44491
44492         * modules/imaxdiv: New file.
44493
44494 2006-08-26  Bruno Haible  <bruno@clisp.org>
44495
44496         * m4/inttypes.m4: New file.
44497         * m4/_inttypes_h.m4: Remove file.
44498         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
44499         PRI_MACROS_BROKEN.
44500         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
44501
44502         * m4/imaxabs.m4: New file.
44503
44504         * m4/imaxdiv.m4: New file.
44505
44506 2006-08-26  Bruno Haible  <bruno@clisp.org>
44507
44508         * lib/inttypes_.h: New file.
44509         * lib/inttypes.h: Remove file.
44510         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
44511
44512         * lib/imaxabs.c: New file.
44513
44514         * lib/imaxdiv.c: New file.
44515
44516 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44517
44518         New config-h module, so that "make" output needn't be cluttered
44519         by -DHAVE_CONFIG_H.
44520         * MODULES.html.sh (Support for building libraries and executables):
44521         Add config-h.
44522         * modules/config-h: New file.
44523         * gnulib-tool (nl, sed_transform_lib_file): New vars.
44524         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
44525         the config-h module is used.
44526
44527         New configmake module, so that "make" output needn't be cluttered
44528         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
44529         * MODULES.html.sh (Support for building libraries and executables):
44530         Add configmake.
44531         * modules/configmake: New file.
44532
44533 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44534
44535         * m4/config-h.m4: New file.
44536
44537 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44538
44539         * config/srclist.txt: Add elisp-comp.
44540
44541 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44542
44543         * MODULES.html.sh (Support for building libraries and executables):
44544         Add elisp-comp.
44545         * build-aux/elisp-comp: New file.
44546         * modules/elisp-comp: New file.
44547
44548 2006-08-24  Bruno Haible  <bruno@clisp.org>
44549
44550         * gnulib-tool (func_create_testdir): Use non-default values of
44551         sourcebase and m4base.
44552
44553 2006-08-24  Bruno Haible  <bruno@clisp.org>
44554
44555         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
44556         HTML structure.
44557
44558 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44559
44560         * modules/openat (Depends-on): Add lchown.
44561
44562 2006-08-23  Bruno Haible  <bruno@clisp.org>
44563
44564         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
44565         of gl_LOCK_EARLY instead of gl_LOCK.
44566
44567 2006-08-23  Bruno Haible  <bruno@clisp.org>
44568
44569         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
44570         on OSF/1 to no.
44571         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
44572
44573 2006-08-23  Bruno Haible  <bruno@clisp.org>
44574
44575         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
44576         as unusable.
44577
44578         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
44579         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
44580         (gl_LOCK): New macro.
44581
44582 2006-08-22  Simon Josefsson  <jas@extundo.com>
44583
44584         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
44585         to md5 module.
44586
44587 2006-08-22  Simon Josefsson  <jas@extundo.com>
44588
44589         * MODULES.html.sh: Add "Support for maintaining and release
44590         projects".
44591
44592         * build-aux/gnupload: New file, from coreutils.
44593
44594 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44595
44596         Avoid the need for AC_LIBSOURCES in m4 macros.
44597         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
44598         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
44599         * modules/check-version (EXTRA_DIST): Add check-version.h.
44600         * modules/crc (EXTRA_DIST): Add crc.h.
44601         * modules/des (EXTRA_DIST): Add des.h.
44602         * modules/gc (EXTRA_DIST): Add gc.h.
44603         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
44604         * modules/getline (EXTRA_DIST): Add getline.h.
44605         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
44606         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
44607         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
44608         * modules/md2 (EXTRA_DIST): Add md2.h.
44609         * modules/md4 (EXTRA_DIST): Add md4.h.
44610         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
44611         * modules/read-file (EXTRA_DIST): Add read-file.h.
44612         * modules/readline (EXTRA_DIST): Add readline.h.
44613         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
44614         rijndael-api-fst.h.
44615
44616 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44617
44618         * m4/rijndael.m4 (gl_ARCFOUR):
44619         * m4/arctwo.m4 (gl_ARCTWO):
44620         * m4/check-version.m4 (gl_CHECK_VERSION):
44621         * m4/crc.m4 (gl_CRC):
44622         * m4/des.m4 (gl_DES):
44623         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
44624         * m4/gc.m4 (gl_GC):
44625         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
44626         * m4/getline.m4 (gl_FUNC_GETLINE):
44627         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
44628         * m4/hmac-md5.m4 (gl_HMAC_MD5):
44629         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
44630         * m4/md2.m4 (gl_MD2):
44631         * m4/md4.m4 (gl_MD4):
44632         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
44633         * m4/read-file.m4 (gl_FUNC_READ_FILE):
44634         * m4/readline.m4 (gl_FUNC_READLINE):
44635         * m4/rijndael.m4 (gl_RIJNDAEL):
44636         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44637         to get the necessary .h files and whatnot.
44638
44639 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44640
44641         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
44642         gnulib rather than the other way around.
44643         * config/srclistvars.sh (COREUTILS): Remove.
44644
44645 2006-08-22  Jim Meyering  <jim@meyering.net>
44646
44647         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
44648
44649         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
44650
44651 2006-08-22  Eric Blake  <ebb9@byu.net>
44652
44653         * modules/regexprops-generic: New file.
44654         * MODULES.html.sh (Support for building documentation): List it.
44655
44656 2006-08-22  Eric Blake  <ebb9@byu.net>
44657
44658         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
44659         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
44660         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
44661         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
44662
44663 2006-08-22  Bruno Haible  <bruno@clisp.org>
44664
44665         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
44666         and lib_LTLIBRARIES like the other lib_* variables.
44667
44668 2006-08-22  Bruno Haible  <bruno@clisp.org>
44669
44670         * build-aux/x-to-1.in: New file, from GNU gettext.
44671
44672 2006-08-22  Bruno Haible  <bruno@clisp.org>
44673
44674         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
44675         <utmpx.h> exists.
44676
44677 2006-08-22  Bruno Haible  <bruno@clisp.org>
44678
44679         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
44680         <utmpx.h> exists.
44681
44682 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44683
44684         BeOS portability.
44685         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
44686         exist.
44687         Problem reported by Bruno Haible.
44688
44689 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44690
44691         Avoid the need for AC_LIBSOURCES in m4 macros.
44692         * modules/acl (EXTRA_DIST): Add acl.h.
44693         * modules/argmatch (Files): Add m4/argmatch.m4.
44694         (configure.ac): Add gl_ARGMATCH.
44695         (EXTRA_DIST): Renamed from lib_SOURCES, for
44696         consistency with the other modules.  Remove argmatch.c.
44697         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
44698         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
44699         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
44700         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
44701         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
44702         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
44703         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
44704         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
44705         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
44706         * modules/closeout (EXTRA_DIST): Add closeout.h.
44707         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
44708         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
44709         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
44710         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
44711         dirname.h; remove basename.c and stripslash.c.
44712         * modules/exclude (EXTRA_DIST): Add exclude.h.
44713         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
44714         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
44715         * modules/file-type (EXTRA_DIST): Add file-type.h.
44716         * modules/filemode (EXTRA_DIST): Add filemode.h.
44717         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
44718         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44719         * modules/fpending (EXTRA_DIST): Add __fpending.h.
44720         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
44721         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
44722         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
44723         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
44724         * modules/getdate (EXTRA_DIST): Add getdate.c.
44725         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
44726         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
44727         * modules/getpass (EXTRA_DIST): Add getpass.h.
44728         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
44729         * modules/group-member (EXTRA_DIST): Add group-member.h.
44730         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
44731         * modules/hash (EXTRA_DIST): Add hash.h.
44732         * modules/human (EXTRA_DIST): Add human.h.
44733         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
44734         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
44735         * modules/lchown (EXTRA_DIST): Add lchown.h.
44736         * modules/long-options (EXTRA_DIST): Add long-options.h.
44737         * modules/lstat (EXTRA_DIST): Add lstat.h.
44738         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
44739         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
44740         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
44741         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
44742         * modules/memxor (EXTRA_DIST): Add memxor.h.
44743         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
44744         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
44745         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
44746         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
44747         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
44748         * modules/physmem (EXTRA_DIST): Add physmem.h.
44749         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
44750         * modules/posixver (EXTRA_DIST): Add posixver.h.
44751         * modules/quote (EXTRA_DIST): Add quote.h.
44752         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
44753         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
44754         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
44755         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
44756         regex_internal.h regexec.c.
44757         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
44758         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
44759         * modules/same (EXTRA_DIST): Add same.h.
44760         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
44761         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
44762         * modules/savedir (EXTRA_DIST): Add savedir.h.
44763         * modules/sha1 (EXTRA_DIST): Add sha1.h.
44764         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
44765         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
44766         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
44767         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
44768         * modules/strdup (EXTRA_DIST): Add strdup.h.
44769         * modules/strftime (EXTRA_DIST): Add strftime.h.
44770         * modules/strndup (EXTRA_DIST): Add strndup.h.
44771         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
44772         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
44773         * modules/time_r (EXTRA_DIST): Add time_r.h.
44774         * modules/timespec (EXTRA_DIST): Add timespec.h.
44775         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44776         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
44777         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
44778         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
44779         * modules/userspec (EXTRA_DIST): Add userspec.h.
44780         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
44781         * modules/utimens (EXTRA_DIST): Add utimens.h.
44782         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
44783         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
44784         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
44785         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
44786         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
44787         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
44788         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
44789         * modules/yesno (EXTRA_DIST): Add yesno.h.
44790
44791 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44792
44793         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
44794
44795         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
44796         * m4/dev-ino.m4, same-inode.m4: Remove.
44797
44798         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
44799         * m4/acl.m4 (AC_FUNC_ACL):
44800         * m4/backupfile.m4 (gl_BACKUPFILE):
44801         * m4/c-strtod.m4 (gl_C99_STRTOLD):
44802         * m4/canon-host.m4 (gl_CANON_HOST):
44803         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
44804         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
44805         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
44806         * m4/cloexec.m4 (gl_CLOEXEC):
44807         * m4/close-stream.m4 (gl_CLOSE_STREAM):
44808         * m4/closeout.m4 (gl_CLOSEOUT):
44809         * m4/dirfd.m4 (gl_FUNC_DIRFD):
44810         * m4/dirname.m4 (gl_DIRNAME):
44811         * m4/exclude.m4 (gl_EXCLUDE):
44812         * m4/exitfail.m4 (gl_EXITFAIL):
44813         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
44814         * m4/file-type.m4 (gl_FILE_TYPE):
44815         * m4/filemode.m4 (gl_FILEMODE):
44816         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
44817         * m4/fpending.m4 (gl_FUNC_FPENDING):
44818         * m4/fprintftime.m4 (gl_FPRINTFTIME):
44819         * m4/fts.m4 (gl_FUNC_FTS):
44820         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
44821         * m4/getdate.m4 (gl_GETDATE):
44822         * m4/gethrxtime.m4 (gl_GETHRXTIME):
44823         * m4/getpagesize.m4 (gl_GETPAGESIZE):
44824         * m4/getpass.m4 (gl_FUNC_GETPASS):
44825         * m4/gettime.m4 (gl_GETTIME):
44826         * m4/getugroups.m4 (gl_GETUGROUPS):
44827         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
44828         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
44829         * m4/hard-locale.m4 (gl_HARD_LOCALE):
44830         * m4/hash.m4 (gl_HASH):
44831         * m4/idcache.m4 (gl_IDCACHE):
44832         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
44833         * m4/lchown.m4 (gl_FUNC_LCHOWN):
44834         * m4/long-options.m4 (gl_LONG_OPTIONS):
44835         * m4/lstat.m4 (gl_FUNC_LSTAT):
44836         * m4/md5.m4 (gl_MD5):
44837         * m4/memcasecmp.m4 (gl_MEMCASECMP):
44838         * m4/memcoll.m4 (gl_MEMCOLL):
44839         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
44840         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
44841         * m4/memxor.m4 (gl_MEMXOR):
44842         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
44843         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
44844         * m4/modechange.m4 (gl_MODECHANGE):
44845         * m4/mountlist.m4 (gl_MOUNTLIST):
44846         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
44847         * m4/openat.m4 (gl_FUNC_OPENAT):
44848         * m4/pathmax.m4 (gl_PATHMAX):
44849         * m4/physmem.m4 (gl_PHYSMEM):
44850         * m4/posixtm.m4 (gl_POSIXTM):
44851         * m4/posixver.m4 (gl_POSIXVER):
44852         * m4/quote.m4 (gl_QUOTE):
44853         * m4/quotearg.m4 (gl_QUOTEARG):
44854         * m4/readtokens.m4 (gl_READTOKENS):
44855         * m4/readutmp.m4 (gl_READUTMP):
44856         * m4/regex.m4 (gl_REGEX):
44857         * m4/safe-read.m4 (gl_SAFE_READ):
44858         * m4/safe-write.m4 (gl_SAFE_WRITE):
44859         * m4/same.m4 (gl_SAME):
44860         * m4/save-cwd.m4 (gl_SAVE_CWD):
44861         * m4/savedir.m4 (gl_SAVEDIR):
44862         * m4/settime.m4 (gl_SETTIME):
44863         * m4/sha1.m4 (gl_SHA1):
44864         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
44865         * m4/stat-macros.m4 (gl_STAT_MACROS):
44866         * m4/stat-time.m4 (gl_STAT_TIME):
44867         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
44868         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
44869         * m4/strdup.m4 (gl_FUNC_STRDUP):
44870         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
44871         * m4/strndup.m4 (gl_FUNC_STRNDUP):
44872         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
44873         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
44874         * m4/time_r.m4 (gl_TIME_R):
44875         * m4/timespec.m4 (gl_TIMESPEC):
44876         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
44877         * m4/unlinkdir.m4 (gl_UNLINKDIR):
44878         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
44879         * m4/userspec.m4 (gl_USERSPEC):
44880         * m4/utimecmp.m4 (gl_UTIMECMP):
44881         * m4/utimens.m4 (gl_UTIMENS):
44882         * m4/xalloc.m4 (gl_XALLOC):
44883         * m4/xgetcwd.m4 (gl_XGETCWD):
44884         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
44885         * m4/xreadlink.m4 (gl_XREADLINK):
44886         * m4/xstrtod.m4 (gl_XSTRTOD):
44887         * m4/yesno.m4 (gl_YESNO):
44888         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44889         to get the necessary .h files and whatnot.
44890
44891 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
44892             Bruno Haible  <bruno@clisp.org>
44893
44894         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
44895         /bin/sh understanding of '!' conditional negation.
44896
44897 2006-08-21  Jim Meyering  <jim@meyering.net>
44898
44899         * modules/openat (Depends-on): Really alphabetize.
44900
44901         * modules/acl (Depends-on): Add error and quote.
44902
44903         * check-module (find_included_lib_files): Add at-func.c to the
44904         ok-to-include-more-than-once white list.
44905
44906         * modules/openat (Depends-on): Add lstat.  Alphabetize.
44907
44908 2006-08-21  Bruno Haible  <bruno@clisp.org>
44909
44910         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44911         Emit a pkgdata_DATA variable only if some snippets add contents to it.
44912         Reported by Martin Lambers <marlam@marlam.de>.
44913
44914 2006-08-21  Bruno Haible  <bruno@clisp.org>
44915
44916         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
44917         specify an installation location, don't emit a noinst_LIBRARIES or
44918         noinst_LTLIBRARIES assignment.
44919
44920 2006-08-21  Bruno Haible  <bruno@clisp.org>
44921
44922         BeOS portability.
44923         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
44924         BeOS has mbrtowc() but no <wctype.h>.
44925
44926 2006-08-21  Bruno Haible  <bruno@clisp.org>
44927
44928         BeOS portability.
44929         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
44930         exist.
44931
44932 2006-08-21  Bruno Haible  <bruno@clisp.org>
44933
44934         BeOS portability.
44935         * lib/mbchar.h: Include <wctype.h> only if it exists.
44936
44937 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44938
44939         Remove files that are no longer needed by their respective modules.
44940         * m4/obstack.m4: Remove.
44941         * m4/strerror_r.m4: Remove.
44942         * m4/uint32_t.m4: Remove.
44943         * m4/uintptr_t.m4: Remove.
44944         * m4/ullong_max.m4: Remove.
44945         * m4/xstrtoimax.m4: Remove.
44946         * m4/xstrtoumax.m4: Remove.
44947
44948         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
44949         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
44950         dependencies now capture this.
44951
44952         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
44953         Do not use AC_LIBSOURCES, since gnulib modules now do this.
44954         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
44955         * m4/human.m4 (gl_HUMAN): Likewise.
44956         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
44957         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
44958
44959         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
44960
44961         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
44962         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
44963         stdint.
44964         * m4/human.m4 (gl_HUMAN): Likewise.
44965         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
44966         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
44967         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44968         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44969         * m4/xstrtol (gl_XSTRTOL): Likewise.
44970
44971         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
44972         AC_TYPE_LONG_LONG_INT.
44973         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44974         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
44975         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
44976         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44977
44978         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
44979         on stdbool.
44980
44981         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
44982         (gl_PREREQ_XSTRTOUL): Remove.
44983
44984         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
44985
44986         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
44987         mode.
44988
44989 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44990
44991         Add and change modules to make it easier for coreutils to use
44992         gnulib-tool.
44993         * modules/backupfile (Files): Remove m4/d-ino.m4.
44994         (Depends-on): Add d-ino.
44995         * modules/cycle-check (Depends-on): Add stdint.
44996         (lib_SOURCES): Add cycle-check.h.
44997         * modules/d-ino: New module.
44998         * modules/d-type: New module.
44999         * modules/error (Files): Remove m4/strerror_r.m4.
45000         * modules/filemode (Files): Add m4/st_dm_mode.m4.
45001         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
45002         m4/inttypes_h.m4, m4/uintmax_t.m4.
45003         (Depends-on): Add stdint.
45004         (lib_SOURCES): Add fsusage.h.
45005         * modules/getcwd (Files): Remove d-ino.m4.
45006         (Depends-on): Add d-ino.
45007         * modules/getndelim2 (Depends-on): Add stdint.
45008         * modules/glob (Files): Remove m4/d-type.m4.
45009         (Depends-on): Add d-type.
45010         * modules/host-os: New module.
45011         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
45012         m4/inttypes_h.m4, m4/uintmax_t.m4.
45013         * Depends-on: Add stdint.
45014         (lib_SOURCES): Add human.h.
45015         * modules/inttostr (Files): Remove m4/intmax_t.m4,
45016         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
45017         m4/uintmax_t.m4, m4/ulonglong.m4.
45018         (Depends-on): Add stdint.
45019         (EXTRA_DIST): Add inttostr.h.
45020         * modules/lchmod: New module.
45021         * modules/link-follow: New module.
45022         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
45023         (Depends-on): Add lchmod.
45024         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
45025         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
45026         (Depends-on): Add stdint.
45027         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
45028         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
45029         (Depends-on): Add stdint.
45030         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
45031         * modules/perl: New module.
45032         * modules/regex (Depends-on): Add stdint.
45033         * modules/rmdir-errno: New module.
45034         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45035         m4/intmax_t.m4.
45036         (Depends-on): Add stdint.
45037         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45038         m4/uintmax_t.m4.
45039         (Depends-on): Add stdint.
45040         * modules/unlink-busy: New module.
45041         * modules/utimecmp (Depends-on): Add stdint.
45042         * modules/uptime: New module.
45043         * modules/winsz-ioctl: New module.
45044         * modules/winsz-termios: New module.
45045         * modules/xnanosleep (Depends-on): Add nanosleep.
45046         * modules/ullong_max: Remove.
45047         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
45048         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
45049         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
45050         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
45051         (Depends-on): Add inttypes.
45052         (lib_SOURCES): Add xstrtol.h.
45053         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
45054         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
45055         * MODULES.html.sh: Move 'assert' into the assert section.
45056         Move 'dummy' into the linking section.
45057         Remove ullong_max.
45058         Add section for compatibility checks for POSIX:2001 functions,
45059         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
45060         winsz-ioctl, and winsz-termios into it.
45061         Add lchmod.
45062         Add top-level Misc section and put host-os, perl, and uptime
45063         into it.
45064
45065 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45066
45067         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
45068         now assume the stdint module.  Do not include inttypes.h.
45069         * lib/fsusage.h: Likewise.
45070         * lib/getndelim2.c: Likewise.
45071         * lib/human.h: Likewise.
45072         * lib/inttostr.h: Likewise.
45073         * lib/obstack.c: Likewise.
45074         * lib/regex_internal.h: Likewise.
45075         * lib/tempname.c: Likewise.
45076         * lib/utimecmp.c: Likewise.
45077         * lib/xstrtol.h: Likewise.
45078
45079         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
45080
45081         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
45082         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
45083         * lib/xtime.h: Likewise.
45084
45085 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45086
45087         * modules/openat (Files): Add lib/fchmodat.c.
45088         Fixes problem reported by Jay Youngman.
45089
45090 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45091
45092         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
45093         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
45094
45095 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
45096             Bruno Haible  <bruno@clisp.org>
45097
45098         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
45099         and is a script that invokes bison. Tighten the code. Add comments.
45100
45101 2006-08-18  Jim Meyering  <jim@meyering.net>
45102
45103         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
45104         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
45105         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
45106         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
45107
45108 2006-08-18  Bruno Haible  <bruno@clisp.org>
45109
45110         * modules/bison-i18n: New file.
45111         * MODULES.html.sh (Internationalization functions): Add it.
45112
45113 2006-08-18  Bruno Haible  <bruno@clisp.org>
45114
45115         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
45116         sys/statvfs.h. When getmntinfo was found, check its declaration and
45117         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
45118
45119 2006-08-18  Bruno Haible  <bruno@clisp.org>
45120
45121         * m4/bison-i18n.m4: New file, from bison.
45122
45123 2006-08-18  Bruno Haible  <bruno@clisp.org>
45124
45125         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
45126         (ME_DUMMY): Treat "kernfs" as a dummy.
45127         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
45128
45129 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45130
45131         Update from coreutils.
45132
45133         2006-08-15  Jim Meyering  <jim@meyering.net>
45134
45135         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
45136
45137         2006-01-17  Jim Meyering  <jim@meyering.net>
45138
45139         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
45140
45141         2006-01-11  Jim Meyering  <jim@meyering.net>
45142
45143         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
45144         Check for the lchmod function.
45145
45146 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45147
45148         Update from coreutils.
45149
45150         * lib/__fpending.h: Add copyright notice.
45151         * lib/fprintftime.h: Likewise.
45152         * lib/savedir.c: Use (C) in copyright notice.
45153         * lib/savedir.h: Likewise.
45154
45155         2006-08-15  Jim Meyering  <jim@meyering.net>
45156
45157         * lib/at-func.c: New file, with the logic of all emulated at-functions.
45158         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
45159         in support of the EXPECTED_ERRNO macro.
45160         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
45161         definitions.  Instead, define the appropriate symbols and include
45162         "at-func.c".
45163         * lib/mkdirat.c (mkdirat): Likewise.
45164         * lib/fchmodat.c (fchmodat): Likewise.
45165         (ENOSYS): Remove definition.
45166         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
45167         it.  Don't include "unistd--.h" -- it wasn't ever used.
45168
45169         2006-01-17  Jim Meyering  <jim@meyering.net>
45170
45171         Rewrite fts.c not to change the current working directory,
45172         by using openat, fstatat, fdopendir, etc..
45173
45174         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
45175         (HAVE_OPENAT_SUPPORT): Define.
45176         [_LIBC] (fchdir): Don't undef or define; no longer used.
45177         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
45178         Now, this `function' always succeeds, and consumes its file descriptor
45179         parameter -- so callers must not close such FDs.  Update callers.
45180         (diropen_fd, opendirat, cwd_advance_fd): New functions.
45181         (diropen): Add parameter, SP.  Adjust all callers.
45182         Implement using diropen_fd, rather than open.
45183         (fts_open): Initialize new member, fts_cwd_fd.
45184         Remove fts_rft-setting code.
45185         (fts_close): Close fts_cwd_fd, if necessary.
45186         (__opendir2): Define in terms of opendir or opendirat,
45187         depending on whether the FST_NOCHDIR flag is set.
45188         (fts_build): Since fts_safe_changedir consumes its FD, and since
45189         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
45190         and close the dup'd file descriptor upon failure.
45191         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
45192         (fts_safe_changedir): Tweak semantics to reflect that this function
45193         now calls cwd_advance_fd and hence consumes its FD argument.
45194         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
45195         [struct FTS] (fts_rft): Remove now-unused member.
45196         [struct FTS] (fts_cycle.state): Improve comment.
45197
45198         * lib/openat.c (openat_needs_fchdir): New function.
45199         * lib/openat.h (openat_needs_fchdir): Declare it.
45200
45201 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
45202
45203         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
45204         Problem and fix reported by Pádraig Brady in
45205         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
45206
45207 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45208
45209         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
45210
45211 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45212
45213         * lib/memcoll.c (memcoll): Optimize for the common case where the
45214         arguments are bytewise equal.
45215
45216 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45217
45218         * doc/regexprops-generic.texi: Add a copyright notice.
45219
45220 2006-08-15  Bruno Haible  <bruno@clisp.org>
45221
45222         * modules/tmpdir (License): Change to LGPL.
45223
45224 2006-08-15  Bruno Haible  <bruno@clisp.org>
45225
45226         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
45227         module.
45228
45229 2006-08-14  Simon Josefsson  <jas@extundo.com>
45230
45231         * config/srclist.txt: Add gnupload.
45232
45233 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45234
45235         Change copyright notice from LGPL 2 to GPL 2, since that's the
45236         standard form used in the gnulib repository.
45237         * tests/test-lock.c: Likewise.
45238         * tests/test-stdint.c: Likewise.
45239         * tests/test-tls.c: Likewise.
45240
45241         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
45242         prelude-manager.  User shorter URLs for GNU projects, without '?'.
45243         Add copyright notice.
45244
45245         * check-module: Add copyright notice.  Output a copyright
45246         notice if "--version" is specified.
45247         * modules/COPYING: New file.
45248         * tests/test-getaddrinfo.c: Add copyright notice.
45249         * tests/test-verify.c: Likewise.
45250
45251 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45252
45253         Change copyright notice from LGPL 2 to GPL 2, since that's the
45254         standard form used in the gnulib repository.
45255         * lib/lock.c: LGPL -> GPL.
45256         * lib/lock.h: Likewise.
45257         * lib/strnlen1.c: Likewise.
45258         * lib/strnlen1.h: Likewise.
45259         * lib/tls.c: Likewise.
45260         * lib/tls.h: Likewise.
45261         * lib/tmpdir.c: Likewise.
45262
45263         * lib/TODO: Remove; this belongs only in coreutils.
45264
45265 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45266
45267         Add copyright notices to long-enough files that lack them, since
45268         otherwise the files aren't clearly free.  Use the same notice that
45269         getdate.texi already uses.
45270         * doc/alloca-opt.texi: Add copyright notice.
45271         * doc/alloca.texi: Likewise.
45272         * doc/ctime.texi: Likewise.
45273         * doc/functions.texi: Likewise.
45274         * doc/gcd.texi: Likewise.
45275         * doc/gnulib-tool.texi: Likewise.
45276         * doc/inet_ntoa.texi: Likewise.
45277         * doc/visibility.texi: Likewise.
45278
45279         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
45280         * doc/quote.texi: Add copyright notice.
45281
45282         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
45283         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
45284         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
45285         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
45286         is now obsolete, and give a pointer to the Sun list.
45287         Add copyright notice.
45288
45289 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45290
45291         * config/srclistvars.sh: Add copyright notice.
45292
45293 2006-08-14  Eric Blake  <ebb9@byu.net>
45294
45295         Import the following change from libc:
45296
45297         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
45298
45299         Upstream bug 2997.
45300         * lib/misc/error.c: Add space between program name and message if file
45301         name is missing.
45302
45303 2006-08-12  Karl Berry  <karl@gnu.org>
45304
45305         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
45306         remove, these originate in gnulib now.
45307
45308 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45309
45310         * doc/Makefile (standards.info standards.html standards.dvi):
45311         Also depend on make-stds.texi.
45312
45313 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45314
45315         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
45316         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
45317
45318         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
45319         in wchar_t.  Problem reported by Eric Blake.
45320
45321         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
45322         LEN is smaller than SIZE.  Suggested by Bruno Haible.
45323         Also, help the compiler to keep LEN in a register.
45324
45325 2006-08-11  Eric Blake  <ebb9@byu.net>
45326
45327         * users.txt: Sort.  Add tar.
45328
45329 2006-08-11  Bruno Haible  <bruno@clisp.org>
45330
45331         * users.txt: New file.
45332
45333 2006-08-11  Bruno Haible  <bruno@clisp.org>
45334
45335         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
45336         before <wchar.h>. Needed for OSF/1 and BSD/OS.
45337
45338 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45339
45340         * modules/snprintf (Depends-on): Remove minmax.
45341         (Maintainer): Add self and Bruno.
45342
45343 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45344
45345         * lib/.cppi-disable: Add snprintf.h, socket_.h.
45346         * lib/snprintf.c: Include <errno.h> and <limits.h>.
45347         (EOVERFLOW): Define if the system does not.
45348         Do not include "minmax.h"; it wasn't used.
45349         (snprintf): Don't assume size_t promotes to an unsigned type.
45350         Fix bug when generated string was too long for the buffer: the
45351         buffer's contents are supposed to be the initial prefix of the
45352         output.  Don't assume vasnprintf returns EOVERFLOW if the size
45353         exceeds INT_MAX; do the check ourselves.
45354
45355         Import the following changes from libc:
45356
45357         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
45358
45359         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
45360         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
45361         set wc to the byte which couldn't be converted.
45362         (re_string_reconstruct): Don't clear valid_raw_len before calling
45363         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
45364         tip_context using re_string_context_at.
45365
45366         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
45367
45368         * lib/posix/regex.h: g++ still cannot handled [restrict].
45369
45370         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
45371
45372         * lib/posix/regex.h: Remove special handling for VMS.
45373
45374 2006-08-10  Jim Meyering  <jim@meyering.net>
45375
45376         * modules/same-inode: New module.
45377         * modules/dev-ino: New module.
45378         * modules/cycle-check: Depend on these modules, rather than simply
45379         including their .h files.
45380         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
45381         required via m4/cycle-check.m4.
45382         * modules/same: Depend on new same-inode module, rather than
45383         including same-inode.h.
45384         * modules/chdir-safer: New file.
45385
45386         * modules/chown (Depends-on): Add stat-macros.
45387
45388 2006-08-10  Jim Meyering  <jim@meyering.net>
45389
45390         * m4/cycle-check.m4: New file.
45391         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
45392         * m4/dev-ino.m4, m4/same-inode.m4: New files.
45393
45394 2006-08-10  Eric Blake  <ebb9@byu.net>
45395
45396         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
45397         in from original proposal.
45398
45399 2006-08-10  Eric Blake  <ebb9@byu.net>
45400         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
45401
45402         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
45403         namespace.
45404
45405 2006-08-10  Bruno Haible  <bruno@clisp.org>
45406
45407         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
45408         as well.
45409
45410 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45411
45412         Sync from coreutils.
45413
45414         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
45415
45416         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
45417         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
45418
45419 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45420
45421         * modules/restrict: Remove; no longer needed now that we assume
45422         Autoconf 2.59 or later.
45423         * MODULES.html.sh: Remove 'restrict'.
45424         * modules/argp (Depends-on): Remove 'restrict'.
45425         * modules/base64 (Depends-on): Likewise.
45426         * modules/gc (Depends-on): Likewise.
45427         * modules/getaddrinfo (Depends-on): Likewise.
45428         * modules/glob (Depends-on): Likewise.
45429         * modules/inet_ntop (Depends-on): Likewise.
45430         * modules/inet_pton (Depends-on): Likewise.
45431         * modules/memxor (Depends-on): Likewise.
45432         * modules/regex (Depends-on): Likewise.
45433         * modules/strtok_r (Depends-on): Likewise.
45434         * modules/time_r (Depends-on): Likewise.
45435
45436 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45437
45438         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
45439         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
45440         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
45441         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
45442         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
45443         * m4/memxor.m4 (gl_MEMXOR): Likewise.
45444         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
45445         gl_C_RESTRICT replaced by AC_C_RESTRICT.
45446
45447         Merge from coreutils.
45448         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
45449         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
45450         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
45451         * m4/time_r.m4 (gl_TIME_R): Likewise.
45452
45453 2006-08-09  Karl Berry  <karl@gnu.org>
45454
45455         * config/srclist.txt: no more gettext-tools, per Bruno.
45456
45457 2006-08-08  Eric Blake  <ebb9@byu.net>
45458
45459         * modules/verror: New module.
45460         * MODULES.html.sh: Document it.
45461
45462 2006-08-08  Eric Blake  <ebb9@byu.net>
45463
45464         * lib/verror.h, lib/verror.c: New files.
45465
45466 2006-08-08  Eric Blake  <ebb9@byu.net>
45467
45468         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
45469         verror_at_line output complies with GNU Coding Standards even when
45470         file is NULL.
45471
45472 2006-08-07  Bruno Haible  <bruno@clisp.org>
45473
45474         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
45475         versions of AIX.
45476         Reported by Ralf Wildenhues.
45477
45478 2006-08-07  Bruno Haible  <bruno@clisp.org>
45479
45480         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
45481         in an AC_DEFUN. Needed so that the autoconf snippets can use
45482         AC_REQUIRE.
45483
45484 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45485
45486         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45487         Initialize pkgdata_DATA.
45488         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
45489         overriding it.
45490
45491 2006-08-06  Eric Blake  <ebb9@byu.net>
45492
45493         * lib/error.h: Fold in some upstream changes from glibc.
45494         * lib/error.c: Likewise.
45495
45496 2006-08-04  Bruno Haible  <bruno@clisp.org>
45497
45498         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45499         Make the mostlyclean-local rule depend on mostlyclean-generic.
45500         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
45501
45502 2006-07-31  Bruno Haible  <bruno@clisp.org>
45503
45504         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
45505         <stdlib.h>, <string.h>.
45506
45507 2006-07-30  Bruno Haible  <bruno@clisp.org>
45508
45509         * modules/readlink (License): Change to LGPL.
45510
45511 2006-07-30  Bruno Haible  <bruno@clisp.org>
45512
45513         * modules/javaversion (Makefile.am): Distribute javaversion.java and
45514         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
45515         set PKGDATADIR to point to it.
45516
45517 2006-07-30  Bruno Haible  <bruno@clisp.org>
45518
45519         * modules/csharpexec (configure.ac): Comment out macro invocation.
45520         * modules/javaexec (configure.ac): Likewise.
45521         * modules/javacomp-script (configure.ac): Likewise.
45522
45523         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
45524
45525 2006-07-30  Bruno Haible  <bruno@clisp.org>
45526
45527         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
45528         linked-list.
45529
45530 2006-07-30  Bruno Haible  <bruno@clisp.org>
45531
45532         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
45533
45534 2006-07-30  Bruno Haible  <bruno@clisp.org>
45535
45536         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45537         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
45538         get removed.
45539
45540 2006-07-29  Bruno Haible  <bruno@clisp.org>
45541
45542         Make it possible for gnulib-tool to work with locally modified or
45543         augmented gnulib repositories.
45544         * gnulib-tool (func_usage): Document --local-dir option.
45545         (local_gnulib_dir): New variable.
45546         Handle --local-dir option.
45547         (func_lookup_file): New function.
45548         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
45549         (func_get_description, func_get_filelist, func_get_description,
45550         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
45551         func_get_automake_snippet, func_get_include_directive,
45552         func_get_license, func_get_maintainer): Use func_lookup_file.
45553         (func_import, func_create_testdir): Use func_lookup_file.
45554
45555 2006-07-29  Bruno Haible  <bruno@clisp.org>
45556
45557         * modules/setenv (Depends-on): Add unistd.
45558
45559 2006-07-29  Bruno Haible  <bruno@clisp.org>
45560
45561         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
45562
45563 2006-07-29  Bruno Haible  <bruno@clisp.org>
45564
45565         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
45566
45567 2006-07-29  Bruno Haible  <bruno@clisp.org>
45568
45569         * gnulib-tool (import, update): If there is no Makefile.am, look at
45570         aclocal.m4, instead of bailing out.
45571
45572 2006-07-29  Bruno Haible  <bruno@clisp.org>
45573
45574         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
45575         Categorize the options by when they are useful.
45576
45577 2006-07-29  Bruno Haible  <bruno@clisp.org>
45578
45579         * gnulib-tool (func_usage): Document option --no-libtool.
45580         Handle option --no-libtool.
45581         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
45582         for changed semantics of $libtool variable.
45583         (func_import): Likewise. If libtool is not used, show this through
45584         an option --no-libtool.
45585         (func_create_testdir): Update.
45586
45587 2006-07-29  Bruno Haible  <bruno@clisp.org>
45588
45589         * gnulib-tool (func_import): Extend error message about missing
45590         --doc-base.
45591
45592 2006-07-29  Bruno Haible  <bruno@clisp.org>
45593
45594         * gnulib-tool (func_import): Don't create the $docbase directory if
45595         there is no file to store there.
45596
45597 2006-07-29  Bruno Haible  <bruno@clisp.org>
45598
45599         * gnulib-tool (autoconf_minversion): If a --dir option is given and
45600         relevant, look for configure.ac there, not in the current directory.
45601         Also use a simple search for AC_PREREQ, not "autoconf --trace".
45602
45603 2006-07-29  Bruno Haible  <bruno@clisp.org>
45604
45605         * gnulib-tool (SORT): New variable.
45606         (func_usage): Undocument --assume-autoconf option.
45607         Remove --assume-autoconf option handling.
45608         (autoconf_minversion): Determine from the contents of configure.ac.
45609         (func_import): Remove autoconf_minversion handling.
45610         Suggested by Eric Blake.
45611
45612 2006-07-29  Bruno Haible  <bruno@clisp.org>
45613
45614         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
45615
45616 2006-07-29  Bruno Haible  <bruno@clisp.org>
45617
45618         * config/srclist.txt (*setenv.[ch]): Remove rules.
45619
45620 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45621
45622         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
45623
45624 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45625
45626         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
45627         arpa/inet.h.
45628
45629 2006-07-28  Simon Josefsson  <jas@extundo.com>
45630
45631         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
45632         * modules/inet_pton (Depends-on): Likewise.
45633
45634 2006-07-28  Simon Josefsson  <jas@extundo.com>
45635
45636         * m4/netinet_in_h.m4: New file.
45637
45638 2006-07-28  Simon Josefsson  <jas@extundo.com>
45639
45640         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
45641         #include's.
45642
45643 2006-07-28  Simon Josefsson  <jas@extundo.com>
45644
45645         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
45646         #include's.
45647
45648 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
45649
45650         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
45651         setgid on directories only if they set these bits.
45652         * lib/modechange.h: Remove obsolete comment about masks.
45653
45654 2006-07-28  Eric Blake  <ebb9@byu.net>
45655
45656         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
45657         macro expansion.
45658
45659 2006-07-28  Bruno Haible  <bruno@clisp.org>
45660
45661         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
45662
45663 2006-07-28  Bruno Haible  <bruno@clisp.org>
45664
45665         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
45666
45667 2006-07-28  Bruno Haible  <bruno@clisp.org>
45668
45669         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
45670         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
45671         Define fallbacks.
45672         Avoids link error on FreeBSD 4.x.
45673         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45674
45675         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
45676         encoding.
45677         * lib/mbswidth.c (iswcntrl): Likewise.
45678
45679 2006-07-27  Bruno Haible  <bruno@clisp.org>
45680
45681         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
45682         test.
45683
45684 2006-07-27  Bruno Haible  <bruno@clisp.org>
45685
45686         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
45687         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
45688         defined.
45689
45690 2006-07-26  Eric Blake  <ebb9@byu.net>
45691
45692         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
45693
45694 2006-07-26  Eric Blake  <ebb9@byu.net>
45695
45696         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
45697         like mingw that lack mkstemp.
45698         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
45699         avoid compilation warning on mingw.
45700
45701 2006-07-26  Bruno Haible  <bruno@clisp.org>
45702
45703         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
45704         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
45705         INT_FAST*_MIN, INTPTR_MIN.
45706
45707 2006-07-25  Bruno Haible  <bruno@clisp.org>
45708
45709         * modules/version-etc (Depends-on): Add stdarg.
45710
45711 2006-07-25  Bruno Haible  <bruno@clisp.org>
45712
45713         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
45714         complex commands.
45715
45716 2006-07-25  Bruno Haible  <bruno@clisp.org>
45717
45718         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
45719         defined in <stdarg.h> or config.h.
45720
45721 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45722
45723         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
45724         (gl_STDIO_SAFER): Remove.
45725
45726 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45727
45728         * MODULES.html.sh (File stream based Input/Output):
45729         Add fopen-safer, tmpfile-safer; remove stdio-safer.
45730         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
45731         * modules/fopen-safer, modules/tmpfile-safer: New files.
45732         * modules/stdio-safer: Remove.
45733
45734 2006-07-24  Bruno Haible  <bruno@clisp.org>
45735
45736         * modules/tmpdir: New file.
45737         * MODULES.html.sh (File system functions): Add it.
45738
45739 2006-07-24  Bruno Haible  <bruno@clisp.org>
45740
45741         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
45742         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
45743
45744 2006-07-24  Bruno Haible  <bruno@clisp.org>
45745
45746         * modules/clean-temp: New file.
45747
45748 2006-07-24  Bruno Haible  <bruno@clisp.org>
45749
45750         * m4/tmpdir.m4: New file, from GNU gettext.
45751
45752 2006-07-24  Bruno Haible  <bruno@clisp.org>
45753
45754         * lib/tmpdir.h: New file, from GNU gettext.
45755         * lib/tmpdir.c: New file, from GNU gettext.
45756
45757 2006-07-24  Bruno Haible  <bruno@clisp.org>
45758
45759         * lib/clean-temp.h: New file, from GNU gettext.
45760         * lib/clean-temp.c: New file, from GNU gettext.
45761
45762 2006-07-23  Eric Blake  <ebb9@byu.net>
45763
45764         * modules/stdio-safer (Files): Add tmpfile-safer.c.
45765         (Depends-on): Add binary-io.
45766
45767 2006-07-23  Eric Blake  <ebb9@byu.net>
45768
45769         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
45770
45771 2006-07-23  Eric Blake  <ebb9@byu.net>
45772
45773         * lib/tmpfile-safer.c: New file.
45774         * lib/stdio-safer.h (fopen_safer): Add prototype.
45775         * lib/stdio--.h (tmpfile): Make safer.
45776
45777 2006-07-23  Bruno Haible  <bruno@clisp.org>
45778
45779         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
45780         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
45781         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
45782         gl_linked_remove_at): Use it.
45783
45784 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45785         and Simon Josefsson <jas@extundo.com>
45786
45787         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
45788
45789         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
45790
45791 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45792
45793         * modules/close-stream: New file.
45794         * modules/closeout (Description): Make it clear that it exits
45795         with a diagnostic on error.
45796         (Depends-on): Add close-stream.  Remove fpending, stdbool.
45797         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
45798
45799 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45800
45801         * m4/close-stream.m4: New file.
45802
45803 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45804
45805         * lib/close-stream.c, lib/close-stream.h: New files.
45806
45807 2006-07-22  Bruno Haible  <bruno@clisp.org>
45808
45809         Merge from GNU gettext 0.15.
45810
45811         2006-05-01  Bruno Haible  <bruno@clisp.org>
45812
45813                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
45814
45815         2006-07-22  Bruno Haible  <bruno@clisp.org>
45816
45817                 * modules/javaversion: New file.
45818                 * MODULES.html.sh (Java): Add javaversion.
45819
45820         2006-03-12  Bruno Haible  <bruno@clisp.org>
45821
45822                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
45823
45824         2005-12-04  Bruno Haible  <bruno@clisp.org>
45825
45826                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
45827                 (untested).
45828
45829         2006-06-21  Bruno Haible  <bruno@clisp.org>
45830
45831                 Avoid warnings from recent versions of mcs.
45832                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
45833                 -o, -L, -r any more. Use options documented since mcs-1.0
45834                 instead. Similarly for -g.
45835
45836         2005-12-04  Bruno Haible  <bruno@clisp.org>
45837
45838                 * build-aux/csharpcomp.sh.in: Suffix for resources is
45839                 .resources, not .resource.
45840
45841         2005-07-09  Bruno Haible  <bruno@clisp.org>
45842
45843                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
45844                 add a .dll suffix.
45845                 Reported by Mark Junker <mjscod@gmx.de>.
45846
45847         2006-07-22  Bruno Haible  <bruno@clisp.org>
45848
45849                 * modules/gettext: Upgrade to gettext-0.15.
45850                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
45851                 m4/visibility.m4.
45852                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
45853
45854 2006-07-22  Bruno Haible  <bruno@clisp.org>
45855
45856         Merge from GNU gettext 0.15.
45857
45858         2006-03-25  Bruno Haible  <bruno@clisp.org>
45859
45860                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
45861
45862         2006-07-21  Bruno Haible  <bruno@clisp.org>
45863
45864                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
45865                 "1.1".
45866
45867         2006-05-09  Bruno Haible  <bruno@clisp.org>
45868
45869                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
45870                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
45871                 for the conftestver execution.
45872
45873         2006-05-01  Bruno Haible  <bruno@clisp.org>
45874
45875                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
45876                 optional target-version argument. Verify that the compiler
45877                 groks source of the specified source-version, or add -source
45878                 option as necessary. Verify that the compiler produces
45879                 bytecode in the specified target-version, or add -target and
45880                 -source options as necessary. Make the result of the test
45881                 available as variable CONF_JAVAC. Also log error output in
45882                 config.log.
45883
45884         2006-03-11  Bruno Haible  <bruno@clisp.org>
45885
45886                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
45887
45888         2006-05-09  Bruno Haible  <bruno@clisp.org>
45889
45890                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
45891                 CLASSPATH_SEPARATOR to a semicolon.
45892
45893         2006-03-12  Bruno Haible  <bruno@clisp.org>
45894
45895                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
45896                 available as variable CONF_JAVA, for subsequent autoconf
45897                 tests. Also log error output in config.log.
45898
45899         2006-07-19  Bruno Haible  <bruno@clisp.org>
45900
45901                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
45902                 that getline works on glibc2 systems. Needed to avoid trouble
45903                 in relocatable.c.
45904                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
45905
45906         2005-12-04  Bruno Haible  <bruno@clisp.org>
45907
45908                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
45909                 launcher (untested).
45910
45911         2005-12-04  Bruno Haible  <bruno@clisp.org>
45912
45913                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
45914
45915         2006-07-22  Bruno Haible  <bruno@clisp.org>
45916
45917                 * gettext.m4: Update from GNU gettext-0.15.
45918                 * nls.m4: Likewise.
45919                 * po.m4: Likewise.
45920                 * inttypes-pri.m4: Likewise.
45921                 * inttypes-h.m4: Renamed from inttypes.m4.
45922                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
45923
45924 2006-07-22  Bruno Haible  <bruno@clisp.org>
45925
45926         Merge from GNU gettext 0.15.
45927
45928         2005-07-05  Bruno Haible  <bruno@clisp.org>
45929
45930                 * printf-args.c (printf_fetchargs): Work around broken
45931                 definition of wint_t on mingw.
45932
45933         2005-02-12  Bruno Haible  <bruno@clisp.org>
45934
45935                 * xallocsa.h: Add extern "C" for C++.
45936
45937         2006-05-17  Bruno Haible  <bruno@clisp.org>
45938
45939                 Cygwin portability.
45940                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
45941
45942         2006-04-30  Bruno Haible  <bruno@clisp.org>
45943
45944                 * progreloc.c: Include <mach-o/dyld.h> if available.
45945                 (find_executable): Use _NSGetExecutablePath when possible.
45946
45947         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
45948
45949                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
45950                 function.
45951
45952         2005-12-29  Bruno Haible  <bruno@clisp.org>
45953
45954                 * progreloc.c (set_program_name_and_installdir): Fix
45955                 compilation error.
45956
45957         2005-12-04  Bruno Haible  <bruno@clisp.org>
45958
45959                 Cygwin portability.
45960                 * progreloc.c: Include <windows.h> also on Cygwin.
45961                 (find_executable): Add support for Cygwin.
45962                 (set_program_name_and_installdir): Handle also platforms with
45963                 nonempty EXEEXT.
45964
45965         2006-07-11  Bruno Haible  <bruno@clisp.org>
45966
45967                 * javacomp.c: Fix a comment.
45968                 Reported by Jim Meyering.
45969
45970         2006-04-30  Bruno Haible  <bruno@clisp.org>
45971
45972                 * javacomp.h (compile_java_class): Add source_version,
45973                 target_version arguments.
45974                 * javacomp.c: Rewritten to choose only a compiler that
45975                 respects the specified source_version and target_version.
45976
45977         2006-06-27  Bruno Haible  <bruno@clisp.org>
45978
45979                 Assume correct S_ISDIR macro.
45980                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
45981
45982         2006-07-22  Bruno Haible  <bruno@clisp.org>
45983
45984                 * javaversion.h: New file, from GNU gettext.
45985                 * javaversion.c: New file, from GNU gettext.
45986                 * javaversion.java: New file, from GNU gettext.
45987                 * javaversion.class: New file, from GNU gettext.
45988
45989         2006-05-17  Bruno Haible  <bruno@clisp.org>
45990
45991                 Cygwin portability.
45992                 * javaexec.c (execute_java_class): Test for jview program
45993                 also on Cygwin.
45994
45995         2006-04-09  Bruno Haible  <bruno@clisp.org>
45996
45997                 * fatal-signal.c: Don't include string.h.
45998                 (at_fatal_signal): Use a copying loop instead of memcpy.
45999
46000         2005-12-04  Bruno Haible  <bruno@clisp.org>
46001
46002                 * csharpexec.c: Add support for 'clix' launcher (untested).
46003                 (execute_csharp_using_sscli): New function.
46004                 (execute_csharp_program): Call it.
46005
46006         2006-06-21  Bruno Haible  <bruno@clisp.org>
46007
46008                 Avoid warnings from recent versions of mcs.
46009                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
46010                 -o, -L, -r any more. Use options documented since mcs-1.0
46011                 instead. Similarly for -g.
46012
46013         2005-07-09  Bruno Haible  <bruno@clisp.org>
46014
46015                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
46016                 add a .dll suffix.
46017                 Reported by Mark Junker <mjscod@gmx.de>.
46018
46019         2006-06-17  Bruno Haible  <bruno@clisp.org>
46020
46021                 * config.charset: Update for NetBSD 3.0.
46022
46023         2006-05-17  Bruno Haible  <bruno@clisp.org>
46024
46025                 Cygwin portability.
46026                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
46027
46028         2006-05-16  Bruno Haible  <bruno@clisp.org>
46029
46030                 * localcharset.c [CYGWIN]: Include <windows.h>.
46031                 (get_charset_aliases): For Cygwin, return the same CPxxx
46032                 aliases list as under WIN32.
46033                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
46034                 the environment variables. Fall back to GetACP().
46035
46036         2006-04-05  Bruno Haible  <bruno@clisp.org>
46037
46038                 * config.charset: Update Juan Manuel Guerrero's address.
46039
46040         2005-02-12  Bruno Haible  <bruno@clisp.org>
46041
46042                 * allocsa.h: Add extern "C" for C++.
46043
46044         2005-02-10  Bruno Haible  <bruno@clisp.org>
46045
46046                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
46047                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
46048
46049         2006-07-22  Bruno Haible  <bruno@clisp.org>
46050
46051                 * gettext.h: Update to GNU gettext-0.15.
46052
46053 2006-07-22  Bruno Haible  <bruno@clisp.org>
46054
46055         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
46056         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
46057         lib-prefix.m4, longdouble.m4, ssize_t.m4.
46058
46059 2006-07-21  Eric Blake  <ebb9@byu.net>
46060
46061         * modules/stdlib-safer: New file.
46062         * MODULES.html.sh (File stream based Input/Output): Add
46063         stdlib-safer.
46064
46065 2006-07-21  Eric Blake  <ebb9@byu.net>
46066
46067         * lib/stdlib-safer.h: New file from coreutils, required by
46068         stdlib--.h.
46069
46070 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
46071
46072         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
46073
46074 2006-07-20  Bruno Haible  <bruno@clisp.org>
46075
46076         * gnulib-tool: Recognize new option --assume-autoconf.
46077         (autoconf_minversion): New variable.
46078         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
46079
46080 2006-07-20  Bruno Haible  <bruno@clisp.org>
46081
46082         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
46083
46084 2006-07-19  Derek R. Price  <derek@ximbiot.com>
46085
46086         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
46087         Reindent and repaginate.
46088
46089 2006-07-19  Derek Price  <derek@ximbiot.com>
46090
46091         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
46092         Correct grammar.
46093
46094 2006-07-17  Bruno Haible  <bruno@clisp.org>
46095
46096         * modules/list: New file.
46097         * modules/array-list: New file.
46098         * modules/carray-list, modules/carray-list-tests: New files.
46099         * modules/linked-list, modules/linked-list-tests: New files.
46100         * modules/avltree-list, modules/avltree-list-tests: New files.
46101         * modules/rbtree-list, modules/rbtree-list-tests: New files.
46102         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
46103         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
46104         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
46105         * modules/oset: New file.
46106         * modules/array-oset: New file.
46107         * modules/avltree-oset, modules/avltree-oset-tests: New files.
46108         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
46109         * tests/test-carray_list.c: New file.
46110         * tests/test-linked_list.c: New file.
46111         * tests/test-avltree_list.c: New file.
46112         * tests/test-rbtree_list.c: New file.
46113         * tests/test-linkedhash_list.c: New file.
46114         * tests/test-avltreehash_list.c: New file.
46115         * tests/test-rbtreehash_list.c: New file.
46116         * tests/test-avltree_oset.c: New file.
46117         * tests/test-rbtree_oset.c: New file.
46118         * MODULES.html.sh (Container data structures): New section.
46119
46120 2006-07-17  Bruno Haible  <bruno@clisp.org>
46121
46122         * m4/gl_list.m4: New file.
46123
46124 2006-07-17  Bruno Haible  <bruno@clisp.org>
46125
46126         * lib/gl_list.h: New file.
46127         * lib/gl_list.c: New file.
46128         * lib/gl_array_list.h: New file.
46129         * lib/gl_array_list.c: New file.
46130         * lib/gl_carray_list.h: New file.
46131         * lib/gl_carray_list.c: New file.
46132         * lib/gl_linked_list.h: New file.
46133         * lib/gl_linked_list.c: New file.
46134         * lib/gl_anylinked_list1.h: New file.
46135         * lib/gl_anylinked_list2.h: New file.
46136         * lib/gl_avltree_list.h: New file.
46137         * lib/gl_avltree_list.c: New file.
46138         * lib/gl_anyavltree_list1.h: New file.
46139         * lib/gl_anyavltree_list2.h: New file.
46140         * lib/gl_rbtree_list.h: New file.
46141         * lib/gl_rbtree_list.c: New file.
46142         * lib/gl_anyrbtree_list1.h: New file.
46143         * lib/gl_anyrbtree_list2.h: New file.
46144         * lib/gl_anytree_list1.h: New file.
46145         * lib/gl_anytree_list2.h: New file.
46146         * lib/gl_linkedhash_list.h: New file.
46147         * lib/gl_linkedhash_list.c: New file.
46148         * lib/gl_anyhash_list1.h: New file.
46149         * lib/gl_anyhash_list2.h: New file.
46150         * lib/gl_avltreehash_list.h: New file.
46151         * lib/gl_avltreehash_list.c: New file.
46152         * lib/gl_rbtreehash_list.h: New file.
46153         * lib/gl_rbtreehash_list.c: New file.
46154         * lib/gl_anytreehash_list1.h: New file.
46155         * lib/gl_anytreehash_list2.h: New file.
46156
46157         * lib/gl_oset.h: New file.
46158         * lib/gl_oset.c: New file.
46159         * lib/gl_array_oset.h: New file.
46160         * lib/gl_array_oset.c: New file.
46161         * lib/gl_avltree_oset.h: New file.
46162         * lib/gl_avltree_oset.c: New file.
46163         * lib/gl_rbtree_oset.h: New file.
46164         * lib/gl_rbtree_oset.c: New file.
46165         * lib/gl_anytree_oset.h: New file.
46166
46167 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46168
46169         * m4/mkancesdirs.m4: New file.
46170         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
46171         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
46172         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
46173         it.
46174
46175 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46176
46177         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
46178         * lib/mkancesdirs.h: New files.
46179         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
46180         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
46181         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
46182         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
46183         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
46184         callers changed.  Revamp internals significantly, by not
46185         attempting to create directories that are temporarily more
46186         permissive than the final results.  Do not attempt to use
46187         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
46188         This removes some race conditions, fixes some bugs, and simplifies
46189         things.  Use new dirchownmod function to do owner and mode changes.
46190         * lib/mkdir-p.h: Likewise.
46191         * lib/modechange.c (octal_to_mode): New function.
46192         (struct mode_change): New member mentioned.
46193         (make_node_op_equals): New arg mentioned.  All callers changed.
46194         (mode_compile): Keep track of which mode bits the user has explicitly
46195         mentioned.
46196         (mode_adjust): New arg DIR, so that we implement the X op correctly.
46197         New arg PMODE_BITS, to keep track of which mode bits the user
46198         mentioned; it treats S_ISUID and S_ISGID speciall.
46199         All callers changed.
46200         * lib/modechange.h: Likewise.
46201
46202 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46203
46204         * MODULES.html.sh: Add mkancestors.
46205         * modules/mkancesdirs: New module.
46206         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
46207         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
46208         The chdir-safer and afs files are now orphans; I'll remove them
46209         unless someone speaks up.
46210         Add lib/dirchownmod.c, lib/dirchownmod.h.
46211         (Depends-on): Remove alloca, chown, save-cwd, dirname.
46212         Add lchown, mkancesdirs.
46213         (Maintainer): Add self.
46214
46215 2006-07-15  Karl Berry  <karl@gnu.org>
46216
46217         * gnulib-tool: help message wording/arrangement.
46218
46219 2006-07-14  Simon Josefsson  <jas@extundo.com>
46220
46221         * doc/gnulib.texi (Libtool and Windows): New section.
46222
46223 2006-07-12  Simon Josefsson  <jas@extundo.com>
46224
46225         * modules/gendocs (License): Fix license, approved by Karl.
46226
46227 2006-07-12  Eric Blake  <ebb9@byu.net>
46228
46229         * MODULES.html.sh: Add gendocs.
46230
46231 2006-07-11  Eric Blake  <ebb9@byu.net>
46232
46233         * modules/fdl: New module, to install doc/fdl.texi.
46234         * MODULES.html.sh: Add new section for documentation modules.
46235         * gnulib-tool: Avoid space-tab.
46236         (--doc-base): New option, to manage files from doc.
46237
46238 2006-07-11  Eric Blake  <ebb9@byu.net>
46239
46240         * m4/absolute-header.m4: Fix comments to match recent change.
46241
46242 2006-07-11  Eric Blake  <ebb9@byu.net>
46243
46244         * gnulib-tool: List --doc-base before --tests-base.
46245
46246 2006-07-11  Derek R. Price  <derek@ximbiot.com>
46247
46248         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
46249
46250 2006-07-11  Bruno Haible  <bruno@clisp.org>
46251
46252         * README: Mention where to put documentation.
46253
46254 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46255
46256         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
46257
46258 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46259
46260         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
46261         to stdint.m4.
46262
46263 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46264
46265         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
46266         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
46267         "no/such/file/stdint.h" when there is no such file, so that
46268         the resulting C code can be parsed by dodgy compilers.
46269         Problems reported by Bob Proulx.
46270
46271 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46272
46273         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
46274         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46275         macros into the GNU _D_EXACT_NAMLEN.
46276         * lib/savedir.c:  Likewise.
46277         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
46278
46279 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46280         and Paul Eggert  <eggert@cs.ucla.edu>
46281
46282         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
46283         * m4/savedir.m4:
46284         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46285         macros into the GNU _D_EXACT_NAMLEN.
46286
46287 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46288
46289         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
46290         around the absolute name, to work around a problem with the HP-UX
46291         11.23 native C compiler, reported by Bob Proulx.
46292
46293 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46294
46295         * doc/maintain.texi, make-stds.texi: Sync from
46296         <http://savannah.gnu.org/projects/gnustandards>.
46297
46298 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46299
46300         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
46301
46302 2006-07-09  Jim Meyering  <jim@meyering.net>
46303
46304         * m4/glob.m4: Remove a doubled word in a comment.
46305
46306 2006-07-09  Jim Meyering  <jim@meyering.net>
46307
46308         * lib/argp-pv.c: Remove a doubled word in a comment.
46309         * lib/check-version.c (check_version): Likewise.
46310         * lib/javacomp.c (compile_java_class): Likewise.
46311
46312 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
46313
46314         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
46315         for the benefit of people using Autoconf 2.60.  If you want to
46316         support older Autoconf versions you can copy m4/onceonly_2_57.m4
46317         (or m4/onceonly.m4, if pre-2.57) manually.
46318
46319 2006-07-08  Jim Meyering  <jim@meyering.net>
46320
46321         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
46322         comment.
46323         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
46324         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
46325         comment.
46326
46327 2006-07-08  Jim Meyering  <jim@meyering.net>
46328
46329         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
46330
46331 2006-07-07  Simon Josefsson  <jas@extundo.com>
46332
46333         * tests/test-crc.c: Change expected crc value, the test vector
46334         were probably computed using the old broken crc.c?
46335
46336 2006-07-06  Simon Josefsson  <jas@extundo.com>
46337
46338         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
46339         now the canonical place for the M4 file).
46340
46341         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
46342         from the sys_socket dependency now.
46343
46344         * modules/inet_pton (Files): Ditto.
46345
46346         * modules/inet_ntop (Files): Ditto.
46347
46348 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
46349
46350         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
46351         not gl_PREREQ_GETUSERSHELL.
46352
46353 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46354
46355         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
46356         with only one argument, for Autoconf 2.60.
46357         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
46358         expand to nothing, so add a shell command to avoid syntax error.
46359         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46360
46361 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46362
46363         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
46364
46365 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46366
46367         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
46368         no longer needed.  Check for isblank decl.
46369         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
46370         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
46371         of existence.
46372
46373 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46374
46375         * lib/getloadavg.c: Use __VMS, not VMS.
46376         * lib/getopt.c: Likewise.
46377         * lib/getpagesize.h: Likewise.
46378         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
46379         and probably does not work.
46380
46381 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46382
46383         * lib/.cppi-disable: Add wcwidth.
46384         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
46385         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
46386         (ISGRAPH): Remove.  All uses changed to isgraph.
46387         (FOLD) [!defined _LIBC]: Remove special case.
46388         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
46389         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
46390         HAVE_ISBLANK.
46391         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
46392         case.
46393
46394 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46395
46396         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
46397         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
46398         brackets.  Other minor changes to suppress some compiler
46399         warnings.
46400
46401 2006-07-06  Derek R. Price  <derek@ximbiot.com>
46402         and Paul Eggert  <eggert@cs.ucla.edu>
46403
46404         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
46405         of invoking obsolescent AC_HEADER_DIRENT macro.
46406         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
46407         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
46408         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
46409         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
46410         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
46411         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
46412         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
46413         * m4/readdir.m4: Remove; no longer needed.
46414
46415 2006-07-06  Derek R. Price  <derek@ximbiot.com>
46416         and Paul Eggert  <eggert@cs.ucla.edu>
46417
46418         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
46419         Don't worry about this obsolete case any more.
46420         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
46421         directories.
46422         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
46423         worry about this obsolete case any more.
46424         * lib/fts.c: Likewise.
46425         * lib/getcwd.c: Likewise.
46426         * lib/glob.h: Likewise.
46427         * lib/savedir.c: Likewise.
46428
46429 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
46430
46431         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
46432         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
46433         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
46434         needed.
46435         All uses removed.
46436         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46437         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
46438         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
46439         needed.
46440         * m4/getdate.m4 (gl_GETDATE): Likewise.
46441         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
46442         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
46443         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
46444         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46445         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
46446         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46447         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
46448         needed.
46449
46450 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
46451
46452         * lib/memcasecmp.c: Include <limits.h>.
46453         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
46454         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
46455         Don't assume isdigit succeeds only on '0' through '9'.
46456
46457 2006-07-05  Eric Blake  <ebb9@byu.net>
46458
46459         * modules/getaddrinfo (Depends-on): Add snprintf.
46460
46461 2006-07-05  Eric Blake  <ebb9@byu.net>
46462
46463         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
46464         to avoid 'header present but could not be compiled' on cygwin.
46465
46466 2006-07-05  Eric Blake  <ebb9@byu.net>
46467
46468         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
46469         missing from netdb.h.
46470         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
46471
46472 2006-07-05  Derek R. Price  <derek@ximbiot.com>
46473
46474         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
46475         no longer needed.
46476         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
46477         * m4/getdate.m4 (gl_GETDATE): Likewise.
46478         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
46479         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
46480         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
46481         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46482         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46483
46484 2006-07-05  Derek R. Price  <derek@ximbiot.com>
46485
46486         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
46487         All uses of is_space replaced by isspace.
46488         * lib/exit.h: Don't talk about STDC_HEADERS.
46489         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
46490         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
46491         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
46492         replaced by isprint etc.
46493         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
46494         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
46495         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
46496         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
46497         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
46498         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
46499
46500 2006-07-05  Bruno Haible  <bruno@clisp.org>
46501
46502         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
46503         the function exists, before testing against AIX.
46504         Reported by Martin Lambers <marlam@marlam.de>.
46505
46506 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
46507
46508         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
46509         From Mark D. Baushke.
46510
46511 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
46512
46513         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
46514         to the absolute name, not just one, to bypass Sun C 5.8's
46515         "warning: #include of /usr/include/... may be non-portable".
46516
46517 2006-07-04  Eric Blake  <ebb9@byu.net>
46518
46519         * modules/dirname-tests: New test module.
46520         * tests/test-dirname.c: New file, replacing dirname.c
46521         TEST_DIRNAME section that was recently deleted.
46522
46523 2006-07-04  Bruno Haible  <bruno@clisp.org>
46524
46525         Assume ANSI C header files and <ctype.h> functions.
46526         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
46527         (mbsnwidth): Use isprint, iscntrl instead.
46528
46529 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46530
46531         Merge from coreutils.
46532         * MODULES.html.sh: Add xstrtold.
46533         * modules/xstrtold: New file.
46534         * modules/cycle-check (Files): Add lib/same-inode.h.
46535         * modules/dirname (Files): Add m4/double-slash-root.m4.
46536         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
46537         * modules/mkdir-p (Files): Add lib/same-inode.h.
46538         * modules/same (Files): Add lib/same-inode.h.
46539
46540 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46541
46542         * m4/absolute-header.m4: Renamed from full-header-path.m4.
46543         This is to keep the terminology clean; POSIX talks about
46544         "absolute pathnames", not "full pathnames", but the GNU
46545         Coding Standards say to use "path" for something else;
46546         so use "absolute" to keep both sides happy.
46547         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
46548         Set gl_absolute_header, not gl_full_header_path.
46549         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
46550         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
46551         All uses changed.
46552
46553         Merge from coreutils.
46554
46555         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
46556
46557         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
46558         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
46559         want to require the building of c-strtod.o.
46560         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
46561         needs -lm directly.
46562         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
46563
46564         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
46565
46566         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
46567         --as-needed option if available.  Problem reported by Albert Chin in
46568         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
46569         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
46570         cc merely issues a bunch of annoying warnings for --as-needed
46571         (this problem was reported by Bob Proulx).  Also, try linking with
46572         -lm to detect a bug in binutils 2.16 (this problem was reported
46573         by Ralf Wildenhues).
46574
46575         2006-06-18  Jim Meyering  <jim@meyering.net>
46576
46577         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
46578         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
46579         macro.
46580         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
46581         also check for glibc-2.4's abort-inducing bug.
46582
46583         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
46584         Low-probability clean-up should be to use rmdir to get rid of
46585         the just-created directory, not unlink.
46586
46587         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
46588         configure fail, and request a bug report to inform us about it.
46589         Add a comment that, barring reports to the contrary, in 2007 we'll
46590         assume ftruncate is universally available.
46591
46592         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
46593
46594         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
46595
46596         2006-03-12  Jim Meyering  <jim@meyering.net>
46597
46598         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
46599         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
46600         * m4/same.m4 (gl_SAME): Likewise.
46601         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
46602
46603         2006-03-11  Eric Blake  <ebb9@byu.net>
46604
46605         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
46606         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
46607         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
46608         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
46609
46610 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46611
46612         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
46613         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
46614         reported by Mark D. Baushke, one in
46615         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
46616
46617         Merge from coreutils.
46618
46619         * lib/.cppi-disable: Add stdint_.h.
46620         * lib/.cvsignore: Add stdint.h.
46621
46622         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
46623
46624         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
46625         both double and long double versions.
46626         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
46627         * lib/xstrtold.c: New file.
46628         * lib/xstrtod.h (xstrtold): New decl.
46629
46630         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
46631
46632         * lib/filemode.c (setst): Remove.
46633         (strmode): Rewrite to avoid setst.  This makes the code shorter,
46634         (arguably) clearer, and the generated code is a bit smaller on my
46635         Debian GNU/Linux stable x86 host.
46636
46637         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
46638
46639         * lib/filemode.c: Include "filemode.h" first, to test the interface.
46640         Assume that filemode.h includes sys/types.h and sys/stat.h.
46641         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
46642         (ftypelet): Reorder to put common cases first, for efficiency.
46643         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
46644         to do 'M'.
46645         (strmode): Renamed from mode_string, and now stores 12 bytes instead
46646         of 10, for compatibility with FreeBSD.  All callers changed.
46647         (filemodestring): Now stores 12 bytes instead of 10, and sets file
46648         types that can't be deduced solely from st_mode.  First arg is now a
46649         const pointer.
46650         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
46651         (strmode): Renamed from mode_string.
46652         (filemodestring): New decl.
46653         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
46654         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
46655         needed.
46656         (S_ISPORT, S_ISWHT): New macros, if not already defined.
46657
46658         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46659
46660         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
46661         fsusage.h now does that.  Include fsusage.h first, to test interface.
46662         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
46663         at most one method (the old code could have generated decls that
46664         didn't conform to C89, not that this was ever exercised).
46665         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
46666
46667         2006-03-19  Jim Meyering  <jim@meyering.net>
46668
46669         Work even in a chroot where d_ino values for entries in "/"
46670         don't match the stat.st_ino values for the same names.
46671         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
46672         number, iterate through all entries again, using lstat instead.
46673         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
46674         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
46675
46676         * lib/getcwd.c (__getcwd): Clarify a comment.
46677         Use memcpy in place of a call to strcpy.
46678
46679         2006-03-12  Jim Meyering  <jim@meyering.net>
46680
46681         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
46682         matches that of the current directory (which we're about to chdir ".."
46683         out of), then save the dev-ino of the parent, instead.
46684
46685         * lib/same-inode.h (SAME_INODE): New file/macro.
46686         * lib/chdir-safer.c (SAME_INODE): Remove definition.
46687         Include "same-inode.h", instead.
46688         * lib/same.c: Likewise.
46689         * lib/cycle-check.h: Include "same-inode.h".
46690         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
46691         * lib/cycle-check.c (SAME_INODE): Remove definition.
46692         * lib/root-dev-ino.h: Include "same-inode.h".
46693
46694         2006-03-11  Eric Blake  <ebb9@byu.net>
46695
46696         * lib/same.c (same_name): s/base_name/last_component/
46697         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
46698         * lib/filenamecat.c (file_name_concat): Likewise.
46699
46700         2006-03-11  Eric Blake  <ebb9@byu.net>,
46701                     Paul Eggert  <eggert@cs.ucla.edu>
46702
46703         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
46704         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
46705         drive prefix.
46706         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
46707         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
46708         (last_component): New method.
46709         * lib/dirname.c (dir_len): Determine when drive letters need a
46710         subsequent slash.  Preserve // when it is special.
46711         (dir_name): Don't append dot when drive letter is absolute.
46712         [TEST_DIRNAME]: Move into a full-blown gnulib test.
46713         * lib/basename.c (base_name): New semantics - malloc the result.
46714         Preserve // when it is special.  Preserve relative files that look
46715         like drive letters.
46716         (base_len): Preserve // when it is special.
46717         (last_component): New method, similar to old base_name semantics.
46718         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
46719         base_name.  Strip redundant slashes from ///.
46720
46721 2006-07-03  Jim Meyering  <jim@meyering.net>
46722
46723         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
46724         macro is used before the first cycle_check call.
46725
46726 2006-07-03  Eric Blake  <ebb9@byu.net>
46727
46728         * modules/dirname (Depends-on): Add xstrndup.
46729
46730 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46731
46732         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
46733         test cases, so that config.log is a bit easier to follow.
46734
46735 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46736
46737         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
46738         both are 64 bits, since this seems to be the tradition, and this
46739         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
46740         we ever run into a host that prefers long long to long in this
46741         case, we'll need another configure-time test.  Problem reported by
46742         Jim Meyering.
46743
46744 2006-07-02  Eric Blake  <ebb9@byu.net>
46745
46746         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
46747
46748 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46749
46750         * modules/inttypes (Depends-on): No longer depends on stdint.
46751         * modules/stdint (Description): Say more about assumptions.
46752         Say that the fast types might differ.  Say macros are used.
46753         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
46754         (Makefile.am): Revise list of substituted symbols to match
46755         new stdint.m4.
46756         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
46757         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
46758         * tests/test-stdint.c (verify_same_types)
46759         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
46760         the code conforms to C99/C89.
46761         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
46762         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
46763
46764 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46765
46766         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
46767         but fix a bug, by requiring at least 64 bits.
46768         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
46769         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
46770         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
46771         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
46772
46773         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
46774         changes.  Make 2.59 a prerequisite.  Check and substitute for
46775         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
46776         inttypes.h.  Do not use special include files; just use the
46777         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
46778         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
46779         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
46780         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
46781         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
46782         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
46783         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
46784         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
46785         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
46786         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
46787         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
46788         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
46789         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
46790         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
46791         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
46792         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
46793         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
46794         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
46795         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
46796         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
46797         WINT_MAX.  Check for C99 conformance more strictly, by detecting
46798         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
46799         not check for things that C99 does not require, e.g., int8_t.  If
46800         a test isn't needed unless <stdint.h> isn't working, and is
46801         unlikely to be needed for any other reason, then don't do it
46802         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
46803         size_t, since we assume C89 freestanding at least.  Do not check
46804         for sig_atomic_t, wchar_t, or wint_t, since the code now does
46805         the right thing even if the types are not defined.  Instead use:
46806         (gl_STDINT_TYPE_PROPERTIES): New macro.
46807         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
46808         testing whether <sys/types.h> clashes, as Autoconf does this for
46809         us now.  All uses removed.
46810         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
46811         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
46812         (gl_CHECK_TYPE_SAME):
46813         Remove; no longer needed.
46814         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
46815         exists, since we'll return 0 anyway in that case.
46816         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
46817
46818 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46819
46820         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
46821         possible collision with system files.
46822         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
46823         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
46824         WCHAR_MIN and WCHAR_MAX in this case.
46825         (<stddef.h>): Do not include; no longer needed.
46826         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
46827         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
46828         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
46829         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
46830         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
46831         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
46832         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
46833         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
46834         !defined(__c99))]: Include in this case too, since it's harmless
46835         now.
46836         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
46837         dangerous to do so.
46838         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
46839         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
46840         (_STDINT_MIN, _STDINT_MAX): New macros.
46841         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
46842         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
46843         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
46844         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
46845         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
46846         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
46847         macros, not typedefs; this simplifies things quite a bit.
46848         Use long int for all types narrower than int64_t.
46849         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
46850         Define in terms of long long int or int64_t or long int,
46851         not int64_t or int32_t.  This saves some compile-time testing.
46852         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
46853         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
46854         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
46855         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
46856         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
46857         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
46858         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
46859         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
46860         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
46861         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
46862         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46863         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46864         undef any previous version and define our own version, for
46865         simplicity and consistency with the new macros for types.
46866         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46867         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46868         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
46869         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
46870         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
46871         @WINT_T_SUFFIX@ to keep things simple here.
46872         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
46873         Simplify by assuming typical 8/16/32/64 host, since we're
46874         already doing that elsewhere anyway.
46875         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
46876         and assume long long int is 64 bits if available.  This
46877         speeds up 'configure'.
46878
46879 2006-07-01  Eric Blake  <ebb9@byu.net>
46880
46881         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
46882         Reported by Andreas Buening.
46883
46884 2006-07-01  Eric Blake  <ebb9@byu.net>
46885
46886         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
46887
46888 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46889
46890         * lib/getaddrinfo.c: fixed typo
46891
46892 2006-06-29  Jim Meyering  <jim@meyering.net>
46893
46894         * modules/strftime (Maintainer): Add my name, since with the
46895         FPRINTFTIME changes strftime.c has forked from glibc.
46896
46897 2006-06-29  Eric Blake  <ebb9@byu.net>
46898
46899         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
46900
46901 2006-06-29  Eric Blake  <ebb9@byu.net>
46902
46903         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
46904
46905 2006-06-29  Eric Blake  <ebb9@byu.net>
46906
46907         * lib/stat_.h: New file.
46908
46909 2006-06-29  Eric Blake  <ebb9@byu.net>
46910
46911         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
46912         unused static function.
46913
46914 2006-06-29  Eric Blake  <ebb9@byu.net>
46915
46916         * doc/functions.texi (Function Portability): Document missing lstat
46917         on mingw.
46918
46919 2006-06-29  Eric Blake  <ebb9@byu.net>
46920
46921         * MODULES.html.sh: Add sys_stat.
46922         * modules/sys_stat: New module.
46923         * modules/mkstemp (Depends-on): Add sys_stat.
46924
46925 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46926
46927         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
46928
46929 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46930
46931         * m4/c-bs-a.m4: Removed.
46932
46933 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46934
46935         * lib/strftime.c: Assume strftime() exists.
46936
46937 2006-06-29  Derek Price  <derek@ximbiot.com>
46938
46939         * modules/c-bs-a: Removed - \a is C89.
46940         * MODULES.html.sh: Remove c-bs-a.
46941
46942 2006-06-29  Bruno Haible  <bruno@clisp.org>
46943
46944         * modules/wcwidth (License): Change to LGPL.
46945
46946 2006-06-28  Simon Josefsson  <jas@extundo.com>
46947
46948         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
46949         on _WIN32.
46950
46951         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
46952         getnameinfo.
46953
46954 2006-06-28  Simon Josefsson  <jas@extundo.com>
46955
46956         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
46957
46958 2006-06-28  Simon Josefsson  <jas@extundo.com>
46959
46960         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
46961         functions there.  It will succeed on Windows XP, but on Windows
46962         2000 and (presumably) earlier, it will fail, and use the internal
46963         re-implementation.
46964         (use_win32_p): New function.
46965         (getaddrinfo): Use strtoul on servname, to support numeric ports.
46966         Support AI_NUMERICSERV to disable getservbyname.
46967         (getnameinfo): New function, only supports
46968         NI_NUMERICHOST|NI_NUMERICSERV for now.
46969
46970         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
46971         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
46972         getnameinfo.
46973
46974 2006-06-28  Eric Blake  <ebb9@byu.net>
46975
46976         * modules/wcwidth: New file.
46977         * modules/mbchar (Depends-on): Add wcwidth.
46978         * modules/mbswidth (Depends-on): Add wcwidth.
46979         * MODULES.html.sh: Add wcwidth.
46980
46981 2006-06-28  Eric Blake  <ebb9@byu.net>
46982
46983         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
46984         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
46985
46986 2006-06-28  Eric Blake  <ebb9@byu.net>
46987
46988         * lib/xvasprintf.h: Fix comments.
46989
46990 2006-06-28  Eric Blake  <ebb9@byu.net>
46991
46992         * lib/mbchar.h (wcwidth): Include wcwidth.h.
46993         * lib/mbswidth.c (wcwidth): Move from here...
46994         * lib/wcwidth.h: ...to this new file.
46995
46996 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46997
46998         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
46999
47000         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
47001         it's obsolete.
47002         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
47003
47004 2006-06-28  Derek R. Price  <derek@ximbiot.com>
47005
47006         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
47007         Autoconf 2.60 says this stuff was obsolete.
47008
47009 2006-06-28  Bruno Haible  <bruno@clisp.org>
47010
47011         * modules/wcwidth (Files): Add m4/wchar_t.m4.
47012
47013 2006-06-28  Bruno Haible  <bruno@clisp.org>
47014
47015         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
47016         gt_TYPE_WCHAR_T.
47017
47018 2006-06-28  Bruno Haible  <bruno@clisp.org>
47019
47020         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
47021         declaration for wcwidth.
47022         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
47023
47024 2006-06-28  Bruno Haible  <bruno@clisp.org>
47025
47026         * lib/mkdtemp.c [MINGW]: Include <io.h>.
47027         (mkdir): Define using _mkdir.
47028
47029 2006-06-28  Bruno Haible  <bruno@clisp.org>
47030
47031         * lib/getaddrinfo.h: Fix POSIX URL.
47032         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
47033         _WIN32.
47034         (use_win32_p): Make static.
47035         (getaddrinfo): Reject service name if it is empty or does not consist
47036         solely of decimal digits, or if its value is > 65535.
47037         (getnameinfo): Remove useless casts.
47038
47039 2006-06-27  Simon Josefsson  <jas@extundo.com>
47040
47041         * modules/sys_select: New file, suggested by Bruno Haible, Paul
47042         Eggert and Martin Lambers.
47043
47044 2006-06-27  Simon Josefsson  <jas@extundo.com>
47045
47046         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
47047         Eggert and Martin Lambers.
47048
47049 2006-06-27  Bruno Haible  <bruno@clisp.org>
47050
47051         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
47052         result to 0, not to empty.
47053         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
47054
47055 2006-06-27  Bruno Haible  <bruno@clisp.org>
47056
47057         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
47058
47059 2006-06-26  Simon Josefsson  <jas@extundo.com>
47060
47061         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
47062         present.
47063
47064 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
47065
47066         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
47067         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
47068         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
47069
47070 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
47071
47072         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
47073
47074 2006-06-26  Bruno Haible  <bruno@clisp.org>
47075
47076         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
47077
47078 2006-06-26  Bruno Haible  <bruno@clisp.org>
47079
47080         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
47081
47082 2006-06-26  Bruno Haible  <bruno@clisp.org>
47083
47084         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
47085         SGI C compiler in pre-C99 mode.
47086         Suggested by Mark D. Baushke and Larry Jones.
47087
47088 2006-06-26  Bruno Haible  <bruno@clisp.org>
47089
47090         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
47091         WCHAR_MAX.
47092         Reported by Mark D. Baushke and Larry Jones.
47093
47094 2006-06-26  Bruno Haible  <bruno@clisp.org>
47095
47096         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
47097         in pre-C99 mode.
47098         Suggested by Mark D. Baushke and Larry Jones.
47099
47100 2006-06-23  Simon Josefsson  <jas@extundo.com>
47101             Bruno Haible  <bruno@clisp.org>
47102
47103         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
47104         Emit mostlyclean-local rule.
47105         (func_emit_tests_Makefile_am): Likewise.
47106         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
47107
47108 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
47109
47110         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
47111
47112 2006-06-23  Bruno Haible  <bruno@clisp.org>
47113
47114         * tests/test-stdint.c: Update to match ISO C 99 Technical
47115         Corrigendum 1.
47116
47117 2006-06-23  Bruno Haible  <bruno@clisp.org>
47118
47119         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
47120
47121 2006-06-23  Bruno Haible  <bruno@clisp.org>
47122
47123         * lib/stdint_.h: Treat IRIX like OpenBSD.
47124
47125 2006-06-23  Bruno Haible  <bruno@clisp.org>
47126
47127         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
47128         ISO C 99 Technical Corrigendum 1.
47129
47130 2006-06-22  Simon Josefsson  <jas@extundo.com>
47131
47132         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
47133         MinGW.
47134
47135 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47136
47137         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
47138         needed.  Some compiler complained about some of them.  Problem reported
47139         by Larry Jones in
47140         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
47141
47142 2006-06-21  Simon Josefsson  <jas@extundo.com>
47143
47144         * tests/test-getaddrinfo.c: New file.
47145
47146         * modules/getaddrinfo-tests: New file.
47147
47148         * MODULES.html.sh: Add inet_pton.
47149
47150         * modules/inet_pton: New file.
47151
47152 2006-06-21  Simon Josefsson  <jas@extundo.com>
47153
47154         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
47155         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
47156         of using the (limited) gnulib implementation on Windows XP.
47157
47158         * m4/inet_pton.m4: New file.
47159
47160 2006-06-21  Simon Josefsson  <jas@extundo.com>
47161
47162         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
47163         variable.
47164
47165         * lib/socket_.h: Don't define WINVER.
47166
47167         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
47168         slightly modified to work in gnulib.
47169
47170 2006-06-21  Simon Josefsson  <jas@extundo.com>
47171
47172         * doc/gnulib.texi (Windows sockets): Add.
47173
47174 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
47175
47176         * lib/read-file.c (fread_file): Start with buffer allocation of
47177         0 bytes rather than 1 byte; this simplifies the code.
47178         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
47179         code to free buffer and save/restore errno.
47180         (internal_read_file): Remove unused local.
47181
47182 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
47183
47184         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
47185         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
47186         Problem reported by Denis Excoffier in
47187         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
47188
47189 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
47190
47191         * modules/sys_socket, modules/socklen: Include sys/types since
47192         FreeBSD 4.x's sys/socket.h needs it.
47193
47194 2006-06-19  Simon Josefsson  <jas@extundo.com>
47195
47196         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
47197
47198 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47199
47200         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
47201
47202 2006-06-19  Bruno Haible  <bruno@clisp.org>
47203
47204         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
47205         and FULL_PATH_INTTYPES_H in angle brackets.
47206         Reported by Mark D. Baushke <mdb@gnu.org>.
47207
47208 2006-06-17  Eric Blake  <ebb9@byu.net>
47209
47210         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
47211         errno.
47212
47213 2006-06-17  Bruno Haible  <bruno@clisp.org>
47214
47215         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
47216         <sys/inttypes.h>.
47217
47218 2006-06-17  Bruno Haible  <bruno@clisp.org>
47219
47220         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
47221         whether errno is declared. Assume <errno.h> declares errno.
47222
47223 2006-06-17  Bruno Haible  <bruno@clisp.org>
47224
47225         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
47226
47227 2006-06-17  Bruno Haible  <bruno@clisp.org>
47228
47229         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
47230         problem on Solaris 2.5.1.
47231
47232 2006-06-16  Eric Blake  <ebb9@byu.net>
47233
47234         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
47235         * lib/unicodeio.c [!defined errno]: Likewise.
47236         * lib/strtol.c [!defined errno]: Likewise.
47237         * lib/strtod.c [!defined errno]: Likewise.
47238
47239 2006-06-15  Eric Blake  <ebb9@byu.net>
47240
47241         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
47242
47243 2006-06-15  Eric Blake  <ebb9@byu.net>
47244
47245         * config/srclist.txt (ssize_t.m4): Lose sync.
47246
47247 2006-06-15  Bruno Haible  <bruno@clisp.org>
47248
47249         * modules/stdint (Files): Include m4/full-header-path.m4,
47250         m4/size_max.m4, m4/wchar_t.m4.
47251         (Makefile.am): Many more substitutions.
47252         * modules/stdint-tests: New file.
47253         * tests/test-stdint.c: New file.
47254
47255 2006-06-15  Bruno Haible  <bruno@clisp.org>
47256
47257         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
47258         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
47259         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
47260         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
47261         gl_CHECK_TYPE_SAME): New macros.
47262
47263 2006-06-15  Bruno Haible  <bruno@clisp.org>
47264
47265         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
47266
47267 2006-06-15  Bruno Haible  <bruno@clisp.org>
47268
47269         * lib/stdint_.h: Rewritten to be fully auto-configured.
47270         Fixes bug on HP-UX/IA64.
47271
47272 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
47273
47274         * lib/getdate.y (__attribute__): Don't define if already defined.
47275         Problem reported by Larry Jones.
47276         * lib/utimens.c (__attribute__): Likewise.
47277
47278 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
47279
47280         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
47281         reported by Andreas Schwab.
47282
47283 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47284             Bruno Haible  <bruno@clisp.org>
47285
47286         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
47287         check for the declaration of strnlen and a run test that exposes the
47288         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
47289         rpl_strndup.
47290
47291 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47292             Bruno Haible  <bruno@clisp.org>
47293
47294         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
47295
47296 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47297
47298         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
47299         compile test, for Tru64 4.0D.
47300
47301 2006-05-28  Karl Berry  <karl@gnu.org>
47302
47303         * config/srclist.txt (printf-args.c): lose sync.
47304
47305 2006-05-26  Martin Lambers  <marlam@marlam.de>
47306
47307         * lib/getpass.c: Updates the test for the native W32 API, and adds
47308         missing includes, thus fixing compilation warnings.
47309
47310 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47311
47312         * lib/exclude.c (exclude_fnmatch): New function.
47313         (excluded_file_name): Call exclude_fnmatch.
47314         * lib/exclude.h (excluded_file_name): New prototype
47315
47316 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
47317
47318         * lib/tempname.c (small_open, large_open): New macros.
47319         (__open, __open64) [!_LIBC]: Remove.
47320         (__gen_tempname): Use small_open and large_open instead of __open
47321         and __open64.  This fixes a portability bug on HP-UX 11.11i
47322         reported by Simon Wing-Tang in
47323         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
47324
47325 2006-05-24  Bruno Haible  <bruno@clisp.org>
47326
47327         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
47328         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
47329         Reported by Thorsten Maerz <torte@netztorte.de> via
47330         Aaron Stone <aaron@serendipity.cx>.
47331
47332 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47333
47334         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
47335         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
47336         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
47337         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
47338         not really conditional on the cache.
47339         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
47340
47341 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47342
47343         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
47344         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
47345         (my_usleep): Don't mishandle maximum value.
47346
47347 2006-05-19  Jim Meyering  <jim@meyering.net>
47348
47349         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
47350
47351 2006-05-17  Bruno Haible  <bruno@clisp.org>
47352
47353         Cygwin portability.
47354         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
47355
47356 2006-05-17  Bruno Haible  <bruno@clisp.org>
47357
47358         * lib/stdint_.h: Fix recognition of Cygwin.
47359
47360 2006-05-15  Bruno Haible  <bruno@clisp.org>
47361
47362         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
47363         on libtool patch by Ralf Wildenhues.
47364
47365 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
47366
47367         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
47368         test for C99 conformance; (bool) 0.5 is an integer constant
47369         expression, but (bool) -0.5 is not.  Problem reported by Fedor
47370         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
47371
47372 2006-05-11  Simon Josefsson  <jas@extundo.com>
47373
47374         * m4/xvasprintf.m4: Fix obvious typo.
47375
47376 2006-05-11  Jim Meyering  <jim@meyering.net>
47377
47378         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
47379         James Lemley.
47380
47381 2006-05-10  Simon Josefsson  <jas@extundo.com>
47382
47383         * lib/md4.c: Typo fix, update copyright years.
47384         (K1, K2): Don't use L because it turn computations into 64-bit on
47385         64-bit platforms.
47386
47387 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
47388
47389         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
47390         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
47391         unwanted sign propagation, e.g., on hosts with 64-bit int.
47392         There still are some problems with reeelly weird theoretical hosts
47393         (e.g., 33-bit int) but it's not worth worrying about now.
47394         * lib/sha1.c (rol): Likewise.
47395         (K1, K2, K3, K4): Remove unnecessary L suffix.
47396
47397 2006-05-10  Bruno Haible  <bruno@clisp.org>
47398
47399         * lib/des.c: Cast to avoid warnings.
47400
47401 2006-05-09  Bruno Haible  <bruno@clisp.org>
47402
47403         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
47404         (Depends-on): Depend also on xsize, stdarg.
47405         (configure.ac): Add gl_XVASPRINTF.
47406
47407 2006-05-09  Bruno Haible  <bruno@clisp.org>
47408
47409         * m4/xvasprintf.m4: New file.
47410
47411 2006-05-09  Bruno Haible  <bruno@clisp.org>
47412
47413         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
47414         (EOVERFLOW): Define fallback value.
47415         (xstrcat): New function.
47416         (xvasprintf): Recognize the special case of a string concatenation.
47417
47418 2006-05-08  Eric Blake  <ebb9@byu.net>
47419
47420         * gnulib-tool (func_version): Base copyright year on CVS date.
47421         (func_emit_copyright_notice): New function.
47422         (func_emit_lib_Makefile_am): Use it.
47423         (func_emit_tests_Makefile_am): Likewise.
47424         (func_import): Likewise.
47425
47426 2006-05-08  Bruno Haible  <bruno@clisp.org>
47427
47428         * modules/stdarg: New file.
47429         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
47430
47431 2006-05-08  Bruno Haible  <bruno@clisp.org>
47432
47433         * m4/stdarg.m4: New file, from GNU gettext.
47434
47435 2006-05-08  Bruno Haible  <bruno@clisp.org>
47436
47437         * config/srclist.txt (build-aux/config.rpath): different from latest
47438         release.
47439
47440 2006-05-08  Bruno Haible  <bruno@clisp.org>
47441
47442         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
47443
47444 2006-05-05  Jim Meyering  <jim@meyering.net>
47445
47446         * m4/warning.m4: New file, derived from bison's file by the same name.
47447
47448 2006-05-03  Bruno Haible  <bruno@clisp.org>
47449
47450         * lib/stdint_.h: Shorter URL.
47451         * lib/inttypes.h: Likewise.
47452
47453 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47454
47455         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
47456
47457 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47458
47459         * lib/verify.h: Document the internals better.  Most of this change
47460         was written by Bruno Haible.
47461
47462 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47463
47464         * doc/verify.texi: New file, partly based on a proposal by
47465         Bruno Haible.
47466
47467 2006-05-02  Bruno Haible  <bruno@clisp.org>
47468
47469         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
47470         test from here...
47471         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
47472
47473 2006-04-29  Bruno Haible  <bruno@clisp.org>
47474
47475         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
47476         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
47477
47478 2006-04-29  Bruno Haible  <bruno@clisp.org>
47479
47480         * gnulib-tool: Make --update option actually work.
47481
47482 2006-04-29  Bruno Haible  <bruno@clisp.org>
47483
47484         * doc/gcd.texi: New file.
47485         * doc/gnulib.texi: Include it.
47486
47487 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
47488
47489         * lib/getdate.y (get_date): When adding relative date, start with the
47490         initial time, not with the result of the first mktime call.
47491
47492 2006-04-25  Bruno Haible  <bruno@clisp.org>
47493
47494         * gnulib-tool (func_import): Output the include directives in three
47495         blocks, sorted separately.
47496         Reported by Ben Pfaff <blp@cs.stanford.edu>.
47497
47498 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
47499
47500         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
47501         to define main with arguments, for C++.  Reported by Eric Blake.
47502         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
47503         Prefer 'int main ()' to 'int main (void)', for C++.
47504         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
47505         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
47506         for 'main', for C99 and C++.
47507
47508 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
47509
47510         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
47511         Don't assume that exit status -1 is valid.
47512         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47513         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
47514         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
47515         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
47516         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
47517         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
47518         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
47519         functions can be used without declaring them, or that you can
47520         exit with status -1.
47521         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
47522
47523 2006-04-24  Karl Berry  <karl@gnu.org>
47524
47525         * config/srclist.txt (longdouble.m4): sync lost.
47526
47527 2006-04-24  Eric Blake  <ebb9@byu.net>
47528
47529         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
47530
47531 2006-04-24  Bruno Haible  <bruno@clisp.org>
47532
47533         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
47534         poll() implementation in AIX.
47535         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47536
47537 2006-04-24  Bruno Haible  <bruno@clisp.org>
47538
47539         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
47540         assigned exactly once.
47541
47542 2006-04-23  Claudio Fontana  <claudio@gnu.org>
47543             Bruno Haible  <bruno@clisp.org>
47544
47545         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
47546         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
47547         for AM_CPPFLAGS.
47548
47549 2006-04-23  Bruno Haible  <bruno@clisp.org>
47550
47551         * modules/copy-file: Depend on unistd.
47552         * modules/execute: Likewise.
47553         * modules/fatal-signal: Likewise.
47554         * modules/findprog: Likewise.
47555         * modules/mkdtemp : Likewise.
47556         * modules/pipe: Likewise.
47557         * modules/wait-process: Likewise.
47558
47559 2006-04-23  Bruno Haible  <bruno@clisp.org>
47560
47561         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
47562         condition was already detected.
47563         Reported by Ben Pfaff <blp@cs.stanford.edu>.
47564
47565 2006-04-23  Bruno Haible  <bruno@clisp.org>
47566
47567         * lib/copy-file.c: Include <unistd.h> unconditionally.
47568         * lib/execute.c: Likewise.
47569         * lib/fatal-signal.c: Likewise.
47570         * lib/findprog.c: Likewise.
47571         * lib/mkdtemp.c: Likewise.
47572         * lib/pipe.h: Likewise.
47573         * lib/pipe.c: Likewise.
47574         * lib/wait-process.h: Likewise.
47575
47576 2006-04-23  Bruno Haible  <bruno@clisp.org>
47577
47578         * gnulib-tool (func_usage): Fix --import description. Document
47579         --update.
47580         (func_import): Create temporary file in a temporary directory, if
47581         --dry-run is specified. Silence errors from 'grep' when there are no
47582         m4 files in $m4dir.
47583         (func_create_testdir): Silence errors from 'grep' when there are no
47584         m4 files in $m4dir.
47585         Reported by Karl Berry <karl@freefriends.org>.
47586
47587 2006-04-20  Bruno Haible  <bruno@clisp.org>
47588
47589         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
47590         one argument, so that the code will be portable to Autoconf 2.60.
47591         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
47592         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
47593         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
47594
47595 2006-04-19  Derek Price  <derek@ximbiot.com>
47596             Eric Blake  <ebb9@byu.net>
47597
47598         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
47599         rather than "/full/path.h".  Update comment to match.  Shorten &
47600         generalize m4_translit call via AS_TR_CPP.
47601
47602 2006-04-19  Derek Price  <derek@ximbiot.com>
47603             Eric Blake  <ebb9@byu.net>
47604
47605         * lib/inttypes.h: Correct grammar in comment.
47606
47607 2006-04-18  Derek Price  <derek@ximbiot.com>
47608             Paul Eggert  <eggert@cs.ucla.edu>
47609
47610         * modules/inttypes: New file.
47611         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
47612
47613 2006-04-18  Derek Price  <derek@ximbiot.com>
47614             Paul Eggert  <eggert@cs.ucla.edu>
47615
47616         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
47617         New files.
47618
47619 2006-04-18  Derek Price  <derek@ximbiot.com>
47620             Paul Eggert  <eggert@cs.ucla.edu>
47621
47622         * lib/inttypes.h: New file.
47623         * lib/strtoimax.c: Assume <inttypes.h>.
47624
47625 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
47626
47627         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
47628         isn't mounted.  Problem reported by Kir Kolyshkin.
47629
47630 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
47631
47632         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
47633         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
47634         Derek R. Price.
47635         * lib/regex.h (RE_DUP_MAX): Update comment to match current
47636         implementation.
47637
47638 2006-04-12  Eric Blake  <ebb9@byu.net>
47639
47640         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
47641         is now done automatically by the corresponding Autoconf macro.
47642
47643 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
47644
47645         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
47646         time_r.h.
47647
47648 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47649
47650         Merge regex changes from libc, removing some of our
47651         POSIX-conformance changes that were rejected and redoing them in a
47652         less-intrusive way.
47653
47654         * lib/regcomp.c (re_compile_internal, init_dfa):
47655         Length arg is now size_t, not Idx.  All uses changed.
47656         (peek_token): Forward decl now says internal_function.
47657         (__re_error_msgid, __re_error_msgid_idx):
47658         Now static rather than extern with attribute_hidden.
47659         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
47660         For some reason libc prefers K&R style defns for external functions.
47661         (regerror) [!defined _LIBC]: Likewise.
47662         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
47663         (seek_collating_symbol_entry, lookup_collation_sequence_value):
47664         (build_range_exp, build_collating_symbol):
47665         Use K&R-style defn.
47666         (re_compile_fastmap): Use '\0' to memset, not 0.
47667         (utf8_sb_map): Make the calculations more obvious.
47668         (init_dfa, parse_bracket_exp, build_charclass_op):
47669         Call calloc and cast result, as glibc does.
47670         (init_word_char, fetch_token, peek_token, peek_token_bracket):
47671         (build_range_exp, build_collating_symbol):
47672         Now internal functions.
47673
47674         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
47675
47676         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
47677         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
47678         Don't depend on VMS; depend on __VMS instead, for POSIX
47679         namespace cleanness.
47680         (regoff_t): Define to ssize_t, not long int.
47681
47682         Remove the REG_ macros named below.  Instead, make the old names
47683         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
47684         __USE_GNU_REGEX.
47685         (REG_BACKSLASH_ESCAPE_IN_LISTS):
47686         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
47687         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
47688         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
47689         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
47690         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
47691         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
47692         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
47693         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
47694         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
47695         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
47696         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
47697         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
47698         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
47699         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
47700         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
47701         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
47702         (REG_NREGS):
47703         Remove.  All uses replaced by the old RE_* names.
47704         (RE_BACKSLASH_ESCAPE_IN_LISTS):
47705         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
47706         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
47707         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
47708         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
47709         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
47710         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
47711         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
47712         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
47713         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
47714         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
47715         Don't bother having these macros be independent of each others'
47716         values, since they no longer exist in the POSIX name space.
47717
47718         Rename the following member names back to their old names,
47719         unless !__USE_GNU_REGEX.  All uses changed back.
47720         (buffer): Renamed from re_buffer.
47721         (allocated): Renamed from re_allocated.
47722         (used): Renamed from re_used.
47723         (syntax): Renamed from re_syntax.
47724         (fastmap): Renamed from re_fastmap.
47725         (translate): Renamed from re_translate.
47726         (can_be_null): Renamed from re_can_be_null.
47727         (regs_allocated): Renamed from re_regs_allocated.
47728         (fastmap_accurate): Renamed from re_fastmap_accurate.
47729         (no_sub): Renamed from re_no_sub.
47730         (not_bol): Renamed from re_not_bol.
47731         (not_eol): Renamed from re_not_eol.
47732         (newline_anchor): Renamed from re_newline_anchor.
47733         (num_regs): Renamed from rm_num_regs.
47734         (start): Renamed from rm_start.
47735         (end): Renamed from rm_end.
47736
47737         (free_state): Move up a bit.
47738
47739         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
47740         #define to be empty.
47741         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
47742         when that is what is intended.
47743         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
47744         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
47745         (MAX): New macro.
47746         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
47747         All uses changed back to re_malloc, etc.  It's now the caller's
47748         responsibility to check for overflow; all callers changed.
47749         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
47750         (re_x2nrealloc): Remove.
47751         (free_state): Remove decl.
47752
47753         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
47754         (re_set_registers, re_exec):
47755         Use K&R-style defn.
47756
47757         2006-01-31  Roland McGrath  <roland@redhat.com>
47758
47759         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
47760         Reported by Mike Frysinger <vapier@gentoo.org>.
47761
47762         2006-01-15  Andreas Jaeger  <aj@suse.de>
47763
47764         [BZ #1950]
47765         * lib/regex_internal.c (re_string_reconstruct): Adjust for
47766         build_wcs_upper_buffer change.
47767         (build_wcs_upper_buffer): Change return type.
47768
47769         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
47770
47771         * lib/regex_internal.h: Include <stdint.h> if available.
47772
47773         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
47774
47775         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
47776
47777         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
47778
47779         * lib/regcomp.c: Adjust for changed secondary hash function.
47780
47781         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
47782
47783         * lib/regex.h: Pretty printing.
47784         Clean up namespace a bit.
47785
47786         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
47787
47788         * lib/regexec.c (update_cur_sifted_state, check_arrival,
47789         check_arrival_add_next_nodes): Avoid using uninitialized variable.
47790
47791         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
47792                     Ulrich Drepper  <drepper@redhat.com>
47793
47794         [BZ #1302]
47795         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
47796         changed.
47797         (bitset_word_t): Renamed from bitset_word.  All uses changed.
47798
47799         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
47800
47801         [BZ #281]
47802         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
47803         * lib/regcomp.c: Remove unnecessary uses of
47804         unsigned RE_TRANSLATE_TYPE.
47805         * lib/regex_internal.h: Likewise.
47806         * lib/regex_internal.c: Likewise.
47807         * lib/regexec.c: Likewise.
47808         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
47809
47810         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
47811
47812         * lib/regexec.c (find_recover_state): Remove unnecessary
47813         initialization.
47814         (transit_state_bkref): Make DFA a const pointer.
47815         (get_subexp): Likewise.
47816         (check_arrival): Likewise.
47817         (update_cur_sifted_state): Likewise.
47818         (re_search_internal): Likewise.
47819         (prune_impossible_nodes): Likewise.
47820         (acquire_init_state_context): Likewise.
47821         (proceed_next_node): Likewise.
47822         (set_regs): Likewise.
47823         (free_fail_stack_return): Likewise.
47824         (check_arrival_expand_ecl): Mark DFA parameter as const.
47825         (check_arrival_expand_ecl_sub): Likewise.
47826         (check_subexp_limits): Likewise.
47827         (sub_epsilon_src_nodes):  Likewise.
47828         (add_epsilon_src_nodes):  Likewise.
47829         (merge_state_array): Likewise.
47830         (update_regs): Likewise.
47831         (build_trtable): Likewise.
47832         (sift_states_backward): Mark MCTX parameter as const.
47833         (build_sifted_states): Likewise.
47834         (update_cur_sifted_state): Likewise.
47835         (sift_states_mkref): Likewise.
47836         (check_arrival_expand_ecl): Mark eclosure as const.
47837         (check_dst_limits_calc_pos_1): Likewise.
47838         * lib/regex_internal.h (re_match_context_t): Make dfa a const
47839         pointer.
47840
47841         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
47842
47843         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
47844         (transit_state_sb): Likewise.
47845         (transit_state_mb): Likewise.
47846         (sift_states_iter_mb): Likewise.
47847         (check_arrival_add_next_nodes): Likewise.
47848         (check_node_accept_bytes): Change first parameter to pointer-to-const.
47849         [_LIBC] (re_search_2_stub): Use mempcpy.
47850
47851         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
47852         mbrtowc for very simple UTF-8 case.
47853
47854         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
47855         a pointer-to-const.
47856         (re_acquire_state_context): Likewise.
47857         * lib/regex_internal.h: Adjust prototypes.
47858
47859         * lib/regex.c: Prevent using C++ compilers.
47860
47861         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
47862         (re_acquire_state_context): Likewise.
47863
47864 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47865
47866         * modules/regex (Depends-on): Add ssize_t.
47867
47868 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47869
47870         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
47871         translation table.
47872
47873 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47874
47875         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
47876
47877 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
47878             Bruno Haible  <bruno@clisp.org>
47879
47880         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
47881         <sys/types.h> and <inttypes.h>.
47882
47883 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47884
47885         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
47886         `__error_t_defined', so argp.h will not typedef the former.
47887
47888 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
47889
47890         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
47891         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
47892         glibc names.  Even if glibc is changed to conform to POSIX, the
47893         traditional names will be available anyway, since regex depends on
47894         the extensions module.  Also, fix a longstanding typo in the
47895         implementation of Spencer ERE test #75 from grep 2.3.  Problems
47896         reported by Emanuele Giaquinta.  Also, change sense of cached
47897         variable, so that the message makes sense.
47898
47899 2006-03-24  Simon Josefsson  <jas@extundo.com>
47900
47901         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
47902         including some doc fixes.
47903         (base64_encode_alloc): Fix +1 bug on allocation failures.
47904
47905 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47906
47907         * lib/base64.c (base64_encode): Do not read past end of array with
47908         unsanitized input on systems with CHAR_BIT > 8.
47909
47910 2006-03-24  Eric Blake  <ebb9@byu.net>
47911
47912         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
47913
47914 2006-03-22  Karl Berry  <karl@gnu.org>
47915
47916         * config/srclist.txt (*setenv.[ch]): get from coreutils.
47917         * config/srclistvars.sh (COREUTILS): new var.
47918
47919 2006-03-17  Jim Meyering  <jim@meyering.net>
47920
47921         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
47922         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
47923
47924 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47925
47926         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
47927         no longer needs it.  Instead, check that regoff_t is as least
47928         as wide as ptrdiff_t.
47929
47930         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
47931         so that our regex.h stays compatible with the installed regex.
47932         This is helpful for installers who configure --without-included-regex.
47933         Problem reported by Emanuele Giaquinta.
47934
47935 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47936
47937         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
47938         Typedef to long int, not to off_, as POSIX will likely change
47939         in that direction.
47940
47941 2006-03-15  Eric Blake  <ebb9@byu.net>
47942
47943         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
47944
47945 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47946
47947         * lib/argp-help.c (validate_uparams): Fix typo
47948         * lib/argp-parse.c (argp_default_options): Consistently begin help
47949         messages with a lowercase letter.
47950
47951 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
47952
47953         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
47954         overrun buffers and shouldn't be used (much as gets shouldn't be
47955         used).
47956         * lib/time_r.c (asctime_r, ctime_r): Likewise.
47957
47958 2006-03-08  Simon Josefsson  <jas@extundo.com>
47959
47960         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
47961         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47962
47963 2006-03-08  Simon Josefsson  <jas@extundo.com>
47964
47965         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
47966         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47967
47968 2006-03-08  Simon Josefsson  <jas@extundo.com>
47969
47970         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
47971         signal that configure disabled the device.
47972
47973 2006-03-08  Simon Josefsson  <jas@extundo.com>
47974
47975         * build-aux/maint.mk: Fix refresh-po, to handle no translated
47976         languages.
47977
47978 2006-03-07  Simon Josefsson  <jas@extundo.com>
47979
47980         * modules/getopt (Depends-on): Add unistd.
47981
47982         * modules/unistd: New file.
47983
47984 2006-03-07  Simon Josefsson  <jas@extundo.com>
47985
47986         * modules/gc-random: New file.
47987
47988 2006-03-07  Simon Josefsson  <jas@extundo.com>
47989
47990         * m4/unistd_h.m4: New file.
47991
47992 2006-03-07  Simon Josefsson  <jas@extundo.com>
47993
47994         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
47995         test to be side-effect free by storing the result in the cache
47996         variable gl_cv_lib_readline, and moving the assignment of
47997         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
47998         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47999
48000 2006-03-07  Simon Josefsson  <jas@extundo.com>
48001
48002         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
48003         error on missing devices (the functions will return an error).
48004
48005         * m4/gc.m4: Move random stuff to gc-random.m4
48006
48007 2006-03-07  Simon Josefsson  <jas@extundo.com>
48008
48009         * lib/unistd_.h: New file.
48010
48011 2006-03-07  Simon Josefsson  <jas@extundo.com>
48012
48013         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
48014
48015 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48016
48017         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
48018         Problem reported by Juan Manuel Guerrero.
48019
48020 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48021
48022         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
48023         the unistd module.
48024         * lib/getlogin_r.c: Likewise.
48025         * lib/getlogin_r.h: Likewise.
48026         * lib/glob.c: Likewise.
48027         * lib/pagealign_alloc.c: Likewise.
48028         * lib/unistd_.h: Remove; no longer needed.
48029
48030 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48031
48032         * MODULES.html.sh (Support for systems lacking POSIX:2001):
48033         Add unistd.
48034         * modules/c-stack (Depends-on): Add unistd.
48035         * modules/getlogin_r: Likewise.
48036         * modules/glob: Likewise.
48037         * modules/pagealign_alloc: Likewise.
48038         * modules/unistd (Files): Remove lib/unistd_.h.
48039         (EXTRA_DIST): Remove.
48040         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
48041         need unistd_.h.
48042         (MOSTLYCLEANFILES): Remove unistd.h-t.
48043
48044 2006-03-03  Simon Josefsson  <jas@extundo.com>
48045
48046         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
48047
48048 2006-03-03  Simon Josefsson  <jas@extundo.com>
48049
48050         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
48051         libidn and bison.
48052
48053 2006-03-03  Simon Josefsson  <jas@extundo.com>
48054
48055         * build-aux/maint.mk: Add indent target.
48056
48057 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
48058
48059         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
48060         our replacement poll.h in any case, to avoid a differing
48061         declaration from a system header.  Seen on AIX.
48062
48063 2006-03-01  Simon Josefsson  <jas@extundo.com>
48064
48065         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
48066         <kasal@ucw.cz>.
48067
48068 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48069
48070         * modules/gettime (Depends-on): Add extensions module.
48071         * modules/nanosleep (Depends-on): Likewise.
48072         * modules/settime (Depends-on): Likewise.
48073
48074 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48075
48076         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
48077         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
48078         pedantically.
48079         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
48080         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
48081
48082         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
48083         not "==".  Reported by Ralf Wildenhues.
48084
48085 2006-03-01  Karl Berry  <karl@gnu.org>
48086
48087         * doc/Copyright/request-*: new files, synced from gnuorg.
48088
48089 2006-03-01  Karl Berry  <karl@gnu.org>
48090
48091         * config/srclist.txt (Copyright/*): new entries.
48092
48093 2006-02-28  Simon Josefsson  <jas@extundo.com>
48094
48095         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
48096
48097 2006-02-27  Simon Josefsson  <jas@extundo.com>
48098
48099         * lib/base64.h: Indent #define's.  From Jim Meyering
48100         <jim@meyering.net>.
48101
48102 2006-02-27  Jim Meyering  <jim@meyering.net>
48103
48104         Revert the change of 2006-02-24, so these files can continue
48105         to be sync'd from gettext.
48106         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
48107         of `config.h'.
48108
48109 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
48110
48111         * modules/intprops: New file.
48112         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
48113         Add intprops.
48114         * modules/getloadavg (Files): Remove lib/intprops.h.
48115         (Depends-on): Add intprops.
48116         * modules/human: Likewise.
48117         * modules/inttostr: Likewise.
48118         * modules/openat: Likewise.
48119         * modules/sig2str: Likewise.
48120         * modules/userspec: Likewise.
48121         * modules/utimecmp: Likewise.
48122         * modules/xnanosleep: Likewise.
48123         * modules/xstrtol: Likewise.
48124
48125 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
48126
48127         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
48128         * modules/lock-tests (TESTS): Use $(EXEEXT).
48129         * modules/tls-tests: Likewise.
48130         * modules/argp-tests: Likewise.
48131         (check_PROGRAMS): New var, replacing...
48132         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
48133
48134 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48135
48136         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
48137         `config.h'.
48138
48139 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
48140
48141         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
48142
48143 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48144
48145         Sync from coreutils.
48146         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
48147         gl_CHDIR_SAFER.
48148
48149 2006-02-22  Jim Meyering  <jim@meyering.net>
48150
48151         Sync from coreutils.
48152         * m4/chdir-safer.m4: New file.
48153
48154 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
48155
48156         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
48157         AT_FDCWD exceeds INT_MAX.
48158         * lib/openat.h (AT_FDCWD): Likewise.
48159
48160 2006-02-17  Eric Blake  <address@hidden>
48161
48162         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
48163
48164 2006-02-16  Simon Josefsson  <jas@extundo.com>
48165
48166         * modules/getaddrinfo (Depends-on): Add sys_socket.
48167
48168 2006-02-15  Simon Josefsson  <jas@extundo.com>
48169
48170         * build-aux/maint.mk: Add dsyntax-check rule.
48171
48172 2006-02-15  Eric Blake  <ebb9@byu.net>
48173
48174         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
48175         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
48176         'present but cannot compile' warnings on cygwin.
48177         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
48178         use ws2tcpip.h if sys/socket.h works.
48179         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
48180         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
48181
48182 2006-02-14  Simon Josefsson  <jas@extundo.com>
48183
48184         * modules/maintainer-makefile (Files): Rename.
48185
48186         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
48187         and (the local) Makefile.cfg to maint-cfg.mk.
48188
48189         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
48190         to the latter.
48191
48192         * modules/maintainer-makefile: New module.
48193
48194         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
48195         severaly stripped to make it possible to build it up from scratch
48196         with reliable tests.
48197
48198         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
48199         fixes to permit overriding the default actions when configure and
48200         makefile are not available.
48201
48202 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
48203
48204         Sync from coreutils.
48205         * modules/lstat (Depends-on): Don't depend on xalloc.
48206         (License): Change from GPL to LGPL, since this is now simply a
48207         replacement for a libc function.
48208
48209 2006-02-14  Jim Meyering  <jim@meyering.net>
48210
48211         Sync from coreutils.
48212
48213         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
48214         failure on deficient systems, and simplify gnulib lgpl dependencies.
48215         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
48216         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
48217
48218         * lib/xalloc-die.c: Remove unused definition of N_.
48219
48220 2006-02-14  Jim Meyering  <jim@meyering.net>
48221
48222         Sync from coreutils.
48223         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
48224         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
48225         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
48226         double-quote uses of that variable, to accommodate the rare case in
48227         which getmntent is available in none of the libraries checked.  This
48228         happens at least on FreeBSD 5.0.
48229
48230 2006-02-13  Simon Josefsson  <jas@extundo.com>
48231
48232         * gnulib-tool (Usage): Fix --import, from
48233         karl@freefriends.org (Karl Berry).
48234
48235 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
48236
48237         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
48238
48239 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
48240
48241         * lib/argp-namefrob.h: Restore changes accidentally lost during the
48242         "autoupdate" on 2005-12-12.
48243
48244 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48245
48246         * modules/closeout (Depends-on): Remove atexit.
48247
48248 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48249
48250         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
48251         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
48252
48253 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
48254
48255         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
48256         __EXTENSIONS__ if this causes compilation to fail.  Problem
48257         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
48258         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
48259
48260 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
48261
48262         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
48263         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
48264         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
48265         All uses changed.
48266
48267 2006-01-26  Simon Josefsson  <jas@extundo.com>
48268
48269         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
48270         prototype is visible on mingw32.
48271
48272         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
48273         for mingw32.
48274
48275         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
48276         mingw32).
48277
48278 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
48279
48280         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
48281         attempt to open for write; this always fails, at least on POSIX
48282         hosts.  This reinstates the 2006-01-09 change, which was
48283         inadvertently removed.
48284
48285 2006-01-26  Bruno Haible  <bruno@clisp.org>
48286
48287         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
48288         Reported by Paul Eggert.
48289
48290 2006-01-26  Bruno Haible  <bruno@clisp.org>
48291             Paul Eggert  <eggert@cs.ucla.edu>
48292
48293         * lib/stdbool_.h (_Bool)
48294         [(! (defined __cplusplus || defined __BEOS__)
48295           && !defined __GNUC__
48296           && !(defined __HP_cc || defined __xlc__
48297                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
48298                || defined __sgi))]:
48299         #define to signed char in these cases too; this simplifies
48300         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
48301         etc., separately) and makes it more conservative.
48302
48303 2006-01-25  Simon Josefsson  <jas@extundo.com>
48304
48305         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
48306         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
48307         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
48308
48309 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
48310
48311         * lib/argp-namefrob.h: Bugfix. Remove stray #
48312
48313 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
48314
48315         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
48316         so that we test the test.
48317         Check for yet another HP-UX cc bug involving *bool |= bool.
48318
48319 2006-01-25  Karl Berry  <karl@gnu.org>
48320
48321         * config/srclist.txt (vasnprintf.c): sync lost.
48322
48323 2006-01-25  Jim Meyering  <jim@meyering.net>
48324
48325         Sync from the stable (b5) branch of coreutils:
48326
48327         * lib/fts.c (fts_children): Don't let close() clobber errno from
48328         failed fchdir().
48329
48330         * lib/fts.c (fts_stat): When following a symlink-to-directory,
48331         don't necessarily interpret stat-fails+lstat-succeeds as indicating
48332         a dangling symlink.  That can also happen at least for ELOOP.
48333         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
48334         FYI, this bug predates the inclusion of fts.c in coreutils.
48335
48336         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
48337         in their own block, so pre-c99 compilers don't object.
48338
48339         Avoid the double-free (first in fts_read, second in fts_close) that
48340         would occur when an `active' directory is made inaccessible (e.g.,
48341         via chmod a-x) during a traversal.
48342         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48343         before returning.  Reproduce this failure by
48344         mkdir -p a/b; cd a; chmod a-x . b
48345         Reported by Stavros Passas.
48346
48347 2006-01-25  Jim Meyering  <jim@meyering.net>
48348
48349         * lib/fileblocks.c: Remove more useless parentheses.
48350         * lib/readutmp.h: Likewise.
48351
48352 2006-01-25  Bruno Haible  <bruno@clisp.org>
48353
48354         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
48355         warnings.
48356         Reported by Paul Eggert.
48357
48358 2006-01-25  Bruno Haible  <bruno@clisp.org>
48359
48360         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
48361         rid of a trap command. For Solaris sh.
48362         Reported by Mark D. Baushke <mdb@gnu.org>.
48363
48364 2006-01-24  Simon Josefsson  <jas@extundo.com>
48365
48366         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
48367         Bruno.
48368
48369 2006-01-24  Karl Berry  <karl@gnu.org>
48370
48371         * config/srclist.txt (argp-namefrob.h): sync lost.
48372
48373 2006-01-24  Jim Meyering  <jim@meyering.net>
48374
48375         * modules/openat (Files): Add lib/intprops.h.
48376         From Mark D. Baushke.
48377
48378 2006-01-24  Jim Meyering  <jim@meyering.net>
48379
48380         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
48381         Reported by Mark D. Baushke.
48382
48383 2006-01-24  Jim Meyering  <jim@meyering.net>
48384
48385         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
48386
48387 2006-01-24  Bruno Haible  <bruno@clisp.org>
48388
48389         * modules/strnlen (Maintainer): Change from glibc to all.
48390
48391 2006-01-24  Bruno Haible  <bruno@clisp.org>
48392
48393         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
48394         Patch by Paul Eggert.
48395
48396 2006-01-24  Bruno Haible  <bruno@clisp.org>
48397
48398         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
48399         already has it.
48400         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
48401         2005-11-26.
48402
48403         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
48404         'signed char' to avoid problems with the built-in _Bool type.
48405         Reported by Paul Eggert on 2005-11-26.
48406
48407 2006-01-24  Bruno Haible  <bruno@clisp.org>
48408
48409         * gnulib-tool (func_import): Avoid constructing complicated sed
48410         expressions inside backquote.
48411         Report and solution by Mark D. Baushke <mdb@gnu.org>.
48412
48413 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
48414
48415         These changes imported from libc.
48416         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
48417         test and two separate function calls.
48418         * lib/strndup.c (__strndup): Add libc_hidden_def.
48419
48420 2006-01-23  Simon Josefsson  <jas@extundo.com>
48421
48422         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
48423         Remove the test_*_SOURCES variable: automake infers it by default.
48424         * modules/tls-tests: Likewise.
48425
48426 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48427
48428         Work around porting bugs reported by Dieter in
48429         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
48430         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
48431         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
48432         Include "getopt.h" first, to check interface.
48433         (getenv): Declare only if defined HAVE_DECL_GETENV &&
48434         !HAVE_DECL_GETENV.
48435         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
48436         (__strndup): Revert to K&R-style function dfns, the glibc style.
48437         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
48438         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
48439         Include strnlen.h first, to get prototype properly.
48440         (strnlen): Renamed from __strnlen.
48441         Remove weak alias.
48442
48443 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48444
48445         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
48446
48447 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48448
48449         * config/srclist.txt: Adjust to reflect glibc reorganization.
48450         This affects only comments.
48451
48452 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
48453
48454          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
48455          Reported by Bruce Korb <bkorb@gnu.org>.
48456
48457 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
48458
48459         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
48460         to pacify gcc -Wswitch-default.
48461
48462 2006-01-22  Bruno Haible  <bruno@clisp.org>
48463
48464         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
48465         temporary buffer for sprintf, take into account the precision also
48466         for 'd', 'i', 'u', 'o', 'x', 'X'.
48467
48468 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
48469
48470         * modules/argp-tests: New module
48471         * tests/test-argp.c: New file
48472         * tests/test-argp-2.sh: New file
48473
48474 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
48475
48476         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
48477         (__argp_base_name): Removed
48478         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
48479         typo.
48480         (__argp_base_name): Provide macro definition or extern declaration
48481         depending on the configuration
48482
48483 2006-01-20  Simon Josefsson  <jas@extundo.com>
48484
48485         * modules/inet_ntop (Depends-on): Depend on sys_socket.
48486
48487 2006-01-20  Simon Josefsson  <jas@extundo.com>
48488
48489         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
48490
48491 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
48492
48493         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
48494         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
48495         Suggested by Bruno Haible.
48496
48497 2006-01-20  Karl Berry  <karl@gnu.org>
48498
48499         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
48500         until changes propagate, I guess.
48501
48502 2006-01-19  Simon Josefsson  <jas@extundo.com>
48503
48504         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
48505
48506 2006-01-19  Simon Josefsson  <jas@extundo.com>
48507
48508         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
48509
48510 2006-01-19  Simon Josefsson  <jas@extundo.com>
48511
48512         * gnulib-tool: Set check_PROGRAMS.
48513
48514         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
48515         modules/des-tests, modules/gc-arcfour-tests,
48516         modules/gc-arctwo-tests, modules/gc-des-tests,
48517         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
48518         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
48519         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
48520         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
48521         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
48522         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
48523         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
48524         test_*_SOURCES.
48525
48526 2006-01-18  Simon Josefsson  <jas@extundo.com>
48527
48528         * modules/socklen (Depends-on): Depend on sys_socket.
48529
48530 2006-01-18  Simon Josefsson  <jas@extundo.com>
48531
48532         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
48533         modules/des-tests, modules/gc-arcfour-tests,
48534         modules/gc-arctwo-tests, modules/gc-des-tests,
48535         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
48536         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
48537         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
48538         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
48539         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
48540         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
48541         $(EXEEXT) to automake TESTS variable, for mingw32.
48542
48543 2006-01-17  Simon Josefsson  <jas@extundo.com>
48544
48545         * modules/socklen (Include): Need sys/socket.h.
48546
48547 2006-01-17  Bruno Haible  <bruno@clisp.org>
48548
48549         * modules/ssize_t (Include): Add <sys/types.h>.
48550
48551 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
48552
48553         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
48554         it's not portable and it doesn't work with cross-compiles.
48555         Problem reported by Bruno Haible.  Fix missing-$ typo in
48556         'test "gl_cv_ignore_unused_libraries" ...' that prevented
48557         -zignore from being used with Sun's C compiler.
48558
48559 2006-01-12  Simon Josefsson  <jas@extundo.com>
48560
48561         * lib/base64.c: Fix warning, reported by Bruno Haible
48562         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
48563
48564 2006-01-12  Bruno Haible  <bruno@clisp.org>
48565
48566         * modules/ldd: New file.
48567         * build-aux/ldd.sh.in: New file.
48568         * MODULES.html.sh (Support for building libraries and executables): Add
48569         ldd.
48570
48571 2006-01-12  Bruno Haible  <bruno@clisp.org>
48572
48573         * m4/ldd.m4: New file.
48574
48575 2006-01-12  Bruno Haible  <bruno@clisp.org>
48576
48577         * gnulib-tool (func_import, func_create_testdir): Don't go into an
48578         endless loop while replacing $auxdir with build-aux.
48579
48580 2006-01-11  Simon Josefsson  <jas@extundo.com>
48581
48582         * lib/stdint_.h (SIZE_MAX): Add missing (.
48583
48584 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
48585
48586         Sync from coreutils.
48587         * lib/md5.c: Fix commentary typos.
48588         (alignof, UNALIGNED_P): No need for a GCC-specific version.
48589         * lib/md5.h (__attribute__): Remove; unused.
48590         * lib/sha1.c: Fix commentary to match md5 better.
48591         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
48592         so that we don't need to worry about alignment.  All uses changed.
48593         This merges the 2005-10-28 md5 change into sha1.
48594
48595 2006-01-11  Jim Meyering  <jim@meyering.net>
48596
48597         Sync from coreutils.
48598         * lib/md5.c (OP): Fix spacing.
48599
48600 2006-01-11  Bruno Haible  <bruno@clisp.org>
48601
48602         Ensure automatic ordering between gl_LOCK and gl_ARGP.
48603         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
48604         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
48605
48606 2006-01-11  Bruno Haible  <bruno@clisp.org>
48607
48608         Ensure automatic ordering between gl_LOCK and gl_ARGP.
48609         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
48610         the "early" section as well.
48611
48612 2006-01-11  Bruno Haible  <bruno@clisp.org>
48613
48614         Avoid "ar: no archive members specified" error on MacOS X.
48615         * gnulib-tool (func_modules_add_dummy): New function.
48616         (func_import, func_create_testdir): Invoke it.
48617
48618 2006-01-11  Bruno Haible  <bruno@clisp.org>
48619
48620         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
48621         with $auxdir in AC_CONFIG_FILES statements.
48622
48623 2006-01-11  Bruno Haible  <bruno@clisp.org>
48624
48625         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
48626         Initialize also noinst_HEADERS to empty.
48627
48628 2006-01-11  Bruno Haible  <bruno@clisp.org>
48629
48630         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
48631         variables.
48632         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
48633         autoreconf.
48634
48635 2006-01-11  Bruno Haible  <bruno@clisp.org>
48636
48637         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
48638         overridable by the user.
48639         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48640
48641 2006-01-10  Simon Josefsson  <jas@extundo.com>
48642
48643         * modules/sys_socket: New file.
48644
48645 2006-01-10  Simon Josefsson  <jas@extundo.com>
48646
48647         * m4/sys_socket_h.m4: New file.
48648
48649 2006-01-10  Simon Josefsson  <jas@extundo.com>
48650
48651         * lib/socket_.h: New file.
48652
48653 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48654
48655         * modules/readutmp (Maintainer): Add myself.
48656
48657 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48658
48659         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
48660         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
48661         People who are still concerned with buggy memcmp implementations
48662         can invoke gl_FUNC_MEMCMP themselves.
48663
48664 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48665
48666         * lib/regex_internal.h (BITSET_WORD_BITS):
48667         Work around a bug in 64-bit PGC (before version 6.1-2), where the
48668         preprocessor mishandles large unsigned values as if they were signed.
48669         Problem reported by Claudio Fontana in
48670         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
48671
48672 2006-01-10  Jim Meyering  <jim@meyering.net>
48673
48674         Avoid the double-free (first in fts_read, second in fts_close) that
48675         would occur when an `active' directory is made inaccessible (e.g.,
48676         via chmod a-x) during a traversal.
48677         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48678         before returning.  Reproduce this failure by
48679         mkdir -p a/b; cd a; chmod a-x . b
48680         Reported by Stavros Passas.
48681
48682         Sync from coreutils.
48683         * lib/sha1.c: Tweak grammar in a comment.
48684
48685 2006-01-10  Jim Meyering  <jim@meyering.net>
48686
48687         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
48688         Patch by Joerg Sonnenberger.
48689
48690 2006-01-10  Bruno Haible  <bruno@clisp.org>
48691
48692         * modules/readutmp: Depend on module free.
48693         * modules/strtok_r: Depend on module restrict.
48694
48695 2006-01-10  Bruno Haible  <bruno@clisp.org>
48696
48697         * modules/gettext (configure.ac): Add an invocation of
48698         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
48699
48700 2006-01-10  Bruno Haible  <bruno@clisp.org>
48701
48702         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
48703         Reported by Werner Lemberg <wl@gnu.org>.
48704
48705 2006-01-10  Bruno Haible  <bruno@clisp.org>
48706
48707         * lib/localcharset.c: Update from GNU gettext.
48708
48709 2006-01-10  Bruno Haible  <bruno@clisp.org>
48710
48711         * lib/argp.h (__const): Remove macro. Use const instead.
48712         * lib/argp-fmtstream.h (__const): Likewise.
48713         * lib/glob_.h (__const): Remove macro.
48714         * lib/glob-libc.h: Use const instead of __const.
48715
48716 2006-01-10  Bruno Haible  <bruno@clisp.org>
48717
48718         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
48719         variable.
48720         Needed to avoid an automake error regarding the 'gettext' module.
48721
48722 2006-01-09  Simon Josefsson  <jas@extundo.com>
48723
48724         * modules/inet_ntop (Depends-on): Add restrict.
48725
48726 2006-01-09  Simon Josefsson  <jas@extundo.com>
48727
48728         * modules/gc-rijndael-tests (License): Put under LGPL.
48729
48730         * modules/gc-des-tests (License): Likewise.
48731
48732         * modules/gc-arcfour-tests (License): Likewise.
48733
48734         * modules/gc-arctwo-tests (License): Likewise.
48735
48736         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
48737
48738         * modules/gc-hmac-sha1-tests (Files): Likewise.
48739
48740         * modules/gc-hmac-md5-tests (License): Likewise.
48741
48742         * modules/gc-sha1-tests (License): Likewise.
48743
48744         * modules/gc-md5-tests (License): Likewise.
48745
48746         * modules/gc-md4-tests (License): Likewise.
48747
48748         * modules/gc-md2-tests (License): Likewise.
48749
48750         * modules/gc-tests (License): Likewise.
48751
48752         * modules/des-tests (License): Likewise.
48753
48754         * modules/md4-tests (License): Likewise.
48755
48756         * modules/md2-tests (License): Likewise.
48757
48758 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48759
48760         Sync from coreutils:
48761
48762         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
48763         * modules/lib-ignore: New file.
48764         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
48765         chdir-safer.m4, lchmod.m4.
48766         * modules/openat: Add mkdirat.c, openat-priv.h.
48767
48768 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48769
48770         Sync from coreutils.
48771         * m4/lib-ignore.m4: New file.
48772         * m4/lchmod.m4: New file.
48773
48774 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48775
48776         Sync from coreutils.
48777         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
48778         for write access: POSIX says that must fail.
48779         * lib/fts.c (diropen): Likewise.
48780         * lib/save-cwd.c (save_cwd): Likewise.
48781         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
48782         well, for minor improvements on hosts that lack O_DIRECTORY.
48783         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
48784         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
48785         Fall back on chown if open failed with EACCES.
48786
48787         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
48788         Report an error at compile-time if only a 1-second nominal clock
48789         resolution is found.
48790
48791         * lib/lchmod.h: New file.
48792         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
48793         (make_dir_parents): Use lchown rather than chown, and
48794         lchmod rather than chmod.
48795
48796         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
48797         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
48798         "proc" reported by n0dalus.
48799
48800         * lib/mountlist.c: Include <limits.h>.
48801         (dev_from_mount_options)
48802         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
48803         New function.  It no longer assumes "dev=" has the System V meaning
48804         on Linux (since it doesn't).  It also parses "dev=" more carefully.
48805         (read_file_system_list)
48806         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
48807         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
48808         dev= in that case.
48809
48810         * lib/posixtm.h (PDS_PRE_2000): New macro.
48811         * lib/posixtm.c (year): Arg is now syntax_bits rather than
48812         allow_century.  All usages changed.  Reject dates outside the range
48813         1969-1999 if PDS_PRE_2000 is used.
48814
48815 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48816
48817         Sync from coreutils.
48818         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
48819         (Time of day items): Mention the possibility of leap seconds.
48820         Problem reported by Dr. David Alan Gilbert.
48821
48822 2006-01-09  Jim Meyering  <jim@meyering.net>
48823
48824         Sync from coreutils.
48825
48826         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
48827
48828         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
48829
48830         * lib/modechange.c (mode_compile): Reject an invalid mode string
48831         that starts with an octal digit.  From Andreas Gruenbacher.
48832
48833         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
48834         and dup to open_safer and dup_safer, respectively.
48835         (openat_permissive): Fix typo in comment.
48836
48837         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
48838         "gettext.h"; either no longer needed or are guaranteed by openat.h.
48839         (_): Remove; no longer needed.
48840         (openat): Renamed from rpl_openat; no need for rpl_openat
48841         since openat.h renames openat for us.
48842         Replace most of the body with a call to openat_permissive,
48843         to avoid duplicate code.
48844         Port to (probably hypothetical) environments were mode_t is
48845         wider than int.
48846         (openat_permissive): Require mode arg, so that we can check
48847         types better.  Put it just after flags.  Change cwd failure
48848         indicator from pointer-to-bool to pointer-to-errno-value.
48849         All callers changed.
48850         Invoke openat_save_fail and/or openat_restore_fail if
48851         cwd_errno is null, so that openat can call us.
48852         (openat_permissive, fdopendir, fstatat, unlinkat):
48853         Simplify errno handling to avoid some duplicate code,
48854         as it's OK to set errno on success.
48855         * lib/openat.h: Revamp code so that function macros depend on
48856         __OPENAT_PREFIX only, not also on AT_FDCWD.
48857         (openat_ro): Remove.  Caller changed to use openat_permissive.
48858         (openat_permissive): Now a macro, if not a function.
48859         (openat_restore_fail, openat_save_fail): Now always functions,
48860         since mkdirat needs them even if __OPENAT_PREFIX is defined.
48861
48862         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
48863         and openat.c.
48864         * lib/mkdirat.c: Include openat-priv.h.
48865         Remove definitions of macros defined therein.
48866         * lib/openat.c: Likewise.
48867
48868         * lib/mkdirat.c (mkdirat): New file and function.
48869         * lib/openat.h (mkdirat): Declare.
48870
48871         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
48872
48873         * lib/openat.h (openat_permissive): Declare.
48874         (openat_ro): Define.
48875
48876         * lib/openat.c (EXPECTED_ERRNO): New macro.
48877         (openat_permissive): New function -- used in remove.c rewrite.
48878         (all functions): Set errno just before returning, only if there
48879         was an actual failure.
48880         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
48881
48882         Emulate openat-family functions using Linux's procfs, if possible.
48883         Idea and some code based on Ulrich Drepper's glibc changes.
48884
48885         * lib/openat.c: (BUILD_PROC_NAME): New macro.
48886         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
48887         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
48888         before falling back on save_cwd and restore_cwd.
48889         (fdopendir, fstatat, unlinkat): Likewise.
48890
48891         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
48892         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
48893
48894         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
48895         as second argument to va_arg.  Otherwise, some versions of gcc
48896         warn that `if this code is reached, the program will abort'.
48897
48898 2006-01-09  Jim Meyering  <jim@meyering.net>
48899
48900         Sync from coreutils.
48901         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
48902         Require openat-priv.h.
48903
48904 2006-01-09  Bruno Haible  <bruno@clisp.org>
48905
48906         * modules/strnlen (Include): Use strnlen.h.
48907
48908 2006-01-09  Bruno Haible  <bruno@clisp.org>
48909
48910         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
48911
48912 2006-01-09  Bruno Haible  <bruno@clisp.org>
48913
48914         * lib/sysexit_.h (EX_OK): New macro.
48915         Suggested by Martin Lambers <marlam@marlam.de>.
48916
48917 2006-01-09  Bruno Haible  <bruno@clisp.org>
48918
48919         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
48920         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
48921
48922 2006-01-09  Bruno Haible  <bruno@clisp.org>
48923
48924         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
48925         numbers.
48926
48927 2006-01-09  Bruno Haible  <bruno@clisp.org>
48928
48929         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
48930         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
48931         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
48932         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
48933
48934 2006-01-09  Bruno Haible  <bruno@clisp.org>
48935
48936         * build-aux/javacomp.sh.in: New file, moved from lib/.
48937         * modules/javacomp-script (Files): Update.
48938         (configure.ac): Add AC_CONFIG_FILES invocation.
48939         (EXTRA_DIST): Remove variable.
48940
48941         * build-aux/javaexec.sh.in: New file, moved from lib/.
48942         * modules/javaexec (Files): Update.
48943         (configure.ac): Add AC_CONFIG_FILES invocation.
48944         (EXTRA_DIST): Remove javaexec.sh.in.
48945
48946         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
48947         * modules/csharpcomp-script (Files): Update.
48948         (configure.ac): Add AC_CONFIG_FILES invocation.
48949         (EXTRA_DIST): Remove variable.
48950
48951         * build-aux/csharpexec.sh.in: New file, moved from lib/.
48952         * modules/csharpexec (Files): Update.
48953         (configure.ac): Add AC_CONFIG_FILES invocation.
48954         (EXTRA_DIST): Remove csharpexec.sh.in.
48955
48956 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48957
48958         Sync from coreutils.
48959
48960         Add POSIX ACL support
48961         * lib/acl.h (copy_acl, set_acl): Add declarations.
48962         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
48963         systems other than Linux.
48964         (chmod_or_fchmod): New function: use fchmod when possible,
48965         and chmod otherwise.
48966         (file_has_acl): Add a POSIX ACL implementation, with a
48967         Linux-specific subcase.
48968         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
48969         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
48970         acls are unsupported.
48971         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
48972         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
48973         are unsupported.
48974
48975 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48976
48977         Sync from coreutils.
48978         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
48979
48980 2006-01-07  Bruno Haible  <bruno@clisp.org>
48981
48982         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
48983         gl_EARLY.
48984
48985 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48986
48987         * lib/strftime.c (tzname): Don't declare if it is already #defined.
48988         Problem reported for Mingw by Mark Junker.
48989
48990 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48991
48992         * README: Gnulib normally doesn't generate a tarball.
48993
48994 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
48995
48996         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
48997         long int, not int, for nanosecond counts, so that people who are
48998         used to POSIX struct timespec won't be surprised.  Reported by Jim
48999         Meyering.
49000
49001 2005-12-28  Bruno Haible  <bruno@clisp.org>
49002
49003         * build-aux/config.rpath: Update from GNU gettext.
49004
49005 2005-12-16  Jim Meyering  <jim@meyering.net>
49006
49007         * modules/fprintftime: New module.
49008         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
49009
49010 2005-12-16  Jim Meyering  <jim@meyering.net>
49011
49012         * m4/fprintftime.m4: New file.
49013
49014 2005-12-16  Jim Meyering  <jim@meyering.net>
49015
49016         * lib/fprintftime.c, lib/fprintftime.h: New files.
49017
49018 2005-12-15  Simon Josefsson  <jas@extundo.com>
49019
49020         * modules/socklen (configure.ac): Fix M4 macro name, to align with
49021         new m4/socklen.m4.
49022
49023 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49024
49025         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
49026         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
49027
49028 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49029
49030         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
49031         * lib/argp-help.c (fill_in_uparams): Check if the constructed
49032         struct uparams is valid. Fall back to the default values if it is
49033         not.
49034
49035 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49036
49037         * modules/argp (Files): Add argp-pin.c
49038         (Depends-on): dirname
49039         (lib_SOURCES): Add argp-pin.c
49040
49041 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49042
49043         * m4/argp.m4:  Check if program_invocation_name and
49044         program_invocation_short_name are declared and define appropriate
49045         macros if they are not.
49046
49047 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49048
49049         * lib/argp-help.c (__argp_base_name): New function
49050         (__argp_short_program_name): Rewrite using __argp_base_name
49051         * lib/argp-namefrob.h: Define program_invocation_name and
49052         program_invocation_short_name if requested
49053         (__argp_base_name): Add prototype
49054         * lib/argp-parse.c (argp_def): Use gettext wrappers
49055         (argp_default_parser): Use __argp_base_name
49056         * lib/argp-pin.c: New file. Defines program_invocation_name and
49057         program_invocation_short_name on systems that lack them.
49058
49059 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49060
49061         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
49062         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49063         porting problem reported by Georg Schwarz in
49064         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49065
49066 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49067
49068         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
49069         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49070         porting problem reported by Georg Schwarz in
49071         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49072
49073 2005-12-05  Bruno Haible  <bruno@clisp.org>
49074
49075         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
49076         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
49077         Reported by Mark Junker <mjscod@gmx.de>.
49078
49079 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
49080
49081         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
49082         Use implementation from Albert Chin, with some
49083         comments/corrections by Stepan Kasal and myself.
49084
49085 2005-12-02  Bruno Haible  <bruno@clisp.org>
49086
49087         * gnulib-tool (func_import): Accept GPLed build tool modules when
49088         --lgpl is given.
49089         * modules/csharpcomp-script: New file.
49090         * modules/csharpcomp: Depend on it.
49091         * modules/javacomp-script: New file.
49092         * modules/javacomp: Depend on it.
49093         Suggested by Simon Josefsson.
49094
49095 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
49096
49097         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
49098         statement, to work around an HP-UX 10.20 compiler bug reported by
49099         Peter O'Gorman.
49100
49101 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49102
49103         * modules/savedir (Depends-on): Add openat.
49104
49105 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49106
49107         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
49108         (uintmax_t) [defined uintmax_t]: Do not declare.
49109         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
49110         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
49111         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
49112         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
49113         sake of portability to weird hosts that C allows (though we don't
49114         know of any practical examples).
49115
49116         * lib/savedir.h (fdsavedir): New decl.
49117         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
49118         contains most of the former guts of savedir.
49119         (savedir): Use savedirstream.
49120         Include "openat.h".
49121
49122 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
49123
49124         * modules/obstack (Files): Add m4/ulonglong.m4.
49125         Problem reported by Davide Angelocola.
49126
49127 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
49128
49129         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
49130         coreutils no longer futzes with rounding modes.
49131
49132 2005-11-14  Jim Meyering  <jim@meyering.net>
49133
49134         * lib/mkstemp-safer.c: Include <config.h>, required for possible
49135         replacement of mkstemp.
49136
49137 2005-11-10  Simon Josefsson  <jas@extundo.com>
49138
49139         * lib/readline.c: Remove EOL.
49140
49141 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49142
49143         * modules/gethrxtime (Depends-on): Add gettime.
49144
49145 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49146
49147         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
49148         or gettimeofday; no longer needed.
49149
49150 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49151
49152         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
49153         time business.
49154         (gethrxtime) [! (HAVE_NANOUPTIME
49155         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
49156         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
49157         our own approximation.
49158
49159 2005-11-08  Eric Blake  <ebb9@byu.net>
49160
49161         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49162
49163 2005-11-08  Eric Blake  <ebb9@byu.net>
49164
49165         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49166
49167 2005-11-04  Bruno Haible  <bruno@clisp.org>
49168
49169         * gnulib-tool: Implement --update mode.
49170
49171 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49172
49173         Fix porting problem reported by Theodoros V. Kalamatianos.
49174         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
49175         Don't assume that futimes failing means we must fail.
49176
49177 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49178
49179         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
49180         variables to suggest the intended function of the PATH_MAX check.
49181
49182 2005-10-30  Kean Johnston  <jkj@sco.com>
49183
49184         Trivial changes to support SCO systems.
49185         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
49186         as PATH_MAX.
49187         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
49188         where __ptr is null when no I/O is pending.
49189
49190 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
49191
49192         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
49193         leave errno alone.  Problem reported by Dmitry V. Levin.
49194
49195 2005-10-28  Simon Josefsson  <jas@extundo.com>
49196
49197         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
49198         Test more.
49199
49200         * tests/test-gc-md2.c, tests/test-md2.c: New files.
49201
49202         * modules/md2, modules/md2-tests: New files.
49203
49204 2005-10-28  Simon Josefsson  <jas@extundo.com>
49205
49206         * m4/inet_ntop.m4: More tests.
49207
49208         * m4/gc-md2.m4, md2.m4: New file.
49209
49210 2005-10-28  Simon Josefsson  <jas@extundo.com>
49211
49212         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
49213         "restrict" keywords, as per POSIX.  Protect the function
49214         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
49215         Don't use K&R prototypes.  Check the sprintf return values.
49216         Re-define EAFNOSUPPORT if not present.  Indent.
49217
49218         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
49219         suggested by Bruno Haible <bruno@clisp.org>.
49220
49221         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
49222
49223         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
49224
49225         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
49226         libgcrypt).
49227
49228         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
49229
49230         * lib/md2.h, lib/md2.c: New files.
49231
49232 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
49233
49234         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
49235         errno alone.  Problem reported by Frederic Jolliton.
49236
49237 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
49238
49239         * modules/verify (License): Change from GPL to LGPL.  This is a
49240         tiny module and there are apparently near-equivalents that are
49241         under the BSD license.
49242
49243 2005-10-24  Simon Josefsson  <jas@extundo.com>
49244
49245         * modules/sha1: Relicense to LGPL.
49246
49247 2005-10-24  Simon Josefsson  <jas@extundo.com>
49248
49249         * lib/md4.h: Shrink buffer size, now that we changed the type.
49250
49251 2005-10-23  Simon Josefsson  <jas@extundo.com>
49252
49253         * gnulib-tool (func_import): Fix --tests-base.
49254
49255 2005-10-22  Simon Josefsson  <jas@extundo.com>
49256
49257         * modules/arcfour (Depends-on): Need stdint.
49258
49259 2005-10-22  Simon Josefsson  <jas@extundo.com>
49260
49261         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
49262         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
49263
49264 2005-10-22  Simon Josefsson  <jas@extundo.com>
49265
49266         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
49267         suggested by Bruno Haible <bruno@clisp.org>.
49268
49269 2005-10-22  Simon Josefsson  <jas@extundo.com>
49270
49271         * lib/crc.h: Include stddef.h, for size_t.
49272
49273 2005-10-22  Simon Josefsson  <jas@extundo.com>
49274
49275         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
49276         arcfour_context struct (simplify test vector testing in GNU
49277         Shishi).
49278
49279 2005-10-21  Simon Josefsson  <jas@extundo.com>
49280
49281         * modules/des, modules/des-tests: New files.
49282
49283         * modules/gc-des, modules/gc-des-tests: New files.
49284
49285         * tests/test-des.c, tests/test-gc-des.c: New file.
49286
49287 2005-10-21  Simon Josefsson  <jas@extundo.com>
49288
49289         * modules/arctwo, modules/arctwo-tests: New files.
49290
49291         * tests/test-arctwo.c: New file.
49292
49293         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
49294
49295         * tests/test-gc-arctwo.c: New file.
49296
49297 2005-10-21  Simon Josefsson  <jas@extundo.com>
49298
49299         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
49300         Bruno Haible <bruno@clisp.org>.
49301
49302         * m4/gc-des.m4: New file.
49303
49304 2005-10-21  Simon Josefsson  <jas@extundo.com>
49305
49306         * m4/arctwo.m4: New file.
49307
49308         * m4/gc-arctwo.m4: New file.
49309
49310 2005-10-21  Simon Josefsson  <jas@extundo.com>
49311
49312         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
49313         block.
49314
49315 2005-10-21  Simon Josefsson  <jas@extundo.com>
49316
49317         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
49318         <bruno@clisp.org>.
49319
49320         * lib/hmac-sha1.c (hmac_sha1): Likewise.
49321
49322         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
49323         Bruno Haible <bruno@clisp.org>.
49324
49325         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
49326         <bruno@clisp.org>.
49327
49328 2005-10-21  Simon Josefsson  <jas@extundo.com>
49329
49330         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
49331
49332 2005-10-21  Simon Josefsson  <jas@extundo.com>
49333
49334         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
49335
49336 2005-10-21  Simon Josefsson  <jas@extundo.com>
49337
49338         * lib/des.h, lib/des.c: New files.
49339
49340         * lib/gc-gnulib.c: Support DES.c
49341
49342 2005-10-21  Simon Josefsson  <jas@extundo.com>
49343
49344         * lib/arctwo.h, lib/arctwo.c: New files.
49345
49346         * lib/gc-gnulib.c: Support ARCTWO.
49347
49348 2005-10-21  Simon Josefsson  <jas@extundo.com>
49349
49350         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
49351         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49352
49353 2005-10-21  Simon Josefsson  <jas@extundo.com>
49354
49355         * gnulib-tool (func_import, func_create_testdir): Define automake
49356         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
49357         Makefile.am snippet),
49358         suggested by Bruno Haible <bruno@clisp.org>.
49359
49360         * modules/gc (Makefile.am): Use it.
49361
49362 2005-10-21  Bruno Haible  <bruno@clisp.org>
49363
49364         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
49365         patch.
49366
49367 2005-10-19  Simon Josefsson  <jas@extundo.com>
49368
49369         * tests/test-gc-rijndael.c: New file.
49370
49371         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
49372
49373 2005-10-19  Simon Josefsson  <jas@extundo.com>
49374
49375         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
49376         interface too.
49377
49378 2005-10-19  Simon Josefsson  <jas@extundo.com>
49379
49380         * tests/test-gc-arcfour.c: New file.
49381
49382         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
49383
49384 2005-10-19  Simon Josefsson  <jas@extundo.com>
49385
49386         * modules/gc-md4, modules/gc-md4-tests: New file.
49387
49388         * tests/test-gc-md4.c: New file.
49389
49390 2005-10-19  Simon Josefsson  <jas@extundo.com>
49391
49392         * m4/gc-md4.m4: New file.
49393
49394 2005-10-19  Simon Josefsson  <jas@extundo.com>
49395
49396         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
49397         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
49398         <kasal@ucw.cz>.
49399
49400 2005-10-19  Simon Josefsson  <jas@extundo.com>
49401
49402         * m4/gc-arcfour.m4: New file.
49403
49404         * m4/gc-rijndael.m4: New file.
49405
49406 2005-10-19  Simon Josefsson  <jas@extundo.com>
49407
49408         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
49409
49410 2005-10-19  Simon Josefsson  <jas@extundo.com>
49411
49412         * lib/gc-gnulib.c: Support ARCFOUR.
49413
49414 2005-10-19  Simon Josefsson  <jas@extundo.com>
49415
49416         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
49417         support.
49418
49419         * lib/gc.h: Add ECB enum type.
49420
49421         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
49422
49423 2005-10-18  Simon Josefsson  <jas@extundo.com>
49424
49425         * tests/test-md5.c: New file.
49426
49427         * modules/md5-tests: New file.
49428
49429 2005-10-18  Simon Josefsson  <jas@extundo.com>
49430
49431         * tests/test-md4.c: New file.
49432
49433         * modules/md4, modules/md4-tests: New files.
49434
49435 2005-10-18  Simon Josefsson  <jas@extundo.com>
49436
49437         * m4/md4.m4: New file.
49438
49439 2005-10-18  Simon Josefsson  <jas@extundo.com>
49440
49441         * lib/md4.h, lib/md4.c: New files, based on md5.?.
49442
49443 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
49444
49445         * gnulib-tool (func_create_testdir): Omit the second check whether
49446         BUILT_SOURCES in nonempty.
49447
49448 2005-10-17  Simon Josefsson  <jas@extundo.com>
49449
49450         * tests/test-rijndael.c: New file.
49451
49452 2005-10-17  Simon Josefsson  <jas@extundo.com>
49453
49454         * modules/sha1: Depend on stdint instead of md5.
49455
49456         * modules/md5: Depend on stdint, remove uint32_t.
49457
49458 2005-10-17  Simon Josefsson  <jas@extundo.com>
49459
49460         * modules/gc-sha1-tests: New file.
49461
49462         * tests/test-gc-sha1.c: New file.
49463
49464 2005-10-17  Simon Josefsson  <jas@extundo.com>
49465
49466         * m4/md5.m4: Remove call to uint32_t.m4.
49467
49468 2005-10-17  Simon Josefsson  <jas@extundo.com>
49469
49470         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
49471
49472         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
49473         md5.h.
49474
49475         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
49476
49477         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
49478
49479 2005-10-17  Simon Josefsson  <jas@extundo.com>
49480
49481         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
49482
49483 2005-10-17  Simon Josefsson  <jas@extundo.com>
49484
49485         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
49486
49487 2005-10-17  Simon Josefsson  <jas@extundo.com>
49488
49489         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
49490
49491         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
49492
49493 2005-10-17  Bruno Haible  <bruno@clisp.org>
49494
49495         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
49496         that it can also be used in a test.
49497
49498 2005-10-16  Bruno Haible  <bruno@clisp.org>
49499
49500         * gnulib-tool (func_emit_tests_Makefile_am): Also define
49501         TESTS_ENVIRONMENT, so that individual tests can augment it.
49502
49503         * gnulib-tool (func_create_testdir): Use an intermediate target for
49504         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
49505         macros, like $(ALLOCA_H), which cannot be passed through the command
49506         line.
49507
49508 2005-10-15  Simon Josefsson  <jas@extundo.com>
49509
49510         * modules/rijndael-tests: New file.
49511
49512         * modules/rijndael: New file.
49513
49514 2005-10-15  Simon Josefsson  <jas@extundo.com>
49515
49516         * m4/rijndael.m4: New file.
49517
49518 2005-10-15  Simon Josefsson  <jas@extundo.com>
49519
49520         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
49521
49522         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
49523
49524 2005-10-14  Simon Josefsson  <jas@extundo.com>
49525
49526         * tests/test-arcfour.c: New file.
49527
49528         * modules/arcfour, modules/arcfour-tests: New files.
49529
49530 2005-10-14  Simon Josefsson  <jas@extundo.com>
49531
49532         * m4/arcfour.m4: New file.
49533
49534 2005-10-14  Simon Josefsson  <jas@extundo.com>
49535
49536         * lib/arcfour.h, lib/arcfour.c: New files.
49537
49538 2005-10-14  Roland McGrath  <roland@redhat.com>
49539
49540         Import from libc.  [BZ #1331]
49541         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
49542         macro argument.
49543         Reported by Matej Vela <vela@debian.org>.
49544
49545 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
49546
49547         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
49548         include <wchar.h>; no longer needed.
49549
49550 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
49551
49552         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
49553
49554 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
49555         and  Ulrich Drepper  <drepper@redhat.com>
49556
49557         Import from libc.
49558         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
49559         instead of inline stream orientation test and two separate
49560         function calls.  Pay no attention to USE_IN_LIBIO.
49561
49562 2005-10-13  Simon Josefsson  <jas@extundo.com>
49563
49564         * modules/gc-hmac-md5-tests: New file.
49565
49566         * tests/test-gc-hmac-sha1.c: New file.
49567
49568         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
49569
49570         * modules/gc-hmac-md5-tests: New file.
49571
49572         * tests/test-gc-md5.c: New file.
49573
49574         * modules/gc-md5-tests: New file.
49575
49576 2005-10-13  Simon Josefsson  <jas@extundo.com>
49577
49578         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
49579         Move memory allocation outside of loop.
49580
49581 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
49582
49583         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
49584         intermediate directory is in a read-only file system.  Problem
49585         reported by Eric Blake.
49586
49587 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
49588
49589         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
49590
49591 2005-10-12  Simon Josefsson  <jas@extundo.com>
49592
49593         * tests/test-hmac-sha1.c: New file.
49594
49595         * modules/hmac-sha1-tests: New file.
49596
49597         * modules/hmac-sha1: New file.
49598
49599 2005-10-12  Simon Josefsson  <jas@extundo.com>
49600
49601         * modules/gc-sha1: New file.
49602
49603 2005-10-12  Simon Josefsson  <jas@extundo.com>
49604
49605         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
49606
49607         * tests/test-gc-pbkdf2-sha1.c: New file.
49608
49609 2005-10-12  Simon Josefsson  <jas@extundo.com>
49610
49611         * modules/gc-md5, modules/gc-hmac-md5: New files.
49612
49613         * modules/gc (Files): Remove md5, memxor and hmac files.
49614
49615 2005-10-12  Simon Josefsson  <jas@extundo.com>
49616
49617         * m4/gc-pbkdf2-sha1.m4: New file.
49618
49619         * m4/gc-hmac-sha1.m4: New file.
49620
49621         * m4/gc-sha1: New file.
49622
49623         * m4/hmac-sha1.m4: New file.
49624
49625 2005-10-12  Simon Josefsson  <jas@extundo.com>
49626
49627         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
49628
49629         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
49630
49631 2005-10-12  Simon Josefsson  <jas@extundo.com>
49632
49633         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
49634         suggested by Bruno Haible <bruno@clisp.org>.
49635
49636 2005-10-12  Simon Josefsson  <jas@extundo.com>
49637
49638         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
49639
49640 2005-10-12  Simon Josefsson  <jas@extundo.com>
49641
49642         * lib/gc-pbkdf2-sha1.c: New file.
49643
49644         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
49645
49646 2005-10-12  Simon Josefsson  <jas@extundo.com>
49647
49648         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
49649
49650         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
49651
49652 2005-10-12  Simon Josefsson  <jas@extundo.com>
49653
49654         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
49655         GC_USE_HMAC_MD5, respectively.
49656
49657         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
49658         (gc_md5): Fix typo.
49659
49660         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
49661
49662         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
49663
49664         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
49665
49666 2005-10-12  Bruno Haible  <bruno@clisp.org>
49667
49668         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
49669         Reported by Stepan Kasal <kasal@ucw.cz>.
49670
49671 2005-10-11  Simon Josefsson  <jas@extundo.com>
49672
49673         * tests/test-crc.c: New file.
49674
49675         * modules/crc, modules/crc-tests: New files.
49676
49677 2005-10-11  Simon Josefsson  <jas@extundo.com>
49678
49679         * m4/crc.m4: New file.
49680
49681 2005-10-11  Simon Josefsson  <jas@extundo.com>
49682
49683         * lib/gc.h: Add gc_hash and gc_hash_buffer.
49684
49685         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
49686
49687         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
49688
49689 2005-10-11  Simon Josefsson  <jas@extundo.com>
49690
49691         * lib/crc.h, lib/crc.c: New files.
49692
49693         * lib/gc.h (gc_hash_buffer): Add doc.
49694
49695 2005-10-11  Bruno Haible  <bruno@clisp.org>
49696
49697         * modules/c-strcasestr: New file.
49698         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
49699
49700 2005-10-11  Bruno Haible  <bruno@clisp.org>
49701
49702         * modules/c-strcase: New file.
49703         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
49704
49705 2005-10-11  Bruno Haible  <bruno@clisp.org>
49706
49707         * lib/strcasecmp.c: Include limits.h.
49708         (strcasecmp): Avoid integer overflow on exotic platforms.
49709         * lib/strncasecmp.c: Include limits.h.
49710         (strncasecmp): Avoid integer overflow on exotic platforms.
49711         Reported by Paul Eggert.
49712
49713 2005-10-11  Bruno Haible  <bruno@clisp.org>
49714
49715         * lib/c-strcasestr.h: New file, from GNU gettext.
49716         * lib/c-strcasestr.c: New file, from GNU gettext.
49717
49718 2005-10-11  Bruno Haible  <bruno@clisp.org>
49719
49720         * lib/c-strcase.h: New file, from GNU gettext.
49721         * lib/c-strcasecmp.c: New file, from GNU gettext.
49722         * lib/c-strncasecmp.c: New file, from GNU gettext.
49723
49724 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
49725
49726         * modules/mempcpy (License): GPL -> LGPL.
49727         * modules/strchrnul (License): Likewise.
49728         * modules/sysexits (License): Likewise.
49729
49730 2005-10-08  Simon Josefsson  <jas@extundo.com>
49731
49732         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
49733
49734 2005-10-07  Simon Josefsson  <jas@extundo.com>
49735
49736         * m4/memxor.m4: Remove gl_C_RESTRICT call.
49737
49738 2005-10-06  Simon Josefsson  <jas@extundo.com>
49739
49740         * tests/test-hmac-md5.c: New file.
49741
49742         * modules/hmac-md5-tests: New file.
49743
49744         * modules/hmac-md5: New file.
49745
49746 2005-10-06  Simon Josefsson  <jas@extundo.com>
49747
49748         * m4/hmac-md5.m4: New file.
49749
49750         * m4/memxor.m4: Require gl_C_RESTRICT.
49751
49752 2005-10-06  Simon Josefsson  <jas@extundo.com>
49753
49754         * lib/memxor.c (memxor): Avoid casts and warnings.
49755
49756 2005-10-06  Simon Josefsson  <jas@extundo.com>
49757
49758         * lib/hmac-md5.c: New file.
49759
49760         * lib/hmac.h: New file.
49761
49762 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
49763
49764         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
49765         promotes to int, not unsigned int, to catch the AIX 5.3
49766         compiler bug.
49767
49768 2005-10-05  Simon Josefsson  <jas@extundo.com>
49769
49770         * modules/memxor: New file.
49771
49772         * modules/iconv (Files): Move config.rpath to havelib, it is used
49773         there.
49774
49775         * modules/havelib (Files): Add config.rpath.
49776
49777 2005-10-05  Simon Josefsson  <jas@extundo.com>
49778
49779         * m4/memxor.m4: New file.
49780
49781 2005-10-05  Simon Josefsson  <jas@extundo.com>
49782
49783         * lib/memxor.c (memxor): Fix compiler error.
49784
49785         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
49786         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
49787
49788         * lib/memxor.h, lib/memxor.c: New files.
49789
49790         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
49791         we assume all systems have it, suggested by Jim Meyering
49792         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
49793         any systems lack sys/socket.h; mingw32 is known to lack it, but we
49794         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
49795         same reasons.
49796
49797 2005-10-05  Simon Josefsson  <jas@extundo.com>
49798
49799         * config/srclist.txt: Add glibc bug 1423 for md5.h.
49800
49801 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
49802
49803         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
49804         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
49805         needed, since the source code now assumes these .h files.
49806
49807 2005-10-05  Derek Price  <derek@ximbiot.com>
49808
49809         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
49810
49811 2005-10-05  Bruno Haible  <bruno@clisp.org>
49812
49813         * modules/stdint (License): Change to LGPL.
49814
49815 2005-10-04  Simon Josefsson  <jas@extundo.com>
49816
49817         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
49818         D. Baushke" <mdb@gnu.org>.
49819
49820 2005-10-04  Bruno Haible  <bruno@clisp.org>
49821
49822         * lib/verify.h (verify_true): Provide alternative definition for C++.
49823
49824 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
49825
49826         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
49827         (SSIZE_MAX): New macro, if not already defined.
49828         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
49829         than 2 GiB.
49830
49831 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49832
49833         Sync from coreutils.
49834         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
49835         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
49836         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
49837         ULLONG_MAX doesn't work with 2.7.2.1.
49838
49839 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49840
49841         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
49842         From Ben Pfaff.
49843
49844         * modules/exclude (Depends-on): Depend on verify.
49845         * modules/strtoimax (Depends-on): Likewise.
49846         * modules/utimecmp (Depends-on): Likewise.
49847
49848 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49849
49850         * lib/exclude.c: Include verify.h.
49851         (verify): Remove.  All callers changed to use verify.h's version.
49852         * lib/strtoimax.c: Likewise.
49853         * lib/utimecmp.c: Likewis.e
49854
49855         Sync from coreutils.
49856         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
49857         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
49858         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
49859         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
49860         bother returning ENOSYS if settimeofday or stime fails; just let
49861         them return whatever errno they want to return.
49862         * lib/utimens.c: Include unistd.h, for dup2.
49863         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
49864         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
49865
49866 2005-10-02  Jim Meyering  <jim@meyering.net>
49867
49868         Sync from coreutils.
49869         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
49870         from glibc-2.2.5 that fails for read-only files.
49871
49872 2005-10-02  Jim Meyering  <jim@meyering.net>
49873
49874         Sync from coreutils.
49875         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
49876         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
49877         `#if HAVE_CONFIG_H'.
49878         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
49879         Remove AT_FDCWD test.
49880         Do not consume the fd unless successful.
49881         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
49882         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
49883         block, so that we don't even try to compile it if settimeofday is
49884         available.  This works around a compilation failure on OSF1 V5.1,
49885         due to stime requiring a `long int*' while tv_sec is `int'.
49886
49887 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
49888
49889         Sync from coreutils.
49890         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
49891         against `yes', rather than just testing for nonempty.
49892
49893 2005-10-01  Simon Josefsson  <jas@extundo.com>
49894
49895         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
49896         and Darwin.
49897
49898         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
49899         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
49900         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
49901         freeaddrinfo and gai_strerror are declared by the POSIX headers.
49902         Check if struct addrinfo is declared.
49903
49904 2005-10-01  Simon Josefsson  <jas@extundo.com>
49905
49906         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
49907         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
49908         AI_* and EAI_* definitions.  Protect function declarations.
49909
49910 2005-10-01  Jim Meyering  <jim@meyering.net>
49911
49912         Sync from coreutils.
49913
49914         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
49915         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
49916         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
49917         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49918         in the inet and nsl libraries.  Required on Solaris 5.7.
49919
49920 2005-10-01  Jim Meyering  <jim@meyering.net>
49921
49922         Sync from coreutils.
49923         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49924         in the inet and nsl libraries.  Required on Solaris 5.7.
49925
49926 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
49927
49928         * lib/getdelim.c (getdelim): Remove unused variables.
49929
49930 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
49931
49932         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
49933         so that the code works even with ancient cpp.  Portability problem
49934         with GCC 2.7.2.1 reported by Thomas M.Ott.
49935
49936 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
49937
49938         * modules/regex (Depends-on): Add strcase.
49939
49940         * modules/gethostname (Licence): Change from GPL to LGPL, since
49941         gethostname.c is a trivial implementation of a standard library
49942         function.
49943         * modules/poll (License): Change from GPL to LGPL, since it's
49944         derived from LGPL code.
49945
49946 2005-09-27  Jim Meyering  <jim@meyering.net>
49947
49948         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
49949         HAVE_CONFIG_H.
49950
49951         * lib/intprops.h (signed_type_or_expr__): Define.
49952         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
49953         for unsigned types.
49954
49955 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
49956
49957         * lib/verify.h (verify_expr): Remove, replacing with:
49958         (verify_true): New macro that returns true instead of void.
49959         (verify_type__): Remove.
49960         (verify): Use verify_true rather than verify_type__.
49961
49962 2005-09-26  Bruno Haible  <bruno@clisp.org>
49963
49964         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
49965         is necessary.
49966         (lib_SOURCES): Remove mbchar.c.
49967         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
49968         (Files): Add m4/mbrtowc.m4.
49969         * modules/mbiter: Likewise.
49970         * modules/mbuiter: Likewise.
49971
49972 2005-09-26  Bruno Haible  <bruno@clisp.org>
49973
49974         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
49975         compile mbchar.c if they are not both present.
49976         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
49977         * m4/mbiter.m4 (gl_MBITER): Likewise.
49978         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
49979         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
49980         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
49981
49982 2005-09-25  Jim Meyering  <jim@meyering.net>
49983
49984         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
49985         also uses socklen_t.
49986
49987 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
49988
49989         * lib/utimens.c (ENOSYS): Define if not already defined.
49990         (futimens): Support having a null PATH if the file descriptor
49991         is nonnegative.
49992
49993         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
49994         Remove.
49995         (__attribute): Define to empty unless GCC 3.1 or later.
49996         This works around a core dump on OpenBSD 3.4, which has GCC
49997         2.95.3, which dumps core when given __attribute__(()).  It also
49998         simplifies other tests, since we really don't want to bother with
49999         worrying about which ancient version of GCC supported what.
50000         Original problem reported by Yoann Vandoorselaere, with part of
50001         the fix suggested by Derek Price.
50002
50003 2005-09-24  Jim Meyering  <jim@meyering.net>
50004
50005         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
50006         so we can once again use a positive bitfield width of 1 -- now we
50007         don't have to explain why we were using a bitfield width of 2.
50008
50009 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50010
50011         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
50012         and similarly for the other external symbols.  Problem reported
50013         by James Gallager.
50014
50015         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
50016         bug reported by Jim Meyering.
50017
50018         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
50019         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
50020         not needed, since socklen is a prerequisite module.
50021
50022 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50023
50024         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
50025         Problem reported by Eric Blake.
50026         (getaddrinfo): Initialize se so that it's not garbage.
50027         Redo internal storage allocation so that it doesn't make unportable
50028         assumptions about alignment.
50029         Fix a memory leak.
50030
50031         * lib/utimens.c (futimens): Use futimesat if available.
50032         Prefer it to futimes since it doesn't have the futimes bug.
50033
50034         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
50035         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
50036         Instead, declare a function that returns a pointer to an array,
50037         and use verify_type__ to declare the size of the array.
50038         Problem and germ of a solution reported by Bruno Haible.
50039         (verify_type__): Use 2, not 1, for bitfield size, to avoid
50040         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
50041
50042 2005-09-23  Jim Meyering  <jim@meyering.net>
50043
50044         Sync from coreutils.
50045         Correct build failure (socklen_t not defined) on at least
50046         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
50047         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
50048
50049 2005-09-23  Jim Meyering  <jim@meyering.net>
50050
50051         * modules/getaddrinfo (Depends-on): Add socklen.
50052
50053 2005-09-23  Bruno Haible  <bruno@clisp.org>
50054
50055         * tests/test-verify.c: New file.
50056
50057 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50058
50059         Sync from coreutils.
50060
50061         * modules/argmatch (Depends-on): Add verify.
50062         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
50063         unistd-safer.
50064         * modules/save-cwd (Depends-on): Likewise.
50065
50066         * modules/openat (Files): Add lib/openat-die.c.
50067         (Depends-on): Remove error, exitfail.
50068         Add dirname.
50069
50070         * modules/verify: New file.
50071         * MODULES.html.sh (Diagnostics <assert.h>): New section,
50072         with "verify" module.
50073
50074 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50075
50076         Sync from coreutils.
50077
50078         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
50079         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
50080         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
50081         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
50082         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
50083         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
50084         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
50085         Don't bother checking for string.h, stdlib.h, unistd.h.
50086         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
50087         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
50088         module's job.
50089         * m4/jm-macros.m4 (gl_MACROS): Likewise.
50090         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
50091
50092         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
50093         (gl_GETDATE): Use it.
50094
50095         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
50096
50097 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50098
50099         Sync from coreutils.
50100
50101         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
50102         stat-time.h.
50103         * lib/argmatch.h: Include verify.h
50104         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
50105         (ARGMATCH_ASSERT): Remove; unused.
50106         * lib/canonicalize.c: Assume STDC_HEADERS.
50107         * lib/exclude.c: Include "strcase.h".
50108         * lib/regex_internal.h [!defined _LIBC]: Likewise.
50109         * lib/getusershell.c: Include stdio--.h rather than stdio.h
50110         and stdio-safer.h.
50111         (getusershell): Call fopen, not fopen_safer.
50112         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
50113         Do not include unistd-safer.h.
50114         (save_cwd): Don't call fd_safer; no longer needed
50115         now that we include fcntl--.h.
50116
50117         * lib/getdate.y (relative_time): New type.
50118         (RELATIVE_TIME_0): New constant.
50119         (parser_control): Use relative_time instead of doing it ourselves.
50120         (%union): Add new relative_time rel member.
50121         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
50122         Now typeless.
50123         (relunit, relunit_snumber): Now of type rel.
50124         (zone, rel, relunit, get_date): Adjust to above changes.
50125
50126         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
50127         Do not include unistd-safer.h.
50128         (getloadavg): Don't call fd_safer; no longer needed
50129         now that we include fcntl--.h.
50130
50131         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
50132         (make_dir_parents): Treat ENOSYS like EEXIST.
50133
50134         Improve quality of diagnostics on restore_cwd failure.
50135         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
50136         (make_dir_parents): Last arg is now int * (for errno), not bool *.
50137         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
50138         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
50139         each time through the loop.  Do not diagnose restore_cwd failure;
50140         that is the caller's job (and perhaps the caller does not care).
50141
50142         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
50143         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
50144         If the file already exists but is not a directory, don't bother
50145         to try to make its parents.
50146         Close potential file descriptor leak if we can't chdir("/") (!).
50147         Don't always return true if chdir($PWD) fails; return true only
50148         if the requested action was done successfully (except for the
50149         chdir($PWD)).
50150         Don't log final directory unless we actually made it.
50151         Refactor to avoid duplicate code to fix up permissions.
50152         Don't attempt to fix up parent permissions if chdir($PWD) fails.
50153
50154         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
50155         to make it a bit faster and (I hope) clearer.
50156         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
50157         Fix bug in formats like %2N.
50158
50159         * lib/verify.h: New file.
50160
50161 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50162
50163         Sync from coreutils.
50164         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
50165
50166 2005-09-22  Jim Meyering  <jim@meyering.net>
50167
50168         Sync from coreutils.
50169
50170         * m4/lstat.m4 (gl_FUNC_LSTAT):
50171         Use AC_LIBSOURCES to require lstat.c and lstat.h.
50172         Remove obsolete comment.
50173         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
50174         * m4/xstrtod.m4: Likewise.
50175
50176         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
50177
50178 2005-09-22  Jim Meyering  <jim@meyering.net>
50179
50180         Sync from coreutils.
50181
50182         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
50183
50184         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
50185         the .tm_year member, since otherwise gcc-4.0 would now warn about
50186         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
50187
50188         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
50189         order to avoid an unsuppressible warning from gcc on 64-bit systems.
50190
50191         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
50192         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
50193         when run in a time zone for which daylight savings time is in effect
50194         for the starting date.
50195
50196         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
50197         stop us from restricting permissions of just-created absolute-named
50198         directories.
50199         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
50200         to restore initial working directory.
50201         * lib/mkdir-p.c (make_dir_parents): New parameter:
50202         different_working_dir, to tell caller if/when we change the working
50203         directory and are unable to return to the initial one.
50204         * lib/mkdir-p.h (make_dir_parents): Update prototype.
50205         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
50206         `return false'.  This fixes a bug introduced on 2004-07-30.
50207
50208         * lib/openat.c (fdopendir): Be sure to close the supplied
50209         file descriptor before returning.  This makes our replacement
50210         implementation a little closer to Solaris's, where fdopendir
50211         ties the file descriptor to the returned DIR* pointer.
50212         * lib/openat.c (unlinkat): New function.
50213         * lib/openat.h (unlinkat): Add prototype.
50214         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
50215         (openat_restore_fail): Rename from openat_restore_die.
50216         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
50217
50218         Provide an alternative to exiting immediately upon save_cwd or
50219         restore_cwd failure.  Now, an application can arrange e.g.,
50220         to perform a longjump in that case.
50221         * lib/openat.c: Include dirname.h.
50222         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
50223         (rpl_openat, fdopendir, fstatat): Call openat_save_die
50224         and openat_restore_die rather than calling error directly.
50225         Don't include "error.h" or "exitfail.h"; they're no longer needed.
50226
50227         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
50228         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
50229         define.
50230
50231         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
50232         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
50233                             int utc, int nanoseconds);
50234         Background:
50235         date should not have to allocate a megabyte of virtual memory to
50236         handle a format argument like +%1048575T.  When implemented with
50237         strftime, it must allocate such a buffer, use strftime to fill it
50238         in, print it, then free it.
50239         With fprintftime, it simply prints everything and exits.
50240         With no need for memory allocation, that's one fewer way to fail.
50241         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
50242         optional field width, not before, so we accept %9:z, not %:9z.
50243         (my_strftime): Be sure to use L_('x') for literals.
50244
50245         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
50246         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
50247         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
50248         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
50249         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
50250         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
50251         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
50252         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
50253         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
50254         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
50255         * lib/xgethostname.c, lib/xreadlink.c:
50256         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
50257
50258         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
50259         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
50260         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
50261         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
50262         and don't include <sys/file.h>).
50263
50264 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
50265
50266         Sync from coreutils.
50267
50268         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
50269         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
50270         [!LDAV_DONE]: Avoid unused variable warning.
50271
50272 2005-09-21  Bruno Haible  <bruno@clisp.org>
50273
50274         * lib/unicodeio.h (unicode_to_mb): New declaration.
50275
50276 2005-09-20  Derek Price  <derek@ximbiot.com>
50277
50278         * lib/getaddrinfo.c: Don't include <netdb.h> included from
50279         getaddrinfo.h.
50280
50281 2005-09-20  Bruno Haible  <bruno@clisp.org>
50282
50283         * gnulib-tool: Remove trailing slashes from the values specified for
50284         --source-base, --m4-base, --tests-base, --aux-dir.
50285         Suggested by Simon Josefsson <jas@extundo.com>.
50286
50287 2005-09-20  Bruno Haible  <bruno@clisp.org>
50288
50289         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
50290         func_modules_to_filelist, func_import, func_create_testdir): Make all
50291         sorting results locale-independent, so that gnulib-cache.m4 doesn't
50292         change when gnulib-tool is invoked in a different locale.
50293
50294 2005-09-19  Simon Josefsson  <jas@extundo.com>
50295
50296         * m4/socklen.m4: Fix typo.
50297
50298 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
50299
50300         Use a consistent style for including <config.h>.
50301         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
50302         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
50303         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
50304         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
50305         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
50306         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
50307         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
50308         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
50309         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
50310         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
50311         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
50312         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
50313         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
50314         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
50315         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
50316         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
50317         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
50318         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
50319         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
50320         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
50321         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
50322         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
50323         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
50324         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
50325         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
50326         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
50327         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
50328         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
50329         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
50330         lib/xstrtoumax.c, lib/yesno.c:
50331         Standardize inclusion of config.h.
50332         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
50333         lib/inttostr.h:  Removed inclusion of config.h from header files.
50334         * lib/inttostr.c:  Adjusted in-tree users.
50335         * lib/timespec.h: Remove superfluous warning to include config.h.
50336         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
50337         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
50338         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
50339         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
50340         config.h with HAVE_CONFIG_H.
50341
50342 2005-09-19  Jim Meyering  <jim@meyering.net>
50343
50344         * modules/pathmax (License): Change to LGPL.
50345
50346 2005-09-19  Derek Price  <derek@ximbiot.com>
50347
50348         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
50349
50350 2005-09-19  Bruno Haible  <bruno@clisp.org>
50351
50352         * gnulib-tool (import): Provide default for --tests-base.
50353
50354 2005-09-19  Bruno Haible  <bruno@clisp.org>
50355
50356         * doc/quote.texi: New file, extracted from gnulib.texi.
50357         * doc/ctime.texi: New file, extracted from gnulib.texi.
50358         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
50359         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
50360         * doc/gnulib.texi: Include them.
50361
50362 2005-09-18  Bruno Haible  <bruno@clisp.org>
50363
50364         Portability fix.
50365         * gnulib-tool (func_readlink): New function.
50366         (func_ln_if_changed): Use it.
50367
50368 2005-09-18  Bruno Haible  <bruno@clisp.org>
50369
50370         * gnulib-tool: Support --with-tests also with --import.
50371         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
50372         (func_import): Use variables $testsbase and $inctests. Emit a
50373         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
50374         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
50375         SUBDIRS += $testsdir.
50376         (func_create_testdir): Update.
50377
50378 2005-09-18  Bruno Haible  <bruno@clisp.org>
50379
50380         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
50381         instead of $dry_run.
50382         (func_cp_if_changed, func_mv_if_changed): Remove functions.
50383         (func_ln_if_changed): Don't handle dry-run here.
50384         (func_import): In dry-run mode, detect more precisely which actions
50385         would be performed, and don't use "...ing" verbs.
50386
50387 2005-09-18  Bruno Haible  <bruno@clisp.org>
50388
50389         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
50390         (func_import): Use join on two temporary files instead of three nested
50391         loops, in order to determine which files are new or old.
50392
50393 2005-09-18  Bruno Haible  <bruno@clisp.org>
50394
50395         * gnulib-tool (func_import): Comment out code that spits out the
50396         new files with --dry-run.
50397
50398 2005-09-18  Bruno Haible  <bruno@clisp.org>
50399
50400         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
50401
50402 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50403
50404         * lib/stat-time.h: New file.
50405         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
50406         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
50407         in a different way.
50408         (timespec_cmp): New function.
50409         * lib/utimecmp.c: Include stat-time.h.
50410         (SYSCALL_RESOLUTION): Depend on whether various struct stat
50411         members exist, not on the obsolescent ST_MTIM_NSEC.
50412         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
50413
50414 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50415
50416         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
50417
50418 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50419
50420         * MODULES.html.sh (File system functions): Add stat-time.
50421         * modules/stat-time: New file.
50422         * modules/timespec (Files): Remove m4/st_mtim.m4; this
50423         is now done in a different way, by the stat-time module.
50424         * modules/utimecmp (Depends-on): Add stat-time.
50425
50426 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
50427
50428         * m4/st_mtim.m4: Remove.  Superseded by...
50429         * m4/stat-time.m4: New file.
50430         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
50431         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
50432
50433 2005-09-15  Derek Price  <derek@ximbiot.com>
50434
50435         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
50436
50437 2005-09-15  Derek Price  <derek@ximbiot.com>
50438
50439         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
50440         * lib/regex_internal.c: Ditto, using this...
50441         (__GNUC_PREREQ): ...new macro.
50442         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
50443         using...
50444         (__GNUC_PREREQ): ...this new macro.
50445
50446         * lib/strstr.h: Include string.h. Define strstr as a macro here.
50447
50448 2005-09-15  Derek Price  <derek@ximbiot.com>
50449             Paul Eggert  <eggert@cs.ucla.edu>
50450
50451         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
50452         changes, consolidating in...
50453         * lib/regex_internal.h: ...this file.
50454
50455 2005-09-13  Jim Meyering  <jim@meyering.net>
50456
50457         * lib/canon-host.c: Filter through gnu indent and reword comments
50458         slightly.
50459         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
50460
50461 2005-09-13  Derek Price  <derek@ximbiot.com>
50462
50463         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
50464         failure.
50465         Reported by Jim Meyering  <jim@meyering.net>.
50466
50467 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
50468
50469         * lib/base64.c: Typo.
50470         (base64_encode): Put b64str in initialized data section.
50471
50472 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
50473
50474         Merge glibc and coreutils changes into gnulib, plus a few
50475         extra fixes.
50476         * lib/md5.c: Use #error rather than a string.
50477         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
50478         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
50479         (__attribute__): Define to empty for non recent-GCC.
50480         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
50481         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
50482         Renamed from their non-__ counterparts, with new macros replacing
50483         them if not _LIBC.  Add __THROW attribute.
50484         (rol): Remove.
50485         (struct md5_ctx): Align buffer if using GCC.
50486         * lib/sha1.h (struct sha1_ctx): Likewise.
50487         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
50488         The old name was backwards.
50489         (NOTSWAP): Remove; not used.
50490         (rol): New macro, moved here from md5.h.
50491         (sha1_process_block): Remove a FIXME that doesn't make sense.
50492
50493 2005-09-12  Derek Price  <derek@ximbiot.com>
50494
50495         Return usable errors from canon-host.
50496         * lib/canon-host.h: New file.
50497         * lib/canon-host.c (canon_host): Wrap...
50498         (canon_host_r): ...this new function, which now relies exclusively on
50499         getaddrinfo.
50500         (ch_strerror): New function.
50501         (last_cherror): New global.
50502         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
50503         interface.
50504         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
50505         void *.
50506         (freeaddrinfo): Free ai->ai_canonname when set.
50507
50508 2005-09-12  Derek Price  <derek@ximbiot.com>
50509
50510         Make canon-host require getaddrinfo.
50511         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
50512         AC_LIBSOURCE canon-host.h.  Call...
50513         (gl_PREREQ_CANON_HOST): ...this new function, which requires
50514         gl_GETADDRINFO.
50515         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
50516
50517 2005-09-12  Derek Price  <derek@ximbiot.com>
50518
50519         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
50520         LGPL.
50521         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
50522
50523 2005-09-12  Derek Price  <derek@ximbiot.com>
50524
50525         * lib/gai_strerror.c: Include config.h when available.  Include
50526         getaddrinfo.h before other headers to test interface.
50527         Reported by Larry Jones <lawrence.jones@ugs.com>.
50528
50529 2005-09-12  Derek Price  <derek@ximbiot.com>
50530             Paul Eggert  <eggert@cs.ucla.edu>
50531
50532         * modules/glob (Files): Add glob-libc.h.
50533
50534 2005-09-12  Derek Price  <derek@ximbiot.com>
50535             Paul Eggert  <eggert@cs.ucla.edu>
50536
50537         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
50538         glob_.h, glob-libc.h.
50539         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
50540
50541 2005-09-12  Derek Price  <derek@ximbiot.com>
50542             Paul Eggert  <eggert@cs.ucla.edu>
50543
50544         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
50545         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
50546         protecting things that should be done only in gnulib contexts.
50547         * lib/glob_.h: New file, containing only the glob things needed for
50548         gnulib.
50549         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
50550         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
50551         (glob, globfree, glob_pattern_p): Now defined simply in terms of
50552         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
50553         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
50554         and to respect the namespace rules better.
50555
50556 2005-09-08  Simon Josefsson  <jas@extundo.com>
50557
50558         * modules/socklen: New file.
50559
50560 2005-09-08  Simon Josefsson  <jas@extundo.com>
50561
50562         * m4/socklen.m4: New file.
50563
50564 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50565
50566         * modules/utimens (Files): Add m4/utimbuf.m4, since
50567         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
50568         Reported by Sergey Poznyakoff.
50569
50570 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50571
50572         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
50573         definitions, since that's the preferred style in glibc.
50574         Fix a minor spacing issue, and update copyright notice to match
50575         glibc's.
50576
50577 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50578
50579         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
50580
50581 2005-09-06  Simon Josefsson  <jas@extundo.com>
50582
50583         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
50584         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
50585
50586 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
50587
50588         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
50589         warning.
50590
50591 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
50592
50593         * config/srclist.txt: Add glibc bug 1302.
50594
50595 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
50596
50597         Change bitset word type from unsigned int to unsigned long int,
50598         as this has better performance on typical 64-bit hosts.
50599         Port bitset code to hosts with unusual word sizes.
50600         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
50601         (build_collating_symbol):
50602         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
50603         argument is a bitset.  This is merely a style issue, but it makes
50604         it clearer that an entire array is expected.
50605         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
50606         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
50607         Port to the case where bitset_word is not the same as unsigned int.
50608         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50609         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
50610         Likewise.
50611         * lib/regexec.c (check_dst_limits_calc_pos_1,
50612         check_subexp_matching_top):
50613         (build_trtable, group_nodes_into_DFAstates):
50614         Likewise.
50615         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
50616         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
50617         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
50618         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
50619         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
50620         * lib/regcomp.c (optimize_subexps, lower_subexp):
50621         Work even if bitset_word has holes in its bitwise representation.
50622         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
50623         * lib/regexec.c (check_dst_limits_calc_pos_1,
50624         check_subexp_matching_top):
50625         Likewise.
50626         * lib/regex_internal.c (re_string_reconstruct):
50627         Don't assume UCHAR_MAX == 255.
50628         * lib/regex_internal.h (bitset_set_all): Likewise.
50629         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
50630         All uses changed.
50631         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
50632         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
50633         All uses changed.
50634         (BITSET_WORD_MAX): New macro.
50635         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
50636         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
50637         (bitset_empty, bitset_copy):
50638         Prefer sizeof (bitset) to multiplying it out ourselves.
50639         (bitset_not_merge): Remove; unused.
50640         (bitset_contain): Return bool, not unsigned int with one bit on.
50641         All callers changed.
50642         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
50643         alignment than re_node_set; do this by defining a new internal
50644         type struct dests_alloc and using it to allocate memory.
50645
50646 2005-09-05  Bruno Haible  <bruno@clisp.org>
50647
50648         * gnulib-tool (func_import): Fix comparison in handling of symbolic
50649         links.
50650
50651 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
50652
50653         * modules/size_max (Makefile.am): Add size_max.h
50654
50655 2005-09-04  Derek Price  <derek@ximbiot.com>
50656
50657         * gnulib-tool (func_import): Fix reversed $symbolic logic.
50658
50659 2005-09-03  Simon Josefsson  <jas@extundo.com>
50660
50661         * gnulib-tool: Fix typo.
50662
50663 2005-09-03  Simon Josefsson  <jas@extundo.com>
50664
50665         * config/srclist.txt: Add glibc bug 1293.
50666
50667 2005-09-03  Derek Price  <derek@ximbiot.com>
50668
50669         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
50670         From Larry Jones <lawrence.jones@ugs.com>.
50671
50672 2005-09-02  Simon Josefsson  <jas@extundo.com>
50673
50674         * modules/socklen: New file.
50675
50676 2005-09-02  Simon Josefsson  <jas@extundo.com>
50677
50678         * modules/havelib: New module.
50679
50680         * modules/gettext, modules/iconv, modules/lock, modules/readline:
50681         Use havelib.
50682
50683 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50684
50685         Check for arithmetic overflow when calculating sizes, to prevent
50686         some buffer-overflow issues.  These patches are conservative, in the
50687         sense that when I couldn't determine whether an overflow was possible,
50688         I inserted a run-time check.
50689         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
50690         macros.
50691         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
50692         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
50693         (re_xnrealloc, re_x2nrealloc): New inline functions.
50694         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
50695         parse_bracket_exp):
50696         (build_equiv_class, build_charclass): Check for arithmetic overflow
50697         in size expression calculations.
50698         * lib/regex_internal.c (re_string_realloc_buffers):
50699         (build_wcs_upper_buffer, re_node_set_add_intersect):
50700         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
50701         (re_dfa_add_node, register_state): Likewise.
50702         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
50703         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
50704         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
50705         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
50706
50707 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50708
50709         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
50710         m4/ulonglong.m4.  Problem reported by Martin Lambers.
50711
50712 2005-09-02  Bruno Haible  <bruno@clisp.org>
50713
50714         Support for lib vs. lib64 distinction on biarch platforms.
50715         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
50716         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
50717         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
50718
50719 2005-09-02  Bruno Haible  <bruno@clisp.org>
50720
50721         * gnulib-tool (import): In the other first-use case, provide defaults
50722         as well.
50723
50724 2005-09-02  Bruno Haible  <bruno@clisp.org>
50725
50726         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
50727         patches not yet found in the latest gettext release.
50728
50729 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50730
50731         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
50732         to avoid a collision with bits/local_lim.h in glibc.
50733         All uses changed.  Problem reported by Dmitry V. Levin in
50734         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
50735
50736         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
50737         bugs in int versus size_t comparisons.
50738         (re_string_context_at): Fix bug where the code assumed that
50739         Idx is signed.
50740
50741         Use bool where appropriate.
50742         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
50743         All callers changed.
50744         (calc_eclosure_iter): Likewise, for ROOT arg.
50745         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
50746         (build_charclass_op): Likewise, for NON_MATCH arg.
50747         * lib/regex_internal.c (re_string_allocate, re_string_construct):
50748         (re_string_construct_common): Likewise, for ICASE arg.
50749         * lib/regexec.c (re_search_2_stub, re_search_stub):
50750         Likewise, for RET_LEN arg.
50751         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
50752         (set_regs): Likewise, for FL_BACKTRACK arg.
50753         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
50754         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
50755         (calc_eclosure_iter, parse_bracket_exp):
50756         Use bool for internal variables that are booleans.
50757         * lib/regexec.c (re_search_internal, check_matching,
50758         proceed_next_node):
50759         (set_regs, build_sifted_states, sift_states_bkref):
50760         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
50761         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50762         (find_collation_sequence_value):
50763         Likewise.
50764         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
50765         (re_node_set_compare):
50766         Return bool, not int. All callers changed.
50767         * lib/regexec.c (check_halt_node_context, check_dst_limits):
50768         (build_trtable, check_node_accept): Likewise.
50769         * lib/regex_internal.h: Include stdbool.h.
50770
50771         Fix bugs uncovered when converting to bool.
50772         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
50773         failure instead of charging ahead blindly.
50774         * lib/regex_internal.c (register_state): Likewise.
50775         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
50776         for freeing internal storage.
50777         (group_nodes_into_DFA_states): Use unsigned int, not int, for
50778         bitset pieces used as boolean, to avoid undefined behavior
50779         on hosts that do int overflow checking.
50780
50781 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50782
50783         * config/srclist.txt: Add glibc bugs 1285-1287.
50784
50785 2005-09-01  Jim Meyering  <jim@meyering.net>
50786
50787         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
50788         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
50789         Require gl_STAT_MACROS, too.
50790
50791 2005-09-01  Bruno Haible  <bruno@clisp.org>
50792
50793         * gnulib-tool (import): In the first-use case, provide defaults.
50794
50795 2005-09-01  Bruno Haible  <bruno@clisp.org>
50796
50797         * gnulib-tool (func_import): Remove the .tmp files.
50798
50799 2005-09-01  Bruno Haible  <bruno@clisp.org>
50800
50801         * gnulib-tool (func_import): Fix handling of symbolic links.
50802
50803 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50804
50805         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
50806         old glibc regex code mishandles strings longer than 2**31 bytes.
50807         This patch fixes this when the regex code is used in gnulib
50808         (i.e., outside glibc).
50809
50810         This patch should not affect the use of the regex code inside
50811         glibc.  No doubt this problem also needs to be handled for glibc
50812         as well, but the result will be an incompatible change to the
50813         glibc ABI, and the old ABI will have to be supported too.  That
50814         can be the the subject for another patch.
50815
50816         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
50817         governing whether the rest of this patch is active.  By default,
50818         the macro is disabled and the patch has no effect.
50819         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
50820         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
50821         (struct re_pattern_buffer, re_search, re_search_2, re_match):
50822         (re_match_2, re_set_registers): Use the new types.
50823         * lib/regex_internal.h (Idx, re_hashval_t): New types.
50824         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
50825         New macros.
50826         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
50827         (re_string_context_at, bin_tree_t, re_dfastate_t):
50828         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
50829         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
50830         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
50831         (re_string_char_size_at, re_string_wchar_at):
50832         (re_string_elem_size_at):
50833         Use the new types and macros to port to 64-bit hosts.
50834         Use unsigned types for internal values, so that the code
50835         mostly works even for arrays larger than SSIZE_MAX.
50836         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
50837         (search_duplicated_node, calc_eclosure_iter, fetch_number):
50838         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
50839         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
50840         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
50841         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
50842         (calc_inveclosure, parse_dup_op, build_range_exp):
50843         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
50844         (fetch_number, create_token_tree, mark_opt_subexp):
50845         Likewise.
50846         * lib/regex_internal.c (re_string_construct_common,
50847         create_ci_newstate):
50848         (create_cd_newstate, re_string_allocate, re_string_construct):
50849         (re_string_realloc_buffers, build_wcs_upper_buffer):
50850         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50851         (re_string_reconstruct, re_string_peek_byte_case):
50852         (re_string_fetch_byte_case, re_string_context_at):
50853         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50854         (re_node_set_init_copy, re_node_set_add_intersect):
50855         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50856         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50857         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50858         (re_acquire_state, re_acquire_state_context, register_state):
50859         Likewise.
50860         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
50861         search_cur_bkref_entry):
50862         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
50863         (re_search_internal, re_search_2_stub, re_search_stub)
50864         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
50865         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
50866         (update_cur_sifted_state, check_dst_limits):
50867         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50868         (check_subexp_limits, sift_states_bkref, merge_state_array):
50869         (check_subexp_matching_top, get_subexp, get_subexp_sub):
50870         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
50871         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50872         (expand_bkref_cache, check_node_accept_bytes):
50873         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
50874         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
50875         (acquire_init_state_context, check_halt_node_context):
50876         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
50877         (sift_states_backward, clean_state_log_if_needed):
50878         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
50879         (find_recover_state, transit_state_sb, transit_state_mb):
50880         (transit_state_bkref, build_trtable, match_ctx_clean):
50881         Likewise.
50882         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
50883         to work around an assumption that REG_MISSING is negative.
50884
50885         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
50886         (seek_collating_symbol_entry) [defined _LIBC]:
50887         (lookup_collation_sequence_value) [defined _LIBC]:
50888         (build_range_exp, build_collating_symbol) [defined _LIBC]:
50889         Use prototypes rather than old-style function definitions.
50890         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
50891         (transit_state_sb) [0]:
50892         (find_collation_sequence_value) [defined _LIBC]: Likewise.
50893
50894         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
50895         rm_eo.
50896
50897         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
50898         (optimize_subexps, lower_subexp):
50899         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
50900         since the signed shift might overflow.  Use 1u<<31 instead.
50901         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50902         Likewise.
50903         * lib/regexec.c (check_dst_limits_calc_pos_1,
50904         check_subexp_matching_top): Likewise.
50905
50906         * lib/regcomp.c (optimize_subexps, lower_subexp):
50907         Use CHAR_BIT rather than 8, for clarity.
50908         * lib/regexec.c (check_dst_limits_calc_pos_1):
50909         (check_subexp_matching_top): Likewise.
50910         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
50911         have to worry about portability issues when shifting it left.
50912         Remove no-longer-needed test for table_size > 0.
50913         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
50914         in a word, as the resulting behavior is undefined.
50915         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
50916         in one case, a <= should have been an <, and in another case the
50917         whole test was missing.
50918         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
50919         the standard name CHAR_BIT.
50920         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
50921         this is not true on one's complement and signed-magnitude hosts.
50922
50923         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
50924         next_last_offset.
50925         (struct re_dfa_t): Remove unused member states_alloc.
50926         * lib/regcomp.c (init_dfa): Don't initialize unused members.
50927
50928 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50929
50930         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
50931         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
50932         and large-file glibc and in 32-bit large-file Solaris.
50933
50934 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50935
50936         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
50937         lengths fit in regoff_t; this isn't true if regoff_t is the same
50938         width as size_t.
50939         * lib/regex.c (re_search_internal): 5th arg is LAST_START
50940         (= START + RANGE) instead of RANGE.  This avoids overflow
50941         problems when regoff_t is the same width as size_t.
50942         All callers changed.
50943         (re_search_2_stub): Check for overflow when adding the
50944         sizes of the two strings.
50945         (re_search_stub): Check for overflow when adding START
50946         to RANGE; if it occurs, substitute the extreme value.
50947
50948 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50949
50950         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
50951
50952 2005-08-31  Jim Meyering  <jim@meyering.net>
50953
50954         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
50955         a pointer-to-const.
50956         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
50957         (register_state): Likewise.
50958         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
50959         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50960         (group_nodes_into_DFAstates): Likewise.
50961
50962 2005-08-31  Jim Meyering  <jim@meyering.net>
50963
50964         * check-module: Add a FIXME comment.
50965
50966 2005-08-31  Eric Blake  <ebb9@byu.net>
50967
50968         * modules/unistd-safer (Files): Add unistd--.h.
50969         * modules/stdio-safer (Files): Add stdio--.h.
50970
50971 2005-08-31  Derek Price  <derek@ximbiot.com>
50972
50973         * lib/getdelim.c (getdelim): Return EOF on EOF.
50974         Reported by Larry Jones <lawrence.jones@ugs.com>.
50975
50976 2005-08-31  Bruno Haible  <bruno@clisp.org>
50977
50978         Avoid unnecessary diffs in the generated lib/Makefile.am.
50979         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
50980         the generated files.
50981         (func_import): Don't set cmd.
50982
50983 2005-08-31  Bruno Haible  <bruno@clisp.org>
50984
50985         * lib/strstr.c: Include <stddef.h>, for NULL.
50986         * lib/strcasestr.c: Likewise.
50987         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
50988
50989 2005-08-31  Bruno Haible  <bruno@clisp.org>
50990
50991         * gnulib-tool: New option --macro-prefix.
50992         (func_import): Use macro_prefix.
50993         (import): Handle option --macro-prefix.
50994
50995 2005-08-31  Bruno Haible  <bruno@clisp.org>
50996
50997         * gnulib-tool (import): Rename most ac_* variables to cached_*.
50998         Also use new variables cached_lgpl, cached_libtool.
50999
51000 2005-08-31  Bruno Haible  <bruno@clisp.org>
51001
51002         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
51003         always instantiating them.
51004
51005 2005-08-31  Bruno Haible  <bruno@clisp.org>
51006
51007         * gnulib-tool (func_import): Read the previous cached settings
51008         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
51009         earlier added by gnulib but are now dropped. Warn when a gnulib file
51010         overwrites a non-gnulib file.
51011
51012 2005-08-31  Bruno Haible  <bruno@clisp.org>
51013
51014         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
51015         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
51016         projects that don't keep autogenerated files in CVS. Put into
51017         actioncmd only the specified modules, not the transitive closure.
51018
51019 2005-08-31  Bruno Haible  <bruno@clisp.org>
51020
51021         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
51022         Create directories that shall be filled.
51023         (import): Don't look for gl_* macros in configure.ac. Recurse across
51024         all directories containing a gnulib-cache.m4 files, if meaningful.
51025
51026 2005-08-31  Bruno Haible  <bruno@clisp.org>
51027
51028         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
51029         (import): Set seen_libtool when we see gl_LIBTOOL.
51030
51031 2005-08-31  Bruno Haible  <bruno@clisp.org>
51032
51033         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
51034         declaration macro definitions from generated gnulib.m4.
51035
51036 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
51037
51038         * lib/iconvme.h: Add prototype for iconv_alloc.
51039
51040 2005-08-29  Simon Josefsson  <jas@extundo.com>
51041
51042         * lib/iconvme.c: Fix errno.
51043
51044 2005-08-29  Bruno Haible  <bruno@clisp.org>
51045
51046         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
51047         that it works when the directory contains spaces.
51048
51049 2005-08-29  Bruno Haible  <bruno@clisp.org>
51050
51051         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
51052
51053 2005-08-29  Bruno Haible  <bruno@clisp.org>
51054
51055         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
51056         Emit more advice.
51057
51058 2005-08-29  Bruno Haible  <bruno@clisp.org>
51059         and Stepan Kasal  <kasal@ucw.cz>
51060
51061         * check-module: If more parameters are given, check each of them
51062         separately; add more exceptions, as noted by Jim Meyering.
51063         (check_module): New procedure.
51064         (%exempt_header): Now contains all exceptions.
51065
51066 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
51067
51068         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
51069
51070 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
51071
51072         * lib/iconvme.c: Split iconv_string into iconv_alloc.
51073
51074 2005-08-28  Bruno Haible  <bruno@clisp.org>
51075
51076         * m4/gnulib-tool.m4: New file.
51077
51078 2005-08-27  Jim Meyering  <jim@meyering.net>
51079
51080         * modules/unistd-safer (Files): Add pipe-safer.c.
51081         * modules/fcntl-safer (Files): Add creat-safer.c.
51082
51083 2005-08-27  Jim Meyering  <jim@meyering.net>
51084
51085         * m4/stdlib-safer.m4: New file.  From coreutils.
51086         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
51087         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
51088         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
51089         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
51090         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
51091
51092 2005-08-27  Jim Meyering  <jim@meyering.net>
51093
51094         * lib/fopen-safer.c: Merge minor changes from coreutils.
51095         * lib/dup-safer.c: Likewise.
51096         * lib/fd-safer.c: Likewise.
51097
51098         Merge from coreutils.
51099         * lib/stdio--.h: New file.
51100         * lib/stdlib--.h: New file.
51101         * lib/mkstemp-safer.c: New file.
51102
51103         GNU tar needs these.
51104         * lib/pipe-safer.c: New file.
51105         * lib/creat-safer.c: New file.
51106         * lib/fcntl--.h (creat): Define to creat_safer.
51107         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
51108         * lib/unistd--.h (pipe): Define to pipe_safer.
51109         * lib/unistd-safer.h: Declare pipe_safer.
51110
51111 2005-08-26  Simon Josefsson  <jas@extundo.com>
51112
51113         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
51114         Haible <bruno@clisp.org>.
51115
51116 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
51117
51118         * lib/regex_internal.h: Remove all references to
51119         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
51120         or better.
51121         (bitset_not, bitset_merge, bitset_not_merge):
51122         (bitset_mask, re_string_allocate, re_string_construct):
51123         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
51124         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
51125         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
51126         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
51127         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51128         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51129         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
51130         (re_acquire_state_context):
51131         Remove unnecessary forward decls.
51132         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
51133         Put __attribute at function definition,
51134         now that the function decl has been removed.
51135         * lib/regex_internal.c (re_string_peek_byte_case):
51136         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
51137         Likewise.
51138
51139 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
51140
51141         * m4/regex.m4: Add AC_PREREQ(2.50).
51142         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
51143
51144 2005-08-25  Simon Josefsson  <jas@extundo.com>
51145
51146         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
51147         __fsetlocking.
51148
51149 2005-08-25  Simon Josefsson  <jas@extundo.com>
51150
51151         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
51152         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
51153         GLIBC specific code.
51154
51155 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51156
51157         Make regex safe for g++.  This fixes one real bug (an "err"
51158         that should have been "*err").  g++ problem reported by
51159         Sam Steingold.
51160         * lib/regex_internal.h (re_calloc): New macro, consistent with
51161         re_malloc etc.  All callers of calloc changed to use re_calloc.
51162         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
51163         not int.  All callers changed.
51164         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
51165         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
51166         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
51167         (find_recover_state): Change "err" to "*err"; this fixes what
51168         appears to be a real bug.
51169         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
51170         versus int.
51171
51172 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51173
51174         * modules/regex (Depends-on): Add malloc, since the code
51175         assumes that !malloc(0) means failure.
51176
51177 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51178
51179         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
51180
51181         alloca modernization/simplification for regex.
51182         * lib/regex.c: Remove portability cruft for alloca.  This no longer
51183         needs to be at the start of the file, and can be moved into
51184         regex_internal.h and simplified.
51185         * lib/regex_internal.h: Include <alloca.h>.
51186         (__libc_use_alloca) [!defined _LIBC]: New macro.
51187         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
51188         now works outside glibc.
51189
51190 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51191
51192         * config/srclist.txt: Add glibc bugs 1241, 1245.
51193
51194 2005-08-25  Jim Meyering  <jim@meyering.net>
51195
51196         * lib/open-safer.c: Include <config.h>.
51197         Otherwise, we'd lose LARGEFILE support in any file using
51198         e.g. "fcntl--.h"
51199
51200 2005-08-25  Bruno Haible  <bruno@clisp.org>
51201
51202         * m4/minmax.m4: Require autoconf 2.52.
51203         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
51204         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
51205         alternatives of translit over the alphabet.
51206         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
51207
51208 2005-08-24  Simon Josefsson  <jas@extundo.com>
51209
51210         * tests/test-getpass.c: New file.
51211
51212 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51213
51214         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
51215         for GNU regex features.
51216
51217 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51218
51219         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
51220         * lib/regex.h (regerror): Likewise.
51221
51222         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
51223         requires this.  (The code never needed it.)
51224
51225         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
51226         All uses of recently-renamed identifiers changed to use the new,
51227         POSIX-compliant names.  The code will build and run just fine
51228         without these changes, but it's better to eat our own dog food
51229         and use the standard-conforming names.
51230
51231         * lib/regex.h: Fix a multitude of POSIX name space violations.
51232         These changes have an effect only for programs that define
51233         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
51234         do not change anything for programs compiled in the normal way.
51235         Also, there is no effect on the ABI.
51236
51237         (_REGEX_SOURCE): New macro.
51238         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
51239         defined and _GNU_SOURCE is not; this fixes a name space violation.
51240
51241         Rename the following macros to obey POSIX requirements.
51242         The old names are still visible as macros if _REGEX_SOURCE is defined.
51243         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
51244         RE_BACKSLASH_ESCAPE_IN_LISTS.
51245         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
51246         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
51247         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
51248         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
51249         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
51250         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
51251         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
51252         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
51253         (REG_INTERVALS): renamed from RE_INTERVALS.
51254         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
51255         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
51256         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
51257         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
51258         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
51259         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
51260         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
51261         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
51262         RE_UNMATCHED_RIGHT_PAREN_ORD.
51263         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
51264         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
51265         (REG_DEBUG): renamed from RE_DEBUG.
51266         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
51267         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
51268         unusual, since we can't clash with the POSIX REG_ICASE.
51269         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
51270         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
51271         (REG_NO_SUB): renamed from RE_NO_SUB.
51272         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
51273         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
51274         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
51275         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
51276         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
51277         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
51278         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
51279         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
51280         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
51281         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
51282         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
51283         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
51284         RE_SYNTAX_POSIX_MINIMAL_BASIC.
51285         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
51286         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
51287         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
51288         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
51289         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
51290         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
51291         (REG_FIXED): Renamed from REGS_FIXED.
51292         (REG_NREGS): Renamed from RE_NREGS.
51293
51294         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
51295         of other REG_* macros, since POSIX says the user is allowed to
51296         #undef these macros selectively.
51297
51298         (reg_errcode_t): Update comment stating what other tables need
51299         to be consistent.
51300
51301         Rename the following enum values to obey POSIX requirements.
51302         The old names are still visible as macros.
51303         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
51304         is not defined, since GNU is supposed to be a superset of POSIX as
51305         much as possible, and since we want reg_errcode_t to be a signed
51306         type for implementation consistency.
51307         (_REG_NOERROR): Renamed from REG_NOERROR.
51308         (_REG_NOMATCH): Renamed from REG_NOMATCH.
51309         (_REG_BADPAT): Renamed from REG_BADPAT.
51310         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
51311         (_REG_ECTYPE): Renamed from REG_ECTYPE.
51312         (_REG_EESCAPE): Renamed from REG_EESCAPE.
51313         (_REG_ESUBREG): Renamed from REG_ESUBREG.
51314         (_REG_EBRACK): Renamed from REG_EBRACK.
51315         (_REG_EPAREN): Renamed from REG_EPAREN.
51316         (_REG_EBRACE): Renamed from REG_EBRACE.
51317         (_REG_BADBR): Renamed from REG_BADBR.
51318         (_REG_ERANGE): Renamed from REG_ERANGE.
51319         (_REG_ESPACE): Renamed from REG_ESPACE.
51320         (_REG_BADRPT): Renamed from REG_BADRPT.
51321         (_REG_EEND): Renamed from REG_EEND.
51322         (_REG_ESIZE): Renamed from REG_ESIZE.
51323         (_REG_ERPAREN): Renamed from REG_ERPAREN.
51324         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
51325         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
51326         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
51327         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
51328
51329         (_REG_RE_NAME, _REG_RM_NAME): New macros.
51330         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
51331         changed.  But support the old name if the new one is not defined
51332         and if _REGEX_SOURCE.
51333
51334         Change the following member names in struct re_pattern_buffer.
51335         The old names are still supported if !_REGEX_SOURCE.
51336         The new names are always supported, regardless of _REGEX_SOURCE.
51337         (re_buffer): Renamed from buffer.
51338         (re_allocated): Renamed from allocated.
51339         (re_used): Renamed from used.
51340         (re_syntax): Renamed from syntax.
51341         (re_fastmap): Renamed from fastmap.
51342         (re_translate): Renamed from translate.
51343         (re_can_be_null): Renamed from can_be_null.
51344         (re_regs_allocated): Renamed from regs_allocated.
51345         (re_fastmap_accurate): Renamed from fastmap_accurate.
51346         (re_no_sub): Renamed from no_sub.
51347         (re_not_bol): Renamed from not_bol.
51348         (re_not_eol): Renamed from not_eol.
51349         (re_newline_anchor): Renamed from newline_anchor.
51350
51351         Change the following member names in struct re_registers.
51352         The old names are still supported if !_REGEX_SOURCE.
51353         The new names are always supported, regardless of _REGEX_SOURCE.
51354         (rm_num_regs): Renamed from num_regs.
51355         (rm_start): Renamed from start.
51356         (rm_end): Renamed from end.
51357
51358         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
51359         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
51360         Prepend __ to parameter names.
51361
51362         Undo yesterday's changes.
51363
51364 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51365
51366         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
51367         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
51368         lib/regex.c.
51369
51370 2005-08-24  Jim Meyering  <jim@meyering.net>
51371
51372         Sync from coreutils.
51373         * m4/fcntl-safer.m4: New file.
51374
51375         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
51376         and object files for this module.
51377
51378 2005-08-24  Jim Meyering  <jim@meyering.net>
51379
51380         Sync from coreutils.
51381         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
51382
51383 2005-08-24  Jim Meyering  <jim@meyering.net>
51384
51385         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
51386         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
51387
51388 2005-08-24  Jim Meyering  <jim@meyering.net>
51389
51390         * modules/fcntl-safer: New module.
51391         * modules/fts (Depends-on): Add fcntl-safer.
51392         * MODULES.html.sh (File descriptor based Input/Output):
51393         Add fcntl-safer.
51394
51395 2005-08-24  Bruno Haible  <bruno@clisp.org>
51396
51397         Support for unit test modules.
51398         * modules/README: Mention tests modules.
51399         * modules/TEMPLATE-TESTS: New file.
51400         * gnulib-tool: New options --extract-tests-module, --with-tests and
51401         --tests-base (unused for the moment).
51402         (testsbase, inctests): New variables.
51403         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
51404         (func_verify_module): Exclude TEMPLATE-TESTS.
51405         (func_verify_nontests_module, func_verify_tests_module): New functions.
51406         (func_get_dependencies): Add implicit dependency for tests modules.
51407         (func_get_tests_module): New function.
51408         (func_modules_transitive_closure): When --with-tests was specified,
51409         include the unit tests as well, unless explicitly avoided.
51410         (func_emit_lib_Makefile_am): Ignore the tests modules here.
51411         (func_emit_tests_Makefile_am): New function.
51412         (func_create_testdir): When --with-tests was specified, emit a
51413         tests/ directory.
51414         * MODULES.html.sh (Future developments): Update.
51415
51416 2005-08-24  Bruno Haible  <bruno@clisp.org>
51417
51418         * modules/tls-tests: New file.
51419         * tests/test-tls.c: New file, from GNU gettext.
51420
51421 2005-08-24  Bruno Haible  <bruno@clisp.org>
51422
51423         * modules/lock-tests: New file.
51424         * tests/test-lock.c: New file, from GNU gettext.
51425
51426 2005-08-24  Bruno Haible  <bruno@clisp.org>
51427
51428         * lib/lock.h: Add multiple inclusion guard.
51429         * lib/tls.h: Add multiple inclusion guard.
51430
51431 2005-08-24  Bruno Haible  <bruno@clisp.org>
51432
51433         * gnulib-tool: Add support for the --aux-dir option to
51434         --create-testdir, --create-megatestdir, --test, --megatest.
51435         (func_create_testdir, func_create_megatestdir): Optionally emit a
51436         AC_CONFIG_AUX_DIR directive.
51437         (create-testdir, create-megatestdir, test, megatest): Provide a
51438         default value for $auxdir.
51439
51440 2005-08-24  Bruno Haible  <bruno@clisp.org>
51441
51442         * gnulib-tool (import): Use compound statement instead of subshell
51443         where possible.
51444
51445 2005-08-24  Bruno Haible  <bruno@clisp.org>
51446
51447         * gnulib-tool (import): Change --aux-dir default to "build-aux".
51448
51449 2005-08-24  Bruno Haible  <bruno@clisp.org>
51450
51451         * gnulib-tool (func_version): Update.
51452
51453 2005-08-24  Bruno Haible  <bruno@clisp.org>
51454
51455         * gnulib-tool (func_import, func_create_testdir,
51456         func_create_megatestdir): Quote all autoconf macro arguments.
51457
51458 2005-08-24  Bruno Haible  <bruno@clisp.org>
51459
51460         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
51461         option --force, because --force causes the aclocal.m4 of each
51462         subdirectory to be newer than the corresponding config.h.in.
51463
51464 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51465
51466         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
51467         All contents moved to gl_REGEX.
51468         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
51469         assume that it does.
51470
51471 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51472
51473         * lib/regex.h (REG_NOSYS)
51474         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
51475         Define, since POSIX requires it as of 2001.
51476         (_REG_ENOSYS)
51477         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
51478         New private symbol, used to keep the enum signed in all cases.
51479         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
51480         Youngman in
51481         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
51482
51483         * lib/regex_internal.c (re_string_skip_chars, register_state):
51484         (calc_state_hash):
51485         Remove forward decls; no longer needed now that we use prototypes.
51486         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
51487         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
51488         (clean_state_log_if_needed): Likewise.
51489
51490 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51491
51492         * config/srclist.txt: Add glibc bugs 1231-1233.
51493
51494 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51495
51496         Fix problems reported by Sam Steingold in
51497         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
51498         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
51499         assumed that reg_errcode_t is a signed type, which is not
51500         necessarily true if _XOPEN_SOURCE is not defined.
51501         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
51502         since some compilers warn about it otherwise.
51503
51504 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51505
51506         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
51507         (init_word_char, create_initial_state, duplicate_node_closure):
51508         (fetch_token, peek_token_bracket, build_range_exp):
51509         (build_collating_symbol): Remove forward decls; no longer needed
51510         now that we use prototypes.
51511
51512         * lib/regcomp.c:
51513         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
51514         (re_compile_fastmap_iter, regcomp, regerror, regfree):
51515         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
51516         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
51517         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
51518         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
51519         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
51520         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
51521         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
51522         (build_range_exp, build_collating_symbol, parse_bracket_exp):
51523         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
51524         (build_charclass, build_charclass_op, fetch_number, create_tree):
51525         (create_token_tree, mark_opt_subexp, duplicate_tree):
51526         Use prototypes rather than old-style definitions.
51527
51528         * lib/regex_internal.c:
51529         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
51530         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
51531         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
51532         (re_string_reconstruct, re_string_peek_byte_case):
51533         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
51534         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
51535         (re_node_set_init_copy, re_node_set_add_intersect):
51536         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51537         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51538         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
51539         (re_acquire_state, re_acquire_state_context, register_state):
51540         (create_ci_newstate, create_cd_newstate, free_state):
51541         Likewise.
51542         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
51543         re_search_2):
51544         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
51545         (re_search_internal, prune_impossible_nodes):
51546         (acquire_init_state_context, check_matching, static):
51547         (check_halt_node_context, check_halt_state_context, proceed_next_node):
51548         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
51549         (update_regs, sift_states_backward, build_sifted_states):
51550         (clean_state_log_if_needed, merge_state_array):
51551         (update_cur_sifted_state, add_epsilon_src_nodes):
51552         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
51553         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
51554         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
51555         (find_recover_state, check_subexp_matching_top, transit_state_mb):
51556         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
51557         (check_arrival, check_arrival_add_next_nodes):
51558         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
51559         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
51560         (check_node_accept_bytes, check_node_accept, extend_buffers):
51561         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
51562         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
51563         (sift_ctx_init):
51564         Likewise.
51565
51566         * lib/regex_internal.h:
51567         (re_string_allocate, re_string_construct, re_string_reconstruct):
51568         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
51569         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
51570         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
51571         (re_string_context_at, re_string_peek_byte_case):
51572         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
51573         is defined, since we now use prototypes always.
51574
51575         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
51576         C89 or better.  All uses removed.
51577
51578 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51579
51580         * config/srclist.txt: Add glibc bugs 1220-1227.
51581
51582 2005-08-20  Jim Meyering  <jim@meyering.net>
51583
51584         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
51585         of unused local, dfa.
51586
51587 2005-08-20  Bruno Haible  <bruno@clisp.org>
51588
51589         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
51590
51591 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51592
51593         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
51594         (re_node_set_insert_last, re_dfa_add_node):
51595         Rename local variables to avoid GCC shadowing warnings.
51596
51597 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51598
51599         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
51600         [defined lint]: Suppress bogus uninitialized-variable warnings.
51601
51602         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
51603         and let the caller return REG_ESPACE if out of space.  This
51604         removes an uninitialied-variable warning with GCC 4.0.1, and also
51605         avoids taking the address of a local variable.  All callers
51606         changed.
51607
51608 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51609
51610         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
51611         $LIBCSRC/posix/regexec.c.
51612         Add glibc bug 1217 for regcomp.c.
51613
51614 2005-08-19  Jim Meyering  <jim@meyering.net>
51615
51616         * lib/regexec.c (proceed_next_node): Redo local variables to
51617         avoid GCC shadowing warnings.
51618
51619 2005-08-18  Bruno Haible  <bruno@clisp.org>
51620
51621         * lib/strstr.c (strstr): Fix return value in multibyte case.
51622         * lib/strcasestr.c (strcasestr): Likewise.
51623
51624 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
51625
51626         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
51627
51628 2005-08-17  Jim Meyering  <jim@meyering.net>
51629
51630         Make the %s format (seconds since the epoch) work for a negative
51631         number and when used with a zero-padded field width, e.g. %015s.
51632
51633         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
51634         label so that it precedes the code to set `digits'.  Otherwise,
51635         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
51636         print `00-22'.  Now, it prints `-0022', as it should.
51637
51638 2005-08-17  Bruno Haible  <bruno@clisp.org>
51639
51640         * modules/strstr (Files): Add m4/mbrtowc.m4.
51641         (Depends-on): Add mbuiter.
51642
51643 2005-08-17  Bruno Haible  <bruno@clisp.org>
51644
51645         * modules/strcasestr: New file.
51646         * MODULES.html.sh (String handling, based on ANSI C 89): Add
51647         strcasestr.
51648
51649 2005-08-17  Bruno Haible  <bruno@clisp.org>
51650
51651         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
51652
51653 2005-08-17  Bruno Haible  <bruno@clisp.org>
51654
51655         * modules/mbuiter: New file.
51656         * MODULES.html.sh (Extended multibyte and wide character utilities):
51657         Add mbuiter.
51658
51659 2005-08-17  Bruno Haible  <bruno@clisp.org>
51660
51661         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
51662         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
51663
51664 2005-08-17  Bruno Haible  <bruno@clisp.org>
51665
51666         * m4/strcasestr.m4: New file.
51667
51668 2005-08-17  Bruno Haible  <bruno@clisp.org>
51669
51670         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
51671         * lib/strstr.c: Completely rewritten, with multibyte locale support.
51672
51673 2005-08-17  Bruno Haible  <bruno@clisp.org>
51674
51675         * lib/strcasestr.h: New file.
51676         * lib/strcasestr.c: New file.
51677
51678 2005-08-17  Bruno Haible  <bruno@clisp.org>
51679
51680         * lib/strcasecmp.c: Use mbuiter.h.
51681
51682 2005-08-17  Bruno Haible  <bruno@clisp.org>
51683
51684         * lib/mbuiter.h: New file.
51685
51686 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
51687
51688         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
51689         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
51690         and gl_GETOPT are both invoked via different paths (as happens
51691         with GNU tar CVS because it uses both argp and getopt), the former
51692         wins.
51693
51694 2005-08-16  Bruno Haible  <bruno@clisp.org>
51695
51696         * modules/tls: New file.
51697         * MODULES.html.sh (Multithreading): Add tls.
51698
51699 2005-08-16  Bruno Haible  <bruno@clisp.org>
51700
51701         * modules/strnlen1: New file.
51702         * MODULES.html.sh (String handling): Add strnlen1.
51703
51704 2005-08-16  Bruno Haible  <bruno@clisp.org>
51705
51706         * modules/strcase (Files): Add m4/mbrtowc.m4.
51707         (Depends-on): Add strnlen1, mbchar.
51708
51709 2005-08-16  Bruno Haible  <bruno@clisp.org>
51710
51711         * modules/mbiter: New file.
51712         * MODULES.html.sh (Extended multibyte and wide character utilities):
51713         Add mbiter.
51714
51715 2005-08-16  Bruno Haible  <bruno@clisp.org>
51716
51717         * modules/mbfile: New file.
51718         * MODULES.html.sh (Extended multibyte and wide character utilities):
51719         Add mbfile.
51720
51721 2005-08-16  Bruno Haible  <bruno@clisp.org>
51722
51723         * modules/mbchar: New file.
51724         * MODULES.html.sh (Extended multibyte and wide character utilities):
51725         New section.
51726
51727 2005-08-16  Bruno Haible  <bruno@clisp.org>
51728
51729         * m4/tls.m4: New file, from GNU gettext.
51730
51731 2005-08-16  Bruno Haible  <bruno@clisp.org>
51732
51733         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
51734         always.
51735         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
51736
51737 2005-08-16  Bruno Haible  <bruno@clisp.org>
51738
51739         * m4/mbiter.m4: New file.
51740
51741 2005-08-16  Bruno Haible  <bruno@clisp.org>
51742
51743         * m4/mbfile.m4: New file.
51744
51745 2005-08-16  Bruno Haible  <bruno@clisp.org>
51746
51747         * m4/mbchar.m4: New file.
51748
51749 2005-08-16  Bruno Haible  <bruno@clisp.org>
51750
51751         * lib/tls.h: New file, from GNU gettext.
51752         * lib/tls.c: New file, from GNU gettext.
51753
51754 2005-08-16  Bruno Haible  <bruno@clisp.org>
51755
51756         * lib/strnlen1.h: New file.
51757         * lib/strnlen1.c: New file.
51758
51759 2005-08-16  Bruno Haible  <bruno@clisp.org>
51760
51761         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
51762         (mbi_init): Update.
51763         (mbi_avail, mbi_advance): Let the iteration end before the terminating
51764         NUL byte, not after it.
51765
51766 2005-08-16  Bruno Haible  <bruno@clisp.org>
51767
51768         * lib/strcase.h (strcasecmp): Add note in comments.
51769         * lib/strncasecmp.c: Use code from strcasecmp.c.
51770         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
51771         (strcasecmp): Work correctly in multibyte locales.
51772
51773 2005-08-16  Bruno Haible  <bruno@clisp.org>
51774
51775         * lib/mbiter.h: New file.
51776
51777 2005-08-16  Bruno Haible  <bruno@clisp.org>
51778
51779         * lib/mbfile.h: New file.
51780
51781 2005-08-16  Bruno Haible  <bruno@clisp.org>
51782
51783         * lib/mbchar.h: New file.
51784         * lib/mbchar.c: New file.
51785
51786 2005-08-16  Bruno Haible  <bruno@clisp.org>
51787
51788         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
51789         the valid ones. Makes the comparison operations transitive:
51790         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
51791         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
51792
51793 2005-08-15  Simon Josefsson  <jas@extundo.com>
51794
51795         * modules/ssize_t (License): Change to 'unlimited'.
51796
51797         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
51798
51799 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
51800
51801         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
51802         Add comments for each pending glibc patch.
51803
51804 2005-08-15  Bruno Haible  <bruno@clisp.org>
51805
51806         * lib/regex.h (__restrict_arr): Don't define to __restrict if
51807         __cplusplus is defined.
51808
51809 2005-08-14  Jim Meyering  <jim@meyering.net>
51810
51811         Sync from coreutils.
51812
51813         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
51814         Use the hash-table-based cycle-detection code not just when
51815         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
51816         Reported by James Youngman in
51817         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
51818         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
51819         FTS_TIGHT_CYCLE_CHECK.
51820         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
51821         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
51822         once again.
51823         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
51824         * lib/fts.c (fd_safer): Remove decl.
51825         Include fcntl--.h rather than unistd-safer.h
51826         (fts_safe_changedir): Don't call fd_safer; no longer needed
51827         now that we include fcntl--.h.
51828
51829 2005-08-12  Simon Josefsson  <jas@extundo.com>
51830
51831         * modules/getndelim2: Use ssize_t module.
51832         * modules/getnline: Likewise.
51833         * modules/safe-read: Likewise.
51834         * modules/xreadlink: Likewise.
51835
51836         * modules/ssize_t: New file.
51837
51838 2005-08-12  Simon Josefsson  <jas@extundo.com>
51839
51840         * m4/readline.m4: Look for termcap, curses or ncurses if required.
51841
51842 2005-08-12  Simon Josefsson  <jas@extundo.com>
51843
51844         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
51845         ssize_t.
51846
51847 2005-08-12  Simon Josefsson  <jas@extundo.com>
51848
51849         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
51850         readline, getdelim and check_version.
51851         (Support for systems lacking ISO C 99: Sizes of integer types):
51852         Add size_max.
51853
51854 2005-08-12  Bruno Haible  <bruno@clisp.org>
51855
51856         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
51857
51858 2005-08-11  Simon Josefsson  <jas@extundo.com>
51859
51860         * modules/readline: New file.
51861
51862         * modules/strnlen (Files): Add strnlen.h.
51863
51864 2005-08-11  Simon Josefsson  <jas@extundo.com>
51865
51866         * m4/readline.m4: New file.
51867
51868 2005-08-11  Simon Josefsson  <jas@extundo.com>
51869
51870         * lib/readline.h, readline.c: New file.
51871
51872 2005-08-11  Simon Josefsson  <jas@extundo.com>
51873
51874         * doc/gnulib.texi (Initial import, Finishing touches): Mention
51875         gl_AVOID.
51876
51877 2005-08-11  Bruno Haible  <bruno@clisp.org>
51878
51879         * lib/strnlen.h (strnlen): Change parameter name to match comment.
51880
51881 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
51882
51883         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
51884
51885 2005-08-10  Simon Josefsson  <jas@extundo.com>
51886
51887         * tests/test-iconvme.c: New file.
51888
51889 2005-08-10  Simon Josefsson  <jas@extundo.com>
51890
51891         * m4/strnlen.m4: New file.
51892
51893         * m4/strndup.m4: Don't check for strnlen declaration, done in
51894         strnlen.m4.
51895
51896 2005-08-10  Simon Josefsson  <jas@extundo.com>
51897
51898         * lib/strndup.c: Use strnlen.h.
51899
51900         * lib/strnlen.h: New file.
51901
51902 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51903
51904         * README: Typos.
51905
51906 2005-08-02  Simon Josefsson  <jas@extundo.com>
51907
51908         * modules/readline: New file.
51909
51910 2005-08-02  Simon Josefsson  <jas@extundo.com>
51911
51912         * modules/getdelim: New file.
51913
51914         * modules/getline: Rewrite, don't use getndelim2.
51915
51916 2005-08-02  Simon Josefsson  <jas@extundo.com>
51917
51918         * m4/getline.m4: Separate out getdelim stuff into separate module.
51919
51920         * m4/getdelim.m4: New file.
51921
51922 2005-08-02  Simon Josefsson  <jas@extundo.com>
51923
51924         * lib/getline.h, getline.c: Rewrite.
51925
51926         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
51927
51928 2005-07-31  Bruno Haible  <bruno@clisp.org>
51929
51930         * lib/lock.h (gl_lock_initializer): New macro.
51931         (gl_lock_define_initialized): Use it.
51932         (gl_rwlock_initializer): New macro.
51933         (gl_rwlock_define_initialized): Use it.
51934         (gl_recursive_lock_initializer): New macro.
51935         (gl_recursive_lock_define_initialized): Use it.
51936
51937 2005-07-30  Karl Berry  <karl@gnu.org>
51938
51939         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
51940         Report from Ben Pfaff, regarding getopt.
51941
51942 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
51943
51944         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
51945         normal way.
51946         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
51947         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
51948         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
51949         (gl_GETOPT): Use the new macros.  Most of the implementation
51950         is moved to the new macros.  This is for programs like Emacs
51951         that don't want all the functionality of gl_GETOPT.
51952
51953 2005-07-26  Bruno Haible  <bruno@clisp.org>
51954
51955         * m4/lock.m4: Update from GNU gettext.
51956
51957 2005-07-26  Bruno Haible  <bruno@clisp.org>
51958
51959         * lib/lock.h: Update from GNU gettext.
51960         * lib/lock.c: Update from GNU gettext.
51961
51962 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
51963
51964         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
51965         obsolescent AC_TRY_RUN.  Include the default includes files, for
51966         'exit'.
51967
51968 2005-07-24  Bruno Haible  <bruno@clisp.org>
51969
51970         * modules/visibility: New file.
51971         * MODULES.html.sh (Misc): Add visibility.
51972
51973 2005-07-24  Bruno Haible  <bruno@clisp.org>
51974
51975         * m4/visibility.m4: New file.
51976
51977 2005-07-24  Bruno Haible  <bruno@clisp.org>
51978
51979         * doc/visibility.texi: New file.
51980
51981 2005-07-22  Bruno Haible  <bruno@clisp.org>
51982
51983         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
51984         $(ALLOCA_H), redundant through BUILT_SOURCES.
51985         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
51986         redundant through BUILT_SOURCES.
51987         * modules/byteswap (Makefile.am): Remove explicit dependency on
51988         $(BYTESWAP_H), redundant through BUILT_SOURCES.
51989         * modules/fnmatch (Makefile.am): Remove explicit dependency on
51990         $(FNMATCH_H), redundant through BUILT_SOURCES.
51991         * modules/getopt (Makefile.am): Remove explicit dependency on
51992         $(GETOPT_H), redundant through BUILT_SOURCES.
51993         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
51994         redundant through BUILT_SOURCES.
51995         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
51996         redundant through BUILT_SOURCES.
51997         * modules/stdbool (Makefile.am): Remove explicit dependency on
51998         $(STDBOOL_H), redundant through BUILT_SOURCES.
51999         * modules/stdint (Makefile.am): Remove explicit dependency on
52000         $(STDINT_H), redundant through BUILT_SOURCES.
52001         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
52002         Remove explicit dependency on $(SYSEXITS_H).
52003         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
52004
52005 2005-07-18  Simon Josefsson  <jas@extundo.com>
52006
52007         * lib/check-version.c (check_version): Accept identical versions too.
52008
52009 2005-07-18  Bruno Haible  <bruno@clisp.org>
52010
52011         * modules/lock: New file.
52012         * MODULES.html.sh (Multithreading): New section.
52013
52014 2005-07-18  Bruno Haible  <bruno@clisp.org>
52015
52016         * m4/lock.m4: New file, from GNU gettext.
52017
52018 2005-07-18  Bruno Haible  <bruno@clisp.org>
52019
52020         * lib/lock.h: New file, from GNU gettext.
52021         * lib/lock.c: New file, from GNU gettext.
52022
52023 2005-07-18  Bruno Haible  <bruno@clisp.org>
52024
52025         * lib/lock.h (gl_once_t): New type.
52026         (gl_once_define, gl_once): New macros.
52027         * lib/lock.c (fresh_once): New variable.
52028         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
52029         functions.
52030
52031 2005-07-16  Simon Josefsson  <jas@extundo.com>
52032
52033         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
52034         workaround, suggested by Bruno.
52035
52036 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52037
52038         * modules/xalloc (Depends-on): Add xalloc-die.
52039         * modules/xvasprintf (Depends-on): Add xalloc-die.
52040
52041 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52042
52043         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
52044         with a minor change.
52045
52046 2005-07-15  Bruno Haible  <bruno@clisp.org>
52047
52048         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
52049         When using lib/poll.c, define poll as rpl_poll.
52050
52051 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
52052
52053         * modules/argp (Depends-on): Remove unlocked-io.
52054
52055 2005-07-14  Derek Price  <derek@ximbiot.com>
52056
52057         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
52058         for glob symlink bug.
52059
52060 2005-07-14  Bruno Haible  <bruno@clisp.org>
52061
52062         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
52063         Instead, test for *_unlocked function declarations directly.
52064
52065 2005-07-11  Simon Josefsson  <jas@extundo.com>
52066
52067         * modules/size_max: New file.
52068
52069         * modules/xsize: Depend on size_max module for size_max.m4.
52070
52071 2005-07-11  Simon Josefsson  <jas@extundo.com>
52072
52073         * lib/size_max.h: New file.
52074
52075 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
52076
52077         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
52078         copyright symbol and the year.
52079         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
52080         (version_etc_va): Use parameterized copyright notice.
52081         Reword to conform to the current GNU coding standards.
52082
52083 2005-07-11  Karl Berry  <karl@gnu.org>
52084
52085         * doc/gnulib.texi (Quoting): new node.
52086         (Initial import): more info, from Patrice.
52087
52088 2005-07-11  Bruno Haible  <bruno@clisp.org>
52089
52090         * gnulib-tool (func_usage): Document option --avoid.
52091         (Command line options): Handle --avoid.
52092         (func_acceptable): New function.
52093         (func_modules_transitive_closure): Use it.
52094
52095 2005-07-11  Bruno Haible  <bruno@clisp.org>
52096
52097         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
52098         Reported by Jim Meyering.
52099
52100 2005-07-10  Bruno Haible  <bruno@clisp.org>
52101
52102         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
52103         Needed when size_t is smaller than 'unsigned int'.
52104         Reported by Paul Eggert.
52105
52106 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52107
52108         * modules/argp (Depends-on): Add unlocked-io
52109
52110 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52111
52112         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
52113         block of defines.
52114
52115 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
52116
52117         * config/srclist.txt: Comment out regcomp.c, since we have a porting
52118         fix now.
52119
52120 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
52121         and Paul Eggert  <eggert@cs.ucla.edu>
52122
52123         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
52124         in wint_t, not wchar_t.  Remove now-unnecessary cast.
52125
52126 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52127
52128         * modules/regex (Files): Add lib/regex_internal.c,
52129         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
52130         (Depends-on): Add extensions.
52131         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
52132
52133 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52134
52135         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
52136         pathconf.
52137         * m4/same.m4 (gl_SAME): Likewise.
52138         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
52139
52140         * m4/regex.m4: Adjust to new libc regex implementation.
52141         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
52142         all the .c and .h parts of (the new) regex.
52143         Quote the m4 stuff better.
52144         Check for RE_ICASE bug of old gnulib.
52145         Check for REG_STARTEND of recent libc.
52146         Rename local variables from jm_* to gl_*.
52147         Quote operand of "test -f".
52148         Say "recent enough" version of libc, not "version 2".
52149         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
52150         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
52151         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
52152         Remove check for btowc, isascii.
52153         Require AM_LANGINFO_CODESET.
52154
52155 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52156
52157         * lib/regex.c, regex.h: Sync from libc.
52158         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
52159         * lib/regexec.c:
52160         New files, synced from libc, except that regex_internal.h
52161         currently has a small porting fix.
52162
52163 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52164
52165         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
52166         regex_internal.c, regexec.c.
52167         Add regex_internal.h too, but as a comment, since the libc version
52168         is currently broken in gnulib mode.
52169
52170 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
52171
52172         Support programs like Emacs that use gnulib but not gettext.
52173         * MODULES.html.sh (Internationalization functions): Add gettext-h.
52174         * modules/gettext-h: New file.
52175         * modules/gettext (Files): Remove lib/gettext.h.
52176         (Depends-on): Add gettext-h.
52177         (Makefile.am): Remove lib_SOURCES.
52178         * modules/argmatch, modules/c-stack, modules/closeout:
52179         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
52180         * modules/execute, modules/file-type, modules/getaddrinfo:
52181         * modules/getopt, modules/human, modules/javacomp:
52182         * modules/javaexec, modules/mkdir-p, modules/obstack:
52183         * modules/openat, modules/pagealign_alloc, modules/pipe:
52184         * modules/quotearg, modules/regex, modules/rpmatch:
52185         * modules/unicodeio, modules/userspec, modules/version-etc:
52186         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
52187         * modules/xsetenv:
52188         Depend on gettext-h, not gettext.
52189
52190 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
52191
52192         * gnulib-tool (func_import): Add support for 'public domain' license.
52193         * modules/alloca, modules/atexit, modules/memmove:
52194         Now public domain, not GPL.
52195         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
52196         * modules/realloc, modules/strerror, modules/strtod:
52197         Now LGPL, not GPL.
52198
52199 2005-07-05  Bruno Haible  <bruno@clisp.org>
52200
52201         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
52202         autoconf CVS. Needed for mingw.
52203
52204 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52205
52206         Remove the dependency of the strftime module on the tzset module.
52207         * modules/strftime (Depends-on): Remove dependency on tzset.
52208
52209 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52210
52211         Remove the dependency of the strftime module on the tzset module.
52212         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
52213         gl_FUNC_TZSET_CLOBBER.
52214
52215 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52216
52217         Remove the dependency of the strftime module on the tzset module.
52218         * lib/strftime.c (my_strftime)
52219         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
52220         Copy the input structure, to work around some of the bug with
52221         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
52222         Solaris releases, you should also use the tzset module, but we won't
52223         require it as a dependency any more since we don't want LGPLed code
52224         to depend on GPLed code.
52225
52226 2005-07-02  Jim Meyering  <jim@meyering.net>
52227
52228         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
52229         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
52230         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
52231         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
52232
52233 2005-07-02  Jim Meyering  <jim@meyering.net>
52234
52235         * lib/backupfile.c (backup_args): Change a `0' to NULL.
52236
52237 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52238
52239         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
52240         declares only 'struct timespec;' (!).
52241
52242 2005-07-01  Jim Meyering  <jim@meyering.net>
52243
52244         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
52245         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
52246         * lib/save-cwd.c, tempname.c:
52247         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
52248         and don't include <sys/file.h>).
52249
52250 2005-06-29  Jim Meyering  <jim@meyering.net>
52251
52252         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
52253         type name.  Use the variable name instead.
52254         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
52255         Likewise.
52256
52257 2005-06-28  Simon Josefsson  <jas@extundo.com>
52258
52259         * modules/check-version (Files): Add check-version.m4.
52260
52261 2005-06-28  Simon Josefsson  <jas@extundo.com>
52262
52263         * m4/check-version.m4: New file, suggested by Jim Meyering
52264         <jim@meyering.net>.
52265
52266 2005-06-28  Simon Josefsson  <jas@extundo.com>
52267
52268         * lib/check-version.h, lib/check-version.c: New files.
52269
52270 2005-06-28  Simon Josefsson  <jas@extundo.com>
52271
52272         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
52273         collision with global variable.  Better indentation.  Don't
52274         increment buffer pointer beyond buffer end.  Based on comments
52275         from Paul Eggert <eggert@cs.ucla.edu>.
52276
52277         * lib/base64.h: Indent.
52278
52279 2005-06-28  Simon Josefsson  <jas@extundo.com>
52280
52281         * doc/gnulib.texi (Library version handling): New section.
52282
52283 2005-06-28  Jim Meyering  <jim@meyering.net>
52284
52285         * check-module (find_included_lib_files): Hard-code another
52286         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
52287         but modules/fts-lgpl (correctly) does not list those files.
52288
52289         * modules/canonicalize (Files): Add lib/pathmax.h.
52290
52291 2005-06-25  Simon Josefsson  <jas@extundo.com>
52292
52293         * modules/check-version: New file.
52294
52295 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
52296
52297         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
52298         initializer of struct addrinfo, as an indication that we don't
52299         care how many members the structure has.
52300
52301 2005-06-24  Derek Price  <derek@ximbiot.com>
52302         and Bruno Haible  <bruno@clisp.org>
52303
52304         Remove stat module & update lstat.
52305         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
52306         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
52307         * m4/stat.m4: Remove this file.
52308
52309 2005-06-24  Derek Price  <derek@ximbiot.com>
52310         and Bruno Haible  <bruno@clisp.org>
52311
52312         Remove stat module & update lstat.
52313         * lib/stat.c: Remove this file...
52314         (slash_aware_lstat): ...moving this content and its support...
52315         * lib/lstat.c (rpl_lstat): ...into here.
52316         * lib/lstat.h: New file.
52317
52318 2005-06-24  Derek Price  <derek@ximbiot.com>
52319         and Bruno Haible  <bruno@clisp.org>
52320
52321         Remove stat module & update lstat.
52322         * config/srclist.txt (libc sources): Remove stat.
52323
52324 2005-06-24  Derek Price  <derek@ximbiot.com>
52325         and Bruno Haible  <bruno@clisp.org>
52326
52327         Remove stat module & update lstat.
52328         * MODULES.html.sh (stat): Remove.
52329         * MODULES.html: Regenerated.
52330         * modules/lstat (Description): Correct function name.
52331         (Files): Add "lstat.h".
52332         (Depends-on): Remove stat, add xalloc, stat-macros.
52333         * modules/stat: Remove this file.
52334         (Include): Add "lstat.h", remove <sys/stat.h>.
52335
52336 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
52337
52338         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
52339         (ranged_convert): Don't save conversion in a temporary struct.
52340         This causes a warning with GCC 4.0.0, and anyway in the typical
52341         case it's not worth the extra 100 bytes or so of code.
52342         (ranged_convert, __mktime_internal): When calling a function via a
52343         pointer P, use P () rather than (*P) (), as we now assume C89 or
52344         better.
52345
52346 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
52347
52348         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
52349         "who -r" failed to give output.  Problem reported by Tim Waugh.
52350
52351         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
52352         (xcalloc): Use it to avoid needless tests.
52353         Problem reported by Jim Meyering.
52354
52355 2005-06-20  Derek Price  <derek@ximbiot.com>
52356
52357         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
52358         unnecessary for Autoconfs > 2.59c.
52359
52360 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52361
52362         * lib/argp.h (__option_is_short): Check upper limit of
52363         __key. Isprint() requires its argument to have the value
52364         of an unsigned char or EOF.
52365
52366 2005-06-16  Jim Meyering  <jim@meyering.net>
52367
52368         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
52369         when either N or S is zero.
52370
52371 2005-06-16  Derek Price  <derek@ximbiot.com>
52372
52373         * m4/bison.m4: Declare YACC & YFLAGS precious.
52374
52375 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
52376
52377         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
52378         multibyte string or pattern, fall back on unibyte matching.
52379         Problem reported by James Youngman.
52380
52381 2005-06-08  Bruno Haible  <bruno@clisp.org>
52382
52383         * modules/csharpcomp: New file.
52384         * MODULES.html.sh (C#): Add csharpcomp.
52385
52386 2005-06-08  Bruno Haible  <bruno@clisp.org>
52387
52388         * m4/csharpcomp.m4: New file, from GNU gettext.
52389
52390 2005-06-08  Bruno Haible  <bruno@clisp.org>
52391
52392         * lib/csharpcomp.h: New file, from GNU gettext.
52393         * lib/csharpcomp.c: New file, from GNU gettext.
52394         * lib/csharpcomp.sh.in: New file, from GNU gettext.
52395
52396 2005-06-08  Bruno Haible  <bruno@clisp.org>
52397
52398         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
52399         warning on mingw.
52400
52401 2005-06-07  Derek Price  <derek@ximbiot.com>
52402
52403         Sync from CVS.
52404         * lib/glob_.h: Indent nested #ifdef.
52405
52406 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52407
52408         Sync from coreutils.
52409         Use "file name" when talking about file names, instead of "filename"
52410         or "path", as per the GNU coding standards.
52411         * lib/mkdir-p.c: Renamed from makepath.c.
52412         (make_dir_parents): Renamed from make_path.  All callers changed.
52413         * lib/mkdir-p.h: Likewise.  All includers changed.
52414         * lib/filenamecat.c: Renamed from path-concat.c.
52415         (file_name_concat): Renamed from path_concat.  All callers changed.
52416         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
52417         * lib/filenamecat.h: Likewise.  All includers changed.
52418         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
52419         in comments or local variable names.
52420         * lib/basename.c: Likewise.
52421         * lib/canonicalize.c, canonicalize.h: Likewise.
52422         * lib/dirname.c, dirname.h: Likewise.
52423         * lib/euidaccess.c: Likewise.
52424         * lib/exclude.c: Likewise
52425         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
52426         * lib/fsusage.c, fsuage.h: Likewise.
52427         * lib/fts.c, fts_.h: Likewise.
52428         * lib/getcwd.c: Likewise.
52429         * lib/getloadavg.c: Likewise.
52430         * lib/mkstemp.c: Likewise.
52431         * lib/mountlist.c, mountlist.h: Likewise.
52432         * lib/openat.c, openat.h: Likewise.
52433         * lib/readlink-stub.c: Likewise.
52434         * lib/readutmp.c, readutmp.h: Likewise.
52435         * lib/rename.c: Likewise.
52436         * lib/rmdir.c: Likewise.
52437         * lib/same.c: Likewise.
52438         * lib/savedir.c: Likewise.
52439         * lib/stripslash.c: Likewise.
52440         * lib/tempname.c: Likewise.
52441         * lib/xreadlink.c: Likewise.
52442         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
52443         All uses changed.
52444         * lib/exclude.h: Likewise.
52445
52446         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
52447         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52448         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
52449         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52450         * lib/pathmax.h: Include <limits.h> unconditionally, since other
52451         files have been getting away with it for years (MORE/BSD 4.3
52452         is extinct now).
52453         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
52454         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52455
52456         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
52457         Define to 256, not 255, as per modern POSIX.
52458
52459 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52460
52461         Sync from coreutils.
52462         Use "file name" when talking about file names, instead of "filename"
52463         or "path", as per the GNU coding standards.
52464         * MODULES.html.sh: mkdir-p renamed from makepath.
52465         filenamecat renamed from path-concat.
52466         * modules/filenamecat: Renamed from modules/path-concat.
52467         (Files): filenamecat.h and filenamecat.c renamed from
52468         path-concat.h and path-concat.c.
52469         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
52470         (Include): filenamecat.h, not path-concat.h.
52471         * modules/mkdir-p: Renamed from modules/makepath.
52472         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
52473         makepath.c.
52474         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
52475         (Include): mkdir-p.h, not makepath.h.
52476
52477 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52478
52479         Sync from coreutils.
52480         * m4/mkdir-p.m4: Renamed from makepath.m4.
52481         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
52482         Rename files from makepath.c to mkdir-p.c, and from
52483         makepath.h to mkdir-p.h.
52484         * m4/filenamecat.m4: Renamed from path-concat.m4.
52485         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
52486         Rename files from path-concat.c to filenamecat.c,
52487         and from path-concat.h to filenamecat.h.
52488         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
52489         "file name" in local variables or comments.
52490         * m4/rename.m4: Likewise.
52491
52492 2005-06-01  Bruno Haible  <bruno@clisp.org>
52493
52494         * modules/csharpexec: New file.
52495         * MODULES.html.sh (C#): New section.
52496
52497 2005-06-01  Bruno Haible  <bruno@clisp.org>
52498
52499         * m4/csharp.m4: New file, from GNU gettext.
52500         * m4/csharpexec.m4: New file, from GNU gettext.
52501
52502 2005-06-01  Bruno Haible  <bruno@clisp.org>
52503
52504         * lib/csharpexec.h: New file, from GNU gettext.
52505         * lib/csharpexec.c: New file, from GNU gettext.
52506         * lib/csharpexec.sh.in: New file, from GNU gettext.
52507
52508 2005-05-31  Derek Price  <derek@ximbiot.com>
52509             Paul Eggert  <eggert@cs.ucla.edu>
52510
52511         Sync from cvs.
52512         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
52513
52514 2005-05-31  Derek Price  <derek@ximbiot.com>
52515             Paul Eggert  <eggert@cs.ucla.edu>
52516
52517         Sync from cvs.
52518         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
52519
52520 2005-05-29  Derek Price  <derek@ximbiot.com>
52521
52522         * config/srclist.txt (glob_.h, glob.c): Add these files.
52523
52524 2005-05-29  Derek Price  <derek@ximbiot.com>
52525
52526         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
52527         * modules/glob: New file.
52528         * modules/getlogin_r: Add link to POSIX spec in description.
52529
52530 2005-05-29  Derek Price  <derek@ximbiot.com>
52531             Paul Eggert  <eggert@cs.ucla.edu>
52532
52533         * m4/glob.m4: New file.
52534
52535 2005-05-29  Derek Price  <derek@ximbiot.com>
52536             Paul Eggert  <eggert@cs.ucla.edu>
52537
52538         * lib/glob_.h, lib/glob.c: New files.
52539
52540 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52541
52542         * modules/fts (Files): Remove m4/inttypes-pri.m4.
52543         * modules/fts-lgpl (Depends-on): Remove gettext.
52544
52545 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52546
52547         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
52548         and don't require gt_INTTYPES_PRI.
52549
52550 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52551
52552         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
52553
52554         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
52555         the configuration hassle isn't worth it.
52556         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
52557         (LONGEST_MODIFIER, PRIuMAX): Remove.
52558
52559 2005-05-27  Bruno Haible  <bruno@clisp.org>
52560
52561         * lib/getlogin_r.h: Remove second include of <stddef.h>.
52562
52563 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
52564
52565         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
52566         _POSIX_PTHREAD_SEMANTICS for Solaris.
52567
52568 2005-05-25  Derek Price  <derek@ximbiot.com>
52569
52570         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
52571
52572 2005-05-25  Derek Price  <derek@ximbiot.com>
52573             Paul Eggert  <eggert@cs.ucla.edu>
52574
52575         * modules/getlogin_r, m4/getlogin_r.m4: New files.
52576         * lib/getlogin_r.c, getlogin_r.h: New files.
52577
52578 2005-05-25  Bruno Haible  <bruno@clisp.org>
52579             Derek Price  <derek@ximbiot.com>
52580
52581         * lib/getlogin_r.h: Simplify API documentation.
52582
52583 2005-05-23  Derek Price  <derek@ximbiot.com>
52584
52585         * modules/minmax (Files): Add m4/minmax.m4.
52586         (configure.ac): Add gl_MINMAX.
52587
52588 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
52589
52590         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
52591         so that unistd-safer.h (GPL'ed code) need not be included.
52592
52593 2005-05-22  Bruno Haible  <bruno@clisp.org>
52594
52595         * m4/minmax.m4: New file.
52596         Based on a patch by Derek Price <derek@ximbiot.com>.
52597
52598 2005-05-22  Bruno Haible  <bruno@clisp.org>
52599
52600         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
52601         (INT64_MIN): Fix definition.
52602         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
52603
52604         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
52605         NEED_SIGNED_INT_TYPES.
52606
52607         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
52608         HAVE_SYSTEM_INTTYPES.
52609
52610 2005-05-22  Bruno Haible  <bruno@clisp.org>
52611
52612         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
52613         Also include <sys/param.h> if it defines MIN, MAX.
52614         Based on a patch by Derek Price <derek@ximbiot.com>.
52615
52616 2005-05-21  Jim Meyering  <jim@meyering.net>
52617
52618         * modules/fts (Files): Add m4/inttypes-pri.m4.
52619         (Depends-on): Add lstat and remove gettext.  Alphabetize.
52620
52621 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52622
52623         New fts module.
52624         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
52625         (setup_dir, free_dir): New functions.
52626         (enter_dir, leave_dir): Define trivial
52627         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
52628         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
52629         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
52630         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
52631         Move to fts-cycle.c.
52632         (fts_open): Use setup_dir.
52633         (fts_close): Use free_dir.
52634         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
52635         This adds a label and some gotos, but the alternatives were messier.
52636         Check for memory allocation failure when entering a dir.
52637         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
52638         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
52639         (FTS): New member fts_cycle, that is a union that contains the
52640         old active_dir_ht and cycle_state.  All uses changed to mention
52641         fts_cycle.ht and fts_cycle.state.
52642         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
52643         fts.c, with the following changes:
52644         (setup_dir, free_dir): New functions.
52645         (enter_dir): Now returns bool.  Return true if successful, false
52646         if memory exhausted.  All callers changed.
52647         Do not bother partly cleaning up on
52648         memory allocation failure; that is free_dir's job.
52649         However, free ad if hash_insert fails, to avoid memory leak.
52650         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
52651         fts->fts_options to see which union member to use.
52652
52653 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52654
52655         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
52656         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
52657
52658 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52659
52660         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
52661
52662 2005-05-20  Jim Meyering  <jim@meyering.net>
52663
52664         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
52665         Now a macro, to pacify GCC.
52666
52667 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52668
52669         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
52670         of -1.
52671
52672 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52673
52674         * lib/chown.c (rpl_chown): Return -1 on failure.
52675
52676 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52677
52678         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
52679         Don't check for stddef.h.
52680         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
52681         don't use its results.
52682         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
52683         since we include them unconditionally.  Don't require
52684         AM_STDBOOL_H, since stdbool is a prerequisite.
52685         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
52686         since we assume C89 or better.
52687         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
52688         as we don't use their results.
52689         Don't check for fchdir, memmove, memset, strrchr, as we use
52690         them unconditionally.
52691         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
52692         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
52693
52694 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52695
52696         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
52697         Include <stddef.h> unconditionally, since we assume C89 now.
52698         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
52699         * lib/fts.c: Include fts_.h first, to check interface.
52700         Do not include intprops.h; no longer needed.
52701         Include cycle-check.h and hash.h, since fts_.h no longer does.
52702         Remove unnecessary casts of closedir to void.
52703         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
52704         decide whether to decrement nlinks.
52705         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
52706         (FTS): Use struct hash_table * instead of Hash_table, so that
52707         we no longer need to include hash.h here.
52708
52709 2005-05-18  Jim Meyering  <jim@meyering.net>
52710
52711         * modules/dirfd (License): Change to LGPL.  Most of the code
52712         is already in the public domain.
52713
52714 2005-05-18  Jim Meyering  <jim@meyering.net>
52715
52716         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
52717         Reported by Yoann Vandoorselaere.
52718
52719 2005-05-17  Jim Meyering  <jim@meyering.net>
52720
52721         * m4/fts.m4: New file, from coreutils.
52722
52723 2005-05-17  Jim Meyering  <jim@meyering.net>
52724
52725         * lib/fts.c, lib/fts_.h: New files, from coreutils.
52726
52727 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52728
52729         Sync from coreutils.
52730         * m4/unlinkdir.m4: New file.
52731
52732 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52733
52734         Sync from coreutils.
52735         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
52736         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
52737         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
52738         White space changes only.
52739         * lib/makepath.c (make_path): Port to hosts where leading "//" is
52740         special.
52741         * lib/yesno.c: Include getline.h, not ctype.h.
52742         (yesno): Don't remove leading white space; POSIX doesn't allow it.
52743         Use getline to remove arbitrary restriction on response length.
52744
52745 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52746
52747         * config/srclist-update: Spell out "Street" in FSF postal
52748         mail address; this is the style the FSF seems to prefer.
52749
52750         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
52751         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
52752         this updates FSF postal mail address.
52753
52754         Sync from coreutils.
52755         * modules/unlinkdir: New file.
52756         * modules/yesno (Depends-on): Add getline.
52757         * MODULES.html.sh (File system functions): Add unlinkdir.
52758
52759 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52760
52761         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
52762         lib/strsep.h:
52763         Change the initial comment to refer to GPL, not LGPL.
52764         gnulib-tool will change it to LGPL as needed.
52765
52766         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
52767         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
52768         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
52769         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
52770         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
52771         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
52772         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
52773         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
52774         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
52775         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
52776         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
52777         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
52778         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
52779         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
52780         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
52781         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
52782         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
52783         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
52784         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
52785         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
52786         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
52787         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
52788         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
52789         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
52790         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
52791         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
52792         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
52793         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
52794         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
52795         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
52796         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
52797         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
52798         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
52799         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
52800         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
52801         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
52802         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
52803         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
52804         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
52805         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
52806         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
52807         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
52808         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
52809         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
52810         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
52811         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
52812         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
52813         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
52814         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
52815         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
52816         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
52817         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
52818         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
52819         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
52820         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
52821         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
52822         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
52823         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
52824         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
52825         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
52826         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
52827         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
52828         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
52829         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
52830         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
52831         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
52832         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
52833         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
52834         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
52835         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
52836         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
52837         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
52838         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
52839         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
52840         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
52841         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
52842         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
52843         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
52844         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
52845         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
52846         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
52847         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
52848         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
52849         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
52850         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
52851         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
52852         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
52853         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
52854         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
52855         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
52856         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
52857         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
52858         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
52859         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
52860         lib/yesno.c, lib/yesno.h:
52861         Update FSF postal mail address.
52862
52863 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52864
52865         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
52866         tests/test-memmem.c, tests/test-stpncpy.c:
52867         Update FSF postal mail address.
52868
52869 2005-05-13  Bruno Haible  <bruno@clisp.org>
52870
52871         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
52872         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
52873         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
52874         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
52875         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
52876         Add support for 64-bit integers in the MSVC compiler.
52877
52878 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52879
52880         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
52881
52882 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
52883
52884         * gnulib-tool (func_import): Sort and uniquify recommended includes.
52885
52886 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
52887
52888         * doc/getdate.texi (General date syntax): Don't say that date
52889         date --iso-8601=ns generates acceptable dates; it doesn't yet.
52890         Problem reported by Nic Ferrier.
52891
52892 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52893
52894         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
52895         specified in ai_socktype. Fix invalid ai_protocol
52896         check. ai_protocol is usually set to 0 or depending on
52897         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
52898         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
52899         ai_socktype / ai_protocol in the returned addrinfo structure.
52900
52901 2005-05-10  Simon Josefsson  <jas@extundo.com>
52902
52903         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
52904         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
52905
52906 2005-05-10  Karl Berry  <karl@gnu.org>
52907
52908         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
52909         (from http://www.gnu.org/licenses).
52910         * doc/COPYING.LIB: also rename to COPYING.LESSER.
52911         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
52912         fdl.texi suffices.
52913
52914 2005-05-10  Karl Berry  <karl@gnu.org>
52915
52916         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
52917         (COPYING.DOC): remove.
52918
52919         * config/srclist-update: new FSF address.
52920
52921 2005-05-10  Derek Price  <derek@ximbiot.com>
52922
52923         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
52924         possible.
52925
52926 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52927             Bruno Haible  <bruno@clisp.org>
52928
52929         * modules/inet_ntop: New file.
52930         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52931         inet_ntop.
52932
52933 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52934             Bruno Haible  <bruno@clisp.org>
52935
52936         * m4/inet_ntop.m4: New file.
52937
52938 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52939             Bruno Haible  <bruno@clisp.org>
52940
52941         * lib/inet_ntop.h: New file.
52942         * lib/inet_ntop.c: New file, from glibc with modifications.
52943
52944 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
52945
52946         * modules/time_r (License): Change to LGPL.
52947         * modules/extensions (License): Change to LGPL.  Actually,
52948         the license is more permissive than that, but currently gnulib-tool
52949         doesn't know how to handle more-permissive licenses.
52950
52951         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
52952         Problem reported by Dave Love.
52953
52954 2005-05-08  Jim Meyering  <jim@meyering.net>
52955
52956         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
52957         blank.
52958
52959 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
52960
52961         * modules/argmatch (Depends-on): Add stdbool.
52962         * modules/backupfile (Depends-on): Likewise.
52963         * modules/chdir-long (Depends-on): Likewise.
52964         * modules/closeout (Depends-on): Likewise.
52965         * modules/cycle-check (Depends-on): Likewise.
52966         * modules/dirname (Depends-on): Likewise.
52967         * modules/fnmatch (Depends-on): Likewise.
52968         * modules/fsusage (Depends-on): Likewise.
52969         * modules/fwriteerror (Depends-on): Likewise.
52970         * modules/getcwd (Depends-on): Likewise.
52971         * modules/getloadavg (Depends-on): Likewise.
52972         * modules/hard-locale (Depends-on): Likewise.
52973         * modules/makepath (Depends-on): Likewise.
52974         * modules/mountlist (Depends-on): Likewise.
52975         * modules/nanosleep (Depends-on): Likewise.
52976         * modules/posixtm (Depends-on): Likewise.
52977         * modules/quotearg (Depends-on): Likewise.
52978         * modules/readtokens (Depends-on): Likewise.
52979         * modules/readtokens0 (Depends-on): Likewise.
52980         * modules/readutmp (Depends-on): Likewise.
52981         * modules/save-cwd (Depends-on): Likewise.
52982         * modules/strftime (Depends-on): Likewise.
52983         * modules/userspec (Depends-on): Likewise.
52984         * modules/utimecmp (Depends-on): Likewise.
52985         * modules/xgetcwd (Depends-on): Likewise.
52986         * modules/xnanosleep (Depends-on): Likewise.
52987         * modules/xstrtod (Depends-on): Likewise.
52988         * modules/yesno (Depends-on): Likewise.
52989
52990 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
52991
52992         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
52993         needless checks.
52994
52995 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52996
52997         Merge from coreutils.  Among other things,
52998         add bulletproofing for cases where stdin, stdout, or stderr are closed.
52999         * lib/fd-safer.c: New file.
53000         * lib/fcntl-safer.h, open-safer.c: Remove.
53001         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
53002         * lib/dup-safer.c: Include unistd-safer.h first.
53003         Don't include errno.h.
53004         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
53005         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
53006         * lib/file-type.c: Rely on file-type.h change.
53007         * lib/getloadavg.c: Include unistd-safer.h.
53008         (getloadavg): Use safer open.
53009         * lib/getusershell.c: Include "stdio-safer.h".
53010         (getusershell): Use safer fopen.
53011         * lib/long-options.c (long_options): Use NULL rather than 0.
53012         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
53013         'free'.
53014         * lib/modechange.c: Likewise.
53015         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
53016         (MODE_DONE): New constant.
53017         (struct mode_change): Remove 'next' member.
53018         (make_node_op_equals): New function; like the old one of the
53019         same name, except it allocates an array.
53020         (mode_compile, mode_create_from_ref): Use it.
53021         (mode_compile): Allocate result as an array, not a linked list.
53022         Parse octal string ourself, so that we catch mistakes like "+0".
53023         (mode_adjust): Arg is an array, not a linked list.
53024         * lib/modechange.c: Include stat-macros.h, xalloc.h.
53025         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
53026         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
53027         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
53028         Remove.  This is now stat-macros.h's job.
53029         (talloc): Remove.  All callers replaced by xalloc, so that
53030         our invokers don't have to worry about reporting memory failures.
53031         (make_node_op_equals): Remove.
53032         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53033         New constants.
53034         (struct mode_change): Moved here from modechange.h.
53035         (mode_append_entry): Remove.
53036         (mode_compile): Remove MASKED_OPS arg, since it encouraged
53037         apps to have incorrect behavior.  Use simpler algorithm for head
53038         and tail.  Don't futz with umask; that's now the job of mode_adjust.
53039         Detect more invalid usages rather than having somewhat-random behavior.
53040         Don't insert an "a=" action, as that leads to incorrect behavior.
53041         (mode_compile, mode_create_from_ref): Return NULL on error instead
53042         of an enum, since now there's only one way to have an error.  All
53043         callers changed.
53044         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
53045         at the correct time.  Simplify calculation of "+u" and its ilk.
53046         Don't mishandle "+X".
53047         (mode_free): Remove "register" and localize decls.
53048         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53049         (struct mode_change): Move to modechange.c; callers don't
53050         need to see this stuff.
53051         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
53052         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
53053         (mode_change, mode_adjust): Reflect the new signatures noted above.
53054         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
53055         that might redefine system include files.
53056         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
53057         (my_usleep): Use NULL rather than (void *) 0.
53058         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
53059         Use siginterrupt to specify that system calls should be interrupted.
53060         (rpl_nanosleep): Move initialization of suspended closer to call of
53061         my_usleep.
53062         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
53063         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
53064         (desirable_utmp_entry): New function.
53065         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
53066         using x2nrealloc, to simplify logic.
53067         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
53068         size calculation.  Do not assume utmp file is a regular file.
53069         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
53070         (READ_UTMP_CHECK_PIDS): New constant.
53071         * lib/save-cwd.c: Include unistd-safer.h.
53072         (save_cwd): Use fd_safer.
53073         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
53074         [!_LIBC] Include "stat-macros.h" instead.
53075         * lib/unistd-safer.h (fd_safer): New decl.
53076
53077 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53078
53079         * modules/getloadavg (Depends-on): Add unistd-safer.
53080         * modules/getusershell (Depends-on): Add stdio-safer.
53081         * modules/lstat (Depends-on): Remove xalloc.
53082         * modules/mkstemp (Depends-on): Add stat-macros.
53083         * modules/modechange (Depends-on): Remove xstrtol.
53084         Add stat-macros, xalloc.
53085         * modules/save-cwd (Depends-on): Add unistd-safer.
53086         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
53087         * modules/unistd-safer (Files): Add lib/fd-safer.c
53088         (Makefile.am): Remove lib_SOURCES.
53089
53090         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
53091         Remove fcntl-safer; unistd-safer supersedes it.
53092
53093 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53094
53095         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
53096         AC_HEADER_STAT.
53097         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
53098         (gl_PREREQ_CHOWN): Remove.
53099         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
53100         it.  Don't require AC_HEADER_STAT.
53101         (gl_PREREQ_LSTAT): Remove.
53102         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
53103         Don't require AC_HEADER_STAT.
53104         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
53105         (gl_PREREQ_RMDIR): Remove.
53106         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
53107         mention stat-macros.h or AC_HEADER_STAT, since we'll make
53108         the stat-macros module a prerequisite.
53109         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
53110         * m4/filemode.m4 (gl_FILEMODE): Likewise.
53111         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
53112         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
53113         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
53114         variable names.
53115         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
53116         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
53117         variable prefixes.
53118         * m4/fcntl-safer.m4: Remove.
53119         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
53120         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
53121         Invoke gl_PREREQ_FD_SAFER.
53122         (gl_PREREQ_FD_SAFER): New macro.
53123         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
53124         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
53125         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
53126         Remove duplicate call to AC_LIBOBJ(readutmp).
53127         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
53128
53129         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
53130         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
53131
53132 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53133
53134         * MODULES.html.sh (Misc): Add byteswap.
53135
53136 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53137
53138         * modules/getcwd (Depends-on): Add extensions.
53139         * modules/openat (Depends-on): Likewise.
53140
53141 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53142
53143         * modules/byteswap: New file.
53144
53145 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53146
53147         * m4/byteswap.m4: New file.
53148
53149 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53150
53151         * lib/byteswap_.h: New file.
53152
53153 2005-04-25  Karl Berry  <karl@gnu.org>
53154
53155         * m4/gettext.m4: Update from GNU gettext 0.14.4.
53156
53157 2005-04-25  Albert Chin  <china@thewrittenword.com>
53158
53159         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
53160         Toolkit C bug.
53161
53162 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
53163
53164         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
53165         (func_ln_if_changed) Remove forcibly for no error message
53166         in case file does not exist.
53167
53168 2005-04-19  Simon Josefsson  <jas@extundo.com>
53169
53170         * gnulib-tool (Options): Make --symlink mean --symbolic.
53171
53172 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
53173
53174         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
53175
53176 2005-04-16  Simon Josefsson  <jas@extundo.com>
53177
53178         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
53179
53180 2005-04-15  Simon Josefsson  <jas@extundo.com>
53181
53182         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
53183
53184 2005-04-15  Simon Josefsson  <jas@extundo.com>
53185
53186         * gnulib-tool: Rename --symlink to --symbolic.
53187
53188 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
53189
53190         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
53191         symbolic links to files instead of copying/moving.  Add --aux-dir,
53192         specifying directory relative --dir where auxiliary build tools
53193         are placed.
53194
53195 2005-04-14  Bruno Haible  <bruno@clisp.org>
53196
53197         * modules/allocsa (License): Change to LGPL.
53198         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
53199
53200 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
53201
53202         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
53203         that "UTC +1 second" continues to work.  Problem reported
53204         by Dmitry V. Levin.
53205         (relunit_snumber): New rule.
53206         (relunit): Use it.
53207
53208 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
53209
53210         * lib/getdate.y (universal_time_zone_table): New constant.
53211         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
53212         universal_time_zone_table.
53213         (lookup_zone): Prefer universal_time_zone_table to
53214         local_time_zone_table, so that "GMT" time stamps are allowed in
53215         London during the summer.  Problem reported by Ian Abbott.
53216
53217 2005-04-12  Jim Meyering  <jim@meyering.net>
53218
53219         * lib/human.c (humblock): Set *options even when returning due to
53220         xstrtoumax conversion failure.  Thanks to a used-uninitialized
53221         warning from gcc-4.
53222
53223 2005-04-09  Jim Meyering  <jim@meyering.net>
53224
53225         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
53226         -Wuninitialized: initialize tm0.tm_year.
53227
53228 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
53229
53230         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
53231         count, since there's no maximum.  All uses changed.
53232         Add member dsts_seen.
53233         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
53234         not being INT_MAX.
53235         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
53236         Use pc_rels_seen to decide whther a date is absolute.
53237
53238         * lib/getdate.y (number): Don't overwrite year.
53239         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
53240         check.
53241
53242 2005-04-02  Simon Josefsson  <jas@extundo.com>
53243
53244         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
53245         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
53246
53247 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
53248
53249         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
53250         where no absolute path name can be longer than PATH_MAX.
53251
53252 2005-03-27  Jim Meyering  <jim@meyering.net>
53253
53254         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
53255
53256 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
53257
53258         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
53259         "one's complement" -> "ones' complement" in comment, as per Knuth.
53260         "value of type" -> "type or expression" in comment.
53261         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
53262
53263 2005-03-26  Jim Meyering  <jim@meyering.net>
53264
53265         Comment nits.
53266         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
53267         Correct typos: s/or/of/.
53268
53269 2005-03-26  Jim Meyering  <jim@meyering.net>
53270
53271         * modules/check-include-files: Move to ../ and rename to...
53272         * check-module: ...this.
53273
53274 2005-03-25  Jim Meyering  <jim@meyering.net>
53275
53276         * modules/xvasprintf (Files): Add xalloc.h.
53277
53278 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
53279
53280         * modules/gettext (Files): config/config.rpath ->
53281         build-aux/config.rpath
53282         * modules/iconv (Files): Likewise.
53283         Problem reported by Oskar Liljeblad.
53284
53285 2005-03-23  Jim Meyering  <jim@meyering.net>
53286
53287         * modules/check-include-files: New script to check for
53288         missing dependencies, multiple includes, etc.
53289
53290         * modules/c-strtold (Depends-on): Add xalloc.
53291         * modules/c-strtod (Depends-on): Add xalloc.
53292         * modules/hash (Depends-on): Add xalloc.
53293         (Files): Remove lib/xalloc.h.
53294
53295         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
53296         * modules/userspec (Files): Add lib/inttostr.h.
53297
53298 2005-03-23  Jim Meyering  <jim@meyering.net>
53299
53300         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
53301
53302 2005-03-22  Jim Meyering  <jim@meyering.net>
53303
53304         * modules/stat-macros: New module.
53305         * modules/canonicalize, modules/euidaccess, modules/file-type,
53306         * modules/filemode, modules/lchown, modules/makepath,
53307         * modules/rmdir, modules/stat: Depend on new stat-macros module
53308         rather than listing lib/stat-macros.h manually.
53309         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
53310
53311 2005-03-22  Jim Meyering  <jim@meyering.net>
53312
53313         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
53314
53315 2005-03-22  Bruno Haible  <bruno@clisp.org>
53316
53317         * config/srclist.txt: Replace target directory 'config' with
53318         'build-aux'.
53319         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
53320         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
53321         ../build-aux/.
53322
53323 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
53324
53325         * modules/chdir-long (Depends-on): Add mempcpy.
53326
53327         * modules/acl, modules/backupfile, modules/c-strtod,
53328         modules/c-strtold, modules/canon-host, modules/canonicalize,
53329         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
53330         modules/exclude, modules/exitfail, modules/file-type,
53331         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
53332         modules/getdate, modules/getline, modules/getpagesize,
53333         modules/getpass, modules/getugroups, modules/group-member,
53334         modules/hard-locale, modules/hash, modules/human, modules/idcache,
53335         modules/inttostr, modules/long-options, modules/makepath,
53336         modules/md5, modules/memcasecmp, modules/memcoll,
53337         modules/modechange, modules/mountlist, modules/path-concat,
53338         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
53339         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
53340         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
53341         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
53342         modules/strftime, modules/strndup, modules/strverscmp,
53343         modules/timespec, modules/unlocked-io, modules/userspec,
53344         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
53345         modules/yesno:
53346         Remove lib_SOURCES line from Makefile.am section, as this is now
53347         done automatically by the corresponding Autoconf macro.
53348
53349 2005-03-21  Jim Meyering  <jim@meyering.net>
53350
53351         Changes imported from coreutils.
53352
53353         * lib/cycle-check.c: Don't include xalloc.h.
53354
53355         * lib/path-concat.c: Don't include assert.h.
53356         (path_concat): Remove assertion that would have triggered
53357         for ABASE starting with more than one slash.
53358         Reported by Andreas Schwab.
53359
53360         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
53361         properly when ABASE is an absolute file name.
53362         Correct the description of this function.
53363         Include <assert.h>.
53364         Add an assertion and a test driver.
53365         This fixes a bug introduced on 2004-07-02.
53366         Andreas Schwab reported the resulting failure of cp --parents:
53367         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
53368
53369 2005-03-21  Jim Meyering  <jim@meyering.net>
53370
53371         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
53372         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
53373
53374 2005-03-21  Jim Meyering  <jim@meyering.net>
53375         and  Paul Eggert  <eggert@cs.ucla.edu>
53376
53377         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
53378         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
53379         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
53380         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
53381         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
53382         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
53383         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
53384         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
53385         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
53386         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
53387         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
53388         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
53389         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
53390         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
53391         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
53392         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
53393         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
53394         for these modules.
53395
53396 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
53397
53398         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
53399         (which shouldn't happen), generate nothing instead of returning 0
53400         immediately, so that nstrftime (NULL, ...) doesn't return 0.
53401
53402 2005-03-16  Bruno Haible  <bruno@clisp.org>
53403
53404         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
53405         HAVE_LONGLONG_64BIT.
53406
53407 2005-03-16  Bruno Haible  <bruno@clisp.org>
53408
53409         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
53410         HAVE_LONGLONG_64BIT.
53411
53412 2005-03-16  Bruno Haible  <bruno@clisp.org>
53413
53414         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
53415         HAVE_LONGLONG_64BIT.
53416
53417 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
53418
53419         * lib/strftime.c (my_strftime): Prepend space to format so that we can
53420         reliably distinguish strftime failure from empty output on POSIX
53421         hosts.
53422
53423 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
53424
53425         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
53426         (iconv_string): Don't guess a size-zero buffer, as that might cause
53427         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
53428         result would be 'too large', where 'too large' is (heuristically)
53429         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
53430         overflow concerns.  This will prevent some unwanted malloc failures
53431         when the inputs are very large.
53432
53433 2005-03-15  Karl Berry  <karl@gnu.org>
53434
53435         * config/srclist.txt (config.rpath): from gettext.
53436         * config/config.rpath: update.
53437
53438 2005-03-15  Bruno Haible  <bruno@clisp.org>
53439
53440         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
53441         to 'negate'.
53442
53443         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
53444         variable.
53445
53446         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
53447         results.
53448
53449 2005-03-14  Simon Josefsson  <jas@extundo.com>
53450
53451         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
53452         <fx@gnu.org>.
53453
53454 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
53455
53456         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
53457         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
53458         intprops.h.
53459         * lib/strtol.c: Likewise.
53460
53461 2005-03-14  Jim Meyering  <jim@meyering.net>
53462
53463         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
53464         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
53465         to be nonzero so that we (and caller) can detect the difference
53466         between a valid zero-length expansion and an error return, even
53467         when the underlying strftime fails before writing anything into
53468         that location.
53469
53470 2005-03-14  Bruno Haible  <bruno@clisp.org>
53471
53472         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
53473         Update from GNU gettext 0.14.3.
53474
53475 2005-03-10  Jim Meyering  <jim@meyering.net>
53476
53477         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
53478
53479 2005-03-10  Jim Meyering  <jim@meyering.net>
53480
53481         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
53482         so that this module works on systems without fchdir.
53483
53484 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
53485
53486         Factor int-properties macros into a single file, except for
53487         glibc-related files.
53488         * lib/intprops.h: New file.
53489         * lib/getloadavg.c: Include it instead of limits.h.
53490         (INT_STRLEN_BOUND): Remove.
53491         * lib/human.c: Include intprops.h.
53492         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
53493         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
53494         302/1000.
53495         * lib/inttostr.h: Include intprops.h instead of limits.h.
53496         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
53497         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
53498         for consistency with intprops.h.
53499         (time_t_is_integer, twos_complement_arithmetic): Use them.
53500         * lib/sig2str.h: Include <signal.h>, intprops.h.
53501         (INT_STRLEN_BOUND): Remove.
53502         * lib/strftime.c (TYPE_SIGNED): Remove.
53503         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
53504         * lib/strtol.c: Adjust comments to match intprops.h.
53505         * lib/userspec.c: Include intprops.h.
53506         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
53507         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
53508         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
53509         instead of rolling our own expressions.
53510         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
53511
53512         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
53513         instead of int.
53514         (my_strftime): Do not mishandle years close to INT_MAX, by doing
53515         the right thing even if adding 1900 would overflow.  Similarly
53516         for tm_mon + 1 and tm_yday + 1.
53517         Make %Y always equivalent to %C%y, and similarly for %G and %g.
53518         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
53519         (DO_SIGNED_NUMBER): New macro.
53520         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
53521
53522 2005-03-07  Bruno Haible  <bruno@clisp.org>
53523
53524         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
53525
53526 2005-03-07  Bruno Haible  <bruno@clisp.org>
53527
53528         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
53529
53530 2005-03-04  Derek R. Price  <derek@ximbiot.com>
53531
53532         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
53533         (func_import): Only replace files via --import when they have actually
53534         changed.
53535
53536 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53537
53538         * m4/mmap-anon.m4: New file.
53539         * m4/pagealign_alloc.m4: New file.
53540
53541 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53542             Bruno Haible  <bruno@clisp.org>
53543
53544         * modules/pagealign_alloc: New file.
53545         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
53546
53547 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53548             Bruno Haible  <bruno@clisp.org>
53549
53550         * lib/pagealign_alloc.h: New file.
53551         * lib/pagealign_alloc.c: New file.
53552
53553 2005-03-03  Bruno Haible  <bruno@clisp.org>
53554
53555         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
53556         Use an all-permissive copyright notice, recommended by RMS.
53557
53558 2005-03-02  Bruno Haible  <bruno@clisp.org>
53559
53560         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
53561         of AIX, the replacement has to be done only after <string.h> is
53562         included, therefore not in config.h. stpncpy.h does the replacement,
53563         and stpncpy.c uses it.
53564
53565 2005-03-02  Bruno Haible  <bruno@clisp.org>
53566
53567         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
53568         stpncpy.c uses it.
53569
53570 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53571
53572         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
53573         The workaround isn't strictly needed for POSIX conformance, and
53574         it's too much of a pain to configure and maintain.  We'll ask
53575         people to fix their kernels instead.
53576         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
53577         (NANOSLEEP_BUG_WORKAROUND): Remove.
53578         (xnanosleep): Remove the workaround.
53579
53580 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53581
53582         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
53583         Reported by Derek Price.
53584         (Include): Add "timespec.h".
53585
53586         * modules/xnanosleep (Depends-on): Remove gethrxtime.
53587
53588 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53589
53590         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
53591         to detect nanosleep bug.
53592
53593 2005-03-01  Bruno Haible  <bruno@clisp.org>
53594
53595         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
53596
53597 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
53598
53599         * modules/gethrxtime: New file.
53600         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
53601         (Depends-on): Add gethrxtime.
53602         (configure.ac): Add gl_XNANOSLEEP.
53603         (Makefile.am): Remove lib_SOURCES line.
53604
53605 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
53606
53607         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
53608         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
53609
53610 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
53611
53612         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
53613         * lib/timespec.h (gettime): Return void, since it always
53614         succeeds now.  All uses changed.
53615         * lib/gettime.c (gettime) Likewise.
53616         [HAVE_NANOTIME]: Prefer nanotime.
53617         Assume gettimeofday succeeds, as POSIX requires.
53618         Assime time () succeeds, since other code already does.
53619         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
53620         (timespec_subtract): Remove.
53621         (NANOSLEEP_BUG_WORKAROUND): New constant.
53622         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
53623         things considerably.  Use it only on GNU/Linux hosts, since the
53624         workaround shouldn't be needed elsewhere.
53625
53626 2005-02-24  Bruno Haible  <bruno@clisp.org>
53627
53628         * modules/gettext (Files): Add m4/glibc2.m4.
53629
53630 2005-02-24  Bruno Haible  <bruno@clisp.org>
53631
53632         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
53633         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
53634         * m4/progtest.m4:
53635         Update from GNU gettext 0.14.2.
53636         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
53637
53638 2005-02-24  Bruno Haible  <bruno@clisp.org>
53639
53640         * lib/localcharset.c: Update from GNU gettext 0.14.2.
53641         * lib/config.charset: Update from GNU gettext 0.14.2.
53642
53643 2005-02-24  Bruno Haible  <bruno@clisp.org>
53644
53645         * lib/gettext.h: Update from GNU gettext 0.14.2.
53646
53647 2005-02-23  Simon Josefsson  <jas@extundo.com>
53648
53649         * m4/iconvme.m4: New file.
53650
53651 2005-02-23  Jim Meyering  <jim@meyering.net>
53652
53653         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
53654         change.
53655         Thanks to Bruno Haible for catching it.
53656
53657 2005-02-22  Simon Josefsson  <jas@extundo.com>
53658
53659         * modules/iconvme: New file.
53660
53661         * MODULES.html.sh: Add iconvme.
53662
53663 2005-02-22  Simon Josefsson  <jas@extundo.com>
53664
53665         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
53666
53667 2005-02-22  Simon Josefsson  <jas@extundo.com>
53668
53669         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
53670
53671 2005-02-22  Jim Meyering  <jim@meyering.net>
53672
53673         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
53674         s/ifndef/ifdef/.
53675
53676 2005-02-20  Neil Conway  <neilc@samurai.com>
53677
53678         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
53679         returned by OSX/Darwin if the specified buffer is not large
53680         enough for the hostname.
53681
53682 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53683
53684         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
53685         pass it to _help, otherwise the latter coredumps trying to
53686         dereference state.root_argp.
53687
53688 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53689
53690         * modules/chdir-long (Depends-on): Add memrchr.
53691         * modules/memrchr (Files): Add lib/memrchr.h.
53692         (Include): "memrchr.h".
53693
53694 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53695
53696         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
53697
53698 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53699
53700         * lib/memrchr.h: New file.
53701         * lib/chdir-long.c: Include it.
53702         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
53703         Don't bother including stddef.h.
53704
53705 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
53706
53707         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
53708         inclusion.
53709         Include <sys/types.h>, for dev_t.
53710         (ME_DUMMY, ME_REMOTE): Move from here....
53711         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
53712         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
53713         Dmitry V. Levin.
53714         Include mountlist.h first, to test the interface.
53715
53716 2005-01-29  Bruno Haible  <bruno@clisp.org>
53717
53718         * lib/progname.c (program_name): Initialize.
53719         Needed when linking statically on MacOS X.
53720
53721 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53722
53723         Sync from coreutils.
53724         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
53725         (Depends-on): Add c-strtod.
53726         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
53727
53728 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53729
53730         Sync from coreutils.
53731         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
53732
53733         Remove files that are specific to coreutils.
53734         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
53735
53736 2005-01-28  Bruno Haible  <bruno@clisp.org>
53737
53738         * modules/javacomp: New file.
53739         * MODULES.html.sh (Java): Add javacomp.
53740
53741 2005-01-28  Bruno Haible  <bruno@clisp.org>
53742
53743         * m4/javacomp.m4: New file, from GNU gettext.
53744
53745 2005-01-28  Bruno Haible  <bruno@clisp.org>
53746
53747         * lib/javacomp.sh.in: New file, from GNU gettext.
53748         * lib/javacomp.h: New file, from GNU gettext.
53749         * lib/javacomp.c: New file, from GNU gettext.
53750
53751 2005-01-26  Simon Josefsson  <jas@extundo.com>
53752
53753         * lib/gai_strerror.c: Use GPL in header.
53754
53755 2005-01-26  Bruno Haible  <bruno@clisp.org>
53756
53757         * modules/javaexec: New file.
53758         * MODULES.html.sh (Java): Add javaexec.
53759
53760 2005-01-26  Bruno Haible  <bruno@clisp.org>
53761
53762         * m4/javaexec.m4: New file, from GNU gettext.
53763
53764 2005-01-26  Bruno Haible  <bruno@clisp.org>
53765
53766         * lib/javaexec.sh.in: New file, from GNU gettext.
53767         * lib/javaexec.h: New file, from GNU gettext.
53768         * lib/javaexec.c: New file, from GNU gettext.
53769
53770 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53771
53772         * modules/lchown (Depends-on): Remove lchown.h
53773
53774 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53775
53776         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
53777         must be defined if the header file was not found, in order
53778         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
53779
53780 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53781
53782         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
53783         initializers for struct pentry_state.
53784         (__argp_error): Check return value of __asprintf
53785         (__argp_failure): Translate error message
53786
53787         * lib/argp-parse.c: Removed braces around the expansion of N_()
53788
53789 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53790
53791         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
53792         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
53793         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
53794         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
53795         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
53796         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
53797         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
53798         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
53799         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
53800         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
53801         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
53802         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
53803         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
53804         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
53805         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
53806         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
53807         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
53808         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
53809         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
53810         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
53811         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
53812         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
53813         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
53814         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
53815         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
53816         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
53817         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
53818         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
53819         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
53820         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
53821         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
53822         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
53823         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
53824         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
53825         xstrtol.m4, xstrtoumax.m4, yesno.m4:
53826         Use an all-permissive copyright notice, recommended by RMS.
53827
53828 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
53829
53830         * modules/chdir-long (Depends-on): Remove mempcpy.
53831
53832 2005-01-21  Jim Meyering  <jim@meyering.net>
53833
53834         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
53835         same value as for Solaris 9.
53836
53837         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
53838         component length.  This included changing the parameter to be
53839         of type `char *' rather than `char const *'.
53840         * lib/chdir-long.h (chdir_long): Update prototype.
53841
53842         * lib/openat.c (fdopendir, fstatat): New functions.
53843         * lib/openat.h: Include headers required for use of DIR and struct
53844         stat.
53845         [AT_SYMLINK_NOFOLLOW]: Define.
53846         (fdopendir, fstatat): Add prototypes.
53847
53848 2005-01-21  Bruno Haible  <bruno@clisp.org>
53849
53850         * modules/classpath: New file.
53851         * MODULES.html.sh (Java): Add classpath.
53852
53853 2005-01-21  Bruno Haible  <bruno@clisp.org>
53854
53855         * lib/classpath.h: New file, from GNU gettext.
53856         * lib/classpath.c: New file, from GNU gettext.
53857
53858 2005-01-20  Simon Josefsson  <jas@extundo.com>
53859
53860         * modules/version-etc-fsf: New file.
53861
53862 2005-01-20  Simon Josefsson  <jas@extundo.com>
53863
53864         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
53865         * lib/version-etc.c: Remove version_etc_copyright.
53866         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
53867         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
53868
53869 2005-01-20  Simon Josefsson  <jas@extundo.com>
53870
53871         * lib/base64.h (isbase64): Add.
53872
53873         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
53874         using a unsigned prototype, don't inline.
53875         (base64_decode): Use it.
53876
53877 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53878
53879         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
53880         it.
53881
53882 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53883
53884         * lib/save-cwd.c (save_cwd): Remove code to support the case
53885         where fchdir is missing or flaky.
53886
53887 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53888
53889         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
53890
53891 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
53892
53893         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
53894         AC_LIBSOURCES now does this.
53895         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
53896         with new ullong_max module.
53897
53898 2005-01-19  Bruno Haible  <bruno@clisp.org>
53899
53900         * modules/sh-quote: New file.
53901         * MODULES.html.sh (Executing programs): Add sh-quote.
53902
53903 2005-01-19  Bruno Haible  <bruno@clisp.org>
53904
53905         * lib/sh-quote.h: New file, from GNU gettext.
53906         * lib/sh-quote.c: New file, from GNU gettext.
53907
53908 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53909
53910         Merge from coreutils.
53911         * m4/ullong_max.m4: New file.
53912         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
53913         (gl_MACROS): Assume localeconv exists.
53914
53915 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53916
53917         Merge changes from coreutils, as described below in several
53918         changelogs dated today.
53919
53920         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
53921         (O_DIRECTORY): Remove; not needed here, since "." must be
53922         a directory.  All uses removed.
53923         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
53924         universal on Suns, and we also need to test for IRIX.
53925         Revamp code to use 'if' rather than '#if'.
53926         Avoid unnecessary comparison of cwd->desc to 0.
53927
53928         * lib/utimens.c (futimens): Robustify the previous patch, by checking
53929         for known valid error numbers rather than observed invalid ones.
53930
53931 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53932
53933         * modules/ullong_max: New file.
53934
53935         * modules/chdir-long, modules/openat: New files.
53936         * modules/save-cwd (Depends-on): Depend on chdir-long.
53937         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
53938
53939 2005-01-18  Jim Meyering  <jim@meyering.net>
53940
53941         Merge from coreutils.
53942         * m4/chdir-long.m4, m4/openat.m4: New files.
53943         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
53944         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
53945         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
53946         is sane and DOES follow symlinks.  Besides, testing 20 different
53947         systems found no broken chown implementations.
53948         Prompted by a change in rsync's copy of this macro.
53949         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
53950
53951         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
53952
53953         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
53954         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
53955         NULL-means-set-to-current-time semantics.
53956         Remove temporary file immediately, rather than waiting
53957         for configure's at-exit trap code to do it.
53958
53959 2005-01-18  Jim Meyering  <jim@meyering.net>
53960
53961         * lib/version-etc.c (version_etc_copyright): Update copyright date.
53962
53963         * lib/utimens.c (futimens): Account for the fact that futimes
53964         can also fail with errno == ENOSYS or errno == ENOENT.
53965         Patch from Dmitry V. Levin.
53966
53967         Change the name of the robust chdir function from chdir to chdir_long.
53968         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
53969         (restore_cwd): Use chdir_long, not chdir.
53970         * lib/chdir-long.c: Renamed from chdir.c.
53971         * lib/chdir-long.h: Renamed from chdir.h.
53972         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
53973         Hurd.
53974
53975 2005-01-18  Bruno Haible  <bruno@clisp.org>
53976
53977         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
53978         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
53979         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
53980         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
53981         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
53982         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
53983         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
53984         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
53985         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
53986         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
53987         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
53988         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
53989         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
53990         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
53991         Use an all-permissive copyright notice, recommended by RMS.
53992
53993 2005-01-18  Bob Proulx  <bob@proulx.com>
53994
53995         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
53996         simplify offsetof() macro construct to avoid compile failure with
53997         native HP-UX 11.0 ANSI C compiler.
53998
53999 2005-01-17  Bruno Haible  <bruno@clisp.org>
54000
54001         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
54002         redundant because stpncpy.m4 takes care of it.
54003
54004 2005-01-17  Bruno Haible  <bruno@clisp.org>
54005
54006         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
54007
54008 2005-01-17  Bruno Haible  <bruno@clisp.org>
54009
54010         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
54011         used.
54012
54013 2005-01-17  Bruno Haible  <bruno@clisp.org>
54014
54015         * lib/fwriteerror.h (fwriteerror): Change specification to include
54016         fclose.
54017         * lib/fwriteerror.c: Include <stdbool.h>.
54018         (fwriteerror): At the end, close the file stream. Record whether
54019         stdout was already closed.
54020
54021 2005-01-17  Bruno Haible  <bruno@clisp.org>
54022
54023         * lib/execute.c (environ): Declare if needed.
54024         * lib/pipe.c (environ): Likewise.
54025         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
54026
54027 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54028
54029         * modules/argp: Depend on vsnprintf
54030
54031 2005-01-10  Jim Meyering  <jim@meyering.net>
54032
54033         * modules/closeout (Depends-on): Add atexit.
54034
54035 2005-01-06  Bruno Haible  <bruno@clisp.org>
54036
54037         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
54038
54039 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54040
54041         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
54042         definitions to be after all include files, to avoid collisions.
54043         Problem reported by Bob Proulx.
54044
54045 2005-01-04  Jim Meyering  <jim@meyering.net>
54046
54047         Changes imported from coreutils.
54048         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
54049         as the mkstemp template, use a temporary directory and an
54050         8.3-friendly template to avoid trouble on systems like DJGPP.
54051         Reported by Juan M. Guerrero via Stepan Kasal.
54052         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
54053         close. Remove the temporary directory right away, rather than waiting
54054         for configure's at-exit trap code to do it.
54055         Suggestion from Stepan Kasal.
54056
54057 2005-01-01  Simon Josefsson  <jas@extundo.com>
54058
54059         * gnulib-tool: Print #include directives when --import'ing.
54060
54061 2004-12-28  Simon Josefsson  <jas@extundo.com>
54062
54063         * tests/test-base64.c: Include required header files.  Remove
54064         unused variables.
54065
54066 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54067
54068         * modules/error (Depends-on): Remove gettext.
54069
54070 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54071
54072         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
54073         not needed.  This removes a dependency on the gettext module.
54074         [defined _LIBC]: Do not include <libintl.h>; not needed.
54075
54076 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54077
54078         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
54079         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
54080
54081 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54082
54083         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
54084         HAVE_DECL_STRTOLD.
54085
54086 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54087
54088         * modules/getdate (Depends-on): Remove alloca-opt.
54089
54090 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54091
54092         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
54093
54094 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54095
54096         * lib/argp-parse.c: Include <stddef.h>.
54097         (alignof, alignto): New macros.
54098         (parser_init): Don't assume that void * is aligned sufficiently
54099         for struct option.
54100
54101         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
54102         need to extend the stack.
54103         (YYINITDEPTH): New macro, so that the initial stack isn't overly
54104         large.
54105
54106 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54107
54108         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
54109
54110 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54111
54112         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
54113         (2004-10-24) change.  Apparently this was a false alarm.
54114
54115         * modules/getdate: Depend on alloca-opt, not alloca.
54116
54117 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54118
54119         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
54120         Remove now-obsolete comment about AIX.
54121         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
54122         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
54123         (YYMAXDEPTH): New macro.
54124
54125 2004-12-18  Simon Josefsson  <jas@extundo.com>
54126
54127         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
54128
54129 2004-12-18  Bruno Haible  <bruno@clisp.org>
54130
54131         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
54132
54133 2004-12-18  Bruno Haible  <bruno@clisp.org>
54134
54135         * lib/fatal-signal.c (fatal_signals): Make non-const.
54136         (init_fatal_signals): New function.
54137         (uninstall_handlers, install_handlers): Ignore signals that were set to
54138         SIG_IGN.
54139         (at_fatal_signal): Call init_fatal_signals.
54140         (init_fatal_signal_set): Likewise. Ignore signals that were set to
54141         SIG_IGN.
54142         Reported by Paul Eggert.
54143
54144 2004-12-18  Bruno Haible  <bruno@clisp.org>
54145
54146         * doc/alloca.texi: New file.
54147         * doc/alloca-opt.texi: New file.
54148
54149 2004-12-17  Jim Meyering  <jim@meyering.net>
54150
54151         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
54152         Otherwise, install-sh could exit with improper exit status when
54153         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
54154
54155 2004-12-16  Simon Josefsson  <jas@extundo.com>
54156
54157         * tests/test-base64.c: Add license.
54158
54159 2004-12-15  Stepan Kasal  <address@hidden>
54160
54161         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
54162
54163 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
54164
54165         * modules/getcwd (Files): Add m4/d-ino.m4.
54166         Suggested by Mark D. Baushke.
54167
54168 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54169
54170         * lib/getdate.y (textint): New member "negative".
54171         (time_zone_hhmm): New function.
54172         Expect 14 shift-reduce conflicts, not 13.
54173         (o_colon_minutes): New rule.
54174         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
54175         (yylex): Set the "negative" member of signed numbers.
54176
54177 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54178
54179         * doc/getdate.texi (Time of day items, Time zone items):
54180         Describe new formats +00:00, UTC+00:00.
54181
54182 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54183
54184         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
54185         spurious "-l"s.  Problem reported by Stepan Kasal.
54186
54187 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
54188
54189         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
54190         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
54191
54192 2004-12-04  Simon Josefsson  <jas@extundo.com>
54193
54194         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
54195         Vandoorselaere <yoann@prelude-ids.org>.
54196
54197 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54198
54199         Changes imported from coreutils.
54200         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
54201         exist.
54202         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
54203
54204 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54205
54206         Changes imported from coreutils.
54207         * lib/hard-locale.c: Assume <locale.h> exists.
54208         Include "strdup.h".
54209         (GLIBC_VERSION): New macro.
54210         (hard_locale): Assume setlocale exists.
54211         Rewrite to avoid #ifdef.
54212         Use strdup rather than malloc + strcpy.
54213         * lib/human.c: Assume <locale.h> exists.
54214         (human_readable): Assume localeconv exists.
54215
54216 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54217
54218         * modules/hard-locale (Depends-on): Add strdup.
54219
54220 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
54221
54222         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
54223         convert T2, not T.  (Imported from libc.)
54224
54225 2004-11-30  Simon Josefsson  <jas@extundo.com>
54226
54227         * modules/restrict (License): Change to LGPL.
54228
54229 2004-11-30  Simon Josefsson  <jas@extundo.com>
54230
54231         * m4/restrict.m4: Add copyright and copying conditions.
54232
54233 2004-11-30  Simon Josefsson  <jas@extundo.com>
54234
54235         * m4/base64.m4: New file.
54236
54237 2004-11-30  Simon Josefsson  <jas@extundo.com>
54238
54239         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
54240         base64.
54241
54242         * tests/test-base64.c: New file.
54243
54244         * modules/base64: New file.
54245
54246 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54247
54248         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
54249         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
54250
54251         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
54252
54253 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54254
54255         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
54256         (__getcwd.c): Don't restore errno; glibc doesn't.
54257         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
54258         first, falling back to our code only if its results look suspicious.
54259         Ensure that the resulting buffer is only as large as necessary.
54260
54261         * lib/readutmp.c: Include readutmp.h first.
54262         Include <errno.h>, since readutmp.h no longer does that.
54263         * lib/readutmp.h: Don't include <errno.h>,
54264         <sys/param.h>, <time.h>; not needed to establish interface.
54265         (errno): Remove decl.
54266         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
54267         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
54268         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
54269
54270 2004-11-28  Simon Josefsson  <jas@extundo.com>
54271
54272         * lib/base64.h, base64.c: New file.
54273
54274 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
54275
54276         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
54277
54278 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
54279
54280         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
54281         (Depends-on): Remove pathmax, same.  Add mempcpy.
54282         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
54283         (Makefile.am): Append getcwd.h to lib_SOURCES.
54284         (Include): Add getcwd.h.
54285         (Maintainer): Change from Jim Meyering to "all, glibc",
54286         since getdate now uses intended-for-glibc code.
54287         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
54288         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
54289
54290 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54291
54292         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
54293         HP's ANSI C compiler.
54294         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
54295         Declaring int functions causes warnings on some modern systems and
54296         shouldn't be needed to compile on ancient ones.
54297         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
54298         defined.
54299
54300         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
54301         with the following changes.
54302         (__set_errno): Parenthesize properly.
54303         Include <stdbool.h>.
54304         (MIN, MAX, MATCHING_INO): New macros.
54305         (__getcwd): Define with prototype, not K&R form.
54306         Use heuristics to allocate default buffer on stack if possible.
54307         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
54308         behavior, and to avoid the PATH_MAX limit when computing
54309         ../../../../...
54310         Use MATCHING_INO to compare inode number to file.
54311         Check for arithmetic overflow in size calculations.
54312         Fix bug in reallocation of dot array that caused getcwd to fail
54313         on directories nested deeper than 75.
54314         Be more careful about saving errno on error.
54315         Do not use realloc; use only free+malloc, as this is a bit
54316         more flexible and avoids a needless copy operation.
54317         Do not inspect st_dev and st_ino for symbolic links; POSIX
54318         doesn't specify the latter.
54319         Check for closedir errors.
54320         Avoid needless casts.
54321         Use "#ifdef weak_alias" around weak_alias, to be like other
54322         glibc code.
54323         The following changes to getcwd.c have effect only when used in
54324         gnulib; they have no effect inside glibc proper.
54325         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
54326         as alloca isn't used.
54327         (alloca, __alloca): Likewise.
54328         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
54329         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
54330         unconditionally, as gnulib assumes C89 or better.
54331         Do not include <sys/param.h>.
54332         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
54333         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
54334         better.
54335         (NULL) [!defined NULL]: Remove; we assume C89 or better.
54336         Include <dirent.h> in a way that is compatible with modern Autoconf.
54337         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
54338         New macros, if not already defined.
54339         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
54340         Use "_LIBC", not "defined _LIBC", for consistency.
54341         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
54342         a mempcpy module.
54343         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
54344         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
54345         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
54346         credit only to Jim Meyering and adjust the copyright dates.
54347         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
54348         <stdlib.h>, <unistd.h>, "pathmax.h".
54349         Instead, include "xgetcwd.h" (first) and "getcwd.h".
54350         (INITIAL_BUFFER_SIZE): Remove.
54351         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
54352
54353 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54354
54355         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
54356         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
54357         Use the _ONCE methods, for efficiency.
54358         Check for fcntl.h.  In test program, include <errno.h>
54359         and <fcntl.h> if available.  Remove old K&R cruft from
54360         test program.  Check for common errors in GNU/Linux,
54361         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
54362         don't do AC_LIBOBJ, as that's getcwd.m4's job.
54363         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
54364         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
54365         name accordingly.
54366         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
54367         accommodate new getcwd.c.
54368         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
54369         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
54370         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
54371         that's all we need now.
54372
54373 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54374
54375         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
54376         argp-parse.c depends on getopt internals, that means we should
54377         always use our getopt, to be on the safe side.
54378         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
54379         order not to spoil the result of an eventual previous invocation
54380         of gl_GETOPT_SUBSTITUTE.
54381
54382 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54383
54384         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
54385         redefinition warnings. To avoid them, include the defines
54386         in `#if !defined __need_getopt ... #endif'. The only place
54387         where __getopt_argv_const is used is in definitions
54388         of getopt_long and getopt_long_only below, which are as well
54389         protected by `#ifndef __need_getopt'.
54390         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
54391         __need_getopt after including <stdio.h> and <unistd.h> These
54392         headers might have defined it.
54393
54394 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
54395
54396         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
54397
54398 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
54399
54400         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
54401         (futimens): New function, which uses futimes if available.
54402         (futimens, utimens): Support timespec==NULL, with same semantics
54403         as utime and utimens.
54404         * lib/utimens.h (futimens): New decl.
54405
54406 2004-11-23  Jim Meyering  <jim@meyering.net>
54407
54408         * lib/getopt_.h: Remove trailing blanks.
54409
54410 2004-11-23  Jim Meyering  <jim@meyering.net>
54411
54412         * lib/__fpending.c: Add comment.
54413
54414 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
54415
54416         * modules/canonicalize (Depends-on): Add xreadlink.
54417         Problem reported by James Youngman.
54418
54419 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
54420
54421         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
54422         New macros.
54423         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
54424         optopt): Use them instead of invoking ## directly; otherwise, the
54425         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
54426
54427 2004-11-19  Bruno Haible  <bruno@clisp.org>
54428
54429         * lib/strtok_r.c: Move comments from here...
54430         * lib/strtok_r.h: ... to here.
54431
54432 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
54433
54434         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
54435         implementations that mishandle size_t overflow.
54436
54437 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
54438
54439         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
54440         might fail.  Problem reported by Yoann Vandoorselaere.
54441         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
54442         implementations that mishandle size_t overflow.
54443
54444 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54445
54446         * modules/canon-host (Depends-on): Add strdup.
54447
54448 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54449
54450         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
54451
54452 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54453
54454         * lib/canon-host.c: Include "strdup.h".
54455         (canon_host): Use getaddrinfo if available, so that IPv6 works.
54456         Use strdup instead of malloc/strcpy to duplicate strings.
54457
54458         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
54459         (human_space_before_unit): New constant.
54460         * lib/human.c (human_readable): Support it.
54461
54462         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
54463         (xgetcwd): Set errno correctly when failing.
54464         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
54465         the failure is actually due to a PATH_MAX problem.
54466
54467         Further getopt changes to make it more likely that glibc will
54468         buy the changes back.
54469         * lib/getopt.c (POSIXLY_CORRECT): New constant.
54470         (getopt): Use it, so to preserve glibc semantic
54471         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
54472         when compiling for libc.
54473         * lib/getopt_.h (__getopt_argv_const): Bring it back.
54474         (getopt_long, getopt_long_only): Use it.
54475
54476         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
54477         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
54478         (getopt): Argv is now char * const *, as per standard.
54479         (_getopt_internal_r, _getopt_internal): Argv is now char **,
54480         not char *__getopt_argv_const *.
54481         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
54482         _getopt_long_only_r): Likewise.
54483         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
54484         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
54485         _getopt_long_r, _getopt_long_only_r): Likewise.
54486         * lib/getopt_.h (__getopt_argv_const): Remove.
54487         (getopt): Argv is now char * const *, as per standard.
54488
54489         * lib/getdate.y (tORDINAL): New token.
54490         (day, relunit): Allow it for relative times.
54491         (relative_time_table): Use tORDINAL for ordinals.
54492
54493 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54494
54495         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
54496         Document that "second" isn't allowed as an ordinal number.
54497
54498 2004-11-16  Jim Meyering  <jim@meyering.net>
54499
54500         * modules/closeout (Depends-on): Add fpending.
54501
54502 2004-11-15  Jim Meyering  <jim@meyering.net>
54503
54504         * lib/closeout.c: Include "__fpending.h" once again.
54505         Include <stdbool.h>.
54506         (close_stdout): Don't fail just because stdout was closed initially,
54507         since some programs don't write to stdout in the normal course of
54508         operation (other than --version and --help), and we don't want this
54509         function to make e.g. `touch file >&-' fail.
54510         But do fail if it was closed and someone has tried to write to it.
54511         E.g., `printf foo >&-' must fail.
54512
54513 2004-11-13  Jim Meyering  <jim@meyering.net>
54514
54515         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
54516
54517 2004-11-12  Simon Josefsson  <jas@extundo.com>
54518
54519         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
54520         small doc fix is still pending.
54521
54522 2004-11-11  Simon Josefsson  <jas@extundo.com>
54523
54524         * modules/strtok_r: New file.
54525
54526         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54527         strtok_r.
54528
54529 2004-11-11  Simon Josefsson  <jas@extundo.com>
54530
54531         * m4/strtok_r.m4: New file.
54532
54533         * m4/getopt.m4: Replace opterr.
54534
54535 2004-11-11  Simon Josefsson  <jas@extundo.com>
54536
54537         * lib/strtok_r.h, strtok_r.c: New file.
54538
54539 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
54540
54541         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
54542         of replacing opterr, getopt, etc.  This should handle the
54543         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
54544
54545 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
54546
54547         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
54548         we can stop lying to compilers about the constness of argv when we
54549         are compiled outside glibc.
54550         (getopt, getopt_long, getopt_long_only): Use it.
54551         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
54552         _getopt_internal, getopt): Likewise.
54553         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
54554         _getopt_long_only_r): Likewise.
54555         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
54556         _getopt_long_r, _getopt_long_only_r): Likewise.
54557
54558         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
54559         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
54560         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
54561         the other external symbols.
54562         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
54563         declaration, since the above renaming now works around collisions.
54564
54565 2004-11-11  Jim Meyering  <jim@meyering.net>
54566
54567         * lib/linebreak.c: Remove trailing blanks.
54568         * lib/alloca_.h: Likewise.
54569         * lib/acosl.c: Likewise.
54570         * lib/euidaccess.c: Likewise.
54571         * lib/allocsa.h: Likewise.
54572
54573 2004-11-10  Simon Josefsson  <jas@extundo.com>
54574
54575         * m4/getaddrinfo.m4: New file.
54576
54577 2004-11-10  Simon Josefsson  <jas@extundo.com>
54578
54579         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
54580
54581 2004-11-10  Simon Josefsson  <jas@extundo.com>
54582
54583         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54584         getaddrinfo.
54585
54586         * modules/getaddrinfo: New file.
54587
54588 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54589
54590         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
54591
54592 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54593
54594         * lib/mktime.c (SHR): New macro, which is a portable
54595         substitute for >> that should work even on Crays.
54596         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
54597         Problem reported by Mark D. Baushke in
54598         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
54599         * lib/getdate.y (SHR): Likewise.
54600         (tm_diff): Use it.
54601         * lib/strftime.c (SHR): Likewise.
54602         (tm_diff): Use it.
54603         * lib/quotearg.c (struct quoting_options): Use unsigned int for
54604         quote_these_too, so that right shifts are well defined.  All uses
54605         changed.
54606
54607 2004-11-10  Jim Meyering  <jim@meyering.net>
54608
54609         Ensure that no close failure goes unreported.
54610         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
54611         return early when it seems there's nothing to flush.
54612         Don't include __fpending.h.
54613
54614 2004-11-10  Jim Meyering  <jim@meyering.net>
54615
54616         * modules/closeout (Depends-on): Remove fpending.
54617
54618 2004-11-10  Jim Meyering  <jim@meyering.net>
54619
54620         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
54621
54622 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
54623
54624         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
54625         gl_FUNC_STRFTIME.
54626         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
54627         and AC_REQUIRE when possible, to avoid duplicate checks.
54628         Check for <wchar.h>.
54629
54630 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
54631
54632         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
54633
54634 2004-11-09  Bruno Haible  <bruno@clisp.org>
54635
54636         * m4/sockpfaf.m4: New file.
54637
54638 2004-11-05  Bruno Haible  <bruno@clisp.org>
54639
54640         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
54641         Reported by Mark D. Baushke <mdb@cvshome.org>.
54642
54643 2004-11-04  Bruno Haible  <bruno@clisp.org>
54644
54645         2004-09-11  Bruno Haible  <bruno@clisp.org>
54646                 * allocsa.valgrind: New file.
54647         2004-02-06  Bruno Haible  <bruno@clisp.org>
54648                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
54649                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
54650                 Reported by Christopher Seip <chris.seip@hp.com>.
54651
54652 2004-11-04  Bruno Haible  <bruno@clisp.org>
54653
54654         * modules/allocsa (Files): Add lib/allocsa.valgrind.
54655         (Makefile.am): Distribute it.
54656
54657 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
54658
54659         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
54660         with errno == ERANGE if the buffer is too small.
54661         Problem reported by Mark D. Baushke.
54662
54663 2004-11-03  Albert Chin  <china@thewrittenword.com>
54664             Paul Eggert  <eggert@cs.ucla.edu>
54665
54666         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
54667         equivalent, substitute $ac_type for equivalent type rather than
54668         blindly using uint32_t *always* which won't work if uint32_t is not
54669         available.  Define _UINT32_T to work around typedef of uint32_t if
54670         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
54671         2.5.1.
54672
54673 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54674
54675         * m4/jm-macros.m4: Sync from coreutils.
54676         (gl_MACROS): Check for mbrlen, for pathchk.
54677         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
54678
54679 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54680
54681         * lib/xreadlink.c (MAXSIZE): New macro.
54682         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
54683         size does not exceed MAXSIZE.  Avoid cast.
54684         As suggested by Mark D. Baushke in
54685         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
54686         if readlink fails with buffer size just under MAXSIZE, try again
54687         with MAXSIZE.
54688
54689 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54690
54691         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
54692
54693 2004-11-02  Derek R. Price  <derek@ximbiot.com>
54694         and  Paul Eggert  <eggert@cs.ucla.edu>
54695
54696         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
54697         (get_date): Overparenthesize to avoid GCC warning.
54698
54699 2004-11-02  Bruno Haible  <bruno@clisp.org>
54700
54701         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
54702         returns void.
54703
54704 2004-11-02  Bruno Haible  <bruno@clisp.org>
54705
54706         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
54707         function returns void.
54708
54709 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54710
54711         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
54712         fflush_unlocked, flockfile, funlockfile, funlockfile,
54713         fputs_unlocked, putc_unlocked.
54714
54715 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54716
54717         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54718         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
54719         already declared.
54720
54721 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54722
54723         * modules/getdate (Files): Add doc/getdate.texi.
54724         (Depends-on): Add setenv, xalloc.
54725
54726 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54727
54728         * lib/getdate.y: Add support for TZ="foo" within a date string.
54729         Fix some bugs near time_t boundaries.  Reject dates with
54730         out-of-range components, e.g., "Sept 31".
54731         Include <stdlib.h>, "setenv.h", "xalloc.h".
54732         (ISDIGIT_LOCALE): Remove; unused.
54733         Note that the TZ and time functions used here are not reentrant.
54734         (mktime_ok, get_tz): New functions.
54735         (TZBUFSIZE): New constant.
54736         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
54737         This requires that we sometimes generate our own TZ="XXX..." setting.
54738
54739 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54740
54741         * doc/getdate.texi: New file, from coreutils with modifications for
54742         the new TZ parsing.
54743
54744 2004-10-27  Derek R. Price  <derek@ximbiot.com>
54745
54746         * lib/mktime.c (not_equal_tm): Remove redundant check.
54747
54748 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54749
54750         * modules/regex (lib_SOURCES): Add regex.c.
54751         Reported by James Youngman in
54752         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
54753
54754 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54755
54756         * lib/getdate.y: Use Bison 1.875 features, and some minor
54757         code cleanups.  This change does not affect semantics.
54758         Don't include <stdlib.h>; no longer needed.
54759         Don't include unlocked-io.h; only the "#if TEST" code uses
54760         stdio, and performance isn't crucial there.
54761         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
54762         Bison 1.875 features as described below.
54763         All uses of "PC." replaced by "pc->".
54764         (YYSTYPE): Add a forward declaration.
54765         (yylex, yyerror): Use full prototypes in forward decls.
54766         Use "%pure-parser" rather than obsolescent "%pure_parser".
54767         Use %parse-param and %lex-param instead of obsolescent
54768         YYPARSE_PARAM and YYLEX_PARAM.
54769         (meridian_table, month_and_day_table, time_units_table,
54770         relative_time_table, time_zone_table, military_table,
54771         lookup_zone, lookup_word, get_date):
54772         Use NULL instead of 0 where appropriate.
54773         (to_hour): Avoid abort (), to avoid a dependency on
54774         stdlib.h.
54775         (yyerror, yylex): Now accepts parser_control * arg.
54776         (main) [TEST]: Use '\0' rather than 0 for char.
54777
54778 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54779
54780         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
54781
54782 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54783
54784         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
54785         It's now the caller's responsibility to handle the case where
54786         !HAVE_GETPAGESIZE && !defined getpagesize.
54787
54788         * lib/mktime.c (leapyear): Arg is long int, not int.
54789
54790 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
54791
54792         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
54793
54794 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
54795
54796         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
54797         missing.  Problem reported by James Youngman.
54798
54799 2004-10-16  Simon Josefsson  <jas@extundo.com>
54800
54801         * gnulib-tool: Fix comments.  Fix parse problem.
54802         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
54803
54804 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
54805
54806         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
54807         implementation of getopt_long.  Problem reported by Alexander Taler in:
54808         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
54809
54810 2004-10-15  Bruno Haible  <bruno@clisp.org>
54811
54812         * gnulib-tool: Untabify. Initialize supplied_libname.
54813         (func_usage): More homogenous output.
54814         (func_modules_transitive_closure, func_modules_to_filelist,
54815         func_emit_lib_Makefile_am): New functions.
54816         (func_import): New function, extracted from big case statement. Use
54817         func_get_license, func_modules_transitive_closure,
54818         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
54819         opt_lgpl. Don't use test -a, as it's not portable.
54820         (func_create_testdir): Use func_modules_transitive_closure,
54821         func_modules_to_filelist, func_emit_lib_Makefile_am.
54822
54823 2004-10-15  Bruno Haible  <bruno@clisp.org>
54824
54825         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
54826
54827 2004-10-15  Bruno Haible  <bruno@clisp.org>
54828
54829         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
54830         the portions belonging to each module.
54831         Suggested by Derek Robert Price <derek@ximbiot.com>.
54832
54833 2004-10-12  Simon Josefsson  <jas@extundo.com>
54834
54835         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54836         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
54837         to real functions.
54838
54839 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54840
54841         * modules/vsnprintf: New file.
54842
54843 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54844
54845         * m4/vsnprintf.m4: New file.
54846
54847 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54848
54849         * lib/vsnprintf.h: New file.
54850         * lib/vsnprintf.c: New file.
54851
54852 2004-10-11  Bruno Haible  <bruno@clisp.org>
54853
54854         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
54855         vsnprintf.
54856
54857 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
54858
54859         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
54860
54861 2004-10-07  Bruno Haible  <bruno@clisp.org>
54862
54863         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
54864         fits into the provided buffer.
54865
54866 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
54867
54868         * lib/diacrit.c, diacrit.h: Add GPL notice.
54869
54870         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
54871         notice.
54872         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
54873         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
54874         This avoids a potential constant-folding bug.
54875
54876 2004-10-05  Bruno Haible  <bruno@clisp.org>
54877
54878         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
54879         for the declaration of strsep.
54880
54881 2004-10-05  Bruno Haible  <bruno@clisp.org>
54882
54883         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
54884
54885 2004-10-04  Simon Josefsson  <jas@extundo.com>
54886
54887         * modules/memmem: New file.
54888         * tests/test-memmem.c: New file.
54889         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
54890
54891 2004-10-04  Simon Josefsson  <jas@extundo.com>
54892
54893         * m4/memmem.m4: New file.
54894
54895 2004-10-04  Simon Josefsson  <jas@extundo.com>
54896
54897         * lib/memmem.h: New file.
54898         * lib/memmem.c: New file, taken from glibc.
54899
54900 2004-10-04  Simon Josefsson  <jas@extundo.com>
54901
54902         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
54903         '#ifdef USE_UNLOCKED_IO'.
54904
54905 2004-10-04  Simon Josefsson  <jas@extundo.com>
54906
54907         * config/srclist.txt: Add memmem from glibc.
54908
54909 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54910
54911         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
54912
54913         * modules/argmatch, modules/argp, modules/closeout, modules/error,
54914         modules/exclude, modules/getdate, modules/getline,
54915         modules/getndelim2, modules/getpass, modules/getpass-gnu,
54916         modules/getusershell, modules/linebuffer, modules/md5,
54917         modules/mountlist, modules/posixtm, modules/readtokens,
54918         modules/readutmp, modules/regex, modules/sha1,
54919         modules/version-etc, modules/yesno:
54920         Remove dependency on unlocked-io.
54921
54922 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54923
54924         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
54925
54926         * m4/unlocked-io.m4: Add copyright notice.
54927         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
54928
54929 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54930
54931         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
54932         * lib/xmalloc.c (xmemdup): Likewise.
54933         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
54934         XFREE): Remove these long-obsolescent macros.
54935         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
54936         * lib/xstrdup.c: Remove.
54937
54938         * lib/regex.c (re_comp): Cast gettext return value to char *,
54939         Problem reported by Martin Neitzel via Mark D. Baushke.
54940
54941 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54942
54943         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
54944         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
54945         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
54946         regex.c, sha1.c, version-etc.c, yesno.c:
54947         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
54948         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
54949         the includer's responsibility.
54950
54951         Sync from coreutils.
54952
54953         * lib/modechange.c (mode_compile): Don't decrement a pointer that
54954         points to the start of a string, as the C Standard says the
54955         resulting behavior is undefined.
54956
54957         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
54958         simple -> simple_backups, numbered_existing ->
54959         numbered_existing_backups, numbered -> numbered_backups
54960         to avoid shadowing problems.  All uses changed.
54961         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
54962         * lib/backupfile.c (check_extension, numbered_backup):
54963         Rename locals to avoid shadowing 'basename'.
54964         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
54965         once.
54966
54967         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
54968         * lib/.cvsignore: Add getopt.h.
54969
54970 2004-10-04  Bruno Haible  <bruno@clisp.org>
54971
54972         * modules/README: New file.
54973         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
54974         not a module.
54975
54976 2004-10-02  Jim Meyering  <jim@meyering.net>
54977
54978         * lib/dirfd.h, getpagesize.h: Add copyright notice.
54979
54980 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54981
54982         * modules/strsep: New file.
54983
54984 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54985
54986         * m4/strsep.m4: New file.
54987
54988 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54989
54990         * lib/strsep.h: New file.
54991         * lib/strsep.c: New file.
54992
54993 2004-10-01  Simon Josefsson  <jas@extundo.com>
54994
54995         * lib/snprintf.c (snprintf): Handle size==0.
54996
54997 2004-10-01  Simon Josefsson  <jas@extundo.com>
54998             Bruno Haible  <bruno@clisp.org>
54999
55000         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
55001         (snprintf): Declare 'args'.
55002
55003 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
55004
55005         * lib/snprintf.c: Remove comments as to why each header is needed.
55006
55007 2004-10-01  Bruno Haible  <bruno@clisp.org>
55008
55009         * MODULES.html.sh: Add strsep.
55010
55011 2004-09-30  Simon Josefsson  <jas@extundo.com>
55012
55013         * modules/snprintf: New file.
55014
55015 2004-09-30  Simon Josefsson  <jas@extundo.com>
55016
55017         * m4/snprintf.m4: New file.
55018
55019 2004-09-30  Simon Josefsson  <jas@extundo.com>
55020
55021         * lib/snprintf.h, lib/snprintf.c: New files.
55022
55023 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55024
55025         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
55026         (hol_entry_help): Never translate an empty string.
55027         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
55028         * lib/argp.h (OPTION_NO_TRANS): New option.
55029
55030 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55031
55032         * modules/argp (Maintainer): Replace Simon Josefsson
55033         by Sergey Poznyakoff.
55034
55035 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55036
55037         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
55038         changes merged back into glibc.
55039
55040 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55041
55042         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
55043
55044 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
55045
55046         * lib/xvasprintf.c: Include xalloc.h.
55047         (xvasprintf): Use xalloc_die, not xmalloc_die.
55048
55049 2004-09-29  Bruno Haible  <bruno@clisp.org>
55050
55051         * modules/alloca-opt: New file, derived from modules/alloca.
55052         * modules/allocsa: Depend on alloca-opt instead of alloca.
55053         * modules/setenv: Likewise.
55054         * modules/vasnprintf: Likewise.
55055         * MODULES.html.sh: Add alloca-opt.
55056
55057 2004-09-28  Simon Josefsson  <jas@extundo.com>
55058
55059         * gnulib-tool: New parameter --lgpl, to asseert that modules are
55060         LGPL, and to replace license template from GPL to LGPL.
55061
55062 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55063
55064         * modules/dummy: Change license to LGPL.
55065
55066 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55067
55068         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
55069
55070 2004-09-24  Simon Josefsson  <jas@extundo.com>
55071
55072         * modules/minmax (License): Change from GPL to LGPL.
55073
55074 2004-09-23  Simon Josefsson  <jas@extundo.com>
55075
55076         * gnulib-tool (--import): Typo.
55077
55078 2004-09-23  Simon Josefsson  <jas@extundo.com>
55079
55080         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
55081
55082 2004-09-22  Bruno Haible  <bruno@clisp.org>
55083
55084         * modules/*: Add 'License' field.
55085         * gnulib-tool: Accept --extract-license option.
55086         (func_get_license): New function.
55087
55088 2004-09-21  Bruno Haible  <bruno@clisp.org>
55089
55090         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
55091         Reported by Simon Josefsson.
55092
55093 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55094
55095         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
55096         gl_AC_TYPE_LONG_LONG.
55097
55098 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55099
55100         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
55101
55102 2004-09-18  Simon Josefsson  <jas@extundo.com>
55103         and  Paul Eggert  <eggert@cs.ucla.edu>
55104
55105         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
55106         calls with autoreconf.  Define GL_LIB.
55107
55108 2004-09-14  Karl Berry  <karl@gnu.org>
55109
55110         * config/srclist.txt: unsync setenv.c, sigh.
55111
55112 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55113
55114         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
55115         Problem reported by Bruno Haible in:
55116         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
55117
55118 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55119
55120         * config/srclist.txt: Comment out argp-pvh.c.
55121
55122 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
55123
55124         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
55125         in case some system header has #define'd it.  Problem reported by
55126         Soeren D. Schulze in
55127         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
55128
55129 2004-09-09  Karl Berry  <karl@gnu.org>
55130
55131         * regex.[ch]: delete from the root.  These were supposed to be
55132                 synced with emacs cvs, but this has not happened for about
55133                 a year, and anyway nothing else uses emacs regex.[ch].
55134                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
55135                 lib/regex[.ch] is untouched.
55136
55137 2004-09-09  Bruno Haible  <bruno@clisp.org>
55138
55139         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
55140
55141 2004-09-09  Bruno Haible  <bruno@clisp.org>
55142
55143         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
55144         modifications.
55145         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
55146
55147 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55148
55149         * modules/xvasprintf: New file.
55150         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
55151
55152 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55153
55154         * lib/xvasprintf.h: New file.
55155         * lib/xvasprintf.c: New file.
55156         * lib/xasprintf.c: New file.
55157
55158 2004-09-08  Bruno Haible  <bruno@clisp.org>
55159
55160         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
55161
55162 2004-09-08  Bruno Haible  <bruno@clisp.org>
55163
55164         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
55165         length is > INT_MAX.
55166         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
55167         more.
55168
55169 2004-09-08  Bruno Haible  <bruno@clisp.org>
55170
55171         * lib/stdint_.h: New file, taken from GNU clisp.
55172
55173 2004-09-08  Bruno Haible  <bruno@clisp.org>
55174             Oskar Liljeblad  <oskar@osk.mine.nu>
55175
55176         * modules/stdint: New file.
55177         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
55178
55179 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55180
55181         Import from coreutils.
55182         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
55183         strings on unbounded length.  alloca's performance benefits aren't
55184         that important here.
55185         (V_STRDUP): Remove.
55186         (parse_with_separator): New function, with most of the internals
55187         of the old parse_user_spec.  Allow user to omit both user and group,
55188         for compatibility with FreeBSD.
55189         Clone only the user name, not the entire spec.
55190         Do not set *uid, *gid unless entirely successful.
55191         Avoid memory leak in some failing cases.
55192         Fix regression for USER.GROUP reported by Dmitry V. Levin in
55193         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
55194         (parse_user_spec): Rewrite to use parse_with_separator.
55195
55196 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55197
55198         * modules/userspec: Don't depend on alloca.
55199
55200 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55201
55202         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
55203
55204 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
55205
55206         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
55207         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
55208         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
55209
55210 2004-08-16  Simon Josefsson  <jas@extundo.com>
55211
55212         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
55213         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
55214         Add --dry-run for --import.
55215         Let user provided command line parameters override configure.ac
55216         settings.
55217
55218 2004-08-12  Simon Josefsson  <jas@extundo.com>
55219
55220         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
55221         as discussed with Paul Eggert in threads rooted at
55222         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
55223         and
55224         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
55225         Before, the test was empty, and relied on ELIDE_CODE in source
55226         code.)
55227         (gl_PREREQ_GETOPT): New macro.
55228         (gl_GETOPT): Use them.
55229
55230 2004-08-12  Simon Josefsson  <jas@extundo.com>
55231
55232         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
55233         * lib/getopt_.h: Renamed from getopt.h.
55234
55235 2004-08-12  Simon Josefsson  <jas@extundo.com>
55236
55237         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
55238         Change default library name from libfoo to libgnu.
55239         Now, if you have a configure.ac that says:
55240                 gl_SOURCE_BASE(gl)
55241                 gl_M4_BASE(gl/m4)
55242                 gl_MODULES(error getopt etcetera)
55243                 gl_INIT
55244         you can import all you need by running:
55245                 ../gnulib/gnulib-tool --import
55246
55247         * modules/getopt (Files): Rename getopt.h to getopt_.h.
55248         (Makefile.am): Rewrite, use logic from argz.
55249         (Include): Use <getopt.h> instead of "getopt.h".
55250
55251 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55252
55253         * modules/argp (Files): Add m4/unlocked-io.m4.
55254         (Depends-on): Add extensions.
55255
55256 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55257
55258         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
55259         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
55260         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
55261         Check for program_invocation_name, program_invocation_short_name,
55262         flockfile, funlockfile, features.h, _getopt_long_only_r.
55263
55264 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55265
55266         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
55267         its complicated substitute.
55268         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
55269         and program_invocation_name.
55270         (__argp_basename) [!_LIBC]: Remove; the only use was
55271         replaced by its body.
55272         (__argp_short_program_name): Change condition from
55273         !defined __argp_short_program_name to
55274         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
55275         to match argp-namefrob.h.
55276         (__argp_failure): Don't assume strerror_r returns char *.
55277         * lib/argp-parse.c (N_): Define unconditionally.
55278         (argp_default_options): Fill out initializers with 0 to avoid
55279         gcc warnings.
55280
55281 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55282
55283         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
55284         getopt1.c.
55285
55286 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55287
55288         Merge from coreutils.
55289
55290         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
55291
55292         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
55293         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
55294
55295 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55296
55297         Merge from coreutils.
55298
55299         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
55300         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
55301         for Reliant Unix 5.43.
55302
55303         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
55304         (union fooround): Use uintmax_t, not long int.
55305         The rest is a merge from libc:
55306         [defined _LIBC]: Include <shlib-compat.h>.
55307         (_obstack) [defined _LIBC]: Remove after 2.3.4.
55308
55309         * lib/settime.c (settime): Recode to avoid warning with
55310         Sun Forte C 6U2.
55311
55312         * lib/strverscmp.c: Convert to UTF-8.
55313
55314 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55315
55316         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
55317         m4/uintmax_t.m4.
55318
55319 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55320
55321         * modules/xalloc-die: New file.
55322         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
55323
55324         * modules/md5 (Files): Add m4/uint32_t.m4.
55325         * modules/sha1: Renamed from modules/sha.
55326         (Files):
55327         Rename lib/sha.h to lib/sha1.h.
55328         Rename lib/sha.c to lib/sha1.c.
55329         Rename m4/sha.m4 to m4/sha1.m4.
55330         (lib_SOURCES): Likewise.
55331         (configure.ac): Rename gl_SHA to gl_SHA1.
55332         (Include): sha.h -> sha1.h.
55333
55334 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55335
55336         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
55337         * m4/sha1.m4: Renamed from sha.m4.
55338         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
55339
55340 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55341
55342         * lib/obstack.h (obstack_empty_p):
55343         Don't assume that chunk->contents is suitably aligned.
55344         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
55345         Likewise. Problem reported by Benno in
55346         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
55347
55348         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
55349         readable.  This could be improved further but it'd take some work.
55350
55351 2004-08-08  Simon Josefsson  <jas@extundo.com>
55352
55353         * modules/xgethostname (Depends-on): Remove exit and error (not
55354         used).
55355
55356         * modules/getpass-gnu: Add getpass.h.
55357         (Depends-on): Add stdbool.
55358         * modules/getpass: Add getpass.h.
55359
55360 2004-08-08  Simon Josefsson  <jas@extundo.com>
55361
55362         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
55363         Check getpass declaration.
55364
55365 2004-08-08  Simon Josefsson  <jas@extundo.com>
55366
55367         * lib/xgethostname.c: Don't include error.h (not used).
55368
55369         * lib/getpass.h: Add.
55370         * lib/getpass.c: Include getpass.h first.
55371
55372 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
55373
55374         * lib/xalloc-die.c: New file.
55375         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
55376         All uses removed.
55377         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
55378         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
55379         xalloc-die.c.
55380         (_, N_, xalloc_die): Move to xalloc-die.c.
55381         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
55382         so that we needn't mess with xalloc_msg_memory_exhausted.
55383
55384         * lib/sha1.h: Renamed from sha.h.
55385         (SHA1_H): Renamed from _SHA_H.
55386         (sha1_ctx): Renamed from sha_ctx.
55387         (sha1_init_ctx): Renamed from sha_init_ctx.
55388         (sha1_process_block): Renamed from sha_process_block.
55389         (sha1_process_bytes): Renamed from sha_process_bytes.
55390         (sha1_finish_ctx): Renamed from sha_finish_ctx.
55391         (sha1_read_ctx): Renamed from sha_read_ctx.
55392         (sha1_stream): Renamed from sha_stream.
55393         (sha1_buffer): Renamed from sha_buffer.
55394         * lib/sha1.c: Likewise; renamed from sha.c.
55395         Do not include <sys/types.h>.
55396         Include <stddef.h> rather than <stdlib.h>.
55397
55398 2004-08-08  Bruno Haible  <bruno@clisp.org>
55399
55400         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
55401         FILESYSTEM_PREFIX_LEN.
55402         * lib/progreloc.c: Likewise.
55403         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
55404
55405 2004-08-06  Simon Josefsson  <jas@extundo.com>
55406
55407         * modules/progname (Depends-on): Don't depend on stdbool.
55408
55409 2004-08-06  Simon Josefsson  <jas@extundo.com>
55410
55411         * modules/getsubopt: New file.
55412         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55413         getsubopt.
55414
55415 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55416
55417         More merge from coreutils.
55418
55419         * m4/utimens.m4, m4/utimecmp.m4: New files.
55420         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
55421         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
55422         prereq.m4, sha.m4: Import changes from coreutils.
55423
55424 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55425
55426         More merge from coreutils.
55427         * modules/raise, modules/readtokens0, modules/utimens:
55428         * modules/utimecmp, module/xnanosleep: New files.
55429         * modules/strftime: Add lib/strftime.h.
55430         Change include from <time.h> to "strftime.h".
55431         * modules/yesno: Add lib/yesno.h.
55432         * modules/backupfile: Remove lib/addext.c.
55433         * modules/euidaccess: Add stat-macros.h.
55434         * modules/canonicalize, modules/euidaccess,
55435         modules/filemode, modules/lchown, modules/makepath,
55436         modules/rmdir, modules/stat: Likewise.
55437
55438 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55439
55440         Merge from tar.
55441         * lib/argp-help.c (make_hol, hol_append): Don't assume that
55442         SIZE_MAX is a valid preprocessor constant.
55443         (__argp_basename): Change from "#ifndef _LIBC"
55444         to "#ifndef __argp_short_program_name", so that
55445         we don't compile these functions for tar.
55446
55447         More merges from coreutils.
55448         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
55449         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
55450         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
55451         * lib/addext.c: Remove; no longer needed.
55452         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
55453         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
55454         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
55455         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
55456         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
55457         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
55458         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
55459         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
55460         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
55461         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
55462         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
55463         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
55464         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
55465         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
55466         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
55467         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
55468         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
55469         Import changes from coreutils.
55470
55471 2004-08-05  Simon Josefsson  <jas@extundo.com>
55472
55473         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
55474
55475 2004-08-05  Simon Josefsson  <jas@extundo.com>
55476
55477         * m4/getsubopt.m4: New file.
55478
55479 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55480
55481         Merge from coreutils.
55482
55483         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
55484         * m4/getcwd-path-max.m4: New files.
55485
55486         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
55487         FILESYSTEM_PREFIX_LEN ->
55488         FILE_SYSTEM_PREFIX_LEN.
55489         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
55490         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
55491         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
55492         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
55493
55494         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
55495         prerequisite modules now handle the DOS stuff.
55496         Don't check for unistd.h.
55497
55498 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55499
55500         Merge from coreutils.
55501
55502         * lib/.gdb-history: Remove; this doesn't belong here.
55503
55504         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
55505         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
55506         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
55507         * lib/getcwd.c: New files.
55508
55509         * lib/dirname.h: Include <stdbool.h>.
55510         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
55511         for consistency with POSIX terminology.  All uses changed.
55512         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
55513         (strip_trailing_slashes): Use bool for booleans.
55514         * lib/stripslash.c (strip_trailing_slashes): Likewise.
55515
55516         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
55517         sometimes returns a positive errno value even when it succeeds.
55518         (print_errno_message) [!LIBC]: Fall back on strerror if
55519         __strerror_r fails.
55520
55521         * lib/path-concat.c (mempcpy): Don't define if a system header defines
55522         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
55523         (longest_relative_suffix): New function.
55524         (path_concat): Use it.  Assume first argument is not NULL.
55525         Port to DOS.  Omit redundant separators.
55526         Report an error instead of returning NULL.
55527         Use mempcpy instead of memcpy.
55528         (xpath_concat): Remove: not declared or used.
55529
55530         * lib/same.h: Include <stdbool.h>
55531         (same_name): Return bool, not int.
55532         * lib/same.c (same_name): Likewise.
55533         (errno): Don't declare; we assume C89 or better now.
55534
55535         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
55536         if not already defined.
55537
55538         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
55539         * lib/dup-safer.c (errno): Likewise.
55540
55541 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55542
55543         Merge from coreutils.
55544         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
55545         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
55546         * modules/path-concat: Don't depend on strdup.
55547
55548 2004-08-03  Simon Josefsson  <jas@extundo.com>
55549
55550         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
55551         * lib/progname.h: Don't include stdbool.h.
55552
55553 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55554
55555         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
55556         * MODULES.html.sh (func_all_modules): Remove fatal.
55557
55558 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55559
55560         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
55561
55562 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55563
55564         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
55565         working.
55566
55567 2004-08-02  Simon Josefsson  <jas@extundo.com>
55568
55569         * lib/getsubopt.h: New file, with comments from Bruno Haible.
55570         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
55571         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
55572
55573 2004-08-01  Simon Josefsson  <jas@extundo.com>
55574
55575         * lib/xgetdomainname.c: Include stdlib.h, for free().
55576
55577 2004-07-19  Bruno Haible  <bruno@clisp.org>
55578
55579         * MODULES.html.sh (func_all_modules): Add dummy.
55580
55581 2004-07-16  Simon Josefsson  <jas@extundo.com>
55582
55583         * modules/dummy: New file.
55584
55585 2004-07-16  Simon Josefsson  <jas@extundo.com>
55586
55587         * lib/dummy.c: New file.
55588
55589 2004-07-16  Bruno Haible  <bruno@clisp.org>
55590
55591         * lib/backupfile.h: Add extern "C" for C++.
55592         * lib/closeout.h: Likewise.
55593         * lib/copy-file.h: Likewise.
55594         * lib/findprog.h: Likewise.
55595         * lib/full-write.h: Likewise.
55596         * lib/pathname.h: Likewise.
55597         * lib/progname.h: Likewise.
55598         * lib/stpcpy.h: Likewise.
55599         * lib/stpncpy.h: Likewise.
55600         * lib/strcase.h: Likewise.
55601         * lib/strstr.h: Likewise.
55602         * lib/xalloc.h: Likewise.
55603
55604         * lib/mbswidth.h: Add extern "C" for C++.
55605         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
55606
55607 2004-07-13  Robert Millan  <robertmh@gnu.org>
55608
55609         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
55610
55611 2004-07-09  Simon Josefsson  <jas@extundo.com>
55612
55613         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
55614         failed without this.)
55615
55616 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
55617
55618         * modules/chown (Files): Add lib/fchown-stub.c, since
55619         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
55620
55621 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
55622
55623         * lib/fchown-stub.c: New file.
55624
55625 2004-06-24  Jim Meyering  <jim@meyering.net>
55626
55627         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
55628
55629 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55630
55631         * modules/argz: Omit "#include".
55632
55633         * MODULES.html.sh (func_all_modules): Add calloc, to match
55634         2004-06-01 addition of calloc module.
55635
55636 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55637
55638         * m4/argz.m4: New file, which is autoupdated from libtool.
55639
55640 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55641
55642         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
55643         libtool.
55644
55645 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55646
55647         * config/srclist-update: Don't insist on "USA." before the
55648         close-comment, as libtool omits the period and puts the */ on a
55649         separate line.
55650         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
55651         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
55652
55653 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
55654
55655         * modules/argz: New file.
55656         * MODULES.html.sh (func_all_modules): Add argz.
55657
55658 2004-06-12  Jim Meyering  <jim@meyering.net>
55659         and  Paul Eggert  <eggert@cs.ucla.edu>
55660
55661         * modules/hash (Files): Add lib/xalloc.h.
55662         * modules/pipe (Depends-on): Add wait-process.
55663         * modules/stat (Depends-on): Add xalloc.
55664         * modules/userspec (Files): Add lib/userspec.h.
55665         * modules/xstrto
55666
55667         Upgrade from gettext-0.13.
55668         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
55669         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
55670         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
55671
55672 2004-06-10  Jim Meyering  <jim@meyering.net>
55673
55674         * lib/calloc.c: New file.
55675
55676 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
55677
55678         * lib/getdate.y (yylex): Allow space between sign and number.
55679         Problem reported by Dan Jacobson.
55680
55681 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55682
55683         Merge from coreutils CVS.
55684
55685         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
55686         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
55687         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
55688         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
55689         xstrtol.m4: Fix copyright date and/or serial number.
55690
55691         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
55692         See if we need an fchown replacement.
55693         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
55694         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
55695         and use the replacement function if we detect either defect.
55696
55697         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
55698         gl_UTIMECMP.
55699
55700 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55701         and  Jim Meyering  <jim@meyering.net>
55702
55703         Merge from coreutils CVS.
55704
55705         * lib/stat-macros.h: New file, with contents from file-type.h
55706         and coreutils' system.h.
55707         * lib/file-type.c: Include "stat-macros.h".
55708         * lib/file-type.h (file_type): Move all macro definitions to new file,
55709         stat-macros.h.
55710
55711         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
55712         Wrap old code with this conditional.
55713         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
55714         function that does not dereference symlinks.
55715         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
55716
55717         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
55718         dependency problems.
55719         (xreadlink): Accept new arg SIZE, for efficiency.
55720         All decls and uses changed.
55721         * lib/xreadlink.h: Include <stddef.h>, for size_t.
55722
55723         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
55724         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
55725
55726         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
55727         sysexits.h.
55728
55729 2004-06-01  Jim Meyering  <jim@meyering.net>
55730
55731         * m4/calloc.m4: New file.
55732
55733 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
55734
55735         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
55736         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
55737         Also, fix a typo in a diagnostic.
55738
55739 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55740
55741         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
55742         or AC_FUNC_REALLOC.
55743
55744 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55745
55746         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
55747         macros to be defined.
55748         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
55749         the allocator returns NULL because the requested size is zero.
55750
55751 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
55752
55753         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
55754         var.  Add comment explaining why libc still defines it.  This
55755         merges the following patch from glibc:
55756         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
55757
55758 2004-05-20  Andreas Schwab  <schwab@suse.de>
55759
55760         * m4/free.m4: Replace free if it not known to work, not the other
55761         way round.
55762
55763 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
55764
55765         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
55766         present in glibc since revision 1.1 of this file.
55767         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
55768         obstack_alignment_mask, obstack_alloc, obstack_base,
55769         obstack_blank, obstack_blank_fast, obstack_chunk_size,
55770         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
55771         obstack_grow0, obstack_init, obstack_int_grow,
55772         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
55773         obstack_next_free, obstack_object_size, obstack_ptr_grow,
55774         obstack_ptr_grow_fast, obstack_room): Remove declarations of
55775         nonexistent functions.
55776
55777 2004-05-18  Karl Berry  <karl@gnu.org>
55778
55779         * config/srclist.txt: break link for vasnprintf.c.
55780
55781 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55782
55783         Port obstack to the AS/400, where pointers are 16 bytes wide and
55784         you cannot cast an integer to a valid pointer.  This patch is
55785         currently waiting to be integrated into glibc; see
55786         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
55787
55788         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
55789         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
55790         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
55791         (struct obstack): temp member is now a union of a pointer and
55792         an integer, instead of an integer.  All integer uses changed.
55793         This does not affect the physical layout of struct obstack,
55794         except on hosts (like the AS/400) where the size or alignment of
55795         void * is greater than that of ptrdiff_t.
55796         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
55797         __STDC__)]: Store temporary in pointer member of union, not
55798         integer member.
55799         * lib/obstack.c: Include <stddef.h>, for offsetof.
55800         (struct fooalign): Remove; it doesn't need a name.
55801         (union fooround): Change double to long double, and add void *.
55802         (DEFAULT_ALIGNMENT): Use offsetof to compute.
55803         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
55804         not a macro.  Hence the values are always int; so remove all
55805         casts-to-int in uses.
55806
55807 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55808
55809         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
55810         we can get this patch merged into glibc.
55811
55812 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55813             Paul Eggert  <eggert@cs.ucla.edu>
55814
55815         * m4/argp: Depend on alloca.
55816
55817 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55818             Paul Eggert  <eggert@cs.ucla.edu>
55819
55820         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
55821         freecoding.
55822
55823 2004-05-17  Bruno Haible  <bruno@clisp.org>
55824
55825         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
55826         precision that consists of a '.' followed by an empty digit string.
55827         Patch by Tor Lillqvist <tml@iki.fi>.
55828
55829 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55830
55831         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
55832         for backward compatibility with older code.  We need our own
55833         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
55834         it under some other name, and our alloca.h will define it.
55835
55836 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55837             Derek Price  <derek@ximbiot.com>
55838
55839         * lib/alloca.c: Include <alloca.h>, to get our interface.
55840         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
55841         include <alloca.h> first.  Use C89 prototype for alloca; this
55842         requires including <stddef.h> for size_t.  Use extern "C" if C++.
55843         Use #elif for simplicity, since we can assume C89 now.
55844         Don't try to source the system alloca.h since it will not be found
55845         and to prevent recursively including its replacement.
55846         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
55847         * lib/regex.c: Likewise.
55848
55849 2004-05-16  Derek Price  <derek@ximbiot.com>
55850             Paul Eggert  <eggert@cs.ucla.edu>
55851
55852         getline cleanup.  This changes the getndelim2 API: both order of
55853         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
55854         no delimiter).
55855
55856         * lib/getline.c: Don't include stddef.h or stdio.h, since our
55857         interface does that.
55858         (getline): Always use getdelim, so that we don't have two
55859         copies of this code.
55860         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
55861         if available.
55862         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
55863         (GETNDELIM2_MAXIMUM): New macro.
55864         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
55865         instead of the old practice of delim2==0.  All callers changed.
55866         Return -1 on overflow, instead of returning junk.
55867         Do not set *linesize unless allocation succeeds.
55868         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
55869         that we include sys/types.h.
55870         * lib/getnline.h: Likewise.
55871         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
55872         (getndelim2): Reorder arguments.
55873         * lib/getnline.c (getnline, getndelim):
55874         Don't discard the NMAX argument.
55875         (getnline): Invoke getndelim, to avoid code duplication.
55876         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
55877         of (size_t) -1 by callers of the getnline family.
55878
55879 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55880
55881         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
55882         Check for gettimeofday.
55883         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
55884         Check for settimeofday, stime.
55885
55886 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55887
55888         * lib/nanosleep.c (suspended): Change its type from int to
55889         sig_atomic_t volatile.
55890         (first_call): Make it private to rpl_nanosleep, and have it
55891         be zero initially as that's a bit faster.
55892         (my_usleep): Round up fractional times instead of truncating them,
55893         as this is the usual meaning for 'sleep'.
55894
55895         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
55896         doesn't work.
55897         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
55898         (ENOSYS): Define if not defined.
55899         (settime): Fall back on stime if it exists and settimeofday fails.
55900         But don't bother with fallbacks if a method fails with errno == EPERM.
55901
55902 2004-05-11  Jim Meyering  <jim@meyering.net>
55903
55904         Prior to this change, the save_cwd caller required read access to the
55905         current directory on most systems (ones with the fchdir function).
55906
55907         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
55908         fails, try write-only, and finally, resort to using xgetcwd.
55909
55910 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
55911
55912         * lib/obstack.c, obstack.h: Import changes from libc.
55913
55914 2004-04-28  Bruno Haible  <bruno@clisp.org>
55915
55916         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
55917         also implicitly appends .exe to executables.
55918         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
55919         accepts Windows pathnames.
55920         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55921         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55922         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55923         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55924         Reported by Derek Robert Price <derek@ximbiot.com>.
55925
55926 2004-04-21  Karl Berry  <karl@gnu.org>
55927
55928         * config/srclist.txt (localcharset.c): break sync.
55929
55930 2004-04-20  Paul Eggert  <eggert@twinsun.com>
55931
55932         * m4/host-os.m4: Add a copyright notice.
55933
55934 2004-04-20  Jim Meyering  <jim@meyering.net>
55935
55936         Change UTILS_ to gl_ in AC_DEFINE'd names.
55937         Change utils_- and jm_-prefixed variables, too.
55938         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
55939         UTILS_FUNC_MKDIR_TRAILING_SLASH.
55940         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
55941
55942         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
55943         Don't emit trailing blanks.
55944         Also rename jm_-prefixed variables to have gl_ prefix.
55945
55946         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
55947         Also rename jm_-prefixed variables to have gl_ prefix.
55948
55949         * m4/jm-macros.m4: Reflect the renamings.
55950         * m4/prereq.m4: Likewise.
55951
55952 2004-04-20  Jim Meyering  <jim@meyering.net>
55953
55954         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
55955         memory.
55956
55957 2004-04-20  Jim Meyering  <jim@meyering.net>
55958             Bruno Haible  <bruno@clisp.org>
55959
55960         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
55961         memory when realloc fails.
55962
55963 2004-04-19  Jim Meyering  <jim@meyering.net>
55964
55965         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
55966         now that readutmp.c may call `free (0)'.
55967
55968 2004-04-19  Bruno Haible  <bruno@clisp.org>
55969
55970         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
55971         * m4/inttypes_h.m4: Likewise.
55972         * m4/stdint_h.m4: Likewise.
55973         * m4/intmax_t.m4: Likewise.
55974         * m4/uintmax_t.m4: Likewise.
55975
55976 2004-04-18  Jim Meyering  <jim@meyering.net>
55977
55978         * m4/prereq.m4: Don't forbid jm_ prefix.
55979
55980         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
55981         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
55982         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
55983         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
55984         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
55985         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
55986         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
55987         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
55988         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
55989         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
55990         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
55991         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
55992         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
55993         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
55994         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
55995         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
55996         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
55997         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
55998         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
55999
56000 2004-04-18  Jim Meyering  <jim@meyering.net>
56001
56002         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
56003         failure, don't leak memory and do call END_UTMP_ENT.
56004
56005 2004-04-16  Jim Meyering  <jim@meyering.net>
56006
56007         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
56008         coreutils' stat program.
56009         (gl_PREREQ): Don't require jm_PREREQ_STAT.
56010
56011 2004-04-11  Paul Eggert  <eggert@twinsun.com>
56012
56013         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
56014         C89.
56015         (CHAR_BIT): Remove, since we assume C89.
56016         Include <stdint.h> if available, as per current Autoconf CVS advice.
56017
56018 2004-03-31  Jim Meyering  <jim@meyering.net>
56019
56020         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
56021         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
56022         * m4/xalloc.m4: Likewise.
56023
56024 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56025
56026         Merge from coreutils.
56027
56028         * m4/inttostr.m4: New file.
56029         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
56030         Require AM_STDBOOL_H and gl_TIMESPEC instead.
56031         Require gl_CLOCK_TIME.
56032         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
56033
56034 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56035
56036         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
56037         not bool, to be more consistent with Unix conventions.
56038         Suggested by Bruno Haible.
56039
56040         Merge from coreutils.
56041
56042         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
56043         * lib/umaxtostr.c: New files.
56044
56045         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
56046         the usual <time.h> dance.
56047         (get_date): Change signature to support fractional time stamps.
56048         All callers changed.
56049         * lib/getdate.y: Include "getdate.h" first, as we can now
56050         assume C89 and don't need to worry about 'const'.
56051         Similarly, include "unlocked-io.h" near start, not in middle.
56052         Include <limits.h>.
56053         (textint.value): Use long int rather than int.
56054         (textint.digits): Use size_t rather than int.
56055         (BILLION, LOG10_BILLION): New constants.
56056         (parser_control): New member rel_ns.  Members day_ordinal,
56057         time_zone, month, day, hour, minutes, rel_year, rel_month,
56058         rel_day, rel_hour, rel_minutes, rel_seconds
56059         are now long int, not int.  Member seconds is now struct timespec,
56060         not int.  New member timespec_seen.  Members dates_seen, days_seen,
56061         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
56062         not int.
56063         (%union.intval): Now long int, not int.
56064         New member timespec.
56065         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
56066         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
56067         (spec): Now is a timespec or an item list.
56068         (timespec, items): New nonterminals.
56069         (time, rel, relunit, number, get_date):
56070         Add support for fractional seconds.
56071         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
56072         (gmtime, localtime, mktime): Remove decls; not needed with C89.
56073         (to_hour): First arg is now long int, not int.
56074         (to_year): Returns long int, not int.
56075         Don't treat year -70 like 70.
56076         (tm_diff): Returns long int, not int.
56077         (lookup_word): Use bool instead of int when appropriate.
56078         (yylex): Use size_t for count, not int.
56079         Detect overflow when parsing large integer constants.
56080         Add support for fractions.
56081         (get_date): Make pointers 'const' if possible.
56082         Use more-portable code to detect integer overflow.
56083         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
56084         Don't use ctime; it's not reliable if the year has >4 digits.
56085
56086         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
56087         This is for compatibility with BSD.
56088
56089         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
56090         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
56091         From coreutils' system.h.
56092
56093         * lib/userspec.c: Don't include "posixver.h".
56094         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
56095         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
56096         compatible extension.  Simplify code by removing a boolean int
56097         that was always nonzero if a string was nonnull.
56098
56099 2004-03-30  Jim Meyering  <jim@meyering.net>
56100
56101         Merge from coreutils.
56102
56103         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
56104         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
56105         on some systems one must include <grp.h> before it.
56106         Reported by Christian Krackowizer.
56107
56108 2004-03-30  Jim Meyering  <jim@meyering.net>
56109
56110         Merge from coreutils.
56111
56112         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
56113
56114         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
56115         an empty input stream.
56116
56117         * lib/readtokens.c: Include <stdbool.h>.
56118         (readtoken): Use `size_t' rather than int/long.
56119         All callers adjusted.
56120         Use `bool' rather than `int' where appropriate.
56121         Use memset rather than an explicit loop.
56122         Use x2nrealloc rather than xrealloc.
56123         Allow the use of `\0' as a delimiter.
56124         (readtokens): Likewise.
56125         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
56126
56127 2004-03-30  Jim Meyering  <jim@meyering.net>
56128
56129         * m4/realloc.m4: Remove file, since now it does no more than
56130         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
56131         the `configure.ac' section of module/realloc.
56132         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
56133
56134 2004-03-30  Bruno Haible  <bruno@clisp.org>
56135
56136         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
56137         nonnull.
56138
56139 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56140
56141         Merge changes to getloadavg.c from coreutils and Emacs.
56142
56143         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
56144         Define to an expression, not to the empty string.
56145         Include cloexec.h and xalloc.h.
56146         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
56147         Use set_cloexec_flag rather than rolling our own.
56148         * lib/cloexec.c, lib/cloexec.h: New files.
56149
56150 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56151
56152         * m4/cloexec.m4: New file.
56153
56154 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56155
56156         * lib/getopt.h: Sync with libc CVS.
56157
56158 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56159             Bruno Haible  <bruno@clisp.org>
56160
56161         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
56162         mbswidth.
56163
56164 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56165             Bruno Haible  <bruno@clisp.org>
56166
56167         * lib/mbswidth.h: Include <wchar.h> only if
56168         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
56169         <wchar.h>.
56170         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
56171
56172 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56173
56174         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
56175         Sync with libc CVS.
56176         * lib/getopt_int.h: New file, also synced from libc.
56177
56178 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56179
56180         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
56181         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
56182         Bring back getopt.c, getopt.h, getopt1.c.
56183
56184 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56185
56186         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
56187         All uses changed.  Check for sa_sigaction member; this fixes
56188         a bug first reported by Jason Andrade in
56189         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56190
56191 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56192
56193         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
56194         '#if' expressions.  Unlike the code it replaces, it does not
56195         depend on (defined _SC_PAGESIZE).  However, it does depend on
56196         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
56197         first reported by Jason Andrade in
56198         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56199
56200 2004-02-25  Simon Josefsson  <jas@extundo.com>
56201
56202         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
56203
56204 2004-02-25  Simon Josefsson  <jas@extundo.com>
56205
56206         * lib/strdup.h: New file.
56207         * lib/strdup.c: Include it.
56208         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
56209         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
56210
56211 2004-02-23  Karl Berry  <karl@gnu.org>
56212
56213         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
56214         (from fencepost.gnu.org:/gd/gnuorg).
56215
56216 2004-02-23  Karl Berry  <karl@gnu.org>
56217
56218         * config/srclistvars.sh (GNUORG) [karl]: redefine.
56219         * config/srclist.txt: add maintain/standards documents.
56220
56221 2004-02-18  Bruno Haible  <bruno@clisp.org>
56222
56223         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
56224         Reported by Derek Robert Price <derek@ximbiot.com>.
56225
56226 2004-02-16  Karl Berry  <karl@gnu.org>
56227
56228         * config/mkinstalldirs, install-sh: update from automake.
56229
56230 2004-02-06  Karl Berry  <karl@gnu.org>
56231
56232         * m4/po.m4: update from gettext 0.14.1.
56233
56234 2004-02-06  Karl Berry  <karl@gnu.org>
56235
56236         * lib/config.charset: update from gettext 0.14.1.
56237
56238 2004-02-05  Paul Eggert  <eggert@twinsun.com>
56239
56240         Add comments and code, prompted by suggestions from Bruno Haible
56241         for sh-quote.
56242         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
56243         describing the enum quoting_style values.
56244         * lib/quotearg.c (quotearg_alloc): New function.
56245         (quotearg_buffer_restyled): Treat lone { and } as special.
56246         Treat = as special.  Work around bug with older shells
56247         that "see" a '\' that is really the 2nd byte of a multibyte char.
56248         Quote empty string with shell_quoting_style.
56249
56250 2004-02-03  Bruno Haible  <bruno@clisp.org>
56251
56252         * m4/pipe.m4: New file, from GNU gettext.
56253
56254 2004-02-03  Bruno Haible  <bruno@clisp.org>
56255
56256         * lib/pipe.h: New file, from GNU gettext.
56257         * lib/pipe.c: New file, from GNU gettext.
56258
56259 2004-01-27  Bruno Haible  <bruno@clisp.org>
56260
56261         * m4/execute.m4: New file, from GNU gettext.
56262
56263 2004-01-27  Bruno Haible  <bruno@clisp.org>
56264
56265         * lib/execute.h: New file, from GNU gettext.
56266         * lib/execute.c: New file, from GNU gettext.
56267         * lib/w32spawn.h: New file, from GNU gettext.
56268
56269 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56270
56271         Merge from diffutils.
56272
56273         * lib/file-type.c (file_type): Add typed memory objects.
56274         * lib/file-type.h (S_TYPEISTMO): New macro.
56275
56276         * lib/c-stack.h (c_stack_action): Remove argv argument.
56277         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
56278         (die): Don't calculate message unless segv_action returns.
56279         (get_stack_location, min_address_from_argv, max_address_from_argv,
56280         volatile stack_base, volatile_stack_size): Remove.
56281         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
56282         that every segmentation violation is a stack overflow.  (Ouch!)
56283         See Debian bug 136249 (still outstanding) for more info about why
56284         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
56285
56286 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56287
56288         Exit-status fix from coreutils.
56289
56290         Use exit_failure consistently in place of EXIT_FAILURE,
56291         so that program exit statuses are consistent on failure.
56292
56293         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
56294         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
56295         * lib/argmatch.h: Comment fix to match the above.
56296         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
56297         Now a macro referring to exit_failure, instead of a separate
56298         variable.  Include "exitfail.h" to get it.
56299         * lib/xstrtol.h: Include "exitfail.h".
56300         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
56301
56302         * lib/long-options.c (parse_long_options): Use prototype
56303         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
56304         for clarity.
56305
56306 2004-01-21  Jim Meyering  <jim@meyering.net>
56307
56308         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
56309         so as not to conflict with a different-sized __mktime_internal
56310         function in GNU libc.
56311         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
56312         Problem building statically-linked `ls' reported by Michael Brunnbauer.
56313
56314 2004-01-20  Karl Berry  <karl@gnu.org>
56315
56316         * config/config.guess: update from config.
56317
56318         * config/srclistvars.sh: GNUWWWLICENSES for karl.
56319
56320 2004-01-20  Bruno Haible  <bruno@clisp.org>
56321
56322         Safer stack allocation.
56323         * lib/setenv.c: Include allocsa.h.
56324         (alloca): Remove fallback definition.
56325         (freea): Remove macro.
56326         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
56327         instead of freea.
56328
56329 2004-01-20  Bruno Haible  <bruno@clisp.org>
56330
56331         * m4/eealloc.m4: New file, from GNU gettext.
56332
56333 2004-01-20  Bruno Haible  <bruno@clisp.org>
56334
56335         * m4/allocsa.m4: New file, from GNU gettext.
56336
56337 2004-01-20  Bruno Haible  <bruno@clisp.org>
56338
56339         * lib/xallocsa.h: New file, from GNU gettext.
56340         * lib/xallocsa.c: New file, from GNU gettext.
56341
56342 2004-01-20  Bruno Haible  <bruno@clisp.org>
56343
56344         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
56345
56346 2004-01-20  Bruno Haible  <bruno@clisp.org>
56347
56348         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
56349         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
56350         specially.
56351
56352 2004-01-20  Bruno Haible  <bruno@clisp.org>
56353
56354         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
56355         patch.
56356
56357 2004-01-20  Bruno Haible  <bruno@clisp.org>
56358
56359         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
56360
56361 2004-01-20  Bruno Haible  <bruno@clisp.org>
56362
56363         * lib/eealloc.h: New file.
56364
56365 2004-01-20  Bruno Haible  <bruno@clisp.org>
56366
56367         * lib/binary-io.h: Avoid warnings on Cygwin.
56368
56369 2004-01-20  Bruno Haible  <bruno@clisp.org>
56370
56371         * lib/allocsa.h: New file, from GNU gettext.
56372         * lib/allocsa.c: New file, from GNU gettext.
56373
56374 2004-01-18  Karl Berry  <karl@gnu.org>
56375
56376         * doc/gpl.texi, doc/lgpl.texi: new files.
56377
56378 2004-01-18  Karl Berry  <karl@gnu.org>
56379
56380         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
56381         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
56382
56383 2004-01-15  Paul Eggert  <eggert@twinsun.com>
56384
56385         Merge from coreutils.
56386
56387         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
56388         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
56389         (gl_DEFAULT_POSIX2_VERSION): Move
56390         the documentation from 'configure' into 'config.hin',
56391         so that 'configure --help' isn't burdened by it and
56392         we don't have to worry about its formatting there.
56393         Reword the documentation so that it's more succinct
56394         and can be run together into a single paragraph.
56395         * m4/same.m4 (gl_SAME): Check for pathconf.
56396
56397 2004-01-15  Paul Eggert  <eggert@twinsun.com>
56398
56399         Merge from coreutils.
56400
56401         * lib/posixver.c: Include posixver.h.
56402
56403         * lib/same.c: Include <stdbool.h>, <limits.h>.
56404         (_POSIX_NAME_MAX): Define if not defined.
56405         (MIN): New macro.
56406         (same_name): If file names are silently truncated, report
56407         that the file names are the same if they are the same after
56408         the silent truncation.
56409
56410         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
56411         conversion function.
56412         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
56413         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
56414         longer needed.
56415
56416 2004-01-15  Jim Meyering  <jim@meyering.net>
56417
56418         Merge from coreutils.
56419
56420         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
56421         if no library is required.
56422         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
56423         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
56424         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
56425         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
56426         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
56427         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
56428         value, $ac_cv_search_crypt, if it's "none required".
56429         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
56430         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
56431         not gl_FUNC_GETLOADAVG.
56432         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
56433         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
56434
56435 2004-01-15  Jim Meyering  <jim@meyering.net>
56436
56437         Merge from coreutils.
56438
56439         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
56440         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
56441         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
56442
56443         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
56444         optional configure-time default.
56445
56446         * lib/version-etc.c (version_etc_copyright): Update copyright date.
56447
56448         * lib/xreadlink.c (xreadlink): Correct outdated comment.
56449
56450 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
56451
56452         Merge from coreutils.
56453
56454         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
56455         value, $ac_cv_search_nanosleep, if it's "none required".
56456
56457 2004-01-14  Paul Eggert  <eggert@twinsun.com>
56458
56459         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
56460         with like-named macro in fnmatch.c.
56461         (EXT): Use an internal constant instead.
56462
56463         Merge fnmatch patches from glibc.
56464         * lib/fnmatch.c (mbsinit): Remove define.
56465         Add libc_hidden_ver (__fnmatch, fnmatch).
56466         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
56467         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
56468
56469 2004-01-14  Karl Berry  <karl@gnu.org>
56470
56471         * config/install-sh: update from automake.
56472
56473 2004-01-13  Karl Berry  <karl@gnu.org>
56474
56475         * config/install-sh: update from automake.
56476
56477 2004-01-09  Karl Berry  <karl@gnu.org>
56478
56479         * config/install-sh: update from automake.
56480
56481 2004-01-05  Karl Berry  <karl@gnu.org>
56482
56483         * config/config.{sub,guess}: update from config.
56484
56485 2003-12-31  Karl Berry  <karl@gnu.org>
56486
56487         * config/depcomp: update from automake.
56488
56489 2003-12-14  Karl Berry  <karl@gnu.org>
56490
56491         * lib/config.charset: update from gettext-runtime.
56492
56493 2003-12-03  Paul Eggert  <eggert@twinsun.com>
56494
56495         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
56496         Bug reported by Alfred M. Szmidt.
56497
56498 2003-12-03  Bruno Haible  <bruno@clisp.org>
56499
56500         * m4/gettext.m4: Upgrade from gettext-0.13.
56501         * m4/po.m4: Upgrade from gettext-0.13.
56502         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
56503         * m4/intmax.m4: New file, from gettext-0.13.
56504         * m4/printf-posix.m4: New file, from gettext-0.13.
56505
56506 2003-11-29  Karl Berry  <karl@gnu.org>
56507
56508         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
56509
56510 2003-11-25  Paul Eggert  <eggert@twinsun.com>
56511             Bruno Haible  <bruno@clisp.org>
56512
56513         * lib/printf-parse.h: Don't include sys/types.h.
56514         (ARG_NONE): New macro.
56515         (char_directive): Change type of *arg_index fields to size_t.
56516         * lib/printf-parse.c: Don't include sys/types.h.
56517         (SSIZE_MAX): Remove macro.
56518         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
56519         Remove unnecessary overflow check.
56520         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
56521         fields.
56522
56523 2003-11-25  Bruno Haible  <bruno@clisp.org>
56524
56525         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
56526
56527 2003-11-25  Bruno Haible  <bruno@clisp.org>
56528
56529         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
56530         gt_TYPE_SSIZE_T.
56531
56532 2003-11-24  Paul Eggert  <eggert@twinsun.com>
56533
56534         * modules/alloca: Remove dependency on xalloc.
56535
56536 2003-11-24  Paul Eggert  <eggert@twinsun.com>
56537
56538         * lib/alloca.c: Remove dependency on xalloc module.
56539         (xalloc_die): Remove.
56540         (memory_full) [!defined emacs]: New macro.
56541         [!defined emacs]: Don't include xalloc.h.
56542         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
56543         address arithmetic overflows.  Change datatypes a bit to avoid
56544         unnecessary casts.
56545
56546 2003-11-22  Jim Meyering  <jim@meyering.net>
56547
56548         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
56549         s/size/size_t/.
56550
56551 2003-11-21  Karl Berry  <karl@gnu.org>
56552
56553         * config/config.{sub,guess}: update from config.
56554
56555 2003-11-18  Karl Berry  <karl@gnu.org>
56556
56557         * config/config.{sub,guess}: update from config.
56558
56559         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
56560
56561 2003-11-17  Paul Eggert  <eggert@twinsun.com>
56562
56563         * README: Mention that S+T cannot overflow if S is the size of
56564         an existing object and T is sufficiently small.
56565
56566 2003-11-17  Jim Meyering  <jim@meyering.net>
56567
56568         On systems without utime and without a utimes function capable of
56569         dealing with a NULL struct utimbuf* argument, this utime replacement
56570         could -- in unusual circumstances -- leak a file descriptor.
56571         * lib/utime.c: Include <unistd.h> and <errno.h>.
56572         (utime_null): Be sure to close `fd' and to preserve errno.
56573         Reported by Geoff Collyer via Arnold Robbins.
56574
56575 2003-11-17  Bruno Haible  <bruno@clisp.org>
56576
56577         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
56578         (Depends-on): Add xsize.
56579
56580 2003-11-17  Bruno Haible  <bruno@clisp.org>
56581
56582         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
56583
56584 2003-11-17  Bruno Haible  <bruno@clisp.org>
56585
56586         * lib/vasnprintf.c (alloca): Remove fallback definition.
56587         (freea): Remove definition.
56588         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
56589         Reported by Paul Eggert.
56590
56591 2003-11-16  Paul Eggert  <eggert@twinsun.com>
56592             Bruno Haible  <bruno@clisp.org>
56593
56594         Protect against address arithmetic overflow.
56595         * lib/printf-args.h: Include stddef.h.
56596         (arguments): Change type of field 'count' to size_t.
56597         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
56598         'unsigned int' where appropriate.
56599         * lib/printf-parse.h: Include sys/types.h.
56600         (char_directive): Change type of *arg_index fields to ssize_t.
56601         (char_directives): Change type of fields 'count', max_*_length to
56602         size_t.
56603         * lib/printf-parse.c: Include sys/types.h and xsize.h.
56604         (SSIZE_MAX): Define fallback value.
56605         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
56606         instead of 'int' where appropriate. Check a_allocated, d_allocated
56607         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
56608         * lib/vasnprintf.c: Include xsize.h.
56609         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
56610         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
56611         overflow. Avoid wraparound when converting a width or precision from
56612         decimal to binary.
56613
56614 2003-11-16  Bruno Haible  <bruno@clisp.org>
56615
56616         Update from GNU gettext.
56617         * lib/printf-parse.c: Generalize to it can be compiled for wide
56618         strings.
56619         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
56620         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
56621         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
56622         SNPRINTF): New macros.
56623         Don't include <alloca.h> if the file is used inside libintl.
56624         (local_wcslen): New function, for Solaris 2.5.1.
56625         (VASNPRINTF): Use it instead of wcslen.
56626
56627 2003-11-16  Bruno Haible  <bruno@clisp.org>
56628
56629         * lib/xsize.h (xmax): New function.
56630         (xsum, xsum3, xsum4): Declare as "pure" functions.
56631
56632 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56633
56634         * modules/xalloc (Files): Undo latest change, since xalloc.h
56635         no longer needs SIZE_MAX or PTRDIFF_MAX.
56636
56637 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56638
56639         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
56640         gl_PTRDIFF_MAX.
56641
56642 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56643
56644         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
56645         "return", to pacify some unknown compiler.  Problem reported
56646         by Joerg Schilling.
56647
56648 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56649
56650         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
56651         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
56652         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
56653         heuristic is just as accurate as far as we know, and it removes a
56654         dependency on size_max.m4 and ptrdiff_max.m4.
56655
56656 2003-11-11  Bruno Haible  <bruno@clisp.org>
56657
56658         * modules/xsize (Files): Add m4/size_max.m4.
56659         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
56660
56661 2003-11-11  Bruno Haible  <bruno@clisp.org>
56662
56663         * m4/size_max.m4: New file.
56664         * m4/ptrdiff_max.m4: New file.
56665         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
56666         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
56667         (gl_XALLOC): Invoke it.
56668
56669 2003-11-11  Bruno Haible  <bruno@clisp.org>
56670
56671         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
56672         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
56673         defined.
56674
56675 2003-11-10  Paul Eggert  <eggert@twinsun.com>
56676
56677         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
56678         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
56679         rejected some allocations of exactly SIZE_MAX - 2 bytes.
56680         From Bruno Haible.
56681         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
56682         not (size_t) -1, since it's defined here.
56683
56684 2003-11-09  Karl Berry  <karl@gnu.org>
56685
56686         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
56687
56688 2003-11-06  Paul Eggert  <eggert@twinsun.com>
56689
56690         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
56691         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
56692         Reject sizes of exactly SIZE_MAX bytes.
56693         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
56694         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
56695
56696 2003-11-05  Bruno Haible  <bruno@clisp.org>
56697
56698         * lib/xsize.h: Include limits.h, to avoid a possible collision with
56699         SIZE_MAX defined in <limits.h> on Solaris.
56700
56701 2003-11-04  Jim Meyering  <jim@meyering.net>
56702
56703         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
56704         variable names, rather than @VAR@.
56705         * modules/poll: Likewise.
56706
56707 2003-11-04  Bruno Haible  <bruno@clisp.org>
56708
56709         * modules/xsize: New file.
56710         * modules/linebreak: Depend on xsize.
56711         * MODULES.html.sh (func_all_modules): Add xsize.
56712
56713 2003-11-04  Bruno Haible  <bruno@clisp.org>
56714
56715         * m4/xsize.m4: New file.
56716
56717 2003-11-04  Bruno Haible  <bruno@clisp.org>
56718
56719         * lib/xsize.h: New file.
56720         * lib/linebreak.c: Include xsize.h.
56721         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
56722         argument for overflow.
56723         Suggested by Paul Eggert.
56724
56725 2003-11-03  Karl Berry  <karl@gnu.org>
56726
56727         * config/config.{guess,sub}: update from config.
56728
56729 2003-11-03  Jim Meyering  <jim@meyering.net>
56730
56731         * modules/userspec (lib_SOURCES): Add userspec.h.
56732         (Include): Add "userspec.h".
56733         Improve description.
56734
56735 2003-11-03  Jim Meyering  <jim@meyering.net>
56736
56737         * lib/userspec.c: Include "userspec.h".
56738         * lib/userspec.h: New file.
56739
56740 2003-11-03  Bruno Haible  <bruno@clisp.org>
56741
56742         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
56743
56744 2003-11-03  Bruno Haible  <bruno@clisp.org>
56745
56746         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
56747         available, to avoid (extremely rare) race condition.
56748         Suggested by Paul Eggert.
56749
56750 2003-11-02  Karl Berry  <karl@gnu.org>
56751
56752         * config/srclist.txt (vasprintf.c): sync broken, sigh.
56753
56754 2003-10-31  Paul Eggert  <eggert@twinsun.com>
56755
56756         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
56757         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
56758         (read_filesystem_list): Set and use me_type_malloced.
56759         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
56760         whatever the type happens to be), for brevity and consistency.
56761         Check for size calculation overflow on Alphas running OSF/1.
56762
56763 2003-10-31  Jim Meyering  <jim@meyering.net>
56764
56765         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
56766
56767         * lib/linebuffer.c: Include <string.h> for declaration of memset.
56768
56769 2003-10-30  Paul Eggert  <eggert@twinsun.com>
56770             Bruno Haible  <bruno@clisp.org>
56771
56772         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
56773         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
56774
56775 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
56776
56777         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
56778         netbsd*-gnu*.  Suggested by Robert Millan.
56779
56780 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56781
56782         * modules/group-member: Depend on stdbool.
56783
56784 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56785
56786         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
56787
56788 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56789
56790         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
56791         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
56792         after the 'gnu' in these cases.  This fixes some bugs in the
56793         previous change, and is based on suggestions by Robert Millan.
56794
56795 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56796
56797         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
56798         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
56799         no longer needed.
56800         * lib/quotearg.c (quotearg_n_options): Use it.
56801         * lib/group-member.c: Include <stdbool.h>.
56802         (free_group_info): Arg is now const *; don't free arg.
56803         (get_group_info): Now returns bool and accepts struct group_info *,
56804         rather than returning a malloc'ed struct group_info *.
56805         All uses changed.  Check for overflow in internal size calculation.
56806
56807         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
56808         rather than xmalloc/xrealloc.
56809         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
56810         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
56811         conformance bug: the old code used a pointer after freeing the
56812         storage that it addressed.
56813         * lib/hash.c (hash_initialize): Simplify the code by using
56814         xalloc_oversized rather than doing it by hand.
56815         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
56816         the buffer preserved.  Use free and xmalloc instead.
56817         * lib/quotearg.c (quotearg_n_options): Likewise.
56818         Use a simpler test for size overflow.  Don't use xalloc_oversized
56819         because unsigned int might be wider than size_t (!); this suggests
56820         that we should switch from unsigned int to size_t for slot numbers.
56821
56822 2003-10-28  Paul Eggert  <eggert@twinsun.com>
56823
56824         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
56825         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
56826         NetBSD kernels.  Requested by Richard Stallman.
56827
56828 2003-10-27  Paul Eggert  <eggert@twinsun.com>
56829
56830         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
56831         to allocate the returned structure.  Do not allocate a subarray,
56832         as x2nrealloc will do that.
56833         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
56834         instead of xnrealloc.
56835         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
56836
56837 2003-10-27  Bruno Haible  <bruno@clisp.org>
56838
56839         * lib/stdbool_.h: Better support for BeOS.
56840
56841 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56842
56843         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
56844         now uses inline.
56845
56846 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56847
56848         * lib/xalloc.h (xalloc_oversized): New static inline function, for
56849         callers that want to do their own size-overflow checking.  Include
56850         <stdbool.h>, since xalloc_oversized returns bool.
56851         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
56852         to use xalloc_oversized.
56853
56854         Add two functions x2realloc, x2nrealloc, for programs that grow
56855         arrays dynamically by doubling their sizes.
56856         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
56857         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
56858         New functions.
56859
56860         Port to C99 semantics for 'inline' of external functions.
56861         Bug reported by Bruno Haible.
56862         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
56863         with the old contents of xnmalloc.
56864         (xnmalloc, xmalloc): Use it.
56865         (xnrealloc_inline): New static inline function,
56866         with the old contents of xnrealloc.
56867         (xnrealloc, xrealloc): Use it.
56868
56869         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
56870         that.
56871
56872 2003-10-26  Karl Berry  <karl@gnu.org>
56873
56874         * config/srclist.txt (COPYING.DOC): no longer available from
56875         /gd/gnuorg; don't know where the ultimate source is.
56876
56877 2003-10-25  Paul Eggert  <eggert@twinsun.com>
56878
56879         Fix several address-calculation bugs in the hash modules,
56880         plus some minor code cleanup.
56881
56882         * lib/hash.h: Include <stdbool.h>, for bool.
56883         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
56884         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
56885         hash_get_n_entries, hash_get_max_bucket_length,
56886         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
56887         hash_rehash): Use size_t rather than unsigned.
56888         * lib/hash.c (struct hash_table, hash_get_n_buckets,
56889         hash_get_n_buckets_used, hash_get_n_entries,
56890         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
56891         hash_get_entries, hash_do_for_each, hash_string, is_prime,
56892         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
56893         Likewise.
56894         (SIZE_MAX): Define if not defined.
56895         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
56896         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
56897         hash_print):
56898         Use const * when possible.
56899         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
56900         (check_tuning): Fix bug: if tuning parameters were very close to
56901         0 or 1, rounding errors could have caused subscript violations.
56902         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
56903         (hash_initialize): Add 'fail:' label
56904         to free table and return NULL, and use it to simplify code.
56905         Use calloc rather than clearing the storage ourself.
56906         (hash_initialize, hash_rehash): Check for arithmetic overflow in
56907         buffer size calculations.
56908         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
56909         Include <stddef.h>, for size_t.
56910         * lib/hash-pjw.c (hash_pjw): Likewise.
56911         Switch to method described by Bruno Haible.
56912         Include <limits.h>, for CHAR_BIT.
56913         (SIZE_BITS): New macro.
56914
56915 2003-10-23  Paul Eggert  <eggert@twinsun.com>
56916
56917         * m4/getline.m4 (AM_FUNC_GETLINE):
56918         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
56919         hosts.  Problem reported by Derek Robert Price in
56920         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
56921         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
56922         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
56923
56924 2003-10-21  Paul Eggert  <eggert@twinsun.com>
56925
56926         * lib/getndelim2.c (getndelim2): When size calculation overflows,
56927         ceiling the allocation at NMAX bytes rather than silently
56928         discarding input bytes before NMAX is reached.  This makes
56929         a difference only if NMAX exceeds SIZE_MAX / 2.
56930
56931         * lib/obstack.c: Merge from glibc.
56932         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
56933         Add libc_hidden_def (_obstack_newchunk).
56934         (_obstack_free) [! defined _LIBC]: Remove.
56935         [defined _LIBC]: Make a strong alias from obstack_free, rather than
56936         a clone of the function body.
56937         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
56938         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
56939
56940         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
56941         glibc.
56942         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
56943         arg to memcpy.
56944
56945         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
56946         (obstack_ptr_grow_fast, obstack_int_grow_fast):
56947         Don't use lvalue casts, as GCC plans to remove support for them
56948         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
56949         was also present in the non-GCC version, indicating that this
56950         code had always been buggy and had never been widely used.
56951         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
56952         Use the fast variant of each macro, rather than copying the
56953         definiens of the fast variant; that way, we'll be more likely to
56954         catch future bugs in the fast variants.
56955
56956 2003-10-20  Bruno Haible  <bruno@clisp.org>
56957
56958         * modules/wait-process: New file.
56959         * MODULES.html.sh (func_all_modules): Add wait-process.
56960
56961 2003-10-20  Bruno Haible  <bruno@clisp.org>
56962
56963         * m4/wait-process.m4: New file.
56964
56965 2003-10-20  Bruno Haible  <bruno@clisp.org>
56966
56967         * lib/wait-process.h: New file, from GNU gettext.
56968         * lib/wait-process.c: New file, from GNU gettext.
56969
56970 2003-10-19  Jim Meyering  <jim@meyering.net>
56971
56972         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
56973         HPUX 10.20.
56974
56975 2003-10-18  Karl Berry  <karl@gnu.org>
56976
56977         * config/config.guess: update from config.
56978
56979 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56980
56981         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
56982         (getgroups): First arg is int, not size_t.
56983         Don't let 'free' mangle errno.
56984
56985 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56986
56987         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
56988
56989 2003-10-16  Karl Berry  <karl@gnu.org>
56990
56991         * config/config.{guess,sub}: update from config.
56992
56993 2003-10-16  Jim Meyering  <jim@meyering.net>
56994
56995         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
56996         memcpy.
56997
56998 2003-10-15  Paul Eggert  <eggert@twinsun.com>
56999
57000         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
57001         (SIZE_MAX): Remove.
57002         (new_exclude, add_exclude_file): Initial size no longer needs to
57003         be a power of 2.
57004         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
57005         our own address arithmetic overflow checking.
57006
57007         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
57008         (fnmatch): Do not alloca more than 2000 wide characters;
57009         instead, use malloc for large buffers.
57010         Check for address arithmetic overflow, and return -1
57011         with errno set to ENOMEM in that case.
57012         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
57013         (NEW_PATTERN): Do not alloca more than 8000 bytes;
57014         instead, return -1.  Check for address arithmetic overflow.
57015
57016 2003-10-14  Paul Eggert  <eggert@twinsun.com>
57017
57018         Handle invalid suffixes and overflow independently, so that
57019         callers can treat them independently as needed.  Fix some bugs in
57020         suffix handling, e.g., "100k@" was not diagnosed as an invalid
57021         suffix for a human-readable blocksize.  The major caller-visible
57022         change is the addition of a new
57023         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
57024         that both overflow and suffix chars were found.
57025
57026         * lib/human.c (humblock): Don't check separately for invalid suffix
57027         char; that is xstrtoumax's job (now that its bug is fixed).
57028         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
57029         INTMAX_MAX]: New macros.
57030         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
57031         TYPE_MAXIMUM): New macros.
57032         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
57033         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
57034         if overflow occurs, as it's what __strtol does and it's more useful
57035         in practice.
57036         (__xstrtol): If __strtol reports some error other than ERANGE,
57037         reflect it to the caller as LONGINT_INVALID.  If it reports
57038         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
57039         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
57040         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
57041         value.
57042         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
57043         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
57044         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
57045         [defined UINTMAX_MAX]: New macros.
57046
57047 2003-10-14  Bruno Haible  <bruno@clisp.org>
57048
57049         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
57050
57051 2003-10-14  Bruno Haible  <bruno@clisp.org>
57052
57053         * m4/sig_atomic_t: New file, from GNU gettext.
57054         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
57055
57056 2003-10-14  Bruno Haible  <bruno@clisp.org>
57057
57058         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
57059         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
57060         Also use volatile where needed.
57061
57062 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57063
57064         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
57065         Change maintainer from Bruno Haible to 'all'.
57066
57067 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57068
57069         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
57070
57071 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57072
57073         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
57074         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
57075         and define in terms of the other primitives.
57076         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
57077         (SIZE_MAX): Define if not already defined.
57078         (array_size_overflow): New function.
57079         (xalloc_die): Abort instead of exiting if 'error' returns.
57080         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
57081         (xmalloc, xrealloc): Use them.
57082         (xcalloc): Check for address arithmetic overflow.
57083         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
57084         a bit faster than strcpy.
57085
57086 2003-10-10  Simon Josefsson  <jas@extundo.com>
57087
57088         * modules/argp (Depends-on): Add restrict and strcase.
57089
57090 2003-10-10  Simon Josefsson  <jas@extundo.com>
57091
57092         * m4/argp.m4: Add AC_C_INLINE.
57093
57094 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57095
57096         Merge getpass from libc, plus a few fixes.
57097
57098         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
57099         Include <stdbool.h>.
57100         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
57101         __fsetlocking to empty.
57102         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
57103         do include <bits/libc-lock.h>.
57104         Do not include <fcntl.h>; not needed.
57105         [_LIBC]: Include <wchar.h>.
57106         (NOTCANCEL_MODE): New macro.
57107         (flockfile, funlockfile) [_LIBC]: New macros.
57108         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
57109         [!_LIBC]: New macros.
57110         (call_fclose): New function.
57111         (getpass): Use it.  Save tty stream separately; this simplifies the
57112         code and makes it more reliable if stdin happens to equal stdout.
57113         Invoke __fsetlocking on tty.
57114         Handle thread cancellation if needed.
57115         Namespace cleanup (use __tcgetattr, __getline).
57116         Use bool for Booleans.
57117         [USE_IN_LIBIO]: Handle wide streams.
57118         [!_LIBC]: Unconditionally do the fseek, since we don't know what
57119         stream might go where.
57120
57121         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
57122         doesn't have to include <stdio.h> before us.
57123         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
57124         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
57125         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
57126         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
57127         if not declared, so that we can use getpass.c code from libc without
57128         rewriting it.
57129         (flockfile, ftrylockfile, funlockfile): New macros.
57130
57131 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57132
57133         * modules/getpass: Depend on stdbool.
57134
57135 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57136
57137         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
57138
57139 2003-10-07  Karl Berry  <karl@gnu.org>
57140
57141         * config/config.{guess,sub}: update from config.
57142
57143 2003-10-06  Jim Meyering  <jim@meyering.net>
57144             Bruno Haible  <bruno@clisp.org>
57145
57146         This lets translators provide better translations for the
57147         "Written by ..." part of --version output.
57148         * lib/version-etc.h: Include stdarg.h.
57149         (version_etc_copyright): Declare as readonly.
57150         (version_etc): Make this function variadic with a NULL-terminated list
57151         of author name strings.
57152         (version_etc_va): New declaration.
57153         * lib/version-etc.c: Include stdarg.h, stdlib.h.
57154         (version_etc_copyright): Declare as readonly.
57155         (version_etc_va): New function. Provide a different translatable string
57156         for each possible number of authors < 10. Abbreviate when there are 10
57157         authors or more.
57158         (version_etc): Make this function variadic. Call version_etc_va.
57159         Suggestion from Gary V. Vaughan.
57160
57161         * lib/long-options.h (parse_long_options): Change prototype: the
57162         authors string is moved to the end and becomes variadic.
57163         * lib/long-options.c: Include stdarg.h.
57164         (parse_long_options): Make this function variadic, too.
57165         Call version_etc_va, not version_etc.
57166
57167 2003-10-06  Bruno Haible  <bruno@clisp.org>
57168
57169         * modules/version-etc-2: Remove file.
57170         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
57171
57172 2003-10-06  Bruno Haible  <bruno@clisp.org>
57173
57174         * modules/fatal-signal: New file.
57175         * MODULES.html.sh (func_all_modules): Add fatal-signal.
57176
57177 2003-10-06  Bruno Haible  <bruno@clisp.org>
57178
57179         * m4/fatal-signal.m4: New file.
57180         * m4/signalblocking.m4: New file, from GNU gettext.
57181
57182 2003-10-06  Bruno Haible  <bruno@clisp.org>
57183
57184         * lib/version-etc-2.h: Remove file.
57185         * lib/version-etc-2.c: Remove file.
57186
57187 2003-10-06  Bruno Haible  <bruno@clisp.org>
57188
57189         * lib/fatal-signal.h: New file, from GNU gettext.
57190         * lib/fatal-signal.c: New file, from GNU gettext.
57191
57192 2003-10-05  Paul Eggert  <eggert@twinsun.com>
57193
57194         * README: Rework advice for preventing empty .o files.
57195         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
57196         not <sys/types.h>.
57197
57198 2003-10-04  Karl Berry  <karl@gnu.org>
57199
57200         * lib/argp*: update from libc.
57201
57202 2003-10-04  Karl Berry  <karl@gnu.org>
57203
57204         * config/config.{guess,sub}: update from config.
57205
57206 2003-10-02  Bruno Haible  <bruno@clisp.org>
57207
57208         * modules/lchown (Include): Add lchown.h.
57209         * modules/time_r (Include): Use "..." syntax.
57210         * modules/xgetdomainname (Include): Add xgetdomainname.h.
57211
57212 2003-10-01  Simon Josefsson  <jas@extundo.com>
57213
57214         * MODULES.html.sh (func_all_modules): Move gethostname from section
57215         'based on' to section 'lacking' POSIX:2001.
57216
57217 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
57218
57219         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
57220         to output mode on the same stream.
57221
57222 2003-09-29  Paul Eggert  <eggert@twinsun.com>
57223
57224         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
57225         Fix arg typo in previous patch.
57226
57227 2003-09-28  Jim Meyering  <jim@meyering.net>
57228
57229         * lib/error.c: Correct cpp indentation.
57230
57231 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57232
57233         * modules/free: New file.
57234
57235 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57236
57237         * m4/free.m4: New file.
57238
57239 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57240
57241         * lib/minmax.h (MIN, MAX)
57242         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
57243         Omit the special code that used __typeof__, since we worry that
57244         it could be more trouble than it's worth.  See:
57245         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
57246         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
57247
57248         * lib/free.c: New file.
57249
57250 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
57251
57252         Trivial fixes to Makefile.am parts of module listings.
57253         * modules/strstr: Append strstr.h to lib_SOURCES.
57254         * modules/strcase: Likewise, for strcase.h.
57255
57256 2003-09-27  Karl Berry  <karl@gnu.org>
57257
57258         * config/mkinstalldirs: update from automake.
57259
57260 2003-09-26  Paul Eggert  <eggert@twinsun.com>
57261
57262         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
57263         (error_tail): Do not loop, reallocating temporary buffer, since
57264         the output cannot contain more wide characters than the input
57265         contains bytes, the size must be big enough already.  This avoids
57266         one potential size overflow calculation.  Check for size overflow
57267         when calculating temporary buffer size.  Free temporary buffer
57268         when done, if it was allocated with malloc; this plugs a memory
57269         leak.  Remove casts from void * to pointers, that are no longer
57270         needed now that we're assuming C89 or better.
57271
57272         Merge error changes from glibc.
57273
57274         * lib/error.c, error.h: Update copyright notice header to match glibc.
57275         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
57276         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
57277         Disable cancellation while printing error.
57278         * lib/error.h: Prepend __ to parameter names.
57279
57280 2003-09-26  Jim Meyering  <jim@meyering.net>
57281
57282         * lib/error.c (error_tail): Move some declarations
57283         into inner scope where the local variables are used.
57284
57285 2003-09-26  Bruno Haible  <bruno@clisp.org>
57286
57287         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
57288         stpncpy().
57289         Don't define stpncpy through config.h; it's now done through stpncpy.h.
57290
57291 2003-09-26  Bruno Haible  <bruno@clisp.org>
57292
57293         * lib/stpncpy.h (gnu_stpncpy): New declaration.
57294         (stpncpy): Define as alias for gnu_stpncpy.
57295         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
57296
57297 2003-09-25  Simon Josefsson  <jas@extundo.com>
57298
57299         * lib/xgetdomainname.h: New file.
57300         * lib/xgetdomainname.c: New file.
57301
57302 2003-09-25  Simon Josefsson  <jas@extundo.com>
57303             Bruno Haible  <bruno@clisp.org>
57304
57305         * modules/getdomainname: New file.
57306         * modules/xgetdomainname: New file.
57307         * MODULES.html.sh (func_all_modules): Add getdomainname,
57308         xgetdomainname.
57309
57310 2003-09-25  Simon Josefsson  <jas@extundo.com>
57311             Bruno Haible  <bruno@clisp.org>
57312
57313         * m4/getdomainname.m4: New file.
57314
57315 2003-09-25  Simon Josefsson  <jas@extundo.com>
57316             Bruno Haible  <bruno@clisp.org>
57317
57318         * lib/getdomainname.h: New file.
57319         * lib/getdomainname.c: New file.
57320
57321 2003-09-25  Karl Berry  <karl@gnu.org>
57322
57323         * lib/argp-fmtstream.c, argp-help.c: update from libc.
57324
57325 2003-09-25  Karl Berry  <karl@gnu.org>
57326
57327         * config/install-sh: update from automake.
57328
57329 2003-09-25  Bruno Haible  <bruno@clisp.org>
57330
57331         * modules/version-etc-2: New file, from modules/version-etc with
57332         modifications.
57333         * MODULES.html.sh (func_all_modules): Add version-etc-2.
57334
57335 2003-09-25  Bruno Haible  <bruno@clisp.org>
57336
57337         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
57338         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
57339
57340 2003-09-24  Simon Josefsson  <jas@extundo.com>
57341
57342         * modules/xgethostname: Add xgethostname.h.
57343
57344 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57345
57346         * lib/linebuffer.c (freebuffer): Don't free the argument, just
57347         the buffer associated with the argument.  Bug reported by
57348         Simon Josefsson.
57349
57350 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57351
57352         * README: Document assumptions that 'int' is at least 32 bits
57353         wide, that integer arithmetic is 2's complement without overflow,
57354         that there are no holes in integer values, that adding sizes of
57355         two nonoverlapping objects can't overflow, and that all-bits-zero
57356         yields scalar zero.  Fix spelling and capitalization typos.
57357
57358 2003-09-19  Karl Berry  <karl@gnu.org>
57359
57360         * lib/argp.h: update from libc.
57361
57362 2003-09-17  Paul Eggert  <eggert@twinsun.com>
57363
57364         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
57365         to avoid spurious warnings like "AC_RUN_IFELSE was called before
57366         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
57367
57368 2003-09-17  Paul Eggert  <eggert@twinsun.com>
57369
57370         * gnulib-tool: Use "test -h", not "test -L", for portability
57371         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
57372         (tags_regexp): Remove, since \| doesn't conform to POSIX.
57373         (sed_extract_prog): Issue s commands one-by-one, rather than
57374         using \| in one s command.
57375
57376 2003-09-16  Paul Eggert  <eggert@twinsun.com>
57377
57378         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
57379         input error, instead of returning NULL the next time we are called
57380         (and therefore losing track of errno).
57381
57382 2003-09-16  Bruno Haible  <bruno@clisp.org>
57383
57384         * gnulib-tool (func_create_testdir): Warn about duplicated
57385         dependencies.
57386
57387 2003-09-15  Paul Eggert  <eggert@twinsun.com>
57388
57389         * modules/argmatch, modules/fatal, modules/obstack,
57390         modules/xalloc, modules/xgethostname: Sort dependencies by
57391         importance, not alphabetically.
57392
57393 2003-09-15  Paul Eggert  <eggert@twinsun.com>
57394
57395         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
57396         fails, so that the caller gets the proper errno.
57397
57398         * lib/readutmp.c (read_utmp): Likewise.
57399         Check for fstat error.  Close stream and free storage
57400         when failing.
57401
57402 2003-09-14  Karl Berry  <karl@gnu.org>
57403
57404         * config/srclist.txt (strdup.c): disable for c89 changes.
57405
57406 2003-09-14  Jim Meyering  <jim@meyering.net>
57407
57408         * lib/getloadavg.c: Correct cpp indentation.
57409         * lib/strdup.c: Likewise.
57410         * lib/vasnprintf.c: Likewise.
57411
57412 2003-09-14  Bruno Haible  <bruno@clisp.org>
57413
57414         * modules/fwriteerror: New file.
57415         * MODULES.html.sh (func_all_modules): Add fwriteerror.
57416
57417 2003-09-14  Bruno Haible  <bruno@clisp.org>
57418
57419         * lib/fwriteerror.h: New file.
57420         * lib/fwriteerror.c: New file.
57421
57422 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57423
57424         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
57425         modules/xgethostname, modules/xalloc: Depend on exit.
57426
57427 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57428
57429         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
57430
57431         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
57432         and AC_MINIX, too, so that their extensions are available.
57433
57434         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
57435         This macro has been superseded by gl_BACKUPFILE.
57436
57437         More patches to assume C89 or better.
57438
57439         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
57440
57441         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
57442         unconditionally.
57443         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
57444         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
57445         Include <string.h>, <stdlib.h> unconditionally.
57446         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
57447         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
57448         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
57449         headers or for string.h.
57450         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
57451         or strtoul.
57452
57453         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
57454         headers.
57455         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
57456         * m4/userspec.m4 (gl_USERSPEC): Likewise.
57457         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
57458         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
57459         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
57460         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
57461         memcpy, memset.
57462         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
57463         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
57464         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
57465         strtol.
57466         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
57467         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
57468         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
57469         strtoul.
57470
57471 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57472
57473         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
57474         * lib/obstack.c [!defined _LIBC]: Likewise.
57475         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
57476         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
57477         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
57478
57479         More changes to assume C89 or better.
57480
57481         * lib/error.c (error_tail): Assume vprintf.
57482
57483         * lib/argmatch.c (getenv): Remove decl.
57484         * lib/progreloc.c (get_full_program_name): Define via prototype.
57485         * lib/setenv.c (clearenv): Likewise.
57486         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
57487         needed.
57488         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
57489         (malloc, memcpy): Remove decls.
57490         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
57491         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
57492         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
57493         (memcpy): Remove macro.
57494         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
57495         (__P): Remove.  All uses removed.
57496         (PTR): Remove.  All uses changed to void *.
57497         (CHAR_BIT, NULL): Remove.
57498         (spaces, zeros, memset_space, memset_zero)
57499         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
57500         Remove.
57501         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
57502         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
57503         Define with prototype.
57504         Remove now-unnecessary prototype decl.
57505         (extra_args_spec): Assume ANSI C.  All uses changed.
57506         (extra_args_spec_iso): Remove.
57507         (my_strftime, emacs_strftimeu): Define via prototype.
57508         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
57509         unconditionally.
57510         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
57511         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
57512         (strtoul, strtol): Remove decls.
57513         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
57514         LONG_MAX): Remove.
57515         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
57516         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
57517         (LOCALE_PARAM_PROTO): New macro.
57518         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
57519         (INTERNAL (strtol), strtol): Define with a prototype.
57520         (PARAMS): Remove.  All uses removed.
57521         * lib/tempname.c: Include <string.h> unconditionally.
57522         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
57523         * lib/xgethostname.c (main): Define with a prototype.
57524         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
57525         Include <stdlib.h> unconditionally.
57526         (calloc, malloc, realloc, free): Remove decls.
57527         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
57528         Include <stdlib.h> unconditionally.  Sort include file names.
57529         (strtod): Remove.
57530         (xstrtod): Define with a prototype.
57531         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
57532         (strtol, strtoul): Remove decls.
57533
57534 2003-09-11  Paul Eggert  <eggert@twinsun.com>
57535
57536         More patches to assume C89 or better.
57537         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
57538         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
57539         string.h, memchr, STDC_HEADERS.
57540
57541 2003-09-11  Paul Eggert  <eggert@twinsun.com>
57542
57543         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
57544         Include <stdlib.h>, <string.h> unconditionally.
57545         Remove now-unnecessary cast to char *.
57546         * lib/strnlen.c: Include <string.h> unconditionally.
57547         * lib/yesno.c (yesno): Define with a prototype.
57548
57549 2003-09-11  Bruno Haible  <bruno@clisp.org>
57550
57551         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
57552
57553 2003-09-10  Jim Meyering  <jim@meyering.net>
57554
57555         * lib/error.c: Correct indentation of cpp directives.
57556
57557 2003-09-10  Bruno Haible  <bruno@clisp.org>
57558
57559         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
57560         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
57561         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
57562         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
57563         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
57564         <stdlib.h> and <string.h> checks.
57565         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
57566         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
57567
57568 2003-09-10  Bruno Haible  <bruno@clisp.org>
57569
57570         * lib/strcspn.c: Include <string.h> unconditionally.
57571         * lib/strpbrk.c: Include <string.h> unconditionally.
57572         * lib/strstr.c: Include <string.h> unconditionally.
57573         * lib/unicodeio.c: Include <string.h> unconditionally.
57574         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
57575         * lib/unsetenv.c: Likewise.
57576         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
57577         * lib/yesno.c: Include <stdlib.h> unconditionally.
57578         (rpmatch): Add prototype.
57579
57580 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57581
57582         More patches to assume C89 or better.
57583         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
57584         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
57585         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
57586         or for string.h.
57587         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
57588         stdlib.h.
57589         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
57590         C headers.
57591         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
57592         string.h.
57593         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
57594         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
57595         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
57596         or for string.h.
57597         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
57598         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
57599         C headers.
57600         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
57601         memcpy.
57602         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
57603         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
57604         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
57605         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
57606         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
57607         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
57608         string.h, free.
57609         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
57610         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
57611         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
57612         C headers, or for string.h.
57613         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
57614         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
57615         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
57616         headers, memory.h, stdlib.h, string.h, strings.h.
57617         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
57618         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
57619         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
57620         strchr.
57621         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
57622         headers, memory.h, string.h.
57623         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
57624         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
57625         free.
57626         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
57627         headers.
57628         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
57629         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
57630         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
57631         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
57632         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
57633
57634 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57635
57636         More K&R removal.
57637
57638         * lib/acosl.c (main): Use a prototype.
57639         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
57640         tanl.c: Likewise.
57641
57642         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
57643
57644         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
57645         (getopt, etopt_long, getopt_long_only, _getopt_internal)
57646         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
57647         with a prototype.
57648         * lib/getopt.c (const): Remove macro.
57649         Include <string.h> unconditionally.
57650         (my_index): Remove; all uses changed to strchr.
57651         (strlen): Remove decl.
57652         (exchange): Remove forward decl; no longer needed.
57653         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
57654         Define with prototype.
57655         * lib/getopt1.c (const): Remove macro.
57656         (getopt_long, getopt_long_only, main): Define with prototype.
57657
57658         * lib/getugroups.c: Include <string.h> unconditionally.
57659
57660         * lib/getusershell.c: Include <stdlib.h> unconditionally.
57661         (getusershell, setusershell, endusershell, readname, main):
57662         Define with prototypes.
57663
57664         * lib/group-member.c: Include group-member.h first.
57665         Include <stdlib.h> unconditionally.
57666
57667         * lib/hard-locale.c: Include hard-locale.h first.
57668         Include <stdlib.h>, <string.h> unconditionally.
57669
57670         * lib/hash.c (free, malloc): Remove decls.
57671         Include <stdlib.h> unconditionally.
57672
57673         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
57674         (getenv): Do not declare.
57675
57676         * lib/idcache.c: Include <string.h> unconditionally.
57677
57678         * lib/long-options.c: Include long-options.h first, to test interface.
57679         Include <stdlib.h> unconditionally.
57680
57681         * lib/makepath.c: Include makepath.h first, to test interface.
57682         Include <stdlib.h> and <string.h> unconditionally.
57683
57684         * lib/linebuffer.c: Include <stdlib.h>.
57685         (free): Remove decl.
57686
57687         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
57688         stddef.h. rpl_malloc returns void *, not char *.
57689         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
57690         prototype.
57691
57692         * lib/md5.h: Include <limits.h> unconditionally.
57693         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
57694         (__P): Remove; all uses removed.
57695         * lib/md5.c: Include "md5.h" first.
57696         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
57697         md5_buffer, md5_process_bytes, md5_process_block):
57698         Define with prototypes.
57699         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
57700         * lib/sha.c: Include "sha.h" first.
57701         Include <stdlib.h>, <string.h> unconditionally.
57702
57703         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
57704         * lib/memcmp.c (__ptr_t): Likewise.
57705         * lib/memrchr.c (__ptr_t): Likewise.
57706         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
57707         Include <string.h> unconditionally.
57708         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
57709         * lib/memchr.c: Include <stdlib.h> unconditionally.
57710         * lib/memchr.c (LONG_MAX): Remove.
57711         * lib/memrchr.c (LONG_MAX): Likewise.
57712         * lib/memchr.c (__memchr): Define via a prototype.
57713         * lib/memrchr.c (__memrchr): Likewise.
57714         * lib/memcmp.c (__P): Remove, and remove all uses.
57715         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
57716         Remove forward decls; no longer needed.
57717         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
57718         Use types required by C89 in prototype.
57719
57720         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
57721         * lib/savedir.c: Likewise.
57722         * lib/mkdir.c (free): Remove decl.
57723         * lib/rmdir.c (rmdir): Define with a prototype.
57724         * lib/savedir.c: Include savedir.h first, to test interface.
57725
57726         * lib/mktime.c (STDC_HEADERS): Remove.
57727         Include <stdlib.h>, <string.h> unconditionally.
57728
57729         * lib/modechange.c: Include <stdlib.h> unconditionally.
57730         (malloc): Remove decl.
57731
57732         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
57733         (free): Remove decl.
57734
57735         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
57736         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
57737         (This type really should be intptr_t, but that's a C99ism.)
57738         (_obstack_memcpy): Remove: all uses changed to memcpy.
57739         Include <string.h> unconditionally.
57740         (struct obstack): Assume __STDC__ for types of members
57741         chunkfun, freefun, extra_arg.
57742         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
57743         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
57744         obstack_begin, obstack_specify_allocation,
57745         obstack_specify_allocation_with_arg, obstack_chunkfun,
57746         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
57747         Remove unprototyped decls and the macros that use them.
57748         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
57749         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
57750         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
57751         (defined __STDC__ && __STDC__)]:
57752         Remove nonprototyped code.
57753         Include <stdlib.h> unconditionally.
57754         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
57755         _obstack_allocated_p, _obstack_free, obstack_free,
57756         _obstack_memory_used, print_and_abort):
57757         Define using prototypes.
57758         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
57759         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
57760         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
57761         obstack_next_free, obstack_object_size, obstack_room) [0]:
57762         Remove unused, unprototyped code.
57763
57764         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
57765
57766         * lib/physmem.c (physmem_total, physmem_available, main): Define
57767         with prototypes.
57768
57769         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
57770         (main): Define with a prototype.
57771
57772         * lib/posixver.c (getenv): Remove decl.
57773
57774         * lib/putenv.c (malloc): Returns void *, not char *.
57775         Include <string.h> unconditionally.
57776         (strchr, memcpy, NULL): Do not define.
57777
57778         * lib/readtokens.c: Include readtokens.h first, to test interface.
57779         Include <stdlib.h>, <string.h> unconditionally.
57780         (init_tokenbuffer): Define with a prototype.
57781
57782         * lib/regex.c (PARAMS): Remove.  All uses removed.
57783         All uses of _RE_ARGS removed, too.
57784         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
57785         unconditionally.
57786         (bzero): Assume memset exists.
57787         (memcmp, memcpy, NULL): Remove.
57788         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
57789         char, or assignments to local vars of type signed char.
57790         (init_syntax_once, PREFIX(extract_number_and_incr),
57791         PREFIX(print_partial_compiled_pattern),
57792         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
57793         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
57794         PREFIX(regex_grow_registers), PREFIX(regex_compile),
57795         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
57796         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
57797         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
57798         wcs_compile_range, byte_compile_range, truncate_wchar,
57799         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
57800         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
57801         count_mbs_length, wcs_re_match_2_internal,
57802         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
57803         PREFIX(alt_match_null_string_p),
57804         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
57805         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
57806         regfree, PREFIX(extract_number)): Define with prototype.  Remove
57807         now-unnecessary declaration, if any.
57808         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
57809         regcomp, regexec):
57810         Remove now-unnecessary casts among pointer types.
57811         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
57812
57813         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
57814         (free): Remove decl.
57815
57816         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
57817
57818         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
57819         (free): Remove decl.
57820
57821         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
57822         * lib/xgetcwd.c: Likewise.
57823
57824         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
57825         (free): Remove decl.
57826
57827         * lib/strchrnul.c (strchrnul): Define with a prototype.
57828         Fix bug: c_in was not converted to char before searching.
57829
57830         The following changes are not K&R related:
57831
57832         * lib/group-member.h: Include <sys/types.h>, so that this file is
57833         self-contained.
57834         * lib/makepath.h: Likewise.
57835
57836         * lib/getusershell.c (readname, default_index, line_size, readname):
57837         Use size_t, not int, for sizes.
57838         (readname): If the size overflows, report an error instead of
57839         looping forever.
57840
57841 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57842
57843         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
57844         libc.
57845
57846 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57847
57848         * README: New section: portability guidelines.
57849
57850 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57851
57852         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
57853         C89 spec.
57854
57855 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57856
57857         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
57858
57859 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57860
57861         Assume C89 or better; remove K&R cruft.
57862         A few of these changes were first proposed by Derek Robert Price
57863         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
57864
57865         * lib/addext.c: Include <string.h> unconditionally.
57866         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
57867         Don't declare getenv or malloc.
57868
57869         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
57870         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
57871         (NULL): Remove.
57872         (find_stack_direction, alloca): Use prototypes.
57873
57874         * lib/atexit.c (atexit): Define using a prototype.
57875
57876         * lib/basename.c, dirname.c, stripslash.c:
57877         Include <string.h> unconditionally.
57878
57879         * lib/bcopy.c: Include <stddef.h>.
57880         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
57881
57882         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
57883
57884         * lib/error.h (error, error_at_line, error_print_progname)
57885         [! (defined (__STDC__) && __STDC__)]: Remove decls.
57886         * lib/error.c: Include error.h first, to check interface.
57887         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57888         (VA_START): Remove; all uses changeed to va_start.
57889         (exit, strerror): Remove decls.
57890         (error_print_progname): Prototype uncondionally.
57891         Don't include <errno.h>; no longer needed.
57892         (private_strerror): Remove.
57893         (error_tail): Always define.
57894         (error, error_at_line): Assume C89 or better; always use prototypes.
57895         * lib/fatal.c: Include "fatal.h" first, to test interface.
57896         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57897         (VA_START): Remove; all uses changed to va_start.
57898         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
57899         this case.
57900         (exit): Remove decl.
57901         (fatal): Prototype unconditionally.  Assume va_start works.
57902         Abort at end, to pacify gcc.
57903
57904         * lib/euidaccess.c (main): Define with a prototype.
57905
57906         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
57907
57908         * lib/exitfail.c: Include <stdlib.h> unconditionally.
57909
57910         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
57911         prototypes.
57912         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
57913         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
57914         (getenv): Remove decl.
57915         (fnmatch): Define using a prototype.
57916         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
57917         (FCT): Define using a prototype.
57918
57919         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
57920
57921         * lib/gethostname.c: Include <stddef.h>.
57922         (gethostname): Define with prototype.  Length is size_t, not int.
57923
57924 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57925
57926         Assume C89 or better; remove K&R cruft.
57927         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
57928         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
57929         string.h, getenv, malloc.
57930         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
57931         headers.
57932         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
57933         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
57934         do not check for strerror.
57935         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
57936         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
57937         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
57938         do not check for doprnt or vprintf.
57939         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
57940         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
57941
57942 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57943
57944         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
57945         getversion.c should have been removed then, but was accidentally
57946         preserved.
57947
57948         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
57949         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
57950
57951 2003-09-08  Karl Berry  <karl@gnu.org>
57952
57953         * config/config.sub, config.guess, srclistvars.sh: update from savannah
57954                 config, forget about prep.
57955
57956         * config/depcomp, missing: update from automake.
57957
57958 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57959
57960         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
57961         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57962
57963 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57964
57965         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
57966         copy_tm_result.  Bug reported by Simon Josefsson in
57967         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57968
57969 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57970
57971         * m4/time_r.m4: New file.
57972         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
57973         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
57974         is. Check for timegm declaration.
57975         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
57976         Do not check for gmtime_r.
57977         Replace mktime if __mktime_internal does not exist and if mktime
57978         hasn't been replaced already.
57979
57980 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57981
57982         * lib/time_r.c, lib/time_r.h: New files.
57983
57984         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
57985         __localtime_r.
57986         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
57987         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
57988
57989         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
57990         __gmtime_r.
57991         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
57992         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
57993         Include <time_r.h>.
57994
57995         * lib/timegm.c: Switch to glibc implementation, with the following
57996         changes:
57997         [defined HAVE_CONFIG_H]: Include <config.h>.
57998         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
57999         (__mktime_internal) [!defined _LIBC]: New decl.
58000         (__gmtime_r) [!defined _LIBC]: New macro and function.
58001         (timegm): Use a prototype, since gnulib assumes C89.
58002         Do not bother declaring tmp to be const, as it's not really usefu.
58003         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
58004         (timegm): Declare only if HAVE_DECL_TIMEGM.
58005
58006 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58007
58008         * MODULES.html.sh (func_all_modules): Add time_r.
58009         * modules/time_r: New file.
58010         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
58011         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
58012
58013 2003-09-03  Paul Eggert  <eggert@twinsun.com>
58014
58015         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
58016         Bug reported by Lute Kamstra in
58017         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
58018
58019         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
58020         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
58021         course with correspondingly smaller numbers for tomorrow and
58022         yesterday.  From Tadayoshi Funaba.  Originally installed into
58023         sh-utils on 1999-08-07, but the patch got lost (I guess during the
58024         coreutils merge?).
58025
58026 2003-08-31  Simon Josefsson  <jas@extundo.com>
58027
58028         * modules/timegm: New file.
58029         * MODULES.html.sh (func_all_modules): Add timegm.
58030
58031 2003-08-31  Simon Josefsson  <jas@extundo.com>
58032
58033         * m4/timegm.m4: New file.
58034
58035 2003-08-31  Simon Josefsson  <jas@extundo.com>
58036
58037         * lib/timegm.h: New file.
58038         * lib/timegm.c: New file.  Based on
58039         wget-1.8.2/src/http.c:mktime_from_utc.
58040
58041 2003-08-31  Karl Berry  <karl@gnu.org>
58042
58043         * lib/argp.h: update from libc.
58044
58045 2003-08-28  Bruno Haible  <bruno@clisp.org>
58046
58047         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
58048         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
58049         followed by '#define fnmatch fnmatch_posix' gives an error.
58050
58051 2003-08-28  Bruno Haible  <bruno@clisp.org>
58052
58053         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
58054         warning on QNX, which defines O_BINARY to 000000.
58055
58056 2003-08-27  Jim Meyering  <jim@meyering.net>
58057
58058         * m4/mkstemp.m4: Require that the system mkstemp be able to create
58059         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
58060         would fail after 32.  Reported by Danny Levinson.  Details here:
58061         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
58062
58063 2003-08-24  Bruno Haible  <bruno@clisp.org>
58064
58065         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
58066         MSVC7 <stdio.h> is included later.
58067
58068 2003-08-22  Simon Josefsson  <jas@extundo.com>
58069
58070         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
58071
58072 2003-08-20  Karl Berry  <karl@gnu.org>
58073
58074         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
58075
58076 2003-08-20  Bruno Haible  <bruno@clisp.org>
58077
58078         * modules/progname: New file.
58079         * MODULES.html.sh (func_all_modules): Add progname.
58080
58081 2003-08-20  Bruno Haible  <bruno@clisp.org>
58082
58083         * lib/progname.h: New file, from GNU gettext.
58084         * lib/progname.c: New file, from GNU gettext.
58085         * lib/progreloc.c: New file, from GNU gettext.
58086
58087 2003-08-19  Jim Meyering  <jim@meyering.net>
58088
58089         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
58090         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
58091
58092 2003-08-19  Bruno Haible  <bruno@clisp.org>
58093
58094         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
58095         more.
58096
58097 2003-08-19  Bruno Haible  <bruno@clisp.org>
58098
58099         * lib/xstrdup.c: Assume <string.h> exists.
58100
58101 2003-08-18  Paul Eggert  <eggert@twinsun.com>
58102
58103         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
58104         in makefile rules.
58105
58106 2003-08-18  Jim Meyering  <jim@meyering.net>
58107
58108         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
58109         * m4/lib-ld.m4: Likewise.
58110
58111 2003-08-18  Jim Meyering  <jim@meyering.net>
58112
58113         * lib/setenv.h: Indent nested cpp directive.
58114         * lib/vasnprintf.c: Remove trailing blanks.
58115
58116 2003-08-17  Simon Josefsson  <jas@extundo.com>
58117
58118         * modules/xstrndup: New file.
58119         * MODULES.html.sh (func_all_modules): Add xstrndup.
58120
58121 2003-08-17  Simon Josefsson  <jas@extundo.com>
58122
58123         * modules/argp: Fix autoconf macro name. Add more dependencies.
58124
58125 2003-08-17  Simon Josefsson  <jas@extundo.com>
58126
58127         * m4/xstrndup.m4: New file.
58128
58129 2003-08-17  Simon Josefsson  <jas@extundo.com>
58130
58131         * m4/argp.m4: New file.
58132
58133 2003-08-17  Simon Josefsson  <jas@extundo.com>
58134             Bruno Haible  <bruno@clisp.org>
58135
58136         * lib/xstrndup.h: New file.
58137         * lib/xstrndup.c: New file.
58138
58139 2003-08-17  Bruno Haible  <bruno@clisp.org>
58140
58141         * modules/strndup (Files, Include): Add lib/strndup.h.
58142
58143 2003-08-17  Bruno Haible  <bruno@clisp.org>
58144
58145         * modules/euidaccess (Files): Add lib/euidaccess.h.
58146
58147 2003-08-17  Bruno Haible  <bruno@clisp.org>
58148
58149         * lib/strndup.h: New file.
58150
58151 2003-08-17  Bruno Haible  <bruno@clisp.org>
58152
58153         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
58154         like AC_GNU_SOURCE.
58155         * modules/extensions (configure.ac): Comment out the invocation of
58156         gl_USE_SYSTEM_EXTENSIONS.
58157
58158 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58159
58160         Merges from coreutils, etc.
58161         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
58162         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
58163         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
58164         fixing a typo.
58165         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
58166         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
58167
58168 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58169
58170         Document merge from coreutils.
58171         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
58172         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
58173         * modules/utime: Add m4/utimes-null.m4.
58174
58175 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58176
58177         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
58178         space, undoing this 2003-08-12 change:
58179         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58180
58181 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58182
58183         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
58184         strtoul.c from libc, undoing this 2003-08-12 change:
58185         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58186
58187 2003-08-16  Jim Meyering  <jim@meyering.net>
58188
58189         Merges from coreutils.
58190         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
58191         prefix.  Adjust cache variables similarly.  Create 500 rather than
58192         just 300 files, to exercise bug on Darwin6.5, too.
58193         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
58194         $missing_dir.
58195         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
58196         AM_SYS_POSIX_TERMIOS.
58197         Reported by mkc@mathdogs.com.
58198         Also change use of $am_cv_sys_posix_termios
58199         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
58200         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
58201         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
58202         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
58203         in /proc/mounts until it finds one with matching device number.  This
58204         is unnecessary when the FILE argument *is* a mount point.  No stat call
58205         is necessary in that case.  So, disable the statvfs-testing code on
58206         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
58207         as RedHat bug# 84846.
58208         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58209         to 1MB, so as not to render systems with no stack size limit (e.g.,
58210         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58211         Include <unistd.h>.  On some systems,
58212         it is required for the definition of _SC_PAGESIZE.
58213
58214 2003-08-16  Jim Meyering  <jim@meyering.net>
58215
58216         Merge from coreutils.
58217         * lib/xstrtoimax.c: #else #if -> #elif.
58218         * lib/xstrtoumax.c: Likewise.
58219
58220 2003-08-16  Jim Meyering  <jim@meyering.net>
58221
58222         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
58223         * m4/utimes.m4: Removed.
58224         * m4/utimes-null.m4: Renamed from utimes.m4.
58225
58226         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58227         to 1MB, so as not to render systems with no stack size limit (e.g.,
58228         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58229         Include <unistd.h>.  On some systems,
58230         it is required for the definition of _SC_PAGESIZE.
58231
58232 2003-08-16  Jim Meyering  <jim@meyering.net>
58233         and Paul Eggert  <eggert@cs.ucla.edu>
58234
58235         Merges from coreutils, etc.
58236
58237         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
58238         using the latest version from cvs.  This avoids problems with #line
58239         directives using a vendor (Sun) compiler.
58240         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
58241         Don't set GETGROUPS_LIB here; now it's
58242         done via getgroups.m4's wrapper function.
58243         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
58244         rather than just in sh-util/configure.in, so that the
58245         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
58246         same.
58247         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
58248         AC_FUNC_GETLOADAVG where to find getloadavg.c.
58249         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
58250         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
58251         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
58252         Remove code that is now done by the newly-required macros.
58253         Append $(EXEEXT) to DF_PROG.
58254         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
58255         Do not invoke or require the following here,
58256         since prereq.m4 or some gnulib .m4 now does this for us:
58257         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
58258         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
58259         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
58260         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
58261         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
58262         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
58263         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
58264         AC_FUNC_OBSTACK.
58265         Do not replace the following functions, as this is now the job
58266         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
58267         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
58268         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
58269         atexit getpass, strdup, getpagesize.
58270         Replace 'raise'.
58271         Do not check for the following functions, as this is now the job
58272         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
58273         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
58274         setregid.
58275         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
58276         Check for sys/sysctl.h.
58277         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
58278         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
58279         of checking for ssize_t ourselves.
58280
58281         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
58282         Require every macro that gnulib/modules/* suggests for us.
58283         (jm_PREREQ_ADDEXT): New macro.
58284         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
58285         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
58286
58287         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
58288         (gl_PHYSMEM): Use it.
58289         Also check for `table' function.
58290         Check for new headers and functions.
58291         Add check for sys/sysmp.h.
58292         With suggestions from Kaveh Ghazi.
58293         Ignore headers that are present but cannot be compiled.  This
58294         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
58295         C 5.4.
58296
58297 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58298
58299         Document merge from coreutils.
58300         * modules/userspec: Depend on posixver.
58301         * modules/strftime: Depend on tzset.
58302
58303 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58304
58305         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
58306         rather than tab, after '#' in shell-script copyright notices.
58307         Suggested by Bruno Haible.
58308
58309 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58310
58311         * config/srclist-update: Use three spaces, rather than tab, after '#'
58312         in shell-script copyright notices.  Suggested by Bruno Haible.
58313         Remove unnecessary parenthesization in regular expression.
58314
58315 2003-08-15  Jim Meyering  <jim@meyering.net>
58316
58317         Merge from coreutils.
58318         * lib/xgethostname.c: Include <stdlib.h>.
58319         (xghostname): Don't exit for anything other than memory-related
58320         failure; just return NULL.
58321         * lib/userspec.c: Include "posixver.h".
58322         (parse_user_spec): Accept `.' as a separator only
58323         in pre-POSIX-200112 mode.
58324         * lib/strtoimax.c: Use #elif rather than #else #if.
58325         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
58326         Remove function, now that we can rely on a working tzset function.
58327         [!_LIBC]: Ensure that the required autoconf test has been run.
58328         [!defined _NL_CURRENT && HAVE_STRFTIME]:
58329         Use underlying_strftime for %r.
58330         * lib/sha.c: Merge in some clean-up and optimization changes from
58331         glibc.
58332         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
58333         Ensure that it is a multiple of 64.
58334         Rearrange loop exit tests so as to avoid performing an
58335         additional fread after encountering an error or EOF.
58336         * lib/realloc.c: Update copyright date.
58337
58338 2003-08-15  Jim Meyering  <jim@meyering.net>
58339         and Paul Eggert  <eggert@twinsun.com>
58340
58341         Merge from coreutils.
58342         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
58343         member but strut utmpx does not.  Needed for AIX 4.3.3.
58344         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
58345
58346 2003-08-15  Jim Meyering  <jim@meyering.net>
58347         and Paul Eggert  <eggert@cs.ucla.edu>
58348
58349         Merges from coreutils, etc.
58350         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
58351         Require gl_FUNC_TZSET_CLOBBER.
58352         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
58353         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
58354         members.
58355
58356 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58357
58358         Help the merge from coreutils.
58359         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
58360         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
58361         * m4/tzset.m4: Use it too.
58362
58363 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58364
58365         * modules/tzset: New file.
58366
58367 2003-08-14  Jim Meyering  <jim@meyering.net>
58368
58369         Merges from coreutils.
58370         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
58371         variable names, rather than @FNMATCH_H@.
58372         * modules/alloca: Likewise for $(ALLOCA_H).
58373
58374         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
58375         the three copies of the literal target, `fnmatch.h'.
58376         * modules/alloca (alloca.h): Likewise.
58377
58378 2003-08-14  Jim Meyering  <jim@meyering.net>
58379
58380         Merge from coreutils.
58381         * m4/tzset.m4: New file.
58382         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
58383         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
58384         otherwise, AIX 5.1 systems would end up using the latter.
58385         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
58386         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
58387         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
58388         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
58389
58390 2003-08-14  Jim Meyering  <jim@meyering.net>
58391
58392         Merge from coreutils.
58393         * lib/obstack.h: Whitespace changes.
58394         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
58395         and xcalloc return values.
58396         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
58397         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
58398         hang on OSF/1 5.1 for DIR on both local and remote file systems.
58399         Reported by (and fix confirmed by) Nelson H. F. Beebe.
58400         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
58401         error from mntctl.
58402         Use mntctl's return value to drive the entry-processing loop, since
58403         we can't rely on the value of the vmt_length member in the last
58404         entry.  On some systems doing so could result in exhausting
58405         virtual memory.  Based in part on a patch from Mike Jetzer.
58406
58407 2003-08-14  Jim Meyering  <jim@meyering.net>
58408         and Paul Eggert  <eggert@twinsun.com>
58409
58410         Merges from coreutils, plus other fixes.
58411         * lib/physmem.c: Merge in portability changes from gcc/libiberty
58412         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
58413         for credits and details.  Thanks to Kaveh Ghazi for helping
58414         to keep these files in sync.
58415         (ARRAY_SIZE): Define it.
58416         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
58417         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
58418         (memcasecmp): Don't assume size_t fits in unsigned int.
58419         Remove casts and duplicate code.
58420         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
58421         (memcpy): Remove definition.
58422         Merge in some clean-up and optimization changes from glibc.
58423         [BLOCKSIZE]: Move definition to top of file.
58424         Ensure that it is a multiple of 64.
58425         Rearrange loop exit tests so as to avoid performing an
58426         additional fread after encountering an error or EOF.
58427         * lib/md5.h (md5_uintptr): Define.
58428         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
58429         return to the initial working directory.  Preserve errno
58430         for caller.
58431         * lib/idcache.c: Include "xalloc.h".
58432         (xmalloc, xrealloc): Remove decls.
58433         (getuser): Remove casts no longer required in C89.
58434         * lib/human.c: Include stdio.h, for sprintf.
58435         * lib/group-member.c: Include "xalloc.h".
58436         (xmalloc, xrealloc): Remove decls.
58437         (get_group_info): Remove casts no longer required in C89.
58438         * lib/getusershell.c (readname): Remove casts no longer required in
58439         C89.
58440         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
58441         * lib/getline.c: Whitespace fix, from coreutils.
58442
58443 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58444
58445         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
58446         Check for isascii.
58447
58448         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
58449         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
58450         Undo previous (whitespace-only) change.
58451
58452 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58453
58454         * lib/exclude.c: Include <ctype.h>
58455         (IN_CTYPE_DOMAIN): New macro.
58456         (is_space): New fn.
58457         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
58458         and empty lines.
58459
58460         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
58461         Undo previous (whitespace-only) change.
58462
58463 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58464
58465         * config/srclist-update: Change update back to the old behavior,
58466         leaving whitespace alone.  Use one 'sed' command rather than a
58467         pipeline.
58468         (fixlicense): Now a variable, not a function.
58469         (remove_trailing_blanks): Remove.
58470         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
58471         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
58472         Undo previous (whitespace-only) change.
58473
58474 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58475
58476         Merge from coreutils.
58477         * modules/euidaccess: Add lib_SOURCES, include for new
58478         file euidaccess.h
58479
58480 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58481
58482         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
58483         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
58484         Normalize leading white space and remove trailing white space.
58485
58486         Merge from coreutils
58487         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
58488
58489         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
58490         0.12.1.  These files are now being upgraded automatically by
58491         ../config/srclist-update.
58492
58493 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58494
58495         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
58496         Normalize leading white space and remove trailing white space.
58497         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
58498         notice, as per ../config/srclist-update.
58499
58500         Merge from coreutils.
58501         * lib/euidaccess.h: New file.
58502         * lib/euidaccess.c: Include it.
58503         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
58504         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
58505         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
58506
58507 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58508
58509         * config/srclist-update: Add copyright notice.
58510         (remove_id_lines, remove_trailing_blanks): New constants.
58511         (fixfile): Use them to normalize spacing a bit in copied files.
58512         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
58513         Normalize leading white space and remove trailing white space.
58514
58515         * config/texinfo.tex: Sync with texinfo.
58516
58517         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
58518         strtoul.c from libc, to merge coreutils whitespace changes.
58519
58520         * config/srclist.txt: Get the following m4 files from gettext:
58521         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
58522         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
58523         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
58524         wint_t.m4.
58525
58526 2003-08-12  Karl Berry  <karl@gnu.org>
58527
58528         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
58529         been made.
58530
58531 2003-08-11  Paul Eggert  <eggert@twinsun.com>
58532
58533         * modules/gnu-source, m4/gnu-source.m4:
58534         Remove; we're assuming Autoconf 2.54 or later now.
58535         Suggested by Bruno Haible.
58536         * MODULES.html.sh (func_all_modules): Remove gnu-source.
58537
58538 2003-08-11  Bruno Haible  <bruno@clisp.org>
58539
58540         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
58541
58542 2003-08-11  Bruno Haible  <bruno@clisp.org>
58543
58544         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
58545         (vasnprintf): Use it instead of wcslen.
58546
58547 2003-08-11  Bruno Haible  <bruno@clisp.org>
58548
58549         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
58550         value to ensure that _Bool promotes to int. Use #define for _Bool when
58551         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
58552
58553 2003-08-10  Karl Berry  <karl@gnu.org>
58554
58555         * lib/regex.h: update from libc (whitespace fix).
58556
58557 2003-08-09  Paul Eggert  <eggert@twinsun.com>
58558
58559         Merge some files from coreutils.  These changes were
58560         originally made by Jim Meyering.
58561         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
58562         many older Unixes require this.
58563         * lib/alloca.c (alloca): Remove cast to argument of free;
58564         no longer needed in C89.
58565         * lib/alloca_.h, regex.h: Fix white space to match
58566         what GNU indent does.
58567
58568 2003-08-09  Paul Eggert  <eggert@twinsun.com>
58569
58570         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
58571         apparently Emacs's Unicode mode got confused before my 2003-08-05
58572         checkin.
58573
58574 2003-08-08  Paul Eggert  <eggert@twinsun.com>
58575
58576         * m4/extensions.m4: New file.
58577         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
58578         Require gl_USE_SYSTEM_EXTENSIONS.
58579         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
58580         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
58581
58582 2003-08-08  Paul Eggert  <eggert@twinsun.com>
58583
58584         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
58585         * modules/extensions, modules/gnu-source: New files.
58586         * modules/timespec, modules/unlocked-io: Depend on extensions.
58587
58588 2003-08-07  Paul Eggert  <eggert@twinsun.com>
58589
58590         * modules/restrict: New file.
58591         * MODULES.html.sh (func_all_modules): Add restrict.
58592         * modules/regex: Depend on restrict.
58593
58594 2003-08-07  Paul Eggert  <eggert@twinsun.com>
58595
58596         * m4/restrict.m4: New file.
58597         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
58598
58599 2003-08-07  Bruno Haible  <bruno@clisp.org>
58600
58601         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
58602         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
58603
58604 2003-08-07  Bruno Haible  <bruno@clisp.org>
58605
58606         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
58607         makes the module 'getndelim2' compatible with the module 'getline'.
58608
58609 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58610
58611         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
58612         byte with "\201" to avoid glitches when editing that source file
58613         with multi-gnome-terminal.
58614
58615 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58616
58617         * lib/bumpalloc.h: Remove.
58618
58619 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58620
58621         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
58622         * modules/bumpalloc: Remove.
58623
58624 2003-08-04  Paul Eggert  <eggert@twinsun.com>
58625
58626         * lib/getloadavg.c: Change copyright notice and spacing to conform to
58627         GNU coding style.
58628
58629         Merge from coreutils.
58630         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
58631         1. From glibc.
58632         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
58633         from Karl Berry, implemented by Jim Meyering.
58634         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
58635         from Dmitry V. Levin.
58636         Remove anachronistic cast of xrealloc.
58637         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
58638         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
58639         type. Otherwise, it wouldn't compile with at least /bin/cc on
58640         ymp-cray-unicos9.0.2.X.
58641         Combine two mostly-identical uses of alloca into one.
58642         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
58643
58644 2003-08-04  Dave Love  <d.love@dl.ac.uk>
58645
58646         [From Emacs.]
58647
58648         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
58649         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
58650         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
58651         obsolete NLIST_NAME_UNION.
58652         [__GNU__]: Undef BSD and FSCALE.
58653         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
58654
58655 2003-08-03  Paul Eggert  <eggert@twinsun.com>
58656
58657         * lib/stdbool_.h (_Bool): Make it signed char, instead of
58658         an enum type, so that it's guaranteed to promote to int.  See:
58659         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
58660
58661 2003-08-03  Karl Berry  <karl@gnu.org>
58662
58663         * config/depcomp: update from automake.
58664
58665 2003-07-31  Paul Eggert  <eggert@twinsun.com>
58666
58667         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
58668         (strerror): Don't assume that a printable int fits in 14 bytes.
58669
58670 2003-07-31  Bruno Haible  <bruno@clisp.org>
58671
58672         * modules/getpass-gnu: New file.
58673         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
58674
58675 2003-07-31  Bruno Haible  <bruno@clisp.org>
58676
58677         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
58678
58679 2003-07-24  Karl Berry  <karl@gnu.org>
58680
58681         * config/missing: update from automake.
58682
58683 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
58684             Bruno Haible  <bruno@clisp.org>
58685
58686         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
58687         * lib/getline.c (getline, getdelim): Likewise.
58688         Remove _GNU_SOURCE define; now it's defined in config.h through
58689         m4/getline.m4.
58690
58691 2003-07-23  Karl Berry  <karl@gnu.org>
58692
58693         * config/config.sub: update from prep.
58694
58695 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58696
58697         * modules/xalloc (Depends-on): Add exitfail.
58698         * modules/xmemcoll: Likewise.
58699
58700 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58701
58702         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
58703         over-parenthesization in macros.
58704
58705         Sync with coreutils.
58706
58707         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
58708         required by C99.
58709
58710         Use `exit_failure' for xalloc and xmemcoll instead of their own
58711         private exit-failure variables.
58712         * lib/xalloc.h (xalloc_exit_failure): Remove.
58713         * lib/xmalloc.c: Likewise.  Include exitfail.h.
58714         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
58715         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
58716         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
58717         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
58718
58719 2003-07-20  Jim Meyering  <jim@meyering.net>
58720
58721         * modules/closeout (Depends-on): Add exitfail.
58722         Suggestion from Bruno Haible.
58723
58724 2003-07-19  Karl Berry  <karl@gnu.org>
58725
58726         * config/config.sub: update from prep.
58727
58728 2003-07-18  Paul Eggert  <eggert@twinsun.com>
58729
58730         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
58731         Remove.
58732         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
58733         to test that it can stand by itself.  Include "exitfail.h".
58734         Clients should set exit_failure instead.
58735         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
58736
58737 2003-07-18  Bruno Haible  <bruno@clisp.org>
58738
58739         * modules/getndelim2: New file.
58740         * modules/getline: Share files with module getndelim2.
58741         * modules/getnline: Depend on getndelim2 instead of sharing files with
58742         it. Add getnline.c to lib_SOURCES.
58743         * MODULES.html.sh (func_all_modules): Add getndelim2.
58744
58745 2003-07-18  Bruno Haible  <bruno@clisp.org>
58746
58747         * m4/getndelim2.m4: New file.
58748         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
58749         invoke gl_PREREQ_GETNDELIM2.
58750         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
58751         gl_PREREQ_GETNDELIM2.
58752         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
58753         gl_GETNDELIM2.
58754
58755 2003-07-18  Bruno Haible  <bruno@clisp.org>
58756
58757         * lib/getndelim2.h: New file.
58758         * lib/getndelim2.c: Make into a module of its own. Include config.h,
58759         getndelim2.h.
58760         (getndelim2): Make non-static. Change return type to ssize_t.
58761         * lib/getline.h: Change argument names.
58762         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
58763         * lib/getnline.c: Include getndelim2.h.
58764
58765 2003-07-18  Andreas Schwab  <schwab@suse.de>
58766
58767         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
58768
58769 2003-07-17  Karl Berry  <karl@gnu.org>
58770
58771         * config/config.sub: update from prep.
58772
58773 2003-07-17  Bruno Haible  <bruno@clisp.org>
58774
58775         * modules/getnline: New file.
58776         * modules/getline: Add lib/getndelim2.c to source file list.
58777         * MODULES.html.sh (func_all_modules): Add getnline.
58778
58779 2003-07-17  Bruno Haible  <bruno@clisp.org>
58780
58781         * m4/getnline.m4: New file.
58782
58783 2003-07-17  Bruno Haible  <bruno@clisp.org>
58784
58785         * m4/Makefile.am.in: Remove file.
58786         * m4/Makefile.am: Remove file.
58787         * m4/Makefile.in: Remove file.
58788
58789 2003-07-17  Bruno Haible  <bruno@clisp.org>
58790
58791         * lib/getnline.h: New file.
58792         * lib/getnline.c: New file.
58793         * lib/getndelim2.c: New file, extracted from getline.c.
58794         (getndelim2): Renamed from getdelim2, with added nmax argument.
58795         * lib/getline.c: Include getndelim2.c.
58796         (getdelim2): Moved out to getndelim2.c.
58797         (getline, getdelim): Update.
58798
58799 2003-07-17  Bruno Haible  <bruno@clisp.org>
58800
58801         * lib/Makefile.am: Remove file.
58802         * lib/Makefile.in: Remove file.
58803
58804 2003-07-17  Bruno Haible  <bruno@clisp.org>
58805
58806         * configure.in: Remove file.
58807         * Makefile.in: Remove file.
58808
58809 2003-07-17  Bruno Haible  <bruno@clisp.org>
58810
58811         * MODULES.html.sh: Put the </BODY> right before </HTML>.
58812
58813 2003-07-16  Karl Berry  <karl@gnu.org>
58814
58815         * config/srclist-update: was running fixlicense twice, which caused
58816                 texinfo.tex to be nullified for some reason.  Simplify,
58817                 $gplsrc is no longer needed as far as I can see?
58818
58819 2003-07-16  Jim Meyering  <jim@meyering.net>
58820
58821         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
58822
58823 2003-07-15  Paul Eggert  <eggert@twinsun.com>
58824
58825         * config/srclist.txt: Get the following files from gettext-runtime/intl
58826         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
58827         ref-del.sin.  From Bruno Haible.
58828         * config/srclist-update (fixfile): Change grep pattern again, since the
58829         previous fix didn't work (there was another trailing $).  Use
58830         '[$]' to escape the $s.
58831
58832 2003-07-15  Karl Berry  <karl@gnu.org>
58833
58834         * lib/vasnprintf.c: update from gettext.
58835
58836 2003-07-15  Karl Berry  <karl@gnu.org>
58837
58838         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
58839         gets expanded when surrounded by '$'.
58840
58841 2003-07-15  Jim Meyering  <jim@meyering.net>
58842
58843         * modules/save-cwd: Don't depend on error.  From Derek Price.
58844
58845 2003-07-15  Jim Meyering  <jim@meyering.net>
58846
58847         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
58848
58849 2003-07-14  Simon Josefsson  <jas@extundo.com>
58850
58851         * modules/mempcpy: New file.
58852         * MODULES.html.sh (func_all_modules): Add mempcpy.
58853
58854 2003-07-14  Simon Josefsson  <jas@extundo.com>
58855
58856         * m4/mempcpy.m4: New file.
58857
58858 2003-07-14  Simon Josefsson  <jas@extundo.com>
58859
58860         * lib/mempcpy.h: New file.
58861         * lib/mempcpy.c: New file.
58862
58863 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58864
58865         * modules/getdate, modules/posixtm: Depend on mktime.
58866
58867 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58868
58869         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
58870         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
58871         unicodeio.c, unicodeio.h, unlocked-io.h:
58872         Switch from LGPL to GPL.
58873
58874 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58875
58876         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
58877         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
58878         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
58879         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
58880         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
58881         updated automatically by ../config/srclist-update.  This changes
58882         their license from LPGL to GPL.
58883
58884 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58885
58886         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
58887         assumed to refer to the root of the most recent stable gettext version.
58888         * config/srclistvars.sh: Add defaults for eggert.
58889         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
58890         Match "This program" as well as "The program".  This is needed
58891         for gettext.
58892
58893 2003-07-14  Jim Meyering  <jim@meyering.net>
58894
58895         Don't emit diagnostics.  Let callers do that.
58896         * lib/save-cwd.c: Don't include "error.h".
58897         (save_cwd): Don't call error.  Ensure that errno is valid
58898         when returning nonzero.
58899
58900         * lib/save-cwd.h (restore_cwd): Update prototype.
58901         * lib/save-cwd.c (restore_cwd): Remove two parameters.
58902         Simplify.  Don't call error upon failure.  Let callers do that.
58903         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
58904         when auditing is enabled.  But don't bother updating the #if.
58905
58906 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
58907
58908         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
58909         it breaks C++ compilation.
58910         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
58911
58912 2003-07-10  Simon Josefsson  <jas@extundo.com>
58913
58914         * modules/strchrnul (Makefile.am): Add strchrnul.h.
58915
58916 2003-07-10  Jim Meyering  <jim@meyering.net>
58917
58918         * m4/clock_time.m4: Remove trailing blank.
58919         * m4/intmax_t.m4: Likewise.
58920
58921 2003-07-10  Jim Meyering  <jim@meyering.net>
58922
58923         * lib/vasnprintf.c: Remove trailing blanks.
58924         Make cpp indentation consistent.
58925
58926 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58927
58928         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
58929         posixver.c, strftime.c, strnlen.c, strverscmp.c:
58930         Switch from LGPL to GPL.
58931
58932 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58933
58934         * config/srclist.txt: Sort sublists.  Add
58935         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
58936         that differ from gnulib for one reason or another; we'd like this list
58937         to be smaller but for now let's document what we have.
58938
58939 2003-07-08  Paul Eggert  <eggert@twinsun.com>
58940
58941         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
58942         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
58943         and sweeter "eval x=$x".
58944         * config/srclist.txt: Get lib/argp* from glibc.
58945
58946 2003-07-07  Paul Eggert  <eggert@twinsun.com>
58947
58948         * lib/mktime.c: Fix some boundary cases and remove need for floating
58949         point.
58950
58951         Issue a compile-time diagnostic if time_t is floating point, or if
58952         two's complement arithmetic is not in effect, or if arithmetic
58953         right shift does not propagate the sign.  These assumptions were
58954         all in the original code but they weren't checked.
58955
58956         (TIME_T_MIDPOINT, verify): New macros.
58957         (__isleap): Remove; it has integer overflow problems.
58958         (leapyear): New function, without those problems.
58959         (ydhms_tm_diff): Remove; splitting into two parts.
58960         (ydhms_diff): New function, containing the arithmetic part of
58961         the old ydhms_tm_diff function.  Issue a compile-time
58962         diagnostic if we are not using C99 integer division.
58963         Avoid casts when possible.
58964         (guess_time_tm): New function, containing the checking part of
58965         the old ydhms_tm_diff function.  Return the new value, rather than
58966         the difference between it and the old.  Accept a new argument T
58967         so that *T specifies the old value.  Check for overflow in the result.
58968
58969         (__mktime_internal): Use a time_t offset, not a long int offset.
58970         This undoes the 2003-06-04 change, which is no longer needed now
58971         that we have better overflow checking.
58972         (localtime_offset): Likewise.
58973
58974         (__mktime_internal): Avoid harmful overflow on hosts where time_t
58975         and long are 64-bit but int is only 32-bit.
58976         (ydhms_diff): Use long int to store year1 and yday1.
58977         Issue a compile-time diagnostic if long int is not wide enough.
58978
58979         (__mktime_internal): Use long int to store adjusted year and yday.
58980         Use plain C rather than preprocessor commands, if that doesn't
58981         affect efficiency.
58982         Check for overflow (and try to repair) after each probe
58983         rather than checking only at the very end.  This avoids some bugs
58984         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
58985         does not equal GMT offset at maximum time).
58986         Use integer to check for overflow rather than floating point; this
58987         is more portable to non-IEEE hosts, and is a tad faster.
58988         When we detect that we are oscillating between two values,
58989         don't check whether tm_isdst has the requested value, since
58990         we already know the answer.  When tm_isdst has the wrong value,
58991         use a different heuristic to find the right one, based on the
58992         extreme values actually observed in practice in tz2003a,
58993         rather than the (overly optimistic) "previous 3 calendar quarters".
58994
58995         (not_equal_tm, print_tm, check_result): Use "const T" rather than
58996         "T const" to accommodate glibc style.
58997         (check_result): Use less-confusing report format.  "long" -> "long int.
58998         (main): Likewise.
58999         Don't loop if the iteration overflows time_t.
59000         Allow a negative step in the iteration.
59001
59002 2003-07-06  Karl Berry  <karl@gnu.org>
59003
59004         * config/depcomp: update from automake.
59005         * config/config.sub: update from prep.
59006
59007 2003-07-03  Karl Berry  <karl@gnu.org>
59008
59009         * config/config.guess: update from prep.
59010
59011 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59012
59013         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
59014         xreadlink.c now includes it unconditionally.
59015
59016 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59017
59018         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
59019         having it depend on HAVE_SYS_TYPES_H.
59020
59021 2003-07-01  Bruno Haible  <bruno@clisp.org>
59022
59023         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
59024         <sys/types.h> should be sufficient.
59025         Reported by Paul Eggert.
59026
59027 2003-06-26  Karl Berry  <karl@gnu.org>
59028
59029         * config/depcomp: update from automake.
59030
59031 2003-06-26  Bruno Haible  <bruno@clisp.org>
59032
59033         * modules/human: Depend on module stdbool.
59034
59035 2003-06-25  Bruno Haible  <bruno@clisp.org>
59036
59037         * modules/readlink: New file.
59038         * modules/xreadlink: Depend on it.
59039         * MODULES.html.sh (func_all_modules): Add readlink.
59040
59041 2003-06-25  Bruno Haible  <bruno@clisp.org>
59042
59043         * m4/readlink.m4: New file.
59044
59045 2003-06-25  Bruno Haible  <bruno@clisp.org>
59046
59047         * lib/readlink.c: New file.
59048
59049 2003-06-22  Karl Berry  <karl@gnu.org>
59050
59051         * config/srclist.txt: update mkinstalldirs from automake.
59052         * config/mkinstalldirs: update.
59053
59054 2003-06-22  Bruno Haible  <bruno@clisp.org>
59055
59056         Portability to mingw32.
59057         * m4/ssize_t.m4: New file, from GNU gettext.
59058         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
59059         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
59060
59061 2003-06-22  Bruno Haible  <bruno@clisp.org>
59062
59063         * modules/safe-read: Add m4/ssize_t.m4.
59064         * modules/xreadlink: Add m4/ssize_t.m4.
59065
59066 2003-06-20  Bruno Haible  <bruno@clisp.org>
59067
59068         Assume C89, so PARAMS isn't needed.
59069         * lib/unicodeio.h (PARAMS): Remove.
59070         * lib/unicodeio.c: Don't use PARAMS.
59071
59072 2003-06-18  Karl Berry  <karl@gnu.org>
59073
59074         * config/config.{guess,sub}: update from prep.
59075
59076 2003-06-18  Jim Meyering  <jim@meyering.net>
59077
59078         Merge changes from coreutils.
59079         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
59080         Remove explicit declarations of xmalloc and realloc.
59081         Include xalloc.h.
59082         (read_utmp): Remove anachronistic cast of xmalloc.
59083
59084 2003-06-17  Paul Eggert  <eggert@twinsun.com>
59085
59086         Assume C89, so PARAMS isn't needed.
59087         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
59088         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
59089         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
59090         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
59091         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
59092         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
59093         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
59094         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
59095         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
59096         lib/xstrtod.h, lib/xstrtol.h: Likewise.
59097         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
59098         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
59099         no longer needed. Anyway, config.h should always be included before any
59100         other file.
59101
59102 2003-06-11  Simon Josefsson  <jas@extundo.com>
59103
59104         * modules/sysexits: New file.
59105         * MODULES.html.sh (func_all_modules): Add sysexits.
59106
59107 2003-06-11  Simon Josefsson  <jas@extundo.com>
59108
59109         * lib/sysexit_.h: New file.
59110
59111 2003-06-11  Derek Price  <derek@ximbiot.com>
59112
59113         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
59114         necessary.
59115
59116 2003-06-11  Bruno Haible  <bruno@clisp.org>
59117
59118         * m4/sysexits.m4: New file.
59119
59120 2003-06-10  Simon Josefsson  <jas@extundo.com>
59121
59122         * lib/argp.h: New file, from glibc.
59123         * lib/argp-ba.c: New file, from glibc.
59124         * lib/argp-eexst.c: New file, from glibc.
59125         * lib/argp-fmtstream.c: New file, from glibc.
59126         * lib/argp-fmtstream.h: New file, from glibc.
59127         * lib/argp-fs-xinl.c: New file, from glibc.
59128         * lib/argp-help.c: New file, from glibc.
59129         * lib/argp-namefrob.h: New file, from glibc.
59130         * lib/argp-parse.c: New file, from glibc.
59131         * lib/argp-pv.c: New file, from glibc.
59132         * lib/argp-pvh.c: New file, from glibc.
59133         * lib/argp-xinl.c: New file, from glibc.
59134
59135 2003-06-10  Simon Josefsson  <jas@extundo.com>
59136
59137         * modules/strchrnul: New file.
59138
59139 2003-06-10  Simon Josefsson  <jas@extundo.com>
59140
59141         * modules/argp: New file.
59142
59143 2003-06-10  Simon Josefsson  <jas@extundo.com>
59144
59145         * m4/strchrnul.m4: New file.
59146
59147 2003-06-10  Simon Josefsson  <jas@extundo.com>
59148
59149         * lib/strchrnul.h: New file.
59150         * lib/strchrnul.c: New file.
59151
59152 2003-06-10  Bruno Haible  <bruno@clisp.org>
59153
59154         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
59155
59156 2003-06-07  Karl Berry  <karl@gnu.org>
59157
59158         * config/config.{guess,sub}: update from prep.
59159
59160 2003-06-07  Jim Meyering  <jim@meyering.net>
59161
59162         * modules/strtod: Use $(...) notation, not @...@ for
59163         AC_REPLACE'd variables.
59164         * modules/localcharset: Likewise.
59165
59166 2003-06-07  Jim Meyering  <jim@meyering.net>
59167
59168         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
59169         in place of my name in the copyright comment.
59170         Remove definition and uses of __P.
59171
59172         From coreutils.
59173         * lib/stat.c: Don't declare xmalloc explicitly.
59174         Instead, include "xalloc.h".
59175         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
59176         xrealloc, and xcalloc return values.
59177         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
59178         Improve comment.
59179         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
59180
59181 2003-06-07  Bruno Haible  <bruno@clisp.org>
59182
59183         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
59184         avoid AC_CONFIG_LINKS.
59185         * modules/fnmatch (Makefile.am): Use explicit creation rule for
59186         fnmatch.h, to avoid AC_CONFIG_LINKS.
59187         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
59188
59189 2003-06-07  Bruno Haible  <bruno@clisp.org>
59190
59191         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
59192         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
59193         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59194         directory.
59195         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
59196         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59197         directory.
59198
59199 2003-06-06  Jim Meyering  <jim@meyering.net>
59200
59201         Merge from coreutils.
59202         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
59203         Consolidate declarations and initializations of *_base* locals.
59204
59205         Merge from coreutils.
59206         This avoids a core dump on systems without GNU putenv,
59207         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
59208         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
59209         (unsetenv): New static function, from GNU libc.
59210         (rpl_putenv): Use it.
59211
59212         * lib/modechange.c: Remove trailing blanks.
59213
59214         Merge from coreutils.
59215         * lib/fsusage.c: Remove declaration of statfs.
59216         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
59217
59218         * lib/posixtm.c: Include <stdbool.h> unconditionally.
59219
59220 2003-06-06  Jim Meyering  <jim@meyering.net>
59221
59222         * lib/stdbool_.h: Renamed from stdbool.h.in.
59223
59224 2003-06-06  Jim Meyering  <jim@meyering.net>
59225             Bruno Haible  <bruno@clisp.org>
59226
59227         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
59228         Adjust Makefile.am snippet not to redirect directly to target.
59229         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
59230
59231 2003-06-05  Paul Eggert  <eggert@twinsun.com>
59232
59233         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
59234         mismatch, look in future quarters as well as past.  This fixes a
59235         bug when processing fall-backwards gaps immediately after a long
59236         period of daylight-saving time.
59237
59238         * lib/mktime.c: Assume freestanding C89 or better.
59239         (HAVE_LIMITS_H): Remove.  Assume it's 1.
59240         (__P): Remove; not used.
59241         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
59242         (mktime, not_equal_tm, print_tm, check_result,
59243         main): Use prototypes.  Use const * where appropriate.
59244         (main): Fix typo in testing code that uncovered by above changes.
59245         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
59246
59247 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59248
59249         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
59250         locale.h, localeconv.  This merges changes from coreutils.
59251
59252         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
59253         It can be removed after the next Autoconf is released.
59254         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
59255         needed.
59256
59257 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59258
59259         * lib/mktime.c: Fix Debian bug 177940
59260         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
59261         (localtime_offset): Now long int, not time_t, because we want it
59262         to be guaranteed to be signed.  All uses changed.
59263         (__mktime_internal): If overflow would occur when adding offset,
59264         don't add it.
59265
59266         Merge 'human' changes from coreutils.  Rewrite to support
59267         locale-specific notations like thousands separators.
59268         * lib/human.c: Simplify authorship notice.
59269         Include human.h immediately after config.h.
59270         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
59271         <limits.h>: Do not include, since human.h does.
59272         (SIZE_MAX, UINTMAX_MAX): New macros.
59273         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
59274         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
59275         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
59276         (power_letter): Renamed from suffixes.
59277         (generate_suffix_backwards): Remove.
59278         (adjust_value): Now takes int style (because of human.h changes)
59279         and long double value (for greater precision on some platforms).
59280         (group_number): New function.
59281         (human_readable): Use it.  Use integer options, not enum.
59282         Put the options before the sizes in the arg list.
59283         Support all the new options.
59284         The old human_readable function has been removed;
59285         use inttostr.h instead.
59286         (human_readable, default_block_size, humblock):
59287         Use uintmax_t, not int, for block sizes.
59288         (human_readable_inexact, block_size_types): Remove.
59289         (block_size_opts): New constant.
59290         (human_options): Renamed from human_block_size, with new signature
59291         that allows block sizes up to UINTMAX_MAX.  All callers changed.
59292         * lib/human.h: Add copyright and authorship notice.
59293         Include <limits.h> and <stdbool.h> unconditionally.
59294         (PARAMS): Remove.  All uses removed.
59295         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
59296         (enum human_inexact_style): Remove tag; now a nameless enum.
59297         (human_floor, human_ceiling, human_round_to_even): Now have
59298         values 2, 0, 1 rather than -1, 1, 0.
59299         (human_group_digits, human_suppress_point_zero, human_autoscale,
59300         human_base_1024, human_SI, human_B): New constants.
59301         (human_readable_inexact, human_block_size): Remove.
59302         (human_readable): Size args are now uintmax_t, not int.
59303         (human_options): New decl.
59304
59305         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
59306         unnecessary now that we assume C89 or better.  This change
59307         imported from coreutils.
59308
59309         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
59310         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
59311         in the 2003-05-30 sync from glibc.
59312
59313         .h files should stand alone, but we shouldn't include <sys/types.h>
59314         if we can get away with just <stddef.h>.
59315
59316         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
59317         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
59318         rather than <sys/types.h>, as we merely need size_t.
59319         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
59320         to get size_t.
59321         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
59322         Include <stdio.h>, to get FILE.
59323         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
59324         memcasecmp.h has included <stddef.h> and all we need is size_t.
59325         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
59326         our interface, instead of including <sys/types.h>
59327
59328 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59329
59330         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
59331         now, as glibc mktime is buggy on non-glibc systems.
59332
59333 2003-06-03  Karl Berry  <karl@gnu.org>
59334
59335         * config/config.sub: update from prep.
59336
59337 2003-06-02  Paul Eggert  <eggert@twinsun.com>
59338
59339         [from coreutils]
59340         Fix some minor time-related bugs with POSIX time arguments.
59341         Some valid time stamps were being rejected (notably -1, and
59342         time stamps before 1900 on 64-bit hosts).  And some invalid
59343         time stamps were being accepted, e.g. September 31.
59344
59345         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
59346         that we can return (time_t) -1 successfully.
59347         * lib/posixtm.c: Likewise.
59348         [HAVE_STDBOOL_H]: Include <stdbool.h>.
59349         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
59350         (t): Remove static var.
59351         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
59352         of static var.  All uses changed.
59353         (year): Do not reject years before 1900; they can occur with
59354         64-bit time_t.
59355         (posix_time_parse): Do not check for out-of-range components;
59356         that is now the caller's responsibility, since our checks were
59357         only approximations.
59358         (posixtime): Use mktime to check for out-of-range components,
59359         since it knows them exactly.
59360         If mktime returns (time_t) -1, check whether an error actually occurred
59361         by invoking localtime on -1.
59362         (main) [TEST_POSIXTIME]: Check for input data errors, and report
59363         posixtime failures better.
59364         Improve the test data (in comments only).
59365
59366 2003-06-02  Karl Berry  <karl@gnu.org>
59367
59368         * config/mkinstalldirs (version): new variable.
59369         (--version): new option.
59370         (usage): improve message.
59371
59372 2003-05-30  Karl Berry  <karl@gnu.org>
59373
59374         * lib/mktime.c: update from libc.
59375
59376 2003-05-30  Bruno Haible  <bruno@clisp.org>
59377
59378         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
59379         * config/config.rpath: Upgrade to gettext-0.12.1.
59380
59381 2003-05-30  Bruno Haible  <bruno@clisp.org>
59382
59383         * m4/gettext.m4: Upgrade to gettext-0.12.1.
59384         * m4/nls.m4: New file, from gettext-0.12.1.
59385         * m4/po.m4: New file, from gettext-0.12.1.
59386         * m4/progtest.m4: Upgrade to gettext-0.12.1.
59387
59388 2003-05-30  Bruno Haible  <bruno@clisp.org>
59389
59390         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
59391         * lib/localcharset.h: Likewise.
59392         * lib/localcharset.c: Likewise.
59393
59394 2003-05-29  Karl Berry  <karl@gnu.org>
59395
59396         * config/config.rpath: update from gettext.
59397
59398 2003-05-28  Paul Eggert  <eggert@twinsun.com>
59399
59400         Assume the headers required for C89 freestanding compilers.
59401         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
59402         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
59403         * m4/human.m4 (gl_HUMAN): Likewise.
59404         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
59405         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
59406         * m4/userspec.m4 (gl_USERSPEC): Likewise.
59407         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
59408         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
59409         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
59410
59411 2003-05-28  Paul Eggert  <eggert@twinsun.com>
59412
59413         Assume the headers required for C89 freestanding compilers.
59414         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
59415         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
59416         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
59417         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
59418         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
59419         define, since <limits.h> is guaranteed to do that.
59420         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
59421         * lib/exclude.c: Include <stdbool.h> unconditionally.
59422         * lib/tempname.c: Include <stddef.h> unconditionally.
59423         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
59424         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
59425         <stddef.h> does that.
59426         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
59427         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
59428         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
59429         needed.
59430         * lib/xstrtol.c: Likewise.
59431         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
59432         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
59433
59434         * lib/addext.c (addext): Use assignment rather than cast, to avoid
59435         warnings on some platforms.
59436
59437         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
59438         arbitrarily.
59439
59440 2003-05-26  Jim Meyering  <jim@meyering.net>
59441
59442         Merge in a change from coreutils:
59443         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
59444         that is guaranteed to be `no'.  Use `no_such_member' to indicate
59445         that condition, rather than `-1' which is slightly misleading.
59446         Change the name of the cache variable to have the gl_ prefix.
59447         Prompted by a patch from Richard Dawe for DJGPP.
59448
59449 2003-05-24  Karl Berry  <karl@gnu.org>
59450
59451         * config/config.guess: update from prep.
59452
59453 2003-05-22  Karl Berry  <karl@gnu.org>
59454
59455         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
59456
59457 2003-05-20  Karl Berry  <karl@gnu.org>
59458
59459         * config/config.guess: update from prep.
59460
59461 2003-05-18  Karl Berry  <karl@gnu.org>
59462
59463         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
59464         might actually be set by the user.
59465
59466         * config/depcomp, install-sh, mdate-sh: update from automake.
59467
59468 2003-05-17  Bruno Haible  <bruno@clisp.org>
59469
59470         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
59471         invalid expansion for AC_EGREP_CPP.
59472         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
59473         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
59474         Suggested by Akim Demaille <akim@epita.fr> in
59475         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
59476
59477 2003-05-12  Jim Meyering  <jim@meyering.net>
59478
59479         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
59480         the space-padded-by-default conversion specifiers, %e, %k, %l.
59481
59482 2003-05-12  Bruno Haible  <bruno@clisp.org>
59483
59484         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
59485         the string is longer than 4 KB.
59486
59487 2003-05-11  Karl Berry  <karl@gnu.org>
59488
59489         * config/config.{guess,sub}: update from prep.
59490
59491 2003-05-09  Bruno Haible  <bruno@clisp.org>
59492
59493         * modules/error: Add m4/strerror_r.m4 to file list.
59494
59495 2003-05-03  Bruno Haible  <bruno@clisp.org>
59496
59497         Upgrade to Unicode-4.0.
59498         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
59499         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
59500         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
59501         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
59502         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
59503         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
59504         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
59505         Change width of U+E0100..U+E01EF from 1 to 0.
59506
59507 2003-04-25  Jim Meyering  <jim@meyering.net>
59508
59509         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
59510         of type size_t, not int.
59511
59512 2003-04-25  Bruno Haible  <bruno@clisp.org>
59513
59514         * lib/copy-file.c: Include <stddef.h>, for size_t.
59515
59516 2003-04-21  Paul Eggert  <eggert@twinsun.com>
59517
59518         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
59519         code which expansion is under static control.  Patch imported from
59520         Akim Demaille's patch to Bison; see
59521         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
59522
59523 2003-04-14  Bruno Haible  <bruno@clisp.org>
59524
59525         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
59526
59527 2003-04-11  Jim Meyering  <jim@meyering.net>
59528
59529         Merge changes from Coreutils.
59530
59531         2003-03-22  Jim Meyering  <jim@meyering.net>
59532
59533         * lib/strftime.c (widen): Cast alloca return value to proper type.
59534
59535         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
59536
59537         From GNU libc.
59538         * lib/strftime.c (my_strftime): Handle very large width
59539         specifications for numeric values correctly.  Improve checks for
59540         overflow.
59541
59542         2003-01-19  Jim Meyering  <jim@meyering.net>
59543
59544         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
59545         definitions.
59546         (nl_get_alt_digit) [! defined my_strftime]: Define.
59547         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
59548         _nl_get_alt_digit and _nl_get_walt_digit.
59549
59550         * lib/strftime.c (my_strftime): Merge in locale-related changes from
59551         libc. These changes have no effect outside of _LIBC.
59552
59553 2003-04-10  Bruno Haible  <bruno@clisp.org>
59554
59555         * modules/findprog: New file.
59556         * MODULES.html.sh (func_all_modules): Add it.
59557
59558 2003-04-10  Bruno Haible  <bruno@clisp.org>
59559
59560         * m4/findprog.m4: New file.
59561         * m4/eaccess.m4: New file.
59562
59563 2003-04-10  Bruno Haible  <bruno@clisp.org>
59564
59565         * lib/findprog.h: New file, from GNU gettext.
59566         * lib/findprog.c: New file, from GNU gettext.
59567
59568 2003-04-05  Jim Meyering  <jim@meyering.net>
59569
59570         Merge changes from Coreutils.
59571
59572         * lib/exclude.h (PARAMS): Remove definition and uses.
59573         * lib/exclude.c: Remove uses of `PARAMS'.
59574
59575         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
59576         Add test-cases for DOS filenames. Declare program_name.
59577         (main): Set up program_name.  Patch by Rich Dawe.
59578
59579         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
59580         error from mntctl.
59581         Use mntctl's return value to drive the entry-processing loop, since
59582         we can't rely on the value of the vmt_length member in the last
59583         entry.  On some systems doing so could result in exhausting
59584         virtual memory.  Based in part on a patch from Mike Jetzer.
59585
59586 2003-04-04  Bruno Haible  <bruno@clisp.org>
59587
59588         * modules/linebreak: New file.
59589         * MODULES.html.sh (func_all_modules): Add it.
59590
59591 2003-04-04  Bruno Haible  <bruno@clisp.org>
59592
59593         * m4/linebreak.m4: New file.
59594
59595 2003-04-04  Bruno Haible  <bruno@clisp.org>
59596
59597         * lib/linebreak.h: New file, from GNU gettext.
59598         * lib/linebreak.c: New file, from GNU gettext with slight
59599         modifications.
59600         * lib/lbrkprop.h: New file, from GNU gettext.
59601
59602 2003-04-03  Bruno Haible  <bruno@clisp.org>
59603
59604         * modules/utf8-ucs4: New file.
59605         * modules/utf16-ucs4: New file.
59606         * modules/ucs4-utf8: New file.
59607         * modules/ucs4-utf16: New file.
59608         * MODULES.html.sh (func_all_modules): Add them.
59609
59610 2003-04-03  Bruno Haible  <bruno@clisp.org>
59611
59612         * m4/utf-ucs4.m4: New file.
59613         * m4/ucs4-utf.m4: New file.
59614
59615 2003-04-03  Bruno Haible  <bruno@clisp.org>
59616
59617         * lib/utf8-ucs4.h: New file, from GNU gettext.
59618         * lib/utf16-ucs4.h: New file, from GNU gettext.
59619         * lib/ucs4-utf8.h: New file, from GNU gettext.
59620         * lib/ucs4-utf16.h: New file, from GNU gettext.
59621
59622 2003-04-02  Bruno Haible  <bruno@clisp.org>
59623
59624         * modules/binary-io: New file.
59625         * MODULES.html.sh (func_all_modules): Add it.
59626
59627 2003-04-02  Bruno Haible  <bruno@clisp.org>
59628
59629         * lib/binary-io.h: New file, from GNU gettext.
59630
59631 2003-04-01  Bruno Haible  <bruno@clisp.org>
59632
59633         * modules/pathname: New file.
59634         * MODULES.html.sh (func_all_modules): Add it.
59635
59636 2003-04-01  Bruno Haible  <bruno@clisp.org>
59637
59638         * lib/pathname.h: New file, from GNU gettext.
59639         * lib/concatpath.c: New file, from GNU gettext.
59640
59641 2003-03-30  Bruno Haible  <bruno@clisp.org>
59642
59643         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
59644
59645 2003-03-30  Bruno Haible  <bruno@clisp.org>
59646
59647         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
59648         function chown() doesn't exist.
59649
59650 2003-03-28  Bruno Haible  <bruno@clisp.org>
59651
59652         * modules/copy-file: New file.
59653         * MODULES.html.sh (func_all_modules): Add it.
59654
59655 2003-03-28  Bruno Haible  <bruno@clisp.org>
59656
59657         * m4/copy-file.m4: New file.
59658
59659 2003-03-28  Bruno Haible  <bruno@clisp.org>
59660
59661         * lib/copy-file.h: New file, from GNU gettext.
59662         * lib/copy-file.c: New file, from GNU gettext.
59663
59664 2003-03-18  Jim Meyering  <jim@meyering.net>
59665
59666         * lib/quote.c (quote_n): Fix typo in comment.
59667
59668 2003-03-18  Bruno Haible  <bruno@clisp.org>
59669
59670         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
59671         checking.
59672         * m4/onceonly_2_57.m4: Likewise.
59673
59674 2003-03-17  Bruno Haible  <bruno@clisp.org>
59675
59676         * m4/onceonly.m4: Require autoconf 2.54 or newer.
59677         (m4_quote): Remove macro.
59678         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
59679
59680 2003-03-14  Jim Meyering  <jim@meyering.net>
59681
59682         Merge changes from Coreutils.
59683         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
59684         to be const, in order to avoid warnings.
59685         (obstack_room): Likewise.
59686         (obstack_empty_p): Likewise.
59687
59688 2003-03-14  Bruno Haible  <bruno@clisp.org>
59689
59690         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
59691         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
59692
59693 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59694
59695         Merge changes from Bison.
59696         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
59697         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
59698         when compiling Bison 1.875's `bitset bset = obstack_alloc
59699         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
59700         * lib/hash.c: Include <stdbool.h> unconditionally.
59701
59702 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59703
59704         * m4/onceonly.m4 (m4_quote): New macro.
59705         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
59706         Quote AC_FOREACH variable-expansions properly.
59707
59708 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59709
59710         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
59711
59712 2003-03-09  Paul Eggert  <eggert@twinsun.com>
59713
59714         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
59715         Reported by Bruce Becker; see:
59716         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
59717
59718 2003-03-03  Paul Eggert  <eggert@twinsun.com>
59719             Bruno Haible  <bruno@clisp.org>
59720
59721         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
59722         Reported by John Hughes, see
59723         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
59724
59725 2003-02-20  Bruno Haible  <bruno@clisp.org>
59726
59727         * MODULES.html.sh (func_all_modules): Add poll.
59728
59729 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59730
59731         * modules/poll: New file.
59732
59733 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59734
59735         * lib/poll_.h: New file.
59736         * lib/poll.c: New file.
59737
59738 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59739
59740         * m4/poll.m4: New file.
59741
59742 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59743
59744         * modules/mathl: New file.
59745
59746 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59747
59748         * lib/mathl.h: New file.
59749         * lib/acosl.c: New file.
59750         * lib/asinl.c: New file.
59751         * lib/atanl.c: New file.
59752         * lib/ceill.c: New file.
59753         * lib/cosl.c: New file.
59754         * lib/expl.c: New file.
59755         * lib/floorl.c: New file.
59756         * lib/frexpl.c: New file.
59757         * lib/ldexpl.c: New file.
59758         * lib/logl.c: New file.
59759         * lib/sincosl.c: New file.
59760         * lib/sinl.c: New file.
59761         * lib/sqrtl.c: New file.
59762         * lib/tanl.c: New file.
59763         * lib/trigl.c: New file.
59764         * lib/trigl.h: New file.
59765
59766 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59767
59768         * m4/mathl.m4: New file.
59769
59770 2003-02-18  Bruno Haible  <bruno@clisp.org>
59771
59772         * MODULES.html.sh (func_all_modules): Add mathl.
59773
59774 2003-02-17  Bruno Haible  <bruno@clisp.org>
59775
59776         * modules/mkdtemp: New module.
59777         * MODULES.html.sh (func_all_modules): Add it.
59778
59779 2003-02-17  Bruno Haible  <bruno@clisp.org>
59780
59781         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
59782
59783 2003-02-17  Bruno Haible  <bruno@clisp.org>
59784
59785         * lib/mkdtemp.h: New file, from GNU gettext.
59786         * lib/mkdtemp.c: New file, from GNU gettext.
59787
59788 2003-02-02  Jim Meyering  <jim@meyering.net>
59789
59790         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
59791         e.g. glibc-2.2.93.
59792
59793 2003-01-31  Bruno Haible  <bruno@clisp.org>
59794
59795         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
59796         'rpl_rename'.
59797         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
59798         'rpl_strnlen'.
59799         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
59800         'rpl_strtod'.
59801         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
59802         'rpl_utime'.
59803
59804 2003-01-31  Bruno Haible  <bruno@clisp.org>
59805
59806         * lib/rename.c: #undef rename before defining rpl_rename.
59807         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
59808
59809 2003-01-30  Bruno Haible  <bruno@clisp.org>
59810
59811         * modules/vasnprintf, modules/vasprintf: New modules.
59812         * MODULES.html.sh (func_all_modules): Add them.
59813
59814 2003-01-30  Bruno Haible  <bruno@clisp.org>
59815
59816         * m4/signed.m4: New file, from GNU gettext.
59817         * m4/longdouble.m4: New file, from GNU gettext.
59818         * m4/wchar_t.m4: New file, from GNU gettext.
59819         * m4/wint_t.m4: New file, from GNU gettext.
59820         * m4/vasnprintf.m4: New file.
59821         * m4/vasprintf.m4: New file.
59822
59823 2003-01-30  Bruno Haible  <bruno@clisp.org>
59824
59825         * lib/printf-args.h: New file, from GNU gettext.
59826         * lib/printf-args.c: New file, from GNU gettext.
59827         * lib/printf-parse.h: New file, from GNU gettext.
59828         * lib/printf-parse.c: New file, from GNU gettext.
59829         * lib/vasnprintf.h: New file, from GNU gettext.
59830         * lib/vasnprintf.c: New file, from GNU gettext.
59831         * lib/asnprintf.c: New file, from GNU gettext.
59832         * lib/vasprintf.h: New file, from GNU gettext with modifications.
59833         * lib/vasprintf.c: New file, from GNU gettext.
59834         * lib/asprintf.c: New file, from GNU gettext.
59835
59836 2003-01-29  Bruno Haible  <bruno@clisp.org>
59837
59838         * modules/stpncpy: New module.
59839         * MODULES.html.sh (func_all_modules): Add it.
59840
59841 2003-01-29  Bruno Haible  <bruno@clisp.org>
59842
59843         * m4/stpncpy.m4: New file.
59844
59845 2003-01-29  Bruno Haible  <bruno@clisp.org>
59846
59847         * lib/stpncpy.h: New file, from GNU gettext with modifications.
59848         * lib/stpncpy.c: New file, from GNU gettext with modifications.
59849
59850 2003-01-28  Bruno Haible  <bruno@clisp.org>
59851
59852         * modules/c-ctype: New module.
59853         * MODULES.html.sh (func_all_modules): Add it.
59854
59855 2003-01-28  Bruno Haible  <bruno@clisp.org>
59856
59857         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
59858         Paul Eggert.
59859         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
59860         Paul Eggert.
59861
59862 2003-01-27  Bruno Haible  <bruno@clisp.org>
59863
59864         * modules/xsetenv: New module.
59865         * MODULES.html.sh (func_all_modules): Add it.
59866
59867 2003-01-27  Bruno Haible  <bruno@clisp.org>
59868
59869         * lib/xsetenv.h: New file, from GNU gettext.
59870         * lib/xsetenv.c: New file, from GNU gettext.
59871
59872 2003-01-23  Jim Meyering  <jim@meyering.net>
59873
59874         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
59875         from working on systems without dirfd (at least Irix and OSF1/Tru64).
59876
59877 2003-01-23  Bruno Haible  <bruno@clisp.org>
59878
59879         * modules/minmax: New module.
59880         * MODULES.html.sh (func_all_modules): Add it.
59881
59882 2003-01-23  Bruno Haible  <bruno@clisp.org>
59883
59884         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
59885         Eggert.
59886
59887 2003-01-22  Bruno Haible  <bruno@clisp.org>
59888
59889         * modules/exit: New module.
59890         * MODULES.html.sh (func_all_modules): Add it.
59891
59892 2003-01-22  Bruno Haible  <bruno@clisp.org>
59893
59894         * lib/exit.h: New file, from GNU gettext.
59895
59896 2003-01-19  Bruno Haible  <bruno@clisp.org>
59897
59898         * gnulib-tool: Recognize option --extract-maintainer.
59899         (func_get_maintainer): New function.
59900         * modules/*: Add Maintainer entry.
59901
59902 2003-01-16  Jim Meyering  <jim@meyering.net>
59903
59904         * m4/regex.m4: The `regex' struct is both input and output.
59905         Initialize it before each use.  Patch by Tim Waugh.
59906
59907 2003-01-16  Bruno Haible  <bruno@clisp.org>
59908
59909         * MODULES.html.sh: Add a table of contents. Add the module name as
59910         leftmost column. Add hyperlinks.
59911
59912 2003-01-15  Bruno Haible  <bruno@clisp.org>
59913
59914         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
59915
59916 2003-01-15  Bruno Haible  <bruno@clisp.org>
59917
59918         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
59919         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
59920         suffix.
59921
59922 2003-01-15  Bruno Haible  <bruno@clisp.org>
59923
59924         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
59925
59926 2003-01-15  Bruno Haible  <bruno@clisp.org>
59927
59928         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
59929         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
59930
59931 2003-01-14  Jim Meyering  <jim@meyering.net>
59932
59933         * lib/same.c (same_name): Tweak a comment.
59934
59935 2003-01-14  Bruno Haible  <bruno@clisp.org>
59936
59937         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
59938         when a string comparison is sufficient.
59939
59940 2003-01-14  Bruno Haible  <bruno@clisp.org>
59941
59942         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
59943         'unsigned int'.
59944
59945 2003-01-14  Bruno Haible  <bruno@clisp.org>
59946
59947         * lib/hash-pjw.c: Add comment about low quality of this function.
59948
59949 2003-01-13  Bruno Haible  <bruno@clisp.org>
59950
59951         * modules/stpcpy: Distribute lib/stpcpy.h.
59952         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
59953
59954 2003-01-13  Bruno Haible  <bruno@clisp.org>
59955
59956         * modules/*: Add a description.
59957         * modules/strpbrk: Fix Makefile.am snippet.
59958         * modules/strtoimax: Fix dependencies.
59959         * modules/strtoumax: Likewise.
59960
59961 2003-01-13  Bruno Haible  <bruno@clisp.org>
59962
59963         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
59964         * modules/alloca (Makefile.am): All object files depend on alloca.h.
59965         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
59966
59967 2003-01-13  Bruno Haible  <bruno@clisp.org>
59968
59969         * gnulib-tool (func_create_testdir): Store config/* files in the main
59970         directory.
59971         * config.rpath: Move to ...
59972         * config/config.rpath: ... here.
59973         * modules/gettext: Contains config/config.rpath, not config.rpath.
59974         * modules/iconv: Likewise.
59975
59976 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59977
59978         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59979         to avoid collisions with libcurses and libreadline.
59980
59981         * m4/getstr.m4: Remove.
59982         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
59983
59984 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59985
59986         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59987         to avoid collisions with libcurses and libreadline.
59988
59989         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
59990         * lib/getstr.h, getstr.c: Remove.
59991         * lib/getline.c: Include "getline.h", to check interface.
59992         Move body of old getstr.c here: this defines MIN_CHUNK and
59993         declares getdelim2, which is renamed from getstr.
59994         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
59995
59996         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
59997         All uses changed.
59998         * lib/linebuffer.h: Likewise.
59999         (readline): Remove backward-compatibility macro.
60000
60001 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60002
60003         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60004         to avoid collisions with libcurses and libreadline.
60005         * getstr: Remove.
60006         * MODULES.html.sh: Remove getstr.
60007         * modules/getline: Depend on unlocked-io, not getstr.
60008
60009 2003-01-12  Jim Meyering  <jim@meyering.net>
60010
60011         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
60012
60013 2003-01-10  Bruno Haible  <bruno@clisp.org>
60014
60015         * modules/alloca: Change Makefile.am requirements. Simplify Include
60016         requirements. Add lib/alloca_.h to file list.
60017
60018 2003-01-10  Bruno Haible  <bruno@clisp.org>
60019
60020         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
60021
60022 2003-01-10  Bruno Haible  <bruno@clisp.org>
60023
60024         * lib/alloca_.h: New file.
60025         * lib/getdate.y: Unconditionally include alloca.h.
60026         * lib/makepath.c: Likewise.
60027         * lib/setenv.c: Likewise.
60028         * lib/userspec.c: Likewise.
60029
60030 2003-01-09  Karl Berry  <karl@gnu.org>
60031
60032         * MODULES.html.sh: include `dirname $0` in PATH, to find
60033         gnulib-tool.
60034
60035 2003-01-09  Bruno Haible  <bruno@clisp.org>
60036
60037         * modules/stdbool: Change configure.ac, Makefile.am requirements.
60038         Simplify Include requirements. Add lib/stdbool.h.in to file list.
60039
60040 2003-01-09  Bruno Haible  <bruno@clisp.org>
60041
60042         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
60043
60044 2003-01-09  Bruno Haible  <bruno@clisp.org>
60045
60046         * lib/stdbool.h.in: New file.
60047
60048 2003-01-09  Bruno Haible  <bruno@clisp.org>
60049
60050         * gnulib-tool (func_all_modules): Ignore files ending in ~.
60051         * MODULES.html.sh: Likewise.
60052
60053 2003-01-08  Jim Meyering  <jim@meyering.net>
60054
60055         * lib/full-write.c: Undefine and define-away `const' after inclusion
60056         of errno.h, not before.  Suggestion from Bruno Haible.
60057
60058 2003-01-08  Bruno Haible  <bruno@clisp.org>
60059
60060         * modules/full-read: Depend on full-write.
60061
60062 2003-01-08  Bruno Haible  <bruno@clisp.org>
60063
60064         * lib/safe-read.c: Include specification header first, to ensure its
60065         selfcontainedness.
60066         * lib/full-write.c: Likewise.
60067
60068 2003-01-07  Jim Meyering  <jim@meyering.net>
60069
60070         * lib/full-write.c: Rework so that it may serve to define full_read,
60071         too.
60072         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
60073
60074 2003-01-07  Bruno Haible  <bruno@clisp.org>
60075
60076         * lib/strtoimax.c: Include <stdint.h> as an alternative to
60077         <inttypes.h>.
60078         * lib/xstrtol.h: Likewise.
60079         * lib/xstrtoimax.c: Likewise.
60080         * lib/xstrtoumax.c: Likewise.
60081         * lib/human.h: Likewise.
60082
60083         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
60084         on systems that have <inttypes.h> but not <stdint.h>.
60085
60086 2003-01-07  Bruno Haible  <bruno@clisp.org>
60087
60088         * MODULES.html.sh: Add copyright notice.
60089         (missed_files): Omit CVS directory entries.
60090         (func_module): Make it work with sed-3.02.
60091         * MODULES.txt: Remove file.
60092
60093 2003-01-06  Jim Meyering  <jim@meyering.net>
60094
60095         * lib/version-etc.c: Update year in translatable copyright string.
60096
60097 2003-01-03  Karl Berry  <karl@gnu.org>
60098
60099         * config/config.{guess,sub}: update from prep.
60100
60101 2003-01-02  Karl Berry  <karl@gnu.org>
60102
60103         * doc/COPYING.DOC: belatedly updated to 1.2.
60104
60105 2003-01-01  Karl Berry  <karl@gnu.org>
60106
60107         * gnulib-tool (func_verify_module): report module name $module in
60108         error message, not $1.
60109         * gnulib-tool (create-testdir): don't complain if destdir couldn't
60110         be created, only if it doesn't exist.
60111         * gnulib-tool (last_checkin_date): don't expand the $Date here.
60112
60113 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60114
60115         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
60116
60117 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60118
60119         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
60120         memcmp if strcoll doesn't work.
60121
60122 2002-12-31  Bruno Haible  <bruno@clisp.org>
60123
60124         * lib/utime.c (utime_null): No need to call ftruncate if the file was
60125         nonempty.
60126
60127 2002-12-31  Bruno Haible  <bruno@clisp.org>
60128
60129         * lib/memcoll.c (STRCOLL): New macro.
60130         (memcoll): Use it.
60131
60132 2002-12-31  Bruno Haible  <bruno@clisp.org>
60133
60134         * lib/localcharset.h: New file.
60135         * lib/localcharset.c: Include it.
60136         * lib/unicodeio.c: Likewise.
60137
60138 2002-12-31  Bruno Haible  <bruno@clisp.org>
60139
60140         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
60141         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
60142
60143 2002-12-31  Bruno Haible  <bruno@clisp.org>
60144
60145         * lib/getline.h: Include <stddef.h>, for size_t.
60146
60147         * lib/unicodeio.h: Include <stddef.h>, for size_t.
60148         * lib/unicodeio.c: Don't include <stddef.h>.
60149
60150 2002-12-31  Bruno Haible  <bruno@clisp.org>
60151
60152         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
60153         HAVE_TM_ZONE.
60154
60155 2002-12-24  Karl Berry  <karl@gnu.org>
60156
60157         * config/config.guess: update from prep.
60158
60159 2002-12-24  Bruno Haible  <bruno@clisp.org>
60160
60161         General infrasructure.
60162         * m4/README: Rewritten.
60163         * m4/onceonly.m4: New file.
60164         * m4/onceonly_2_57.m4: New file.
60165
60166         Module atexit.
60167         * m4/atexit.m4: New file.
60168
60169         Module strtod.
60170         * m4/strtod.m4: New file.
60171
60172         Module strtol.
60173         * m4/strtol.m4: New file.
60174
60175         Module strtoul.
60176         * m4/strtoul.m4: New file.
60177
60178         Module memchr.
60179         * m4/memchr.m4: New file.
60180
60181         Module memcmp.
60182         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
60183         (jm_FUNC_MEMCMP): Invoke it.
60184
60185         Module memcpy.
60186         * m4/memcpy.m4: New file.
60187
60188         Module memmove.
60189         * m4/memmove.m4: New file.
60190
60191         Module memset.
60192         * m4/memset.m4: New file.
60193
60194         Module strcspn.
60195         * m4/strcspn.m4: New file.
60196
60197         Module strpbrk.
60198         * m4/strpbrk.m4: New file.
60199
60200         Module strstr.
60201         * m4/strstr.m4: New file.
60202
60203         Module strerror.
60204         * m4/strerror.m4: New file.
60205
60206         Module mktime.
60207         * m4/mktime.m4: Renamed from jm-mktime.m4.
60208         (gl_PREREQ_MKTIME): New macro.
60209         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
60210
60211         Module malloc.
60212         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
60213         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
60214         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
60215
60216         Module realloc.
60217         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
60218         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
60219         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
60220
60221         Module strftime.
60222         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
60223         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
60224         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
60225         gl_TM_GMTOFF.
60226         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
60227
60228         Module xalloc.
60229         * m4/xalloc.m4: New file.
60230
60231         Module alloca.
60232         * m4/alloca.m4: New file.
60233
60234         Module putenv.
60235         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
60236         (jm_FUNC_PUTENV): Invoke it.
60237
60238         Module setenv.
60239         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
60240         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
60241         when invoked twice.
60242         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
60243         gt_FUNC_SETENV.
60244
60245         Module memrchr.
60246         * m4/memrchr.m4: New file.
60247
60248         Module stpcpy.
60249         * m4/stpcpy.m4: New file.
60250
60251         Module strcase.
60252         * m4/strcase.m4: New file.
60253
60254         Module strdup.
60255         * m4/strdup.m4: New file.
60256
60257         Module strnlen.
60258         * m4/strnlen.m4: New file.
60259
60260         Module strndup.
60261         * m4/strndup.m4: New file.
60262
60263         Module xstrtod.
60264         * m4/xstrtod.m4: New file.
60265
60266         Module xstrtol.
60267         * m4/xstrtol.m4: New file.
60268
60269         Module getdate.
60270         * m4/getdate.m4: New file.
60271
60272         Module unlocked-io.
60273         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
60274         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
60275         * m4/jm-glibc-io.m4n: Remove file.
60276
60277         Module long-options.
60278         * m4/long-options.m4: New file.
60279
60280         Module md5.
60281         * m4/md5.m4: New file.
60282
60283         Module sha.
60284         * m4/sha.m4: New file.
60285
60286         Module getstr.
60287         * m4/getstr.m4: New file.
60288
60289         Module getline.
60290         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
60291         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
60292         <sys/types.h>, for size_t. Use the function name gnu_getline, not
60293         simply getline. Infoke gl_PREREQ_GETLINE.
60294
60295         Module obstack.
60296         * m4/obstack.m4: New file.
60297
60298         Module hash.
60299         * m4/hash.m4: New file.
60300
60301         Module readtokens.
60302         * m4/readtokens.m4: New file.
60303
60304         Module strverscmp.
60305         * m4/strverscmp.m4: New file.
60306
60307         Module stdbool.
60308         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
60309         OSF/1.
60310
60311         Module strtoll.
60312         * m4/strtoll.m4: New file.
60313
60314         Module strtoull.
60315         * m4/strtoull.m4: New file.
60316
60317         Module strtoimax.
60318         * m4/strtoimax.m4: New file.
60319
60320         Module strtoumax.
60321         * m4/strtoumax.m4: New file.
60322
60323         Module xstrtoimax.
60324         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
60325         jm_AC_PREREQ_XSTRTOIMAX.
60326         Moved the strtol prerequisites to strtol.m4.
60327         Moved the strtoll prerequisites to strtoll.m4.
60328         Moved the strtoimax prerequisites to strtoimax.m4.
60329
60330         Module xstrtoumax.
60331         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
60332         jm_AC_PREREQ_XSTRTOUMAX.
60333         Moved the strtoul prerequisites to strtoul.m4.
60334         Moved the strtoull prerequisites to strtoull.m4.
60335         Moved the strtoumax prerequisites to strtoumax.m4.
60336
60337         Module chown.
60338         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
60339         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
60340
60341         Module dup2.
60342         * m4/dup2.m4: New file.
60343
60344         Module ftruncate.
60345         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
60346         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
60347
60348         Module getgroups.
60349         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
60350         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
60351
60352         Module gettimeofday.
60353         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
60354         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
60355         gl_PREREQ_GETTIMEOFDAY.
60356
60357         Module mkdir.
60358         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
60359         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
60360
60361         Module mkstemp.
60362         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
60363         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
60364         jm_AC_TYPE_UINTMAX_T.
60365         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
60366
60367         Module stat.
60368         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
60369         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
60370
60371         Module lstat.
60372         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
60373         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
60374
60375         Module timespec.
60376         * m4/timespec.m4 (gl_TIMESPEC): New macro.
60377         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
60378         * m4/st_mtim.m4: Indentation.
60379
60380         Module nanosleep.
60381         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
60382         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
60383         gl_PREREQ_NANOSLEEP.
60384
60385         Module regex.
60386         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
60387         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
60388         (gl_REGEX): New macro.
60389
60390         Module rename.
60391         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
60392         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
60393
60394         Module rmdir.
60395         * m4/rmdir.m4: New file.
60396
60397         Module utime.
60398         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
60399         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
60400         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
60401
60402         Module dirname.
60403         * m4/dirname.m4: New file.
60404
60405         Module getopt.
60406         * m4/getopt.m4: New file.
60407
60408         Module unistd-safer.
60409         * m4/unistd-safer.m4: New file.
60410
60411         Module fnmatch.
60412         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
60413         declaration.
60414         (gl_PREREQ_FNMATCH_EXTRA): New macro.
60415         (gl_FUNC_FNMATCH_POSIX): New macro.
60416         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
60417         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
60418         simply fnmatch.
60419
60420         Module exclude.
60421         * m4/exclude.m4: New file.
60422
60423         Module human.
60424         * m4/human.m4: New file.
60425
60426         Module acl.
60427         * m4/acl.m4: Nop.
60428
60429         Module backupfile.
60430         * m4/backupfile.m4: New file.
60431         * m4/d-ino.m4: Indentation.
60432
60433         Module fsusage.
60434         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
60435         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
60436         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
60437
60438         Module dirfd.
60439         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
60440         requirements.
60441
60442         Module euidaccess.
60443         * m4/euidaccess.m4: New file.
60444
60445         Module file-type.
60446         * m4/file-type.m4: New file.
60447
60448         Module fileblocks.
60449         * m4/fileblocks.m4: New file.
60450
60451         Module filemode.
60452         * m4/filemode.m4: New file.
60453
60454         Module isdir.
60455         * m4/isdir.m4: New file.
60456
60457         Module lchown.
60458         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
60459         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
60460
60461         Module makepath.
60462         * m4/makepath.m4: New file.
60463
60464         Module modechange.
60465         * m4/modechange.m4: New file.
60466
60467         Module mountlist.
60468         * m4/mountlist.m4: New file.
60469         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
60470         Indentation.
60471
60472         Module path-concat.
60473         * m4/path-concat.m4: New file.
60474
60475         Module pathmax.
60476         * m4/pathmax.m4: New file.
60477
60478         Module same.
60479         * m4/same.m4: New file.
60480
60481         Module save-cwd.
60482         * m4/save-cwd.m4: New file.
60483
60484         Module savedir.
60485         * m4/savedir.m4: New file.
60486
60487         Module xgetcwd.
60488         * m4/xgetcwd.m4: New file.
60489         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
60490
60491         Module xreadlink.
60492         * m4/xreadlink.m4: New file.
60493
60494         Module safe-read.
60495         * m4/safe-read.m4: New file.
60496
60497         Module safe-write.
60498         * m4/safe-write.m4: New file.
60499
60500         Module closeout.
60501         * m4/closeout.m4: New file.
60502
60503         Module stdio-safer.
60504         * m4/stdio-safer.m4: New file.
60505
60506         Module getpass.
60507         * m4/getpass.m4: New file.
60508
60509         Module getugroups.
60510         * m4/getugroups.m4: New file.
60511
60512         Module group-member.
60513         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
60514         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
60515
60516         Module idcache.
60517         * m4/idcache.m4: New file.
60518
60519         Module userspec.
60520         * m4/userspec.m4: New file.
60521
60522         Module gettime.
60523         * m4/clock_time.m4: New file.
60524         * m4/gettime.m4: New file.
60525
60526         Module settime.
60527         * m4/settime.m4: New file.
60528
60529         Module posixtm.
60530         * m4/posixtm.m4: New file.
60531
60532         Module gethostname.
60533         * m4/gethostname.m4: New file.
60534
60535         Module canon-host.
60536         * m4/canon-host.m4: New file.
60537
60538         Module gettext.
60539         * m4/codeset.m4: New file, from gettext-0.11.5.
60540         * m4/gettext.m4: New file, from gettext-0.11.5.
60541         * m4/glibc21.m4: New file, from gettext-0.11.5.
60542         * m4/iconv.m4: New file, from gettext-0.11.5.
60543         * m4/intdiv0.m4: New file, from gettext-0.11.5.
60544         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
60545         * m4/inttypes.m4: New file, from gettext-0.11.5.
60546         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
60547         * m4/isc-posix.m4: New file, from gettext-0.11.5.
60548         * m4/lcmessage.m4: New file, from gettext-0.11.5.
60549         * m4/lib-ld.m4: New file, from gettext-0.11.5.
60550         * m4/lib-link.m4: New file, from gettext-0.11.5.
60551         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
60552         * m4/progtest.m4: New file, from gettext-0.11.5.
60553         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
60554         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
60555         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
60556
60557         Module localcharset.
60558         * m4/localcharset.m4: New file.
60559
60560         Module hard-locale.
60561         * m4/hard-locale.m4: New file.
60562
60563         Module mbswidth.
60564         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
60565         onceonly macros.
60566         * m4/mbrtowc.m4: Add comment.
60567
60568         Module memcasecmp.
60569         * m4/memcasecmp.m4: New file.
60570
60571         Module memcoll.
60572         * m4/memcoll.m4: New file.
60573
60574         Module unicodeio.
60575         * m4/unicodeio.m4: New file.
60576
60577         Module rpmatch.
60578         * m4/rpmatch.m4: New file.
60579
60580         Module yesno.
60581         * m4/yesno.m4: New file.
60582
60583         Module exitfail.
60584         * m4/exitfail.m4: New file.
60585
60586         Module c-stack.
60587         * m4/c-stack.m4 (gl_C_STACK): New macro.
60588         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
60589
60590         Module error.
60591         * m4/error.m4 (gl_ERROR): New macro.
60592         (jm_PREREQ_ERROR): Use onceonly macros.
60593
60594         Module fatal.
60595         * m4/fatal.m4: New file.
60596
60597         Module getloadavg.
60598         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
60599         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
60600
60601         Module getpagesize.
60602         * m4/getpagesize.m4: New file.
60603
60604         Module getusershell.
60605         * m4/getusershell.m4: New file.
60606
60607         Module physmem.
60608         * m4/physmem.m4: New file.
60609
60610         Module posixver.
60611         * m4/posixver.m4: New file.
60612
60613         Module quotearg.
60614         * m4/quotearg.m4: New file.
60615
60616         Module quote.
60617         * m4/quote.m4: New file.
60618
60619         Module readutmp.
60620         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
60621
60622         Module sig2str.
60623         * m4/sig2str.m4: New file.
60624
60625         Other.
60626         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
60627         ulonglong.m4.
60628         * m4/intmax_t.m4: New file.
60629         * m4/d-type.m4: Indentation.
60630         * m4/jm-macros.m4: Update.
60631         * m4/prereq.m4 (jm_PREREQ): Update.
60632         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
60633         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
60634         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
60635         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
60636         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
60637         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
60638         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
60639         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
60640         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
60641         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
60642         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
60643         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
60644         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
60645         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
60646         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
60647         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
60648         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
60649         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
60650         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
60651
60652 2002-12-24  Bruno Haible  <bruno@clisp.org>
60653
60654         * MODULES.txt: Update according to m4/ changes.
60655
60656         Module gettext.
60657         * config.rpath: New file, from gettext-0.11.5.
60658
60659         * modules/*: New module descriptions.
60660         * gnulib-tool: New file.
60661         * MODULES.html.sh: New file.
60662
60663 2002-12-21  Karl Berry  <karl@gnu.org>
60664
60665         * doc/fdl.texi: update to version 1.2.
60666
60667 2002-12-19  Karl Berry  <karl@gnu.org>
60668
60669         * config/config.guess: update from prep.
60670
60671 2002-12-18  Bruno Haible  <bruno@clisp.org>
60672
60673         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
60674         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
60675
60676 2002-12-17  Bruno Haible  <bruno@clisp.org>
60677
60678         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
60679         stdlib.h, string.h.
60680
60681 2002-12-17  Bruno Haible  <bruno@clisp.org>
60682
60683         * lib/canon-host.c (strdup): Remove unused declaration.
60684
60685         * lib/fsusage.c: Include full_read.h.
60686         (get_fs_usage): Use full_read instead of safe_read.
60687
60688         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
60689
60690 2002-12-12  Karl Berry  <karl@gnu.org>
60691
60692         * config/config.guess: update from prep.
60693
60694 2002-12-11  Bruno Haible  <bruno@clisp.org>
60695
60696         * m4/setenv.m4: New file, from gettext-0.11.5.
60697
60698 2002-12-11  Bruno Haible  <bruno@clisp.org>
60699
60700         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
60701         not unsetenv().
60702         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
60703         modifications:
60704
60705         2002-12-11  Bruno Haible  <bruno@clisp.org>
60706
60707                 * setenv.c (alloca): Fall back to malloc.
60708                 (freea): New macro.
60709                 (setenv): Use freea() to free memory allocated with alloca().
60710
60711         2002-11-13  Bruno Haible  <bruno@clisp.org>
60712
60713                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
60714                 function declarations.
60715                 * unsetenv.c (unsetenv): Likewise.
60716
60717         2002-03-04  Bruno Haible  <bruno@clisp.org>
60718
60719                 Portability to AIX 4.3.3.
60720                 * unsetenv.c: New file, extracted from setenv.c.
60721                 * setenv.c: Move the unsetenv() function to unsetenv.c.
60722
60723         2001-12-20  Bruno Haible  <bruno@clisp.org>
60724
60725                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
60726                 use malloc instead. For SunOS 4.
60727
60728         2001-12-11  Bruno Haible  <bruno@clisp.org>
60729
60730                 * setenv.c: Declare alloca.
60731                 (compar_fn_t): New typedef.
60732                 (KNOWN_VALUE, STORE_VALUE): Use it.
60733
60734         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
60735         setenv.h.
60736
60737 2002-12-10  Paul Eggert  <eggert@twinsun.com>
60738
60739         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
60740         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
60741         Choose values that are less likely to collide with system fnmatch
60742         options.
60743         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
60744         defined (e.g., a pure POSIX system).
60745         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
60746         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
60747
60748 2002-12-06  Paul Eggert  <eggert@twinsun.com>
60749
60750         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
60751         a pain in practice to deal with generated m4 files.  This change
60752         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
60753
60754         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
60755         and jm-glibc-io.m4, as they are no longer a special case.
60756         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
60757         kludge and the auto-generation stuff.  Check only whether the
60758         functions are declared, not whether they exist, since older hosts
60759         that don't declare the functions can't use the optimization anyway.
60760
60761 2002-12-06  Jim Meyering  <jim@meyering.net>
60762
60763         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
60764
60765         Merge in changes from libc's misc/error.c, in preparation
60766         for the merge of gnulib's changes back into libc.
60767
60768         * lib/error.c (_): Define only if not already defined.
60769         Move definition to follow all #include directives.
60770         Include unlocked-io.h only if !_LIBC.
60771         [_LIBC]: Include <libio/libioP.h>.
60772         [USE_IN_LIBIO]: Include <libio/iolibio.h>
60773         (fflush): Tweak definition to use INTUSE.
60774         (putc): Define.
60775
60776 2002-12-05  Paul Eggert  <eggert@twinsun.com>
60777
60778         * lib/alloca.c [defined emacs]: Include "lisp.h".
60779         (xalloc_die) [defined emacs]: New macro.
60780         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
60781         [! defined emacs]: Include <xalloc.h>.
60782         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
60783         (pointer): Typedef to POINTER_TYPE *.
60784         (malloc): Remove decl; we now always use xmalloc.
60785         (alloca): Use old-style definition, since Emacs needs this.
60786         Check for arithmetic overflow when computing combined size.
60787
60788 2002-12-04  Paul Eggert  <eggert@twinsun.com>
60789
60790         Do not generate unlocked-io.h automatically, since it's easier to
60791         maintain it by hand.
60792
60793         * lib/unlocked-io.h: New file, from GNU diffutils,
60794         but with proper copyright notice and attribution.
60795         * lib/gen-uio: Remove.
60796         * lib/Makefile.am: Add copyright notice.
60797         (libfetish_a_SOURCES): Add unlocked-io.h.
60798         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
60799         (DISTCLEANFILES, io_functions): Remove macros.
60800         (EXTRA_DIST): Remove gen_uio.
60801         (unlocked-io.h): Remove rule.
60802
60803 2002-12-04  Jim Meyering  <jim@meyering.net>
60804
60805         Reflect the fact that stat.c and lstat.c are no longer generated.
60806         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
60807         (DISTCLEANFILES): Likewise.
60808         (EXTRA_DIST): Likewise.
60809         (all_local): Don't depend on stat.c or lstat.c.
60810         (stat.c, lstat.c): Remove rules.
60811         (EXTRA_DIST): Remove xstat.in.
60812
60813         * lib/xstat.in: Remove file.  Contents moved into stat.c.
60814         * lib/stat.c: New file.  Contents mostly from xstat.in.
60815         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
60816         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
60817
60818         * lib/safe-read.c: Rework so that it may serve to define safe_write,
60819         too.
60820         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
60821
60822 2002-12-03  Jim Meyering  <jim@meyering.net>
60823
60824         * lib/safe-read.c, safe-write.c: Change variable names and comments,
60825         but not semantics, to minimize the differences between these two files.
60826         (safe_read): Change comment to mention SAFE_READ_ERROR.
60827
60828         * lib/safe-read.c (IS_EINTR): Define.
60829         (safe_read): Use IS_EINTR in place of in-function cpp directives.
60830
60831 2002-12-02  Jim Meyering  <jim@meyering.net>
60832
60833         * lib/safe-read.c (EINTR): Define.
60834         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
60835         (INT_MAX): Provide fallback.
60836         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
60837
60838         * lib/safe-read.h (SAFE_READ_ERROR): Define.
60839
60840 2002-12-02  Bruno Haible  <bruno@clisp.org>
60841
60842         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
60843         Define, taken from safe-read.c.
60844         (INT_MAX): Provide fallback.
60845         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
60846         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
60847
60848         * lib/safe-read.c (EINTR): Remove definition.
60849         (safe_read): Don't use EINTR if it is absent.
60850
60851 2002-12-01  Jim Meyering  <jim@meyering.net>
60852
60853         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
60854         zero.
60855         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
60856
60857 2002-11-27  Paul Eggert  <eggert@twinsun.com>
60858
60859         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
60860         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
60861         with `if (! (value < limit)) abort ();', for readability.
60862
60863 2002-11-26  Karl Berry  <karl@gnu.org>
60864
60865         * lib/strdup.c: copy from libc again, with jim's ok.
60866         * lib/.cppi-disable: re-add strdup.c
60867
60868 2002-11-25  Karl Berry  <karl@gnu.org>
60869
60870         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
60871         instead of "strtol.c".
60872
60873 2002-11-25  Karl Berry  <karl@gnu.org>
60874
60875         * config/install-sh: update from automake for variable quoting, $0 in
60876         error msgs, etc.
60877
60878         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
60879         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
60880         entry.
60881
60882 2002-11-25  Jim Meyering  <jim@meyering.net>
60883
60884         * lib/mktime.c: Sync from libc, now that it has the latest fix.
60885
60886 2002-11-24  Karl Berry  <karl@gnu.org>
60887
60888         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
60889         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
60890
60891 2002-11-24  Jim Meyering  <jim@meyering.net>
60892
60893         Update from coreutils:
60894
60895         * lib/mktime.c: Merge in changes from libc.
60896
60897         Avoid a link-time failure on some Linux systems.
60898         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
60899         (otherwise).
60900         (__mon_yday): Declare with the STATIC attribute.
60901         (__mktime_internal): Likewise.
60902         Based on a report from Greg Schafer.
60903
60904 2002-11-23  Jim Meyering  <jim@meyering.net>
60905
60906         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
60907         Use `unsigned', not `int', as type of index.
60908
60909         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
60910
60911         * lib/fsusage.c: Remove unneeded parentheses around operands of
60912         `defined'.
60913
60914 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60915
60916         * lib/quotearg.h: Allow multiple inclusion by surrounding with
60917         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
60918         so that we can be included first.
60919         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
60920         * lib/quotearg.c: Include quotearg.h immediately after config.h.
60921         No need to include stddef.h or sys/types.h any more.
60922         Surround local include files with "", not "<>".
60923         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
60924         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
60925         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
60926         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
60927         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
60928         (ISPRINT): Remove; no longer needed now that we assume C89.
60929
60930         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
60931         Preserve errno.
60932
60933         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
60934         quotearg_char): Use SIZE_MAX rather than
60935         (size_t) -1 when we are talking about "infinity".
60936
60937         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
60938
60939 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60940
60941         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
60942         hint that one should use `if (! x) abort ();' rather than `assert
60943         (x);', and anyway it's one less thing to worry about configuring.
60944         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
60945         hash_rehash, hash_insert): Use abort rather than assert.
60946
60947 2002-11-22  Bruno Haible  <bruno@clisp.org>
60948
60949         * lib/safe-read.h: Assume C89. Add comments.
60950         (safe_read): Change return type to size_t.
60951         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
60952         byte counts > SSIZE_MAX correctly.
60953         * lib/safe-write.h: New file.
60954         * lib/safe-write.c: New file.
60955         * lib/full-read.h: New file.
60956         * lib/full-read.c: New file.
60957         * lib/full-write.h: Assume C89. Add comments.
60958         * lib/full-write.c: Include safe-write.h.
60959         (full_write): Rewritten to use safe_write.
60960         Suggested by Jim Meyering and Paul Eggert.
60961
60962 2002-11-21  Jim Meyering  <jim@meyering.net>
60963
60964         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
60965
60966         Merge in changes from the coreutils.
60967
60968         2002-09-25  Paul Eggert  <eggert@twinsun.com>
60969         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
60970         <stdint.h>.
60971         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
60972         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
60973         int.  Work more efficiently if X is the same width as uintmax_t.
60974         Do not compare X to -1, to avoid bogus compiler warning.
60975         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
60976         Don't assume that f_frsize and f_bsize are the same type.
60977
60978         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
60979         warning on FreeBSD.
60980
60981         * lib/makepath.c (make_path): Restore umask *before* creating the final
60982         component.
60983         (make_path): Minor reformatting.
60984
60985         * lib/xmalloc.c: Adjust to work with new autoconf macros,
60986         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
60987         HAVE_MALLOC/HAVE_REALLOC.
60988
60989         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
60990         dummy ones.  At least on GNU/Linux systems, `auto' means something
60991         else.
60992         From Michael Stone.
60993
60994 2002-11-21  Bruno Haible  <bruno@clisp.org>
60995
60996         Remove case insensitive option matching.
60997         * lib/argmatch.h (argcasematch): Remove declaration.
60998         (ARGCASEMATCH): Remove macro.
60999         (__xargmatch_internal): Remove case_sensitive argument.
61000         (XARGMATCH): Update.
61001         (XARGCASEMATCH): Remove macro.
61002         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
61003         case_sensitive argument.
61004         (argcasematch): Remove function.
61005         (__xargmatch_internal): Remove case_sensitive argument.
61006         (main): Use XARGMATCH instead of XARGCASEMATCH.
61007
61008         * lib/xmalloc.c: Change compile-time error message. Add comment about
61009         required autoconf version.
61010
61011 2002-11-20  Paul Eggert  <eggert@twinsun.com>
61012
61013         Merge argmatch cleanups from Bison.  Assume C89.
61014
61015         * lib/argmatch.c: Include config.h here, not in argmatch.h.
61016         Include stdlib.h, for EXIT_FAILURE.
61017         Always include <string.h>, since we assume C89.
61018         (EXIT_FAILURE): Remove pre-C89 bug workaround.
61019         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
61020         Include <stddef.h> instead, since it's all we need for size_t.
61021         (PARAMS): Remove.  All uses removed.
61022         (ARRAY_CARDINALITY): Do not bother to #undef.
61023         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
61024         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61025         Remove unnecessary parentheses.
61026         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61027         Insert necessary parentheses.
61028         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
61029         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
61030
61031 2002-11-19  Bruno Haible  <bruno@clisp.org>
61032
61033         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
61034         * lib/mbswidth.h: Include <stddef.h>, for size_t.
61035
61036         * lib/mbswidth.h (PARAMS): Remove macro.
61037         (mbswidth, mbsnwidth): Use ANSI C function declarations.
61038         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
61039
61040         * lib/gcd.h (PARAMS): Remove macro.
61041         (gcd): Use ANSI C function declarations.
61042         * lib/gcd.c (gcd): Likewise.
61043
61044 2002-11-15  Bruno Haible  <bruno@clisp.org>
61045
61046         * lib/strcspn.c: Include <stddef.h>.
61047         (strcspn): Use ANSI C function declaration. Change return type to
61048         size_t. Use NULL.
61049         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
61050         (strpbrk): Use NULL.
61051         * lib/strpbrk.h (PARAMS): Remove macro.
61052         (strpbrk): Use ANSI C function declaration.
61053         * lib/strstr.c: Don't include <sys/types.h>.
61054         * lib/strstr.h (PARAMS): Remove macro.
61055         (strstr): Use ANSI C function declarations.
61056
61057 2002-11-14  Karl Berry  <karl@gnu.org>
61058
61059         * config/mkinstalldirs: `do' on separate line, instead of
61060         `for var; do'.
61061
61062 2002-11-06  Bruno Haible  <bruno@clisp.org>
61063
61064         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
61065         * lib/gcd.c (gcd): Likewise.
61066
61067 2002-11-05  Bruno Haible  <bruno@clisp.org>
61068
61069         * lib/gcd.h: New file, from gettext-0.11.5.
61070         * lib/gcd.c: New file, from gettext-0.11.5.
61071
61072 2002-11-05  Bruno Haible  <bruno@clisp.org>
61073
61074         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61075         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61076         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61077         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61078
61079         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
61080         <libintl.h>.
61081         * lib/makepath.c: Include gettext.h instead of <locale.h> and
61082         <libintl.h>.
61083
61084         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
61085         * lib/human.c: Include gettext.h instead of <libintl.h>.
61086         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
61087         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
61088         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
61089         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
61090         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
61091         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
61092         (textdomain): Remove definition.
61093         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
61094
61095         * lib/long-options.c: Remove include of <libintl.h> and definition of
61096         _.
61097         * lib/same.c: Remove include of <libintl.h> and definition of _.
61098
61099 2002-11-04  Owen Taylor  <otaylor@redhat.com>
61100
61101         * lib/config.charset: A few additions for Solaris.
61102
61103 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61104
61105         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
61106         * lib/localcharset.c (locale_charset): Declare as extern "C".
61107
61108 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61109
61110         * lib/config.charset: msdos in uk_UA uses CP1125.
61111
61112 2002-11-04  Bruno Haible  <bruno@clisp.org>
61113
61114         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
61115         * lib/strcase.h: New file, from GNU gettext-0.11.5.
61116         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
61117         * lib/strstr.h: New file, from GNU gettext-0.11.5.
61118         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
61119
61120 2002-11-04  Bruno Haible  <bruno@clisp.org>
61121
61122         * lib/localcharset.c (locale_charset): Don't return an empty string.
61123
61124 2002-11-04  Bruno Haible  <bruno@clisp.org>
61125
61126         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
61127         aliases.
61128
61129 2002-11-04  Bruno Haible  <bruno@clisp.org>
61130
61131         * lib/config.charset: Update for newest glibc. Add canonical names
61132         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
61133
61134 2002-11-04  Bruno Haible  <bruno@clisp.org>
61135
61136         * lib/config.charset: Add support for NetBSD.
61137
61138 2002-11-04  Bruno Haible  <bruno@clisp.org>
61139
61140         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
61141
61142 2002-11-01  Bruno Haible  <bruno@clisp.org>
61143
61144         * configure.in: Add AC_CONFIG_AUX_DIR call.
61145         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
61146         test/Makefile.
61147         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
61148
61149 2002-09-28  Karl Berry  <karl@gnu.org>
61150
61151         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
61152         installed automake until the next release, since changes have been
61153         made.
61154
61155 2002-09-25  Karl Berry  <karl@gnu.org>
61156
61157         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
61158         * lib/getopt*: copy from libc/posix.
61159         * lib/gettext.h: copy from gettext.
61160         * lib/.cppi-disable: add strdup.c, gettext.h.
61161
61162 2002-09-25  Karl Berry  <karl@gnu.org>
61163
61164         * config/srclist.txt: enable gettext.h check.
61165         * config/config.{guess,sub}: update from prep.
61166         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
61167                 from automake 1.6.3.
61168         See srclist*.
61169
61170 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
61171
61172         * regex.c (PATFETCH): Remove the translating fetch.
61173         (PATFETCH_RAW): Rename to PATFETCH.
61174         (set_image_of_range): New fun.
61175         (SET_RANGE_TABLE_WORK_AREA): Use it.
61176         (regex_compile): Don't translate the pattern chars so eagerly.
61177         Only do it when inserting an `exactn' bytecode or when handling
61178         a char-range.
61179         (mutually_exclusive_p): Avoid empty statement.
61180
61181 2002-07-06  Jim Meyering  <meyering@lucent.com>
61182
61183         * m4/README: Don't mention Makefile.am.in.
61184         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
61185
61186 2002-07-01  Jim Meyering  <meyering@lucent.com>
61187
61188         * lib/c-stack.c: Include sys/time.h.
61189         From Volker Borchert.
61190
61191 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61192
61193         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
61194
61195 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61196
61197         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
61198         New macro.  Use it uniformly instead of
61199         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
61200         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
61201         reported by Vin Shelton.
61202
61203 2002-06-22  Paul Eggert  <eggert@twinsun.com>
61204
61205         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
61206         Do not assume SA_SIGINFO behavior.
61207         Bug reported by Jim Meyering on NetBSD 1.5.2.
61208
61209 2002-06-22  Jim Meyering  <meyering@lucent.com>
61210
61211         * m4/c-stack.m4: New file, from diffutils-2.8.2.
61212         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
61213
61214         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
61215         now that configure.ac uses AC_GNU_SOURCE.
61216         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
61217         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
61218
61219         Update to latest tools.  Suggestions from Paul Eggert.
61220         * m4/stdbool.m4: New file, from diffutils-2.8.2.
61221         * m4/gnu-source.m4: Update from diffutils-2.8.2.
61222         * m4/fnmatch.m4: Likewise.
61223         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
61224         to AC_HEADER_STDBOOL
61225
61226 2002-06-22  Jim Meyering  <meyering@lucent.com>
61227
61228         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
61229         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
61230
61231 2002-06-22  Jim Meyering  <meyering@lucent.com>
61232
61233         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
61234
61235         * lib/exitfail.c, exitfail.h: Likewise.
61236         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
61237
61238         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
61239         of fnmatch.h.
61240         (EXTRA_DIST): Add fnmatch_loop.c.
61241         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
61242
61243         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
61244         * lib/fnmatch.c: Update from diffutils-2.8.2.
61245         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
61246         * lib/fnmatch.h: Remove file.
61247
61248 2002-06-21  Jim Meyering  <meyering@lucent.com>
61249
61250         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
61251         * m4/mbrtowc.m4: Likewise.
61252
61253         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
61254         * m4/mbswidth.m4: Reflect name change:
61255         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
61256         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
61257
61258         * m4/lib-link.m4: Update from gettext-0.11.2.
61259         * m4/gettext.m4: Likewise.
61260
61261         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
61262         From Alfred M. Szmidt.
61263
61264 2002-06-18  Paul Eggert  <eggert@twinsun.com>
61265
61266         * lib/file-type.h: Report an error if neither S_ISREG nor
61267         S_IFREG is defined, instead of using a test specific to glibc
61268         2.2.  This should be safe, since POSIX requires S_ISREG and
61269         Unix Version 7 had S_IFREG.  We don't need to check for
61270         <sys/types.h> since we don't use any symbols that it defines.
61271
61272 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
61273
61274         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
61275         $@-t, so that each temporary file name is unique and valid in the first
61276         8 characters, for operation under DOS.
61277
61278 2002-06-15  Paul Eggert  <eggert@twinsun.com>
61279
61280         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
61281
61282 2002-06-15  Jim Meyering  <meyering@lucent.com>
61283
61284         Work even with DJGPP 2.03, which lacks support for symlinks.
61285         From Richard Dawe.
61286         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
61287         is defined.
61288         * lib/lchown.c (S_ISLNK): Likewise.
61289
61290 2002-06-15  Jim Meyering  <meyering@lucent.com>
61291
61292         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
61293         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
61294         have been included before this file.
61295
61296 2002-06-14  Jim Meyering  <meyering@lucent.com>
61297
61298         * lib/file-type.h: Use the version from diffutils-2.8.2.
61299         * lib/file-type.c: Likewise.
61300
61301 2002-06-07  Jim Meyering  <meyering@lucent.com>
61302
61303         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
61304         They're needed at least for NetBSD 1.5.2.
61305         ($statxfs_includes): Include those same headers.
61306         ($statxfs_includes): Include sys/vfs.h if available.
61307         ($statxfs_includes): Likewise for sys/statvfs.h.
61308         Check for the following members in both structs statfs and statvfs:
61309         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
61310
61311 2002-06-01  Jim Meyering  <meyering@lucent.com>
61312
61313         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
61314         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
61315
61316 2002-05-28  Jim Meyering  <meyering@lucent.com>
61317
61318         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
61319         Reported by Volker Borchert.
61320
61321 2002-05-27  Jim Meyering  <meyering@lucent.com>
61322
61323         Fix a problem seen only on nonconforming systems whereby ls.c's
61324         use of localtime, and then of gettimeofday would cause trouble:
61325         the localtime call used to initialize rpl_gettimeofday's save
61326         mechanism would clobber ls's current local time information so
61327         that in any long listing the first file would always be listed
61328         with date 1970-01-01.  Analysis by Volker Borchert.
61329
61330         * lib/gettimeofday.c (localtime): Undefine.
61331         (rpl_localtime): New function.
61332
61333 2002-05-27  Jim Meyering  <meyering@lucent.com>
61334
61335         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
61336         localtime.
61337
61338         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
61339         use the replacement function; it wouldn't resolve at link time.
61340         Reported by Volker Borchert.
61341
61342 2002-05-22  Jim Meyering  <meyering@lucent.com>
61343
61344         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
61345         file-type.h.
61346         * lib/file-type.h: New file.
61347         * lib/file-type.c (file_type): New file/function.  Extracted from
61348         diffutils.
61349
61350 2002-04-30  Jim Meyering  <meyering@lucent.com>
61351
61352         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
61353
61354 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61355
61356         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
61357
61358 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61359
61360         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
61361         Do not check for alloca.h (no longer used) or stdbool.h (was never
61362         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
61363
61364 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61365
61366         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
61367
61368 2002-04-29  Jim Meyering  <meyering@lucent.com>
61369
61370         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
61371         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
61372         Use AC_FUNC_STRNLEN here instead.
61373
61374         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
61375         With autoconf-2.53a, it's part of AC_PROG_CC.
61376
61377 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61378
61379         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
61380         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
61381
61382 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61383
61384         * lib/sig2str.h, lib/sig2str.c: New files.
61385         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
61386
61387 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61388
61389         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
61390         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
61391         of 127, since 64 is the largest conceivable number for ancient
61392         nonstandard hosts.
61393         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
61394
61395 2002-04-28  Jim Meyering  <meyering@lucent.com>
61396
61397         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
61398
61399 2002-04-24  Jim Meyering  <meyering@lucent.com>
61400
61401         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
61402         (jm_PREREQ): Use it.
61403
61404         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
61405         mach/mach.h fcntl.h.
61406         Check for this function: setlocale.
61407
61408 2002-04-24  Jim Meyering  <meyering@lucent.com>
61409
61410         * lib/gettext.h: New file, from Gettext.
61411         * lib/Makefile.am (INCLUDES): Remove -I../intl.
61412         (libfetish_a_SOURCES): Add gettext.h.
61413
61414 2002-04-16  Jim Meyering  <meyering@lucent.com>
61415
61416         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
61417         ut_pid, ut_id, ut_exit.
61418
61419 2002-04-16  Jim Meyering  <meyering@lucent.com>
61420
61421         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
61422         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
61423         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
61424
61425 2002-04-12  Jim Meyering  <meyering@lucent.com>
61426
61427         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
61428         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
61429         existence of the getmntinfo function.  Needed for Darwin 5.3.
61430
61431         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
61432         This is necessary at least on Darwin 5.3.
61433
61434         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
61435         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
61436         strnlen.o in the library, and that makes some versions of ranlib
61437         object.
61438
61439 2002-04-12  Jim Meyering  <meyering@lucent.com>
61440
61441         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
61442
61443 2002-04-09  Jim Meyering  <meyering@lucent.com>
61444
61445         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
61446         to be more precise.  Rather than saying we're checking whether the
61447         function `works', say what we're testing.
61448         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
61449         Reported by Bruno Haible.
61450
61451 2002-03-10  Jim Meyering  <meyering@lucent.com>
61452
61453         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
61454         Suggestion from Santiago Vila.
61455
61456 2002-03-08  Jim Meyering  <meyering@lucent.com>
61457
61458         * lib/rename.c: Mention that this wrapper is needed also on
61459         mips-dec-ultrix4.4 systems.
61460
61461 2002-03-02  Jim Meyering  <meyering@lucent.com>
61462
61463         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
61464         not HAVE_CLOCK_SETTIME.
61465
61466 2002-02-27  Paul Eggert  <eggert@twinsun.com>
61467
61468         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
61469         Check for clock_settime.
61470
61471 2002-02-27  Paul Eggert  <eggert@twinsun.com>
61472
61473         * lib/nanosleep.h: Rename to....
61474         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
61475
61476         * lib/gettime.c: New file.
61477         * lib/settime.c: New file.
61478         * lib/stime.c: Remove.
61479
61480         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
61481         timespec.h.  Remove nanosleep.h.
61482
61483 2002-02-25  Paul Eggert  <eggert@twinsun.com>
61484
61485         * m4/acl.m4: New file.
61486         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
61487         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
61488
61489 2002-02-25  Paul Eggert  <eggert@twinsun.com>
61490
61491         * lib/acl.c, lib/acl.h: New files.
61492         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
61493
61494 2002-02-24  Jim Meyering  <meyering@lucent.com>
61495
61496         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
61497         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
61498         cause trouble.  Reported by Nelson Beebe.
61499
61500 2002-02-23  Paul Eggert  <eggert@twinsun.com>
61501
61502         * lib/path-concat.c (xpath_concat): Reorder code to pacify
61503         compilers that don't know that xalloc_die never returns.
61504
61505 2002-02-20  Jim Meyering  <meyering@lucent.com>
61506
61507         * lib/getdate.c: Regenerate using bison-1.33.
61508
61509 2002-02-17  Jim Meyering  <meyering@lucent.com>
61510
61511         * config/config.guess (main): Don't use `head -1'; it's no longer
61512         portable. Use `sed 1q' instead.
61513
61514 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
61515
61516         * m4/codeset.m4: Upgrade to gettext-0.11.
61517         * m4/gettext.m4: Upgrade to gettext-0.11.
61518         * m4/glibc21.m4: Upgrade to gettext-0.11.
61519         * m4/iconv.m4: Upgrade to gettext-0.11.
61520         * m4/isc-posix.m4: Upgrade to gettext-0.11.
61521         * m4/lcmessage.m4: Upgrade to gettext-0.11.
61522         * m4/lib-ld.m4: New file, from gettext-0.11.
61523         * m4/lib-link.m4: New file, from gettext-0.11.
61524         * m4/lib-prefix.m4: New file, from gettext-0.11.
61525         * m4/progtest.m4: Upgrade to gettext-0.11.
61526
61527 2002-02-15  Paul Eggert  <eggert@twinsun.com>
61528
61529         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
61530         (jm_PREREQ): Use it.
61531
61532 2002-02-15  Paul Eggert  <eggert@twinsun.com>
61533
61534         * lib/posixver.c, lib/posixver.h: New files.
61535         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
61536
61537 2002-02-02  Paul Eggert  <eggert@twinsun.com>
61538             Bruno Haible  <bruno@clisp.org>
61539
61540         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
61541         (fwrite_success_callback): New declaration.
61542         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
61543         print_unicode_char. Call failure callback instead of error.
61544         (fwrite_success_callback): New function.
61545         (exit_failure_callback): New function.
61546         (fallback_failure_callback): New function.
61547         (print_unicode_char): Call unicode_to_mb.
61548
61549 2002-01-26  Jim Meyering  <meyering@lucent.com>
61550
61551         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
61552         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
61553
61554 2002-01-26  Jim Meyering  <meyering@lucent.com>
61555
61556         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
61557
61558 2002-01-22  Paul Eggert  <eggert@twinsun.com>
61559
61560         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
61561
61562 2002-01-22  Jim Meyering  <meyering@lucent.com>
61563
61564         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
61565         Otherwise, some versions of automake would omit the rule that makes
61566         Makefile from Makefile.in.
61567
61568 2002-01-21  Paul Eggert  <eggert@twinsun.com>
61569
61570         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
61571         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
61572         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
61573         (memcoll): Set errno to zero if there is no error.
61574
61575         * lib/quotearg.c (quotearg_buffer_restyled):
61576         Fix bug with quoting buffers containing NUL when backslashing escapes.
61577         This bug was exposed by the other changes in this patch.
61578         (quotearg_n_options): New arg ARGSIZE.
61579         All callers changed.
61580         (quoting_options_from_style): New function.
61581         (quotearg_n_style): Use it.
61582         (quotearg_n_style_mem): New function.
61583
61584         * lib/quotearg.h (quotearg_n_style_mem): New function.
61585
61586 2002-01-19  Jim Meyering  <meyering@lucent.com>
61587
61588         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
61589         Remove useless quotes: DF_PROG="df".
61590         * m4/strnlen.m4: New file.
61591
61592 2002-01-16  Paul Eggert  <eggert@twinsun.com>
61593
61594         * lib/backupfile.c (ISDIGIT): Comment fix.
61595         * lib/getdate.y (ISDIGIT): Likewise.
61596         * lib/posixtm.c (ISDIGIT, year): Likewise.
61597         * lib/strverscmp.c (ISDIGIT): Likewise.
61598         * lib/userspec.c (ISDIGIT): Likewise.
61599
61600 2002-01-16  Jim Meyering  <meyering@lucent.com>
61601
61602         * lib/getdate.y: Add three semicolons, each just before a closing
61603         brace. Bison (as of version 1.31) no longer papers over that mistake.
61604
61605 2002-01-05  Jim Meyering  <meyering@lucent.com>
61606
61607         * lib/version-etc.c (version_etc_copyright): Update copyright year.
61608
61609 2001-12-19  Paul Eggert  <eggert@twinsun.com>
61610
61611         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
61612         not silently exit merely because the output buffer happens to
61613         have nothing pending.
61614
61615 2001-12-18  Paul Eggert  <eggert@twinsun.com>
61616
61617         See the big note in ../ChangeLog.
61618         * lib/human.c (suffixes): Prefer K to k for 1024.
61619         (generate_suffix_backwards): New function.
61620         (human_readable_inexact): Use it.
61621         * lib/xstrtol.c (__xstrtol): If there is no number but there
61622         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
61623         Accept 'K' as well as 'k'.
61624
61625 2001-12-15  Jim Meyering  <meyering@lucent.com>
61626
61627         * lib/regex.h (__restrict_arr): Update from libc.
61628
61629         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
61630         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
61631         (STREQ): Define.
61632
61633 2001-12-14  Jim Meyering  <meyering@lucent.com>
61634
61635         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
61636         Suggestion from Bruno Haible.
61637
61638 2001-12-10  Jim Meyering  <meyering@lucent.com>
61639
61640         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
61641         xrealloc, Instead, include "xalloc.h".
61642         (initbuffer): Don't cast xmalloc return value to char*.
61643         (readline): Reword comment.
61644         Don't cast xrealloc return value to char*
61645         Return NULL, not 0.
61646
61647 2001-12-09  Jim Meyering  <meyering@lucent.com>
61648
61649         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
61650         about `signed and unsigned type in conditional expression'.
61651         * lib/posixtm.c (posix_time_parse): Likewise.
61652
61653         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
61654
61655         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
61656         to avoid a pedantic warning.
61657
61658         * lib/getstr.c: Don't include assert.h.
61659         (getstr): Remove warning-evoking assertions.
61660         Return -1 if offset parameter is out of bounds.
61661         Change the type of a local from int to size_t.
61662
61663         * lib/strftime.c (my_strftime_localtime_r): Include this function
61664         definition in the `#if ! HAVE_TM_GMTOFF' block.
61665
61666         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
61667         Include xalloc.h instead.
61668
61669 2001-12-02  Jim Meyering  <meyering@lucent.com>
61670
61671         * lib/tempname.c: Don't declare getenv, thus reverting the change of
61672         2001-11-18.  It's no longer necessary, now that stdlib.h is always
61673         included.
61674
61675         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
61676         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
61677
61678 2001-11-30  Akim Demaille  <akim@epita.fr>
61679
61680         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
61681         before being defined.
61682
61683 2001-11-27  Paul Eggert  <eggert@twinsun.com>
61684
61685         * lib/quotearg.h (quotearg_n, quotearg_n_style):
61686         First arg is int, not unsigned.
61687         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
61688         (SIZE_MAX, UINT_MAX): New macros.
61689         (quotearg_n_options): Abort if N is negative.
61690         Avoid overflow check on hosts where size_t is 64 bits and int
61691         is 32 bits, as overflow is impossible there.
61692         Fix off-by-one typo that caused unnecessary reallocation.
61693
61694 2001-11-27  Jim Meyering  <meyering@lucent.com>
61695
61696         * lib/tempname.c: Merge with version from libc.
61697         * lib/regex.c: Likewise.
61698
61699         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
61700         systems for which STDC_HEADERS is 0, it was not included, resulting in
61701         a warning about an integer-to-pointer conversion problem with getenv.
61702         Reported by Volker Borchert.
61703
61704 2001-11-26  Jim Meyering  <meyering@lucent.com>
61705
61706         * lib/gtod.h: Remove file.
61707         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
61708         * lib/gettimeofday.c: Don't include gtod.h.
61709         (GTOD_init): Remove function.
61710         (rpl_gettimeofday): Do its job here instead, rather than aborting.
61711         Suggestion from Volker Borchert.
61712
61713 2001-11-23  Jim Meyering  <meyering@lucent.com>
61714
61715         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
61716         it.
61717         * lib/hash.c (struct hash_table): Define it here instead.
61718
61719 2001-11-22  Jim Meyering  <meyering@lucent.com>
61720
61721         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
61722
61723 2001-11-20  Jim Meyering  <meyering@lucent.com>
61724
61725         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
61726         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
61727
61728 2001-11-19  Jim Meyering  <meyering@lucent.com>
61729
61730         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
61731         directory.  Use "conftestXXXXXX" as the template.
61732         Suggestion from Paul Eggert.
61733
61734         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
61735         immediately, so the test doesn't mistakenly hit the max-open-files
61736         limit.
61737
61738 2001-11-18  Paul Eggert  <eggert@twinsun.com>
61739
61740         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
61741         (TEMPORARIES): New macro.
61742         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
61743         removes an artificial limitation (e.g. HP-UX 10.20, where
61744         TMP_MAX is 17576).
61745
61746 2001-11-18  Jim Meyering  <meyering@lucent.com>
61747
61748         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
61749
61750 2001-11-18  Jim Meyering  <meyering@lucent.com>
61751
61752         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
61753         on SunOS 4.
61754
61755         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
61756         files will be created before anything else.
61757
61758 2001-11-17  Paul Eggert  <eggert@twinsun.com>
61759
61760         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
61761         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
61762
61763 2001-11-17  Jim Meyering  <meyering@lucent.com>
61764
61765         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
61766         Prompted by a report from Bob Proulx.
61767
61768         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
61769         Instead, require UTILS_FUNC_MKSTEMP.
61770
61771 2001-11-17  Jim Meyering  <meyering@lucent.com>
61772
61773         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
61774         Now, that's done as part of AC_FUNC_STRTOD.
61775
61776 2001-11-17  Jim Meyering  <meyering@lucent.com>
61777
61778         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
61779         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
61780         rather than group writable.  Patch by Juan F. Codagnone.
61781
61782         * lib/readtokens.c: Remove explicit declarations of xmalloc and
61783         xrealloc, Instead, include "xalloc.h".
61784
61785         * lib/mountlist.c: Include unlocked-io.h after all system headers.
61786         Remove explicit declarations of xmalloc, xrealloc,
61787         and xstrdup.  Instead, include "xalloc.h".
61788
61789         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
61790         unlocked-io.h.
61791         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
61792         Likewise.
61793         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
61794
61795         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
61796         Reported by Padraig Brady.
61797
61798         * lib/mkstemp.c: #undef mkstemp.
61799         Include config.h.
61800         (rpl_mkstemp): Rename from mkstemp.
61801         Protoize.
61802
61803 2001-11-16  Jim Meyering  <meyering@lucent.com>
61804
61805         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
61806         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
61807         determine the amount of total physical memory, use pstat_getstatic.
61808         HPUX-11 doesn't define _SC_PHYS_PAGES.
61809         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
61810         If sysconf couldn't be used to determine the amount of available
61811         physical memory, use both pstat_getstatic and pstat_getdynamic.
61812         Based on a patch from Bob Proulx.
61813
61814 2001-11-10  Jim Meyering  <meyering@lucent.com>
61815
61816         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
61817         (jm_PREREQ): Use it.
61818
61819 2001-11-09  Jim Meyering  <meyering@lucent.com>
61820
61821         * m4/jm-macros.m4: Require autoconf-2.52f.
61822         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
61823         Use these AC_-prefixed names, not the AM_-prefixed ones.
61824
61825         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
61826
61827 2001-11-05  Jim Meyering  <meyering@lucent.com>
61828
61829         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
61830
61831 2001-11-04  Jim Meyering  <meyering@lucent.com>
61832
61833         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
61834         $DEFS.
61835
61836 2001-11-03  Jim Meyering  <meyering@lucent.com>
61837
61838         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
61839         of AC_DEFUN.
61840
61841         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
61842         know the name of the variable in the macro definition.
61843
61844 2001-11-03  Jim Meyering  <meyering@lucent.com>
61845
61846         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
61847         in argmatch_to_argument call.
61848
61849         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
61850         argument.
61851
61852         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
61853         e.g., a fault due to an attempt to free a NULL pointer.
61854
61855 2001-11-01  Jim Meyering  <meyering@lucent.com>
61856
61857         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
61858         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
61859
61860 2001-11-01  Jim Meyering  <meyering@lucent.com>
61861
61862         * lib/dirfd.c, lib/dirfd.h: New files.
61863         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
61864
61865         * lib/hash.c (hash_print) [TESTING]: Clean up.
61866
61867 2001-10-22  Paul Eggert  <eggert@twinsun.com>
61868
61869         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
61870         to avoid a warning if -Wall.
61871
61872 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
61873
61874         * README: New file
61875         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
61876         (per RMS's instructions, this is now the canonical source)
61877         * lgpl/, gpl/: New directories.
61878
61879 2001-10-21  Paul Eggert  <eggert@twinsun.com>
61880
61881         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
61882
61883 2001-10-21  Jim Meyering  <meyering@lucent.com>
61884
61885         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
61886         this code would end up calling gettext even in packages built
61887         with --disable-nls.
61888         * lib/getopt.c (_): Likewise.
61889         * lib/regex.c (_): Likewise.
61890
61891 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61892
61893         * m4/error.m4 (jm_PREREQ_ERROR):
61894         Do not invoke AC_CHECK_FUNCS with strerror_r, as
61895         AC_FUNC_STRERROR_R does that.
61896         Check for strerror declaration.
61897
61898         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
61899         are supposed to have them these days.
61900         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
61901         Merge changes from latest Autoconf CVS.
61902         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
61903         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
61904         POSIX decided to standardize on the int flavor of strerror_r.
61905
61906 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61907
61908         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
61909         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
61910         Use strerror_r that is only a macro, even if it is not a function.
61911         (strerror): Check for HAVE_DECL_STRERROR before declaring.
61912         (private_strerror): Use prototypes, not old-style function definition.
61913         (print_errno_message): New function.
61914         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
61915         char*-flavored one.
61916         (error_tail, error, error_at_line): Use it.
61917
61918 2001-10-11  Jim Meyering  <meyering@lucent.com>
61919
61920         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
61921         and quote_n (1, ... to avoid clobbering a buffer.
61922
61923 2001-10-05  Jim Meyering  <meyering@lucent.com>
61924
61925         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
61926         hash-pjw.h.
61927         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
61928         * lib/hash-pjw.h: New file.
61929
61930 2001-09-30  Jim Meyering  <meyering@lucent.com>
61931
61932         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
61933         `struct fsstat' has the `f_fstypename' member.
61934         Use that to define FS_TYPE, which is now used to make
61935         the getfsstat link test tighter.
61936
61937 2001-09-30  Jim Meyering  <meyering@lucent.com>
61938
61939         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
61940         Include <sys/ucred.h>, for Apple Darwin.
61941         Include sys/mount.h and sys/fs_types.h only if available.
61942         (FS_TYPE): Define.
61943         (read_filesystem_list): Use FS_TYPE.
61944
61945 2001-09-29  Paul Eggert  <eggert@twinsun.com>
61946
61947         * lib/exclude.c (excluded_filename): 0 -> false, since it's
61948         a boolean context.
61949
61950 2001-09-29  Jim Meyering  <meyering@lucent.com>
61951
61952         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61953         [one-argument getmntent function]): Include stdio.h before mntent.h.
61954         SunOS 4.1.x needs it for the declaration of `FILE'.
61955         Patch by Volker Borchert.
61956
61957         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61958         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
61959         sys/fs_types.h, and make the link-test for getfsstat guard #include
61960         directives with appropriate #if HAVE_*_H tests so that we can
61961         detect getfsstat on Apple Darwin1.3.7 systems.
61962         Reported by Nelson Beebe.
61963         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
61964
61965 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61966
61967         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61968         #defines strtoimax.  Also treat the other strto* functions
61969         like strtoimax.
61970
61971         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61972         Check for strtoul and strtoumax,
61973         as those declarations are made even in the signed case.
61974         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
61975         Likewise, for strtol and strtoimax.
61976
61977 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61978
61979         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61980         #defines strtoimax.  Also treat the other strto* functions
61981         like strtoimax.
61982
61983         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
61984         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
61985         (strtoimax, strtoumax): Do not declare if already defined as a macro.
61986
61987 2001-09-26  Jim Meyering  <meyering@lucent.com>
61988
61989         Most macros in unlocked-io.h had the wrong number of arguments.
61990         * lib/gen-uio: New script.
61991         (USE_UNLOCKED_IO): Define to 1 if not already defined.
61992         * lib/unlocked-io.hin: Remove file.
61993         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
61994         rather than trying to embed it here.
61995         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
61996         Reported by Padraig Brady.
61997
61998 2001-09-25  Volker Borchert  <bt@teknon.de>
61999
62000         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
62001         `result'.
62002
62003 2001-09-24  Jim Meyering  <meyering@lucent.com>
62004
62005         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
62006
62007 2001-09-23  Jim Meyering  <meyering@lucent.com>
62008
62009         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
62010         instead of the mere test for existence of mntent.h.  The latter
62011         would get a false-positive on AIX 3.4 systems.
62012         In the outer getmntent if-block, don't die if neither of the getmntent
62013         tests succeeds.  Instead, just fall through and continue with the
62014         remaining tests.
62015
62016 2001-09-23  Jim Meyering  <meyering@lucent.com>
62017
62018         * lib/mountlist.c: Remove useless parentheses in #if directives.
62019         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
62020         the deprecated MOUNTED symbol is no longer defined in mntent.h.
62021
62022 2001-09-22  Jim Meyering  <meyering@lucent.com>
62023
62024         * m4/gettext.m4: New file.  From gettext.
62025         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
62026         * m4/progtest.m4: Likewise
62027         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
62028         * m4/glibc21.m4: Likewise.
62029
62030         * m4/libintl.m4: Remove.  No longer used.
62031
62032 2001-09-22  Jim Meyering  <meyering@lucent.com>
62033
62034         * lib/localcharset.c: Update from latest gettext.
62035         * lib/config.charset: Likewise.
62036
62037 2001-09-20  Jim Meyering  <meyering@lucent.com>
62038
62039         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
62040         strtoimax.
62041         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
62042         strtoumax.
62043
62044 2001-09-20  Jim Meyering  <meyering@lucent.com>
62045
62046         * lib/xstrtol.c (strtoimax): Guard declaration with
62047         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
62048         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
62049         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
62050         (strtoumax): Likewise, for completeness (it wasn't necessary).
62051
62052 2001-09-17  Paul Eggert  <eggert@twinsun.com>
62053
62054         * lib/strtoimax.c (HAVE_LONG_LONG):
62055         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
62056         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
62057         to work around bug in IBM C compiler.
62058
62059 2001-09-17  Jim Meyering  <meyering@lucent.com>
62060
62061         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
62062         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
62063         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
62064         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
62065         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
62066         whenever the right hand side need not be expanded by the shell.
62067
62068 2001-09-16  Paul Eggert  <eggert@twinsun.com>
62069
62070         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
62071         library.  It's not correct, as some older glibcs are buggy.
62072         fnmatch wasn't fixed until glibc 2.2.
62073
62074         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
62075         special shell magic here.
62076
62077 2001-09-16  Jim Meyering  <meyering@lucent.com>
62078
62079         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
62080         * m4/jm-macros.m4: Require it.
62081
62082 2001-09-16  Jim Meyering  <meyering@lucent.com>
62083
62084         * lib/mkdir.c: New file.
62085
62086 2001-09-15  Jim Meyering  <meyering@lucent.com>
62087
62088         * m4/jm-macros.m4: Check for help2man.
62089
62090 2001-09-11  Jim Meyering  <meyering@lucent.com>
62091
62092         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
62093         The body, by Paul Eggert, was moved here from configure.in.
62094         * m4/jm-macros.m4: Require UTILS_HOST_OS.
62095
62096 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62097
62098         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
62099         (jm_PREREQ): Use it.
62100
62101 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62102
62103         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
62104         Use ssize_t, not int, to store result of readlink.
62105         Check for ssize_t overflow as well as size_t overflow,
62106         as POSIX says the result of readlink is implementation-defined
62107         when ssize_t overflows.
62108         Remove unnecessary cast to char*.
62109         Use free+malloc instead of realloc, as the storage doesn't need
62110         to be preserved and it's clearer and can be more efficient that way.
62111         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
62112         * lib/xreadlink.h (xreadlink): Update prototype.
62113
62114 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62115
62116         * lib/xgetcwd.c: Revert some of the previous change; intead,
62117         fix the HAVE_GETCWD_NULL code to behave more like the
62118         !HAVE_GETCWD_NULL code used to.
62119
62120         Include "xalloc.h".
62121         (xgetcwd): Do not return NULL when memory is exhausted; instead,
62122         invoke xalloc_die.
62123
62124 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62125
62126         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
62127         sys/param.h, as pathmax.h includes them.
62128
62129 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62130
62131         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
62132         (jm_PREREQ_XGETCWD): New macro.
62133
62134         * m4/getcwd.m4: New file.
62135
62136 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62137
62138         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
62139         like the HAVE_GETCWD_NULL code.
62140         Include pathmax.h if not HAVE_GETCWD.
62141         Do not include xalloc.h.
62142         (INITIAL_BUFFER_SIZE): New symbol.
62143         Do not use xmalloc / xrealloc, since the caller is responsible for
62144         handling errors.  Preserve errno around `free' during failure.
62145         Do not overrun buffer when using getwd.
62146
62147 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62148
62149         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
62150         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
62151         getcwd (NULL, 0).
62152
62153 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62154
62155         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
62156         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
62157         spotted by Jim Meyering.
62158
62159 2001-09-03  Jim Meyering  <meyering@lucent.com>
62160
62161         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
62162         failure.
62163
62164 2001-09-02  Jim Meyering  <meyering@lucent.com>
62165
62166         * lib/error.c: Update from GNU libc.
62167
62168 2001-09-01  Jim Meyering  <meyering@lucent.com>
62169
62170         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
62171         Used by df.
62172
62173 2001-09-01  Jim Meyering  <meyering@lucent.com>
62174
62175         * lib/xreadlink.c: New file.
62176         * lib/xreadlink.h: New file.
62177         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
62178         xreadlink.h.
62179
62180         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
62181         doesn't conflict with sparc Solaris 7's definition in
62182         /usr/include/sys/int_types.h.
62183
62184         * lib/exclude.c: Use `""', not `<>' to #include non-system header
62185         files.
62186         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
62187         and strncasecmp as r-values.  Unixware didn't have declarations.
62188
62189 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62190
62191         * lib/xstrtol.h: Add copyright notice.
62192         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
62193         LONGINT_INVALID_SUFFIX_CHAR.
62194
62195 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62196
62197         * lib/xstrtol.c (strtoimax): New decl.
62198
62199 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62200
62201         * lib/xgetcwd.c: Don't include pathmax.h.
62202         Include stdlib.h and unistd.h if available.
62203         Include xalloc.h.
62204         (xmalloc, xstrdup, free): Remove decls.
62205         (xgetcwd): Don't assume sizes fit in unsigned.
62206         Check for overflow when computing sizes.
62207         Simplify reallocation code.
62208
62209 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62210
62211         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
62212         a directory's st_size can have an arbitrary value, so the old
62213         usage could waste an arbitrary amount of memory.  All uses
62214         changed.
62215         * lib/savedir.h: Update prototype.
62216
62217 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62218
62219         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
62220
62221         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
62222         old strtoimax.c.
62223
62224         Also, make the following further changes to make this file's
62225         configuration more similar to that of strtol.c:
62226         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
62227         (strtoumax, uintmax_t, strtoull, strtol): Remove.
62228         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
62229         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
62230         changed to signed values.
62231
62232         And make the following changes as well:
62233         Fix copyright notice, as 1999 was missing.
62234         (verify): New macro.
62235         (strtoimax): Check sizes at compile-time, not run-time.
62236         Prefer strtol to strtoll if both work.
62237         (main): Remove; it was not that useful and was a pain to maintain.
62238
62239         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
62240
62241 2001-08-31  Jim Meyering  <meyering@lucent.com>
62242
62243         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
62244         Use an initial, malloc'd, buffer of length 128 rather than
62245         a statically allocated one of length 1024.
62246
62247 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62248
62249         Simplify code, partly by assuming autoconf 2.52 semantics.
62250
62251         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
62252
62253         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
62254         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
62255         All uses removed.
62256         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
62257         Move AC_REQUIRE to next-to-top level, to avoid confusion.
62258         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
62259         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
62260         jm_AC_HEADER_INTTYPES_H.
62261         * m4/jm-macros.m4 (jm_MACROS): Likewise.
62262
62263         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
62264
62265         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
62266         Quote first arg of AC_DEFUN.
62267         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
62268         since they are needed to parse the include file even if we need
62269         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
62270         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
62271         but with opposite signedness.
62272
62273 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62274
62275         Merge 'exclude' changes from tar 1.13.22.
62276         This fixes one or two unlikely storage allocation overflow bugs,
62277         but doesn't change user-visible behavior otherwise.
62278
62279 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62280
62281         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
62282         (jm_PREREQ_EXCLUDE): New macro.
62283
62284 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62285
62286         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
62287         tm to be declared.
62288
62289 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62290
62291         * lib/hash.c: Remove '2001' from copyright notice.
62292
62293 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62294
62295         * lib/full-write.h: New file.
62296         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
62297         * lib/full-write.c: Correct credits, as cccp.c no longer
62298         exists and anyway it was so heavily changed from the old cccp
62299         code as to be unrecognizable.  Include full-write.h.
62300         (full_write) Return size_t, with short writes meaning failure.
62301         All callers changed.  This fixes a bug with large buffers
62302         on 64-bit hosts.
62303         * lib/utime.c: Include full-write.h.
62304
62305 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62306
62307         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
62308         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
62309         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
62310         Include if available.
62311         (<xalloc.h>): Include
62312         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
62313         (verify): New macro.  Use it to verify that EXCLUDE macros do not
62314         collide with FNM macros.
62315         (struct patopts): New struct.
62316         (struct exclude): Use it, as exclude patterns now come with options.
62317         (new_exclude): Support above changes.
62318         (new_exclude, add_exclude_file):
62319         Initial size must now be a power of two to simplify overflow checking.
62320         (free_exclude, fnmatch_no_wildcards): New function.
62321         (excluded_filename): No longer requires options arg, as the options
62322         are determined by add_exclude.  Now returns bool, not int.
62323         (excluded_filename, add_exclude):
62324         Add support for the fancy new exclusion options.
62325         (add_exclude, add_exclude_file): Now takes int options arg.
62326         Check for arithmetic overflow when computing sizes.
62327         (add_exclude_file): xrealloc might modify errno, so don't
62328         realloc until after errno might be used.
62329
62330         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
62331         New macros.
62332         (free_exclude): New decl.
62333         (add_exclude, add_exclude_file): Now takes int options arg.
62334         (excluded_filename): No longer requires options arg, as the options
62335         are determined by add_exclude.  Now returns bool, not int.
62336
62337 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62338
62339         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
62340
62341 2001-08-27  Jim Meyering  <meyering@lucent.com>
62342
62343         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
62344
62345         * lib/version-etc.c (N_): Remove definition.
62346         Revert most of last change.
62347         Instead, simply don't mark the `Copyright...' string for translation.
62348         Based on advice from Paul Eggert.
62349
62350         * lib/strtoxmax.c: Tweak comment.
62351
62352 2001-08-26  Jim Meyering  <meyering@lucent.com>
62353
62354         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
62355
62356         * m4/xstrtoimax.m4: New file.
62357         * m4/xstrtoumax.m4: Add comments explaining why we
62358         AC_REPLACE_FUNCS(strtol).
62359
62360 2001-08-26  Jim Meyering  <meyering@lucent.com>
62361
62362         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
62363         of copyright with `%s' so translators don't get an untranslated
62364         message in 2002.
62365         (COPYRIGHT_YEAR): Define.
62366         (version_etc): Use fprintf rather than fputs.
62367         Suggestion from Ulrich Drepper.
62368
62369         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
62370
62371         * lib/strtoll.c: New file, from GNU libc.
62372         * lib/xstrtoimax.c: New file.
62373
62374         * lib/xstrtol.h: Add xstrtoimax.
62375         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
62376         * lib/strtoimax.c: New file.  Likewise, but first define
62377         STRTOUXMAX_SIGNED.
62378
62379         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
62380         ...
62381         * lib/strtoxmax.c: ... then renamed to this.
62382
62383 2001-08-18  Paul Eggert  <eggert@twinsun.com>
62384
62385         * m4/inttypes.m4: Add AC_PREREQ(2.13).
62386         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
62387         (jm_AC_TYPE_INTMAX_T): New macro.
62388         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
62389
62390         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
62391
62392         * m4/longlong.m4: Renamed from ulonglong.m4.
62393         * m4/inttypes.m4: Renamed from inttypes_h.m4.
62394         * m4/uintmax_t.m4: Removed.
62395
62396 2001-08-13  Paul Eggert  <eggert@twinsun.com>
62397
62398         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
62399         Port to Solaris 8, where 'sed' requires a space after the 'r'
62400         command, and where sh dislikes "$/".  Clean up the spacing a bit.
62401         Redirect output to $tmp just once.
62402
62403 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
62404
62405         * lib/addext.c (<errno.h>): Include.
62406         (errno): Declare if not defined.
62407         (addext): Work correctly when pathconf returns -1 and leaves
62408         errno alone because there is no limit.  Also, work even if
62409         pathconf returns a value greater than SIZE_MAX.
62410
62411 2001-08-12  Jim Meyering  <meyering@lucent.com>
62412
62413         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
62414         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
62415         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
62416         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
62417         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
62418         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
62419         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
62420         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
62421         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
62422         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
62423         utime.m4, utimes.m4, xstrtoumax.m4:
62424         Quote the first argument in each use of AC_DEFUN.
62425
62426 2001-08-12  Jim Meyering  <meyering@lucent.com>
62427
62428         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
62429         Simply `return getcwd (NULL, 0);'.
62430         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
62431         Use 1300 as initial value for length, not PATH_MAX.
62432
62433         * lib/pathmax.h: Clean up cpp syntax.
62434
62435 2001-08-12  Jim Meyering  <meyering@lucent.com>
62436
62437         * lib/gettimeofday.c: New file.
62438         * lib/gtod.h: New file.
62439         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
62440
62441 2001-08-05  Jim Meyering  <meyering@lucent.com>
62442
62443         * m4/jm-macros.m4: Require autoconf-2.52.
62444
62445 2001-08-04  Jim Meyering  <meyering@lucent.com>
62446
62447         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
62448         stmt, to get in sync with glibc.
62449
62450 2001-08-03  Paul Eggert  <eggert@twinsun.com>
62451
62452         The following changes are from gettext 0.10.39 as maintained by
62453         Bruno Haible.
62454
62455         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
62456         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
62457         with inverted sense.  All uses changed.
62458
62459         * lib/mbswidth.c: Don't include <limits.h>.
62460         Include <stdlib.h> and <string.h> unconditionally.
62461         (iswcntrl, mbsinit, ISCNTRL): New macros.
62462         (mbsnwidth): Use K&R style function declarations.
62463         Don't bother checking for MB_LEN_MAX == 1, since the compiler
62464         can optimize it when MB_CUR_MAX == 1.
62465         The width of control characters is zero, not 1.
62466
62467 2001-08-03  Paul Eggert  <eggert@twinsun.com>
62468
62469         The following changes are from gettext 0.10.39 as maintained by
62470         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
62471
62472         * m4/codeset.m4: Upgrade to serial AM1.
62473         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
62474         all uses changed.  Quote first arg of AC_DEFUN.
62475         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
62476
62477         * m4/iconv.m4: Upgrade to serial AM2.
62478         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
62479         Add --with-libconv-prefix.
62480         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
62481         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
62482         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
62483         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
62484         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
62485
62486         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
62487         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
62488         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
62489         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
62490         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
62491         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
62492         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
62493         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
62494         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
62495
62496         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
62497         string.h any more.
62498
62499         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
62500         not the default value.
62501
62502         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
62503         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
62504         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
62505         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
62506         Also check for iswcntrl, used for wcwidth fallback.
62507         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
62508         to Autoconf 2.13.
62509
62510 2001-08-03  Jim Meyering  <meyering@lucent.com>
62511
62512         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
62513         as it was in the original.  Reported by Paul Eggert.
62514
62515 2001-07-16  Jim Meyering  <meyering@lucent.com>
62516
62517         * m4/gettimeofday.m4: New file.
62518         Prompted by a report from Bernhard Baehr.
62519
62520 2001-07-15  Jim Meyering  <meyering@lucent.com>
62521
62522         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
62523         stuff. Now it's in ../Makefile.cfg.
62524
62525 2001-07-15  Jim Meyering  <meyering@lucent.com>
62526
62527         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
62528         (BUILT_SOURCES): Add unlocked-io.h.
62529         (io_functions): Define.
62530         (unlocked-io.h): New rule.
62531         (DISTCLEANFILES): Add unlocked-io.h.
62532         (all-local): Depend on unlocked-io.h, to ensure it is created.
62533
62534         * lib/unlocked-io.hin: New file
62535
62536         * lib/regex.c: Update from glibc.
62537
62538 2001-07-05  Jim Meyering  <meyering@lucent.com>
62539
62540         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
62541         recommendation.
62542         (libfetish_a_SOURCES): Put all .h files here instead.
62543         Remove a thus-exposed (better checks in automake) duplicate and
62544         two unnecessary .h files.
62545
62546 2001-07-04  Jim Meyering  <meyering@lucent.com>
62547
62548         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
62549         that generates jm-glibc-io.m4 so that it doesn't trigger any make
62550         distcheck failure.
62551
62552 2001-07-02  Jim Meyering  <meyering@lucent.com>
62553
62554         The following changes were prompted by suggestions from Bruno Haible.
62555
62556         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
62557         is now generated.
62558         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
62559         definition of EXTRA_DIST.
62560         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
62561         ensure that the generated file is created/updated whenever the list
62562         of $(unlocked_functions) is changed.
62563         (jm-glibc-io.m4): New rule.
62564         (unlocked-io.h): New rule -- currently unused.
62565
62566 2001-06-24  Jim Meyering  <meyering@lucent.com>
62567
62568         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
62569         unmatched right bracket, rather than kludging it with an extra,
62570         falsely-matching quote in a comment.  Patch by Akim Demaille.
62571
62572 2001-06-11  Jim Meyering  <meyering@lucent.com>
62573
62574         * lib/regex.c: Update from GNU libc.
62575
62576 2001-05-27  Jim Meyering  <meyering@lucent.com>
62577
62578         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
62579         Check for ut_type in struct utmp.
62580
62581 2001-05-27  Jim Meyering  <meyering@lucent.com>
62582
62583         * lib/readutmp.h (UT_TYPE): Define.
62584
62585 2001-05-24  Jim Meyering  <meyering@lucent.com>
62586
62587         * lib/argmatch.c: Include "quote.h".
62588         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
62589         quote function.  Reported by Göran Uddeborg.
62590
62591 2001-05-22  Jim Meyering  <meyering@lucent.com>
62592
62593         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
62594         now that we use the package-supplied version unconditionally.
62595         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
62596
62597 2001-05-21  Jim Meyering  <meyering@lucent.com>
62598
62599         * m4/regex.m4: Change a couple backticks to single quotes to avoid
62600         shell syntax errors.
62601
62602 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62603
62604         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
62605
62606 2001-05-20  Paul Eggert  <eggert@twinsun.com>
62607
62608         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
62609         Don't bother to check library strftime, since
62610         we'll be using our own my_strftime function anyway.
62611         Define my_strftime instead of strftime.
62612
62613 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
62614
62615         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
62616         which is not yet declared.
62617
62618 2001-05-15  Jim Meyering  <meyering@lucent.com>
62619
62620         * m4/regex.m4: Use proper quoting so brackets appear in the test
62621         program.
62622         Reported by, and with help from, Bruno Haible.
62623
62624 2001-05-13  Jim Meyering  <meyering@lucent.com>
62625
62626         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
62627         undefined.
62628
62629 2001-05-11  Paul Eggert  <eggert@twinsun.com>
62630
62631         dirname code cleanup.  base_name now behaves more compatibly
62632         with POSIX basename when given file names that have trailing
62633         slashes, and similarly for dir_name.  Add new primitives
62634         base_len and dir_len.  Put the directory-name-related decls
62635         into dirname.h.
62636
62637         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
62638         * lib/backupfile.c (base_name): Likewise.
62639         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
62640         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
62641         * lib/makepath.c (strip_trailing_slashes): Likewise.
62642         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
62643         ISSLASH): Likewise.
62644         * lib/rename.c (strip_trailing_slashes): Likewise.
62645         * lib/same.c (base_name): Likewise.
62646         * lib/stripslash.c (ISSLASH): Likewise.
62647
62648         * lib/addext.c: Include <dirname.h> after size_t is defined.
62649         * lib/backupfile.c: Likewise.
62650
62651         * lib/addext.c (addext): Use base_len to trim redundant
62652         trailing slashes instead of doing it ourselves.
62653         But do not trim the last slash if it is not redundant.
62654
62655         * lib/backupfile.c (find_backup_file_name,
62656         max_backup_version): Use base_len instead of rolling it ourselves.
62657         Handle the case of "" and (on DOS) "C:" correctly.
62658
62659         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
62660         needed. Include <string.h>, <dirname.h>.
62661         (base_name): Allow file names ending in slashes, other than names
62662         that are all slashes.  In this case, return the basename followed
62663         by the slashes.  This is more general, and can be used in places
62664         where the original base_name purposely had an assertion failure.
62665         (base_len): New function.
62666
62667         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
62668         Do not include <assert.h>; no longer needed.
62669         Include xalloc.h.
62670         (memrchr): Remove decl.
62671         (dir_name_r): Remove.
62672         (dir_len): Renamed from dirlen.  All callers changed.
62673         Rewrite in terms of base_name, for simplicity and consistency.
62674         (dir_name): Never return NULL.  All callers changed.
62675         Do not include <stdlib.h> in test program; no longer needed.
62676         return 0; is fine for test program.
62677
62678         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
62679         New macros.
62680         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
62681
62682         * lib/path-concat.c (path_concat): Use base_len to compute
62683         base length, not strlen; this means we cannot rely on memcpy
62684         to null-terminate.
62685
62686         * lib/same.c (STREQ): Remove.
62687         (same_name): Handle the case where the basename ends in trailing '/'.
62688
62689         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
62690         a slash was stripped.  Do not strip the last slash after a
62691         file system prefix.
62692
62693 2001-05-11  Paul Eggert  <eggert@twinsun.com>
62694
62695         * lib/Makefile.am (libfetish_a_SOURCES):
62696         Add strftime.c, since we now compile it on all hosts.
62697
62698         * lib/strftime.c (my_strftime):
62699         Define to nstrftime if emacs, but only if my_strftime is not defined.
62700         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
62701         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
62702         Add one more extra argument: a nanoseconds value.
62703         All uses changed.
62704         (ns): New macro.
62705         (my_strftime function): Add %N format.
62706         (emacs_strftimeu): Renamed from emacs_strftime,
62707         with extra ut argument.
62708
62709 2001-05-09  Paul Eggert  <eggert@twinsun.com>
62710
62711         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
62712
62713 2001-04-21  Jim Meyering  <meyering@lucent.com>
62714
62715         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
62716         doesn't interfere.
62717
62718 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62719
62720         * m4/ftruncate.m4: Check for chsize.
62721         Link with ftruncate.o unconditionally if ftruncate is missing.
62722         This was required when cross-compiling to i586-mingw32msvc.
62723
62724 2001-04-08  Jim Meyering  <meyering@lucent.com>
62725
62726         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
62727         recomputed; that's necessary when the offset spans a DST transition.
62728         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
62729
62730 2001-04-02  Jim Meyering  <meyering@lucent.com>
62731
62732         * lib/regex.h, regex.c: Update from GNU libc.
62733
62734 2001-03-24  Jim Meyering  <meyering@lucent.com>
62735
62736         * m4/jm-macros.m4: Require autoconf-2.49d.
62737
62738 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
62739
62740         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
62741
62742 2001-03-19  Paul Eggert  <eggert@twinsun.com>
62743
62744         * lib/version-etc.c (version_etc_copyright): Update to 2001.
62745
62746 2001-03-17  Jim Meyering  <meyering@lucent.com>
62747
62748         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
62749         now that the version in autoconf is equivalent.
62750         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
62751
62752         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
62753         Suggestion from Akim Demaille.
62754
62755         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
62756         (jm_PREREQ_TEMPNAME): New function.
62757
62758 2001-03-16  Paul Eggert  <eggert@twinsun.com>
62759
62760         * lib/tempname.c (uint64_t): Define to uintmax_t if
62761         not defined, and if UINT64_MAX is not defined.
62762         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
62763         Reported by John David Anglin.
62764
62765 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
62766
62767         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
62768         resolve alias if codeset is empty.
62769         * lib/config.charset (BeOS): Use wildcard syntax.
62770
62771 2001-03-13  Jim Meyering  <meyering@lucent.com>
62772
62773         * lib/path-concat.c (path_concat)
62774         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
62775         concatenating e.g., `C:' and `foo'.
62776         From Bruno Haible.
62777
62778 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62779
62780         * lib/localcharset.c (locale_charset): Don't use
62781         setlocale(LC_CTYPE,NULL). Don't return NULL.
62782         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
62783
62784 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62785
62786         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
62787         support for DOS/DJGPP.
62788
62789 2001-03-01  Paul Eggert  <eggert@twinsun.com>
62790
62791         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
62792         lacks mkstemp.  Compile our own tempname.c if we compile our own
62793         mkstemp.c, as mkstemp relies on tempname.
62794
62795 2001-03-01  Jim Meyering  <meyering@lucent.com>
62796
62797         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
62798         AH_VERBATIM really does output its argument verbatim.
62799
62800 2001-02-28  Paul Eggert  <eggert@twinsun.com>
62801
62802         * lib/Makefile.am (libfetish_a_SOURCES):
62803         Add dup-safer.c, fopen-safer.c.
62804         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
62805
62806         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
62807         * lib/unistd-safer.h: New files.
62808
62809 2001-02-25  Paul Eggert  <eggert@twinsun.com>
62810
62811         The mkstemp replacement is taken from glibc 2.2.2, with some
62812         portability fixes for use outside glibc, as follows:
62813
62814         * lib/tempname.c (struct_stat64): New macro.
62815         (direxists, __gen_tempname): Use it.
62816         This avoids a portability problem with Solaris 8.
62817
62818         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
62819         (<stddef.h>, <stdint.h>, <string.h>):
62820         Include only if STDC_HEADERS || _LIBC.
62821         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
62822         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
62823         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
62824         (__set_errno): Define this macro if <errno.h> doesn't.
62825         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
62826         Define these macros if <stdio.h> doesn't.
62827         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
62828         Define these macros if <sys/stat.h>
62829         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
62830         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
62831         __xstat64): Define if not _LIBC.
62832         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
62833         (__gen_tempname): Invoke gettimeofday only if
62834         HAVE_GETTIMEOFDAY || _LIBC;
62835         otherwise, fall back on plain "time".
62836         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
62837
62838         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
62839
62840         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
62841
62842 2001-02-18  Paul Eggert  <eggert@twinsun.com>
62843
62844         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
62845
62846 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62847
62848         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
62849         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
62850         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
62851         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62852
62853 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62854
62855         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
62856         Remove workaround macros for hosts that have mbrtowc but not
62857         mbstate_t, as we now insist on proper declarations for both
62858         before using mbrtowc.
62859
62860 2001-02-17  Jim Meyering  <meyering@lucent.com>
62861
62862         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
62863         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
62864         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
62865         UnixWare 7.1.1.
62866
62867         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
62868         rather than AC_CACHE_VAL.
62869
62870 2001-02-17  Jim Meyering  <meyering@lucent.com>
62871
62872         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
62873         around included file name.
62874
62875         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
62876
62877         * lib/strftime.c: Update from GNU libc (the only changes were to
62878         comments).
62879
62880 2001-02-17  Jim Meyering  <meyering@lucent.com>
62881
62882         * lib/regex.c: Update from libc.
62883
62884 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
62885
62886         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
62887         clash.
62888
62889 2001-02-16  Paul Eggert  <eggert@twinsun.com>
62890
62891         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
62892         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
62893         Reported by Mark Hounschell via Paul Eggert.
62894
62895 2001-02-07  Jim Meyering  <meyering@lucent.com>
62896
62897         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
62898
62899 2001-02-05  Jim Meyering  <meyering@lucent.com>
62900
62901         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
62902         it includes the patch required for `large file' support with at least
62903         HP-UX's 10.20 /bin/cc.
62904
62905 2001-02-03  Jim Meyering  <meyering@lucent.com>
62906
62907         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
62908         AS_IF, now that it works once again (mysteriously).
62909         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62910
62911 2001-01-30  Jim Meyering  <meyering@lucent.com>
62912
62913         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
62914         * m4/chown.m4: Rename conftestchown to conftest.chown.
62915         * m4/rename.m4: s/conftestdir/conftest.d1/ and
62916         s/conftestdir2/conftest.d2/.
62917         * m4/utimes.m4: s/conftestdata/conftest.data/
62918         Inspired by Pavel Roskin's change in autoconf.
62919
62920 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
62921
62922         * lib/config.charset: Update for FreeBSD 4.2.
62923
62924 2001-01-27  Jim Meyering  <meyering@lucent.com>
62925
62926         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
62927         a use of AS_IF.
62928         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62929
62930 2001-01-26  Jim Meyering  <meyering@lucent.com>
62931
62932         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
62933         quotearg.c includes it.
62934
62935 2001-01-26  Jim Meyering  <meyering@lucent.com>
62936
62937         * lib/quotearg.c: Include stddef.h.
62938         * lib/quote.c: Include stddef.h.
62939         Reported by Axel Kittenberger.
62940
62941         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
62942         line in double quotes so that it evokes a better diagnostic.
62943         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
62944         Reported by Axel Kittenberger.
62945
62946 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
62947
62948         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
62949         as if it was a `charset'.
62950
62951 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62952
62953         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
62954         has const.
62955
62956 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62957
62958         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
62959         to avoid a warning.  Add back 'const' to inptr.
62960
62961 2001-01-20  Jim Meyering  <meyering@lucent.com>
62962
62963         Be sure that headers are checked before used in code compiled
62964         for the type checks.
62965         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
62966         In place of that, invoke jm_CHECK_ALL_TYPES.
62967         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
62968         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
62969         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
62970         The check for ssize_t was mistakenly run before the test for unistd.h.
62971
62972         The configure-time check for stdbool.h was missing.
62973         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
62974         (jm_PREREQ_HASH): New function.
62975
62976 2001-01-17  Jim Meyering  <meyering@lucent.com>
62977
62978         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
62979         for autoconf-2.49c.
62980         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
62981
62982 2001-01-16  Jim Meyering  <meyering@lucent.com>
62983
62984         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
62985         From Bruno Haible.
62986
62987 2001-01-14  Jim Meyering  <meyering@lucent.com>
62988
62989         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
62990         foo and bar.  Create conftestdir/ in the script, not in the C code.
62991         Remove directories in the script, not in the C code.
62992         Remove conftestdir{,2} before trying to create the directory.
62993         Make the entire configure script fail if the mkdir fails.
62994
62995 2001-01-14  Jim Meyering  <meyering@lucent.com>
62996
62997         * lib/rename.c: New file.  From Volker Borchert.
62998         Include stdlib.h, string.h or strings.h, and xalloc.h.
62999         Use strip_trailing_slashes rather than open-coding it.
63000
63001 2001-01-03  Paul Eggert  <eggert@twinsun.com>
63002
63003         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
63004
63005 2001-01-03  Jim Meyering  <meyering@lucent.com>
63006
63007         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
63008         of local `inptr' to avoid warning with some system declarations of
63009         iconv.
63010
63011 2001-01-02  Volker Borchert  <bt@teknon.de>
63012
63013         * m4/rename.m4: New file.
63014         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
63015
63016 2001-01-01  Jim Meyering  <meyering@lucent.com>
63017
63018         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
63019         even on systems with utmpx.h.  It's necessary for the declaration of
63020         utmp's ut_user member.  Reported by Andreas Jaeger.
63021
63022         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
63023         available. They are required for the declarations of getgrgid and
63024         getpwuid resp.
63025         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
63026         Reported by Andreas Jaeger.
63027
63028 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
63029
63030         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
63031         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
63032         so `make install' also works in VPATH builds.
63033
63034 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
63035
63036         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
63037         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
63038         can be used in subdirectories.
63039
63040 2000-12-29  Paul Eggert  <eggert@twinsun.com>
63041
63042         * lib/modechange.c: Do not assume that mode_t uses the
63043         traditional octal encoding.  E.g. "chmod 1 FOO" should set
63044         the other-execute bit of FOO even if S_IXOTH != 1.
63045
63046         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
63047         WOTH, XOTH, ALLM): New macros.
63048         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
63049          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
63050         Use them.
63051         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
63052         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
63053         (mode_compile):
63054         No need to use uintmax_t; unsigned long is long enough.
63055         Don't bother to get suffix since we don't use it.
63056
63057 2000-12-26  Jim Meyering  <meyering@lucent.com>
63058
63059         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
63060         better with autoheader.
63061
63062 2000-12-24  Jim Meyering  <meyering@lucent.com>
63063
63064         * lib/hash.c (is_prime): Return explicit boolean values.
63065         (hash_get_first): Return NULL to appease Irix5.6's 89.
63066         Reported by Nelson Beebe.
63067
63068 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
63069
63070         * lib/localcharset.c (locale_charset): Add support for Win32.
63071
63072 2000-12-18  Paul Eggert  <eggert@twinsun.com>
63073
63074         * lib/physmem.h, lib/physmem.c: New files.
63075
63076         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
63077         (noinst_HEADERS): Add physmem.h.
63078
63079         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
63080         't' for compatibility with Solaris 8 sort.
63081
63082 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
63083
63084         * lib/config.charset: Add support for BeOS.
63085
63086 2000-12-17  Jim Meyering  <meyering@lucent.com>
63087
63088         * m4/dos.m4 (jm_AC_DOS): New file and macro.
63089         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
63090
63091 2000-12-16  Jim Meyering  <meyering@lucent.com>
63092
63093         This bug had a serious impact on chown: `chown N:M FILE' (for integer
63094         N and M) would have treated it like `chown N:N FILE'.
63095
63096         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
63097
63098 2000-12-16  Jim Meyering  <meyering@lucent.com>
63099
63100         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
63101         SHELLS_FILE to a file name that's useful on djgpp systems.
63102         Include stdlib.h.
63103         (ADDITIONAL_DEFAULT_SHELLS): Define.
63104         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
63105         Based mostly on a patch from Prashant TR.
63106
63107 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
63108
63109         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
63110         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
63111         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
63112
63113 2000-12-08  Andreas Schwab  <schwab@suse.de>
63114
63115         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
63116         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
63117
63118 2000-12-07  Jim Meyering  <meyering@lucent.com>
63119
63120         * lib/stripslash.c (ISSLASH): Define.
63121         (strip_trailing_slashes): Use ISSLASH rather than comparing against
63122         `/'.
63123         From Prashant TR.
63124
63125         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
63126         (dir_name_r): Declare this function as static.
63127         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
63128         manifest itself on a name containing a mix of slashes and
63129         backslashes.
63130         Make this function work with names starting with a DOS-style
63131         drive letter and colon prefix.
63132         (dir_name): Append `.' if necessary.
63133         Based mostly on patches from Prashant TR and Eli Zaretskii.
63134
63135         * lib/dirname.h (dir_name_r): Remove prototype.
63136
63137 2000-12-06  Paul Eggert  <eggert@twinsun.com>
63138
63139         * m4/off_t-format.m4: Remove this file.
63140         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
63141
63142 2000-12-06  Jim Meyering  <meyering@lucent.com>
63143
63144         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
63145         replacement strtoull, we may well need the replacement strtoul, too.
63146         Check for declarations of strtoul and strtoull.
63147         Check for strtol.  Mainly as a cue to cause automake to include
63148         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
63149         Check for limits.h -- strtol.c needs it.
63150
63151 2000-12-05  Jim Meyering  <meyering@lucent.com>
63152
63153         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
63154
63155 2000-12-04  Jim Meyering  <meyering@lucent.com>
63156
63157         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
63158         Also include memory.h, stdlib.h, unistd.h if appropriate.
63159         Reported by Andreas Jaeger (conflicting declaration of malloc).
63160
63161 2000-12-02  Jim Meyering  <meyering@lucent.com>
63162
63163         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
63164         * m4/jm-macros.m4 (jm_MACROS): require it.
63165
63166 2000-12-02  Jim Meyering  <meyering@lucent.com>
63167
63168         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
63169
63170 2000-12-01  Paul Eggert  <eggert@twinsun.com>
63171
63172         * lib/memrchr.c: Include <config.h> before any system include file.
63173
63174 2000-11-30  Jim Meyering  <meyering@lucent.com>
63175
63176         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
63177
63178 2000-11-30  Jim Meyering  <meyering@lucent.com>
63179
63180         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
63181
63182 2000-11-29  Paul Eggert  <eggert@twinsun.com>
63183
63184         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
63185
63186 2000-11-26  Jim Meyering  <meyering@lucent.com>
63187
63188         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
63189
63190 2000-11-22  Paul Eggert  <eggert@twinsun.com>
63191
63192         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
63193         size of (size_t) -1; it's not portable.
63194
63195 2000-11-17  Jim Meyering  <meyering@lucent.com>
63196
63197         * lib/strstr.c: Update from GNU libc.
63198
63199 2000-11-17  Akim Demaille  <akim@epita.fr>
63200
63201         * lib/obstack.h: Formatting changes.
63202         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
63203         prevent type checking.
63204         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
63205         cast the value to (void *): assigning a `foo *' to a `void *'
63206         variable is valid.
63207         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
63208
63209 2000-11-16  Jim Meyering  <meyering@lucent.com>
63210
63211         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
63212
63213 2000-11-11  Jim Meyering  <meyering@lucent.com>
63214
63215         * lib/error.c: Add a couple #includes, merging from GNU libc version.
63216
63217 2000-11-10  Jim Meyering  <meyering@lucent.com>
63218
63219         * lib/obstack.h: Update from GNU libc.
63220         * lib/obstack.c: Likewise.
63221
63222 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
63223
63224         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
63225
63226 2000-11-06  Paul Eggert  <eggert@twinsun.com>
63227
63228         * lib/getusershell.c (setusershell): Use rewind rather than
63229         fseek/fseeko, to avoid configuration hassles with fseeko.
63230         Don't bother opening SHELLS_FILE if shellstream is NULL;
63231         it's not necessary.
63232
63233 2000-11-05  Jim Meyering  <meyering@lucent.com>
63234
63235         * lib/makepath.h (make_dir): Declare.
63236         * lib/makepath.c (make_dir): Remove `static' attribute.
63237         Tweak a comment.
63238
63239 2000-11-04  Jim Meyering  <meyering@lucent.com>
63240
63241         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
63242
63243 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
63244
63245         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
63246         last one in a bucket, advance to the next bucket.
63247
63248 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
63249
63250         * lib/fnmatch.c: Do not comment out all the code if we are using
63251         the GNU C library, because in some cases we are replacing buggy
63252         code in the GNU C library itself.
63253
63254 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
63255
63256         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
63257         (regex_compile): Catch bogus \(\1\).
63258
63259 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63260
63261         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
63262         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
63263         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
63264
63265 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63266
63267         * lib/error.h, getline.h, modechange.h:
63268         Remove "2000" from Copyright line, as the file hasn't been
63269         changed this year other than in the copyright notice.
63270
63271         * lib/xalloc.h: Add "2000" to Copyright line, as this file
63272         was changed this year.
63273
63274 2000-10-29  Jim Meyering  <meyering@lucent.com>
63275
63276         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
63277         renaming.
63278         * m4/ls-mntd-fs.m4: Likewise
63279
63280 2000-10-29  Jim Meyering  <meyering@lucent.com>
63281
63282         * lib/xstat.in: Fix grammar in comment.
63283
63284 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
63285
63286         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
63287         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
63288         doesn't define __restrict_arr.
63289
63290 2000-10-28  Jim Meyering  <meyering@lucent.com>
63291
63292         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
63293         (jm_PREREQ_MEMCHR): New function.
63294
63295 2000-10-28  Jim Meyering  <meyering@lucent.com>
63296
63297         * lib/memchr.c: Update from libc.
63298         Adjust for portability:
63299         [HAVE_STDLIB_H]: Include stdlib.h.
63300         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
63301         Undef __memchr, too.
63302         [!weak_alias]: Define __memchr to memchr.
63303
63304         * lib/regex.c: Update from libc.
63305         * lib/regex.h: Likewise.
63306         * lib/getopt1.c: Likewise.
63307         * lib/memcmp.c: Likewise.
63308
63309         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
63310         Avoid using fseek, when possible -- it's broken by design.
63311         Patch by Ulrich Drepper.
63312
63313 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
63314
63315         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
63316         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
63317         Giving in to popular pressure to shut up the compiler with casts.
63318
63319 2000-10-26  Jim Meyering  <meyering@lucent.com>
63320
63321         * lib/strftime.c: Update from libc.
63322
63323 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
63324
63325         * regex.c: More `unsigned char' -> `re_char' changes.
63326         Also change several `int' into `re_wchar_t'.
63327         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
63328         (PUSH_FAILURE_POINTER): Don't cast any more.
63329         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
63330         We want GCC to complain, since this piece of code makes
63331         re_match non-reentrant, which *should* be fixed.
63332         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
63333         (EXTEND_BUFFER): Use RETALLOC.
63334         (SET_LIST_BIT): Don't cast.
63335         (re_wchar_t): New type.
63336         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
63337         that those two functions will always properly return.
63338         (IMMEDIATE_QUIT_CHECK): Cast to void.
63339         (analyse_first): Use recursion rather than an explicit stack.
63340         (re_compile_fastmap): Can't fail anymore.
63341         (re_search_2): Don't check re_compile_fastmap for failure.
63342         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
63343         Now also sets the new value (passed in a new argument).
63344         (re_match_2_internal): Use it.
63345         Also, use a new var `reg' of type size_t when looping through regs
63346         rather than reuse the inappropriate `mcnt'.
63347
63348 2000-10-25  Jim Meyering  <meyering@lucent.com>
63349
63350         * lib/obstack.c: Update from libc.
63351
63352 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
63353
63354         * regex.c (regex_compile): Change the way of handling a range from
63355         a char less than 256 to a char not less than 256.
63356
63357 2000-10-24  Andrew Innes  <andrewi@gnu.org>
63358
63359         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
63360         NT-Emacs only.
63361         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
63362         so that re_search functions only quit when callers expect them to.
63363
63364 2000-10-23  Jim Meyering  <meyering@lucent.com>
63365
63366         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
63367         wrong.  That set_locale call must not have any side effects.
63368         From Paul Eggert.
63369
63370 2000-10-22  Jim Meyering  <meyering@lucent.com>
63371
63372         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
63373         [CYCLIC]: Remove now-unused definition.
63374
63375         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
63376         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
63377         Suggestion from Ulrich Drepper.
63378
63379 2000-10-21  Jim Meyering  <meyering@lucent.com>
63380
63381         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
63382         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
63383         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
63384
63385 2000-10-21  Jim Meyering  <meyering@lucent.com>
63386
63387         * lib/dirname.c (memrchr): Declare if necessary.
63388         (dir_name): Remove the restriction that there be no
63389         trailing slashes.  Now, this code skips past them, effectively
63390         ignoring them.
63391         [TEST_DIRNAME] (main): New unit tests.
63392
63393         * lib/memrchr.c: New file from GNU libc.
63394         Undef __memrchr, too.
63395         [!weak_alias]: Define __memrchr to memrchr.
63396         Guard weak_alias use with `#ifdef weak_alias'.
63397
63398 2000-10-21  Jim Meyering  <meyering@lucent.com>
63399
63400         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
63401         (dir_name): Use dir_name_r.
63402         * lib/dirname.h (dir_name_r): Declare it.
63403
63404 2000-10-17  Jim Meyering  <meyering@lucent.com>
63405
63406         * lib/quote.h (PARAMS): Define and use.
63407         Reported by Akim Demaille.
63408
63409         * lib/getopt.c: Update from libc.
63410
63411 2000-10-16  Jim Meyering  <meyering@lucent.com>
63412
63413         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
63414         setlocale.
63415         From Jan Fedak.
63416
63417 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
63418
63419         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
63420
63421 2000-09-25  Jim Meyering  <meyering@lucent.com>
63422
63423         * lib/md5.h (rol): Define (from GnuPG).
63424
63425         * lib/sha.c: Give credit (GnuPG) where due.
63426         (M): Use rol rather than open-coding it.
63427         Add a FIXME comment.
63428
63429 2000-09-21  Jim Meyering  <meyering@lucent.com>
63430
63431         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
63432         Reported by Michael Stone.
63433
63434 2000-09-20  Jim Meyering  <meyering@lucent.com>
63435
63436         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
63437         (noinst_HEADERS): Add sha.h.
63438         Based on code from Scott G. Miller and from GnuPG.
63439
63440 2000-09-18  Jim Meyering  <meyering@lucent.com>
63441
63442         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
63443         LIBS. Otherwise, everyone ends up linking with -lelf for some
63444         configurations.
63445         Reported by Mike Stone.
63446
63447 2000-09-15  Jim Meyering  <meyering@lucent.com>
63448
63449         * lib/regex.c: Update from libc.
63450
63451 2000-09-10  Jim Meyering  <meyering@lucent.com>
63452
63453         * lib/getopt.c (_getopt_internal): Update from glibc.
63454
63455 2000-09-09  Jim Meyering  <meyering@lucent.com>
63456
63457         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
63458         think it should be used as a general replacement for isascii.
63459         * lib/fnmatch.c: Likewise.
63460         * lib/mbswidth.c: Likewise
63461         * lib/regex.c: Likewise.
63462
63463         Don't use atoi.
63464         * lib/userspec.c: Include sys/param.h and limits.h.
63465         Include xstrtol.h.
63466         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
63467         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
63468         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
63469         UID, GID.  Check range.
63470
63471 2000-09-06  Jim Meyering  <meyering@lucent.com>
63472
63473         * lib/getopt.c (_getopt_internal): Update from glibc.
63474
63475 2000-08-30  Jim Meyering  <meyering@lucent.com>
63476
63477         * lib/strftime.c: Merge in changes from GNU libc.
63478
63479 2000-08-26  Jim Meyering  <meyering@lucent.com>
63480
63481         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
63482         * m4/fpending.m4: New file.
63483
63484 2000-08-26  Jim Meyering  <meyering@lucent.com>
63485
63486         * lib/closeout.c: Include "__fpending.h".
63487         (close_stdout_status): Return right away if there's nothing to flush.
63488
63489         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
63490         * lib/__fpending.c: New file.
63491         * lib/__fpending.h: New file.
63492
63493 2000-08-20  Jim Meyering  <meyering@lucent.com>
63494
63495         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
63496         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
63497         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
63498
63499 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
63500
63501         Improve fileutils installation on systems where running
63502         programs (like install) can't be unlinked.
63503         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
63504         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
63505
63506 2000-08-07  Paul Eggert  <eggert@twinsun.com>
63507
63508         Standardize on "memory exhausted" instead of "Memory exhausted"
63509         or "virtual memory exhausted".
63510         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
63511         "virtual memory exhausted".
63512         * lib/same.c (same_name): Invoke xalloc_die instead of printing
63513         our own message.
63514         * lib/userspec.c (parse_user_spec): Likewise.
63515         * lib/bumpalloc.h: comment fix
63516         * lib/same.c, userspec.c: Include xalloc.h.
63517
63518         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
63519         not char *const and pointing to a constant array.
63520         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
63521         (xrealloc): Comment fix.
63522
63523         * lib/userspec.c (parse_user_spec):
63524         Don't translate a message until just before returning,
63525         to avoid unnecessary translation.
63526
63527 2000-08-07  Jim Meyering  <meyering@lucent.com>
63528
63529         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
63530         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
63531         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
63532         getgroups.c, gethostname.c, getopt.h, group-member.c,
63533         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
63534         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
63535         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
63536         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
63537         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
63538         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
63539         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
63540         yesno.c: Back out Copyright date changes for each file with no change
63541         this year.  This eases coordination with other programs using the same
63542         source code modules.  From Paul Eggert.
63543
63544 2000-08-06  Paul Eggert  <eggert@twinsun.com>
63545
63546         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
63547         not char, for compatibility with glibc 2.1.3 strftime.c.
63548
63549 2000-08-03  Greg McGary  <greg@mcgary.org>
63550
63551         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
63552         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
63553         (EXTEND_BUFFER): Use them.
63554
63555 2000-08-01  Jim Meyering  <meyering@lucent.com>
63556
63557         * lib/dirname.c (ISSLASH): Define.
63558         (BACKSLASH_IS_PATH_SEPARATOR): Define.
63559         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
63560         both `\' and `/' may be use as path separators.
63561         Based on a patch from Prashant TR.
63562
63563 2000-07-31  Paul Eggert  <eggert@twinsun.com>
63564
63565         * lib/quotearg.c (quotearg_n_options): Don't make the initial
63566         slot vector a constant, since it might get modified.
63567
63568 2000-07-31  Jim Meyering  <meyering@lucent.com>
63569
63570         * lib/xmalloc.c: Use `virtual memory exhausted', not
63571         `Memory exhausted'.
63572         * lib/obstack.c (print_and_abort): Likewise.
63573
63574 2000-07-30  Paul Eggert  <eggert@twinsun.com>
63575
63576         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
63577         buffer, so that the caller can always quote one small
63578         component of a "memory exhausted" message in slot 0.
63579         From a suggestion by Jim Meyering.
63580
63581 2000-07-30  Jim Meyering  <meyering@lucent.com>
63582
63583         * lib/makepath.c (make_path): Quote the other instance, too.
63584
63585         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
63586         (STATIC_BUF_SIZE): Define.
63587         (quotearg_n_options): Use only statically allocated storage when
63588         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
63589         than STATIC_BUF_SIZE.
63590
63591 2000-07-29  Jim Meyering  <meyering@lucent.com>
63592
63593         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
63594         * lib/dirname.c (dir_name): Likewise.
63595
63596         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
63597         `/'.
63598
63599         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
63600         (dir_name): Assert that there are no trailing slashes.
63601
63602 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
63603
63604         * lib/mbswidth.h (mbswidth): Add a flags argument.
63605         (mbswidth): New declaration.
63606         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
63607         * lib/mbswidth.c (mbswidth): Add a flags argument.
63608         (mbsnwidth): New function.
63609
63610 2000-07-24  Jim Meyering  <meyering@lucent.com>
63611
63612         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
63613
63614 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63615
63616         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
63617
63618 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63619
63620         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
63621         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
63622         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
63623         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
63624         invoke multibyte primitives.
63625
63626 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63627
63628         * lib/quotearg.c:
63629         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
63630         so that mbstate_t is always defined.
63631
63632         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
63633         be 1 in at least one GCC installation, and this configuration
63634         error is likely to be common.  Ignoring MB_LEN_MAX hurts
63635         performance on hosts that have mbrtowc but have only unibyte
63636         locales, but I assume these hosts are rare.
63637
63638 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63639
63640         * lib/mbswidth.c (_XOPEN_SOURCE):
63641         Don't define; this causes problems on Solaris 7.
63642         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
63643
63644 2000-07-23  Jim Meyering  <meyering@lucent.com>
63645
63646         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
63647         too: getgrgid, getpwuid, getuid.
63648
63649 2000-07-23  Jim Meyering  <meyering@lucent.com>
63650
63651         * lib/basename.c (base_name): Add an assertion.
63652
63653 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
63654
63655         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
63656         shadow its mbsinit function.
63657
63658 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
63659
63660         * lib/mbswidth.h: New file.
63661         * lib/mbswidth.c: New file.
63662         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
63663         (noinst_HEADERS): Add mbswidth.h.
63664
63665 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
63666
63667         * lib/config.charset: Add support for FreeBSD. Improve support for
63668         HP-UX and IRIX 6.
63669
63670 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
63671
63672         * m4/mbswidth.m4: New file.
63673         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
63674
63675 2000-07-15  Jim Meyering  <meyering@lucent.com>
63676
63677         * lib/makepath.c: Include quote.h.
63678         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
63679         corresponding argument in a `quote (...)' call.
63680         Give better diagnostics.
63681
63682         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
63683         (noinst_HEADERS): Add quote.h.
63684
63685         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
63686         from tar's src/misc.c.
63687         * lib/quote.h: New file.  Prototypes for same.
63688
63689 2000-07-14  Paul Eggert  <eggert@twinsun.com>
63690
63691         From a suggestion by Bruno Haible.
63692         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
63693         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
63694         to decide whether to define the BeOS workaround macro;
63695         this adjusts to the change to AC_MBSTATE_T.
63696
63697 2000-07-14  Jim Meyering  <meyering@lucent.com>
63698
63699         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
63700         jm_AC_TYPE_UINTMAX_T.
63701
63702 2000-07-13  Paul Eggert  <eggert@twinsun.com>
63703
63704         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
63705
63706         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
63707         quotearg_buffer_restyled): Add support for
63708         clocale_quoting_style.  Undo previous change to
63709         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
63710         and "{RIGHT QUOTATION MARK}" msgids.
63711
63712 2000-07-10  Paul Eggert  <eggert@twinsun.com>
63713
63714         From a suggestion by Bruno Haible.
63715         * m4/mbstate_t.m4 (AC_MBSTATE_T):
63716         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
63717         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
63718         and mbstate_t, to a single-part test that simply defines mbstate_t.
63719         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
63720         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
63721
63722 2000-07-10  Jim Meyering  <meyering@lucent.com>
63723
63724         * m4/strerror_r.m4: Mirror the correction made in autoconf.
63725
63726         * m4/gnu-source.m4: Output to confdefs.h directly.
63727         Suggestion from Akim Demaille.
63728
63729 2000-07-09  Paul Eggert  <eggert@twinsun.com>
63730
63731         The old behavior of quoting `like this' doesn't look good with
63732         newer, ISO-style fonts.  See:
63733         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
63734
63735         Instead, quote "like this" by default.  Let the translator
63736         tailor the locale-specific quoting behavior by providing
63737         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
63738
63739         * lib/quotearg.c (N_): New macro.
63740         (gettext_default): New function.
63741         (quotearg_buffer_restyled): Use
63742         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
63743         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
63744
63745 2000-07-09  Jim Meyering  <meyering@lucent.com>
63746
63747         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
63748         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
63749
63750         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
63751         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
63752
63753 2000-07-09  Jim Meyering  <meyering@lucent.com>
63754
63755         * lib/Most files: Update copyright dates to include 2000.
63756
63757 2000-07-08  Jim Meyering  <meyering@lucent.com>
63758
63759         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
63760         if not defined.
63761         (xgethostname): Remove now-unnecessary #ifdef.
63762         Move declaration of `err' into loop where it's used.
63763
63764 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63765         and Bruno Haible  <haible@clisp.cons.org>
63766
63767         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
63768         only if the test for an object-type mbstate_t fails.  This
63769         prevents us from mistakenly reporting that mbstate_t is a
63770         system object type after we "#define mbstate_t int" to work
63771         around its lack.
63772
63773 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63774         and Bruno Haible  <haible@clisp.cons.org>
63775
63776         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
63777
63778 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63779
63780         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
63781         to strerror_r.
63782         Include <ctype.h> for use of isalpha.
63783
63784 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63785
63786         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
63787         by allocating a larger buffer. Test the gethostname return value for
63788         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
63789         returns an error and ENAMETOOLONG isn't defined.
63790
63791 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63792
63793         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
63794         dimension.
63795
63796 2000-07-04  Jim Meyering  <meyering@lucent.com>
63797
63798         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
63799         of the deprecated AC_CHECKING.
63800
63801 2000-07-04  Jim Meyering  <meyering@lucent.com>
63802
63803         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
63804         Reported by Bruno Haible.
63805
63806 2000-07-04  Jim Meyering  <meyering@lucent.com>
63807
63808         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
63809         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
63810         lacks mbrtowc.
63811
63812 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63813
63814         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
63815         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
63816
63817 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63818         and Bruno Haible  <haible@clisp.cons.org>
63819
63820         * lib/quotearg.c (mbrtowc):
63821         Assign to *pwc, and return 1 only if result is nonzero.
63822         (iswprint): Use ISPRINT when substituting our own mbrtowc.
63823
63824 2000-07-03  Jim Meyering  <meyering@lucent.com>
63825
63826         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
63827
63828 2000-07-03  Jim Meyering  <meyering@lucent.com>
63829
63830         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
63831         This is necessary to get a definition of e.g., UTMP_FILE on
63832         HP-UX 10.20.
63833         From Bob Proulx.
63834
63835 2000-07-02  Jim Meyering  <meyering@lucent.com>
63836
63837         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
63838
63839         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
63840         AC_LIBOBJ(function_name).
63841         * m4/chown.m4: Likewise.
63842         * m4/fnmatch.m4: Likewise.
63843         * m4/ftruncate.m4: Likewise.
63844         * m4/getgroups.m4: Likewise.
63845         * m4/getline.m4: Likewise.
63846         * m4/group-member.m4: Likewise.
63847         * m4/jm-macros.m4: Likewise.
63848         * m4/lstat.m4: Likewise.
63849         * m4/malloc.m4: Likewise.
63850         * m4/memcmp.m4: Likewise.
63851         * m4/nanosleep.m4: Likewise.
63852         * m4/putenv.m4: Likewise.
63853         * m4/realloc.m4: Likewise.
63854         * m4/regex.m4: Likewise.
63855         * m4/stat.m4: Likewise.
63856         * m4/strftime.m4: Likewise.
63857
63858 2000-07-02  Jim Meyering  <meyering@lucent.com>
63859
63860         * lib/quotearg.c (mbstate_t): Don't define here.
63861
63862 2000-07-02  Jim Meyering  <meyering@lucent.com>
63863
63864         * lib/nanosleep.c (SIGCONT): Define if not already defined.
63865
63866 2000-07-01  Jim Meyering  <meyering@lucent.com>
63867
63868         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
63869
63870 2000-07-01  Jim Meyering  <meyering@lucent.com>
63871
63872         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
63873         problem.
63874
63875 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63876
63877         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
63878         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
63879
63880 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63881
63882         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
63883         per change in ../m4/ls-mntd-fs.m4.
63884         (read_filesystem_list): Ignore symbolic links.
63885
63886 2000-06-29  Jim Meyering  <meyering@lucent.com>
63887
63888         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
63889         for declaration of strcmp.
63890
63891         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
63892
63893         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
63894         Avoid warning by casting result to `char *' to remove `const'.
63895
63896 2000-06-28  Jim Meyering  <meyering@lucent.com>
63897
63898         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
63899         included by quotearg.c, for which we perform this test.  From
63900         Bruno Haible.
63901
63902 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63903
63904         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
63905         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
63906         <utmpx.h> exists, put readutmp.o into LIBOBJS.
63907
63908 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63909
63910         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
63911
63912 2000-06-26  Paul Eggert  <eggert@twinsun.com>
63913
63914         savedir now sets errno on failure and invokes xmalloc to get memory.
63915         Fix a couple of other minor bugs while we're at it.
63916
63917         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
63918         (NAMLEN): Remove macro.
63919         (malloc, realloc): Remove decls.
63920         (stpcpy): Likewise.
63921         ("xalloc.h"): Include.
63922         (NAME_SIZE_DEFAULT): New macro.
63923         (savedir): Use xmalloc / xrealloc to allocate memory.
63924         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
63925         Skip "" directory entries.
63926         Use strlen to calculate directory entry length, since the old method
63927         is rarely used these days and isn't worth supporting.
63928         Don't use a pointer after freeing it.
63929         Check for integer overflow when calculating allocation size.
63930         Use memcpy to copy entries, instead of stpcpy.
63931         Set errno properly when returning NULL.
63932         Check for readdir error.
63933
63934 2000-06-26  Jim Meyering  <meyering@lucent.com>
63935
63936         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
63937
63938 2000-06-25  Jim Meyering  <meyering@lucent.com>
63939
63940         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
63941         Linux header bug when _XOPEN_SOURCE is defined to 500.
63942
63943 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63944
63945         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
63946         deficiency.
63947
63948 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63949
63950         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
63951         Include xalloc.h.
63952         Don't include <stdlib.h>.  Don't declare malloc, realloc.
63953
63954 2000-06-24  Jim Meyering  <meyering@lucent.com>
63955
63956         * m4/strerror_r.m4: Revive this file -- to try out an experimental
63957         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
63958         for which strerror does return char*, but which lacks a conveniently
63959         accessible declaration of the function.  If the compile-test says
63960         strerror_r doesn't work, then resort to a `run'-test that works on
63961         BeOS and segfaults on DEC Unix.
63962
63963 2000-06-24  Jim Meyering  <meyering@lucent.com>
63964
63965         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
63966
63967 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63968
63969         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
63970         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
63971
63972 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63973
63974         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
63975         (mbrtowc, mbstate_t): Define substitutes if
63976         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
63977         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
63978         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
63979
63980 2000-06-23  Jim Meyering  <meyering@lucent.com>
63981
63982         * m4/afs.m4: Add missing AC_MSG_RESULT.
63983         Reported by Bruno Haible.
63984
63985         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
63986         Suggestion from Bruno Haible.
63987
63988 2000-06-23  Jim Meyering  <meyering@lucent.com>
63989
63990         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
63991
63992 2000-06-21  Jim Meyering  <meyering@lucent.com>
63993
63994         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
63995
63996 2000-06-21  Jim Meyering  <meyering@lucent.com>
63997
63998         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
63999         (noinst_HEADERS): Add getstr.h.
64000
64001         * lib/getline.c (getstr): Move into a separate file.
64002         * lib/getstr.c (getstr): New file, extracted from getline.c, with
64003         the following changes: new parameter, delim2; both delim[12]
64004         parameters have type `int', not `char'.  The latter would lose
64005         with 8-bit delimiters.
64006         * lib/getstr.h: New file.
64007
64008 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64009
64010         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
64011         than 1024, return a memory chunk of least possible size, instead
64012         of size PATH_MAX + 2. In the loop, increment the size proportionally.
64013         Use free/xmalloc instead of xrealloc to avoid copying for very long
64014         paths.
64015
64016 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64017
64018         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
64019         the empty string.
64020
64021 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64022
64023         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
64024         address, not strdup.  Include <stdlib.h> and don't declare free().
64025
64026 2000-06-19  Jim Meyering  <meyering@lucent.com>
64027
64028         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
64029
64030 2000-06-18  Jim Meyering  <meyering@lucent.com>
64031
64032         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
64033
64034         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
64035         `checking whether...' message to be consistent with that of the
64036         lstat test.
64037
64038 2000-06-18  Jim Meyering  <meyering@lucent.com>
64039
64040         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
64041         Besides, these days every porting target provides a mkdir function.
64042
64043         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
64044         needed. (this snippet comes from src/system.h).
64045
64046 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
64047
64048         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
64049
64050 2000-06-15  Paul Eggert  <eggert@twinsun.com>
64051
64052         * lib/human.c (adjust_value): New function.
64053         (human_readable_inexact): Apply rounding style even when
64054         printing approximate values.
64055
64056 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64057
64058         * lib/human.c (human_readable_inexact): Allow an input block
64059         size that is not a multiple of the output block size, and vice versa.
64060         Reported by Piergiorgio Sartor.
64061
64062 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64063
64064         * lib/getdate.y (get_date): Apply relative times after time
64065         zone indicator, not before.  Reported by Todd A. Jacobs.
64066
64067 2000-06-13  Jim Meyering  <meyering@lucent.com>
64068
64069         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
64070
64071         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
64072
64073 2000-06-12  Paul Eggert  <eggert@twinsun.com>
64074
64075         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
64076
64077 2000-06-12  Jim Meyering  <meyering@lucent.com>
64078
64079         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
64080         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
64081         optional argument.
64082         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
64083         the optional argument, `lib'.
64084
64085 2000-06-08  Jim Meyering  <meyering@lucent.com>
64086
64087         * m4/largefile.m4: Remove file (now that it's part of autoconf).
64088
64089 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64090
64091         Rewrite largefile configuration so that we don't need to run
64092         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
64093         AC_CANONICAL_HOST in configure.in -- jmm]
64094
64095         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
64096         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
64097         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
64098         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
64099         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
64100         All uses changed.
64101         Instead of inspecting the output of getconf, try to compile the
64102         test program without and with the macro definition.
64103         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
64104         for getconf.  Instead, check for the needed flags by compiling
64105         test programs.
64106
64107 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64108
64109         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
64110
64111 2000-06-04  Jim Meyering  <meyering@lucent.com>
64112
64113         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
64114         SunOS 4.1.4 for which gid_t is an unsigned type.
64115
64116 2000-06-03  Jim Meyering  <meyering@lucent.com>
64117
64118         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
64119         now that autoconf requires that.
64120
64121         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
64122         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
64123         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
64124
64125 2000-06-03  Jim Meyering  <meyering@lucent.com>
64126
64127         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
64128
64129 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64130
64131         * m4/glibc21.m4: New file.
64132         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
64133
64134 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64135
64136         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
64137         newer, don't install charset.alias.
64138         * lib/config.charset: Change the Linux/glibc rules so they become empty
64139         on glibc-2.1 or newer.
64140
64141 2000-06-02  Jim Meyering  <meyering@lucent.com>
64142
64143         * lib/mountlist.c: Back out last change.  Instead, do this...
64144         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
64145         me_dummy member using the same `ignore'-testing code.
64146         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
64147         fs_type strings.
64148         From Mark D. Roth.
64149
64150 2000-05-29  Jim Meyering  <meyering@lucent.com>
64151
64152         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
64153         mounts with the `ignore' attribute.  Based on a patch from
64154         Mark D. Roth.
64155
64156 2000-05-28  Jim Meyering  <meyering@lucent.com>
64157
64158         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
64159         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64160         * m4/stat.m4: Likewise.
64161         * m4/lstat.m4: Likewise.
64162         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
64163
64164         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
64165         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
64166
64167 2000-05-26  Jim Meyering  <meyering@lucent.com>
64168
64169         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
64170
64171 2000-05-24  Jim Meyering  <meyering@lucent.com>
64172
64173         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
64174         autoconf requires that.
64175         * m4/lib-check.m4: Likewise.
64176         * m4/jm-macros.m4: Likewise.
64177         * m4/strftime.m4: Likewise.
64178
64179         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
64180         AC_CHECK_DECLS, now that autoconf requires that.
64181
64182 2000-05-22  Jim Meyering  <meyering@lucent.com>
64183
64184         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64185         * m4/lstat.m4: Likewise.
64186
64187 2000-05-22  Jim Meyering  <meyering@lucent.com>
64188
64189         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
64190
64191 2000-05-20  Jim Meyering  <meyering@lucent.com>
64192
64193         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
64194         (jm_PREREQ): Use it.
64195
64196 2000-05-18  Jim Meyering  <meyering@lucent.com>
64197
64198         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
64199         back, too, since it may have been modified by allocate_entry.
64200         (hash_delete): Rewrite to use neither the assignment operator
64201         nor the comma operator in an if-expression.
64202
64203 2000-05-15  Paul Eggert  <eggert@twinsun.com>
64204
64205         * lib/closeout.c:
64206         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
64207         Remove; no longer needed.
64208         "quotearg.h": Add include.
64209         (file_name): Do not bother to explicitly initialize to NULL; it's less
64210         efficient on some hosts.
64211         (close_stdout_status): Remove test as to whether stdout was already
64212         closed; it breaks for the case "echo x | sort >&-".
64213         Quote file name colons.
64214         Do not assume that _("write error") lacks format strings.
64215
64216 2000-05-15  Jim Meyering  <meyering@lucent.com>
64217
64218         * lib/version-etc.c (version_etc_copyright): Update the copyright
64219         string used in all --version output.
64220
64221 2000-05-14  Jim Meyering  <meyering@lucent.com>
64222
64223         * lib/closeout.c (close_stdout_set_file_name): New function.
64224         (close_stdout_status): Use new file-scoped global.
64225         Return right away if fstat says the stdout file descriptor is invalid.
64226         * lib/closeout.h (close_stdout_set_file_name): Declare.
64227
64228 2000-05-10  Jim Meyering  <meyering@lucent.com>
64229
64230         * lib/closeout.c [default_exit_status]: New file-scoped variable.
64231         (close_stdout_set_status): New function.
64232         * lib/closeout.h (close_stdout_set_status): Declare.
64233
64234 2000-05-09  Jim Meyering  <meyering@lucent.com>
64235
64236         * m4/gettext.m4: Rename this...
64237         * m4/libintl.m4: ...to this.
64238
64239 2000-05-08  Jim Meyering  <meyering@lucent.com>
64240
64241         * lib/long-options.c: Don't include closeout.h.
64242         (parse_long_options): Don't call close_stdout for --version.
64243
64244 2000-05-06  Paul Eggert  <eggert@twinsun.com>
64245
64246         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
64247         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
64248         2.1.3 bug.  This avoids a clash when files like regex.c define
64249         _GNU_SOURCE.
64250
64251 2000-05-06  Jim Meyering  <meyering@lucent.com>
64252
64253         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
64254         (AC_REPLACE_FUNCS): Add strnlen.
64255
64256         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
64257         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
64258
64259         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
64260         AC_SEARCH_LIBS call for nanosleep.
64261         (LIB_NANOSLEEP): Set and AC_SUBST.
64262
64263 2000-05-06  Jim Meyering  <meyering@lucent.com>
64264
64265         * lib/strnlen.c: Undefine __strnlen and strnlen.
64266         [!weak_alias]: Define __strnlen to strnlen.
64267
64268         * lib/atexit.c: New file, from libiberty.
64269
64270 2000-05-06  Jim Meyering  <meyering@lucent.com>
64271
64272         * lib/closeout.c (close_stdout_status): Also check for errors on the
64273         stderr stream.
64274
64275 2000-05-05  Jim Meyering  <meyering@lucent.com>
64276
64277         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
64278         AC_SEARCH_LIBS call for clock_gettime.
64279         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
64280
64281         * m4/search-libs.m4: Update from autoconf.
64282
64283         su doesn't work on Solaris 2.6.
64284         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
64285         <shadow.h>.  Reported by Dragos Harabor.
64286
64287 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
64288
64289         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
64290         memcpy instead of xmalloc, xrealloc, path_concat.
64291         (locale_charset): Treat empty environment variables as absent.
64292         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
64293
64294 2000-05-04  Jim Meyering  <meyering@lucent.com>
64295
64296         * lib/getopt.c: Update from glibc.
64297         * lib/obstack.c: Likewise.
64298         * lib/obstack.h: Likewise.
64299         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
64300         file
64301
64302         * lib/regex.h: Likewise.
64303         * lib/strndup.c: Likewise.
64304         * lib/strnlen.c: New file, from glibc.
64305
64306 2000-05-03  Jim Meyering  <meyering@lucent.com>
64307
64308         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
64309
64310 2000-05-02  Paul Eggert  <eggert@twinsun.com>
64311
64312         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
64313         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
64314         compile-time test, rather than inspecting host and OS, to
64315         decide whether to define _LARGEFILE_SOURCE.
64316
64317 2000-05-01  Jim Meyering  <meyering@lucent.com>
64318
64319         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
64320
64321         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
64322         Based on a patch from Bruno Haible.
64323
64324 2000-05-01  Jim Meyering  <meyering@lucent.com>
64325
64326         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
64327
64328 2000-04-29  Jim Meyering  <meyering@lucent.com>
64329
64330         * lib/path-concat.c: Declare strdup only if it's not defined.
64331         * lib/canon-host.c: Likewise.
64332
64333 2000-04-28  Jim Meyering  <meyering@lucent.com>
64334
64335         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
64336         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
64337         is included first, then limits.h is included by locale.h by libintl.h.
64338         From John David Anglin.
64339
64340 2000-04-25  Jim Meyering  <meyering@lucent.com>
64341
64342         * lib/makepath.c (S_IRWXUGO): Define.
64343         (make_path): Always perform explicit chmod if MODE specifies any
64344         of the `special' permission bits.  Prompted by a bug report against
64345         install from Mate Wierdl and Joost van Baal.
64346
64347 2000-04-18  Jim Meyering  <meyering@lucent.com>
64348
64349         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
64350         (jm_PREREQ): Use it.
64351
64352 2000-04-18  Jim Meyering  <meyering@lucent.com>
64353
64354         * lib/README: New file.
64355
64356         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
64357         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
64358
64359 2000-04-17  Jim Meyering  <meyering@lucent.com>
64360
64361         Get it right :-)
64362         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
64363         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
64364         Suggestion from Akim Demaille.
64365
64366 2000-04-17  Jim Meyering  <meyering@lucent.com>
64367
64368         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
64369         the definition of it to rpl_strftime also defined-away the system's
64370         declaration.
64371
64372 2000-04-15  Jim Meyering  <meyering@lucent.com>
64373
64374         Use `C' to denote so-called `contiguous' files, the same way
64375         that tar does.
64376         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
64377         (ftypelet): Use S_ISCTG.
64378         From Michael Deutschmann.
64379
64380 2000-04-14  Jim Meyering  <meyering@lucent.com>
64381
64382         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
64383         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
64384         clobbered.
64385
64386 2000-04-14  Jim Meyering  <meyering@lucent.com>
64387
64388         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
64389
64390 2000-04-13  Jim Meyering  <meyering@lucent.com>
64391
64392         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
64393         AH_VERBATIM to insert required #ifndef into config.h.in.
64394         Suggestion from Akim Demaille.
64395
64396 2000-04-12  Jim Meyering  <meyering@lucent.com>
64397
64398         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
64399         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
64400         Christian Krackowizer.
64401
64402         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
64403         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
64404         (AC_SYS_LARGEFILE): Require.
64405         (AM_C_PROTOTYPES): Require.
64406
64407 2000-04-08  Jim Meyering  <meyering@lucent.com>
64408
64409         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
64410         names don't conflict.  Reported by Eli Zaretskii.
64411
64412 2000-04-07  Jim Meyering  <meyering@lucent.com>
64413
64414         * lib/putenv.c: Move inclusion of errno.h so it follows that of
64415         sys/types.h, to work around system header problems on AIX 3.2.5.
64416         From Bruno Haible.
64417
64418 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
64419
64420         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
64421         bug.  Deal with the different error behavior of Irix iconv.
64422
64423 2000-04-05  Paul Eggert  <eggert@twinsun.com>
64424
64425         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
64426         IRIX if the installer said otherwise.
64427
64428 2000-04-05  Jim Meyering  <meyering@lucent.com>
64429
64430         Portability tweaks required for ultrix4.3.
64431         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
64432         (jm_CHECK_DECLS): Add getutent to the list of functions.
64433         (_jm_DECL_HEADERS): Add utmpx.h.
64434         From John David Anglin.
64435
64436         * m4/strftime.m4: Back out the 2000-04-02 change.
64437         Instead of that change, simply undefine putenv in the test program.
64438
64439 2000-04-05  Jim Meyering  <meyering@lucent.com>
64440
64441         Portability tweaks required for ultrix4.3.
64442         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
64443         getutent.
64444         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
64445         * lib/canon-host.c: Declare strdup.
64446         * lib/path-concat.c: Likewise.
64447         From John David Anglin.
64448
64449 2000-04-04  Jim Meyering  <meyering@lucent.com>
64450
64451         Be more DOS 8.3-friendly.
64452         * lib/ref-add.sin: Renamed from ref-add.sed.in.
64453         * lib/ref-del.sin: Renamed from ref-del.sed.in.
64454         * lib/Makefile.am: Reflect renaming.
64455         Reported by Eli Zaretskii.
64456
64457         Use a temporary file name that won't clash with `charset.alias'
64458         in the DOS 8.3 name space.
64459         * lib/Makefile.am (charset_tmp): Define.
64460         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
64461         (uninstall-local): Likewise.
64462         Reported by Eli Zaretskii.
64463
64464 2000-04-03  Jim Meyering  <meyering@lucent.com>
64465
64466         * m4/gettext.m4: Fix typo in comment.
64467
64468         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
64469         textutils/configure.in).  Suggestion from Paul Eggert.
64470         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
64471
64472 2000-04-02  Paul Eggert  <eggert@twinsun.com>
64473
64474         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
64475         variable in the shell rather than using putenv, which isn't
64476         portable.  This avoids the configure-time inter-test dependency
64477         on the potentially-renamed putenv function.
64478
64479 2000-03-30  Paul Eggert  <eggert@twinsun.com>
64480
64481         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
64482         before checking struct stat.st_blksize, so that
64483         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
64484
64485 2000-03-29  Paul Eggert  <eggert@twinsun.com>
64486
64487         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
64488         since strftime.c uses HAVE_STRFTIME to decide whether to use
64489         the underlying strftime.
64490
64491 2000-03-29  Paul Eggert  <eggert@twinsun.com>
64492
64493         * lib/time/strftime.c (my_strftime): Make sure we call the system
64494         strftime, not ourselves, when invoking the underlying strftime.
64495
64496 2000-03-24  Jim Meyering  <meyering@lucent.com>
64497
64498         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
64499         (charset_alias): Define.
64500         (install-exec-local): Factor out common code.
64501         (uninstall-local): Split lines longer than 80.
64502         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
64503         (SUFFIXES): Define.
64504         (.sed.in.sed): New rule.  Don't redirect directly to $@.
64505         (CLEANFILES): Add ref-add.sed and ref-del.sed.
64506
64507 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
64508
64509         * lib/config.charset: Output a line containing "Packages using this
64510         file".
64511         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
64512         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
64513         ref-del.sed): New rules.
64514
64515 2000-03-17  Jim Meyering  <meyering@lucent.com>
64516
64517         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
64518         Otherwise, include <strings.h>
64519
64520 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
64521
64522         * lib/unicodeio.c (utf8_wctomb): New function.
64523         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
64524         format instead of in UCS-4 with platform dependent endianness.
64525
64526 2000-03-10  Jim Meyering  <meyering@lucent.com>
64527
64528         * m4/lib-check.m4: Look for getspnam in -lgen, too.
64529         From Marco Franzen.
64530
64531 2000-03-07  Paul Eggert  <eggert@twinsun.com>
64532
64533         * lib/savedir.c (savedir): Work even if directory size is
64534         negative; this can happen with some screwy NFS configurations.
64535
64536 2000-03-06  Jim Meyering  <meyering@lucent.com>
64537
64538         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
64539         if it's NULL (because we ran out of memory).  From Bruno Haible.
64540
64541 2000-03-05  Jim Meyering  <meyering@lucent.com>
64542
64543         * lib/localcharset.c ("path-concat.h"): Include.
64544         (get_charset_aliases): Use path_concat instead of ANSI string
64545         concatenation.
64546
64547         * lib/unicodeio.h (PARAMS): Define.
64548         Use it to guard prototype.
64549
64550 2000-03-04  Jim Meyering  <meyering@lucent.com>
64551
64552         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
64553         for lib/localcharset.c.
64554
64555 2000-03-04  Jim Meyering  <meyering@lucent.com>
64556
64557         * lib/Makefile.am (install-exec-local): Create $(libdir) before
64558         installing into it.
64559         (uninstall-local): Uncomment this rule so `make distcheck' works
64560         once again.
64561
64562         * lib/unicodeio.c (<errno.h>): Include it.
64563         (errno): Declare if not defined.
64564
64565         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
64566
64567         * lib/config.charset: New version, incorporating remarks from a linux
64568         i18n mailing list.  From Bruno Haible.
64569
64570 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
64571
64572         * m4/codeset.m4: New file.
64573         * m4/iconv.m4: New file.
64574         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
64575
64576 2000-03-03  Jim Meyering  <meyering@lucent.com>
64577
64578         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
64579
64580 2000-03-02  Jim Meyering  <meyering@lucent.com>
64581
64582         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
64583         the messages come out on separate lines.
64584
64585         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
64586         rather than jm_CHECK_DECLARATIONS.
64587         * m4/decl.m4: Remove now-unused file.
64588
64589         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
64590         geteuid.
64591
64592 2000-03-02  Jim Meyering  <meyering@lucent.com>
64593
64594         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
64595
64596 2000-03-01  Jim Meyering  <meyering@lucent.com>
64597
64598         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
64599         * lib/unicodeio.c: Likewise.
64600
64601 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
64602
64603         * lib/config.charset: New file.
64604         * lib/localcharset.c: New file.
64605         * lib/unicodeio.h, lib/unicodeio.c: New files.
64606         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
64607         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
64608         (noinst_HEADERS): Add unicodeio.h.
64609         (all-local, install-exec-local, charset.alias): New targets.
64610
64611 2000-02-28  Paul Eggert  <eggert@twinsun.com>
64612
64613         * lib/quotearg.c (ALERT_CHAR): New macro.
64614         (quotearg_buffer_restyled): Use it.
64615
64616 2000-02-27  Jim Meyering  <meyering@lucent.com>
64617
64618         * m4/check-decl.m4: Add getenv to the list.
64619
64620 2000-02-27  Jim Meyering  <meyering@lucent.com>
64621
64622         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
64623         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
64624
64625         * lib/backupfile.c: Guard inclusion of stdlib.h with
64626         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
64627         Declare malloc if needed.
64628
64629         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
64630         `#ifndef HAVE_DECL..'
64631         now that autoconf always defines the HAVE_DECL_ symbols.
64632         * lib/human.c: Likewise.
64633         * lib/same.c: Likewise.
64634         * lib/strtoumax.c: Likewise.
64635
64636         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
64637         declaration check was not run.
64638         * lib/hash.c: Likewise.
64639         * lib/human.c: Likewise.
64640         * lib/same.c: Likewise.
64641         * lib/strtoumax.c: Likewise.
64642
64643         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
64644         `.', then first look up the entire `.'-containing string as a login
64645         name.
64646
64647 2000-02-23  Jim Meyering  <meyering@lucent.com>
64648
64649         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
64650         in place of my hack.
64651
64652 2000-02-18  Paul Eggert  <eggert@twinsun.com>
64653
64654         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
64655         (textint): New typedef.
64656         (parser_control): Member year changed from int to textint.
64657         All uses changed.
64658         (YYSTYPE): Removed; replaced by %union with int and textint members.
64659         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
64660         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
64661         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
64662         (tSNUMBER, tUNUMBER): Now of type <textintval>.
64663         (date, number, to_year): Use width of number in digits, not its value,
64664         to determine whether it's a 2-digit year, or a 2-digit time.
64665         (yylex): Store number of digits of numeric tokens.
64666         Reported by John Kendall.
64667
64668         (parser_control): Changed from struct parser_control to typedef (for
64669         consistency).  All uses changed.
64670
64671         (tID): Removed; not used.
64672         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
64673
64674 2000-02-14  Paul Eggert  <eggert@twinsun.com>
64675
64676         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
64677         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
64678
64679 2000-02-12  Jim Meyering  <meyering@lucent.com>
64680
64681         * lib/userspec.c (ISDIGIT): Define it.
64682         (isdigit): Remove definition.
64683         (is_number): Use ISDIGIT, not isdigit.
64684         <libintl.h>: Include.
64685         (_ and N_): Define.
64686         (parse_user_spec): Mark translatable strings.
64687
64688 2000-02-10  Jim Meyering  <meyering@lucent.com>
64689
64690         With these changes, nanosleep.[ch] are finally enough like the other
64691         lib/* replacement files to compile on a few more losing systems.
64692
64693         * lib/nanosleep.h: Don't include config.h.
64694         Remove prototype from declaration of nanosleep.
64695         (PARAMS): Remove now-unneeded definition.
64696         * lib/nanosleep.c: #undef nanosleep.
64697         (rpl_nanosleep): Rename from nanosleep.
64698
64699 2000-02-10  Jim Meyering  <meyering@lucent.com>
64700
64701         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
64702         gnu_nanosleep to rpl_nanosleep.
64703
64704 2000-02-09  Jim Meyering  <meyering@lucent.com>
64705
64706         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
64707         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
64708
64709 2000-02-08  Akim Demaille  <akim@epita.fr>
64710
64711         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
64712         `[' and `]' and remove uses of `changequote'.
64713         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
64714         (AC_SYS_LARGEFILE): Likewise.
64715         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
64716         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
64717         of changequote.
64718         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
64719         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
64720         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
64721         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
64722
64723 2000-02-05  Jim Meyering  <meyering@lucent.com>
64724
64725         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
64726         Remove explicit use of AC_HEADER_TIME.  It is required by
64727         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
64728         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
64729         in autoconf whereby the expansion of the latter ended up preceding
64730         the expansion of its prerequisite, AC_HEADER_TIME.
64731         Reported by Volker Borchert.
64732
64733 2000-02-03  Jim Meyering  <meyering@lucent.com>
64734
64735         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
64736
64737 2000-02-03  Jim Meyering  <meyering@lucent.com>
64738
64739         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
64740         rather than with `#if HAVE_UTMPNAME'.
64741
64742 2000-02-02  Jim Meyering  <meyering@lucent.com>
64743
64744         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
64745         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
64746         Reported by Eli Zaretskii.
64747
64748 2000-02-01  Jim Meyering  <meyering@lucent.com>
64749
64750         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
64751
64752 2000-01-31  Jim Meyering  <meyering@lucent.com>
64753
64754         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
64755         functions.  Add the time.h and sys/time.h headers along with the
64756         AC_REQUIRE'ment of AC_HEADER_TIME.
64757
64758 2000-01-31  Jim Meyering  <meyering@lucent.com>
64759
64760         * lib/nanosleep.h (nanosleep): Guard declaration with
64761         `#if ! HAVE_DECL_NANOSLEEP'.
64762         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
64763         the declaration in that vendor's sys/timers.h.
64764         Reported by Christian Krackowizer.
64765
64766         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
64767         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
64768         (ISPRINT): Likewise.
64769         Reported by Tom Tromey.
64770
64771 2000-01-30  Jim Meyering  <meyering@lucent.com>
64772
64773         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
64774
64775         * m4/prereq.m4 (utmp_includes): Define.
64776         Check for ut_user and ut_name members in both struct utmpx
64777         and struct utmp.
64778
64779 2000-01-30  Jim Meyering  <meyering@lucent.com>
64780
64781         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
64782         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
64783         header files where only utmpx.ut_user is declared.
64784
64785         * lib/readutmp.h (UT_USER): Define.
64786
64787 2000-01-29  Jim Meyering  <meyering@lucent.com>
64788
64789         * m4/lib-check.m4: New file containing library-related checks from
64790         fileutils and sh-utils (textutils had none).
64791
64792 2000-01-28  Jim Meyering  <meyering@lucent.com>
64793
64794         * m4/perl.m4: Change format of warning message to look more like that
64795         from the missing script.  Suggestion from François Pinard.
64796
64797 2000-01-25  Jim Meyering  <meyering@lucent.com>
64798
64799         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
64800         well as time.h in the compile check.
64801         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64802         Fix typo in cross-compiling case: s/yes/no/.
64803
64804 2000-01-23  Jim Meyering  <meyering@lucent.com>
64805
64806         * m4/jm-macros.m4: Move df-related tests here from
64807         fileutils/configure.in
64808
64809         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
64810         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
64811
64812         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
64813         s/space/ac_fsusage_space/.
64814         (jm_FILE_SYSTEM_USAGE): Take two parameters.
64815
64816         * m4/ftruncate.m4: New file (derived from part of
64817         fileutils/configure.in).
64818         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
64819         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
64820
64821         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
64822         AC_SUBST these here, rather than just in sh-util/configure.in, so
64823         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
64824         all the same.
64825         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
64826         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
64827         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
64828         (AC_SUBST(POW_LIBM)): Likewise.
64829         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
64830
64831 2000-01-23  Jim Meyering  <meyering@lucent.com>
64832
64833         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
64834         obstack.c.
64835
64836 2000-01-22  Jim Meyering  <meyering@lucent.com>
64837
64838         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
64839
64840         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
64841
64842         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
64843         configure.in
64844         (AC_CHECK_HEADERS): Likewise for sh-utils.
64845         (AC_CHECK_HEADERS): Likewise for textutils.
64846         Merge the three lists of headers.
64847
64848         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
64849         from fileutils' configure.in.
64850
64851         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
64852         code. Moved tests into their own function (_jm_DECL_HEADERS) in
64853         check-decl.m4.
64854
64855         * m4/check-decl.m4: Use #if rather than #ifdef.
64856         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
64857         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
64858         (_jm_DECL_HEADERS): Define new function.
64859         (jm_CHECK_DECLARATIONS): Require it.
64860
64861 2000-01-22  Jim Meyering  <meyering@lucent.com>
64862
64863         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
64864         [! HAVE_DECL_STRTOULL]: Declare strtoull.
64865         Required for some AIX systems.  Reported by Christian Krackowizer.
64866         [TESTING] (main): New function.
64867
64868         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
64869         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
64870         letters.
64871
64872         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
64873         iswprint.
64874
64875         * lib/strverscmp.c (ISDIGIT): Define.
64876         (strverscmp): Use ISDIGIT, not isdigit.
64877
64878 2000-01-19  Jim Meyering  <meyering@lucent.com>
64879
64880         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
64881         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
64882         defines `struct timespec' in <sys/time.h>
64883
64884         * m4/c-bs-a.m4: Remove uses of changequote altogether.
64885         Thanks to Akim for explaining.
64886
64887 2000-01-17  Paul Eggert  <eggert@twinsun.com>
64888
64889         * lib/nanosleep.c (nanosleep):
64890         Don't use SA_INTERRUPT to decide whether to call sigaction, as
64891         POSIX.1 doesn't require SA_INTERRUPT and some systems
64892         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
64893         it's been part of POSIX.1 since day 1 (in 1988).
64894
64895 2000-01-17  Jim Meyering  <meyering@lucent.com>
64896
64897         * lib/interlock: Remove unused file.  Reported by François Pinard.
64898
64899 2000-01-16  Paul Eggert  <eggert@twinsun.com>
64900
64901         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
64902         alert, backslash, formfeed, and vertical tab unnecessarily in
64903         shell quoting style.
64904
64905 2000-01-16  Jim Meyering  <meyering@lucent.com>
64906
64907         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
64908         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
64909         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
64910         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
64911
64912 2000-01-16  Jim Meyering  <meyering@lucent.com>
64913
64914         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
64915         because the latter didn't work.
64916
64917 2000-01-15  Jim Meyering  <meyering@lucent.com>
64918
64919         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
64920         (AC_REPLACE_FUNCS): Add memcpy and memset.
64921         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
64922         Add strpbrk.
64923         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
64924
64925 2000-01-12  Jim Meyering  <meyering@lucent.com>
64926
64927         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
64928         (jm_PREREQ): Use it.
64929         (jm_PREREQ_READUTMP): New macro.
64930         (jm_PREREQ): Use it.
64931
64932 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64933
64934         Quote multibyte characters correctly.
64935         * m4/c-bs-a.m4: New file.
64936         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
64937         (jm_PREREQ): Use it.
64938
64939 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64940
64941         * m4/uintmax_t.m4: Port to autoconf 2.13.
64942
64943 2000-01-08  Jim Meyering  <meyering@ascend.com>
64944
64945         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
64946         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
64947
64948 2000-01-04  Jim Meyering  <meyering@ascend.com>
64949
64950         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
64951         jm_STRUCT_DIRENT_D_TYPE.
64952         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
64953         jm_STRUCT_DIRENT_D_INO.
64954         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
64955         jm_STRUCT_UTIMBUF.
64956         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
64957         renamings.
64958         * m4/utime.m4: Likewise.
64959
64960         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
64961         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
64962
64963 2000-01-03  Paul Eggert  <eggert@twinsun.com>
64964
64965         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
64966         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
64967
64968 2000-01-02  Jim Meyering  <meyering@ascend.com>
64969
64970         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
64971         remember if this is necessary.
64972
64973 1999-12-26  Jim Meyering  <meyering@ascend.com>
64974
64975         * m4/jm-macros.m4: Use it here.
64976         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
64977
64978 1999-12-23  Jim Meyering  <meyering@ascend.com>
64979
64980         * m4/jm-macros.m4: Check for clock_gettime (moved from
64981         fileutils/configure.in)
64982         Check for gettimeofday.
64983
64984 1999-12-20  Jim Meyering  <meyering@ascend.com>
64985
64986         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
64987         autoconf-2.14a-1999-12-20.
64988
64989 1999-12-19  Jim Meyering  <meyering@ascend.com>
64990
64991         * m4/lstat-slash.m4: New file.
64992         * m4/jm-macros.m4: Use the new macro:
64993         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64994
64995 1999-12-07  Jim Meyering  <meyering@ascend.com>
64996
64997         * m4/perl.m4: Require that File::Compare be available, too.
64998         Too many systems seem to lack it.
64999
65000         * m4/strftime.m4: Add checks for most of the cpp macros tested in
65001         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
65002
65003 1999-11-18  Paul Eggert  <eggert@twinsun.com>
65004
65005         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
65006         problem with the QNX 4.25 shell, which doesn't propagate exit
65007         status of failed commands inside shell assignments.
65008
65009 1999-11-17  Jim Meyering  <meyering@ascend.com>
65010
65011         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
65012
65013 1999-11-07  Jim Meyering  <meyering@ascend.com>
65014
65015         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
65016
65017 1999-11-06  Jim Meyering  <meyering@ascend.com>
65018
65019         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
65020         * m4/jm-macros.m4 (jm_MACROS): Use it here.
65021
65022 1999-11-05  Jim Meyering  <meyering@ascend.com>
65023
65024         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
65025         configure.in of textutils, fileutils, and sh-utils into this one
65026         (shared between those packages) file.
65027         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
65028         AC_STRUCT_ST_BLKSIZE.
65029
65030 1999-11-03  Jim Meyering  <meyering@ascend.com>
65031
65032         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
65033         of AC_CHECK_TYPE checks includes unistd.h.
65034         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
65035         Suggestion from Akim Demaille.
65036
65037 1999-10-30  Jim Meyering  <meyering@ascend.com>
65038
65039         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
65040         m4-quoted string.
65041         * m4/ls-mntd-fs.m4: Likewise.
65042         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
65043         * m4/jm-winsz1.m4: Likewise.
65044
65045         * m4/const.m4: Remove file, since the fix made it into the experimental
65046         version of autoconf.
65047         * m4/mktime.m4: Likewise.
65048
65049         * m4/check-type.m4: Remove file, now that the latest version of
65050         AC_CHECK_TYPE takes a third arg to specify additional #includes.
65051
65052         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
65053         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
65054         AC_CHECK_TYPE.
65055
65056 1999-10-04  Jim Meyering  <meyering@ascend.com>
65057
65058         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
65059
65060 1999-09-22  Paul Eggert  <eggert@twinsun.com>
65061
65062         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
65063         2.95.1 bug with HP-UX 10.20.
65064
65065 1999-09-17  Jim Meyering  <meyering@ascend.com>
65066
65067         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
65068         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
65069         due to missing strdup (against sh-utils-2.0).
65070
65071 1999-08-29  Jim Meyering  <meyering@ascend.com>
65072
65073         * m4/jm-macros.m4: Require jm_BISON.
65074         * m4/bison.m4: New file.
65075
65076 1999-08-17  Paul Eggert  <eggert@twinsun.com>
65077
65078         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
65079         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
65080
65081 1999-08-05  Jim Meyering  <meyering@ascend.com>
65082
65083         * m4/getline.m4: Rename test file from conftestdata to conftest.data
65084         to avoid conflicts with `conftest' on 8+3 filesystems.
65085         Suggestion from Eli Zaretskii.
65086
65087 1999-08-04  Jim Meyering  <meyering@ascend.com>
65088
65089         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
65090         fileutils and sh-utils (textutils's getline test was inadequate).
65091         (AM_FUNC_GETLINE): Run this test.
65092         (AC_CHECK_FUNCS): Check for getdelim.
65093         Reported by Bob Proulx.
65094
65095 1999-08-02  Jim Meyering  <meyering@ascend.com>
65096
65097         * m4/jm-macros.m4: Add a comment.
65098
65099 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65100
65101         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
65102         <inttypes.h> defines strtoumax as a macro (and not as a
65103         function).
65104
65105 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65106
65107         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
65108         that we can shift, multiply and divide unsigned long long
65109         values; Ultrix cc can't do it.
65110
65111 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65112
65113         * m4/mktime.m4: New file, which is a preview of what should appear
65114         in the next public autoconf release.
65115
65116 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65117
65118         * m4/lfs.m4: Remove this file.
65119         * m4/largefile.m4: New file.  It contains the old contents of
65120         lfs.m4, except that all names with prefix AC_LFS have been
65121         changed to use the prefix AC_SYS_LARGEFILE instead, to be
65122         compatible with future autoconf versions.  Also, some minor m4
65123         quoting problems have been fixed.
65124
65125 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65126
65127         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
65128         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
65129         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
65130         and simplify the shell code.
65131
65132 1999-08-01  Jim Meyering  <meyering@ascend.com>
65133
65134         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
65135         m4.
65136
65137 1999-07-20  Jim Meyering  <meyering@ascend.com>
65138
65139         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
65140
65141 1999-07-15  Jim Meyering  <meyering@ascend.com>
65142
65143         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
65144
65145 1999-05-22  Jim Meyering  <meyering@ascend.com>
65146
65147         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
65148
65149 1999-05-20  Jim Meyering  <meyering@ascend.com>
65150
65151         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
65152         Add a colon after each `then' in case $4 is empty.
65153
65154 1999-05-16  Jim Meyering  <meyering@ascend.com>
65155
65156         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
65157
65158 1999-05-10  Jim Meyering  <meyering@ascend.com>
65159
65160         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
65161
65162         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
65163         AC_FUNC_MKTIME.
65164
65165 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
65166
65167         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
65168
65169 1999-05-04  Paul Eggert  <eggert@twinsun.com>
65170
65171         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
65172         not CPPFLAGS, so that linking works correctly in IRIX.
65173
65174 1999-04-30  Paul Eggert  <eggert@twinsun.com>
65175
65176         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
65177
65178 1999-04-20  Paul Eggert  <eggert@twinsun.com>
65179
65180         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
65181         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
65182         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
65183         jm_AC_TYPE_UNSIGNED_LONG_LONG.
65184         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
65185
65186         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
65187
65188 1999-04-20  Jim Meyering  <meyering@ascend.com>
65189
65190         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
65191         AC_REPLACE xstroull if necessary.  From Paul Eggert.
65192         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
65193
65194 1999-04-18  Jim Meyering  <meyering@ascend.com>
65195
65196         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
65197         * m4/jm-macros.m4: Use it.
65198
65199 1999-04-06  Jim Meyering  <meyering@ascend.com>
65200
65201         * m4/strftime.m4: Remove test for %f.
65202
65203 1999-03-29  Jim Meyering  <meyering@ascend.com>
65204
65205         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
65206         superset of the AC_TYPE_* checks in the textutils, fileutils,
65207         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
65208         AC_TYPE_PID_T.
65209
65210 1999-03-28  Jim Meyering  <meyering@ascend.com>
65211
65212         * m4/jm-macros.m4: Define GNU_PACKAGE here.
65213         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
65214         replaced e.g., in the *.sh files of the sh-utils.
65215
65216 1999-03-20  Jim Meyering  <meyering@ascend.com>
65217
65218         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
65219         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
65220         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
65221
65222 1999-03-19  Jim Meyering  <meyering@ascend.com>
65223
65224         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
65225
65226 1999-03-12  Jim Meyering  <meyering@ascend.com>
65227
65228         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
65229
65230 1999-03-07  Jim Meyering  <meyering@ascend.com>
65231
65232         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
65233         declared.
65234
65235 1999-02-17  Jim Meyering  <meyering@ascend.com>
65236
65237         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
65238         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
65239
65240 1999-02-07  Jim Meyering  <meyering@ascend.com>
65241
65242         * m4/group-member.m4: New file -- extracted from sh-utils'
65243         configure.in.
65244
65245         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
65246         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
65247
65248 1999-02-06  Jim Meyering  <meyering@ascend.com>
65249
65250         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
65251         * m4/fnmatch.m4: Likewise.
65252         * m4/getgroups.m4: Likewise.
65253         * m4/lstat.m4: Likewise.
65254         * m4/malloc.m4: Likewise.
65255         * m4/putenv.m4: Likewise.
65256         * m4/realloc.m4: Likewise.
65257         * m4/regex.m4: Likewise.
65258         * m4/stat.m4: Likewise.
65259         * m4/strftime.m4: Likewise.
65260         Suggestion from Alain Magloire.
65261
65262         * m4/chown.m4: Use `.$ac_objext', not `.o'.
65263         * m4/fnmatch.m4: Likewise.
65264         * m4/getgroups.m4: Likewise.
65265         * m4/getline.m4: Likewise.
65266         * m4/lstat.m4: Likewise.
65267         * m4/malloc.m4: Likewise.
65268         * m4/memcmp.m4: Likewise.
65269         * m4/putenv.m4: Likewise.
65270         * m4/realloc.m4: Likewise.
65271         * m4/regex.m4: Likewise.
65272         * m4/stat.m4: Likewise.
65273         * m4/strftime.m4: Likewise.
65274         Suggestion from Alain Magloire.
65275
65276         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
65277         an argument.
65278
65279         * m4/regex.m4: Add a run-time Test for proper operation of
65280         re_compile_pattern.
65281
65282 1999-01-31  Jim Meyering  <meyering@ascend.com>
65283
65284         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
65285
65286 1999-01-30  Jim Meyering  <meyering@ascend.com>
65287
65288         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
65289
65290         * m4/jm-mktime.m4: Make this a wrapper around the official
65291         AM_FUNC_MKTIME rather than my private copy, now that the official one
65292         is up to date.
65293         * m4/mktime.m4: Remove file.
65294
65295         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
65296         * m4/uptime.m4: Likewise.
65297         * m4/uintmax_t.m4: Likewise.
65298
65299 1999-01-28  Jim Meyering  <meyering@ascend.com>
65300
65301         * m4/jm-macros.m4: Use jm_AFS.
65302         * m4/afs.m4: New file (from fileutils' configure.in).
65303
65304         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
65305         * m4/chown.m4: Likewise.
65306         * m4/d-ino.m4: Likewise.
65307         * m4/d-type.m4: Likewise.
65308         * m4/fnmatch.m4: Likewise.
65309         * m4/getgroups.m4: Likewise.
65310         * m4/gettext.m4: Likewise.
65311         * m4/jm-mktime.m4: Likewise.
65312         * m4/jm-winsz2.m4: Likewise.
65313         * m4/lcmessage.m4: Likewise.
65314         * m4/ls-mntd-fs.m4: Likewise.
65315         * m4/malloc.m4: Likewise.
65316         * m4/memcmp.m4: Likewise.
65317         * m4/putenv.m4: Likewise.
65318         * m4/realloc.m4: Likewise.
65319         * m4/st_mtim.m4: Likewise.
65320         * m4/strftime.m4: Likewise.
65321
65322 1999-01-16  Jim Meyering  <meyering@ascend.com>
65323
65324         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
65325         (ARGMATCH_DIE_DECL): Define.
65326
65327 1999-01-12  Jim Meyering  <meyering@ascend.com>
65328
65329         * m4/Makefile.am.in: Rewrite to avoid using fmt.
65330         Reported by Lars Hecking.
65331
65332 1999-01-10  Jim Meyering  <meyering@ascend.com>
65333
65334         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
65335         gross kludge.
65336         * m4/inttypes_h.m4: Likewise.
65337         * m4/lstat.m4: Likewise.
65338         * m4/malloc.m4: Likewise.
65339         * m4/readdir.m4: Likewise.
65340         * m4/realloc.m4: Likewise.
65341         * m4/st_dm_mode.m4: Likewise.
65342         * m4/stat.m4: Likewise.
65343         * m4/utimbuf.m4: Likewise.
65344         * m4/utimes.m4: Likewise.
65345
65346         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
65347         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
65348         comments in config.h.in are meaningful.
65349
65350         * m4/jm-macros.m4: Require autoconf-2.13 here.
65351
65352         * m4/regex.m4: By default, don't use the included regex.c on systems
65353         with glibc 2.  Suggestion from Uli Drepper.
65354
65355 1999-01-02  Jim Meyering  <meyering@ascend.com>
65356
65357         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
65358
65359 1998-12-18  Jim Meyering  <meyering@ascend.com>
65360
65361         * m4/Makefile.am.in (Makefile.am): Simplify rule.
65362         Based on a suggestion from Lars Hecking.
65363
65364 1998-11-16  Paul Eggert  <eggert@twinsun.com>
65365
65366         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
65367
65368 1998-11-16  Jim Meyering  <meyering@ascend.com>
65369
65370         * m4/lfs.m4: Double-quote the `uname...` expression.
65371
65372 1998-11-14  Jim Meyering  <meyering@ascend.com>
65373
65374         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
65375         * m4/stat.m4: Likewise.
65376
65377 1998-11-03  Jim Meyering  <meyering@ascend.com>
65378
65379         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
65380         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
65381
65382 1998-10-18  Jim Meyering  <meyering@ascend.com>
65383
65384         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
65385
65386 1998-10-17  Jim Meyering  <meyering@ascend.com>
65387
65388         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
65389         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
65390         calls for those previously hard-coded headers.  Instead, take a new
65391         parameter.
65392         (jm_CHECK_DECLARATIONS): Reflect interface change.
65393         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
65394         (jm_CHECK_DECL_LOCALTIME_R): New macro.
65395
65396         * m4/mktime.m4: Test for spring-forward gap before long-running test.
65397
65398 1998-10-14  Jim Meyering  <meyering@ascend.com>
65399
65400         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
65401         instead of "TZ=America/Vancouver".  From Paul Eggert.
65402
65403 1998-10-11  Jim Meyering  <meyering@ascend.com>
65404
65405         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
65406         This adds a test for a recently added compatibility fix for mktime.c.
65407         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
65408
65409 1998-09-27  Jim Meyering  <meyering@ascend.com>
65410
65411         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
65412
65413         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
65414         ../configure.in, including a change from Gordon Matzigkeit to allow
65415         cross-compiling for the Hurd.
65416
65417         * m4/glibc.m4: New file/macro to test for the GNU C Library
65418         versions 1 and 2.  From Gordon Matzigkeit.
65419         Indent.
65420
65421 1998-09-21  Jim Meyering  <meyering@ascend.com>
65422
65423         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
65424
65425 1998-08-18  Paul Eggert  <eggert@twinsun.com>
65426
65427         Port nanosecond-resolution times to UnixWare 2.1.2 and
65428         pedantic Solaris 2.6.
65429
65430         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
65431         AC_STRUCT_ST_MTIM.
65432         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
65433         Generate name of ns member, instead of just 1 or undef.
65434         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
65435
65436 1998-08-15  Jim Meyering  <meyering@ascend.com>
65437
65438         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
65439         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
65440         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
65441         instead of jm_TYPE_SSIZE_T.
65442
65443 1998-08-12  Jim Meyering  <meyering@ascend.com>
65444
65445         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
65446
65447 1998-08-02  Jim Meyering  <meyering@ascend.com>
65448
65449         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
65450         in acconfig.h manually.
65451
65452 1998-07-31  Paul Eggert  <eggert@twinsun.com>
65453
65454         * m4/st_mtim.m4: New file.
65455
65456 1998-07-28  Jim Meyering  <meyering@ascend.com>
65457
65458         * m4/utimes.m4: Undef stat.
65459
65460 1998-07-25  Jim Meyering  <meyering@ascend.com>
65461
65462         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
65463         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
65464
65465 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
65466
65467         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
65468         uid and gid actually remain unchanged.
65469
65470 1998-07-07  Jim Meyering  <meyering@ascend.com>
65471
65472         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
65473
65474 1998-07-04  Jim Meyering  <meyering@ascend.com>
65475
65476         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
65477         to prove that this macro can be used in packages without regex.c.
65478
65479 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
65480
65481         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
65482         is to be used.
65483
65484 1998-07-03  Jim Meyering  <meyering@ascend.com>
65485
65486         * m4/gettext.m4: Add -lintl if it's found to be necessary.
65487
65488         * m4/gettext.m4: New file -- from gettext-0.10.35.
65489         * m4/lcmessage.m4: Likewise.
65490         * m4/progtest.m4: Likewise.
65491
65492         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
65493         * m4/jm-macros.m4: Require the new macro.
65494
65495 1998-06-29  Jim Meyering  <meyering@ascend.com>
65496
65497         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
65498         for the definition of NGROUPS (used in a system header included
65499         by sys/mount.h).
65500
65501 1998-06-28  Jim Meyering  <meyering@ascend.com>
65502
65503         * m4/ls-mntd-fs.m4: New file.
65504         * m4/fstypename.m4: New file.
65505
65506         * m4/jm-macros.m4: Require the new macro.
65507         * m4/jm-glibc-io.m4: New file.
65508
65509 1998-05-19  Jim Meyering  <meyering@ascend.com>
65510
65511         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
65512         * m4/lchown.m4: New file.
65513
65514         * m4/Makefile.am.in: New file.
65515         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
65516
65517 1998-05-14  Jim Meyering  <meyering@ascend.com>
65518
65519         * m4/Makefile.am (EXTRA_DIST): Add them.
65520         * m4/jm-macros.m4: New file.
65521         * m4/utimbuf.m4: New file.
65522
65523 1998-05-12  Jim Meyering  <meyering@ascend.com>
65524
65525         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
65526
65527 1998-05-11  Jim Meyering  <meyering@ascend.com>
65528
65529         * m4/isc-posix.m4: New file.
65530
65531 1998-05-10  Jim Meyering  <meyering@ascend.com>
65532
65533         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
65534
65535 1998-05-09  Jim Meyering  <meyering@ascend.com>
65536
65537         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
65538         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
65539         with automake.
65540
65541         * m4/ssize_t.m4: New file.
65542         * m4/mktime.m4: Remove file -- the new automake has this now.
65543
65544 1998-04-26  Jim Meyering  <meyering@ascend.com>
65545
65546         * m4/assert.m4: New file.
65547         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
65548
65549 1998-04-05  Jim Meyering  <meyering@ascend.com>
65550
65551         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
65552         (jm_PREREQ): Use it here.
65553
65554 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
65555
65556         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
65557         in acconfig.h.
65558
65559 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
65560
65561         * m4/prereq.m4: New file.
65562         * m4/error.m4: New file.
65563         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
65564
65565 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
65566
65567         * m4/getline.m4: Don't set am_cv_func_working_getline before the
65568         cache-check for the same variable -- that defeated the purpose of
65569         the test; the test program was never run.  This was a problem only
65570         on systems with losing getline functions -- HP-UX 10.20 is one.
65571         Reported by Bjorn Helgaas.
65572
65573 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
65574
65575         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
65576
65577 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
65578
65579         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
65580
65581         * m4/const.m4: New file.  Use an initializer in this declaration
65582         typedef int charset[2]; const charset x;
65583         Reported by Bob Glickstein.
65584
65585 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
65586
65587         * m4/chown.m4: Fix reversed types on -1 args to chown.
65588         From Kaveh Ghazi.
65589
65590 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
65591
65592         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
65593         Add lseek and memchr.
65594
65595         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
65596         T.E.Dickey <dickey@clark.net> said that some older preprocessors
65597         have a 20-character limit on names.
65598
65599 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
65600
65601         * m4/inttypes_h.m4: New file.
65602         * m4/uintmax_t.m4: New file.
65603         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
65604
65605
65606         -----
65607
65608         Local Variables:
65609         coding: utf-8
65610         End:
65611
65612         Copyright (C) 1997-2010 Free Software Foundation, Inc.
65613
65614         Copying and distribution of this file, with or without
65615         modification, are permitted provided the copyright notice
65616         and this notice are preserved.