c3ed27eb964d1c6c85aa421bff791e5f9db744a0
[pspp] / ChangeLog
1 2007-05-24  Bruno Haible  <bruno@clisp.org>
2
3         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
4         in the printed representation of a NaN.
5         * tests/test-vasprintf-posix.c (test_function): Likewise.
6         * tests/test-snprintf-posix.h (test_function): Likewise.
7         * tests/test-sprintf-posix.h (test_function): Likewise.
8         Reported by Eric Blake.
9
10 2007-05-23  Eric Blake  <ebb9@byu.net>
11
12         Fix fseeko/ftello on cygwin 1.5.24.
13         * doc/functions/fseeko.texi (fseeko): Document the fix.
14         * doc/functions/ftello.texi (ftello): Document the fix.
15         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
16         * doc/functions/stdout.text (stdout): New file.
17         * doc/functions/stderr.text (stderr): New file.
18         * doc/gnulib.texi (Function Substitutes): Use new files.
19         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
20         prior to 1.7.0.
21         * tests/test-ftello.c (main): Likewise for ftello.
22         * tests/test-fseeko.sh: New file.
23         * tests/test-ftello.sh: New file.
24         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
25         with seekable stdin.
26         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
28         (gl_REPLACE_FSEEKO): New macro.
29         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
30         * modules/fseeko (Files): Distribute fseeko.c.
31         * modules/ftello (Files): Distribute ftello.c.
32         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
33         mode.
34         * lib/ftello.c (rpl_ftello): New file.
35         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
36         fseeko, ftello.
37         (gl_STDIN_LARGE_OFFSET): New macro.
38         * modules/stdio (Makefile.am): Perform the replacement.
39         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
40
41 2007-05-23  Bruno Haible  <bruno@clisp.org>
42
43         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
44         GNULIB_POSIXCHECK is defined.
45
46 2007-05-21  Bruno Haible  <bruno@clisp.org>
47
48         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
49         Check also the output for NaN arguments. When cross-compiling, guess
50         no on IRIX.
51         * lib/vasnprintf.c: Update comments.
52         * tests/test-vasnprintf-posix.c (strisnan): New function.
53         (test_function): Use it.
54         * tests/test-vasprintf-posix.c (strisnan): New function.
55         (test_function): Use it.
56         * tests/test-snprintf-posix.h (strisnan): New function.
57         (test_function): Use it.
58         * tests/test-sprintf-posix.h (strisnan): New function.
59         (test_function): Use it.
60         Reported by Eric Blake.
61
62 2007-05-20  Bruno Haible  <bruno@clisp.org>
63
64         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
65         numbers that fails on BeOS.
66         * doc/functions/frexpl.texi: Update.
67
68 2007-05-20  Jim Meyering  <jim@meyering.net>
69
70         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
71         forced upon us by glibc-2.6.
72
73 2007-05-20  Bruno Haible  <bruno@clisp.org>
74
75         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
76         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
77         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
78         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
79         NEED_PRINTF_INFINITE.
80         (is_infinitel): New function.
81         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
82         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
83         gl_PREREQ_VASNPRINTF_INFINITE.
84         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
85         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
86         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
87         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
88         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
89         gl_PREREQ_VASNPRINTF_INFINITE.
90         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
91         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
92         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
93         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
94         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
95         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
96         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
97         * doc/functions/fprintf.texi: Update.
98         * doc/functions/printf.texi: Update.
99         * doc/functions/snprintf.texi: Update.
100         * doc/functions/sprintf.texi: Update.
101         * doc/functions/vfprintf.texi: Update.
102         * doc/functions/vprintf.texi: Update.
103         * doc/functions/vsnprintf.texi: Update.
104         * doc/functions/vsprintf.texi: Update.
105
106 2007-05-20  Bruno Haible  <bruno@clisp.org>
107
108         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
109         was not found in libc.
110         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
111
112 2007-05-20  Bruno Haible  <bruno@clisp.org>
113
114         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
115         printed as "-nan" instead of "nan".
116         * tests/test-vasprintf-posix.c (test_function): Likewise.
117         * tests/test-snprintf-posix.h (test_function): Likewise.
118         * tests/test-sprintf-posix.h (test_function): Likewise.
119         Needed for HP-UX 11.
120
121 2007-05-20  Jim Meyering  <jim@meyering.net>
122
123         Fix buggy test for the fchownat-deref bug.
124         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
125         symlink required for the run-test.  Without it, this test would
126         always declare that fchownat doesn't work, and client code would
127         unnecessarily use the replacement function with fixed libc.
128         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
129         Reported by Greg Schafer.
130
131 2007-05-19  Bruno Haible  <bruno@clisp.org>
132
133         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
134         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
135         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
136         Needed for IRIX 6.5 and Solaris 2.5.1.
137
138 2007-05-19  Bruno Haible  <bruno@clisp.org>
139
140         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
141         (test_function): Skip tests involving -0.0 on platforms where
142         -0.0 = 0.0.
143         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
144         (test_function): Skip tests involving -0.0 on platforms where
145         -0.0 = 0.0.
146         * tests/test-snprintf-posix.h (have_minus_zero): New function.
147         (test_function): Skip tests involving -0.0 on platforms where
148         -0.0 = 0.0.
149         * tests/test-sprintf-posix.h (have_minus_zero): New function.
150         (test_function): Skip tests involving -0.0 on platforms where
151         -0.0 = 0.0.
152         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
153         tests.
154         * tests/test-printf-posix.h (test_function): Likewise.
155         * tests/test-printf-posix.output: Remove all -0.0 related results.
156         Needed for IRIX 6.5.
157
158 2007-05-19  Bruno Haible  <bruno@clisp.org>
159
160         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
161         printed as "nan0x7fffffff" instead of "nan".
162         * tests/test-vasprintf-posix.c (test_function): Likewise.
163         * tests/test-snprintf-posix.h (test_function): Likewise.
164         * tests/test-sprintf-posix.h (test_function): Likewise.
165         * tests/test-fprintf-posix.h (NaN): Remove macro.
166         (test_function): Remove all NaN related tests.
167         * tests/test-printf-posix.h (NaN): Remove macro.
168         (test_function): Remove all NaN related tests.
169         * tests/test-printf-posix.output: Remove all NaN related results.
170         Needed for IRIX 6.5.
171
172 2007-05-19  Bruno Haible  <bruno@clisp.org>
173
174         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
175         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
176
177 2007-05-19  Bruno Haible  <bruno@clisp.org>
178
179         * lib/float_.h: New file.
180         * m4/float_h.m4: New file.
181         * modules/float: New file.
182         * modules/isnanl (Dependencies): Add float.
183         * modules/isnanl-nolibm (Dependencies): Likewise.
184         * modules/mathl (Dependencies): Likewise.
185         * modules/printf-frexpl (Dependencies): Likewise.
186         * modules/signbit (Dependencies): Likewise.
187         * modules/vasnprintf (Dependencies): Likewise.
188         * doc/headers/float.texi: Update.
189
190 2007-05-19  Jim Meyering  <jim@meyering.net>
191
192         * lib/utimens.c (gl_futimens): Rename from futimens,
193         now that glibc-2.6 declares futimens.
194         * lib/utimens.h: Likewise.
195
196 2007-05-19  Bruno Haible  <bruno@clisp.org>
197
198         Avoid test failures on mingw.
199         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
200         * tests/test-printf-posix.sh: Likewise.
201         * tests/test-vfprintf-posix.sh: Likewise.
202         * tests/test-vprintf-posix.sh: Likewise.
203
204 2007-05-19  Bruno Haible  <bruno@clisp.org>
205
206         Fix *printf result for NaN, Inf, -0.0 on mingw.
207         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
208         * lib/vasnprintf.c: Include math.h and isnan.h.
209         (is_infinite_or_zero): New function.
210         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
211         values in the %f, %F, %e, %E, %g, %G directives.
212         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
213         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
214         gl_PRINTF_INFINITE and test its result. Invoke
215         gl_PREREQ_VASNPRINTF_INFINITE.
216         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
217         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
218         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
219         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
220         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
221         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
222         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
223         * doc/functions/fprintf.texi: Update.
224         * doc/functions/printf.texi: Update.
225         * doc/functions/snprintf.texi: Update.
226         * doc/functions/sprintf.texi: Update.
227         * doc/functions/vfprintf.texi: Update.
228         * doc/functions/vprintf.texi: Update.
229         * doc/functions/vsnprintf.texi: Update.
230         * doc/functions/vsprintf.texi: Update.
231
232 2007-05-19  Bruno Haible  <bruno@clisp.org>
233
234         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
235         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
236         Instead of multiplying with 10^k, set extra_zeroes to k.
237         (scale10_round_long_double): Remove function.
238
239 2007-05-18  Bruno Haible  <bruno@clisp.org>
240
241         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
242         introduced on 2007-05-06.
243
244 2007-05-18  Bruno Haible  <bruno@clisp.org>
245
246         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
247         %g directives.
248         * tests/test-vasprintf-posix.c (test_function): Likewise.
249         * tests/test-snprintf-posix.h (test_function): Likewise.
250         * tests/test-sprintf-posix.h (test_function): Likewise.
251
252 2007-05-18  Bruno Haible  <bruno@clisp.org>
253
254         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
255         (strmatch): New function.
256         (test_function): Test the %f directive on numbers of various exponents.
257         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
258         (strmatch): New function.
259         (test_function): Test the %f directive on numbers of various exponents.
260         * tests/test-snprintf-posix.h (strmatch): New function.
261         (test_function): Test the %f directive on numbers of various exponents.
262         * tests/test-sprintf-posix.h (strmatch): New function.
263         (test_function): Test the %f directive on numbers of various exponents.
264         * tests/test-snprintf-posix.c (SIZEOF): New macro.
265         * tests/test-sprintf-posix.c (SIZEOF): New macro.
266         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
267         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
268
269 2007-05-18  Bruno Haible  <bruno@clisp.org>
270
271         Add support for 'long double' number output.
272         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
273         * lib/vasnprintf.c: Include math.h and float+.h.
274         (mp_limb_t): New type.
275         (GMP_LIMB_BITS): New macro.
276         (mp_twolimb_t): New type.
277         (GMP_TWOLIMB_BITS): New macro.
278         (mpn_t): New type.
279         (multiply, divide, convert_to_decimal, decode_long_double,
280         scale10_round_long_double, scale10_round_decimal_long_double,
281         floorlog10l): New functions.
282         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
283         for the %f, %F, %e, %E, %g, %G directives.
284         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
285         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
286         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
287         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
288         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
289         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
290         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
291         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
292         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
293         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
294         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
295         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
296         * modules/snprintf-posix (Depends-on): Likewise.
297         * modules/sprintf-posix (Depends-on): Likewise.
298         * modules/vasnprintf-posix (Depends-on): Likewise.
299         * modules/vasprintf-posix (Depends-on): Likewise.
300         * modules/vfprintf-posix (Depends-on): Likewise.
301         * modules/vsnprintf-posix (Depends-on): Likewise.
302         * modules/vsprintf-posix (Depends-on): Likewise.
303         * modules/vasnprintf (Files): Add lib/float+.h.
304         * doc/functions/fprintf.texi: Update.
305         * doc/functions/printf.texi: Update.
306         * doc/functions/snprintf.texi: Update.
307         * doc/functions/sprintf.texi: Update.
308         * doc/functions/vfprintf.texi: Update.
309         * doc/functions/vprintf.texi: Update.
310         * doc/functions/vsnprintf.texi: Update.
311         * doc/functions/vsprintf.texi: Update.
312
313 2007-05-18  Bruno Haible  <bruno@clisp.org>
314
315         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
316
317 2007-05-18  Bruno Haible  <bruno@clisp.org>
318
319         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
320         for printing 64-bit integers. Needed for mingw.
321
322 2007-05-18  Bruno Haible  <bruno@clisp.org>
323
324         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
325         gl_FUNC_FREXPL_WORKS.
326         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
327
328 2007-05-18  Bruno Haible  <bruno@clisp.org>
329
330         * modules/frexpl-nolibm-tests: New file.
331
332         * modules/frexpl-nolibm: New file.
333         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
334
335 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
336
337         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
338         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
339         GCC 4.2, which otherwise issues a lot of warnings.
340         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
341         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
342         Likewise.
343         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
344         * modules/iconv_open (iconv.h): Likewise.
345         * modules/locale (locale.h): Likewise.
346         * modules/netinet_in (netinet/in.h): Likewise.
347         * modules/sys_select (sys_select.h): Likewise.
348         * modules/sys_socket (sys/socket.h): Likewise.
349         * modules/sys_stat (sys/stat.h): Likewise.
350         * modules/sysexits (sysexits.h): Likewise.
351         * modules/unistd (unistd.h): Likewise.
352
353 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
354
355         * modules/closein-tests (Makefile.am): Distribute
356         `test-closein.sh'.
357
358 2007-05-17  Bruno Haible  <bruno@clisp.org>
359
360         * tests/test-printf-posix.output: Renamed from
361         tests/test-fprintf-posix.out.
362         * modules/fprintf-posix-tests: Update.
363         * modules/printf-posix-tests: Update.
364         * modules/vfprintf-posix-tests: Update.
365         * modules/vprintf-posix-tests: Update.
366         * tests/test-fprintf-posix.sh: Update.
367         * tests/test-printf-posix.sh: Update.
368         * tests/test-vfprintf-posix.sh: Update.
369         * tests/test-vprintf-posix.sh: Update.
370         Reported by Ralf Wildenhues.
371
372 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
373
374         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
375         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
376         GCC 4.2, which otherwise issues a lot of warnings.
377         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
378         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
379         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
380         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
381         it should no longer be needed.
382         * lib/string_.h: Likewise.
383         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
384         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
385         * modules/inttypes (inttypes.h): Likewise.
386         * modules/math (math.h): Likewise.
387         * modules/search (search.h): Likewise.
388         * modules/signal (signal.h): Likewise.
389         * modules/stdint (stdint.h): Likewise.
390         * modules/stdio (stdio.h): Likewise.
391         * modules/stdlib (stdlib.h): Likewise.
392         * modules/string (string.h): Likewise.
393         * modules/sys_time (sys/time.h): Likewise.
394         * modules/time (time.h): Likewise.
395         * modules/wchar (wchar.h): Likewise.
396         * modules/wctype (wtype.h): Likewise.
397
398 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
399
400         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
401
402 2007-05-13  Bruno Haible  <bruno@clisp.org>
403
404         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
405         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
406         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
407         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
408         (gl_PREREQ_STRTOK_R): Don't require it here.
409
410 2007-05-13  Bruno Haible  <bruno@clisp.org>
411
412         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
413         when used in C++ mode.
414
415 2007-05-12  Bruno Haible  <bruno@clisp.org>
416
417         * lib/linebuffer.h: Tweak doc.
418         * lib/linebuffer.c: Likewise.
419
420 2007-05-12  James Youngman  <jay@gnu.org>
421
422         * lib/linebuffer.c (readlinebuffer_delim): New function,
423         like readlinebuffer, but use a caller-specified delimiter.
424         (readlinebuffer): Just call readlinebuffer_delim with '\n'
425         as the delimiter.
426         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
427
428 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
429
430         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
431         * modules/openat (Files): Remove openat-die.c.
432         (Depends-on): Add openat-die.
433         * modules/openat-die: New module.
434
435 2007-05-06  Bruno Haible  <bruno@clisp.org>
436
437         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
438         Update with info about Cygwin.
439         * doc/functions/fprintf.texi: Update.
440         * doc/functions/printf.texi: Update.
441         * doc/functions/snprintf.texi: Update.
442         * doc/functions/sprintf.texi: Update.
443         * doc/functions/vfprintf.texi: Update.
444         * doc/functions/vprintf.texi: Update.
445         * doc/functions/vsnprintf.texi: Update.
446         * doc/functions/vsprintf.texi: Update.
447         Reported by Eric Blake.
448
449 2007-05-06  Bruno Haible  <bruno@clisp.org>
450
451         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
452         padding ourselves for the floating-point directives.
453         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
454         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
455         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
456         gl_PRINTF_FLAG_ZERO and test its result. Invoke
457         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
458         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
459         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
460         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
461         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
462         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
463         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
464         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
465         * tests/test-snprintf-posix.h (test_function): Also check the width
466         and some flags in the %f directive.
467         * tests/test-sprintf-posix.h (test_function): Likewise.
468         * tests/test-vasnprintf-posix.c (test_function): Likewise.
469         * tests/test-vasprintf-posix.c (test_function): Likewise.
470         * doc/functions/fprintf.texi: Update.
471         * doc/functions/printf.texi: Update.
472         * doc/functions/snprintf.texi: Update.
473         * doc/functions/sprintf.texi: Update.
474         * doc/functions/vfprintf.texi: Update.
475         * doc/functions/vprintf.texi: Update.
476         * doc/functions/vsnprintf.texi: Update.
477         * doc/functions/vsprintf.texi: Update.
478
479 2007-05-06  Bruno Haible  <bruno@clisp.org>
480
481         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
482         pass the ' flag character to sprintf or snprintf.
483         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
484         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
485         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
486         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
487         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
488         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
489         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
490         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
491         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
492         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
493         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
494         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
495         * tests/test-snprintf-posix.h (test_function): Also check the grouping
496         flag.
497         * tests/test-sprintf-posix.h (test_function): Likewise.
498         * tests/test-vasnprintf-posix.c (test_function): Likewise.
499         * tests/test-vasprintf-posix.c (test_function): Likewise.
500         * doc/functions/fprintf.texi: Update.
501         * doc/functions/printf.texi: Update.
502         * doc/functions/snprintf.texi: Update.
503         * doc/functions/sprintf.texi: Update.
504         * doc/functions/vfprintf.texi: Update.
505         * doc/functions/vprintf.texi: Update.
506         * doc/functions/vsnprintf.texi: Update.
507         * doc/functions/vsprintf.texi: Update.
508
509 2007-05-01  Bruno Haible  <bruno@clisp.org>
510
511         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
512
513 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
514
515         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
516         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
517
518 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
519
520         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
521         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
522         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
523
524 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
525
526         * lib/argp-help.c (struct hol_entry): New member `ord'.
527         (HOL_ENTRY_PTRCMP): Use ord for comparison
528         (hol_sort): Initialize ord.
529
530 2007-05-01  Bruno Haible  <bruno@clisp.org>
531
532         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
533         Reported by Eric Blake.
534         * doc/gnulib.texi (Function Substitutes): Update.
535
536 2007-05-01  Bruno Haible  <bruno@clisp.org>
537
538         * doc/functions.texi: Remove file, now redundant through
539         doc/functions/*.texi.
540
541 2007-05-01  Bruno Haible  <bruno@clisp.org>
542
543         * modules/argp (Depends-on): Add sleep.
544
545 2007-05-01  Bruno Haible  <bruno@clisp.org>
546
547         * modules/sleep-tests: New file.
548         * tests/test-sleep.c: New file.
549
550         * modules/sleep: New file.
551         * lib/sleep.c: New file.
552         * m4/sleep.m4: New file.
553         * lib/unistd_.h (sleep): New declaration.
554         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
555         HAVE_SLEEP.
556         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
557         * doc/functions/sleep.texi: Document the sleep module.
558
559 2007-05-01  Bruno Haible  <bruno@clisp.org>
560
561         * lib/sigprocmask.h: Remove file.
562         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
563         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
564         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
565         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
566         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
567         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
568         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
569         HAVE_SIGSET_T as a shell variable.
570         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
571         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
572         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
573         (Depends-on): Add signal. Remove verify.
574         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
575         (Include): Mention <signal.h> instead of sigprocmask.h.
576         * NEWS: Mention the change.
577         * lib/fatal-signal.c: Don't include sigprocmask.h.
578
579 2007-05-01  Bruno Haible  <bruno@clisp.org>
580
581         * modules/signal: New file.
582         * lib/signal_.h: New file.
583         * m4/signal_h.m4: New file.
584
585 2007-05-01  Bruno Haible  <bruno@clisp.org>
586
587         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
588         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
589         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
590         HAVE_WCTYPE_CTMP_BUG into wctype.h.
591
592 2007-05-01  Bruno Haible  <bruno@clisp.org>
593
594         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
595         configure time.
596         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
597         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
598         * modules/sys_stat (Makefile.am): Substitute their values into
599         sys/stat.h.
600
601 2007-05-01  Bruno Haible  <bruno@clisp.org>
602
603         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
604         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
605         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
606
607 2007-05-01  Bruno Haible  <bruno@clisp.org>
608
609         * doc/header/assert.texi: Undo last change: don't mention the gnulib
610         'assert' module here.
611
612 2007-05-01  Bruno Haible  <bruno@clisp.org>
613
614         * doc/functions/*.texi: New files.
615         * doc/functions/google-ranking.txt: New file.
616         * doc/gnulib.texi (Function Substitutes): New chapter.
617         (ctime, inet_ntoa): Remove sections.
618         * doc/ctime.texi: Remove file.
619         * doc/inet_ntoa.texi: Remove file.
620         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
621         dependencies.
622         (%.info): New rule, specifying a --reference-limit.
623
624 2007-05-01  Bruno Haible  <bruno@clisp.org>
625
626         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
627
628 2007-05-01  Bruno Haible  <bruno@clisp.org>
629
630         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
631         the portability of 'mkdir' to mingw systems.
632
633 2007-05-01  Bruno Haible  <bruno@clisp.org>
634
635         * doc/headers/google-ranking.txt: New file.
636
637 2007-04-30  Eric Blake  <ebb9@byu.net>
638
639         Prefer fseeko to fseek.
640         * modules/getpass (Depends-on): Add fseeko.
641         * lib/getpass.c (getpass): Use fseeko, not fseek.
642
643 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
644
645         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
646         assumes the sorting is stable, while most qsort implementations
647         are not.  Use argument addresses to ensure they never compare as
648         equal.
649
650         * tests/test-argp-2.sh (usage-indent test): Fix output
651         (func_compare): Restore diff options
652         * tests/test-argp.c: Restore #include "progname.h"
653
654 2007-04-29  Bruno Haible  <bruno@clisp.org>
655
656         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
657         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
658         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
659         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
660         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
661         (configure.ac): Define CHECK_SNPRINTF_POSIX.
662         (TESTS, check_PROGRAMS): Add test-snprintf.
663         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
664         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
665         (TESTS, check_PROGRAMS): Add test-vsnprintf.
666         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
667         assertions that fail on HP-UX, OSF/1, or IRIX.
668         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
669
670 2007-04-29  Bruno Haible  <bruno@clisp.org>
671
672         * MODULES.html.sh (posix_functions): Remove 'contents'.
673
674 2007-04-29  Karl Berry  <karl@gnu.org>
675
676         * config/srclist.txt (gendocs_template_min): new entry.
677
678 2007-04-29  Bruno Haible  <bruno@clisp.org>
679
680         Work around fpurge bug on BSD systems.
681         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
682         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
683         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
684         fpurge to rpl_fpurge if the system already has this function.
685         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
686         the case where the system already has this function. Correct invariants
687         on BSD systems.
688         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
689         BSD systems.
690
691 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
692
693         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
694         proposed by Sven Verdoolaege.
695
696         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
697         options.
698         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
699         (usage and help tests): Update
700
701 2007-04-29  Bruno Haible  <bruno@clisp.org>
702
703         * tests/test-fflush.c (main): Use a file of size 17, not 10.
704         Print more information in case of failure. Disable a test on BeOS.
705
706 2007-04-29  Bruno Haible  <bruno@clisp.org>
707
708         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
709         This helps debugging on systems on which no gdb is available.
710
711 2007-04-29  Bruno Haible  <bruno@clisp.org>
712
713         * lib/freading.h: Improve comments.
714         * lib/fwriting.h: Likewise.
715         * tests/test-freading.c (main): Don't check freading immediately after
716         repositioning. Needed for glibc.
717
718 2007-04-29  Bruno Haible  <bruno@clisp.org>
719
720         * lib/freading.c (freading): Trivial simplification.
721
722 2007-04-28  Bruno Haible  <bruno@clisp.org>
723
724         * tests/test-fwriting.c (main): Also test the interaction between
725         fflush and fwriting.
726         * modules/fwriting-tests (Depends-on): Add fflush.
727
728         * tests/test-freading.c (main): Also test the interaction between
729         fflush and freading.
730         * modules/freading-tests (Depends-on): Add fflush.
731
732 2007-04-28  Bruno Haible  <bruno@clisp.org>
733
734         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
735         fseeko and ftello.
736         Suggested by Eric Blake.
737
738 2007-04-28  Jim Meyering  <jim@meyering.net>
739
740         Avoid false-negative in gl_STDINT_H's C99 conformance test.
741         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
742         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
743
744 2007-04-27  Eric Blake  <ebb9@byu.net>
745
746         * doc/headers/assert.texi (assert.h): Document assert module use.
747
748 2007-04-27  Bruno Haible  <bruno@clisp.org>
749
750         * doc/headers/*.texi: New files.
751         * doc/gnulib.texi (Header File Substitutes): New chapter.
752         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
753         dependencies.
754         (standards.info ,standards.html, standards.dvi): Update dependencies.
755         (mostlyclean, clean): New targets.
756
757 2007-04-27  Bruno Haible  <bruno@clisp.org>
758
759         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
760         * modules/sysexits (Files, Makefile.am): Update.
761
762         * lib/sys_socket_.h: Renamed from lib/socket_.h.
763         * modules/sys_socket (Files, Makefile.am): Update.
764
765         * lib/sys_stat_.h: Renamed from lib/stat_.h.
766         * modules/sys_stat (Files, Makefile.am): Update.
767
768 2007-04-27  Eric Blake  <ebb9@byu.net>
769
770         * lib/freading.h: Improve comments.
771         * lib/fwriting.h: Likewise.
772         * lib/fflush.c: Likewise.
773
774         Fix closein for mingw.
775         * modules/closein-tests: Add tests for closein.
776         * tests/test-closein.c: New file.
777         * tests/test-closein.sh: Likewise.
778         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
779         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
780
781 2007-04-27  Bruno Haible  <bruno@clisp.org>
782
783         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
784         version is < 6.
785         * lib/math_.h [__DECC]: Likewise.
786         * lib/stdio_.h [__DECC]: Likewise.
787         * lib/stdlib_.h [__DECC]: Likewise.
788         * lib/string_.h [__DECC]: Likewise.
789         * lib/time_.h [__DECC]: Likewise.
790         * lib/wchar_.h [__DECC]: Likewise.
791         * lib/wctype_.h [__DECC]: Likewise.
792
793 2007-04-27  Bruno Haible  <bruno@clisp.org>
794
795         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
796
797 2007-04-27  Bruno Haible  <bruno@clisp.org>
798
799         * lib/fflush.c: Add comments.
800         * modules/fpurge-tests (Depends-on): Add fflush.
801         * modules/freadable-tests (Depends-on): Likewise.
802         * modules/fwritable-tests (Depends-on): Likewise.
803
804 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
805
806         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
807         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
808         Report by Bruno Haible <bruno@clisp.org>.
809
810 2007-04-26  Eric Blake  <ebb9@byu.net>
811
812         Fix fflush on mingw.
813         * modules/fflush (Depends-on): Add freading.
814         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
815         but unread data.
816
817 2007-04-26  Eric Blake  <ebb9@byu.net>
818         and Bruno Haible  <bruno@clisp.org>
819
820         Implement freading and fwriting.
821         * lib/freading.c: New file.
822         * lib/freading.h: Likewise.
823         * m4/freading.m4: Likewise.
824         * modules/freading: Likewise.
825         * modules/freading-tests: Likewise.
826         * tests/test-freading.c: Likewise.
827         * lib/fwriting.c: New file.
828         * lib/fwriting.h: Likewise.
829         * m4/fwriting.m4: Likewise.
830         * modules/fwriting: Likewise.
831         * modules/fwriting-tests: Likewise.
832         * tests/test-fwriting.c: Likewise.
833         * MODULES.html.sh (File stream based Input/Output): Mention them.
834
835 2007-04-26  Bruno Haible  <bruno@clisp.org>
836
837         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
838         'long' when we assume it.
839         Suggested by Eric Blake.
840
841 2007-04-26  Bruno Haible  <bruno@clisp.org>
842
843         Ensure fseeko, ftello are declared on glibc systems.
844         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
845         * modules/fseeko (configure.ac-early): Likewise.
846         * modules/ftello (configure.ac-early): Likewise.
847         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
848         AC_FUNC_FSEEKO for this.
849         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
850         (gl_CHECK_FSEEKO): Remove macro.
851
852 2007-04-26  Bruno Haible  <bruno@clisp.org>
853
854         * tests/test-fflush.c (main): Also check the ftell result after
855         fflush and fseek/fseeko.
856         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
857         file descriptor position cache in the stream.
858         * lib/fseeko.c (rpl_fseeko): Likewise.
859
860 2007-04-26  Bruno Haible  <bruno@clisp.org>
861
862         * modules/fflush-tests (Depends-on): Add fseeko.
863
864 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
865             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
866
867         * lib/argz_.h: ensure error_t definition is obtained in same
868         mechanism system argz.h would have.
869         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
870         argz facilities are known bad.  Err on the side of caution if
871         cross-compiling.
872
873 2007-04-25  Eric Blake  <ebb9@byu.net>
874
875         * lib/fpurge.c (includes): Use stdlib.h for free.
876         * tests/test-fflush.c (main): Also test fflush-fseeko.
877
878 2007-04-25  Bruno Haible  <bruno@clisp.org>
879
880         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
881         * lib/fseeko.c: New file.
882         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
883         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
884         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
885         gl_FUNC_FSEEKO.
886         (gl_FUNC_FSEEKO): Invoke it.
887         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
888         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
889         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
890
891 2007-04-25  Bruno Haible  <bruno@clisp.org>
892
893         * modules/fflush (Depends-on): Add ftello.
894
895 2007-04-25  Bruno Haible  <bruno@clisp.org>
896
897         * modules/ftello-tests: New file.
898         * tests/test-ftello.c: New file.
899
900         * modules/ftello: New file.
901         * m4/ftello.m4: New file.
902         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
903         HAVE_FTELLO.
904         * lib/stdio_.h (ftello): New declaration.
905         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
906         HAVE_FTELLO.
907
908 2007-04-25  Bruno Haible  <bruno@clisp.org>
909
910         * modules/fseeko-tests: New file.
911         * tests/test-fseeko.c: New file.
912
913         * modules/fseeko: New file.
914         * m4/fseeko.m4: New file.
915         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
916         HAVE_FSEEKO.
917         * lib/stdio_.h (fseeko): New declaration.
918         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
919         HAVE_FSEEKO.
920
921 2007-04-25  Bruno Haible  <bruno@clisp.org>
922
923         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
924
925 2007-04-25  Bruno Haible  <bruno@clisp.org>
926
927         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
928         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
929         * tests/test-unistd.c: Likewise.
930         * tests/test-fcntl.c: Likewise.
931
932 2007-04-23  Eric Blake  <ebb9@byu.net>
933
934         * lib/fflush.c: Fix missing include.
935         Reported by Bruno Haible.
936
937 2007-04-23  Bruno Haible  <bruno@clisp.org>
938
939         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
940         Reported by Eric Blake.
941
942 2007-04-23  Bruno Haible  <bruno@clisp.org>
943
944         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
945
946 2007-04-23  Bruno Haible  <bruno@clisp.org>
947
948         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
949
950 2007-04-23  Bruno Haible  <bruno@clisp.org>
951
952         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
953         Needed on HP-UX 11.
954
955 2007-04-16  Eric Blake  <ebb9@byu.net>
956
957         Make fflush rely on fpurge.
958         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
959         open coding all variants.
960         * modules/fflush (Depends-on): Add fpurge and unistd.
961         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
962         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
963
964         Fix --with-tests compilation on cygwin.
965         * modules/argmatch-tests (Makefile.am): List gnulib library first
966         in LDADD.
967         * modules/argp-tests (Makefile.am): Likewise.
968         * modules/array-list-tests (Makefile.am): Likewise.
969         * modules/array-oset-tests (Makefile.am): Likewise.
970         * modules/avltree-list-tests (Makefile.am): Likewise.
971         * modules/avltree-oset-tests (Makefile.am): Likewise.
972         * modules/avltreehash-list-tests (Makefile.am): Likewise.
973         * modules/carray-list-tests (Makefile.am): Likewise.
974         * modules/dirname-tests (Makefile.am): Likewise.
975         * modules/frexp-tests (Makefile.am): Likewise.
976         * modules/isnanl-tests (Makefile.am): Likewise.
977         * modules/linked-list-tests (Makefile.am): Likewise.
978         * modules/linkedhash-list-tests (Makefile.am): Likewise.
979         * modules/lock-tests (Makefile.am): Likewise.
980         * modules/rbtree-list-tests (Makefile.am): Likewise.
981         * modules/rbtree-oset-tests (Makefile.am): Likewise.
982         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
983         * modules/tls-tests (Makefile.am): Likewise.
984         * modules/tsearch-tests (Makefile.am): Likewise.
985         * modules/xvasprintf-tests (Makefile.am): Likewise.
986
987         Fix fpurge for cygwin.
988         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
989         value.
990         * modules/fpurge-tests (Depends-on): Clean up trash.
991
992 2007-04-16  Simon Josefsson  <simon@josefsson.org>
993
994         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
995
996         * m4/autobuild.m4: Re-indent.
997
998 2007-04-13  Bruno Haible  <bruno@clisp.org>
999
1000         * modules/fpurge-tests: New file.
1001         * tests/test-fpurge.c: New file.
1002
1003         * modules/fpurge: New file.
1004         * lib/fpurge.h: New file.
1005         * lib/fpurge.c: New file.
1006         * m4/fpurge.m4: New file.
1007
1008 2007-04-13  Bruno Haible  <bruno@clisp.org>
1009
1010         * modules/fbufmode-tests: New file.
1011         * tests/test-fbufmode.c: New file.
1012
1013         * modules/fbufmode: New file.
1014         * lib/fbufmode.h: New file.
1015         * lib/fbufmode.c: New file.
1016         * m4/fbufmode.m4: New file.
1017
1018 2007-04-13  Bruno Haible  <bruno@clisp.org>
1019
1020         * modules/fwritable-tests: New file.
1021         * tests/test-fwritable.c: New file.
1022
1023         * modules/fwritable: New file.
1024         * lib/fwritable.h: New file.
1025         * lib/fwritable.c: New file.
1026         * m4/fwritable.m4: New file.
1027
1028 2007-04-13  Bruno Haible  <bruno@clisp.org>
1029
1030         * modules/freadable-tests: New file.
1031         * tests/test-freadable.c: New file.
1032
1033         * modules/freadable: New file.
1034         * lib/freadable.h: New file.
1035         * lib/freadable.c: New file.
1036         * m4/freadable.m4: New file.
1037
1038 2007-04-13  Bruno Haible  <bruno@clisp.org>
1039
1040         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
1041         MOSTLYCLEANFILES.
1042
1043 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
1044
1045         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
1046         gzip bootstrap.conf to avoid dragging in i18n machinery.
1047         (gnulib_tool_option): Use it.
1048
1049 2007-04-13  Bruno Haible  <bruno@clisp.org>
1050
1051         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
1052         %F directives.
1053         * tests/test-vasprintf-posix.c (test_function): Likewise.
1054         * tests/test-snprintf-posix.h (test_function): Likewise.
1055         * tests/test-sprintf-posix.h (test_function): Likewise.
1056         * tests/test-fprintf-posix.h (test_function): Likewise.
1057         * tests/test-printf-posix.h (test_function): Likewise.
1058         * tests/test-fprintf-posix.out: Likewise.
1059
1060 2007-04-13  Bruno Haible  <bruno@clisp.org>
1061
1062         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
1063         * modules/tls-tests (configure.ac): Likewise.
1064         Reported by Arto C. Nirkko <anirkko@insel.ch>.
1065
1066 2007-04-13  Bruno Haible  <bruno@clisp.org>
1067
1068         * lib/tls.c (glthread_tls_get): Fix return type.
1069         Patch by Arto C. Nirkko <anirkko@insel.ch>.
1070
1071 2007-04-12  Eric Blake  <ebb9@byu.net>
1072
1073         * modules/gettime (Depends-on): Remove gettime.
1074         Reported by Dmitry V. Levin.
1075
1076 2007-04-12  Bruno Haible  <bruno@clisp.org>
1077
1078         * modules/fflush (Include): Mention <stdio.h>.
1079         * modules/strtoimax (Include): Mention <inttypes.h>.
1080         * modules/strtoumax (Include): Likewise.
1081
1082 2007-04-12  Eric Blake  <ebb9@byu.net>
1083
1084         * .cvsignore: New file.
1085         * .gitignore: Likewise.
1086
1087 2007-04-12  Bruno Haible  <bruno@clisp.org>
1088
1089         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
1090         not before, since $(LDADD) often contains libgnu.a.
1091         * modules/striconv-tests (test_striconv_LDADD): Likewise.
1092         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
1093         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
1094         Needed on Cygwin.
1095
1096 2007-04-12  Eric Blake  <ebb9@byu.net>
1097
1098         Work around glibc's failure to flush stdin on fclose.
1099         * lib/closein.c (close_stdin): Flush stdin before closing.
1100
1101         Work around glibc's failure to reset seekable stdin on exit.
1102         * modules/closein: New module.
1103         * lib/closein.c: New file.
1104         * lib/closein.h: Likewise.
1105         * m4/closein.m4: Likewise.
1106         * MODULES.html.sh (File stream based Input/Output): Document it.
1107
1108 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1109
1110         * gnulib-tool: Rename generated 'autobuild' script to
1111         'do-autobuild' in --create-megatestdir output.
1112
1113         * doc/gnulib.texi (Build robot for gnulib): Fix.
1114
1115 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1116
1117         * modules/sysexits (Depends-on): Add absolute-header.
1118
1119 2007-04-12  Eric Blake  <ebb9@byu.net>
1120
1121         No need to preserve errno on success.
1122         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
1123         Reported by Bruno Haible.
1124
1125 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1126
1127         * MODULES.html.sh (Support for maintaining and releasing
1128         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
1129
1130 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1131
1132         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
1133
1134 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1135
1136         * modules/autobuild: New module.
1137
1138         * m4/autobuild.m4: New file.
1139
1140 2007-04-11  Bruno Haible  <bruno@clisp.org>
1141
1142         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
1143         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
1144         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
1145         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
1146         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1147         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1148         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1149         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1150         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1151         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1152         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
1153         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1154         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1155         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
1156         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1157         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1158         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
1159         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1160         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1161         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
1162         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1163         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1164         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
1165         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1166         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1167         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
1168         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1169         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1170         Reported by Eric Blake.
1171
1172 2007-04-11  Bruno Haible  <bruno@clisp.org>
1173
1174         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
1175
1176 2007-04-10  Bruno Haible  <bruno@clisp.org>
1177
1178         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
1179         for NaN and Infinity. Needed on FreeBSD 6.1.
1180         * tests/test-vasnprintf-posix.c (test_function): Undo last change
1181         regarding results for "%010a" of Infinity and NaN.
1182         * tests/test-vasprintf-posix.c (test_function): Likewise.
1183         * tests/test-snprintf-posix.h (test_function): Likewise.
1184         * tests/test-sprintf-posix.h (test_function): Likewise.
1185         * tests/test-fprintf-posix.h (test_function): Likewise.
1186         * tests/test-printf-posix.h (test_function): Likewise.
1187         * tests/test-fprintf-posix.out: Likewise.
1188
1189 2007-04-10  Bruno Haible  <bruno@clisp.org>
1190
1191         * modules/locale-tests: New file.
1192         * tests/test-locale.c: New file.
1193
1194         * modules/locale: New file.
1195         * lib/locale_.h: New file.
1196         * m4/locale_h.m4: New file.
1197
1198 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
1199             Bruno Haible  <bruno@clisp.org>
1200
1201         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
1202         be determined, test for availability of the copysignf, copysign,
1203         copysignl functions.
1204         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
1205         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
1206         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
1207
1208 2007-04-09  Eric Blake  <ebb9@byu.net>
1209
1210         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
1211         * modules/stdio (Makefile.am): Support fflush.
1212         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
1213         * modules/fflush: New file.
1214         * lib/fflush.c: Likewise.
1215         * m4/fflush.m4: Likewise.
1216         * modules/fflush-tests: New test.
1217         * tests/test-fflush.c: Likewise.
1218         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
1219
1220 2007-04-06  Bruno Haible  <bruno@clisp.org>
1221
1222         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
1223         (VASNPRINTF): Use signbit for faster determination whether to print a
1224         minus sign.
1225         * modules/vasnprintf (Files): Remove lib/float+.h.
1226         * modules/fprintf-posix (Depends-on): Add signbit.
1227         * modules/snprintf-posix (Depends-on): Likewise.
1228         * modules/sprintf-posix (Depends-on): Likewise.
1229         * modules/vasnprintf-posix (Depends-on): Likewise.
1230         * modules/vasprintf-posix (Depends-on): Likewise.
1231         * modules/vfprintf-posix (Depends-on): Likewise.
1232         * modules/vsnprintf-posix (Depends-on): Likewise.
1233         * modules/vsprintf-posix (Depends-on): Likewise.
1234
1235 2007-04-06  Bruno Haible  <bruno@clisp.org>
1236
1237         * tests/test-frexp.c (main): Test also the sign bit of zero results.
1238         * tests/test-frexpl.c (main): Likewise.
1239         * tests/test-ldexpl.c (main): Likewise.
1240         * modules/frexp-tests (Depends-on): Add signbit.
1241         * modules/frexpl-tests (Depdends-on): Likewise.
1242         * modules/ldexpl-tests (Depdends-on): Likewise.
1243
1244 2007-04-06  Bruno Haible  <bruno@clisp.org>
1245
1246         * modules/signbit-tests: New file.
1247         * tests/test-signbit.c: New file.
1248
1249         * modules/signbit: New file.
1250         * lib/signbitf.c: New file.
1251         * lib/signbitd.c: New file.
1252         * lib/signbitl.c: New file.
1253         * m4/signbit.m4: New file.
1254         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
1255         (signbit): New macro.
1256         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
1257         REPLACE_SIGNBIT.
1258         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
1259         REPLACE_FREXPL into math.h.
1260
1261 2007-04-06  Bruno Haible  <bruno@clisp.org>
1262
1263         * modules/isnanf-nolibm-tests: New file.
1264         * tests/test-isnanf.c: New file.
1265
1266         * modules/isnanf-nolibm: New file.
1267         * lib/isnanf.h: New file.
1268         * lib/isnanf.c: New file.
1269         * lib/isnan.c: Consider the USE_FLOAT macro.
1270         * m4/isnanf.m4: New file.
1271
1272 2007-04-06  Bruno Haible  <bruno@clisp.org>
1273
1274         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
1275         (Link): New section.
1276
1277         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
1278
1279 2007-04-06  Bruno Haible  <bruno@clisp.org>
1280
1281         Assume the 'long double' type.
1282         * m4/longdouble.m4: Remove file.
1283         * config/srclist.txt: Don't mention longdouble.m4.
1284         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
1285         * lib/float+.h: Likewise.
1286         * lib/frexp.c: Likewise.
1287         * lib/printf-args.h: Likewise.
1288         * lib/printf-args.c: Likewise.
1289         * lib/printf-frexp.c: Likewise.
1290         * lib/printf-parse.c: Likewise.
1291         * lib/vasnprintf.c: Likewise.
1292         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
1293         * m4/intl.m4: Likewise.
1294         * m4/isnanl.m4: Likewise.
1295         * m4/printf.m4: Likewise.
1296         * m4/printf-frexpl.m4: Likewise.
1297         * m4/vasnprintf.m4: Likewise.
1298         * modules/allocsa (Files): Remove m4/longdouble.m4.
1299         * modules/gettext (Files): Likewise.
1300         * modules/relocatable-prog-wrapper (Files): Likewise.
1301         * modules/vasnprintf (Files): Likewise.
1302         * modules/isnanl (Files): Likewise.
1303         (Include): Simplify.
1304         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
1305         (Include): Simplify.
1306         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
1307         (Include): Simplify.
1308         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
1309         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1310         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
1311         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1312         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1313         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1314         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
1315         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1316         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1317         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1318         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
1319         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1320         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
1321         * tests/test-isnanl.c: Likewise.
1322         * tests/test-snprintf-posix.h: Likewise.
1323         * tests/test-sprintf-posix.h: Likewise.
1324         * tests/test-vasnprintf-posix.c: Likewise.
1325         * tests/test-vasnprintf-posix2.c: Likewise.
1326         * tests/test-vasprintf-posix.c: Likewise.
1327
1328 2007-04-06  Bruno Haible  <bruno@clisp.org>
1329
1330         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
1331         * lib/math_.h [__DECC]: Include the overridden include file through
1332         #include_next, outside the double-inclusion guard.
1333         * lib/stdio_.h [__DECC]: Likewise.
1334         * lib/stdlib_.h [__DECC]: Likewise.
1335         * lib/string_.h [__DECC]: Likewise.
1336         * lib/time_.h [__DECC]: Likewise.
1337         * lib/wchar_.h [__DECC]: Likewise.
1338         * lib/wctype_.h [__DECC]: Likewise.
1339         * lib/inttypes_.h [__DECC]: Likewise.
1340         Reported by Albert Chin <china@thewrittenword.com> in
1341         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
1342
1343 2007-04-04  Eric Blake  <ebb9@byu.net>
1344
1345         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
1346         1.5.x.
1347
1348 2007-04-04  Bruno Haible  <bruno@clisp.org>
1349
1350         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
1351         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
1352
1353 2007-04-04  Bruno Haible  <bruno@clisp.org>
1354
1355         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
1356         results for "%010a" of Infinity and NaN.
1357         * tests/test-vasprintf-posix.c (test_function): Likewise.
1358         * tests/test-snprintf-posix.h (test_function): Likewise.
1359         * tests/test-sprintf-posix.h (test_function): Likewise.
1360         * tests/test-fprintf-posix.h (test_function): Remove these tests.
1361         * tests/test-printf-posix.h (test_function): Likewise.
1362         * tests/test-fprintf-posix.out: Update.
1363         Needed for FreeBSD 6.1.
1364
1365 2007-04-04  Bruno Haible  <bruno@clisp.org>
1366
1367         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
1368         directly used by the gnulib modules nor by gnulib-tool.
1369
1370 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1371
1372         * DEPENDENCIES: Give overall description of version dependency
1373         desirability.  Use more-typical names for apps.
1374         Add shell, coreutils, diffutils, grep, tar, gzip.
1375
1376 2007-04-04  Simon Josefsson  <simon@josefsson.org>
1377
1378         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
1379
1380 2007-04-04  Karl Berry  <karl@gnu.org>
1381
1382         * MODULES.html.sh (func_module): missing '.
1383
1384 2007-04-03  Bruno Haible  <bruno@clisp.org>
1385
1386         * modules/argmatch-tests (Makefile.am): New variable
1387         test_argmatch_LDADD.
1388         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
1389         * modules/array-list-tests (Makefile.am): New variable
1390         test_array_list_LDADD.
1391         * modules/array-oset-tests (Makefile.am): New variable
1392         test_array_oset_LDADD.
1393         * modules/avltree-list-tests (Makefile.am): New variable
1394         test_avltree_list_LDADD.
1395         * modules/avltree-oset-tests (Makefile.am): New variable
1396         test_avltree_oset_LDADD.
1397         * modules/avltreehash-list-tests (Makefile.am): New variable
1398         test_avltreehash_list_LDADD.
1399         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
1400         test_canonicalize_lgpl_LDADD.
1401         * modules/carray-list-tests (Makefile.am): New variable
1402         test_carray_list_LDADD.
1403         * modules/dirname-tests (Makefile.am): New variable
1404         test_dirname_LDADD.
1405         * modules/linked-list-tests (Makefile.am): New variable
1406         test_linked_list_LDADD.
1407         * modules/linkedhash-list-tests (Makefile.am): New variable
1408         test_linkedhash_list_LDADD.
1409         * modules/rbtree-list-tests (Makefile.am): New variable
1410         test_rbtree_list_LDADD.
1411         * modules/rbtree-oset-tests (Makefile.am): New variable
1412         test_rbtree_oset_LDADD.
1413         * modules/rbtreehash-list-tests (Makefile.am): New variable
1414         test_rbtreehash_list_LDADD.
1415         * modules/xvasprintf-tests (Makefile.am): New variable
1416         test_xvasprintf_LDADD.
1417         Reported by Eric Blake.
1418
1419 2007-04-03  Eric Blake  <ebb9@byu.net>
1420
1421         * DEPENDENCIES: Weaken m4 requirements.
1422
1423 2007-04-03  Bruno Haible  <bruno@clisp.org>
1424
1425         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
1426         * modules/isnanl-tests (configure.ac): Likewise.
1427
1428 2007-04-03  Ben Pfaff  <blp@gnu.org>
1429
1430         * modules/iconv_open: Add $(srcdir)/ to source directory
1431         references in Makefile fragments that call gperf, to fix VPATH
1432         builds.
1433
1434 2007-04-03  Bruno Haible  <bruno@clisp.org>
1435
1436         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
1437         * lib/ldexpl.c: Undo last change.
1438
1439 2007-04-03  Bruno Haible  <bruno@clisp.org>
1440
1441         * modules/printf-frexpl (Depends-on): Undo last change.
1442         (Files): Add m4/ldexpl.m4.
1443
1444 2007-04-03  Bruno Haible  <bruno@clisp.org>
1445
1446         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
1447         * modules/isnanl (Link): New section.
1448
1449         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
1450         * modules/frexp (Link): New section.
1451
1452         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
1453         * modules/frexpl (Link): New section.
1454
1455         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
1456         * modules/ldexpl (Link): New section.
1457
1458 2007-04-03  Bruno Haible  <bruno@clisp.org>
1459
1460         * modules/TEMPLATE-EXTENDED: New file.
1461         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
1462
1463 2007-04-03  Bruno Haible  <bruno@clisp.org>
1464
1465         * DEPENDENCIES: New file.
1466         Suggested by Simon Josefsson.
1467
1468 2007-04-03  Bruno Haible  <bruno@clisp.org>
1469
1470         * doc/gnulib.texi: Escape @.
1471
1472 2007-04-03  James Youngman  <jay@gnu.org>
1473         and Paul Eggert  <eggert@cs.ucla.edu>
1474
1475         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
1476         birthtime on all systems that have birthtime, not just those which
1477         use st_birthtimensec rather than st_birthtim.  Putting zero in
1478         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
1479         that the birth time is not available for files on an NFS mount.
1480
1481 2007-04-03  Simon Josefsson  <simon@josefsson.org>
1482
1483         * modules/memxor: Move back from crypto/, suggested by Bruno.
1484         * modules/crypto/hmac-sha1: Fix memxor dependency.
1485
1486         * modules/crypto/gc: Moved from ../.
1487
1488 2007-04-02  Eric Blake  <ebb9@byu.net>
1489
1490         * lib/ldexpl.c (includes): Avoid libm.
1491
1492         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
1493
1494 2007-04-02  Bruno Haible  <bruno@clisp.org>
1495
1496         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
1497         on IRIX.
1498
1499 2007-04-02  Bruno Haible  <bruno@clisp.org>
1500
1501         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
1502         x86 or x86_64 platforms running MacOS X.
1503         Reported by Ryan Schmidt <@ryandesign.com>.
1504
1505 2007-04-02  Bruno Haible  <bruno@clisp.org>
1506
1507         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
1508         i386.
1509
1510 2007-04-01  Simon Josefsson  <simon@josefsson.org>
1511
1512         * modules/crypto/arcfour: Moved from ../.
1513         * modules/crypto/arcfour-tests: Moved from ../.
1514         * modules/crypto/arctwo: Moved from ../.
1515         * modules/crypto/arctwo-tests: Moved from ../.
1516         * modules/crypto/des: Moved from ../.
1517         * modules/crypto/des-tests: Moved from ../.
1518         * modules/crypto/gc-arcfour: Moved from ../.
1519         * modules/crypto/gc-arcfour-tests: Moved from ../.
1520         * modules/crypto/gc-arctwo: Moved from ../.
1521         * modules/crypto/gc-arctwo-tests: Moved from ../.
1522         * modules/crypto/gc-des: Moved from ../.
1523         * modules/crypto/gc-des-tests: Moved from ../.
1524         * modules/crypto/gc-hmac-md5: Moved from ../.
1525         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
1526         * modules/crypto/gc-hmac-sha1: Moved from ../.
1527         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
1528         * modules/crypto/gc-md2: Moved from ../.
1529         * modules/crypto/gc-md2-tests: Moved from ../.
1530         * modules/crypto/gc-md4: Moved from ../.
1531         * modules/crypto/gc-md4-tests: Moved from ../.
1532         * modules/crypto/gc-md5: Moved from ../.
1533         * modules/crypto/gc-md5-tests: Moved from ../.
1534         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
1535         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
1536         * modules/crypto/gc-random: Moved from ../.
1537         * modules/crypto/gc-rijndael: Moved from ../.
1538         * modules/crypto/gc-rijndael-tests: Moved from ../.
1539         * modules/crypto/gc-sha1: Moved from ../.
1540         * modules/crypto/gc-sha1-tests: Moved from ../.
1541         * modules/crypto/gc-tests: Moved from ../.
1542         * modules/crypto/hmac-md5: Moved from ../.
1543         * modules/crypto/hmac-md5-tests: Moved from ../.
1544         * modules/crypto/hmac-sha1: Moved from ../.
1545         * modules/crypto/hmac-sha1-tests: Moved from ../.
1546         * modules/crypto/md2: Moved from ../.
1547         * modules/crypto/md2-tests: Moved from ../.
1548         * modules/crypto/md4: Moved from ../.
1549         * modules/crypto/md4-tests: Moved from ../.
1550         * modules/crypto/md5: Moved from ../.
1551         * modules/crypto/md5-tests: Moved from ../.
1552         * modules/crypto/memxor: Moved from ../.
1553         * modules/crypto/rijndael: Moved from ../.
1554         * modules/crypto/rijndael-tests: Moved from ../.
1555         * modules/crypto/sha1: Moved from ../.
1556
1557 2007-03-30  James Youngman  <jay@gnu.org>
1558
1559         * tests/test-stat-time.c (prepare_test): use chmod() rather than
1560         rename() to change the ctime of a file (because ctime is unaffected
1561         by rename on jfs2 on AIX 5.1).
1562         (main): Start by doing cleanup, in case a previous run failed leaving
1563         test files behind.
1564
1565 2007-03-31  Bruno Haible  <bruno@clisp.org>
1566
1567         Support old proprietary implementations of iconv.
1568         * modules/iconv_open: New file.
1569         * lib/iconv_.h: New file.
1570         * m4/iconv_h.m4: New file.
1571         * lib/iconv_open.c: New file.
1572         * lib/iconv_open-aix.gperf: New file.
1573         * lib/iconv_open-hpux.gperf: New file.
1574         * lib/iconv_open-irix.gperf: New file.
1575         * lib/iconv_open-osf.gperf: New file.
1576         * m4/iconv_open.m4: New file.
1577         * modules/linebreak (Depends-on): Add iconv_open.
1578         * modules/striconv (Depends-on): Likewise.
1579         * modules/striconveh (Depends-on): Likewise.
1580         * modules/unicodeio (Depends-on): Likewise.
1581         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
1582         (iconv_t)(-1).
1583         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
1584         conversion if cd is (iconv_t)(-1).
1585         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
1586         is not possible.
1587
1588 2007-03-31  Bruno Haible  <bruno@clisp.org>
1589
1590         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
1591         work on Solaris either. Protect also second use of "autodetect_jp".
1592
1593 2007-03-31  Bruno Haible  <bruno@clisp.org>
1594
1595         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
1596         the function is not present.
1597
1598 2007-03-31  Bruno Haible  <bruno@clisp.org>
1599
1600         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
1601         the function is not present.
1602
1603 2007-03-31  Bruno Haible  <bruno@clisp.org>
1604
1605         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
1606         a bug in HP-UX iconv_open().
1607
1608 2007-03-31  Bruno Haible  <bruno@clisp.org>
1609
1610         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
1611         (Mathematics <math.h>): New section, add fpieee.
1612         (Input/output <stdio.h>): Add fseterr.
1613         (Mathematics <math.h>): New section, add printf-frexp.
1614         (Container data structures): Add sublist.
1615         (Core language properties): Add fpucw, inline.
1616         (Functions for greatest-width integer types <inttypes.h>): Add
1617         imaxabs, imaxdiv, inttypes.
1618         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
1619         isnanl-nolibm, ldexp.
1620         (Mathematics <math.h>): New section, add printf-frexpl.
1621         (Support for systems lacking POSIX:2001): Add fprintf-posix,
1622         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
1623         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
1624         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
1625         (Unicode string functions): Add unistr/u*-mbtoucr.
1626         (Java): Add javacomp-script, javaexec-script.
1627         (C#): Add csharpcomp-script, csharpexec-script.
1628         (Support for building libraries and executables): Add havelib,
1629         relocatable-*.
1630         (Support for maintaining and releasing projects): Renamed from
1631         'Support for maintaining and release projects'. Add announce-gen.
1632
1633 2007-03-31  Bruno Haible  <bruno@clisp.org>
1634
1635         * README: Talk primarily about git.
1636         (git and CVS): Renamed from CVS.
1637         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
1638         gnulib is available through git.
1639         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
1640
1641 2007-03-30  Bruno Haible  <bruno@clisp.org>
1642
1643         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
1644         * lib/poll_.h: Likewise.
1645         * lib/stat_.h: Likewise.
1646         * lib/sys_time_.h: Likewise.
1647         * lib/sysexit_.h: Likewise.
1648         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
1649         * lib/stdbool_.h: Likewise.
1650         * lib/byteswap_.h: Add double-inclusion guard.
1651
1652 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
1653
1654         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
1655
1656 2007-03-30  Karl Berry  <karl@gnu.org>
1657
1658         * config/srclist-update: double space after USA in the license
1659         substitution, since that's how it's usually (?) written.
1660
1661 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1662
1663         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
1664         reported by Bruno Haible.
1665
1666 2007-03-29  Bruno Haible  <bruno@clisp.org>
1667
1668         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
1669         a bug in AIX iconv().
1670
1671 2007-03-29  Bruno Haible  <bruno@clisp.org>
1672
1673         * modules/ldexpl-tests: New file.
1674         * tests/test-ldexpl.c: New file.
1675
1676 2007-03-29  Bruno Haible  <bruno@clisp.org>
1677
1678         * lib/ldexpl.c: Include fpucw.h.
1679         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
1680         multiplication.
1681         * modules/ldexpl (Depends-on): Add fpucw.
1682
1683 2007-03-29  Bruno Haible  <bruno@clisp.org>
1684
1685         * modules/ldexpl: New file.
1686         * m4/ldexpl.m4: New file.
1687         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
1688         set.
1689         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
1690         REPLACE_LDEXPL.
1691         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
1692         REPLACE_LDEXPL.
1693         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
1694         gl_FUNC_LDEXPL_WORKS.
1695         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
1696         * modules/mathl (Files): Remove lib/ldexpl.c.
1697         (Depends-on): Add ldexpl.
1698
1699 2007-03-29  Bruno Haible  <bruno@clisp.org>
1700
1701         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
1702
1703 2007-03-29  Bruno Haible  <bruno@clisp.org>
1704
1705         * tests/test-striconveh.c (main): Don't assume that a direct conversion
1706         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
1707         and possibly also HP-UX.
1708         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
1709         work on AIX, IRIX, HP-UX, OSF/1.
1710         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
1711         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
1712         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
1713         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
1714         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
1715         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
1716
1717 2007-03-29  Bruno Haible  <bruno@clisp.org>
1718
1719         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
1720
1721 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1722
1723         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
1724         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
1725
1726 2007-03-29  Eric Blake  <ebb9@byu.net>
1727
1728         * lib/acl-internal.h: Remove redundant include.
1729         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
1730         Cygwin when a file is locked.
1731
1732 2007-03-29  Bruno Haible  <bruno@clisp.org>
1733
1734         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
1735         file.
1736         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
1737
1738 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1739
1740         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
1741         try to remove a parent directory if the child couldn't be removed
1742         (except for the first rmdir, which could fail because the child
1743         doesn't exist).  Problem reported by Jeff Blaine in
1744         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
1745
1746 2007-03-28  Bruno Haible  <bruno@clisp.org>
1747
1748         * lib/striconveh.c (utf8conv_carefully): New function.
1749         (mem_cd_iconveh_internal): Invoke it.
1750
1751 2007-03-28  Bruno Haible  <bruno@clisp.org>
1752
1753         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
1754         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
1755         input.
1756         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
1757         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
1758         unistr/u8-uctomb.
1759
1760 2007-03-28  Bruno Haible  <bruno@clisp.org>
1761
1762         * modules/unistr/u8-mbtoucr: New file.
1763         * lib/unistr/u8-mbtoucr.c: New file.
1764         * modules/unistr/u16-mbtoucr: New file.
1765         * lib/unistr/u16-mbtoucr.c: New file.
1766         * modules/unistr/u16-mbtoucr: New file.
1767         * lib/unistr/u16-mbtoucr.c: New file.
1768         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
1769
1770 2007-03-27  Simon Josefsson  <simon@josefsson.org>
1771             Bruno Haible  <bruno@clisp.org>
1772
1773         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
1774         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
1775         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
1776
1777         * m4/stdio_h.m4: Add stubs for vasprintf too.
1778
1779         * modules/stdio: Support vasprintf in sed command.
1780
1781         * modules/vasprintf: Depend on stdio for prototypes.  Remove
1782         vasprintf.h.  Add stdio module indicator.
1783
1784         * lib/stdio_.h: Declare asprintf and vasprintf, based on
1785         vasprintf.h.
1786
1787         * lib/vasprintf.h: File removed.
1788
1789         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
1790         * lib/vasprintf.c: Ditto.
1791         * lib/xvasprintf.c: Ditto.
1792         * tests/test-vasprintf-posix.c: Ditto.
1793         * tests/test-vasprintf.c: Ditto.
1794
1795 2007-03-27  Bruno Haible  <bruno@clisp.org>
1796
1797         Make vasnprintf multithread-safe.
1798         * lib/vasnprintf.c (decimal_point_char): New function.
1799         (VASNPRINTF): Use it.
1800         Suggested by Simon Josefsson.
1801
1802 2007-03-27  Eric Blake  <ebb9@byu.net>
1803
1804         Support sub-second birthtime on cygwin.
1805         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
1806         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
1807         (get_stat_birthtime): Also work with st_birthtim.
1808
1809 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
1810
1811         * lib/stat-time.h (USE_BIRTHTIME): Remove.
1812         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
1813         (get_stat_birthtime_ns): Do not try to use "spare" fields.
1814         (get_stat_birthtime_ns): Simplify compile-time tests.
1815         (get_stat_birthtime): Change the API to look like
1816         get_stat_mtime etc., except return a negative tv_nsec on error.
1817         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
1818         Don't check for "spare" fields.
1819         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
1820         or for struct stat.st_birthtime, as these tests aren't used.
1821         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
1822
1823 2007-03-27  Bruno Haible  <bruno@clisp.org>
1824
1825         * lib/stat-time.h: Include <sys/stat.h>.
1826
1827 2007-03-27  James Youngman  <jay@gnu.org>
1828
1829         * lib/stat-time.h (get_stat_birthtime): New function for
1830           retrieving st_birthtime as provided by UFS2 (hence *BSD).
1831         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
1832           and its variants.
1833         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
1834         * modules/stat-time-test: New file.
1835         * tests/test-stat-time.c: New test, devised by Bruno Haible.
1836
1837 2007-03-26  Bruno Haible  <bruno@clisp.org>
1838
1839         Better support of signalling NaNs.
1840         * lib/atanl.c: Include isnanl.h.
1841         (atanl): Perform test for NaN at the beginning of the function and
1842         through a call to isnanl.
1843         * lib/cosl.c: Include isnanl.h.
1844         (cosl): Perform test for NaN at the beginning of the function and
1845         through a call to isnanl.
1846         * lib/ldexpl.c: Include isnanl.h.
1847         (ldexpl): Perform test for NaN through a call to isnanl.
1848         * lib/logl.c: Include isnanl.h.
1849         (logl): Perform test for NaN at the beginning of the function and
1850         through a call to isnanl.
1851         * lib/sinl.c: Include isnanl.h.
1852         (sinl): Perform test for NaN at the beginning of the function and
1853         through a call to isnanl.
1854         * lib/sqrtl.c: Include isnanl.h.
1855         (sqrtl): Perform test for NaN at the beginning of the function and
1856         through a call to isnanl.
1857         * lib/tanl.c: Include isnanl.h.
1858         (tanl): Perform test for NaN at the beginning of the function and
1859         through a call to isnanl.
1860         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
1861         * modules/mathl (Depends-on): Add isnanl.
1862
1863 2007-03-26  Eric Blake  <ebb9@byu.net>
1864
1865         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
1866         regression in logic sense of previous patch.
1867
1868 2007-03-26  Bruno Haible  <bruno@clisp.org>
1869
1870         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
1871         unportable shell command "if ! ...".
1872         Reported by Ralf Wildenhues.
1873
1874 2007-03-25  Bruno Haible  <bruno@clisp.org>
1875
1876         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
1877         <sysexits.h> file, and only add EX_CONFIG.
1878         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
1879         absolute file name and whether it is sufficient. Substitute also
1880         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
1881         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
1882         ABSOLUTE_SYSEXITS_H into sysexits.h.
1883
1884 2007-03-25  Bruno Haible  <bruno@clisp.org>
1885
1886         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
1887         hints is NULL.
1888
1889 2007-03-25  Bruno Haible  <bruno@clisp.org>
1890
1891         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
1892         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
1893
1894 2007-03-25  Bruno Haible  <bruno@clisp.org>
1895
1896         * lib/vasnprintf.c: Include langinfo.h.
1897         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
1898         multithread-safe.
1899         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
1900         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
1901         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1902         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1903         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1904         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1905         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1906         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
1907         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1908         Reported by Simon Josefsson.
1909
1910 2007-03-25  Bruno Haible  <bruno@clisp.org>
1911
1912         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
1913         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
1914         * modules/vasnprintf (Depends-on): Add stdint.
1915
1916 2007-03-25  Bruno Haible  <bruno@clisp.org>
1917
1918         * modules/fpieee: New file.
1919         * m4/fpieee.m4: New file.
1920         * modules/isnan-nolibm (Depends-on): Add fpieee.
1921         * modules/isnanl-nolibm (Depends-on): Add fpieee.
1922         * modules/isnanl (Depends-on): Add fpieee.
1923
1924 2007-03-25  Bruno Haible  <bruno@clisp.org>
1925
1926         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
1927
1928 2007-03-25  Bruno Haible  <bruno@clisp.org>
1929
1930         Avoid test failures on IRIX 6.5.
1931         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
1932         (main): Use it.
1933         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
1934         macros.
1935         (main): Use them.
1936
1937 2007-03-25  Bruno Haible  <bruno@clisp.org>
1938
1939         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
1940         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
1941         exists but doesn't work.
1942         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
1943         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
1944         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
1945         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
1946
1947 2007-03-25  Bruno Haible  <bruno@clisp.org>
1948
1949         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
1950         returns inf. Needed on IRIX 6.5.
1951
1952 2007-03-25  Bruno Haible  <bruno@clisp.org>
1953
1954         * tests/test-frexpl.c: Include isnanl-nolibm.h.
1955         (main): Use isnanl instead of x != x idiom.
1956         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
1957
1958         * tests/test-frexp.c: Include isnan.h.
1959         (main): Use isnan instead of x != x idiom.
1960         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
1961
1962 2007-03-25  Bruno Haible  <bruno@clisp.org>
1963
1964         * tests/test-frexp.c (NaN): New function/macro.
1965         (main): Use it instead of 0.0 / 0.0.
1966         * tests/test-isnan.c (NaN): New function/macro.
1967         (main): Use it instead of 0.0 / 0.0.
1968         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
1969         (test_function): Use it instead of 0.0 / 0.0.
1970         * tests/test-vasprintf-posix.c (NaN): New function/macro.
1971         (test_function): Use it instead of 0.0 / 0.0.
1972         * tests/test-snprintf-posix.h (NaN): New function/macro.
1973         (test_function): Use it instead of 0.0 / 0.0.
1974         * tests/test-sprintf-posix.h (NaN): New function/macro.
1975         (test_function): Use it instead of 0.0 / 0.0.
1976         * tests/test-fprintf-posix.h (NaN): New function/macro.
1977         (test_function): Use it instead of 0.0 / 0.0.
1978         * tests/test-printf-posix.h (NaN): New function/macro.
1979         (test_function): Use it instead of 0.0 / 0.0.
1980
1981         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
1982
1983 2007-03-25  Bruno Haible  <bruno@clisp.org>
1984
1985         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
1986
1987 2007-03-25  Bruno Haible  <bruno@clisp.org>
1988
1989         * lib/regexec.c (merge_state_with_log): Make static.
1990
1991 2007-03-25  Bruno Haible  <bruno@clisp.org>
1992
1993         * lib/trigl.c (kernel_rem_pio2): Make static.
1994
1995 2007-03-25  Bruno Haible  <bruno@clisp.org>
1996
1997         * lib/sincosl.c (sincosl_table): Make static.
1998
1999 2007-03-25  Bruno Haible  <bruno@clisp.org>
2000
2001         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
2002         if the compiler does not support C99.
2003
2004 2007-03-25  Bruno Haible  <bruno@clisp.org>
2005
2006         * modules/time (Makefile.am): Ensure all rule action lines start with a
2007         tab.
2008
2009 2007-03-24  Bruno Haible  <bruno@clisp.org>
2010
2011         * modules/tsearch-tests: New file.
2012         * tests/test-tsearch.sh: New file.
2013         * tests/test-tsearch.c: New file, mostly copied from glibc.
2014
2015         * modules/search-tests: New file.
2016         * tests/test-search.c: New file.
2017
2018         * modules/search: New file.
2019         * lib/search_.h: New file, incorporating lib/tsearch.h.
2020         * m4/search_h.m4: New file.
2021         * lib/tsearch.h: Remove file.
2022         * lib/tsearch.c: Include search.h instead of tsearch.h.
2023         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
2024         HAVE_TSEARCH.
2025         * modules/tsearch (Files): Remove lib/tsearch.h.
2026         (Depends-on): Add search.
2027         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
2028         (Include): Change tsearch.h into search.h.
2029
2030 2007-03-24  Bruno Haible  <bruno@clisp.org>
2031
2032         * modules/fpucw: New file.
2033         * lib/fpucw.h: New file.
2034         * lib/frexp.c: Include fpucw.h.
2035         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2036         (FUNC): Use them.
2037         * lib/printf-frexp.c: Include fpucw.h.
2038         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2039         (FUNC): Use them.
2040         * lib/vasnprintf.c: Include fpucw.h.
2041         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
2042         'long double' calculations.
2043         * tests/test-frexpl.c: Include fpucw.h.
2044         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2045         * tests/test-printf-frexpl.c: Include fpucw.h.
2046         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2047         * modules/frexpl (Depends-on): Add fpucw.
2048         * modules/printf-frexpl (Depends-on): Likewise.
2049         * modules/fprintf-posix (Depends-on): Likewise.
2050         * modules/snprintf-posix (Depends-on): Likewise.
2051         * modules/sprintf-posix (Depends-on): Likewise.
2052         * modules/vasnprintf-posix (Depends-on): Likewise.
2053         * modules/vasprintf-posix (Depends-on): Likewise.
2054         * modules/vfprintf-posix (Depends-on): Likewise.
2055         * modules/vsnprintf-posix (Depends-on): Likewise.
2056         * modules/vsprintf-posix (Depends-on): Likewise.
2057         * modules/frexpl-tests (Depends-on): Likewise.
2058         * modules/printf-frexpl-tests (Depends-on): Likewise.
2059
2060 2007-03-24  Bruno Haible  <bruno@clisp.org>
2061
2062         * lib/float+.h: New file.
2063         * lib/isnan.c: Include float+.h.
2064         (SIZE): New macro.
2065         (FUNC): Compare only SIZE bytes of the value.
2066         * lib/vasnprintf.c: Include float+.h.
2067         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
2068         SIZEOF_LDBL or SIZEOF_DBL bytes.
2069         * modules/isnan-nolibm (Files): Add lib/float+.h.
2070         * modules/isnanl-nolibm (Files): Add lib/float+.h.
2071         * modules/isnanl (Files): Add lib/float+.h.
2072         * modules/vasnprintf (Files): Add lib/float+.h.
2073
2074 2007-03-24  Bruno Haible  <bruno@clisp.org>
2075
2076         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
2077         include isnanl-nolibm.h.
2078
2079 2007-03-24  Bruno Haible  <bruno@clisp.org>
2080
2081         * tests/test-read-file.c (main): Don't produce spurious output for
2082         expected situations. Make the test fail if it encountered unexpected
2083         results.
2084
2085 2007-03-24  Bruno Haible  <bruno@clisp.org>
2086
2087         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
2088         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
2089
2090 2007-03-24  Bruno Haible  <bruno@clisp.org>
2091
2092         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
2093
2094 2007-03-24  Bruno Haible  <bruno@clisp.org>
2095
2096         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
2097         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
2098
2099         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
2100         * modules/utf8-ucs4: Turn into a symbolic link to module
2101         unistr/u8-mbtouc.
2102
2103         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
2104         utf8-ucs4-unsafe.
2105         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
2106         unistr/u8-mbtouc-unsafe.
2107
2108         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
2109         * modules/utf16-ucs4: Turn into a symbolic link to module
2110         unistr/u16-mbtouc.
2111
2112         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
2113         utf16-ucs4-unsafe.
2114         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
2115         unistr/u16-mbtouc-unsafe.
2116
2117         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
2118         * modules/ucs4-utf8: Turn into a symbolic link to module
2119         unistr/u8-ubtomb.
2120
2121         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
2122         * modules/ucs4-utf16: Turn into a symbolic link to module
2123         unistr/u16-ubtomb.
2124
2125 2007-03-24  Bruno Haible  <bruno@clisp.org>
2126
2127         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
2128         Enable the function only if HAVE_INLINE.
2129         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
2130         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2131         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
2132         Enable the function only if HAVE_INLINE.
2133         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
2134         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2135         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
2136         Enable the function only if HAVE_INLINE.
2137         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
2138         Enable the function only if HAVE_INLINE.
2139         * modules/utf8-ucs4: Update.
2140         * modules/utf8-ucs4-unsafe: Update.
2141         * modules/utf16-ucs4: Update.
2142         * modules/utf16-ucs4-unsafe: Update.
2143         * modules/ucs4-utf8: Update.
2144         * modules/ucs4-utf16: Update.
2145
2146 2007-03-24  Bruno Haible  <bruno@clisp.org>
2147
2148         * lib/utf8-ucs4.h: Remove file.
2149         * lib/utf8-ucs4-unsafe.h: Remove file.
2150         * lib/utf16-ucs4.h: Remove file.
2151         * lib/utf16-ucs4-unsafe.h: Remove file.
2152         * lib/ucs4-utf8.h: Remove file.
2153         * lib/ucs4-utf16.h: Remove file.
2154         * lib/unistr.h: Include their previous contents.
2155         * m4/utf-ucs4.m4: Remove file.
2156         * m4/ucs4-utf.m4: Remove file.
2157         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
2158         (Depends-on): Add unistr/base.
2159         (configure.ac): Remove gl_UTF_UCS4.
2160         (Makefile.am): Update.
2161         (Include): Change to unistr.h.
2162         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
2163         (Depends-on): Add unistr/base.
2164         (configure.ac): Remove gl_UTF_UCS4.
2165         (Makefile.am): Update.
2166         (Include): Change to unistr.h.
2167         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
2168         (Depends-on): Add unistr/base.
2169         (configure.ac): Remove gl_UTF_UCS4.
2170         (Makefile.am): Update.
2171         (Include): Change to unistr.h.
2172         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
2173         (Depends-on): Add unistr/base.
2174         (configure.ac): Remove gl_UTF_UCS4.
2175         (Makefile.am): Update.
2176         (Include): Change to unistr.h.
2177         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
2178         (Depends-on): Add unistr/base.
2179         (configure.ac): Remove gl_UCS4_UTF.
2180         (Makefile.am): Update.
2181         (Include): Change to unistr.h.
2182         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
2183         (Depends-on): Add unistr/base.
2184         (configure.ac): Remove gl_UCS4_UTF.
2185         (Makefile.am): Update.
2186         (Include): Change to unistr.h.
2187         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
2188         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
2189         utf8-ucs4-unsafe.h.
2190         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
2191         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
2192         utf16-ucs4-unsafe.h.
2193         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
2194         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
2195         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
2196         * lib/unistr/u8-strchr.c: Likewise.
2197         * lib/unistr/u8-strrchr.c: Likewise.
2198         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
2199         * lib/unistr/u16-strchr.c: Likewise.
2200         * lib/unistr/u16-strrchr.c: Likewise.
2201         * lib/striconveh.c: Update.
2202         * lib/linebreak.c: Update.
2203
2204 2007-03-24  Bruno Haible  <bruno@clisp.org>
2205
2206         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
2207         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
2208
2209 2007-03-22  Bruno Haible  <bruno@clisp.org>
2210
2211         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
2212
2213 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
2214
2215         * MODULES.html.sh (File system functions): New module write-any-file.
2216         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
2217         * m4/write-any-file.m4: New files.
2218
2219 2007-03-23  Eric Blake  <ebb9@byu.net>
2220
2221         * gnulib-tool: Rearrange space-tab sequences, since some editors
2222         like to eat them.
2223
2224 2007-03-23  Eric Blake  <ebb9@byu.net>
2225
2226         * lib/version-etc.c (version_etc_va): Update license wording to
2227         be more concise.  Recommended by Richard Stallman.
2228
2229 2007-03-22  Bruno Haible  <bruno@clisp.org>
2230
2231         * lib/poll.c (MSG_PEEK): New fallback definition.
2232
2233 2007-03-22  Bruno Haible  <bruno@clisp.org>
2234
2235         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
2236         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
2237         (main): Update.
2238         Fixes a compilation error on BeOS.
2239
2240 2007-03-22  Bruno Haible  <bruno@clisp.org>
2241
2242         * modules/frexpl-tests: New file.
2243         * tests/test-frexpl.c: New file.
2244
2245         * modules/frexpl: New file.
2246         * m4/frexpl.m4: New file.
2247         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
2248         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
2249         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
2250         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
2251         (Depends-on): Add frexpl. Remove isnanl-nolibm.
2252         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
2253
2254 2007-03-22  Bruno Haible  <bruno@clisp.org>
2255
2256         * lib/frexpl.c: Share code with lib/frexp.c.
2257         * modules/mathl (Files): Add lib/frexp.c.
2258         (Depends-on): Add isnanl-nolibm.
2259
2260 2007-03-22  Bruno Haible  <bruno@clisp.org>
2261
2262         * modules/printf-frexp (Files): Add m4/frexp.m4.
2263         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
2264         only if the found frexp function actually works.
2265
2266 2007-03-22  Bruno Haible  <bruno@clisp.org>
2267
2268         * lib/frexp.c: Remove older implementation that uses divisions.
2269
2270 2007-03-21  Bruno Haible  <bruno@clisp.org>
2271
2272         * modules/frexp-tests: New file.
2273         * tests/test-frexp.c: New file.
2274
2275         * modules/frexp: New file.
2276         * lib/frexp.c: New file.
2277         * m4/frexp.m4: New file.
2278         * lib/math_.h (frexp): New declaration.
2279         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
2280         REPLACE_FREXP.
2281         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
2282
2283 2007-03-21  Bruno Haible  <bruno@clisp.org>
2284
2285         * modules/isnanl-tests: New file.
2286         * tests/test-isnanl.c: New file.
2287
2288         * modules/isnanl: New file.
2289         * lib/isnanl.h: New file.
2290         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
2291         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
2292         gl_FUNC_ISNANL_WORKS.
2293         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
2294         New macros.
2295
2296 2007-03-21  Bruno Haible  <bruno@clisp.org>
2297
2298         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
2299         lib/isnanl.h.
2300         (Include): Update.
2301         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
2302         * lib/vasnprintf.c: Update.
2303         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
2304         tests/test-isnanl.h, remove tests/test-isnanl.c.
2305         (Makefile.am): Update.
2306         * tests/test-isnanl-nolibm.c: New file.
2307         * tests/test-isnanl.h: New file.
2308         * tests/test-isnanl.c: Remove file.
2309
2310 2007-03-21  Jim Meyering  <jim@meyering.net>
2311
2312         When trying to open ".", treat ESTALE like EACCES.
2313         * lib/savewd.c (savewd_save): Resort to forking not just upon
2314         failure with EACCES, but also when errno is ESTALE.
2315
2316 2007-03-20  Bruno Haible  <bruno@clisp.org>
2317
2318         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
2319         Needed on AIX 5.1. Reported by Matthew Woehlke.
2320
2321 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2322
2323         Suggestions by Bruno Haible:
2324         * lib/acl-internal.h: Include "gettext.h" rather than rolling
2325         our own.
2326         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
2327         * modules/acl (Depends-on): Add gettext.
2328
2329 2007-03-19  Bruno Haible  <bruno@clisp.org>
2330
2331         * modules/iconvme: Remove file.
2332         * lib/iconvme.h: Remove file.
2333         * lib/iconvme.c: Remove file.
2334         * m4/iconvme.m4: Remove file.
2335
2336 2007-03-19  Bruno Haible  <bruno@clisp.org>
2337
2338         * doc/relocatable-maint.texi: Break long shell script line.
2339         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2340
2341 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2342
2343         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
2344         handle file_has_acl.
2345         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
2346         * lib/acl.c: Move header inclusions and related macro defns into
2347         lib/acl-internal.h.
2348         (S_ISLNK): Remove defn, since that's now done for us.
2349         (file_has_acl): Move to lib/file-has-acl.c.
2350         Call acl_trivial if available.  This is the crucial part of the fix.
2351         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
2352         shared within the library.  Rewrite a bit, partly to make it compatible
2353         with the GNU coding style.
2354         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
2355         Remove unnecessary double-quotes.
2356         Don't test for acl_to_text; the build will catch that.
2357         Replace acl_entries if it doesn't exist and it is needed.
2358         Check for -lsec and acl_trivial (as used on Solaris 10).
2359         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
2360         lib/file-has-acl.c.
2361         (Depends-on): Add sys_stat, for S_ISLNK.
2362
2363 2007-03-19  Ben Pfaff  <blp@gnu.org>
2364
2365         * doc/gnulib.texi: Fix typos.
2366         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2367
2368 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2369
2370         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
2371         If size is zero here, buf must be zero.
2372
2373 2007-03-19  Simon Josefsson  <simon@josefsson.org>
2374
2375         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
2376         <bruno@clisp.org>.
2377
2378 2007-03-18  Bruno Haible  <bruno@clisp.org>
2379
2380         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
2381         Suggested by Eric Blake.
2382
2383 2007-03-18  Ben Pfaff  <blp@gnu.org>
2384
2385         * doc/relocatable.texi: Recommend using as prefix a directory
2386         that does not exist and will never be created.  Based on
2387         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
2388         and others.
2389
2390 2007-03-17  Bruno Haible  <bruno@clisp.org>
2391
2392         * lib/fchownat.c: Include lchown.h.
2393
2394 2007-03-17  Bruno Haible  <bruno@clisp.org>
2395
2396         Fix endless loop when the given allocated size was > INT_MAX.
2397         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
2398         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
2399         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
2400         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
2401         * lib/sprintf.c (sprintf): Likewise.
2402
2403 2007-03-17  Bruno Haible  <bruno@clisp.org>
2404
2405         * tests/test-argp-2.sh (func_compare): Output a context diff.
2406
2407 2007-03-17  Bruno Haible  <bruno@clisp.org>
2408
2409         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
2410         locale's decimal-point character.
2411
2412 2007-03-17  Bruno Haible  <bruno@clisp.org>
2413
2414         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
2415         before comparing it. Needed because on some platforms (e.g. x86) a
2416         'long double' occupies less bytes than sizeof (long double).
2417
2418 2007-03-17  Bruno Haible  <bruno@clisp.org>
2419
2420         * tests/test-crc.c (main): Make printf statements 64-bit clean.
2421         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
2422         * tests/test-getaddrinfo.c (simple): Likewise.
2423         * tests/test-read-file.c (main): Likewise.
2424
2425 2007-03-17  Bruno Haible  <bruno@clisp.org>
2426
2427         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
2428
2429 2007-03-17  Bruno Haible  <bruno@clisp.org>
2430
2431         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
2432         unused variable.
2433
2434 2007-03-17  Bruno Haible  <bruno@clisp.org>
2435
2436         * tests/test-c-strcasecmp.c: Include c-strcase.h.
2437         * tests/test-c-strncasecmp.c: Likewise.
2438
2439 2007-03-17  Bruno Haible  <bruno@clisp.org>
2440
2441         * modules/stdlib (Depends-on): Add unistd.
2442         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
2443         Needed for MacOS X 10.3.
2444
2445 2007-03-17  Bruno Haible  <bruno@clisp.org>
2446
2447         * lib/unistr/u-strdup.h: Include <stdlib.h>.
2448
2449 2007-03-17  Bruno Haible  <bruno@clisp.org>
2450
2451         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
2452
2453 2007-03-17  Bruno Haible  <bruno@clisp.org>
2454
2455         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
2456         to reflect files copied from gnulib (with or without modifications).
2457         Suggested by Jim Meyering.
2458
2459 2007-03-17  Eric Blake  <ebb9@byu.net>
2460
2461         * NEWS: Document stdlib change from 2007-02-18.
2462
2463 2007-03-17  Jim Meyering  <jim@meyering.net>
2464
2465         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
2466         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
2467         someone uses a name containing shell meta-characters.
2468         Reported by Alfred M. Szmidt.
2469
2470         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
2471
2472 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2473
2474         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
2475         and copy gettext configuration files only if configure.ac contains
2476         a use of AM_GNU_GETTEXT_VERSION.
2477
2478 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2479
2480         * build-aux/bootstrap (gnulib_name): New variable.
2481         (gnulib_tool_options): Use it.
2482
2483 2007-03-13  Simon Josefsson  <simon@josefsson.org>
2484
2485         * tests/test-des.c: Use new namespace.
2486
2487 2007-03-15  Bruno Haible  <bruno@clisp.org>
2488
2489         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
2490         Reported by James Youngman <jay@gnu.org>.
2491
2492 2007-03-15  Bruno Haible  <bruno@clisp.org>
2493
2494         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
2495         declared prototype. Needed with cc on OSF/1 5.1.
2496
2497 2007-03-15  Bruno Haible  <bruno@clisp.org>
2498
2499         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
2500         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
2501         (struct gl_list_implementation): Add dispose_fn argument to the
2502         'create_empty', 'create' methods.
2503         (struct gl_list_impl_base): Add field 'dispose_fn'.
2504         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
2505         argument.
2506         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
2507         dispose_fn argument.
2508         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
2509         dispose_fn on the dropped values.
2510         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
2511         dispose_fn argument.
2512         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
2513         dropped values.
2514         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
2515         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2516         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
2517         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2518         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
2519         argument.
2520         (gl_tree_list_free): Call dispose_fn on the dropped values.
2521         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
2522         the dropped values.
2523         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2524         Add dispose_fn argument.
2525         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
2526         Call dispose_fn on the dropped values.
2527         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
2528         Add dispose_fn argument.
2529         (gl_sublist_create): Initialize the 'dispose_fn' field.
2530         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
2531         * tests/test-array_list.c (main): Update.
2532         * tests/test-carray_list.c (main): Update.
2533         * tests/test-avltree_list.c (main): Update.
2534         * tests/test-rbtree_list.c (main): Update.
2535         * tests/test-avltreehash_list.c (main): Update.
2536         * tests/test-rbtreehash_list.c (main): Update.
2537         * tests/test-linked_list.c (main): Update.
2538         * tests/test-linkedhash_list.c (main): Update.
2539         * tests/test-array_oset.c (main): Update.
2540
2541 2007-03-15  Bruno Haible  <bruno@clisp.org>
2542
2543         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
2544         (gl_oset_create_empty): Add dispose_fn argument.
2545         (struct gl_oset_implementation): Add dispose_fn argument to
2546         'create_empty' method.
2547         (struct gl_oset_impl_base): Add dispose_fn field.
2548         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
2549         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
2550         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
2551         values.
2552         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
2553         (gl_tree_oset_free): Call dispose_fn on the dropped values.
2554         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2555         dropped value.
2556         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2557         dropped value.
2558         * tests/test-array_oset.c (main): Update.
2559         * tests/test-avltree_oset.c (main): Update.
2560         * tests/test-rbtree_oset.c (main): Update.
2561         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
2562
2563 2007-03-13  Bruno Haible  <bruno@clisp.org>
2564
2565         * tests/test-stdbool.c (i): Update after last patch.
2566
2567 2007-03-12  Bruno Haible  <bruno@clisp.org>
2568
2569         * lib/quotearg.c: Include <wctype.h> early, before the definition of
2570         the iswprint macro. Needed on Solaris 2.5.1.
2571
2572 2007-03-12  Bruno Haible  <bruno@clisp.org>
2573
2574         * tests/test-printf-frexp.c (main): Declare x as volatile.
2575
2576 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2577
2578         * doc/gnulib.texi (Build robot for gnulib): New section.
2579
2580 2007-03-12  Jim Meyering  <jim@meyering.net>
2581
2582         * build-aux/bootstrap: New file.
2583         * build-aux/bootstrap.conf: New file, from coreutils.
2584
2585 2007-03-11  Bruno Haible  <bruno@clisp.org>
2586
2587         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
2588
2589 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2590
2591         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
2592         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
2593         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
2594
2595 2007-03-11  Bruno Haible  <bruno@clisp.org>
2596
2597         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
2598         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
2599
2600 2007-03-11  Bruno Haible  <bruno@clisp.org>
2601
2602         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
2603         formula. Needed for SunPRO C 5.0.
2604
2605 2007-03-11  Bruno Haible  <bruno@clisp.org>
2606
2607         * modules/long-options (Depends-on): Add getopt.
2608
2609 2007-03-11  Bruno Haible  <bruno@clisp.org>
2610
2611         * modules/modechange (Depends-on): Add stdbool.
2612
2613 2007-03-11  Bruno Haible  <bruno@clisp.org>
2614
2615         * modules/i-ring (Depends-on): Add stdbool.
2616
2617 2007-03-11  Bruno Haible  <bruno@clisp.org>
2618
2619         * modules/gc-des (Depends-on): Add stdbool.
2620
2621 2007-03-11  Bruno Haible  <bruno@clisp.org>
2622
2623         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
2624
2625 2007-03-11  Bruno Haible  <bruno@clisp.org>
2626
2627         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
2628
2629 2007-03-11  Bruno Haible  <bruno@clisp.org>
2630
2631         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
2632
2633 2007-03-11  Bruno Haible  <bruno@clisp.org>
2634
2635         * lib/vasnprintf.c (sprintf): Undefine.
2636
2637 2007-03-11  Bruno Haible  <bruno@clisp.org>
2638
2639         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
2640         initializers in SunPRO C and Compaq C compilers.
2641
2642 2007-03-11  Bruno Haible  <bruno@clisp.org>
2643
2644         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
2645         decrementing code ANSI C compliant.
2646
2647 2007-03-11  Bruno Haible  <bruno@clisp.org>
2648
2649         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
2650         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
2651
2652 2007-03-11  Bruno Haible  <bruno@clisp.org>
2653
2654         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
2655         <stdbool.h> substitute doesn't pass.
2656
2657 2007-03-11  Bruno Haible  <bruno@clisp.org>
2658
2659         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
2660
2661 2007-03-11  Bruno Haible  <bruno@clisp.org>
2662
2663         * gnulib-tool (func_create_megatestdir): Create also an autobuild
2664         script, for submission to autobuild.josefsson.org.
2665
2666 2007-03-10  Bruno Haible  <bruno@clisp.org>
2667
2668         * modules/canonicalize-lgpl-tests: New file.
2669         * tests/test-canonicalize-lgpl.sh: New file.
2670         * tests/test-canonicalize-lgpl.c: New file.
2671
2672         * modules/c-strcase-tests: New file.
2673         * tests/test-c-strcase.sh: New file.
2674         * tests/test-c-strcasecmp.c: New file.
2675         * tests/test-c-strncasecmp.c: New file.
2676
2677         * modules/atexit-tests: New file.
2678         * tests/test-atexit.sh: New file.
2679         * tests/test-atexit.c: New file.
2680
2681 2007-03-10  Bruno Haible  <bruno@clisp.org>
2682
2683         * tests/test-binary-io.sh: Use temporary filenames that are not so
2684         likely to clash with those of other tests (in a parallel make).
2685         * tests/test-binary-io.c: Likewise.
2686
2687 2007-03-10  Bruno Haible  <bruno@clisp.org>
2688
2689         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
2690         fallback; use #error instead.
2691         Suggested by Simon Josefsson.
2692
2693 2007-03-10  Bruno Haible  <bruno@clisp.org>
2694
2695         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
2696         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
2697         first and the last.
2698
2699 2007-03-10  Bruno Haible  <bruno@clisp.org>
2700
2701         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
2702
2703 2007-03-10  Bruno Haible  <bruno@clisp.org>
2704
2705         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
2706         "make distcheck".
2707         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
2708         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
2709         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
2710
2711 2007-03-10  Bruno Haible  <bruno@clisp.org>
2712
2713         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
2714         variable.
2715         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
2716         variable.
2717
2718 2007-03-09  Eric Blake  <ebb9@byu.net>
2719         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
2720
2721         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
2722         types are not being provided by gnulib.
2723         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
2724         types are supported.
2725
2726 2007-03-10  Bruno Haible  <bruno@clisp.org>
2727
2728         * lib/stdio_.h (__attribute__): New macro.
2729         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
2730         vsprintf): Specify __attribute__ __format__ for GCC.
2731         Suggested by Eric Blake.
2732
2733 2007-03-09  Bruno Haible  <bruno@clisp.org>
2734
2735         * modules/printf-posix-tests: New file.
2736         * tests/test-printf-posix.sh: New file.
2737         * tests/test-printf-posix.c: New file.
2738
2739         * modules/printf-posix: New file.
2740         * lib/printf.c: New file.
2741         * m4/printf-posix-rpl.m4: New file.
2742         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
2743         REPLACE_PRINTF.
2744         * lib/stdio_.h (printf): New declaration.
2745         (format, __format__, ____printf____, ____scanf____, ____strftime____,
2746         ____strfmon____): New macros.
2747         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
2748         REPLACE_PRINTF.
2749
2750 2007-03-09  Bruno Haible  <bruno@clisp.org>
2751
2752         * tests/test-vasnprintf-posix2.sh: New file.
2753         * tests/test-vasnprintf-posix2.c: New file.
2754         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
2755         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
2756         (Makefile.am): Activate test-vasnprintf-posix2.sh.
2757
2758         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
2759         a locale dependent decimal point, rather than always '.'.
2760
2761 2007-03-09  Eric Blake  <ebb9@byu.net>
2762
2763         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
2764         spite of platforms like Tandem/NSK that define it to -1.
2765
2766 2007-03-08  Bruno Haible  <bruno@clisp.org>
2767
2768         * modules/vprintf-posix-tests: New file.
2769         * tests/test-vprintf-posix.sh: New file.
2770         * tests/test-vprintf-posix.c: New file.
2771         * tests/test-printf-posix.h: New file.
2772
2773         * modules/vprintf-posix: New file.
2774         * lib/vprintf.c: New file.
2775         * m4/vprintf-posix.m4: New file.
2776         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
2777         REPLACE_VPRINTF.
2778         * lib/stdio_.h (vprintf): New declaration.
2779         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
2780         REPLACE_VPRINTF.
2781
2782 2007-03-08  Bruno Haible  <bruno@clisp.org>
2783
2784         * modules/fprintf-posix-tests: New file.
2785         * tests/test-fprintf-posix.sh: New file.
2786         * tests/test-fprintf-posix.c: New file.
2787
2788         * modules/fprintf-posix: New file.
2789         * lib/fprintf.c: New file.
2790         * m4/fprintf-posix.m4: New file.
2791         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
2792         REPLACE_FPRINTF.
2793         * lib/stdio_.h (fprintf): New declaration.
2794         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
2795         REPLACE_FPRINTF.
2796
2797 2007-03-08  Bruno Haible  <bruno@clisp.org>
2798
2799         * modules/vfprintf-posix-tests: New file.
2800         * tests/test-vfprintf-posix.sh: New file.
2801         * tests/test-vfprintf-posix.c: New file.
2802         * tests/test-fprintf-posix.h: New file.
2803         * tests/test-fprintf-posix.out: New file.
2804
2805         * modules/vfprintf-posix: New file.
2806         * lib/vfprintf.c: New file.
2807         * m4/vfprintf-posix.m4: New file.
2808         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
2809         REPLACE_VFPRINTF.
2810         * lib/stdio_.h (vfprintf): New declaration.
2811         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
2812         REPLACE_VFPRINTF.
2813
2814 2007-03-08  Bruno Haible  <bruno@clisp.org>
2815
2816         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
2817
2818 2007-03-08  Bruno Haible  <bruno@clisp.org>
2819
2820         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
2821         instead of 'expr' invocations.
2822         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2823         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2824         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2825         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2826         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2827         Suggested by Paul Eggert.
2828
2829 2007-03-08  Bruno Haible  <bruno@clisp.org>
2830
2831         * modules/fseterr-tests: New file.
2832         * tests/test-fseterr.c: New file.
2833
2834         * modules/fseterr: New file.
2835         * lib/fseterr.h: New file.
2836         * lib/fseterr.c: New file.
2837
2838 2007-03-08  Bruno Haible  <bruno@clisp.org>
2839
2840         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
2841         * lib/getopt_.h: Likewise.
2842         * lib/mbswidth.h: Likewise.
2843         * lib/setenv.h: Likewise.
2844         * lib/vasnprintf.h: Likewise.
2845         * lib/vasprintf.h: Likewise.
2846         * lib/verror.h: Likewise.
2847         * lib/xsetenv.h: Likewise.
2848         * lib/xvasprintf.h: Likewise.
2849
2850 2007-03-08  Jim Meyering  <jim@meyering.net>
2851
2852         * users.txt: Add parted.
2853
2854         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
2855
2856 2007-03-07  Bruno Haible  <bruno@clisp.org>
2857
2858         * m4/printf.m4: Make the shell script snippets copy&pastable.
2859
2860 2007-03-02  Bruno Haible  <bruno@clisp.org>
2861
2862         * lib/netinet_in_.h: New file.
2863         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
2864         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
2865         * modules/netinet_in (Files): Add lib/netinet_in_.h.
2866         (Depends-on): Add absolute-header.
2867         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
2868         into netinet/in.h.
2869
2870 2007-03-03  Bruno Haible  <bruno@clisp.org>
2871
2872         * lib/sys_select_.h: New file.
2873         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
2874         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
2875         * modules/sys_select (Files): Add lib/sys_select_.h.
2876         (Depends-on): Add absolute-header.
2877         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
2878         into sys/select.h.
2879
2880 2007-03-02  Bruno Haible  <bruno@clisp.org>
2881
2882         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
2883         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
2884         values.
2885         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
2886         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
2887         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
2888         * modules/sys_socket (Depends-on): Add absolute-header.
2889         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
2890         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
2891         (Include): Remove requirement of inclusion of <sys/types.h>.
2892
2893 2007-03-02  Bruno Haible  <bruno@clisp.org>
2894
2895         * lib/byteswap_.h (bswap_32): Fix formula.
2896
2897 2007-03-06  Bruno Haible  <bruno@clisp.org>
2898
2899         * modules/sprintf-posix-tests: New file.
2900         * tests/test-sprintf-posix.c: New file.
2901
2902         * modules/sprintf-posix: New file.
2903         * lib/sprintf.c: New file.
2904         * m4/sprintf-posix.m4: New file.
2905         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
2906         REPLACE_SPRINTF.
2907         * lib/stdio_.h (sprintf): New declaration.
2908         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
2909         REPLACE_SPRINTF.
2910
2911 2007-03-06  Bruno Haible  <bruno@clisp.org>
2912
2913         * modules/vsprintf-posix-tests: New file.
2914         * tests/test-vsprintf-posix.c: New file.
2915         * tests/test-sprintf-posix.h: New file.
2916
2917         * modules/vsprintf-posix: New file.
2918         * lib/vsprintf.c: New file.
2919         * m4/vsprintf-posix.m4: New file.
2920         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
2921         REPLACE_VSPRINTF.
2922         * lib/stdio_.h (vsprintf): New declaration.
2923         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
2924         REPLACE_VSPRINTF.
2925
2926 2007-03-06  Bruno Haible  <bruno@clisp.org>
2927
2928         * modules/vsnprintf (Depend-on): Remove minmax.
2929
2930 2007-03-06  Bruno Haible  <bruno@clisp.org>
2931
2932         * modules/snprintf-posix-tests: New file.
2933         * tests/test-snprintf-posix.c: New file.
2934
2935         * modules/snprintf-posix: New file.
2936         * m4/snprintf-posix.m4: New file.
2937         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
2938         gl_FUNC_SNPRINTF.
2939         (gl_FUNC_SNPRINTF): Invoke it.
2940         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
2941         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
2942         is set.
2943         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
2944
2945 2007-03-06  Bruno Haible  <bruno@clisp.org>
2946
2947         * modules/vsnprintf-posix-tests: New file.
2948         * tests/test-vsnprintf-posix.c: New file.
2949         * tests/test-snprintf-posix.h: New file.
2950
2951         * modules/vsnprintf-posix: New file.
2952         * m4/vsnprintf-posix.m4: New file.
2953         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
2954         gl_FUNC_VSNPRINTF.
2955         (gl_FUNC_VSNPRINTF): Invoke it.
2956         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
2957         * lib/stdio_.h (vsnprintf): Define as a replacement if
2958         REPLACE_VSNPRINTF is set.
2959         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
2960
2961 2007-03-06  Bruno Haible  <bruno@clisp.org>
2962
2963         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
2964         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
2965
2966 2007-03-06  Bruno Haible  <bruno@clisp.org>
2967
2968         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
2969         (asinl): Declare also if HAVE_DECL_ASINL is set.
2970         (atanl): Declare also if HAVE_DECL_ATANL is set.
2971         (ceill): Declare also if HAVE_DECL_CEILL is set.
2972         (cosl): Declare also if HAVE_DECL_COSL is set.
2973         (expl): Declare also if HAVE_DECL_EXPL is set.
2974         (floorl): Declare also if HAVE_DECL_FLOORL is set.
2975         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
2976         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
2977         (logl): Declare also if HAVE_DECL_LOGL is set.
2978         (sinl): Declare also if HAVE_DECL_SINL is set.
2979         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
2980         (tanl): Declare also if HAVE_DECL_TANL is set.
2981         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
2982         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
2983         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
2984         declaration of frexpl, ldexpl.
2985         * modules/printf-frexpl (Depends-on): Add math.
2986         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
2987
2988 2007-03-05  Bruno Haible  <bruno@clisp.org>
2989
2990         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
2991         frexpl and ldexpl are declared.
2992         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
2993
2994 2007-03-05  Bruno Haible  <bruno@clisp.org>
2995
2996         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
2997         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
2998
2999 2007-03-05  Bruno Haible  <bruno@clisp.org>
3000
3001         * lib/stdio_.h: Include <stddef.h>.
3002
3003 2007-03-05  Bruno Haible  <bruno@clisp.org>
3004
3005         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
3006
3007 2007-03-05  Bruno Haible  <bruno@clisp.org>
3008
3009         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
3010         NetBSD 4, from Ralf Wildenhues.
3011
3012 2007-03-04  Bruno Haible  <bruno@clisp.org>
3013
3014         * lib/vasprintf.h: Update #if logic for the case when the functions
3015         exist but are overridden.
3016
3017 2007-03-04  Bruno Haible  <bruno@clisp.org>
3018
3019         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
3020         implementations: glibc-2.4 and MacOS X 10.3.
3021         * tests/test-vasnprintf-posix.c (test_function): Test also the case
3022         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
3023         * tests/test-vasprintf-posix.c (test_function): Likewise.
3024
3025 2007-03-04  Bruno Haible  <bruno@clisp.org>
3026
3027         * modules/vasprintf-posix-tests: New file.
3028         * tests/test-vasprintf-posix.c: New file.
3029
3030         * modules/vasprintf-posix: New file.
3031         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
3032         defined.
3033         * m4/vasprintf-posix.m4: New file.
3034         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
3035         gl_FUNC_VASPRINTF.
3036         (gl_FUNC_VASPRINTF): Invoke it.
3037         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
3038         here.
3039         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
3040
3041 2007-03-04  Bruno Haible  <bruno@clisp.org>
3042
3043         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
3044         REPLACE_GETTIMEOFDAY.
3045         * modules/sys_time (Makefile.am): Likewise.
3046         * m4/sys_time_h.m4: Likewise.
3047         * m4/gettimeofday.m4: Likewise.
3048
3049 2007-03-04  Bruno Haible  <bruno@clisp.org>
3050
3051         * modules/vasnprintf-posix-tests: New file.
3052         * tests/test-vasnprintf-posix.c: New file.
3053
3054         * modules/vasnprintf-posix: New file.
3055         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
3056         printf-frexpl.h.
3057         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
3058         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
3059         REPLACE_VASNPRINTF is defined.
3060         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
3061         gl_FUNC_VASNPRINTF.
3062         (gl_FUNC_VASNPRINTF): Invoke it.
3063         * m4/vasnprintf-posix.m4: New file.
3064         * m4/printf.m4: New file.
3065
3066 2007-03-04  Bruno Haible  <bruno@clisp.org>
3067
3068         Compile progreloc.c only if --enable-relocatable is specified.
3069         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
3070         if --enable-relocatable was specified.
3071         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
3072         lib_SOURCES.
3073
3074 2007-03-04  Jim Meyering  <jim@meyering.net>
3075
3076         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
3077         Use it consistently, rather than enumerating errno constants.
3078
3079 2007-03-04  Bruno Haible  <bruno@clisp.org>
3080
3081         * modules/xvasprintf-tests: New file.
3082         * tests/test-xvasprintf.c: New file.
3083
3084         * modules/vasprintf-tests: New file.
3085         * tests/test-vasprintf.c: New file.
3086
3087         * modules/vasnprintf-tests: New file.
3088         * tests/test-vasnprintf.c: New file.
3089
3090         * modules/vsnprintf-tests: New file.
3091         * tests/test-vsnprintf.c: New file.
3092
3093         * modules/snprintf-tests: New file.
3094         * tests/test-snprintf.c: New file.
3095
3096 2007-03-04  Bruno Haible  <bruno@clisp.org>
3097
3098         Compile relocatable.c only if --enable-relocatable is specified.
3099         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
3100         gl_RELOCATABLE_LIBRARY.
3101         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
3102         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
3103         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
3104         gl_RELOCATABLE_LIBRARY.
3105         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
3106         (Makefile.am): Remove lib_SOURCES.
3107         * modules/relocatable-lib-lgpl (configure.ac): Invoke
3108         gl_RELOCATABLE_LIBRARY.
3109         (Makefile.am): Remove lib_SOURCES.
3110         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
3111         always.
3112         * modules/relocatable-prog-wrapper (configure.ac): Invoke
3113         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
3114
3115 2007-03-04  Bruno Haible  <bruno@clisp.org>
3116
3117         * modules/argmatch-tests: New file.
3118         * tests/test-argmatch.c: New file.
3119
3120         * tests/test-allocsa.c (main): Halve the number of loop runs.
3121
3122         * modules/alloca-opt-tests: New file.
3123         * tests/test-alloca-opt.c: New file.
3124
3125 2007-03-04  Jim Meyering  <jim@meyering.net>
3126
3127         Work around difference between Linux ACLs and Solaris 10 ZFS.
3128         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
3129         for EINVAL.
3130
3131 2007-03-03  Bruno Haible  <bruno@clisp.org>
3132
3133         * modules/relocatable-prog (Depends-on): Add back progreloc's
3134         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
3135
3136 2007-03-03  Bruno Haible  <bruno@clisp.org>
3137
3138         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
3139         * modules/relocatable-lib: New file.
3140
3141 2007-03-03  Bruno Haible  <bruno@clisp.org>
3142
3143         * modules/relocatable-prog: Renamed from modules/relocatable.
3144         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
3145
3146 2007-03-03  Bruno Haible  <bruno@clisp.org>
3147
3148         * modules/relocatable-script (Files): Add doc/relocatable.texi,
3149         m4/relocatable-lib.m4.
3150         (Depends-on): Remove 'relocatable'.
3151         (configure.ac): Add gl_RELOCATABLE_NOP.
3152
3153 2007-03-03  Bruno Haible  <bruno@clisp.org>
3154
3155         * modules/relocatable-prog-wrapper: New file.
3156         * modules/relocatable (Depends-on): Add it. Remove all other
3157         dependencies except progname.
3158         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
3159
3160         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
3161         (gl_FUNC_STRERROR): Nop.
3162         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
3163
3164         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
3165         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
3166
3167         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
3168         (gl_FUNC_READLINK): Update.
3169
3170         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
3171
3172 2007-03-03  Bruno Haible  <bruno@clisp.org>
3173
3174         * lib/xreadlink.c: Include <unistd.h> unconditionally.
3175         * modules/xreadlink (Depends-on): Add unistd.
3176         * modules/xreadlink-with-size (Depends-on): Likewise.
3177
3178 2007-03-03  Bruno Haible  <bruno@clisp.org>
3179
3180         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
3181         extracted from gt_FUNC_SETENV.
3182         (gt_FUNC_SETENV): Remove macro.
3183         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
3184         remove gt_FUNC_SETENV.
3185
3186 2007-03-03  Bruno Haible  <bruno@clisp.org>
3187
3188         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
3189         ENABLE_RELOCATABLE here.
3190         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
3191
3192 2007-03-03  Bruno Haible  <bruno@clisp.org>
3193
3194         * modules/rbtreehash-list-tests (Depends-on): Add progname.
3195         * tests/test-rbtreehash_list.c: Include progname.h.
3196         (main): Call set_program_name.
3197
3198         * modules/rbtree-oset-tests (Depends-on): Add progname.
3199         * tests/test-rbtree_oset.c: Include progname.h.
3200         (main): Call set_program_name.
3201
3202         * modules/rbtree-list-tests (Depends-on): Add progname.
3203         * tests/test-rbtree_list.c: Include progname.h.
3204         (main): Call set_program_name.
3205
3206         * modules/linked-list-tests (Depends-on): Add progname.
3207         * tests/test-linked_list.c: Include progname.h.
3208         (main): Call set_program_name.
3209
3210 2007-03-03  Bruno Haible  <bruno@clisp.org>
3211
3212         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
3213         All uses of __restrict changed to _Restrict_.
3214         * lib/glob_.h (__restrict): Remove macro.
3215
3216 2007-03-02  Bruno Haible  <bruno@clisp.org>
3217
3218         * modules/gettext (configure.ac): Require gettext infrastructure
3219         from version 0.16.1.
3220
3221 2007-03-02  Bruno Haible  <bruno@clisp.org>
3222
3223         * modules/linkedhash-list-tests (Depends-on): Add progname.
3224         * tests/test-linkedhash_list.c: Include progname.h.
3225         (main): Call set_program_name.
3226
3227         * modules/carray-list-tests (Depends-on): Add progname.
3228         * tests/test-carray_list.c: Include progname.h.
3229         (main): Call set_program_name.
3230
3231         * modules/avltreehash-list-tests (Depends-on): Add progname.
3232         * tests/test-avltreehash_list.c: Include progname.h.
3233         (main): Call set_program_name.
3234
3235         * modules/avltree-oset-tests (Depends-on): Add progname.
3236         * tests/test-avltree_oset.c: Include progname.h.
3237         (main): Call set_program_name.
3238
3239         * modules/avltree-list-tests (Depends-on): Add progname.
3240         * tests/test-avltree_list.c: Include progname.h.
3241         (main): Call set_program_name.
3242
3243         * modules/array-oset-tests (Depends-on): Add progname.
3244         * tests/test-array_oset.c: Include progname.h.
3245         (main): Call set_program_name.
3246
3247         * modules/array-list-tests (Depends-on): Add progname.
3248         * tests/test-array_list.c: Include progname.h.
3249         (main): Call set_program_name.
3250
3251         * modules/argp-tests (Depends-on): Add progname.
3252         * tests/test-argp.c: Include argp.h first. Include progname.h.
3253         (main): Call set_program_name.
3254
3255 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
3256
3257         * doc/gnulib-tool.texi (Initial import): Reword description of
3258         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
3259         limited effect even if defined after the first system include.
3260
3261 2007-03-01  Bruno Haible  <bruno@clisp.org>
3262
3263         * build-aux/config.libpath: Update to libtool-1.5.22.
3264         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3265
3266 2007-03-01  Bruno Haible  <bruno@clisp.org>
3267
3268         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
3269         foo_CFLAGS.
3270         Reported by Ralf Wildenhues.
3271
3272 2007-03-01  Bruno Haible  <bruno@clisp.org>
3273
3274         * build-aux/install-reloc: Remove object files left over by some
3275         compilers.
3276         Reported by Ralf Wildenhues.
3277
3278 2007-03-01  Bruno Haible  <bruno@clisp.org>
3279
3280         * build-aux/install-reloc: Break long lines.
3281
3282 2007-03-01  Bruno Haible  <bruno@clisp.org>
3283
3284         * doc/relocatable.texi: Document that it may not work on OpenBSD.
3285         Reported by Ralf Wildenhues.
3286
3287 2007-03-01  Bruno Haible  <bruno@clisp.org>
3288
3289         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
3290         include ordering constraints.
3291
3292 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
3293
3294         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
3295         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
3296         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
3297         as another example.
3298         * lib/time_.h: Fix misspelling.
3299         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3300         Require gl_HEADER_TIME_H_DEFAULTS.
3301         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
3302         * m4/time_r.m4 (gl_TIME_R): Likewise.
3303         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
3304
3305 2007-03-01  Bruno Haible  <bruno@clisp.org>
3306
3307         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
3308         * m4/utimens.m4 (gl_UTIMENS): Likewise.
3309
3310 2007-03-01  Jim Meyering  <jim@meyering.net>
3311
3312         * modules/xreadlink (Maintainer): Add my name.
3313         * modules/xreadlink-with-size (Depends-on): Alphabetize.
3314
3315 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
3316             Bruno Haible  <bruno@clisp.org>
3317
3318         * build-aux/install-reloc: Compile also c-ctype.c.
3319         * build-aux/relocatable.sh.in: New file.
3320         * doc/relocatable.texi: New file.
3321         * doc/relocatable-maint.texi: New file.
3322         * doc/gnulib.texi: Include relocatable-maint.texi.
3323         * lib/progreloc.c: Include unistd.h unconditionally.
3324         * lib/relocwrapper.c: Include unistd.h unconditionally.
3325         Include c-ctype.h.
3326         (add_dotbin): Use c_tolower.
3327         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
3328         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
3329         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
3330         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
3331         to m4/relocatable-lib.m4.
3332         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
3333         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
3334         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
3335         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
3336         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
3337         * modules/relocatable: New file.
3338         * modules/relocatable-lib: New file.
3339         * modules/relocatable-script: New file.
3340
3341 2007-02-28  Bruno Haible  <bruno@clisp.org>
3342
3343         Import --enable-relocatable infrastructure.
3344         * build-aux/config.libpath: New file, from GNU gettext.
3345         * build-aux/install-reloc: New file, from GNU gettext.
3346         * build-aux/reloc-ldflags: New file, from GNU gettext.
3347         * lib/relocatable.h: New file, from GNU gettext.
3348         * lib/relocatable.c: New file, from GNU gettext.
3349         * lib/relocwrapper.c: New file, from GNU gettext.
3350         * m4/relocatable.m4: New file, from GNU gettext.
3351
3352 2007-02-28  Bruno Haible  <bruno@clisp.org>
3353
3354         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
3355
3356         * modules/xreadlink: New file, from GNU gettext with modifications.
3357         * lib/xreadlink.c: New file, from GNU gettext.
3358         * lib/xreadlink.h: Add comments.
3359         (xreadlink): New declaration.
3360
3361         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
3362         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
3363         lib/xreadlink-with-size.c.
3364         (configure.ac): Remove gl_XREADLINK invocation.
3365         (Makefile.am): Augment lib_SOURCES.
3366         * m4/xreadlink.m4: Remove file.
3367         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
3368         (xreadlink_with_size): Renamed from xreadink.
3369         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
3370         * modules/canonicalize (Depends-on): Replace xreadlink with
3371         xreadlink-with-size.
3372         * lib/canonicalize.c (canonicalize_filename_mode): Update.
3373
3374 2007-02-25  Jim Meyering  <jim@meyering.net>
3375
3376         * build-aux/announce-gen: When complaining about excess arguments,
3377         list them.
3378
3379 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
3380
3381         * README: Document signed integer overflow situation more
3382         accurately.
3383
3384 2007-02-25  Bruno Haible  <bruno@clisp.org>
3385
3386         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
3387         'a' or 'A' conversion.
3388
3389 2007-02-25  Bruno Haible  <bruno@clisp.org>
3390
3391         * modules/filename: Renamed from modules/pathname.
3392         (Files): Replace lib/pathname.h with lib/filename.h. Replace
3393         lib/concatpath.c with lib/concat-filename.c.
3394         (Makefile.am): Update.
3395         (Include): Replace pathname.h with filename.h.
3396         * lib/filename.h: Renamed from lib/pathname.h.
3397         (concatenated_filename): Renamed from concatenated_pathname.
3398         * lib/concat-filename.c: Renamed from lib/concatpath.c.
3399         (concatenated_filename): Renamed from concatenated_pathname.
3400         * lib/findprog.c: Include filename.h instead of pathname.h.
3401         (find_in_path): Update.
3402         * lib/javacomp.c: Include filename.h instead of pathname.h.
3403         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
3404         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
3405         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
3406         is_oldgcj_14_13_usable, is_javac_usable): Update.
3407         * lib/javaexec.c: Include filename.h instead of pathname.h.
3408         (execute_java_class): Update.
3409         * modules/findprog: Update.
3410         * modules/javacomp: Update.
3411         * modules/javaexec: Update.
3412         * MODULES.html.sh (File system functions): Add 'filename', remove
3413         'pathname'.
3414
3415 2007-02-25  Bruno Haible  <bruno@clisp.org>
3416
3417         * modules/printf-frexpl-tests: New file.
3418         * tests/test-printf-frexpl.c: New file.
3419
3420         * modules/printf-frexpl: New file.
3421         * lib/printf-frexpl.h: New file.
3422         * lib/printf-frexpl.c: New file.
3423         * m4/printf-frexpl.m4: New file.
3424
3425 2007-02-25  Bruno Haible  <bruno@clisp.org>
3426
3427         * modules/printf-frexp-tests: New file.
3428         * tests/test-printf-frexp.c: New file.
3429
3430         * modules/printf-frexp: New file.
3431         * lib/printf-frexp.h: New file.
3432         * lib/printf-frexp.c: New file.
3433         * m4/printf-frexp.m4: New file.
3434
3435 2007-02-25  Bruno Haible  <bruno@clisp.org>
3436
3437         Assume automake >= 1.10 for the tests.
3438         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
3439         * modules/arctwo-tests: Likewise.
3440         * modules/argp-tests: Likewise.
3441         * modules/avltree-list-tests: Likewise.
3442         * modules/avltree-oset-tests: Likewise.
3443         * modules/avltreehash-list-tests: Likewise.
3444         * modules/carray-list-tests: Likewise.
3445         * modules/crc-tests: Likewise.
3446         * modules/des-tests: Likewise.
3447         * modules/gc-arcfour-tests: Likewise.
3448         * modules/gc-arctwo-tests: Likewise.
3449         * modules/gc-des-tests: Likewise.
3450         * modules/gc-hmac-md5-tests: Likewise.
3451         * modules/gc-hmac-sha1-tests: Likewise.
3452         * modules/gc-md2-tests: Likewise.
3453         * modules/gc-md4-tests: Likewise.
3454         * modules/gc-md5-tests: Likewise.
3455         * modules/gc-pbkdf2-sha1-tests: Likewise.
3456         * modules/gc-rijndael-tests: Likewise.
3457         * modules/gc-sha1-tests: Likewise.
3458         * modules/gc-tests: Likewise.
3459         * modules/getaddrinfo-tests: Likewise.
3460         * modules/hmac-md5-tests: Likewise.
3461         * modules/hmac-sha1-tests: Likewise.
3462         * modules/linked-list-tests: Likewise.
3463         * modules/linkedhash-list-tests: Likewise.
3464         * modules/lock-tests: Likewise.
3465         * modules/md2-tests: Likewise.
3466         * modules/md4-tests: Likewise.
3467         * modules/md5-tests: Likewise.
3468         * modules/rbtree-list-tests: Likewise.
3469         * modules/rbtree-oset-tests: Likewise.
3470         * modules/rbtreehash-list-tests: Likewise.
3471         * modules/read-file-tests: Likewise.
3472         * modules/rijndael-tests: Likewise.
3473         * modules/stdint-tests: Likewise.
3474         * modules/tls-tests: Likewise.
3475
3476 2007-02-24  Bruno Haible  <bruno@clisp.org>
3477
3478         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
3479         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
3480         function; instead check whether isnan with a double argument links.
3481         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
3482         function; instead check whether isnan with a 'long double' argument
3483         links.
3484         Reported by Eric Blake <ebb9@byu.net>.
3485
3486 2007-02-24  Bruno Haible  <bruno@clisp.org>
3487
3488         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
3489         defined.
3490         * lib/isnanl.c: Remove all code. Just include isnan.c.
3491         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
3492
3493 2007-02-25  Jim Meyering  <jim@meyering.net>
3494
3495         Avoid conflicting types for 'unsetenv' on FreeBSD.
3496         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
3497         conflicting with FreeBSD's (5.0 and 6.1) function declaration
3498         in stdlib.h.
3499
3500 2007-02-24  Bruno Haible  <bruno@clisp.org>
3501
3502         * modules/isnanl-nolibm-tests: New file.
3503         * tests/test-isnanl.c: New file.
3504
3505         * modules/isnanl-nolibm: New file.
3506         * lib/isnanl.h: New file.
3507         * lib/isnanl.c: New file.
3508         * m4/isnanl.m4: New file.
3509
3510 2007-02-24  Bruno Haible  <bruno@clisp.org>
3511
3512         * modules/isnan-nolibm-tests: New file.
3513         * tests/test-isnan.c: New file.
3514
3515         * modules/isnan-nolibm: New file.
3516         * lib/isnan.h: New file.
3517         * lib/isnan.c: New file.
3518         * m4/isnan.m4: New file.
3519
3520 2007-02-24  Bruno Haible  <bruno@clisp.org>
3521
3522         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
3523         assume that an exponent fits in 20 bits.
3524
3525 2007-02-24  Jim Meyering  <jim@meyering.net>
3526
3527         * m4/regex.m4: Update the description of the configure-time option,
3528         --without-included-regex, to state accurately what the defaults are,
3529         and perhaps to give people an idea why using this option is risky.
3530
3531 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
3532
3533         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
3534         loops on small arguments.  This attempts to avoid the problem
3535         Bruno Haible reported for AIX 4.3.2 in
3536         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
3537
3538 2007-02-23  Bruno Haible  <bruno@clisp.org>
3539
3540         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
3541         Needed for help2man.
3542
3543 2007-02-23  Karl Berry  <karl@gnu.org>
3544
3545         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
3546         exists, foo.h should be cvs-ignored, not committed.
3547
3548 2007-02-23  Eric Blake  <ebb9@byu.net>
3549
3550         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
3551         * lib/stat-time.h (includes): Likewise.
3552         * lib/utimecmp.c (includes): Likewise.
3553         * lib/utimens.h (includes): Likewise.
3554         * lib/getdate.y (includes): Also include "timespec.h" for use
3555         internal to the module.
3556         * modules/utimens (Depends-on): Revert yesterday's patch.
3557         * modules/nanosleep (Depends-on): Add missing dependency.
3558
3559 2007-02-22  Bruno Haible  <bruno@clisp.org>
3560
3561         * lib/glob.c: Don't include getlogin_r.h.
3562
3563 2007-02-22  Jim Meyering  <jim@meyering.net>
3564
3565         * modules/utimens (Depends-on): Add timespec, required for
3566         utimens.h's inclusion of timespec.h.
3567
3568 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
3569
3570         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
3571         long unreadable paths in GNU/Linux.  Problem reported by Andreas
3572         Schwab in
3573         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
3574         I'll try to think of a better way to fix the Solaris problem.
3575
3576         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
3577         like glibc; on Solaris 10, it fails with errno == EINVAL.
3578         POSIX says the behavior is unspecified if the first argument is NULL,
3579         so play it safe and never pass NULL to the system getcwd.
3580
3581 2007-02-21  Jim Meyering  <jim@meyering.net>
3582
3583         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
3584         of gettimeofday.  It would conflict with the one now always
3585         provided via sys_time_.h.  Reported by Matthew Woehlke, as
3586         an IRIX 6.5 build failure.
3587
3588 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
3589
3590         Minor fixups to port to Solaris 10 with Sun C 5.8.
3591         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
3592         * modules/getcwd (Depends-on): Add dirfd.
3593         * lib/putenv.c (putenv): #undef it.
3594         (rpl_putenv): New decl.
3595         (malloc, free): Include <stdlib.h> rather than prototyping separately.
3596
3597 2007-02-20  Bruno Haible  <bruno@clisp.org>
3598
3599         * modules/stdio-tests: New file.
3600         * tests/test-stdio.c: New file.
3601
3602         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
3603         (Depends-on): Add stdio.
3604         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
3605         (Include): Use <stdio.h> instead of vsnprintf.h.
3606         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
3607         HAVE_DECL_VSNPRINTF.
3608         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
3609
3610         * modules/snprintf (Files): Remove lib/snprintf.h.
3611         (Depends-on): Add stdio.
3612         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
3613         (Include): Use <stdio.h> instead of snprintf.h.
3614         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
3615         HAVE_DECL_SNPRINTF.
3616         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
3617         * lib/getaddrinfo.c: Likewise.
3618
3619         * modules/stdio: New file.
3620         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
3621         * lib/snprintf.h: Remove file.
3622         * lib/vsnprintf.h: Remove file.
3623         * lib/.cppi-disable: Remove snprintf.h.
3624         * m4/stdio_h.m4: New file.
3625         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
3626
3627 2007-02-20  Jim Meyering  <jim@meyering.net>
3628
3629         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
3630         used by e.g., mingw.  From Bruno Haible.
3631
3632 2007-02-19  Bruno Haible  <bruno@clisp.org>
3633
3634         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
3635         warnings.
3636         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3637
3638 2007-02-19  Bruno Haible  <bruno@clisp.org>
3639
3640         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
3641         from mingw users.
3642
3643 2007-02-19  Bruno Haible  <bruno@clisp.org>
3644
3645         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
3646         warnings.
3647         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
3648
3649 2007-02-19  Jim Meyering  <jim@meyering.net>
3650
3651         Don't use FD after a successful "fdopendir (fd)".
3652         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
3653         Reset it by calling dirfd on the just-obtained DIR*.
3654
3655         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
3656         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
3657
3658 2007-02-18  Bruno Haible  <bruno@clisp.org>
3659
3660         * lib/readlink.c: Include <unistd.h>.
3661         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
3662         HAVE_READLINK.
3663         * modules/readlink (Depends-on): Add unistd.
3664         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3665         (Include): Add <unistd.h>.
3666
3667         * lib/getlogin_r.h: Remove file.
3668         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
3669         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
3670         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
3671         HAVE_DECL_GETLOGIN_R.
3672         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
3673         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3674         (Include): Use <unistd.h> instead of getlogin_r.h.
3675
3676         * lib/getcwd.h: Remove file.
3677         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
3678         * lib/xgetcwd.c: Likewise.
3679         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
3680         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
3681         * modules/getcwd (Files): Remove lib/getcwd.h.
3682         (Depends-on): Add unistd.
3683         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3684         (Include): Use <unistd.h> instad of getcwd.h.
3685
3686         * lib/ftruncate.c: Include <unistd.h> first.
3687         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
3688         Set HAVE_FTRUNCATE.
3689         * modules/ftruncate (Depends-on): Add unistd.
3690         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3691
3692         * lib/fchdir.c: Include <unistd.h> first.
3693         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
3694         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
3695         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
3696         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3697         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
3698
3699         * lib/dup2.c: Include <unistd.h> first.
3700         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
3701         HAVE_DUP2.
3702         * modules/dup2 (Depends-on): Add unistd.
3703         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3704
3705         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
3706         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
3707         REPLACE_CHOWN. Don't define chown as a macro here.
3708         * modules/chown (Depends-on): Add unistd.
3709         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3710
3711         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
3712         Add definition for GL_LINK_WARNING.
3713         (chown, dup2): New declarations.
3714         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
3715         link warning.
3716         (ftruncate): New declaration.
3717         (getcwd): New declaration, taken from old getcwd.h.
3718         (getlogin_r): New declaration, taken from old getlogin_r.h.
3719         (readlink): New declaration.
3720         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
3721         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
3722         (gl_PREREQ_UNISTD): Remove macro.
3723         (gl_UNISTD_MODULE_INDICATOR): New macro.
3724         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
3725         many new variables. Don't set UNISTD_H.
3726         * modules/unistd (Description): Change.
3727         (Depends-on): Add link-warning.
3728         (configure.ac): Update.
3729         (Makefile.am): Create unistd.h always. Substitute many new variables
3730         into it.
3731
3732 2007-02-18  Bruno Haible  <bruno@clisp.org>
3733
3734         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
3735         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
3736         HAVE_GETSUBOPT.
3737         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
3738         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
3739         * lib/getsubopt.h: Remove file.
3740         * modules/getsubopt (Files): Remove lib/getsubopt.h.
3741         (Depends-on): Add stdlib.
3742         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3743         (Includes): Use <stdlib.h> instead of getsubopt.h.
3744         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
3745         Set HAVE_GETSUBOPT.
3746         * lib/getsubopt.c: Don't include getsubopt.h.
3747
3748 2007-02-18  Bruno Haible  <bruno@clisp.org>
3749
3750         * modules/fchdir (Depends-on): Add dup2.
3751
3752 2007-02-18  Bruno Haible  <bruno@clisp.org>
3753
3754         * lib/stdlib_.h: Handle glibc's special invocation convention
3755         specially.
3756
3757 2007-02-18  Bruno Haible  <bruno@clisp.org>
3758
3759         * modules/stdlib-tests: New file.
3760         * tests/test-stdlib.c: New file.
3761
3762         * modules/mkstemp (Files): Remove lib/mkstemp.h.
3763         (Depends-on): Add stdlib.
3764         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3765         (Includes): Use <stdlib.h> instead of mkstemp.h.
3766         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
3767         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
3768         * lib/mkstemp.c: Don't include mkstemp.h.
3769         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
3770         * lib/stdlib--.h: Don't include mkstemp.h.
3771
3772         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
3773         (Depends-on): Add stdlib.
3774         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3775         (Includes): Use <stdlib.h> instead of mkdtemp.h.
3776         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
3777         HAVE_MKDTEMP.
3778         * lib/mkdtemp.c: Don't include mkdtemp.h.
3779         * lib/clean-temp.c: Don't include mkdtemp.h.
3780
3781         * modules/exit (Files): Remove lib/exit.h.
3782         (Depends-on): Add stdlib.
3783         (Makefile.am): Remove lib_SOURCES.
3784         (Include): Use <stdlib.h> instead of exit.h.
3785         * lib/argmatch.c: Don't include exit.h.
3786         * lib/execute.c: Likewise.
3787         * lib/pagealign_alloc.c: Likewise.
3788         * lib/pipe.c: Likewise.
3789         * lib/wait-process.c: Likewise.
3790         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
3791         * lib/exitfail.c: Likewise.
3792         * lib/savewd.c: Likewise.
3793         * lib/xsetenv.c: Likewise.
3794
3795         * modules/stdlib: New file.
3796         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
3797         and extra comments about mkstemp().
3798         * lib/exit.h: Remove file.
3799         * lib/mkdtemp.h: Remove file.
3800         * lib/mkstemp.h: Remove file.
3801         * m4/stdlib_h.m4: New file.
3802         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
3803
3804 2007-02-18  Bruno Haible  <bruno@clisp.org>
3805
3806         * modules/math-tests: New file.
3807         * tests/test-math.c: New file.
3808
3809         * modules/math: New file.
3810         * modules/mathl (Files): Remove lib/mathl.h.
3811         (Depends-on): Add math.
3812         (Makefile.am): Don't mention mathl.h.
3813         (Include): Use <math.h> instead of mathl.h.
3814         * lib/math_.h: New file.
3815         * lib/mathl.h: Remove file.
3816         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
3817         mathl.h.
3818         * lib/asinl.c: Likewise.
3819         * lib/atanl.c: Likewise.
3820         * lib/ceill.c: Likewise.
3821         * lib/cosl.c: Likewise.
3822         * lib/expl.c: Likewise.
3823         * lib/floorl.c: Likewise.
3824         * lib/frexpl.c: Likewise.
3825         * lib/ldexpl.c: Likewise.
3826         * lib/logl.c: Likewise.
3827         * lib/sincosl.c: Likewise.
3828         * lib/sinl.c: Likewise.
3829         * lib/sqrtl.c: Likewise.
3830         * lib/tanl.c: Likewise.
3831         * lib/trigl.c: Likewise.
3832         * m4/math_h.m4: New file.
3833         * MODULES.html.sh (Mathematics): Add math.
3834
3835 2007-02-17  Bruno Haible  <bruno@clisp.org>
3836
3837         * modules/wctype-tests: New file.
3838         * tests/test-wctype.c: New file.
3839
3840         * modules/wchar-tests: New file.
3841         * tests/test-wchar.c: New file.
3842
3843         * modules/unistd-tests: New file.
3844         * tests/test-unistd.c: New file.
3845
3846         * modules/time-tests: New file.
3847         * tests/test-time.c: New file.
3848
3849         * modules/sysexits-tests: New file.
3850         * tests/test-sysexits.c: New file.
3851
3852         * modules/sys_time-tests: New file.
3853         * tests/test-sys_time.c: New file.
3854
3855         * modules/sys_stat-tests: New file.
3856         * tests/test-sys_stat.c: New file.
3857
3858         * modules/sys_socket-tests: New file.
3859         * tests/test-sys_socket.c: New file.
3860
3861         * modules/sys_select-tests: New file.
3862         * tests/test-sys_select.c: New file.
3863
3864         * modules/string-tests: New file.
3865         * tests/test-string.c: New file.
3866
3867         * modules/stdbool-tests: New file.
3868         * tests/test-stdbool.c: New file.
3869
3870         * modules/netinet_in-tests: New file.
3871         * tests/test-netinet_in.c: New file.
3872
3873         * modules/inttypes-tests: New file.
3874         * tests/test-inttypes.c: New file.
3875
3876         * modules/fcntl-tests: New file.
3877         * tests/test-fcntl.c: New file.
3878
3879         * modules/byteswap-tests: New file.
3880         * tests/test-byteswap.c: New file.
3881
3882         * modules/arpa_inet-tests: New file.
3883         * tests/test-arpa_inet.c: New file.
3884
3885 2007-02-17  Bruno Haible  <bruno@clisp.org>
3886
3887         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
3888         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
3889         if the corresponding module is not enabled. Emit link warnings if
3890         the function is used nevertheless.
3891         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
3892         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
3893         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
3894         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
3895         * modules/inttypes (Depends-on): Add link-warning.
3896         (Makefile.am): Copy the contents of build-aux/link-warning.h into
3897         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
3898         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
3899         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
3900         * modules/imaxdiv (configure.ac): Likewise.
3901         * modules/strtoimax (configure.ac): Likewise.
3902         * modules/strtoumax (configure.ac): Likewise.
3903
3904 2007-02-17  Bruno Haible  <bruno@clisp.org>
3905
3906         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
3907         gl_STRING_MODULE_INDICATOR_DEFAULTS.
3908         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
3909         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
3910
3911 2007-02-17  Bruno Haible  <bruno@clisp.org>
3912
3913         * modules/link-warning: New file.
3914         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
3915         * lib/string_.h (GL_LINK_WARNING): Remove definition.
3916         * modules/string (Depends-on): Add link-warning.
3917         (Makefile.am): Copy the contents of build-aux/link-warning.h into
3918         string.h.
3919         * MODULES.html.sh (Support for building libraries and executables): Add
3920         link-warning.
3921
3922 2007-02-17  Bruno Haible  <bruno@clisp.org>
3923
3924         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
3925         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
3926         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
3927         long lines.
3928
3929 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
3930             Bruno Haible  <bruno@clisp.org>
3931
3932         * modules/tmpfile: New file.
3933         * lib/tmpfile.c: New file.
3934         * m4/tmpfile.m4: New file.
3935         * MODULES.html.sh (func_all_modules): New section "Input/output".
3936
3937 2007-02-15  Bruno Haible  <bruno@clisp.org>
3938
3939         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
3940         (supports_delete_on_close): New function.
3941         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
3942
3943 2007-02-14  Bruno Haible  <bruno@clisp.org>
3944
3945         * modules/mbspcasecmp-tests: New file.
3946         * tests/test-mbspcasecmp.sh: New file.
3947         * tests/test-mbspcasecmp.c: New file.
3948
3949         New module mbspcasecmp.
3950         * modules/mbspcasecmp: New file.
3951         * lib/mbspcasecmp.c: New file.
3952         * lib/string_.h (strncasecmp): Change warning message.
3953         (mbspcasecmp): New declaration.
3954         * m4/mbspcasecmp.m4: New file.
3955         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
3956         GNULIB_MBSPCASECMP.
3957         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
3958         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
3959
3960 2007-02-14  Bruno Haible  <bruno@clisp.org>
3961
3962         * modules/mbsncasecmp-tests: New file.
3963         * tests/test-mbsncasecmp.sh: New file.
3964         * tests/test-mbsncasecmp.c: New file.
3965
3966         New module mbsncasecmp.
3967         * modules/mbsncasecmp: New file.
3968         * lib/mbsncasecmp.c: New file.
3969         * lib/string_.h (mbsncasecmp): New declaration.
3970         * m4/mbsncasecmp.m4: New file.
3971         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
3972         GNULIB_MBSNCASECMP.
3973         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
3974         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
3975
3976 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
3977
3978         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
3979         Verify that it doesn't overlap with our flags.
3980         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
3981         do not have the desired effect in multibyte locales; instead, use
3982         mbscasecmp.
3983         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
3984         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
3985         we don't require GNU fnmatch ourselves (if our users require it, they
3986         should do so explicitly).
3987
3988         Fix regex code so it doesn't rely on strcasecmp.
3989         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
3990         Otherwise, include gnulib's langinfo.h.
3991         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
3992         undesirable behavior in non-C locales.  Instead, rely on localecharset.
3993         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
3994         * modules/regex (FILES): Remove m4/codeset.m4.
3995         (Depends-on): Add localcharset.  Remove strcase.
3996
3997 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3998
3999         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
4000         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
4001
4002 2007-02-13  Bruno Haible  <bruno@clisp.org>
4003
4004         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
4005         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4006
4007 2007-02-12  Bruno Haible  <bruno@clisp.org>
4008
4009         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4010         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
4011         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
4012         time warning rather than a link error.
4013
4014 2007-02-12  Bruno Haible  <bruno@clisp.org>
4015
4016         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
4017         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
4018         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4019
4020 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4021
4022         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
4023         args, not 2.
4024
4025 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4026
4027         New module 'time', so that apps can include <time.h> as per
4028         POSIX and GNU instead of separate include files like time_r.h
4029         and timegm.h.  This implementation tries out a simpler approach
4030         for replacing decls in standard include files (as compared to
4031         the string module), somewhat as an experiment.
4032
4033         * config/srclist.txt: Comment out mktime.c for now.
4034         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
4035         since it doesn't apply any more.  Use generic wording instead.
4036         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
4037         'time'.
4038         * lib/time_.h, m4/time_h.m4, modules/time: New files.
4039         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
4040         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
4041         Don't include <sys/types.h>; no longer needed since we assume C89.
4042         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
4043         * lib/strftime.c: Likewise.
4044         * lib/time_r.c: Likewise.
4045         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
4046         * lib/nanosleep.c: Include <time.h> first, to check interface.
4047         * lib/strptime.c: Likewise.
4048         * lib/time_r.c: Likewise.
4049         * lib/timegm.c: Likewise.
4050         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
4051         needed.
4052         * lib/timegm.c: Don't include timegm.h; no longer needed.
4053         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
4054         time.h now handles any problems in that area.
4055         (struct timespec, nanosleep): Remove; time.h now arranges for these.
4056         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
4057         that time.h defines struct timespec.
4058         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
4059         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
4060         handles that.
4061         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
4062         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
4063         needed.  Set REPLACE_LOCALTIME.
4064         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
4065         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
4066         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
4067         nanosleep; time_h.m4 now does that.  Don't require
4068         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
4069         module handles this now.
4070         * modules/getdate (Depends-on): Remove timespec.  Add time.
4071         * modules/nanosleep (Depends-on): Likewise.
4072         * modules/stat-time (Depends-on): Likewise.
4073         * modules/nanosleep (Include): Include time.h, not timespec.h.
4074         * modules/strptime (Files): Remove lib/strptime.h.
4075         (Depends-on): Add extensions, time.
4076         (Include): Include time.h, not strptime.h.
4077         * modules/time_r (Files): Remove lib/time_r.h.
4078         (Depends-on): Add time.
4079         (Include): Include time.h, not time_r.h.
4080         * modules/timegm: Likewise.
4081         * modules/timespec (Description): Now does timespec-related decls
4082         of our own, instead of struct timespec itself.
4083         (Depends-on): Add time; remove extensions.
4084         (Maintainer): Add self.
4085         * modules/utimecmp (Depends-on): Add time; remove timespec.
4086         * modules/utimens (Depends-on): Likewise.
4087         * modules/xnanosleep (Depends-on): Likewise.
4088
4089 2007-02-11  Bruno Haible  <bruno@clisp.org>
4090
4091         * lib/c-strstr.c: Include allocsa.h.
4092         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4093         * lib/c-strcasestr.c: Include allocsa.h.
4094         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4095         * lib/strcasestr.c: Include allocsa.h.
4096         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4097         * lib/mbsstr.c: Include allocsa.h.
4098         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4099         allocsa/freesa instead of malloc/free.
4100         * lib/mbscasestr.c: Include allocsa.h.
4101         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4102         allocsa/freesa instead of malloc/free.
4103         * modules/c-strstr (Depends-on): Add allocsa.
4104         * modules/c-strcasestr (Depends-on): Likewise.
4105         * modules/strcasestr (Depends-on): Likewise.
4106         * modules/mbsstr (Depends-on): Likewise.
4107         * modules/mbscasestr (Depends-on): Likewise.
4108
4109 2007-02-11  Bruno Haible  <bruno@clisp.org>
4110
4111         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
4112
4113         * modules/mbsspn-tests: New file.
4114         * tests/test-mbsspn.sh: New file.
4115         * tests/test-mbsspn.c: New file.
4116
4117 2007-02-11  Bruno Haible  <bruno@clisp.org>
4118
4119         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
4120
4121         * modules/mbspbrk-tests: New file.
4122         * tests/test-mbspbrk.sh: New file.
4123         * tests/test-mbspbrk.c: New file.
4124
4125 2007-02-11  Bruno Haible  <bruno@clisp.org>
4126
4127         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
4128         unneeded cast.
4129
4130         * modules/mbscspn-tests: New file.
4131         * tests/test-mbscspn.sh: New file.
4132         * tests/test-mbscspn.c: New file.
4133
4134 2007-02-11  Bruno Haible  <bruno@clisp.org>
4135
4136         * modules/mbscasecmp-tests: New file.
4137         * tests/test-mbscasecmp.sh: New file.
4138         * tests/test-mbscasecmp.c: New file.
4139
4140 2007-02-11  Bruno Haible  <bruno@clisp.org>
4141
4142         Ensure O(n) worst-case complexity of mbscasestr.
4143         * lib/mbscasestr.c: Include stdbool.h.
4144         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4145         functions.
4146         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
4147         the bookkeeping indicates that it's worth it.
4148         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
4149
4150         * modules/mbscasestr-tests: New file.
4151         * tests/test-mbscasestr1.c: New file.
4152         * tests/test-mbscasestr2.sh: New file.
4153         * tests/test-mbscasestr2.c: New file.
4154         * tests/test-mbscasestr3.sh: New file.
4155         * tests/test-mbscasestr3.c: New file.
4156         * tests/test-mbscasestr4.sh: New file.
4157         * tests/test-mbscasestr4.c: New file.
4158         * m4/locale-tr.m4: New file.
4159
4160 2007-02-11  Bruno Haible  <bruno@clisp.org>
4161
4162         Ensure O(n) worst-case complexity of mbsstr.
4163         * lib/mbsstr.c: Include stdbool.h.
4164         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4165         functions.
4166         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
4167         bookkeeping indicates that it's worth it.
4168         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
4169
4170         * modules/mbsstr-tests: New file.
4171         * tests/test-mbsstr1.c: New file.
4172         * tests/test-mbsstr2.sh: New file.
4173         * tests/test-mbsstr2.c: New file.
4174         * tests/test-mbsstr3.sh: New file.
4175         * tests/test-mbsstr3.c: New file.
4176         * m4/locale-fr.m4: New file.
4177
4178 2007-02-11  Bruno Haible  <bruno@clisp.org>
4179
4180         * lib/mbsrchr.c (mbsrchr): Fix bug.
4181
4182         * modules/mbsrchr-tests: New file.
4183         * tests/test-mbsrchr.sh: New file.
4184         * tests/test-mbsrchr.c: New file.
4185
4186 2007-02-11  Bruno Haible  <bruno@clisp.org>
4187
4188         * lib/mbschr.c (mbschr): Fix bug.
4189
4190         * modules/mbschr-tests: New file.
4191         * tests/test-mbschr.sh: New file.
4192         * tests/test-mbschr.c: New file.
4193         * m4/locale-zh.m4: New file.
4194
4195 2007-02-11  Bruno Haible  <bruno@clisp.org>
4196
4197         Support for copying multibyte string iterators.
4198         * lib/mbiter.h: Include <string.h>.
4199         (mbiter_multi_copy): New function.
4200         (mbi_copy): New macro.
4201         * lib/mbuiter.h: Include <string.h>.
4202         (mbuiter_multi_copy): New function.
4203         (mbui_copy): New macro.
4204
4205 2007-02-11  Bruno Haible  <bruno@clisp.org>
4206
4207         New module mbslen.
4208         * modules/mbslen: New file.
4209         * lib/mbslen.c: New file.
4210         * lib/string_.h (mbslen): New declaration.
4211         * m4/mbslen.m4: New file.
4212         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4213         GNULIB_MBSLEN.
4214         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
4215         * MODULES.html.sh (Internationalization functions): Add mbslen.
4216
4217 2007-02-11  Bruno Haible  <bruno@clisp.org>
4218
4219         Ensure O(n) worst-case complexity of strcasestr substitute.
4220         * lib/strcasestr.c: Include stdbool.h.
4221         (knuth_morris_pratt): New function.
4222         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4223         bookkeeping indicates that it's worth it.
4224         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
4225
4226         * modules/strcasestr-tests: New file.
4227         * tests/test-strcasestr.c: New file.
4228
4229 2007-02-11  Bruno Haible  <bruno@clisp.org>
4230
4231         Ensure O(n) worst-case complexity of c_strcasestr.
4232         * lib/c-strcasestr.c: Include stdbool.h, string.h.
4233         (knuth_morris_pratt): New function.
4234         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
4235         the bookkeeping indicates that it's worth it.
4236         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
4237
4238         * modules/c-strcasestr-tests: New file.
4239         * tests/test-c-strcasestr.c: New file.
4240
4241 2007-02-11  Bruno Haible  <bruno@clisp.org>
4242
4243         Ensure O(n) worst-case complexity of c_strstr.
4244         * lib/c-strstr.c: Include stdbool.h, string.h.
4245         (knuth_morris_pratt): New function.
4246         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4247         bookkeeping indicates that it's worth it.
4248         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
4249
4250         * lib/c-strstr.c: Complete rewrite for maintainability.
4251
4252         * modules/c-strstr-tests: New file.
4253         * tests/test-c-strstr.c: New file.
4254
4255 2007-02-11  Bruno Haible  <bruno@clisp.org>
4256
4257         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
4258         5.2.1 and earlier, whereby \055 was treated just like the range
4259         delimiter '-'.
4260         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
4261
4262 2007-02-08  Bruno Haible  <bruno@clisp.org>
4263
4264         * modules/regex (Depends-on): Add stdbool.
4265         Reported by Dalibor Topic <robilad@kaffe.org>.
4266
4267 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
4268
4269         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
4270         Prefer returning from main to exiting from it.
4271         Remove unnecessary parens after sizeof.
4272
4273 2007-02-05  Bruno Haible  <bruno@clisp.org>
4274
4275         New module mbssep.
4276         * modules/mbssep: New file.
4277         * lib/mbssep.c: New file.
4278         * lib/string_.h (strsep): Add a conditional link warning.
4279         (mbssep): New declaration.
4280         * m4/mbssep.m4: New file.
4281         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4282         GNULIB_MBSSEP.
4283         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
4284         * MODULES.html.sh (Internationalization functions): Add mbssep.
4285
4286 2007-02-05  Bruno Haible  <bruno@clisp.org>
4287
4288         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
4289         Optimize search in case of 1 delimiter.
4290
4291 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4292
4293         * lib/acl.h: Include sys/types.h before sys/acl.h.
4294
4295 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4296
4297         Merge upstream fix for glibc bugzilla #3957:
4298
4299         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
4300
4301         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
4302         bit for RE_HAT_LISTS_NOT_NEWLINE.
4303         (build_charclass_op): Remove bogus comment.
4304
4305 2007-02-05  Simon Josefsson  <simon@josefsson.org>
4306
4307         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
4308
4309 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4310
4311         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
4312         * lib/memmem.c [!defined _LIBC]: Include config.h.
4313
4314 2007-02-04  Bruno Haible  <bruno@clisp.org>
4315
4316         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
4317         warning message.
4318
4319 2007-02-04  Bruno Haible  <bruno@clisp.org>
4320
4321         New module mbstok_r.
4322         * modules/mbstok_r: New file.
4323         * lib/mbstok_r.c: New file.
4324         * lib/string_.h (strtok_r): Change argument names to match the
4325         comments. Add a conditional link warning.
4326         (mbstok_r): New declaration.
4327         * m4/mbstok_r.m4: New file.
4328         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4329         GNULIB_MBSTOK_R.
4330         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
4331         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
4332
4333 2007-02-04  Bruno Haible  <bruno@clisp.org>
4334
4335         New module mbsspn.
4336         * modules/mbsspn: New file.
4337         * lib/mbsspn.c: New file.
4338         * lib/string_.h (strspn): Add a conditional link warning.
4339         (mbsspn): New declaration.
4340         * m4/mbsspn.m4: New file.
4341         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4342         GNULIB_MBSSPN.
4343         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
4344         * MODULES.html.sh (Internationalization functions): Add mbsspn.
4345
4346 2007-02-04  Bruno Haible  <bruno@clisp.org>
4347
4348         New module mbspbrk.
4349         * modules/mbspbrk: New file.
4350         * lib/mbspbrk.c: New file.
4351         * lib/string_.h (strpbrk): Add a conditional link warning.
4352         (mbspbrk): New declaration.
4353         * m4/mbspbrk.m4: New file.
4354         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4355         GNULIB_MBSPBRK.
4356         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
4357         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
4358
4359 2007-02-04  Bruno Haible  <bruno@clisp.org>
4360
4361         New module mbscspn.
4362         * modules/mbscspn: New file.
4363         * lib/mbscspn.c: New file.
4364         * lib/string_.h (strcspn): Add a conditional link warning.
4365         (mbscspn): New declaration.
4366         * m4/mbscspn.m4: New file.
4367         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4368         GNULIB_MBSCSPN.
4369         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
4370         * MODULES.html.sh (Internationalization functions): Add mbscspn.
4371
4372 2007-02-04  Bruno Haible  <bruno@clisp.org>
4373
4374         New module mbscasestr, reduced goal of strcasestr.
4375         * modules/mbscasestr: New file.
4376         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
4377         (mbscasestr): Renamed from strcasestr.
4378         * lib/strcasestr.c: Don't include mbuiter.h.
4379         (strcasestr): Remove support for multibyte locales.
4380         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
4381         Change the conditional link warning.
4382         (mbscasestr): New declaration.
4383         * m4/mbscasestr.m4: New file.
4384         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
4385         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
4386         REPLACE_STRCASESTR.
4387         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
4388         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4389         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4390         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
4391         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
4392         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4393         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
4394         (Depends-on): Remove mbuiter.
4395         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
4396
4397 2007-02-04  Bruno Haible  <bruno@clisp.org>
4398
4399         Simplify handling of strncasecmp.
4400         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
4401         the conditional link warning.
4402         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4403         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
4404         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
4405         * modules/strcase (configure.ac): Don't invoke
4406         gl_STRING_MODULE_INDICATOR.
4407         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
4408
4409 2007-02-04  Bruno Haible  <bruno@clisp.org>
4410
4411         New module mbscasecmp, reduced goal of strcasecmp.
4412         * modules/mbscasecmp: New file.
4413         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
4414         (mbscasecmp): Renamed from strcasecmp.
4415         * lib/strcasecmp.c: Don't include mbuiter.h.
4416         (strcasecmp): Remove support for multibyte locales.
4417         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
4418         Change the conditional link warning.
4419         (mbscasecmp): New declaration.
4420         * m4/mbscasecmp.m4: New file.
4421         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
4422         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
4423         REPLACE_STRCASECMP.
4424         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
4425         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4426         GNULIB_MBSCASECMP.
4427         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
4428         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
4429         * modules/strcase (Files): Remove m4/mbrtowc.m4.
4430         (Depends-on): Remove mbuiter.
4431         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
4432
4433 2007-02-04  Bruno Haible  <bruno@clisp.org>
4434
4435         New module mbsstr. Remove module strstr.
4436         * modules/mbsstr: New file.
4437         * modules/strstr: Remove file.
4438         * lib/mbsstr.c: Renamed from lib/strstr.c.
4439         (mbsstr): Renamed from strstr.
4440         * lib/string_.h (strstr): Remove declaration. Change the conditional
4441         link warning.
4442         (mbsstr): New declaration.
4443         * m4/mbsstr.m4: New file.
4444         * m4/strstr.m4: Remove file.
4445         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
4446         REPLACE_STRSTR.
4447         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
4448         Don't initialize GNULIB_STRSTR.
4449         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
4450         substitute GNULIB_STRSTR and REPLACE_STRSTR.
4451         * MODULES.html.sh (Internationalization functions): Add mbsstr.
4452         (Support for systems lacking ANSI C 89): Remove strstr.
4453
4454 2007-02-04  Bruno Haible  <bruno@clisp.org>
4455
4456         New module mbsrchr.
4457         * modules/mbsrchr: New file.
4458         * lib/mbsrchr.c: New file.
4459         * lib/string_.h (strrchr): Add a conditional link warning.
4460         (mbsrchr): New declaration.
4461         * m4/mbsrchr.m4: New file.
4462         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4463         GNULIB_MBSRCHR.
4464         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
4465         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
4466
4467 2007-02-04  Bruno Haible  <bruno@clisp.org>
4468
4469         New module mbschr.
4470         * modules/mbschr: New file.
4471         * lib/mbschr.c: New file.
4472         * lib/string_.h (strchr): Add a conditional link warning.
4473         (mbschr): New declaration.
4474         * m4/mbschr.m4: New file.
4475         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4476         GNULIB_MBSCHR.
4477         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
4478         * MODULES.html.sh (Internationalization functions): Add mbschr.
4479
4480 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4481
4482         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
4483
4484         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
4485
4486 2007-02-04  Bruno Haible  <bruno@clisp.org>
4487
4488         New module description section 'configure.ac-early'.
4489         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
4490         (func_get_autoconf_early_snippet): New function.
4491         (func_import, func_create_testdir): Use it. Remove special cases for
4492         modules 'extensions' and 'lock'.
4493         * modules/extensions (configure.ac-early): Require
4494         gl_USE_SYSTEM_EXTENSIONS.
4495         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
4496
4497 2007-02-04  Bruno Haible  <bruno@clisp.org>
4498
4499         Make use of gcj-4.3's -fsource and -ftarget option.
4500         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
4501         and if so try the options -fsource and -ftarget.
4502         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
4503         source_version, ftarget_option, target_version arguments.
4504         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
4505         (is_envjavac_oldgcj_14_14_usable): Renamed from
4506         is_envjavac_gcj_14_14_usable.
4507         (is_envjavac_oldgcj_14_13_usable): Renamed from
4508         is_envjavac_gcj_14_13_usable.
4509         (is_gcj_present): Update.
4510         (is_gcj_43, is_gcj43_usable): New functions.
4511         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
4512         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
4513         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
4514         try the options -fsource and -ftarget.
4515
4516 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
4517
4518         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
4519         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
4520         larger value.
4521
4522 2007-02-03  Jim Meyering  <jim@meyering.net>
4523
4524         Give tools a better chance to allocate space for very large buffers.
4525         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
4526
4527         Make pwd and readlink work also when run with an unreadable parent dir
4528         on systems with openat support.
4529         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
4530         provided getcwd function, even when we have openat support.
4531         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
4532
4533 2007-02-02  Bruno Haible  <bruno@clisp.org>
4534
4535         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4536         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
4537         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
4538         portability problems if one of these functions is only used on specific
4539         platforms.
4540         Reported by Paul Eggert.
4541
4542 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
4543
4544         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
4545         is causing more trouble than it's curing.
4546         * lib/regex_internal.h (__mempcpy): Remove.
4547         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
4548         (and make the code a tad smaller to boot).
4549         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
4550
4551 2007-02-02  Jim Meyering  <jim@meyering.net>
4552
4553         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
4554         section, not in the Makefile.am: one.
4555
4556 2007-02-02  Eric Blake  <ebb9@byu.net>
4557
4558         * lib/strchrnul.c: Always include config.h first.
4559
4560         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
4561         gnulib strstr is not necessary here.
4562
4563 2007-02-02  Simon Josefsson  <simon@josefsson.org>
4564
4565         * m4/socklen.m4: Fix typo.
4566
4567 2007-02-02  Eric Blake  <ebb9@byu.net>
4568
4569         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
4570         * modules/netinet_in (Makefile.am): Likewise.
4571
4572 2007-02-01  Bruno Haible  <bruno@clisp.org>
4573
4574         * lib/string_.h (GL_LINK_WARNING): New macro.
4575         (strcasecmp, strstr, strcasestr): If provided by the system,
4576         conditionally define as a macro that leads to a warning instead of to
4577         an error.
4578         (strncasecmp): Conditionally define as a macro that leads to a warning.
4579
4580 2007-02-01  Karl Berry  <karl@gnu.org>
4581
4582         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
4583
4584 2007-02-01  Bruno Haible  <bruno@clisp.org>
4585
4586         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
4587         renamings.
4588
4589 2007-02-01  Eric Blake  <ebb9@byu.net>
4590
4591         * modules/regex (Depends-on): Revert dependence on mempcpy.
4592         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
4593         module's definition of mempcpy.
4594         Reported by Paul Eggert.
4595
4596 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
4597
4598         * lib/string_.h: If the gnulib module XYZ is not present, undefine
4599         the symbol XYZ before redefining it.  This fixes a problem with
4600         programs that don't use XYZ, when compiled on systems that define
4601         XYZ to something else.
4602
4603 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
4604
4605         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
4606         occurs when "mkdir -m foo" creates a setgid directory that is (1)
4607         writeable to group or other and (2) is intended to have a special
4608         mode bit that is set or cleared.  In such a case, the directory
4609         should be neither group- nor other-writeable until the special
4610         mode bits are right.
4611
4612 2007-01-31  Eric Blake  <ebb9@byu.net>
4613
4614         * modules/mountlist (Depends-on): Add strstr.
4615
4616         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
4617         bug.
4618         * modules/string (Makefile.am): Remove redundant replacement.
4619         * modules/regex (Depends-on): Add mempcpy.
4620
4621 2007-01-31  Bruno Haible  <bruno@clisp.org>
4622
4623         New module description field 'Link'.
4624         * gnulib-tool (func_usage): Document --extract-link-directive.
4625         (sed_extract_prog): Recognize 'Link' directive.
4626         (func_get_link_directive): New function.
4627         (func_import): Show summary of link directives.
4628         Handle --extract-link-directive option.
4629         * modules/acl (Link): New section.
4630         * modules/clock-time (Link): New section.
4631         * modules/euidaccess (Link): New section.
4632         * modules/gettext (Link): New section.
4633         * modules/iconv (Link): New section.
4634         * modules/lock (Link): New section.
4635         * modules/nanosleep (Link): New section.
4636         * modules/readline (Link): New section.
4637
4638 2007-01-27  Bruno Haible  <bruno@clisp.org>
4639
4640         Enforce the use of gnulib modules for unportable <string.h> functions.
4641         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
4642         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
4643         (gl_HEADER_STRING_H_BODY): Require it.
4644         * lib/string_.h: If the gnulib module XYZ is not present, redefine
4645         the symbol XYZ to one that gives a link error.
4646         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
4647         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
4648         * modules/mempcpy (configure.ac): Likewise.
4649         * modules/memrchr (configure.ac): Likewise.
4650         * modules/stpcpy (configure.ac): Likewise.
4651         * modules/stpncpy (configure.ac): Likewise.
4652         * modules/strcase (configure.ac): Likewise.
4653         * modules/strcasestr (configure.ac): Likewise.
4654         * modules/strchrnul (configure.ac): Likewise.
4655         * modules/strdup (configure.ac): Likewise.
4656         * modules/strndup (configure.ac): Likewise.
4657         * modules/strnlen (configure.ac): Likewise.
4658         * modules/strpbrk (configure.ac): Likewise.
4659         * modules/strsep (configure.ac): Likewise.
4660         * modules/strstr (configure.ac): Likewise.
4661         * modules/strtok_r (configure.ac): Likewise.
4662
4663 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
4664
4665         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
4666
4667 2007-01-30  Jim Meyering  <jim@meyering.net>
4668
4669         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
4670
4671 2007-01-29  Bruno Haible  <bruno@clisp.org>
4672
4673         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
4674         * lib/execute.c: Likewise.
4675         * lib/pipe.c: Likewise.
4676         * lib/printf-args.h: Likewise.
4677         * lib/printf-args.c: Likewise.
4678         * lib/printf-parse.c: Likewise.
4679         * lib/vasnprintf.c: Likewise.
4680
4681 2007-01-29  Eric Blake  <ebb9@byu.net>
4682
4683         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
4684         declaration.
4685
4686 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
4687
4688         * lib/strptime.h (strptime): Use 'restrict' for args where
4689         POSIX requires this.
4690         * lib/strptime.c (strptime): Likewise.
4691         Change license notice from LGPL to GPL, since gnulib-tool will
4692         change this as needed.
4693         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
4694         defined.
4695         Include "strptime.h" first, to check interface.
4696         Do not #undef _LIBC and _NL_CURRENT.
4697         Do not include <stdlib.h>; no longer needed.
4698         Include "time_r.h" and declare ptime_locale_status
4699         only if _LIBC is not defined.
4700         (__P): Remove unused macro.
4701         (match_string): Bring back glibc version, but use it only if _LIBC
4702         is defined.
4703         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
4704         Remove unnecessary assertion and abort() call.
4705         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
4706         * m4/strptime.m4: Fix serial number comment.
4707         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
4708         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
4709         (Depends-on): Add time_r.
4710
4711 2007-01-29  Bruno Haible  <bruno@clisp.org>
4712
4713         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
4714         strptime.
4715         * modules/strptime (Depends-on): Add stdbool.
4716         * lib/strptime.h: Include <time.h> always. Add comments.
4717
4718 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
4719
4720         * modules/strptime: New file.
4721         * lib/strptime.h: New file.
4722         * lib/strptime.c: New file.
4723         * m4/strptime.m4: New file.
4724
4725 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
4726
4727         * MODULES.html.sh: New module mpsort.
4728         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
4729
4730         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
4731         a circularity problem with HP-UX ia64 reported by Bob Proulx in
4732         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
4733         All uses changed.
4734         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
4735         All uses changed.
4736         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
4737         to _Restrict_.
4738         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
4739         the parameter matches the prototype.
4740
4741 2007-01-28  Jim Meyering  <jim@meyering.net>
4742
4743         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
4744         sys/time.h here, reverting that part of the previous patch:
4745         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
4746
4747 2007-01-28  Bruno Haible  <bruno@clisp.org>
4748
4749         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
4750         value of $(SYS_TIME_H).
4751         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
4752         remove it conditionally, too. [added by Jim Meyering]
4753         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
4754         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
4755         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
4756         GETTIMEOFDAY_REPLACEMENT to 1.
4757
4758 2007-01-28  Bruno Haible  <bruno@clisp.org>
4759
4760         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
4761         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
4762         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
4763         Set UNISTD_H instead of UNISTD_H2.
4764         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
4765
4766 2007-01-28  Bruno Haible  <bruno@clisp.org>
4767
4768         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
4769         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
4770
4771 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4772
4773         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
4774         (func_create_testdir): Ensure C locale for `grep' and `tr'
4775         character ranges.
4776         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
4777         ACLOCAL_AMFLAGS parsing state machine.
4778
4779 2007-01-27  Bruno Haible  <bruno@clisp.org>
4780
4781         * modules/unistr/base: Update.
4782
4783 2007-01-27  Bruno Haible  <bruno@clisp.org>
4784
4785         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
4786         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
4787         * modules/unistr/u32-mbtouc-unsafe: Renamed from
4788         modules/unistr/u32-mbtouc.
4789         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
4790         * lib/unistr.h: Update.
4791         * lib/linebreak.c: Update.
4792         * modules/unistr/u32-mbtouc: Renamed from
4793         modules/unistr/u32-mbtouc-safe.
4794         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
4795         * lib/unistr.h: Update.
4796         * lib/unistr/u32-to-u8.c: Update.
4797         * lib/unistr/u32-to-u16.c: Update.
4798
4799 2007-01-27  Bruno Haible  <bruno@clisp.org>
4800
4801         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
4802         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
4803         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
4804         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
4805         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
4806         * modules/unistr/u16-mbtouc-unsafe: Renamed from
4807         modules/unistr/u16-mbtouc.
4808         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
4809         * lib/unistr.h: Update.
4810         * lib/linebreak.c: Update.
4811         * modules/linebreak: Update.
4812         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
4813         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
4814         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
4815         * modules/unistr/u16-mbtouc: Renamed from
4816         modules/unistr/u16-mbtouc-safe.
4817         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
4818         * lib/unistr.h: Update.
4819         * lib/unistr/u16-to-u8.c: Update.
4820         * modules/unistr/u16-to-u8: Update.
4821         * lib/unistr/u16-to-u32.c: Update.
4822         * modules/unistr/u16-to-u32: Update.
4823
4824 2007-01-27  Bruno Haible  <bruno@clisp.org>
4825
4826         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
4827         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
4828         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
4829         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
4830         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
4831         * modules/unistr/u8-mbtouc-unsafe: Renamed from
4832         modules/unistr/u8-mbtouc.
4833         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
4834         * lib/unistr.h: Update.
4835         * lib/striconveh.c: Update.
4836         * modules/striconveh: Update.
4837         * lib/linebreak.c: Update.
4838         * modules/linebreak: Update.
4839         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
4840         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
4841         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
4842         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
4843         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
4844         * lib/unistr.h: Update.
4845         * lib/striconveh.c: Update.
4846         * modules/striconveh: Update.
4847         * lib/unistr/u8-to-u16.c: Update.
4848         * modules/unistr/u8-to-u16: Update.
4849         * lib/unistr/u8-to-u32.c: Update.
4850         * modules/unistr/u8-to-u32: Update.
4851
4852 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4853
4854         Sync from Libtool.
4855         * lib/argz.c: Do not include strings.h nor memory.h, include
4856         string.h unconditionally.  Patch by Simon Josefsson.
4857
4858 2007-01-27  Bruno Haible  <bruno@clisp.org>
4859
4860         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
4861         from gl_HEADER_STRING_H_BODY.
4862         (gl_HEADER_STRING_H_BODY): Require it.
4863         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
4864         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
4865         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
4866         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
4867         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
4868         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
4869         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
4870         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
4871         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
4872         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4873         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
4874         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
4875         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
4876         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
4877         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4878
4879 2007-01-27  Bruno Haible  <bruno@clisp.org>
4880
4881         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
4882         check_PROGRAMS into noinst_PROGRAMS.
4883         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
4884         check_PROGRAMS in this case.
4885         (func_import): Set for_test to false.
4886         (func_create_testdir): Set for_test to true.
4887
4888 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
4889             Bruno Haible  <bruno@clisp.org>
4890
4891         * modules/strcasestr (Files): Remove lib/strcasestr.h.
4892         (Depends-on): Add string.
4893         (Includes): Use <string.h> instead of strcasestr.h.
4894         * modules/string (Makefile.am): Also substitute the value of
4895         REPLACE_STRCASESTR.
4896         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
4897         assume strcasestr is declared in <string.h> not <strings.h>. Also
4898         set REPLACE_STRCASESTR.
4899         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
4900         REPLACE_STRCASESTR.
4901         * lib/strcasestr.h: Remove file.
4902         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
4903         * lib/string_.h (strcasestr): New declaration.
4904
4905 2007-01-27  Bruno Haible  <bruno@clisp.org>
4906
4907         * lib/string_.h: Use 'extern'.
4908
4909 2007-01-27  Jim Meyering  <jim@meyering.net>
4910
4911         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
4912         of set-but-not-used local, "q".
4913
4914         * lib/mempcpy.c: Include <config.h> before <string.h>.
4915         This fixes a compilation error on HP-UX, due to the system's
4916         "restrict"-using mempcpy prototype.
4917
4918 2007-01-26  Bruno Haible  <bruno@clisp.org>
4919
4920         Small optimization.
4921         * lib/javacomp.c: Include c-strstr.h.
4922          (is_envjavac_gcj): Use c_strstr instead of strstr.
4923         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
4924
4925 2007-01-26  Bruno Haible  <bruno@clisp.org>
4926
4927         * MODULES.html.sh (Unicode string functions): Add the new modules.
4928
4929         * modules/uniconv/u32-strconv-to-locale: New file.
4930         * lib/uniconv/u32-strconv-to-locale.c: New file.
4931
4932         * modules/uniconv/u16-strconv-to-locale: New file.
4933         * lib/uniconv/u16-strconv-to-locale.c: New file.
4934
4935         * modules/uniconv/u8-strconv-to-locale: New file.
4936         * lib/uniconv/u8-strconv-to-locale.c: New file.
4937
4938         * modules/uniconv/u32-strconv-from-locale: New file.
4939         * lib/uniconv/u32-strconv-from-locale.c: New file.
4940
4941         * modules/uniconv/u16-strconv-from-locale: New file.
4942         * lib/uniconv/u16-strconv-from-locale.c: New file.
4943
4944         * modules/uniconv/u8-strconv-from-locale: New file.
4945         * lib/uniconv/u8-strconv-from-locale.c: New file.
4946
4947         * modules/uniconv/u32-strconv-to-enc: New file.
4948         * lib/uniconv/u32-strconv-to-enc.c: New file.
4949         * modules/uniconv/u32-strconv-to-enc-tests: New file.
4950         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
4951
4952         * modules/uniconv/u16-strconv-to-enc: New file.
4953         * lib/uniconv/u16-strconv-to-enc.c: New file.
4954         * lib/uniconv/u-strconv-to-enc.h: New file.
4955         * modules/uniconv/u16-strconv-to-enc-tests: New file.
4956         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
4957
4958         * modules/uniconv/u8-strconv-to-enc: New file.
4959         * lib/uniconv/u8-strconv-to-enc.c: New file.
4960         * modules/uniconv/u8-strconv-to-enc-tests: New file.
4961         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
4962
4963         * modules/uniconv/u32-strconv-from-enc: New file.
4964         * lib/uniconv/u32-strconv-from-enc.c: New file.
4965         * modules/uniconv/u32-strconv-from-enc-tests: New file.
4966         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
4967
4968         * modules/uniconv/u16-strconv-from-enc: New file.
4969         * lib/uniconv/u16-strconv-from-enc.c: New file.
4970         * modules/uniconv/u16-strconv-from-enc-tests: New file.
4971         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
4972
4973         * modules/uniconv/u8-strconv-from-enc: New file.
4974         * lib/uniconv/u8-strconv-from-enc.c: New file.
4975         * lib/uniconv/u-strconv-from-enc.h: New file.
4976         * modules/uniconv/u8-strconv-from-enc-tests: New file.
4977         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
4978
4979         * modules/uniconv/u32-conv-from-enc: New file.
4980         * lib/uniconv/u32-conv-from-enc.c: New file.
4981         * modules/uniconv/u32-conv-from-enc-tests: New file.
4982         * tests/uniconv/test-u32-conv-from-enc.c: New file.
4983
4984         * modules/uniconv/u16-conv-from-enc: New file.
4985         * lib/uniconv/u16-conv-from-enc.c: New file.
4986         * lib/uniconv/u-conv-from-enc.h: New file.
4987         * modules/uniconv/u16-conv-from-enc-tests: New file.
4988         * tests/uniconv/test-u16-conv-from-enc.c: New file.
4989
4990         * modules/uniconv/u8-conv-from-enc: New file.
4991         * lib/uniconv/u8-conv-from-enc.c: New file.
4992         * modules/uniconv/u8-conv-from-enc-tests: New file.
4993         * tests/uniconv/test-u8-conv-from-enc.c: New file.
4994
4995         * modules/uniconv/base: New file.
4996         * lib/uniconv.h: New file.
4997
4998 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
4999
5000         * doc/gnulib-tool.texi (Initial import): Update to match current
5001         behavior with strdup module.
5002         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
5003         * lib/memmem.h: Remove; all uses removed.  This is now done
5004         by <string.h>.
5005         * lib/mempcpy.h: Likewise.
5006         * lib/memrchr.h: Likewise.
5007         * lib/stpcpy.h: Likewise.
5008         * lib/stpncpy.h: Likewise.
5009         * lib/strcase.h: Likewise.
5010         * lib/strchrnul.h: Likewise.
5011         * lib/strdup.h: Likewise.
5012         * lib/strndup.h: Likewise.
5013         * lib/strnlen.h: Likewise.
5014         * lib/strpbrk.h: Likewise.
5015         * lib/strsep.h: Likewise.
5016         * lib/strstr.h: Likewise.
5017         * lib/strtok_r.h: Likewise.
5018         * lib/string_.h: New file.
5019         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
5020         Rely on <string.h> instead.
5021         * lib/canon-host.c: Likewise.
5022         * lib/chdir-long.c: Likewise.
5023         * lib/concatpath.c: Likewise.
5024         * lib/exclude.c: Likewise.
5025         * lib/fchdir.c: Likewise.
5026         * lib/getaddrinfo.c: Likewise.
5027         * lib/getcwd.c: Likewise.
5028         * lib/getsubopt.c: Likewise.
5029         * lib/glob.c: Likewise.
5030         * lib/hard-locale.c: Likewise.
5031         * lib/iconvme.c: Likewise.
5032         * lib/javacomp.c: Likewise.
5033         * lib/mempcpy.c: Likewise.
5034         * lib/memrchr.c: Likewise.
5035         * lib/regex_internal.h: Likewise.
5036         * lib/stpncpy.c: Likewise.
5037         * lib/strcasecmp.c: Likewise.
5038         * lib/strchrnul.c: Likewise.
5039         * lib/strdup.c: Likewise.
5040         * lib/striconv.c: Likewise.
5041         * lib/striconveh.c: Likewise.
5042         * lib/striconveha.c: Likewise.
5043         * lib/strncasecmp.c: Likewise.
5044         * lib/strndup.c: Likewise.
5045         * lib/strnlen.c: Likewise.
5046         * lib/strsep.c: Likewise.
5047         * lib/strstr.c: Likewise.
5048         * lib/strtok_r.c: Likewise.
5049         * lib/userspec.c: Likewise.
5050         * lib/w32spawn.h: Likewise.
5051         * lib/xstrndup.c: Likewise.
5052         * lib/mountlist.c (strstr): Remove decl.
5053         * m4/string_h.m4: New file.
5054         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
5055         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
5056         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
5057         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
5058         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
5059         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
5060         Set REPLACE_STRCASECMP if necessary.
5061         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
5062         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
5063         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
5064         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
5065         HAVE_DECL_STRDUP if necessary.
5066         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
5067         since gl_FUNC_STRNDUP does that now.
5068         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
5069         Check for decl here...
5070         (gl_PREREQ_STRNLEN): ... not here.
5071         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
5072         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
5073         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
5074         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
5075         necessary.
5076         * modules/string: New file.
5077         * modules/memmem (Files): Remove special-purpose include file.
5078         (Depends-on): Add string.
5079         (Include): Include <string.h>, not the removed file.
5080         * modules/mempcpy: Likewise.
5081         * modules/memrchr: Likewise.
5082         * modules/stpcpy: Likewise.
5083         * modules/stpncpy: Likewise.
5084         * modules/strcase: Likewise.
5085         * modules/strchrnul: Likewise.
5086         * modules/strdup: Likewise.
5087         * modules/strndup: Likewise.
5088         * modules/strnlen: Likewise.
5089         * modules/strpbrk: Likewise.
5090         * modules/strsep: Likewise.
5091         * modules/strstr: Likewise.
5092         * modules/strtok_r: Likewise.
5093         * tests/test-dirname.c: Don't include "strdup.h", since
5094         <string.h> now suffices.
5095         * tests/test-memmem.c: Don't include "memmem.h", since
5096         <string.h> now suffices.
5097
5098 2007-01-25  Bruno Haible  <bruno@clisp.org>
5099
5100         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
5101         *resultp is 0.
5102
5103         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
5104         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
5105         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
5106         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
5107
5108         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
5109         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
5110         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
5111         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
5112         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
5113         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
5114
5115 2007-01-24  Bruno Haible  <bruno@clisp.org>
5116
5117         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
5118         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
5119         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
5120         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
5121         gl_FUNC_FTS_CORE.
5122         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
5123         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
5124         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
5125         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
5126         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
5127         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
5128         gl_FUNC_FCHOWNAT.
5129         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
5130         gl_FUNC_STRFTIME.
5131         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
5132         Reported by Ralf Wildenhues.
5133
5134 2007-01-24  Bruno Haible  <bruno@clisp.org>
5135
5136         Drop AC_REQUIRE calls that are redundant with the module dependencies.
5137         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
5138         gl_GETADDRINFO.
5139         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
5140         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
5141         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
5142
5143 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
5144
5145         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
5146         Don't use 'exit'; just return from 'main'.
5147         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
5148
5149         * lib/fnmatch_.h: Readjust white space and comments to match
5150         glibc, to avoid spurious diffs.
5151
5152 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5153
5154         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
5155         2004-12-01 change by Jakub Jelinek, since this code won't compile
5156         if !LIBC.  Problem reported by Bob Proulx.
5157
5158 2007-01-23  Bruno Haible  <bruno@clisp.org>
5159
5160         * lib/striconveh.c: Include c-strcaseeq.h.
5161         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
5162         * modules/striconveh (Depends-on): Add c-strcaseeq.
5163
5164 2007-01-23  Bruno Haible  <bruno@clisp.org>
5165
5166         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
5167
5168         * modules/c-strcaseeq: New file.
5169         * lib/c-strcaseeq.h: New file.
5170
5171         * modules/streq: New file.
5172         * lib/streq.h: New file.
5173
5174 2007-01-23  Bruno Haible  <bruno@clisp.org>
5175
5176         * modules/striconveha-tests: New file.
5177         * tests/test-striconveha.c: New file.
5178
5179         * lib/striconveha.h: Include <stdbool.h>.
5180         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
5181         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
5182         (mem_iconveha_notranslit): Renamed from mem_iconveha.
5183         (mem_iconveha): New function.
5184         (str_iconveha_notranslit): Renamed from str_iconveha.
5185         (str_iconveha): New function.
5186         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
5187         c-strcase.
5188
5189 2007-01-23  Bruno Haible  <bruno@clisp.org>
5190
5191         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
5192         encodings without forgiving before trying any encoding with handler.
5193         (str_iconveha): Try all encodings without forgiving before trying any
5194         encoding with handler.
5195
5196 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5197
5198         Import the following changes from libc.
5199
5200         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
5201
5202         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
5203
5204         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
5205
5206         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
5207         normal_bracket label.
5208
5209         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
5210
5211         [BZ #361]
5212         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
5213         to normal_bracket after fetching the next character.
5214
5215 2007-01-22  Bruno Haible  <bruno@clisp.org>
5216
5217         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
5218         argument.
5219         * lib/striconveh.c (iconv_carefully_1): New function.
5220         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
5221         argument.
5222         (str_cd_iconveh): Update.
5223         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
5224         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
5225         * tests/test-striconveh.c (MAGIC): New macro.
5226         (new_offsets): New function.
5227         (main): Test call with and without offsets.
5228
5229 2007-01-22  Bruno Haible  <bruno@clisp.org>
5230
5231         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
5232         * modules/sys_select (Makefile.am): Likewise.
5233         * modules/sys_socket (Makefile.am): Likewise.
5234         * modules/sys_time (Makefile.am): Likewise.
5235
5236 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
5237
5238         * modules/gettimeofday (License): Change from GPL to LGPL, since
5239         gettimeofday is a library function.
5240
5241 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5242
5243         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
5244
5245 2007-01-21  Bruno Haible  <bruno@clisp.org>
5246
5247         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
5248
5249 2007-01-21  Bruno Haible  <bruno@clisp.org>
5250
5251         * modules/striconveha: New file.
5252         * lib/striconveha.h: New file.
5253         * lib/striconveha.c: New file.
5254         * MODULES.html.sh (Internationalization functions): Add striconveha.
5255         * lib/striconv.c (str_iconv): Optimize the case of an empty input
5256         string.
5257         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
5258
5259 2007-01-21  Bruno Haible  <bruno@clisp.org>
5260
5261         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
5262         * lib/striconveh.c (str_iconveh): Likewise.
5263
5264 2007-01-21  Bruno Haible  <bruno@clisp.org>
5265
5266         * lib/striconveh.h (mem_iconveh): New declaration.
5267         * lib/striconveh.c (mem_iconveh): New function.
5268         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
5269
5270 2007-01-21  Bruno Haible  <bruno@clisp.org>
5271
5272         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
5273
5274         * lib/striconveh.h (mem_cd_iconveh): Change specification.
5275         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
5276         original result buffer.
5277         (str_cd_iconveh): Update.
5278         * tests/test-striconveh.c (main): Update.
5279
5280         * lib/striconv.h (mem_cd_iconv): Change specification.
5281         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
5282         result buffer.
5283         (str_cd_iconv): Update.
5284         * tests/test-striconv.c (main): Update.
5285
5286 2007-01-21  Bruno Haible  <bruno@clisp.org>
5287
5288         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
5289
5290 2007-01-20  Jim Meyering  <jim@meyering.net>
5291
5292         * lib/userspec.c (parse_with_separator): If a user or group string
5293         starts with "+", skip the corresponding name-to-ID look-up, since
5294         such a look-up must fail: user and group names may not include "+".
5295
5296 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
5297
5298         * lib/poll.c: Include sys/time.h and time.h unconditionally,
5299         since we now assume the sys_time module.
5300         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
5301         check for sys/time.h; no longer needed.
5302         * modules/poll (Depends-on): Depend on sys_time.
5303
5304 2007-01-18  Bruno Haible  <bruno@clisp.org>
5305
5306         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
5307         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5308
5309         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
5310         gettimeofday.
5311
5312         * tests/test-gettimeofday.c: Include <time.h>.
5313         (dummy): Remove variable.
5314
5315         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
5316         gl_HEADER_SYS_TIME_H.
5317         (gl_HEADER_SYS_TIME_H): New macro.
5318
5319         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
5320         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5321         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
5322         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
5323         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5324         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
5325         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
5326         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5327         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
5328         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
5329         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5330
5331         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
5332         last change; it caused a compilation error when cross-compiling to
5333         Cygwin.
5334
5335 2007-01-18  Jim Meyering  <jim@meyering.net>
5336
5337         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
5338         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
5339         than the race-prone "test -d sys || mkdir sys".
5340         (configure.ac): Use AC_PROG_MKDIR_P.
5341         * modules/sys_select: Likewise.
5342         * modules/sys_socket: Likewise.
5343         * modules/sys_time: Likewise.
5344
5345 2007-01-18  Eric Blake  <ebb9@byu.net>
5346
5347         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
5348         replace gettimeofday.
5349         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
5350         name, to avoid infinite recursion.
5351
5352 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
5353
5354         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
5355         module sys_time.
5356         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
5357         assume timespec.h defines struct timeval.
5358         * lib/settime.c: Likewise.
5359         * lib/utimens.c: Likewise.
5360         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
5361         since we now assume the gettimeofday module.
5362         * lib/tempname.c (__gen_tempname): Likewise.
5363         * lib/gettimeofday.h: Remove.
5364         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
5365         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
5366         Include <time.h>, for 'time()'.
5367         (localtime_buffer_addr): Also use this workaround if
5368         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
5369         to simplify the uses.  All uses changed.
5370         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
5371         that #undef is inside {}, and 'const' follows type name consistently.
5372         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
5373         (gettimeofday): Do not use the maximum possible value for
5374         tv->tv_usec, since that might break usages other than ls.c.
5375         Instead, we'll leave ls.c alone.  This undoes today's patch
5376         by Bruno.  Add a compile-time warning for 1s-clock resolution;
5377         we've never observed the problem but might as well keep the
5378         canary.
5379         * lib/nanosleep.c: Include timespec.h first, for interface check.
5380         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
5381         now assume the sys_time module.
5382         * lib/tempname.c: Likewise.
5383         * lib/timespec.h: Likewise.
5384         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
5385         needed.
5386         * lib/strftime.c: Likewise.
5387         * lib/timespec.h: Likewise.
5388         * lib/posixtm.c: Include posixtm.h first, for interface check.
5389         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
5390         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
5391         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
5392         * lib/sys_time_.h: New file.
5393         * lib/timespec.h (struct timespec): Use long int, not long.
5394         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
5395         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
5396         Remove obsolescent call to AC_HEADER_TIME.
5397         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
5398         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5399         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5400         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
5401         Likewise.
5402         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
5403         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
5404         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
5405         into the sys_time module.  Check for gettimeofday just once.
5406         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
5407         for gettimeofday signature to just check the signature.  Merely
5408         compile it, since linking doesn't test signature.  Improve test for
5409         whether gettimeofday.o is actually needed.
5410         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
5411         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
5412         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
5413         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5414         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
5415         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
5416         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
5417         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
5418         than worrying about sys/time.h.
5419         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5420         Don't bother worrying about TIME_WITH_SYS_TIME.
5421         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
5422         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
5423         * m4/sys_time_h.m4: New file.
5424         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
5425         Don't include sys/time.h.  Return from main rather than exiting.
5426         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
5427         all uses changed.
5428         * modules/gethrxtime (Depends-on): Add sys_time.
5429         * modules/gettime (Depends-on): Likewise.
5430         * modules/gettimeofday (Depends-on): Likewise.
5431         * modules/nanosleep (Depends-on): Likewise.
5432         * modules/settime (Depends-on): Likewise.
5433         * modules/tempname (Depends-on): Likewise.
5434         * modules/utimens (Depends-on): Likewise.
5435         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
5436         (Include:) Change back to <sys/time.h>.
5437         (Maintainer:) Add self.
5438         * modules/sys_time: New file.
5439         * modules/tempname (Depends-on): Add gettimeofday.
5440         * tests/test-gettimeofday.c: Include <sys/time.h>
5441         rather than gettimeofday.h.
5442
5443 2007-01-17  Bruno Haible  <bruno@clisp.org>
5444
5445         * gnulib-tool (func_get_license): Revert last patch. Instead, let
5446         the license default to GPL.
5447         (func_create_testdir): Don't complain if a module is LGPL and its
5448         tests module depends on GPLed modules.
5449
5450 2007-01-17  Bruno Haible  <bruno@clisp.org>
5451
5452         * lib/gettimeofday.c (gettimeofday): Add code for the case
5453         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
5454         maximum possible value for tv->tv_usec, rather than the minimum one.
5455
5456 2005-10-08  Martin Lambers  <marlam@marlam.de>
5457 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
5458 2007-01-16  Bruno Haible  <bruno@clisp.org>
5459
5460         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
5461         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
5462         gl_FUNC_GETTIMEOFDAY.
5463         (Include): Add gettimeofday.h.
5464         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
5465         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
5466         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
5467         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
5468         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
5469         * lib/gettimeofday.h: New file.
5470         * lib/gettimeofday.c: Include <sys/timeb.h>.
5471         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
5472         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5473         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
5474         fall back on time().
5475
5476         * tests/test-gettimeofday.c: New file.
5477         * modules/gettimeofday-tests: New file.
5478
5479 2007-01-16  Eric Blake  <ebb9@byu.net>
5480
5481         * modules/fnmatch (Depends-on): Depend on wchar.
5482         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
5483         * m4/fnmatch.m4: Likewise.
5484         * modules/mbchar (Makefile.am): Assume <wchar.h>.
5485         * m4/mbchar.m4: Likewise.
5486         * modules/mbswidth (Depends-on): Depend on wchar.
5487         * lib/mbswidth.c: Assume <wchar.h>.
5488         * m4/mbswidth.m4: Likewise.
5489         * modules/quotearg (Depends-on): Depend on wchar.
5490         * lib/quotearg.c: Assume <wchar.h>.
5491         * m4/quotearg.m4: Likewise.
5492         * modules/regex (Depends-on): Depend on wchar.
5493         * lib/regex_internal.h: Assume <wchar.h>.
5494         * m4/regex.m4: Likewise.
5495         * modules/stdint (Depends-on): Depend on wchar.
5496         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
5497         * m4/stdint.m4: Likewise.
5498         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
5499         * modules/strftime (Depends-on): Depend on wchar.
5500         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
5501         * modules/strtol (Depends-on): Depend on wchar.
5502         * lib/strtol.c: Assume <wchar.h>.
5503         * modules/wcwidth (Depends-on): Depend on wchar.
5504         * lib/wcwidth.h: Assume <wchar.h>.
5505         * m4/wcwidth.m4: Likewise.
5506
5507 2007-01-16  Bruno Haible  <bruno@clisp.org>
5508
5509         * modules/csharpexec-script: New, created from...
5510         * modules/csharpexec: ... this.
5511
5512 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
5513
5514         * modules/javaexec-script: New, created from...
5515         * modules/javaexec: ... this.
5516
5517 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5518
5519         * modules/poll (Dependencies): Add sys_select.
5520
5521 2007-01-15  Jim Meyering  <jim@meyering.net>
5522
5523         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
5524         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
5525         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
5526         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
5527
5528 2007-01-15  Bruno Haible  <bruno@clisp.org>
5529
5530         * modules/striconveh: New file.
5531         * lib/striconveh.h: New file.
5532         * lib/striconveh.c: New file.
5533         * MODULES.html.sh (Internationalization functions): Add striconveh.
5534
5535         * modules/striconveh-tests: New file.
5536         * tests/test-striconveh.c: New file.
5537
5538 2007-01-15  Bruno Haible  <bruno@clisp.org>
5539
5540         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
5541         not from GNU libiconv or GNU libc.
5542
5543 2007-01-15  Bruno Haible  <bruno@clisp.org>
5544
5545         * doc/gnulib-intro.texi (Copyright): Explain the different license
5546         terms for module descriptions, autoconf macros, tests, documentation.
5547
5548 2007-01-14  Bruno Haible  <bruno@clisp.org>
5549
5550         * modules/striconv-tests: New file.
5551         * tests/test-striconv.c: New file.
5552
5553 2007-01-14  Bruno Haible  <bruno@clisp.org>
5554
5555         * modules/iconv-tests: New file.
5556         * tests/test-iconv.c: New file.
5557
5558 2007-01-14  Bruno Haible  <bruno@clisp.org>
5559
5560         * gnulib-tool (func_get_license): For test modules, use the license of
5561         the main module.
5562
5563 2007-01-14  Bruno Haible  <bruno@clisp.org>
5564
5565         * modules/iconv (Include): Clarify that <iconv.h> can only be included
5566         if iconv is found to exist.
5567
5568 2007-01-14  Bruno Haible  <bruno@clisp.org>
5569
5570         * modules/c-ctype-tests: New file.
5571         * tests/test-c-ctype.c: New file.
5572
5573 2007-01-14  Bruno Haible  <bruno@clisp.org>
5574
5575         * modules/binary-io-tests: New file.
5576         * tests/test-binary-io.sh: New file.
5577         * tests/test-binary-io.c: New file.
5578
5579 2007-01-14  Bruno Haible  <bruno@clisp.org>
5580
5581         * modules/array-oset-tests: New file.
5582         * tests/test-array_oset.c: New file.
5583
5584 2007-01-14  Bruno Haible  <bruno@clisp.org>
5585
5586         * modules/array-list-tests: New file.
5587         * tests/test-array_list.c: New file.
5588
5589 2007-01-14  Bruno Haible  <bruno@clisp.org>
5590
5591         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
5592         and make.
5593         Reported by Simon Josefsson in
5594         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
5595
5596 2007-01-14  Bruno Haible  <bruno@clisp.org>
5597
5598         * modules/allocsa-tests: New file.
5599         * tests/test-allocsa.c: New file.
5600
5601 2007-01-14  Bruno Haible  <bruno@clisp.org>
5602
5603         * modules/fchdir (Depends-on): Add absolute-header.
5604         * modules/unistd (Depends-on): Likewise.
5605
5606 2006-12-30  Bruno Haible  <bruno@clisp.org>
5607
5608         * modules/fchdir: New file.
5609         * modules/unistd (Files): Add lib/unistd_.h.
5610         (Makefile.am): Generate unistd.h from unistd_.h.
5611         * lib/fchdir.c: New file.
5612         * lib/dirent_.h: New file.
5613         * lib/unistd_.h: New file.
5614         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
5615         * m4/fchdir.m4: New file.
5616         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
5617         (gl_HEADER_UNISTD): Invoke it.
5618         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
5619         function.
5620         * lib/backupfile.c (opendir, closedir): Undefine.
5621         * lib/chown.c (open, close): Undefine.
5622         * lib/clean-temp.c (open, close): Undefine.
5623         * lib/copy-file.c (open, close): Undefine.
5624         * lib/execute.c (open, close): Undefine.
5625         * lib/fsusage.c (open, close): Undefine.
5626         * lib/gc-gnulib.c (open, close): Undefine.
5627         * lib/getcwd.c (opendir, closedir): Undefine.
5628         * lib/glob.c (opendir, closedir): Undefine.
5629         * lib/javacomp.c (open, close): Undefine.
5630         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
5631         * lib/openat-proc.c (open, close): Undefine.
5632         * lib/pagealign_alloc.c (open, close): Undefine.
5633         * lib/pipe.c (open, close): Undefine.
5634         * lib/progreloc.c (open, close): Undefine.
5635         * lib/savedir.c (opendir, closedir): Undefine.
5636         * lib/utime.c (open, close): Undefine.
5637         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
5638
5639 2007-01-10  Bruno Haible  <bruno@clisp.org>
5640
5641         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
5642
5643 2007-01-12  Eric Blake  <ebb9@byu.net>
5644
5645         Provide a robust <wchar.h>.  Further simplifications are now
5646         possible in other modules, but not included here.
5647         * modules/wchar: New module.
5648         * m4/wchar.m4: New file.
5649         * lib/wchar_.h: Likewise.
5650         * modules/mbchar (Depends-on): Depend on wchar, as the first use
5651         of the new module.
5652         * MODULES.html.sh (Extended multibyte and wide character utilities):
5653         New section.
5654
5655 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
5656
5657         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
5658         to a reasonable default for memory allocation.
5659         (xreadlink): Don't allocate a huge buffer, to work around a buggy
5660         file system that reports garbage st_size values for symlinks.
5661         Problem reported by Liyang Hu.
5662
5663 2007-01-11  Simon Josefsson  <simon@josefsson.org>
5664
5665         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
5666         Emacs .#* auto-save files).
5667
5668 2007-01-11  Bruno Haible  <bruno@clisp.org>
5669
5670         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
5671         directory.
5672
5673 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
5674
5675         Use @...@ consistently in lib/wctype_.h.
5676         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
5677         on it being set to 1 or 0.
5678         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
5679         go back to AC_SUBSTing it.
5680         * modules/wctype (Makefile.am): Undo previous change.
5681
5682 2007-01-10  Eric Blake  <ebb9@byu.net>
5683
5684         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
5685         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
5686         * modules/wctype (Makefile.am): Likewise.
5687         Reported by Chris McGuire.
5688
5689 2007-01-10  Jim Meyering  <jim@meyering.net>
5690
5691         fts.c: a small readability/maintainability improvement
5692         * lib/fts.c (fts_read): Make this code slightly more readable and
5693         maintainable by hoisting the "sp->fts_cur = p" assignments to
5694         immediately follow the statements that set P.  Derived from
5695         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
5696
5697 2007-01-10  Eric Blake  <ebb9@byu.net>
5698
5699         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
5700         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
5701         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
5702         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
5703         Reported by Chris McGuire.
5704
5705 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5706
5707         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
5708         in sed script.
5709
5710 2007-01-09  Bruno Haible  <bruno@clisp.org>
5711
5712         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
5713         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
5714         variables.
5715         (func_module): Use them.
5716
5717 2007-01-09  Bruno Haible  <bruno@clisp.org>
5718
5719         * modules/unistr/base: New file.
5720         * lib/unistr.h: New file.
5721
5722         * modules/unistr/u8-to-u16: New file.
5723         * lib/unistr/u8-to-u16.c: New file.
5724
5725         * modules/unistr/u8-to-u32: New file.
5726         * lib/unistr/u8-to-u32.c: New file.
5727
5728         * modules/unistr/u16-to-u8: New file.
5729         * lib/unistr/u16-to-u8.c: New file.
5730
5731         * modules/unistr/u16-to-u32: New file.
5732         * lib/unistr/u16-to-u32.c: New file.
5733
5734         * modules/unistr/u32-to-u8: New file.
5735         * lib/unistr/u32-to-u8.c: New file.
5736
5737         * modules/unistr/u32-to-u16: New file.
5738         * lib/unistr/u32-to-u16.c: New file.
5739
5740         * modules/unistr/u8-check: New file.
5741         * modules/unistr/u16-check: New file.
5742         * modules/unistr/u32-check: New file.
5743         * lib/unistr/u8-check.c: New file.
5744         * lib/unistr/u16-check.c: New file.
5745         * lib/unistr/u32-check.c: New file.
5746
5747         * modules/unistr/u8-chr: New file.
5748         * modules/unistr/u16-chr: New file.
5749         * modules/unistr/u32-chr: New file.
5750         * lib/unistr/u8-chr.c: New file.
5751         * lib/unistr/u16-chr.c: New file.
5752         * lib/unistr/u32-chr.c: New file.
5753
5754         * modules/unistr/u8-cmp: New file.
5755         * modules/unistr/u16-cmp: New file.
5756         * modules/unistr/u32-cmp: New file.
5757         * lib/unistr/u8-cmp.c: New file.
5758         * lib/unistr/u16-cmp.c: New file.
5759         * lib/unistr/u32-cmp.c: New file.
5760
5761         * modules/unistr/u8-cpy: New file.
5762         * modules/unistr/u16-cpy: New file.
5763         * modules/unistr/u32-cpy: New file.
5764         * lib/unistr/u8-cpy.c: New file.
5765         * lib/unistr/u16-cpy.c: New file.
5766         * lib/unistr/u32-cpy.c: New file.
5767         * lib/unistr/u-cpy.h: New file.
5768
5769         * modules/unistr/u8-cpy-alloc: New file.
5770         * modules/unistr/u16-cpy-alloc: New file.
5771         * modules/unistr/u32-cpy-alloc: New file.
5772         * lib/unistr/u8-cpy-alloc.c: New file.
5773         * lib/unistr/u16-cpy-alloc.c: New file.
5774         * lib/unistr/u32-cpy-alloc.c: New file.
5775         * lib/unistr/u-cpy-alloc.h: New file.
5776
5777         * modules/unistr/u8-endswith: New file.
5778         * modules/unistr/u16-endswith: New file.
5779         * modules/unistr/u32-endswith: New file.
5780         * lib/unistr/u8-endswith.c: New file.
5781         * lib/unistr/u16-endswith.c: New file.
5782         * lib/unistr/u32-endswith.c: New file.
5783         * lib/unistr/u-endswith.h: New file.
5784
5785         * modules/unistr/u8-mblen: New file.
5786         * modules/unistr/u16-mblen: New file.
5787         * modules/unistr/u32-mblen: New file.
5788         * lib/unistr/u8-mblen.c: New file.
5789         * lib/unistr/u16-mblen.c: New file.
5790         * lib/unistr/u32-mblen.c: New file.
5791
5792         * modules/unistr/u8-mbtouc: New file.
5793         * modules/unistr/u16-mbtouc: New file.
5794         * modules/unistr/u32-mbtouc: New file.
5795         * lib/unistr/u8-mbtouc.c: New file.
5796         * lib/unistr/u16-mbtouc.c: New file.
5797         * lib/unistr/u32-mbtouc.c: New file.
5798
5799         * modules/unistr/u8-mbtouc-safe: New file.
5800         * modules/unistr/u16-mbtouc-safe: New file.
5801         * modules/unistr/u32-mbtouc-safe: New file.
5802         * lib/unistr/u8-mbtouc-safe.c: New file.
5803         * lib/unistr/u16-mbtouc-safe.c: New file.
5804         * lib/unistr/u32-mbtouc-safe.c: New file.
5805
5806         * modules/unistr/u8-move: New file.
5807         * modules/unistr/u16-move: New file.
5808         * modules/unistr/u32-move: New file.
5809         * lib/unistr/u8-move.c: New file.
5810         * lib/unistr/u16-move.c: New file.
5811         * lib/unistr/u32-move.c: New file.
5812         * lib/unistr/u-move.h: New file.
5813
5814         * modules/unistr/u8-next: New file.
5815         * modules/unistr/u16-next: New file.
5816         * modules/unistr/u32-next: New file.
5817         * lib/unistr/u8-next.c: New file.
5818         * lib/unistr/u16-next.c: New file.
5819         * lib/unistr/u32-next.c: New file.
5820
5821         * modules/unistr/u8-prev: New file.
5822         * modules/unistr/u16-prev: New file.
5823         * modules/unistr/u32-prev: New file.
5824         * lib/unistr/u8-prev.c: New file.
5825         * lib/unistr/u16-prev.c: New file.
5826         * lib/unistr/u32-prev.c: New file.
5827
5828         * modules/unistr/u8-set: New file.
5829         * modules/unistr/u16-set: New file.
5830         * modules/unistr/u32-set: New file.
5831         * lib/unistr/u8-set.c: New file.
5832         * lib/unistr/u16-set.c: New file.
5833         * lib/unistr/u32-set.c: New file.
5834         * lib/unistr/u-set.h: New file.
5835
5836         * modules/unistr/u8-startswith: New file.
5837         * modules/unistr/u16-startswith: New file.
5838         * modules/unistr/u32-startswith: New file.
5839         * lib/unistr/u8-startswith.c: New file.
5840         * lib/unistr/u16-startswith.c: New file.
5841         * lib/unistr/u32-startswith.c: New file.
5842         * lib/unistr/u-startswith.h: New file.
5843
5844         * modules/unistr/u8-stpcpy: New file.
5845         * modules/unistr/u16-stpcpy: New file.
5846         * modules/unistr/u32-stpcpy: New file.
5847         * lib/unistr/u8-stpcpy.c: New file.
5848         * lib/unistr/u16-stpcpy.c: New file.
5849         * lib/unistr/u32-stpcpy.c: New file.
5850         * lib/unistr/u-stpcpy.h: New file.
5851
5852         * modules/unistr/u8-stpncpy: New file.
5853         * modules/unistr/u16-stpncpy: New file.
5854         * modules/unistr/u32-stpncpy: New file.
5855         * lib/unistr/u8-stpncpy.c: New file.
5856         * lib/unistr/u16-stpncpy.c: New file.
5857         * lib/unistr/u32-stpncpy.c: New file.
5858         * lib/unistr/u-stpncpy.h: New file.
5859
5860         * modules/unistr/u8-strcat: New file.
5861         * modules/unistr/u16-strcat: New file.
5862         * modules/unistr/u32-strcat: New file.
5863         * lib/unistr/u8-strcat.c: New file.
5864         * lib/unistr/u16-strcat.c: New file.
5865         * lib/unistr/u32-strcat.c: New file.
5866         * lib/unistr/u-strcat.h: New file.
5867
5868         * modules/unistr/u8-strchr: New file.
5869         * modules/unistr/u16-strchr: New file.
5870         * modules/unistr/u32-strchr: New file.
5871         * lib/unistr/u8-strchr.c: New file.
5872         * lib/unistr/u16-strchr.c: New file.
5873         * lib/unistr/u32-strchr.c: New file.
5874
5875         * modules/unistr/u8-strcmp: New file.
5876         * modules/unistr/u16-strcmp: New file.
5877         * modules/unistr/u32-strcmp: New file.
5878         * lib/unistr/u8-strcmp.c: New file.
5879         * lib/unistr/u16-strcmp.c: New file.
5880         * lib/unistr/u32-strcmp.c: New file.
5881
5882         * modules/unistr/u8-strcpy: New file.
5883         * modules/unistr/u16-strcpy: New file.
5884         * modules/unistr/u32-strcpy: New file.
5885         * lib/unistr/u8-strcpy.c: New file.
5886         * lib/unistr/u16-strcpy.c: New file.
5887         * lib/unistr/u32-strcpy.c: New file.
5888         * lib/unistr/u-strcpy.h: New file.
5889
5890         * modules/unistr/u8-strcspn: New file.
5891         * modules/unistr/u16-strcspn: New file.
5892         * modules/unistr/u32-strcspn: New file.
5893         * lib/unistr/u8-strcspn.c: New file.
5894         * lib/unistr/u16-strcspn.c: New file.
5895         * lib/unistr/u32-strcspn.c: New file.
5896         * lib/unistr/u-strcspn.h: New file.
5897
5898         * modules/unistr/u8-strdup: New file.
5899         * modules/unistr/u16-strdup: New file.
5900         * modules/unistr/u32-strdup: New file.
5901         * lib/unistr/u8-strdup.c: New file.
5902         * lib/unistr/u16-strdup.c: New file.
5903         * lib/unistr/u32-strdup.c: New file.
5904         * lib/unistr/u-strdup.h: New file.
5905
5906         * modules/unistr/u8-strlen: New file.
5907         * modules/unistr/u16-strlen: New file.
5908         * modules/unistr/u32-strlen: New file.
5909         * lib/unistr/u8-strlen.c: New file.
5910         * lib/unistr/u16-strlen.c: New file.
5911         * lib/unistr/u32-strlen.c: New file.
5912         * lib/unistr/u-strlen.h: New file.
5913
5914         * modules/unistr/u8-strmblen: New file.
5915         * modules/unistr/u16-strmblen: New file.
5916         * modules/unistr/u32-strmblen: New file.
5917         * lib/unistr/u8-strmblen.c: New file.
5918         * lib/unistr/u16-strmblen.c: New file.
5919         * lib/unistr/u32-strmblen.c: New file.
5920
5921         * modules/unistr/u8-strmbtouc: New file.
5922         * modules/unistr/u16-strmbtouc: New file.
5923         * modules/unistr/u32-strmbtouc: New file.
5924         * lib/unistr/u8-strmbtouc.c: New file.
5925         * lib/unistr/u16-strmbtouc.c: New file.
5926         * lib/unistr/u32-strmbtouc.c: New file.
5927
5928         * modules/unistr/u8-strncat: New file.
5929         * modules/unistr/u16-strncat: New file.
5930         * modules/unistr/u32-strncat: New file.
5931         * lib/unistr/u8-strncat.c: New file.
5932         * lib/unistr/u16-strncat.c: New file.
5933         * lib/unistr/u32-strncat.c: New file.
5934         * lib/unistr/u-strncat.h: New file.
5935
5936         * modules/unistr/u8-strncmp: New file.
5937         * modules/unistr/u16-strncmp: New file.
5938         * modules/unistr/u32-strncmp: New file.
5939         * lib/unistr/u8-strncmp.c: New file.
5940         * lib/unistr/u16-strncmp.c: New file.
5941         * lib/unistr/u32-strncmp.c: New file.
5942
5943         * modules/unistr/u8-strncpy: New file.
5944         * modules/unistr/u16-strncpy: New file.
5945         * modules/unistr/u32-strncpy: New file.
5946         * lib/unistr/u8-strncpy.c: New file.
5947         * lib/unistr/u16-strncpy.c: New file.
5948         * lib/unistr/u32-strncpy.c: New file.
5949         * lib/unistr/u-strncpy.h: New file.
5950
5951         * modules/unistr/u8-strnlen: New file.
5952         * modules/unistr/u16-strnlen: New file.
5953         * modules/unistr/u32-strnlen: New file.
5954         * lib/unistr/u8-strnlen.c: New file.
5955         * lib/unistr/u16-strnlen.c: New file.
5956         * lib/unistr/u32-strnlen.c: New file.
5957         * lib/unistr/u-strnlen.h: New file.
5958
5959         * modules/unistr/u8-strpbrk: New file.
5960         * modules/unistr/u16-strpbrk: New file.
5961         * modules/unistr/u32-strpbrk: New file.
5962         * lib/unistr/u8-strpbrk.c: New file.
5963         * lib/unistr/u16-strpbrk.c: New file.
5964         * lib/unistr/u32-strpbrk.c: New file.
5965         * lib/unistr/u-strpbrk.h: New file.
5966
5967         * modules/unistr/u8-strrchr: New file.
5968         * modules/unistr/u16-strrchr: New file.
5969         * modules/unistr/u32-strrchr: New file.
5970         * lib/unistr/u8-strrchr.c: New file.
5971         * lib/unistr/u16-strrchr.c: New file.
5972         * lib/unistr/u32-strrchr.c: New file.
5973
5974         * modules/unistr/u8-strspn: New file.
5975         * modules/unistr/u16-strspn: New file.
5976         * modules/unistr/u32-strspn: New file.
5977         * lib/unistr/u8-strspn.c: New file.
5978         * lib/unistr/u16-strspn.c: New file.
5979         * lib/unistr/u32-strspn.c: New file.
5980         * lib/unistr/u-strspn.h: New file.
5981
5982         * modules/unistr/u8-strstr: New file.
5983         * modules/unistr/u16-strstr: New file.
5984         * modules/unistr/u32-strstr: New file.
5985         * lib/unistr/u8-strstr.c: New file.
5986         * lib/unistr/u16-strstr.c: New file.
5987         * lib/unistr/u32-strstr.c: New file.
5988         * lib/unistr/u-strstr.h: New file.
5989
5990         * modules/unistr/u8-strtok: New file.
5991         * modules/unistr/u16-strtok: New file.
5992         * modules/unistr/u32-strtok: New file.
5993         * lib/unistr/u8-strtok.c: New file.
5994         * lib/unistr/u16-strtok.c: New file.
5995         * lib/unistr/u32-strtok.c: New file.
5996         * lib/unistr/u-strtok.h: New file.
5997
5998         * modules/unistr/u8-uctomb: New file.
5999         * modules/unistr/u16-uctomb: New file.
6000         * modules/unistr/u32-uctomb: New file.
6001         * lib/unistr/u8-uctomb.c: New file.
6002         * lib/unistr/u16-uctomb.c: New file.
6003         * lib/unistr/u32-uctomb.c: New file.
6004
6005         * MODULES.html.sh (Unicode string functions): Add the new modules.
6006
6007 2007-01-08  Bruno Haible  <bruno@clisp.org>
6008
6009         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
6010         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
6011         subdirectories.
6012
6013 2007-01-08  Karl Berry  <karl@gnu.org>
6014
6015         * doc/error.texi: mention that main() fns must set program_name
6016         when progname is used.
6017
6018 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
6019
6020         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
6021         WCTYPE_H is empty, for the benefit of builds from non-distclean
6022         directories.  Problem reported by Eric Blake in
6023         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
6024
6025 2007-01-08  Bruno Haible  <bruno@clisp.org>
6026
6027         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
6028         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
6029         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
6030         PROVIDE_CANONICALIZE_FILENAME_MODE.
6031         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
6032
6033 2007-01-08  Bruno Haible  <bruno@clisp.org>
6034
6035         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
6036         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
6037         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
6038         * lib/fts.c: Likewise.
6039         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
6040
6041 2006-12-25  Bruno Haible  <bruno@clisp.org>
6042
6043         * modules/utf8-ucs4-safe: New file.
6044         * lib/utf8-ucs4-safe.h: New file.
6045         * lib/unistr/utf8-ucs4-safe.c: New file.
6046
6047         * modules/utf16-ucs4-safe: New file.
6048         * lib/utf16-ucs4-safe.h: New file.
6049         * lib/unistr/utf16-ucs4-safe.c: New file.
6050
6051         * MODULES.html.sh (Unicode string functions): Add the new modules.
6052
6053 2007-01-08  Bruno Haible  <bruno@clisp.org>
6054
6055         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
6056         (Depends-on): Add unitypes.
6057         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6058         (u8_mbtouc_aux): Move out to separate file.
6059         (u8_mbtouc): Use ucs4_t, uint8_t types.
6060         * lib/unistr/utf8-ucs4.c: New file.
6061
6062         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
6063         (Depends-on): Add unitypes.
6064         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6065         (u16_mbtouc_aux): Move out to separate file.
6066         (u16_mbtouc): Use ucs4_t, uint16_t types.
6067         * lib/unistr/utf16-ucs4.c: New file.
6068
6069         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
6070         (Depends-on): Add unitypes.
6071         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
6072         (u8_uctomb_aux): Move out to separate file.
6073         (u8_uctomb): Use ucs4_t, uint8_t types.
6074         * lib/unistr/ucs4-utf8.c: New file.
6075
6076         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
6077         (Depends-on): Add unitypes.
6078         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
6079         (u16_uctomb_aux): Move out to separate file.
6080         (u16_uctomb): Use ucs4_t, uint16_t types.
6081         * lib/unistr/ucs4-utf16.c: New file.
6082
6083 2006-12-25  Bruno Haible  <bruno@clisp.org>
6084
6085         * modules/unitypes: New file.
6086         * lib/unitypes.h: New file.
6087         * MODULES.html.sh (func_all_modules): New section "Unicode string
6088         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
6089         this section. Add unitypes.
6090
6091 2007-01-08  Bruno Haible  <bruno@clisp.org>
6092
6093         Avoid variable names that conflict with those from libtool.
6094         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
6095         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
6096         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
6097         library_names_spec to acl_library_names_spec, hardcode_* to
6098         acl_hardcode_*.
6099         Reported by Ralf Wildenhues.
6100
6101 2007-01-08  Bruno Haible  <bruno@clisp.org>
6102
6103         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
6104         definition.
6105         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
6106         definition.
6107         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
6108         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
6109         definition.
6110         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
6111         definition.
6112         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
6113         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
6114         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
6115         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
6116         definition.
6117         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
6118         definition.
6119         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
6120         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
6121         GC_USE_<algorithm>.
6122         * lib/gc-libgcrypt.c: Likewise.
6123         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
6124         * modules/gc-arctwo (configure.ac): Likewise.
6125         * modules/gc-des (configure.ac): Likewise.
6126         * modules/gc-hmac-md5 (configure.ac): Likewise.
6127         * modules/gc-hmac-sha1 (configure.ac): Likewise.
6128         * modules/gc-md2 (configure.ac): Likewise.
6129         * modules/gc-md4 (configure.ac): Likewise.
6130         * modules/gc-md5 (configure.ac): Likewise.
6131         * modules/gc-random (configure.ac): Likewise.
6132         * modules/gc-rijndael (configure.ac): Likewise.
6133         * modules/gc-sha1 (configure.ac): Likewise.
6134
6135 2007-01-08  Bruno Haible  <bruno@clisp.org>
6136
6137         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
6138         macro definition.
6139         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
6140         definition.
6141         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
6142         definition.
6143         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
6144         * modules/fcntl-safer (configure.ac): Likewise.
6145         * modules/fopen-safer (configure.ac): Likewise.
6146         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
6147         GNULIB_FWRITEERROR macro definition.
6148
6149 2007-01-08  Bruno Haible  <bruno@clisp.org>
6150
6151         * m4/gnulib-common.m4: New file.
6152         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
6153         (func_get_filelist): Add m4/gnulib-common.m4.
6154
6155 2007-01-08  Bruno Haible  <bruno@clisp.org>
6156
6157         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
6158         command.
6159
6160 2007-01-08  Jim Meyering  <jim@meyering.net>
6161
6162         Use a more robust test for a "can't happen" condition.
6163         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
6164         narrowed the st_size value.  Presuming the "can't happen" condition
6165         is true, that narrowing could conceivably convert an invalid st_size
6166         value into a valid one.  Instead, use a change based on Matthew
6167         Woehlke's original patch.
6168
6169         Slight readability improvement: use an assert-like macro
6170         in place of literal "abort ()" uses.
6171         * lib/fts.c (fts_assert): Define.
6172         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
6173         Use this macro instead of a bare 'abort'.
6174
6175 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6176
6177         Don't worry about using IRIX 5.3's wctype.h broken definitions;
6178         simply work around them.
6179         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
6180         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
6181         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
6182         declaring.
6183         Don't bother to define as macros, since the standard doesn't require it.
6184         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
6185         longer worry about IRIX 5.3.
6186         (HAVE_WCTYPE_CTMP_BUG): Remove.
6187
6188 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
6189
6190         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
6191         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
6192         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
6193         Problems reported by Georg Schwarz for IRIX 5.3.
6194
6195         * gnulib-tool (autoconf_minversion): Take the maximum version number
6196         found, not the minimum.  Problem reported by James Youngman.
6197
6198 2007-01-03  Karl Berry  <karl@gnu.org>
6199
6200         * doc/error.texi: new file, explaining interaction with progname.
6201         * doc/gnulib.texi: include it.  Update copyright.
6202
6203 2007-01-03  Simon Josefsson  <simon@josefsson.org>
6204
6205         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
6206         AC_CANONICAL_HOST, to improve autobuild outputs.
6207
6208 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
6209             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
6210
6211         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
6212         sockets, server sockets, and other file descriptors.  Count errors
6213         to compute the return value.  Reorder the code a bit to be easier
6214         to follow.  Don't set event bits that were not requested (except
6215         POLLERR and POLLHUP).
6216
6217 2007-01-01  Bruno Haible  <bruno@clisp.org>
6218
6219         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
6220
6221 2007-01-03  Jim Meyering  <jim@meyering.net>
6222
6223         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
6224
6225 2007-01-02  Bruno Haible  <bruno@clisp.org>
6226
6227         * modules/settime (Include): Require timespec.h.
6228         * modules/nanosleep (Include): Likewise.
6229
6230 2007-01-01  Bruno Haible  <bruno@clisp.org>
6231
6232         * gnulib-tool (func_emit_copyright_notice): Bump year.
6233         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
6234
6235 2007-01-01  Bruno Haible  <bruno@clisp.org>
6236
6237         Improve support for OpenBSD.
6238         * build-aux/config.rpath (libname_spec): Export.
6239         (library_names_spec): New variable. Export.
6240         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
6241         library_names_spec from the config.rpath output. Locate shared library
6242         through the name pattern in library_names_spec.
6243
6244 2007-01-01  Eric Blake  <ebb9@byu.net>
6245
6246         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
6247
6248 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
6249
6250         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
6251         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
6252         assume the C locale, and avoid an "eval" that could cause trouble.
6253         Problem with SORT reported by Bob Proulx.
6254
6255         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
6256         Define.  Trivial patch from Henning Nielsen Lund, originally
6257         sent to bug-grep@gnu.org today.
6258
6259 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6260
6261         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
6262         struct stat.  Problem reported by Henning Nielsen Lund.
6263         * lib/acl.c: Include acl.h first, to check interface.  Don't
6264         bother to include sys/types.h and sys/stat.h again.
6265
6266 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
6267
6268         Import the following change from libc; problem reported by
6269         Sven Verdoolaege.
6270
6271         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
6272
6273         [BZ #1373]
6274         * lib/argp.h: Remove __NTH for __argp_usage inline function.
6275
6276 2006-12-28  Jim Meyering  <jim@meyering.net>
6277
6278         * build-aux/announce-gen: Do not assume that the package
6279         builds any of tar.gz, tar.bz2, and .xdelta files.
6280         Suggestion from Simon Josefsson.
6281
6282 2006-12-28  Simon Josefsson  <simon@josefsson.org>
6283
6284         * modules/announce-gen: New file.
6285
6286 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
6287
6288         * lib/mbchar.h: Just include <wctype.h>; the wctype module
6289         handles its gotchas now.
6290         * lib/mbswidth.c: Likewise.
6291         * lib/wcwidth.h: Likewise.
6292         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
6293         and iswcntrl; the wctype module does this stuff now.
6294         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
6295         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6296         * modules/mbchar (Depends-on): Add wctype.
6297         * modules/mbswidth (Depends-on): Likewise.
6298         * modules/wcwidth (Depends-on): Likewise.
6299
6300 2006-12-27  Eric Blake  <ebb9@byu.net>
6301
6302         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
6303         module uses more than what <wctype.h> is required to provide.
6304
6305 2006-12-26  Eric Blake  <ebb9@byu.net>
6306
6307         * gnulib-tool (sed_extract_prog): Avoid space-tab.
6308
6309 2006-12-26  Eric Blake  <ebb9@byu.net>
6310
6311         * modules/absolute-header: New module.
6312         * modules/fcntl (Depends-on): Depend on it.
6313         * modules/inttypes (Depends-on): Likewise.
6314         * modules/stdint (Depends-on): Likewise.
6315         * modules/sys_stat (Depends-on): Likewise.
6316         * modules/wctype (Depends-on): Likewise.
6317         * MODULES.html.sh (Support for building libraries and
6318         executables): Document it.
6319
6320 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6321
6322         * gnulib-tool (SED): Remove, undoing previous change.
6323         The problem was that it broke coreutils on Solaris, because
6324         "sed --posix" leaked into a makefile.
6325         (sed): New alias, if 'alias' and GNU sed.
6326
6327 2006-12-24  Jim Meyering  <jim@meyering.net>
6328
6329         Work around an fchownat bug in glibc-2.4:
6330         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
6331         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
6332         in spite of the -P option.
6333         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
6334         New macros.
6335         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
6336         * modules/openat (Files): Add lib/fchownat.c.
6337         * lib/openat.c (fchownat): Don't define here.  Move to...
6338         * lib/fchownat.c: ...this new file.
6339
6340 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
6341
6342         Fix bug reported by Bruno Haible in
6343         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
6344         where quotearg.c didn't compile on Mac OS X 10.2 because it
6345         lacks <wchar.h> and wint_t.
6346         * lib/wctype_.h (__wctype_wint_t): New type.
6347         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
6348         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
6349         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
6350         Arg is now of type __wctype_wint_t, not wint_t.
6351         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
6352         substitute HAVE_WINT_T.
6353         * modules/wctype (Files): Add m4/wint_t.m4.
6354         (wctype.h): Substitute HAVE_WINT_T.
6355
6356 2006-12-23  Bruno Haible  <bruno@clisp.org>
6357
6358         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
6359
6360 2006-12-23  Bruno Haible  <bruno@clisp.org>
6361
6362         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
6363         S_ISLNK.
6364         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
6365         mingw.
6366
6367 2006-12-22  Bruno Haible  <bruno@clisp.org>
6368
6369         * lib/copy-file.c: Include acl.h.
6370         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
6371         Close the file descriptors only after being done with copy_acl.
6372         * modules/copy-file (Depends-on): Add acl.
6373
6374 2006-12-22  Bruno Haible  <bruno@clisp.org>
6375
6376         * gnulib-tool (SED): New variable.
6377         Use $SED instead of sed everywhere.
6378
6379 2006-12-22  Bruno Haible  <bruno@clisp.org>
6380
6381         * modules/no-c++: New file.
6382         * m4/no-c++.m4: New file.
6383         * MODULES.html.sh (Support for building libraries and executables):
6384         Add no-c++.
6385
6386 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
6387
6388         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
6389         Include <limits.h>, and use its INT_MAX to rewrite the
6390         j loop so that it does not overflow 'int'.  Problem reported by
6391         Ralf Wildenhues in
6392         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
6393         Play it safe by shifting left by 1 rather than multiplying by 2,
6394         as GCC is less likely to optimize this away when the value
6395         is signed (when it assumes overflow leads to undefined behavior).
6396         Also, don't assume time_t uses two's complement.
6397
6398 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
6399
6400         * MODULES.html.sh: New module wctype.
6401         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
6402         * lib/fnmatch.c: Don't bother to include <wchar.h> before
6403         <wctype.h>, since the new wctype module should fix this.
6404         * lib/quotearg.c: Include <wctype.h> unconditionally, since
6405         the wctype module should arrange for it.
6406         * lib/regex_internal.h: Likewise.
6407         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
6408         since the wctype module should handle this now.
6409         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
6410         * modules/fnmatch (Depends-on): Add wctype.
6411         * modules/quotearg (Depends-on): Likewise.
6412         * modules/regex (Depends-on): Likewise.
6413
6414 2006-12-19  Bruno Haible  <bruno@clisp.org>
6415
6416         * lib/strdup.h [C++]: Wrap definitions in extern "C".
6417         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
6418
6419 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6420
6421         * modules/savewd (Depends-on): Fix dependency on fcntl.
6422
6423 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6424
6425         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
6426         conforms to C99, rather than relying on the user's environment
6427         setting of STDINT_H.
6428
6429 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6430         and Eric Blake  <ebb9@byu.net>
6431
6432         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
6433         This is more consistent with the other defines here.
6434         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
6435         Port to z/OS.  Problem reported by Paul Gilmartin.
6436         Change local vars to use gl_ prefix rather than ac_.
6437         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
6438         with other defines.
6439         * modules/double-slash-root: New module.
6440         * modules/dirname (Files): Remove m4/double-slash-root.m4.
6441         (Depends-on): Add double-slash-root.
6442         * MODULES.html.sh (File system functions): Mention new module.
6443
6444 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
6445
6446         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
6447         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
6448         This is for the benefit of gzip, which doesn't do i18n.
6449
6450 2006-12-12  Jim Meyering  <jim@meyering.net>
6451
6452         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
6453         Reported by Andreas Schwab <schwab@suse.de>.
6454
6455 2006-12-12  Bruno Haible  <bruno@clisp.org>
6456
6457         Merge these changes.
6458         2006-09-05  Bruno Haible  <bruno@clisp.org>
6459         * lib/iconvme.c (iconv_string): No need to save and restore errno when
6460         iconv_alloc succeeded.
6461         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
6462         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
6463         test for " && dest " at the end - dest is always != NULL there. Call
6464         iconv with 4xNULL arguments initially, to reset the state. Call iconv
6465         with 2xNULL arguments, also to flush the state storage. Handle the
6466         IRIX iconv behaviour. Realloc the final result, to throw away unused
6467         memory.
6468
6469 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
6470
6471         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
6472         and fchmodat unconditionally, since glibc 2.4 has them.
6473         Problem reported by Arkadiusz Miskiewicz.
6474
6475 2006-12-10  Bruno Haible  <bruno@clisp.org>
6476
6477         * gnulib-tool (func_import): Show the include files only for those
6478         modules that are copied and specified.
6479         Reported by Karl Berry.
6480
6481 2006-12-08  Jim Meyering  <jim@meyering.net>
6482
6483         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
6484         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
6485
6486         * build-aux/announce-gen: Add two new options, both optional:
6487         --bootstrap-tools=TOOL_LIST
6488               a comma-separated list of tools, e.g.,
6489               autoconf,automake,bison,gnulib
6490         --gnulib-snapshot-date=DATE
6491               if gnulib is in the bootstrap tool list,
6492               then report this as the snapshot date.
6493               If not specified, use the current date/time.
6494               If you specify a date here, be sure it's UTC.
6495
6496 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6497
6498         * tests/test-argp-2.sh: Fix test to match actual output.
6499         (func_compare): Fix sed script to be portable.
6500
6501 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
6502
6503         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
6504         workaround for this case.  It is not autoconfigured now; offhand
6505         it's hard to see how to autoconfigure it.
6506
6507 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
6508
6509         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
6510         a directory that is about to be chowned.  Such a directory's
6511         initial file permissions should permit the owner only and this
6512         should not be changed until after the chown, since the group and
6513         other bits would be incorrect if they granted permission before
6514         the chown.
6515
6516         Fix porting problem for iswctype reported by Georg Schwarz in:
6517         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
6518         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
6519         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
6520         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
6521         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6522
6523 2006-12-03  Jim Meyering  <jim@meyering.net>
6524
6525         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
6526         p->fts_statp may not yet be defined.
6527         (fts_read): Instead, set it in the caller, once p->fts_statp is
6528         sure to be defined, and corresponds to a top-level directory.
6529         This bug made du -x fail.  Here's the coreutils test case:
6530         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
6531         Reported by Mike Frysinger.
6532
6533 2006-12-01  Jim Meyering  <jim@meyering.net>
6534
6535         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
6536         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
6537         Reported by Simon Josefsson.
6538
6539 2006-11-30  Jim Meyering  <jim@meyering.net>
6540
6541         * m4/warning.m4: Use the all-permissive copyright notice
6542         recommended by RMS (rather than LGPL).
6543         * m4/vararrays.m4: Likewise.
6544         * m4/flexmember.m4: Likewise.
6545
6546 2006-11-29  Bruno Haible  <bruno@clisp.org>
6547
6548         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6549         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
6550         using +=.
6551         Reported by Simon Josefsson <simon@josefsson.org>.
6552
6553 2006-11-28  James Youngman <jay@gnu.org>
6554
6555         * README: Advise users that they might find the bug-gnulib@gnu.org
6556         and autotools-announce@gnu.org mailing lists useful.
6557
6558 2006-11-28  Bruno Haible  <bruno@clisp.org>
6559
6560         * m4/ptrdiff_max.m4: Remove file.
6561
6562 2006-11-21  Bruno Haible  <bruno@clisp.org>
6563
6564         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
6565         _AC_COMPUTE_INT.
6566         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6567         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
6568         _AC_COMPUTE_INT.
6569         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6570         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
6571         _AC_COMPUTE_INT.
6572         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6573
6574 2006-11-28  Jim Meyering  <jim@meyering.net>
6575
6576         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
6577         warning from "gcc -Wshadow" about shadowing the builtin.
6578
6579 2006-11-27  Bruno Haible  <bruno@clisp.org>
6580
6581         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
6582         _AC_COMPUTE_INT.
6583         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6584
6585 2006-11-27  Bruno Haible  <bruno@clisp.org>
6586             Paul Eggert  <eggert@cs.ucla.edu>
6587
6588         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
6589
6590 2006-11-26  Bruno Haible  <bruno@clisp.org>
6591
6592         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6593         noinst_LTLIBRARIES.
6594
6595 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
6596             Bruno Haible  <bruno@clisp.org>
6597
6598         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
6599         if compiling with "gcc -ansi".
6600
6601 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6602
6603         Fix some incompatibilities with gcc -ansi -pedantic.
6604         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
6605         if compiling pedantically with GCC, unless it's C99 or later.
6606         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
6607         it mishandles gcc -ansi -pedantic as well.
6608         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
6609         if gcc -pedantic.
6610         * lib/regexec.c (check_node_accept_bytes): Don't use auto
6611         initializers for struct if -pedantic, unless it's C99 or later.
6612
6613 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
6614
6615         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
6616         Don't close an fd more than once. Identical atimes indicate
6617         success, not failure.
6618
6619 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
6620
6621         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
6622
6623 2006-11-23  Jim Meyering  <jim@meyering.net>
6624
6625         * build-aux/announce-gen: New file.  From coreutils.
6626
6627 2006-11-22  Jim Meyering  <jim@meyering.net>
6628
6629         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
6630         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
6631         (fts_read): Use a temporary to narrow the overused st_size member
6632         before using it in a switch statement.  Reported by Matthew Woehlke.
6633
6634         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
6635         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
6636
6637 2006-11-20  Bruno Haible  <bruno@clisp.org>
6638
6639         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
6640         changequote instead of pairs of brackets.
6641         Reported by Andreas Schwab <schwab@suse.de>.
6642
6643 2006-11-21  Jim Meyering  <jim@meyering.net>
6644
6645         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
6646         so as to remain compatible with older compilers.
6647         Patch from Michael Deutschmann.
6648
6649 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
6650
6651         * MODULES.html.sh (File system functions): Add openat.
6652
6653         * lib/openat.h (rpl_fstatat): New macro, if
6654         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
6655         (fstatat): Define to rpl_fstatat under the same conditions,
6656         unless COMPILING_FSTATAT.
6657         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
6658         seems to have the bug.
6659         * lib/fstatat.c: New file.
6660         * modules/openat (Files): Add it.
6661
6662 2006-11-20  Bruno Haible  <bruno@clisp.org>
6663
6664         * Makefile: New file.
6665
6666 2006-11-20  Jim Meyering  <jim@meyering.net>
6667
6668         The beginnings of syntax-related checks for gnulib.
6669         * lib/Makefile: New file.
6670         * lib/t-idcache: New script.  Ensure that the two halves of
6671         idcache.c stay in sync.
6672
6673         * lib/idcache.c: Adjust comments in user- and group- portions to
6674         be more accurate, and to be consistent with one another.
6675
6676 2006-11-20  Jim Meyering  <jim@meyering.net>
6677
6678         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
6679         continue using the flexible array member (thus, this module performs
6680         half as many malloc calls), with the addition that...
6681         (getgroup, getuser): Consistently record a non-match via an empty
6682         "name" string, and map an empty string match to a NULL return value.
6683         * modules/idcache (Depends-on): Re-add flexmember.
6684
6685         * lib/idcache.c (getuser): Remove all uses of the register keyword.
6686         (getuidbyname, getgroup, getgidbyname): Likewise.
6687
6688         Use cleaner syntax: NULL rather than 0.
6689         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
6690
6691 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
6692
6693         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
6694         It mishandled the case where the group was missing.
6695         Problem reported by Greg Schafer.
6696         * modules/idcache: Likewise.
6697
6698 2006-11-18  Jim Meyering  <jim@meyering.net>
6699
6700         * check-module (%exempt_header): Add exception for some
6701         conditionally-included headers.
6702
6703         * modules/i-ring (Depends-on): Add verify.
6704         (License): Change to LGPL.
6705
6706 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
6707
6708         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
6709         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
6710         and inttostr.h.  Use snprintf rather than uinttostr, so that
6711         LGPLed code doesn't depend on GPLed.
6712
6713 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
6714
6715         * modules/inline (License): Change from GPL to LGPL.
6716
6717 2006-11-17  Jim Meyering  <jim@meyering.net>
6718
6719         * modules/d-type (License): Switch to LGPL.
6720
6721 2006-11-15  Bruno Haible  <bruno@clisp.org>
6722
6723         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
6724
6725 2006-11-15  Eric Blake  <ebb9@byu.net>
6726
6727         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
6728         the module dependency.
6729
6730 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6731             Bruno Haible  <bruno@clisp.org>
6732
6733         * gnulib-tool (func_create_testdir): Add license consistency check.
6734
6735 2006-11-15  Eric Blake  <ebb9@byu.net>
6736
6737         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
6738         random "(cached)" in configure output.
6739
6740 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6741
6742         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
6743         test for conforming inttypes.h is both announced and cached.
6744
6745         * MODULES.html.sh (seen_modules, seen_files): New variables.
6746         (func_module): Rewrite to use a few less gnulib-tool and sed
6747         invocations.  Avoid a couple of quadratic algorithms for ...
6748         (missed_modules, missed_files): ... these, with ...
6749         (func_append, func_tmpdir): ... these new functions, from
6750         gnulib-tool.  Analogously, install traps for cleanup.
6751
6752         * tests/test-gc.c (main): Remove unused variables.
6753         * tests/test-read-file.c: Include stdlib.h, for 'free'.
6754
6755 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
6756
6757         * modules/inttostr (License): Change to LGPL.
6758
6759 2006-11-14  Eric Blake  <ebb9@byu.net>
6760
6761         * modules/tempname (License): Change to LGPL.
6762
6763 2006-11-14  Eric Blake  <ebb9@byu.net>
6764
6765         * doc/functions.texi (Function Portability): *printf functions on
6766         Cygwin now understand all POSIX size specifiers.
6767
6768 2006-11-14  Bruno Haible  <bruno@clisp.org>
6769
6770         * modules/c-ctype (License): Change to LGPL.
6771
6772 2006-11-12  Bruno Haible  <bruno@clisp.org>
6773
6774         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
6775         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
6776         for GNOME libraries, for which the include files are installed in
6777         subdirectories of $prefix/include.
6778
6779 2006-11-12  Bruno Haible  <bruno@clisp.org>
6780
6781         * m4/lib-link.m4: Require at least autoconf-2.54.
6782         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
6783         name to underscores for the --with option.
6784
6785 2006-11-13  Bruno Haible  <bruno@clisp.org>
6786
6787         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
6788         the tests directory.
6789         Reported by Ralf Wildenhues.
6790
6791 2006-11-13  Bruno Haible  <bruno@clisp.org>
6792
6793         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
6794         (func_emit_initmacro_end): Undo the override here.
6795         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
6796         Works around the famous automake error in coreutils.
6797
6798 2006-11-13  Eric Blake  <ebb9@byu.net>
6799
6800         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
6801         element, not its node.
6802
6803 2006-11-12  Bruno Haible  <bruno@clisp.org>
6804
6805         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
6806         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
6807
6808 2006-11-12  Bruno Haible  <bruno@clisp.org>
6809
6810         * gnulib-tool: New option --local-symlink.
6811         (func_usage): Document it.
6812         (lsymbolic): New variable.
6813         (func_import, func_create_testdir): If --symlink was not specified,
6814         test whether --local-symlink was specified and the file comes from
6815         the local_gnulib_dir.
6816
6817 2006-11-12  Bruno Haible  <bruno@clisp.org>
6818
6819         * gnulib-tool (func_ln): New function.
6820         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
6821
6822 2006-11-12  Bruno Haible  <bruno@clisp.org>
6823
6824         Finish support for source files in subdirectories.
6825         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
6826         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
6827         AUTOMAKE_OPTIONS.
6828         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
6829
6830 2006-11-12  Bruno Haible  <bruno@clisp.org>
6831
6832         * gnulib-tool (func_get_automake_snippet): Synthesize also an
6833         EXTRA_lib_SOURCES augmentation.
6834         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
6835
6836 2006-11-12  Jim Meyering  <jim@meyering.net>
6837
6838         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
6839         file descriptors.  This also averts a failure on systems with
6840         native openat support when a traversed directory lacks "x" access.
6841         * lib/fts_.h: Include "i-ring.h"
6842         (struct FTS) [fts_fd_ring]: New member.
6843         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
6844         (FCHDIR): Add parentheses.
6845         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
6846         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
6847         When descending, rather than simply closing the previous
6848         fts_cwd_fd value, push that file descriptor onto the ring.
6849         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
6850         (fts_open): Initialize the new fd_ring member.
6851         (fts_close): Clear the ring.
6852         (fts_safe_changedir): When possible, use our new fd_ring to skip
6853         the diropen and fstat and dev/ino comparison that would normally
6854         accompany a virtual `chdir ("..")'.
6855
6856         * modules/fts (Depends-on): Add i-ring.
6857         * modules/i-ring: New module.
6858         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
6859         * m4/i-ring.m4: New file.
6860
6861 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6862
6863         * gnulib-tool (func_create_testdir): Fix replacement of
6864         `build-aux' in configure.ac.  Run autotools in gltests
6865         subdirectory.
6866         (func_create_testdir, func_create_megatestdir, test): There is
6867         no need for '--force' in most autotool invocations in a new
6868         tree.  Actually fail the whole test if any of the tools, or the
6869         configure or make stages fail.
6870
6871         Sync from Automake.
6872         * build-aux/gnupload: Revert last change.  Add pointer to upload
6873         instructions of the GNU Maintenance Instructions.
6874         Suggestion by Karl Berry.
6875
6876 2006-11-10  Jim Meyering  <jim@meyering.net>
6877
6878         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
6879
6880 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
6881
6882         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
6883         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
6884         (bind_textdomain_codeset) [! ENABLE_NLS]:
6885         Evaluate all the arguments.  That way, callers get compatible behavior
6886         if the arguments have side effects.  Also, it avoids some GCC
6887         diagnostics in some cases; Joel E. Denny reported problems when Bison
6888         was configured with --enable-gcc-warnigs.
6889
6890 2006-11-10  Jim Meyering  <jim@meyering.net>
6891
6892         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
6893         relevant options in CFLAGS (like -O, -fno-inline) are taken into
6894         account.
6895
6896 2006-11-10  Jim Meyering  <jim@meyering.net>
6897
6898         * modules/inline: New file/module.
6899         * modules/xalloc (Files): Remove m4/inline.m4.
6900         (Depends-on): Add inline, instead.
6901         * modules/oset: Likewise.
6902         * modules/list: Likewise.
6903
6904 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
6905
6906         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
6907         Problem reported by Matthew Woehlke.
6908
6909 2006-11-09  Bruno Haible  <bruno@clisp.org>
6910
6911         * lib/tempname.c (gen_tempname): Remove variant that invokes
6912         __gen_tempname.
6913         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
6914         __gen_tempname.
6915
6916 2006-11-08  Bruno Haible  <bruno@clisp.org>
6917
6918         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
6919         to 'yes' instead of 'cross-compiling'.
6920
6921 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
6922
6923         * lib/quotearg.h (quotearg_free): New decl.
6924         * lib/quotearg.c (quotearg_free): New function.
6925         (slot0, nslots, slotvec0, slotvec):
6926         Now file-scope so that quotearg_free can get at them.
6927
6928 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6929
6930         Sync from Automake.
6931         * build-aux/gnupload: Add missing 'gnu' to example URL.
6932         Report by Karl Berry.
6933
6934 2006-11-08  Bruno Haible  <bruno@clisp.org>
6935
6936         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
6937         Suggested by Paul Eggert.
6938
6939 2006-11-08  Jim Meyering  <jim@meyering.net>
6940
6941         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
6942         It's already included if !_LIBC.
6943         (fts_safe_changedir): Add a comment.
6944
6945 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
6946
6947         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
6948         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
6949         Matthew Woehlke.
6950
6951         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
6952         definitions up, to avoid colliding with change below.
6953         (static_inline) [HAVE_INLINE]: New macro.
6954         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
6955         Provide extern decls when !HAVE_INLINE.  Do not define unless
6956         static_inline is defined, either by us or by xmalloc.c.  Use
6957         static_inline rather than static inline.
6958         (XCALLOC): Optimize sizeof(T) = 1 case.
6959         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
6960
6961 2006-11-07  Bruno Haible  <bruno@clisp.org>
6962
6963         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
6964         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
6965         AC_C_INLINE.
6966         * modules/xalloc (Files): Add m4/inline.m4.
6967
6968 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6969
6970         * README: Fix typo.
6971         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
6972         (Miscellanous Notes): ...from this.
6973
6974 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
6975
6976         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
6977         Mention that offsetof should be used instead of sizeof.
6978         From Bruno Haible.
6979
6980 2006-11-07  Bruno Haible  <bruno@clisp.org>
6981
6982         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
6983
6984 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
6985
6986         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
6987         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
6988         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
6989         (gl_tree_add_before, gl_tree_add_after):
6990         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
6991         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
6992         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
6993         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
6994         (gl_linked_add_after, gl_linked_add_at): Likewise.
6995         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
6996         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
6997         (gl_tree_add_before, gl_tree_add_after): Likewise.
6998         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
6999         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
7000         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
7001
7002 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7003
7004         * lib/gl_oset.h: Use C comment style, not C++ comment style.
7005
7006 2006-11-06  Bruno Haible  <bruno@clisp.org>
7007
7008         * m4/inline.m4: New file.
7009         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
7010         * modules/list (Files): Add m4/inline.m4.
7011         * modules/oset (Files): Likewise.
7012
7013 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7014
7015         * lib/idcache.c: Include <stddef.h>, for offsetof.
7016         (struct userid.name): Change from char * to a flexible array member.
7017         All uses changed.
7018         * modules/idcache (Depends-on): Add flexmember.
7019
7020         * MODULES.html.sh (Core language properties): New module flexmember.
7021         * modules/flexmember, m4/flexmember.m4: New files.
7022
7023         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
7024         inline functions that are identical with the old xnmalloc_inline,
7025         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
7026         that we can avoid some unnecessary integer multiplications and
7027         divisions in the common case where the element size is known at
7028         compile time.
7029         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
7030         needed.
7031         (xnboundedmalloc): Remove.
7032         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
7033         arguments, for consistency with rest of this header.
7034         (xcharalloc): Rewrite using XNMALLOC.
7035         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
7036         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
7037         versions have been moved to lib/xalloc.h and renamed to be the
7038         non-*_inline versions.
7039         (xmalloc, xrealloc): Implement without reference to the xnmalloc
7040         and xnrealloc functions, since those functions are now inline and
7041         now call us.
7042         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
7043         renaming described above.
7044         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
7045         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
7046         captures the dependency in AC_C_INLINE.
7047
7048         New module canonicalize-lgpl, proposed by Charles Wilson in
7049         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
7050         with a few small changes afterwards.
7051         * MODULES.html.sh (File system functions): New module
7052         canonicalize-lgpl.
7053         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
7054         and canonicalize_file_name.
7055         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
7056         * modules/canonicalize-lgpl: New files.
7057
7058 2006-11-05  Bruno Haible  <bruno@clisp.org>
7059
7060         * gnulib-tool (func_import, func_create_testdir): Create directories
7061         also for files in subdirectories of lib/.
7062
7063 2006-11-05  Bruno Haible  <bruno@clisp.org>
7064
7065         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
7066         ANSI C compliant.
7067
7068 2006-11-03  Bruno Haible  <bruno@clisp.org>
7069
7070         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
7071         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
7072         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
7073         (xnboundedmalloc): New inline function.
7074         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
7075         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
7076         xmalloc.
7077         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
7078         xmalloc.
7079         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
7080         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
7081         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
7082         xmalloc.
7083         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7084         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
7085         xmalloc.
7086         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
7087         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7088         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
7089         xmalloc.
7090         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7091         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
7092         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7093         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
7094         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
7095         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
7096         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
7097
7098 2006-11-03  Bruno Haible  <bruno@clisp.org>
7099
7100         * lib/c-ctype.h [C++]: Define functions without name mangling.
7101         * lib/fwriteerror.h [C++]: Likewise.
7102         * lib/gcd.h [C++]: Likewise.
7103         * lib/linebreak.h [C++]: Likewise.
7104
7105 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
7106
7107         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
7108         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
7109         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
7110         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
7111         Check for functions and headers just once.
7112         Check for declaration of canonicalize_file_name.
7113         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
7114
7115 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7116
7117         * gnulib-tool (func_import): Fix typo in actioncmd.
7118
7119 2006-11-02  Bruno Haible  <bruno@clisp.org>
7120
7121         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
7122         newline sequence in the Makefile.am snippet as a space, like "make"
7123         does.
7124         Reported by Roger Persson <perrog@gmail.com>.
7125
7126 2006-11-01  Bruno Haible  <bruno@clisp.org>
7127
7128         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
7129         already declared in <string.h>.
7130         * lib/strcase.h (strncasecmp): Don't declare it if yes.
7131
7132 2006-11-01  Bruno Haible  <bruno@clisp.org>
7133
7134         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
7135         * lib/strcase.h: Include <string.h>.
7136         (strcasecmp): Define to rpl_strcasecmp here.
7137
7138 2006-11-01  Bruno Haible  <bruno@clisp.org>
7139
7140         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
7141
7142 2006-11-01  Eric Blake  <ebb9@byu.net>
7143
7144         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
7145
7146         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
7147
7148 2006-10-29  Bruno Haible  <bruno@clisp.org>
7149
7150         Make it compile in C++ mode.
7151         * lib/full-write.c (full_rw): Add a cast.
7152
7153 2006-11-01  Bruno Haible  <bruno@clisp.org>
7154
7155         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
7156         be POSIX compliant.
7157         Reported by Roger Persson <perrog@gmail.com>.
7158
7159 2006-11-01  Eric Blake  <ebb9@byu.net>
7160
7161         * lib/getopt_.h: Fix comments.
7162
7163 2006-10-31  Eric Blake  <ebb9@byu.net>
7164
7165         * modules/tmpdir (Depends-on): Add sys_stat.
7166         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
7167         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
7168         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
7169         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
7170         tempname.
7171
7172 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
7173
7174         Avoid some C++ diagnostics reported by Bruno Haible.
7175         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
7176         xmalloc.
7177         (quotearg_alloc): Use xcharalloc rather than xmalloc.
7178         (struct slotvec): Move to top level.
7179         (quotearg_n_options): Rewrite to avoid xmalloc.
7180         * lib/xalloc.h (xcharalloc): New function.
7181         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
7182         [defined __cplusplus]: Add function template that provides result
7183         type propagation.  This part of the change is from Bruno Haible.
7184
7185 2006-10-29  Bruno Haible  <bruno@clisp.org>
7186
7187         Make it compile in C++ mode.
7188         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
7189         * lib/strnlen1.c (strnlen1): Cast memchr result.
7190         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
7191         * lib/clean-temp.c (string_equals, string_hash): Add casts.
7192         (create_temp_dir): Rename local variable 'template'.
7193         (compile_csharp_using_sscli): Add cast.
7194         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
7195         * lib/findprog.c (find_in_path): Likewise.
7196         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
7197         * lib/wait-process.c (register_slave_subprocess): Likewise.
7198
7199 2006-10-22  Bruno Haible  <bruno@clisp.org>
7200
7201         * modules/tsearch: New file.
7202         * lib/tsearch.h: New file.
7203         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
7204         * m4/tsearch.m4: New file.
7205         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
7206
7207 2006-10-29  Eric Blake  <ebb9@byu.net>
7208
7209         * lib/arcfour.c: Assume config.h.
7210         * lib/arctwo.c: Likewise.
7211         * lib/base64.c: Likewise.
7212         * lib/check-version.c: Likewise.
7213         * lib/crc.c: Likewise.
7214         * lib/des.c: Likewise.
7215         * lib/gc-gnulib.c: Likewise.
7216         * lib/gc-libgcrypt.c: Likewise.
7217         * lib/gc-pbkdf2-sha1.c: Likewise.
7218         * lib/getaddrinfo.c: Likewise.
7219         * lib/getdelim.c: Likewise.
7220         * lib/getline.c: Likewise.
7221         * lib/hmac-md5.c: Likewise.
7222         * lib/hmac-sha1.c: Likewise.
7223         * lib/iconvme.c: Likewise.
7224         * lib/md2.c: Likewise.
7225         * lib/md4.c: Likewise.
7226         * lib/memxor.c: Likewise.
7227         * lib/read-file.c: Likewise.
7228         * lib/readline.c: Likewise.
7229         * lib/rijndael-alg-fst.c: Likewise.
7230         * lib/rijndael-api-fst.c: Likewise.
7231         * lib/xgetdomainname.c: Likewise.
7232
7233 2006-10-28  Eric Blake  <ebb9@byu.net>
7234
7235         * lib/xstrndup.c: Assume config.h.
7236
7237 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
7238
7239         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
7240         stat-macros.h is now for our own macros, whereas stat_h is for
7241         macros in the <sys/stat.h> name space.
7242         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
7243         (STAT_MACROS_H): Remove.
7244         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
7245         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
7246         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
7247         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
7248         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
7249         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
7250         Move these macros to ...
7251         * lib/stat_.h: here.  Don't include stat-macros.h.
7252         * lib/canonicalize.c: Don't include stat-macros.h.
7253         * lib/chown.c: Likewise.
7254         * lib/euidaccess.c: Likewise.
7255         * lib/file-type.c: Likewise.
7256         * lib/filemode.c: Likewise.
7257         * lib/glob.c: Likewise.
7258         * lib/isapipe.c: Likewise.
7259         * lib/lchown.c: Likewise.
7260         * lib/lstat.c: Likewise.
7261         * lib/mkdir-p.c: Likewise.
7262         * lib/rmdir.c: Likewise.
7263         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
7264         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
7265         unless mkdir isn't declared, to speed up 'configure'.
7266         Always create sys/stat.h, since it's unlikely any real sys/stat.h
7267         would define all the S_* symbols.
7268         * modules/canonicalize (Depends-on):
7269         Depend on sys_stat, not stat-macros.
7270         * modules/chown: Likewise.
7271         * modules/euidaccess: Likewise.
7272         * modules/filemode: Likewise.
7273         * modules/file-type: Likewise.
7274         * modules/glob: Likewise.
7275         * modules/isapipe: Likewise.
7276         * modules/lchown: Likewise.
7277         * modules/lstat: Likewise.
7278         * modules/mkancesdirs: Likewise.
7279         * modules/rmdir: Likewise.
7280         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
7281         * modules/modechange: Likewise.
7282         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
7283         (configure.ac): Remove gl_STAT_MACROS.
7284         * modules/sys_stat (Depends-on): Remove stat-macros.
7285
7286 2006-10-27  Bruno Haible  <bruno@clisp.org>
7287
7288         * m4/signed.m4: Remove file.
7289         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
7290         invocation.
7291         * modules/vasnprintf (Files): Remove m4/signed.m4.
7292
7293 2006-10-27  Bruno Haible  <bruno@clisp.org>
7294
7295         Update to GNU gettext 0.16.
7296         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
7297         m4/inttypes-h.m4, m4/signed.m4.
7298         * m4/gettext.m4: Update to GNU gettext 0.16.
7299         * m4/intl.m4: New file, from GNU gettext.
7300         * m4/intldir.m4: New file, from GNU gettext.
7301         * config/srclist.txt: Update
7302
7303 2006-10-27  Eric Blake  <ebb9@byu.net>
7304
7305         * MODULES.html.sh: Document tempname.
7306         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
7307         dependencies.
7308         (Files): Move lib/tempname.c...
7309         * modules/tempname: ...to this new module.
7310         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
7311         (gl_PREREQ_TEMPNAME): Move...
7312         * m4/tempname.m4: ...to this new file.
7313         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
7314         * modules/sys_stat (Depends-on): Add stat-macros.
7315         * lib/stat_.h (includes): Pick up stat macros.
7316         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
7317         if stat macros are broken.
7318         * lib/tempname.c (includes): No need to include "stat-macros.h".
7319         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
7320         (direxists, __path_search) [!_LIBC]: Don't compile these in
7321         gnulib; the tmpdir module covers that.
7322         * lib/tempname.h: New file.
7323
7324 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
7325
7326         * COPYING: Explain how gnulib-tool converts licence headers.
7327         Almost all wording by Eric Blake.
7328
7329 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
7330
7331         * lib/mbchar.h (is_basic_table): Make read-only.
7332         * lib/mbchar.c (is_basic_table): Likewise.
7333         Reported by John Darrington.
7334
7335 2006-10-25  Bruno Haible  <bruno@clisp.org>
7336
7337         * lib/progname.h (set_program_name): Undefine before defining.
7338
7339 2006-10-25  Bruno Haible  <bruno@clisp.org>
7340
7341         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
7342         false for non-gcc C++ compilers.
7343         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
7344
7345 2006-10-24  Bruno Haible  <bruno@clisp.org>
7346
7347         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
7348         iconv implementations like Irix iconv.
7349
7350 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7351
7352         * modules/vararrays: New file.
7353         * m4/vararrays.m4: New file, taken from diffutils.
7354         * MODULES.html.sh: New module vararrays.
7355
7356 2006-10-24  Karl Berry  <karl@gnu.org>
7357
7358         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
7359         Don't call GNU Unix.
7360
7361 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7362
7363         * users.txt: Add Libtool.
7364
7365         Sync from Libtool:
7366
7367         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7368
7369         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
7370         to gnulib's policy of including config.h unconditionally.
7371
7372 2006-10-24  Bruno Haible  <bruno@clisp.org>
7373
7374         * modules/wcwidth (Files): Add m4/wint_t.m4.
7375         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
7376         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
7377
7378 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7379
7380         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
7381         to pacify GCC with some -W flags enabled.  Problem reported by
7382         Bruno Haible.
7383
7384 2006-10-24  Jim Meyering  <jim@meyering.net>
7385
7386         * MODULES.html.sh: Remove uinttostr.  It's not a module.
7387         Reported by Karl Berry.
7388
7389 2006-10-23  Bruno Haible  <bruno@clisp.org>
7390
7391         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
7392
7393 2006-10-24  Bruno Haible  <bruno@clisp.org>
7394
7395         * lib/gl_list.h: Use C comment style, not C++ comment style.
7396
7397 2006-10-23  Eric Blake  <ebb9@byu.net>
7398
7399         * lib/getaddrinfo.c (includes): Add missing include.
7400
7401 2006-10-23  Bruno Haible  <bruno@clisp.org>
7402             Paul Eggert  <eggert@cs.ucla.edu>
7403
7404         Ability to rename obstack_free.
7405         * lib/obstack.h (__obstack_free): New macro. Declare instead of
7406         obstack_free.
7407         (obstack_free): Invoke the __obstack_free macro.
7408         * lib/obstack.c (obstack_free): Use __obstack_free macro.
7409
7410 2006-10-23  Bruno Haible  <bruno@clisp.org>
7411             Paul Eggert  <eggert@cs.ucla.edu>
7412
7413         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
7414         __argc, __argv from the declaration. (They are defined as macros on
7415         mingw.)
7416
7417 2006-10-22  Bruno Haible  <bruno@clisp.org>
7418
7419         * doc/gnulib-intro.texi: New file.
7420         * doc/gnulib.texi: Include it.
7421
7422 2006-10-21  Bruno Haible  <bruno@clisp.org>
7423
7424         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
7425         "Introduction", "Miscellanous Notes", "Particular Modules".
7426
7427 2006-10-21  Bruno Haible  <bruno@clisp.org>
7428
7429         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7430         Change mostlyclean-local rule to avoid sh syntax error from bash
7431         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
7432
7433 2006-10-23  Jim Meyering  <jim@meyering.net>
7434
7435         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
7436         in place of snprintf.
7437
7438         * modules/inttostr (Files): Add lib/uinttostr.c.
7439         * lib/uinttostr.c (inttostr): New file/function.
7440         * lib/inttostr.h (uinttostr): Declare.
7441         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
7442         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7443         Add uinttostr.
7444         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
7445
7446 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7447
7448         * lib/canonicalize.c (ELOOP): Define if not already defined.
7449         Problem reported by Bruno Haible in
7450         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
7451
7452 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7453
7454         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
7455         Problem reported by Perry Smith and Ville Laurikari.
7456
7457         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
7458         uses.
7459
7460 2006-10-19  Bruno Haible  <bruno@clisp.org>
7461
7462         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
7463         for mingw.
7464
7465 2006-10-19  Bruno Haible  <bruno@clisp.org>
7466
7467         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
7468         Needed for mingw.
7469
7470 2006-10-19  Bruno Haible  <bruno@clisp.org>
7471
7472         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
7473
7474 2006-10-19  Bruno Haible  <bruno@clisp.org>
7475
7476         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
7477         it.
7478
7479 2006-10-19  Bruno Haible  <bruno@clisp.org>
7480
7481         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
7482         invocation.
7483
7484 2006-10-19  Bruno Haible  <bruno@clisp.org>
7485
7486         * gnulib-tool (func_create_testdir): Don't include ftruncate and
7487         mountlist by default.
7488
7489 2006-10-16  Bruno Haible  <bruno@clisp.org>
7490
7491         * lib/c-strstr.c: Include c-strstr.h.
7492
7493 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7494
7495         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
7496         in a slash.
7497
7498 2006-10-18  Bruno Haible  <bruno@clisp.org>
7499
7500         * lib/lock.h [C++]: Wrap definitions in extern "C".
7501
7502 2006-10-18  Bruno Haible  <bruno@clisp.org>
7503
7504         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
7505         gl_LIBOBJS list.
7506
7507 2006-10-18  Bruno Haible  <bruno@clisp.org>
7508
7509         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
7510
7511 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
7512
7513         * lib/xstrtol.h: Include gettext.h.
7514         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
7515         Problem reported by Eric Blake.
7516         * modules/xstrtol (Depends-on): Add gettext-h.
7517
7518 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
7519
7520         * lib/strftime.c (advance): New macro.
7521         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
7522         incomplete type, so you can't add 0 to it.  Problem and patch
7523         reported by Eelco Dolstra for dietlibc.
7524
7525 2006-10-18  Jim Meyering  <jim@meyering.net>
7526
7527         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
7528         type for a local, and rename it: s/up/user_proc/.
7529
7530 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7531
7532         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
7533         READ_UTMP_USER_PROCESS.
7534         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
7535
7536 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
7537
7538         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
7539         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
7540
7541 2006-10-17  Eric Blake  <ebb9@byu.net>
7542
7543         * lib/sigprocmask.c (sigprocmask): Fix typo.
7544
7545         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
7546
7547         * modules/clean-temp (Makefile.am): Don't add to make output...
7548         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
7549         config.h.
7550
7551 2006-10-17  Bruno Haible  <bruno@clisp.org>
7552
7553         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
7554         differently if DEFAULT_TEXT_DOMAIN is set.
7555
7556 2006-10-16  Bruno Haible  <bruno@clisp.org>
7557
7558         * lib/clean-temp.c: Include fwriteerror.h.
7559
7560 2006-10-16  Bruno Haible  <bruno@clisp.org>
7561
7562         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
7563
7564 2006-10-16  Bruno Haible  <bruno@clisp.org>
7565
7566         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
7567         * lib/sigprocmask.h: Include <sys/types.h>.
7568         (sigset_t): Use the system's definition if present.
7569
7570 2006-10-17  Eric Blake  <ebb9@byu.net>
7571
7572         * lib/xvasprintf.c (includes): Assume config.h.
7573         * lib/xasprintf.c (includes): Likewise.
7574
7575 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
7576
7577         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
7578         at least as wide as intmax_t.
7579
7580 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
7581
7582         (Imported from Automake.)
7583         * build-aux/gnupload: Update to version 1.1 of directive file.
7584
7585 2006-10-16  Eric Blake  <ebb9@byu.net>
7586
7587         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
7588         match Automake 1.10a.
7589
7590 2006-10-14  Bruno Haible  <bruno@clisp.org>
7591
7592         * modules/sigprocmask: New file.
7593         * lib/sigprocmask.h: New file.
7594         * lib/sigprocmask.c: New file.
7595         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
7596         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
7597         request sigprocmask.o.
7598         (gl_PREREQ_SIGPROCMASK): New macro.
7599         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
7600         (Depends-on): Add sigprocmask.
7601         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
7602         gt_SIGNALBLOCKING. Test for 'raise' only once.
7603         * lib/fatal-signal.c: Include sigprocmask.h.
7604         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
7605         unblock_fatal_signals): Define always.
7606         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
7607         sigprocmask.
7608
7609 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7610
7611         Sync from Automake.
7612         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
7613         which incorrectly sets the mode of an existing destination
7614         directory.  In some cases the unpatched install-sh could do the
7615         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
7616         system.  We hope this is rare in practice, but it's clearly worth
7617         fixing.  Problem reported by Alex Unleashed in
7618         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
7619         Also, don't bother to check for -m bugs unless we're using -m;
7620         suggested by Stepan Kasal.
7621
7622 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7623
7624         Sync from Automake.
7625         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
7626         `-c' flag, so they appear at the same position as in %FASTDEP%
7627         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
7628         which ignores unknown options only after the first non-option.
7629         Bug report against M4 by Nelson H. F. Beebe.
7630
7631 2006-10-13  Jim Meyering  <jim@meyering.net>
7632
7633         Fix a bug in yesterday's change.
7634         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
7635         p->fts_statp->st_dev would be used uninitialized.
7636         Ensures that we always call fts_stat on the very first entry.
7637         Miklos Szeredi reported that find -xdev stopped working.
7638
7639 2006-10-12  Bruno Haible  <bruno@clisp.org>
7640
7641         * gnulib-tool (func_get_automake_snippet): Append an automatically
7642         computed EXTRA_DIST augmentation.
7643         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
7644         * modules/alloca-opt (Makefile.am): Likewise.
7645         * modules/allocsa (Makefile.am): Likewise.
7646         * modules/arcfour (Makefile.am): Likewise.
7647         * modules/arctwo (Makefile.am): Likewise.
7648         * modules/argmatch (Makefile.am): Likewise.
7649         * modules/argz (Makefile.am): Likewise.
7650         * modules/atexit (Makefile.am): Likewise.
7651         * modules/backupfile (Makefile.am): Likewise.
7652         * modules/byteswap (Makefile.am): Likewise.
7653         * modules/c-strtod (Makefile.am): Likewise.
7654         * modules/c-strtold (Makefile.am): Likewise.
7655         * modules/calloc (Makefile.am): Likewise.
7656         * modules/canon-host (Makefile.am): Likewise.
7657         * modules/canonicalize (Makefile.am): Likewise.
7658         * modules/chdir-long (Makefile.am): Likewise.
7659         * modules/chdir-safer (Makefile.am): Likewise.
7660         * modules/check-version (Makefile.am): Likewise.
7661         * modules/chown (Makefile.am): Likewise.
7662         * modules/cloexec (Makefile.am): Likewise.
7663         * modules/close-stream (Makefile.am): Likewise.
7664         * modules/closeout (Makefile.am): Likewise.
7665         * modules/crc (Makefile.am): Likewise.
7666         * modules/csharpexec (Makefile.am): Likewise.
7667         * modules/cycle-check (Makefile.am): Likewise.
7668         * modules/des (Makefile.am): Likewise.
7669         * modules/dev-ino (Makefile.am): Likewise.
7670         * modules/dirfd (Makefile.am): Likewise.
7671         * modules/dirname (Makefile.am): Likewise.
7672         * modules/dup2 (Makefile.am): Likewise.
7673         * modules/eealloc (Makefile.am): Likewise.
7674         * modules/error (Makefile.am): Likewise.
7675         * modules/euidaccess (Makefile.am): Likewise.
7676         * modules/exclude (Makefile.am): Likewise.
7677         * modules/exitfail (Makefile.am): Likewise.
7678         * modules/fcntl-safer (Makefile.am): Likewise.
7679         * modules/fcntl (Makefile.am): Likewise.
7680         * modules/file-type (Makefile.am): Likewise.
7681         * modules/fileblocks (Makefile.am): Likewise.
7682         * modules/filemode (Makefile.am): Likewise.
7683         * modules/filenamecat (Makefile.am): Likewise.
7684         * modules/fnmatch (Makefile.am): Likewise.
7685         * modules/fopen-safer (Makefile.am): Likewise.
7686         * modules/fpending (Makefile.am): Likewise.
7687         * modules/fprintftime (Makefile.am): Likewise.
7688         * modules/free (Makefile.am): Likewise.
7689         * modules/fsusage (Makefile.am): Likewise.
7690         * modules/ftruncate (Makefile.am): Likewise.
7691         * modules/fts (Makefile.am): Likewise.
7692         * modules/gc-arcfour (Makefile.am): Likewise.
7693         * modules/gc-des (Makefile.am): Likewise.
7694         * modules/gc-hmac-md5 (Makefile.am): Likewise.
7695         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
7696         * modules/gc-md4 (Makefile.am): Likewise.
7697         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
7698         * modules/gc-sha1 (Makefile.am): Likewise.
7699         * modules/gc (Makefile.am): Likewise.
7700         * modules/getaddrinfo (Makefile.am): Likewise.
7701         * modules/getcwd (Makefile.am): Likewise.
7702         * modules/getdelim (Makefile.am): Likewise.
7703         * modules/getdomainname (Makefile.am): Likewise.
7704         * modules/getgroups (Makefile.am): Likewise.
7705         * modules/gethostname (Makefile.am): Likewise.
7706         * modules/gethrxtime (Makefile.am): Likewise.
7707         * modules/getline (Makefile.am): Likewise.
7708         * modules/getloadavg (Makefile.am): Likewise.
7709         * modules/getlogin_r (Makefile.am): Likewise.
7710         * modules/getndelim2 (Makefile.am): Likewise.
7711         * modules/getopt (Makefile.am): Likewise.
7712         * modules/getpagesize (Makefile.am): Likewise.
7713         * modules/getpass-gnu (Makefile.am): Likewise.
7714         * modules/getpass (Makefile.am): Likewise.
7715         * modules/getsubopt (Makefile.am): Likewise.
7716         * modules/gettime (Makefile.am): Likewise.
7717         * modules/gettimeofday (Makefile.am): Likewise.
7718         * modules/getugroups (Makefile.am): Likewise.
7719         * modules/getusershell (Makefile.am): Likewise.
7720         * modules/glob (Makefile.am): Likewise.
7721         * modules/group-member (Makefile.am): Likewise.
7722         * modules/hard-locale (Makefile.am): Likewise.
7723         * modules/hash (Makefile.am): Likewise.
7724         * modules/hmac-md5 (Makefile.am): Likewise.
7725         * modules/hmac-sha1 (Makefile.am): Likewise.
7726         * modules/human (Makefile.am): Likewise.
7727         * modules/idcache (Makefile.am): Likewise.
7728         * modules/imaxabs (Makefile.am): Likewise.
7729         * modules/imaxdiv (Makefile.am): Likewise.
7730         * modules/inet_ntop (Makefile.am): Likewise.
7731         * modules/inet_pton (Makefile.am): Likewise.
7732         * modules/intprops (Makefile.am): Likewise.
7733         * modules/inttostr (Makefile.am): Likewise.
7734         * modules/inttypes (Makefile.am): Likewise.
7735         * modules/isapipe (Makefile.am): Likewise.
7736         * modules/javaversion (Makefile.am): Likewise.
7737         * modules/lchmod (Makefile.am): Likewise.
7738         * modules/lchown (Makefile.am): Likewise.
7739         * modules/localcharset (Makefile.am): Likewise.
7740         * modules/long-options (Makefile.am): Likewise.
7741         * modules/lstat (Makefile.am): Likewise.
7742         * modules/malloc (Makefile.am): Likewise.
7743         * modules/mathl (Makefile.am): Likewise.
7744         * modules/mbchar (Makefile.am): Likewise.
7745         * modules/md2 (Makefile.am): Likewise.
7746         * modules/md4 (Makefile.am): Likewise.
7747         * modules/md5 (Makefile.am): Likewise.
7748         * modules/memcasecmp (Makefile.am): Likewise.
7749         * modules/memchr (Makefile.am): Likewise.
7750         * modules/memcmp (Makefile.am): Likewise.
7751         * modules/memcoll (Makefile.am): Likewise.
7752         * modules/memcpy (Makefile.am): Likewise.
7753         * modules/memmem (Makefile.am): Likewise.
7754         * modules/memmove (Makefile.am): Likewise.
7755         * modules/mempcpy (Makefile.am): Likewise.
7756         * modules/memrchr (Makefile.am): Likewise.
7757         * modules/memset (Makefile.am): Likewise.
7758         * modules/memxor (Makefile.am): Likewise.
7759         * modules/mkancesdirs (Makefile.am): Likewise.
7760         * modules/mkdir-p (Makefile.am): Likewise.
7761         * modules/mkdir (Makefile.am): Likewise.
7762         * modules/mkdtemp (Makefile.am): Likewise.
7763         * modules/mkstemp (Makefile.am): Likewise.
7764         * modules/mktime (Makefile.am): Likewise.
7765         * modules/modechange (Makefile.am): Likewise.
7766         * modules/mountlist (Makefile.am): Likewise.
7767         * modules/nanosleep (Makefile.am): Likewise.
7768         * modules/obstack (Makefile.am): Likewise.
7769         * modules/openat (Makefile.am): Likewise.
7770         * modules/pagealign_alloc (Makefile.am): Likewise.
7771         * modules/pathmax (Makefile.am): Likewise.
7772         * modules/physmem (Makefile.am): Likewise.
7773         * modules/poll (Makefile.am): Likewise.
7774         * modules/posixtm (Makefile.am): Likewise.
7775         * modules/posixver (Makefile.am): Likewise.
7776         * modules/putenv (Makefile.am): Likewise.
7777         * modules/quote (Makefile.am): Likewise.
7778         * modules/quotearg (Makefile.am): Likewise.
7779         * modules/raise (Makefile.am): Likewise.
7780         * modules/read-file (Makefile.am): Likewise.
7781         * modules/readline (Makefile.am): Likewise.
7782         * modules/readlink (Makefile.am): Likewise.
7783         * modules/readtokens (Makefile.am): Likewise.
7784         * modules/readutmp (Makefile.am): Likewise.
7785         * modules/realloc (Makefile.am): Likewise.
7786         * modules/regex (Makefile.am): Likewise.
7787         * modules/rename-dest-slash (Makefile.am): Likewise.
7788         * modules/rename (Makefile.am): Likewise.
7789         * modules/rijndael (Makefile.am): Likewise.
7790         * modules/rmdir (Makefile.am): Likewise.
7791         * modules/rpmatch (Makefile.am): Likewise.
7792         * modules/safe-read (Makefile.am): Likewise.
7793         * modules/safe-write (Makefile.am): Likewise.
7794         * modules/same-inode (Makefile.am): Likewise.
7795         * modules/same (Makefile.am): Likewise.
7796         * modules/save-cwd (Makefile.am): Likewise.
7797         * modules/savedir (Makefile.am): Likewise.
7798         * modules/setenv (Makefile.am): Likewise.
7799         * modules/settime (Makefile.am): Likewise.
7800         * modules/sha1 (Makefile.am): Likewise.
7801         * modules/sig2str (Makefile.am): Likewise.
7802         * modules/snprintf (Makefile.am): Likewise.
7803         * modules/stat-macros (Makefile.am): Likewise.
7804         * modules/stat-time (Makefile.am): Likewise.
7805         * modules/stdbool (Makefile.am): Likewise.
7806         * modules/stdint (Makefile.am): Likewise.
7807         * modules/stdlib-safer (Makefile.am): Likewise.
7808         * modules/stpcpy (Makefile.am): Likewise.
7809         * modules/stpncpy (Makefile.am): Likewise.
7810         * modules/strcase (Makefile.am): Likewise.
7811         * modules/strcasestr (Makefile.am): Likewise.
7812         * modules/strchrnul (Makefile.am): Likewise.
7813         * modules/strcspn (Makefile.am): Likewise.
7814         * modules/strdup (Makefile.am): Likewise.
7815         * modules/strerror (Makefile.am): Likewise.
7816         * modules/strftime (Makefile.am): Likewise.
7817         * modules/strndup (Makefile.am): Likewise.
7818         * modules/strnlen (Makefile.am): Likewise.
7819         * modules/strpbrk (Makefile.am): Likewise.
7820         * modules/strsep (Makefile.am): Likewise.
7821         * modules/strstr (Makefile.am): Likewise.
7822         * modules/strtod (Makefile.am): Likewise.
7823         * modules/strtoimax (Makefile.am): Likewise.
7824         * modules/strtok_r (Makefile.am): Likewise.
7825         * modules/strtol (Makefile.am): Likewise.
7826         * modules/strtoll (Makefile.am): Likewise.
7827         * modules/strtoul (Makefile.am): Likewise.
7828         * modules/strtoull (Makefile.am): Likewise.
7829         * modules/strtoumax (Makefile.am): Likewise.
7830         * modules/strverscmp (Makefile.am): Likewise.
7831         * modules/sys_socket (Makefile.am): Likewise.
7832         * modules/sys_stat (Makefile.am): Likewise.
7833         * modules/sysexits (Makefile.am): Likewise.
7834         * modules/time_r (Makefile.am): Likewise.
7835         * modules/timegm (Makefile.am): Likewise.
7836         * modules/timespec (Makefile.am): Likewise.
7837         * modules/tmpfile-safer (Makefile.am): Likewise.
7838         * modules/trim (Makefile.am): Likewise.
7839         * modules/unistd-safer (Makefile.am): Likewise.
7840         * modules/unlinkdir (Makefile.am): Likewise.
7841         * modules/unlocked-io (Makefile.am): Likewise.
7842         * modules/userspec (Makefile.am): Likewise.
7843         * modules/utime (Makefile.am): Likewise.
7844         * modules/utimecmp (Makefile.am): Likewise.
7845         * modules/utimens (Makefile.am): Likewise.
7846         * modules/vasnprintf (Makefile.am): Likewise.
7847         * modules/vasprintf (Makefile.am): Likewise.
7848         * modules/vsnprintf (Makefile.am): Likewise.
7849         * modules/xalloc (Makefile.am): Likewise.
7850         * modules/xgetcwd (Makefile.am): Likewise.
7851         * modules/xnanosleep (Makefile.am): Likewise.
7852         * modules/xreadlink (Makefile.am): Likewise.
7853         * modules/xstrtod (Makefile.am): Likewise.
7854         * modules/xstrtol (Makefile.am): Likewise.
7855         * modules/xstrtold (Makefile.am): Likewise.
7856         * modules/yesno (Makefile.am): Likewise.
7857         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
7858
7859 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
7860
7861         * modules/error (Makefile.am): Distribute files through
7862         EXTRA_DIST, not lib_SOURCES.
7863
7864 2006-10-12  Eric Blake  <ebb9@byu.net>
7865
7866         * modules/error (Makefile.am): Distribute files in /lib.
7867         * modules/obstack (Makefile.am): Likewise.
7868
7869 2006-10-12  Bruno Haible  <bruno@clisp.org>
7870
7871         * modules/acl (Makefile.am): Distribute all files in lib/ through
7872         EXTRA_DIST.
7873         * modules/arcfour (Makefile.am): Likewise.
7874         * modules/arctwo (Makefile.am): Likewise.
7875         * modules/argmatch (Makefile.am): Likewise.
7876         * modules/argz (Makefile.am): Likewise.
7877         * modules/atexit (Makefile.am): Likewise.
7878         * modules/backupfile (Makefile.am): Likewise.
7879         * modules/c-strtod (Makefile.am): Likewise.
7880         * modules/c-strtold (Makefile.am): Likewise.
7881         * modules/calloc (Makefile.am): Likewise.
7882         * modules/canon-host (Makefile.am): Likewise.
7883         * modules/canonicalize (Makefile.am): Likewise.
7884         * modules/chdir-long (Makefile.am): Likewise.
7885         * modules/chdir-safer (Makefile.am): Likewise.
7886         * modules/check-version (Makefile.am): Likewise.
7887         * modules/chown (Makefile.am): Likewise.
7888         * modules/cloexec (Makefile.am): Likewise.
7889         * modules/close-stream (Makefile.am): Likewise.
7890         * modules/closeout (Makefile.am): Likewise.
7891         * modules/crc (Makefile.am): Likewise.
7892         * modules/cycle-check (Makefile.am): Likewise.
7893         * modules/des (Makefile.am): Likewise.
7894         * modules/dirfd (Makefile.am): Likewise.
7895         * modules/dirname (Makefile.am): Likewise.
7896         * modules/dup2 (Makefile.am): Likewise.
7897         * modules/euidaccess (Makefile.am): Likewise.
7898         * modules/exclude (Makefile.am): Likewise.
7899         * modules/exitfail (Makefile.am): Likewise.
7900         * modules/fcntl-safer (Makefile.am): Likewise.
7901         * modules/file-type (Makefile.am): Likewise.
7902         * modules/fileblocks (Makefile.am): Likewise.
7903         * modules/filemode (Makefile.am): Likewise.
7904         * modules/filenamecat (Makefile.am): Likewise.
7905         * modules/fnmatch (Makefile.am): Likewise.
7906         * modules/fopen-safer (Makefile.am): Likewise.
7907         * modules/fpending (Makefile.am): Likewise.
7908         * modules/fprintftime (Makefile.am): Likewise.
7909         * modules/free (Makefile.am): Likewise.
7910         * modules/fsusage (Makefile.am): Likewise.
7911         * modules/ftruncate (Makefile.am): Likewise.
7912         * modules/fts (Makefile.am): Likewise.
7913         * modules/gc (Makefile.am): Likewise.
7914         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
7915         * modules/getaddrinfo (Makefile.am): Likewise.
7916         * modules/getcwd (Makefile.am): Likewise.
7917         * modules/getdelim (Makefile.am): Likewise.
7918         * modules/getdomainname (Makefile.am): Likewise.
7919         * modules/getgroups (Makefile.am): Likewise.
7920         * modules/gethostname (Makefile.am): Likewise.
7921         * modules/gethrxtime (Makefile.am): Likewise.
7922         * modules/getline (Makefile.am): Likewise.
7923         * modules/getloadavg (Makefile.am): Likewise.
7924         * modules/getlogin_r (Makefile.am): Likewise.
7925         * modules/getopt (Makefile.am): Likewise.
7926         * modules/getpass (Makefile.am): Likewise.
7927         * modules/getpass-gnu (Makefile.am): Likewise.
7928         * modules/getsubopt (Makefile.am): Likewise.
7929         * modules/gettime (Makefile.am): Likewise.
7930         * modules/gettimeofday (Makefile.am): Likewise.
7931         * modules/getugroups (Makefile.am): Likewise.
7932         * modules/getusershell (Makefile.am): Likewise.
7933         * modules/glob (Makefile.am): Likewise.
7934         * modules/group-member (Makefile.am): Likewise.
7935         * modules/hard-locale (Makefile.am): Likewise.
7936         * modules/hash (Makefile.am): Likewise.
7937         * modules/hmac-md5 (Makefile.am): Likewise.
7938         * modules/hmac-sha1 (Makefile.am): Likewise.
7939         * modules/human (Makefile.am): Likewise.
7940         * modules/idcache (Makefile.am): Likewise.
7941         * modules/imaxabs (Makefile.am): Likewise.
7942         * modules/imaxdiv (Makefile.am): Likewise.
7943         * modules/inet_ntop (Makefile.am): Likewise.
7944         * modules/inet_pton (Makefile.am): Likewise.
7945         * modules/inttostr (Makefile.am): Likewise.
7946         * modules/isapipe (Makefile.am): Likewise.
7947         * modules/lchown (Makefile.am): Likewise.
7948         * modules/long-options (Makefile.am): Likewise.
7949         * modules/lstat (Makefile.am): Likewise.
7950         * modules/malloc (Makefile.am): Likewise.
7951         * modules/mathl (Makefile.am): Likewise.
7952         * modules/mbchar (Makefile.am): Likewise.
7953         * modules/md2 (Makefile.am): Likewise.
7954         * modules/md4 (Makefile.am): Likewise.
7955         * modules/md5 (Makefile.am): Likewise.
7956         * modules/memcasecmp (Makefile.am): Likewise.
7957         * modules/memchr (Makefile.am): Likewise.
7958         * modules/memcmp (Makefile.am): Likewise.
7959         * modules/memcoll (Makefile.am): Likewise.
7960         * modules/memcpy (Makefile.am): Likewise.
7961         * modules/memmem (Makefile.am): Likewise.
7962         * modules/memmove (Makefile.am): Likewise.
7963         * modules/mempcpy (Makefile.am): Likewise.
7964         * modules/memrchr (Makefile.am): Likewise.
7965         * modules/memset (Makefile.am): Likewise.
7966         * modules/memxor (Makefile.am): Likewise.
7967         * modules/mkancesdirs (Makefile.am): Likewise.
7968         * modules/mkdir (Makefile.am): Likewise.
7969         * modules/mkdir-p (Makefile.am): Likewise.
7970         * modules/mkdtemp (Makefile.am): Likewise.
7971         * modules/mkstemp (Makefile.am): Likewise.
7972         * modules/mktime (Makefile.am): Likewise.
7973         * modules/modechange (Makefile.am): Likewise.
7974         * modules/mountlist (Makefile.am): Likewise.
7975         * modules/nanosleep (Makefile.am): Likewise.
7976         * modules/openat (Makefile.am): Likewise.
7977         * modules/pagealign_alloc (Makefile.am): Likewise.
7978         * modules/physmem (Makefile.am): Likewise.
7979         * modules/poll (Makefile.am): Likewise.
7980         * modules/posixtm (Makefile.am): Likewise.
7981         * modules/posixver (Makefile.am): Likewise.
7982         * modules/putenv (Makefile.am): Likewise.
7983         * modules/quote (Makefile.am): Likewise.
7984         * modules/quotearg (Makefile.am): Likewise.
7985         * modules/raise (Makefile.am): Likewise.
7986         * modules/read-file (Makefile.am): Likewise.
7987         * modules/readline (Makefile.am): Likewise.
7988         * modules/readlink (Makefile.am): Likewise.
7989         * modules/readtokens (Makefile.am): Likewise.
7990         * modules/readutmp (Makefile.am): Likewise.
7991         * modules/realloc (Makefile.am): Likewise.
7992         * modules/regex (Makefile.am): Likewise.
7993         * modules/rename (Makefile.am): Likewise.
7994         * modules/rename-dest-slash (Makefile.am): Likewise.
7995         * modules/rijndael (Makefile.am): Likewise.
7996         * modules/rmdir (Makefile.am): Likewise.
7997         * modules/rpmatch (Makefile.am): Likewise.
7998         * modules/safe-read (Makefile.am): Likewise.
7999         * modules/safe-write (Makefile.am): Likewise.
8000         * modules/same (Makefile.am): Likewise.
8001         * modules/save-cwd (Makefile.am): Likewise.
8002         * modules/savedir (Makefile.am): Likewise.
8003         * modules/setenv (Makefile.am): Likewise.
8004         * modules/settime (Makefile.am): Likewise.
8005         * modules/sha1 (Makefile.am): Likewise.
8006         * modules/sig2str (Makefile.am): Likewise.
8007         * modules/snprintf (Makefile.am): Likewise.
8008         * modules/stdlib-safer (Makefile.am): Likewise.
8009         * modules/stpcpy (Makefile.am): Likewise.
8010         * modules/stpncpy (Makefile.am): Likewise.
8011         * modules/strcase (Makefile.am): Likewise.
8012         * modules/strcasestr (Makefile.am): Likewise.
8013         * modules/strchrnul (Makefile.am): Likewise.
8014         * modules/strcspn (Makefile.am): Likewise.
8015         * modules/strdup (Makefile.am): Likewise.
8016         * modules/strerror (Makefile.am): Likewise.
8017         * modules/strftime (Makefile.am): Likewise.
8018         * modules/strndup (Makefile.am): Likewise.
8019         * modules/strnlen (Makefile.am): Likewise.
8020         * modules/strpbrk (Makefile.am): Likewise.
8021         * modules/strsep (Makefile.am): Likewise.
8022         * modules/strstr (Makefile.am): Likewise.
8023         * modules/strtod (Makefile.am): Likewise.
8024         * modules/strtoimax (Makefile.am): Likewise.
8025         * modules/strtok_r (Makefile.am): Likewise.
8026         * modules/strtol (Makefile.am): Likewise.
8027         * modules/strtoll (Makefile.am): Likewise.
8028         * modules/strtoul (Makefile.am): Likewise.
8029         * modules/strtoull (Makefile.am): Likewise.
8030         * modules/strtoumax (Makefile.am): Likewise.
8031         * modules/strverscmp (Makefile.am): Likewise.
8032         * modules/time_r (Makefile.am): Likewise.
8033         * modules/timegm (Makefile.am): Likewise.
8034         * modules/tmpfile-safer (Makefile.am): Likewise.
8035         * modules/unistd-safer (Makefile.am): Likewise.
8036         * modules/unlinkdir (Makefile.am): Likewise.
8037         * modules/userspec (Makefile.am): Likewise.
8038         * modules/utime (Makefile.am): Likewise.
8039         * modules/utimecmp (Makefile.am): Likewise.
8040         * modules/utimens (Makefile.am): Likewise.
8041         * modules/vasnprintf (Makefile.am): Likewise.
8042         * modules/vasprintf (Makefile.am): Likewise.
8043         * modules/vsnprintf (Makefile.am): Likewise.
8044         * modules/xalloc (Makefile.am): Likewise.
8045         * modules/xgetcwd (Makefile.am): Likewise.
8046         * modules/xnanosleep (Makefile.am): Likewise.
8047         * modules/xreadlink (Makefile.am): Likewise.
8048         * modules/xstrtod (Makefile.am): Likewise.
8049         * modules/xstrtol (Makefile.am): Likewise.
8050         * modules/xstrtold (Makefile.am): Likewise.
8051         * modules/yesno (Makefile.am): Likewise.
8052
8053 2006-10-12  Jim Meyering  <jim@meyering.net>
8054
8055         * m4/getloadavg.m4: Revert the change below.
8056
8057         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
8058         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
8059         fail with a symlink, which is what coreutils' ./bootstrap now
8060         creates by default.
8061
8062 2006-10-12  Bruno Haible  <bruno@clisp.org>
8063
8064         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
8065         mingw.
8066         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
8067         MSVC and mingw explicitly.
8068
8069 2006-10-11  Simon Josefsson  <jas@extundo.com>
8070             Bruno Haible  <bruno@clisp.org>
8071
8072         Add support for multiple gnulib-tool invocations in the scope of a
8073         single configure.ac file.
8074         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
8075         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
8076         with the same contents as the _LIBADD variable.
8077         (func_emit_initmacro_start, func_emit_initmacro_end,
8078         func_emit_initmacro_done): New functions.
8079         (func_import, func_create_testdir): Invoke them. Allow the identifiers
8080         gl_LIBOBJS and gl_LTLIBOBJS.
8081
8082 2006-10-11  Bruno Haible  <bruno@clisp.org>
8083
8084         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
8085         (func_create_testdir): Don't create po/Makefile.am, don't invoke
8086         autoreconf. Instead, invoke autopoint explicitly but move back the
8087         *.m4 files from gnulib.
8088
8089 2006-10-11  Bruno Haible  <bruno@clisp.org>
8090
8091         * gnulib-tool (func_usage): Make module names after --create-testdir
8092         optional.
8093         (func_create_testdir): If no module was specified, use nearly all
8094         modules.
8095
8096 2006-10-12  Jim Meyering  <jim@meyering.net>
8097
8098         Big performance improvement for fts-based tools that use FTS_NOSTAT.
8099         Avoid spurious inode-mismatch problems on non-POSIX file systems.
8100         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
8101         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
8102         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
8103         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
8104         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
8105         (fts_set_stat_required): New function.
8106         (fts_open): Defer the calls to fts_stat, if possible or requested.
8107         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
8108         into fts_stat itself.
8109         (fts_read): Perform any required (deferred) fts_stat call.
8110         (fts_build): Likewise, for the directory we're about to open and read.
8111         In the readdir loop, carefully decide whether each entry will require
8112         an eventual call to fts_stat, using dirent.d_type info if available.
8113         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
8114         a command line argument into this function.  Update all callers.
8115         Map a return value of FTS_DOT to FTS_D for a command line argument.
8116         * modules/fts (Depends-on): Add d-type.  Alphabetize.
8117         Thanks to Miklos Szeredi for his tenacity and for the initial
8118         bug report about "find" failing on a FUSE-based file system.
8119
8120         * lib/fts.c (fts_open): Use consistent indentation.
8121
8122 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8123
8124         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
8125         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
8126         reported by Jim Meyering.  All uses of cache variables renamed
8127         to match Autoconf's.
8128         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
8129         the other one.
8130
8131         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
8132         Fix misspelling in diagnostic.
8133
8134 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8135
8136         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
8137         defined.  Problem reported by Matthew Woehlke.
8138
8139         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
8140         Add support for Tandem NonStop R series.
8141         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
8142         Use new macro.
8143
8144         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
8145         (has_trailing_slash): Omit size arg; all callers changed.
8146         Omit 'inline', since it doesn't help performance and we'd
8147         need to configure it.
8148         Don't count //, ///, etc. as having a trailing slash.
8149         As a side effect, this removes a C99ism reported by Matthew Woehlke.
8150         (rpl_rename_dest_slash): On failure, use rename's errno rather
8151         than (in some cases) an incorrect or junk errno.
8152         Simplify code by removing need to compute length; this does
8153         cause it to make two passes instead of one over the file name,
8154         but it's worth it.
8155
8156         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
8157         change, since Autoconf's version may no longer be appropriate now
8158         that we are using CVS Autoconf's version.  Add support for Tandem.
8159
8160 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8161             Bruno Haible  <bruno@clisp.org>
8162
8163         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
8164         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
8165         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
8166         gl_AC_TYPE_LONG_LONG.
8167
8168         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
8169         instead of HAVE_LONG_LONG.
8170         * lib/printf-args.c (printf_fetchargs): Likewise.
8171         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
8172         * lib/vasnprintf.c (VASNPRINTF): Likewise.
8173         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
8174         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
8175         gl_AC_TYPE_LONG_LONG.
8176
8177 2006-10-11  Bruno Haible  <bruno@clisp.org>
8178
8179         * m4/longlong.m4: Add comments.
8180         * m4/ulonglong.m4: Likewise.
8181
8182 2006-10-10  Bruno Haible  <bruno@clisp.org>
8183
8184         Make it possible to #define stpcpy, strdup to aliases.
8185         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
8186         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
8187
8188 2006-10-10  Bruno Haible  <bruno@clisp.org>
8189
8190         Make it possible to #define gcd to an alias.
8191         * lib/gcd.c: Include config.h.
8192
8193 2006-10-10  Bruno Haible  <bruno@clisp.org>
8194
8195         Make it possible to #define c_isascii to an alias.
8196         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
8197         defined. Undefine the macros before defining them, to avoid gcc
8198         warnings.
8199         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
8200         define NO_C_CTYPE_MACROS early.
8201
8202 2006-10-10  Bruno Haible  <bruno@clisp.org>
8203
8204         Make it possible to #define set_program_name to an alias.
8205         * lib/progname.c: Don't undefine set_program_name; instead, undefine
8206         ENABLE_RELOCATABLE early.
8207
8208 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8209
8210         Port to Tandem NSK OSS, which has 64-bit signed int but at most
8211         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
8212         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
8213         More generally, don't assume that 64-bit signed int is available
8214         if unsigned int is, and vice versa.
8215         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
8216         unsigned symbols, not on their signed counterparts.
8217         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
8218         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
8219         (UINT64_C, UINTMAX_C):
8220         Likewise.
8221         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
8222         unsigned counterparts.
8223         (Have_long_long, Unsigned): New macros.
8224         (Int): Renamed from INT.
8225         (strtoimax): Use the new macros.
8226         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
8227         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
8228         * modules/inttypes (inttypes.h): Substitute
8229         HAVE_UNSIGNED_LONG_LONG_INT.
8230         * modules/stdint (stdint.h): Likewise.
8231         (Files): Add m4/ulonglong.m4.
8232
8233 2006-10-10  Bruno Haible  <bruno@clisp.org>
8234
8235         Fix a gcc -Wshadow warning.
8236         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
8237         to 'bucket'.
8238         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
8239         gl_linked_indexof_from_to): Likewise.
8240         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
8241         Likewise.
8242         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
8243         Likewise.
8244         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
8245         Reported by Eric Blake.
8246
8247 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
8248
8249         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
8250         for NetBSD.  Problem reported by Bruno Haible.
8251
8252 2006-10-09  Jim Meyering  <jim@meyering.net>
8253
8254         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
8255         Patch from Bruno Haible.
8256
8257 2006-10-09  Jim Meyering  <jim@meyering.net>
8258
8259         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
8260         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
8261         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
8262
8263 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
8264
8265         Don't include <config.h> twice; this doesn't work in some cases,
8266         e.g., when config.h has "#define intmax_t long long int" and
8267         we include <config.h>, <inttypes.h>, <config.h> in that order.
8268         Problem reported by Matthew Woehlke in:
8269         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
8270         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
8271         * lib/fts-cycle.c: Don't include config.h.
8272         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
8273         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
8274         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
8275         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
8276         inttypes.h.
8277         * lib/xstrtoumax.c: Likewise.
8278         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
8279         __strtol and the like, so that this module is more like its siblings.
8280         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
8281         Remove; no longer needed now that we assume gnulib inttypes.h.
8282
8283 2006-10-08  Bruno Haible  <bruno@clisp.org>
8284
8285         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
8286         option.
8287
8288 2006-10-07  Jim Meyering  <jim@meyering.net>
8289
8290         * modules/inttypes (inttypes.h): Revert what seems to have been
8291         an inadvertent part of today's change: use "|", not "/" in the
8292         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
8293
8294 2006-10-07  Bruno Haible  <bruno@clisp.org>
8295
8296         * modules/sublist: New file.
8297
8298 2006-10-07  Bruno Haible  <bruno@clisp.org>
8299
8300         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
8301         * modules/argz (argz.h): Likewise.
8302         * modules/arpa_inet (arpa/inet.h): Likewise.
8303         * modules/byteswap (byteswap.h): Likewise.
8304         * modules/configmake (configmake.h): Likewise.
8305         * modules/fcntl (fcntl.h): Likewise.
8306         * modules/fnmatch (fnmatch.h): Likewise.
8307         * modules/getopt (getopt.h): Likewise.
8308         * modules/glob (glob.h): Likewise.
8309         * modules/inttypes (inttypes.h): Likewise.
8310         * modules/netinet_in (netinet/in.h): Likewise.
8311         * modules/poll (poll.h): Likewise.
8312         * modules/stdbool (stdbool.h): Likewise.
8313         * modules/stdint (stdint.h): Likewise.
8314         * modules/sys_select (sys/select.h): Likewise.
8315         * modules/sys_socket (sys/socket.h): Likewise.
8316         * modules/sys_stat (sys/stat.h): Likewise.
8317         * modules/sysexits (sysexits.h): Likewise.
8318         * modules/unistd (unistd.h): Likewise.
8319         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8320         Add a "DO NOT EDIT" comment to the generated file.
8321         (func_import): Likewise for gnulib-comp.m4.
8322
8323 2006-10-07  Bruno Haible  <bruno@clisp.org>
8324
8325         * lib/gl_sublist.h: New file.
8326         * lib/gl_sublist.c: New file.
8327
8328 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8329
8330         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
8331         name (relative to the original working directory) and the file
8332         name component (relative to the temporary working directory).  All
8333         callers changed.
8334         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
8335         * lib/mkdir-p.c (make_dir_parents): Likewise.
8336         * lib/mkdir-p.h (make_dir_parents): Likewise.
8337
8338 2006-10-06  Eric Blake  <ebb9@byu.net>
8339
8340         Define several macros for use by the clean-temp module.
8341         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
8342         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
8343         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
8344
8345         * lib/clean-temp.h (close_stream_temp): New declaration.
8346         * lib/clean-temp.c (includes): Pull in headers according to what
8347         other modules are in use.
8348         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
8349
8350 2006-10-06  Bruno Haible  <bruno@clisp.org>
8351
8352         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
8353         instead of fopen, fwriteerror.
8354
8355 2006-10-06  Bruno Haible  <bruno@clisp.org>
8356
8357         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
8358         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
8359         int.
8360         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
8361         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
8362         Return an error indicator.
8363         Suggested by Eric Blake.
8364
8365 2006-10-06  Bruno Haible  <bruno@clisp.org>
8366
8367         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
8368         Reported by Eric Blake.
8369
8370 2006-10-06  Bruno Haible  <bruno@clisp.org>
8371
8372         * modules/closeout (Description): Mention stderr too.
8373
8374 2006-10-06  Bruno Haible  <bruno@clisp.org>
8375         and Paul Eggert  <eggert@cs.ucla.edu>
8376
8377         * lib/closeout.c (close_stdout): Also close stderr.
8378         * lib/closeout.h: Update comment.
8379
8380 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8381
8382         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
8383         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
8384         * lib/dirchownmod.c: Include lchown.h.
8385         * lib/lchown.c: Don't include files that lchown.h now includes.
8386         Don't declare chown, since lchown.h now does that.
8387         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
8388         (lchown): Define to rpl_chown if lchown is declared but
8389         does not exist.  Declare using a prototype if lchown is not
8390         declared.  Add a copyright notice.
8391         * lib/mkstemp.h: Include <unistd.h>.
8392         * lib/openat.c: Include lchown.h.
8393
8394         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
8395         we now test for that separately.
8396         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
8397         rather than O_NOFOLLOW, when testing whether it's possible to
8398         avoid a race condition reliably.
8399         * lib/savewd.c (savewd_chdir): Likewise.
8400
8401         Remove macros that are no longer needed now that stdint.h is
8402         reliable.
8403         * lib/fsusage.c (UINTMAX_MAX): Remove.
8404         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
8405         * lib/utimecmp.c (SIZE_MAX): Remove.
8406
8407         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
8408
8409         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
8410         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
8411         O_NOATIME works.
8412
8413 2006-10-05  Bruno Haible  <bruno@clisp.org>
8414
8415         * lib/gl_list.h (gl_sortedlist_search_from_to,
8416         gl_sortedlist_indexof_from_to): New declarations.
8417         (gl_list_implementation): New fields sortedlist_search_from_to,
8418         sortedlist_indexof_from_to.
8419         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
8420         inline functions.
8421         * lib/gl_list.c (gl_sortedlist_search_from_to,
8422         gl_sortedlist_indexof_from_to): New functions.
8423         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
8424         function.
8425         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
8426         (gl_array_sortedlist_search_from_to): New function.
8427         (gl_array_list_implementation): Update.
8428         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
8429         function.
8430         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
8431         (gl_carray_sortedlist_search_from_to): New function.
8432         (gl_carray_list_implementation): Update.
8433         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
8434         gl_linked_sortedlist_indexof_from_to): New functions.
8435         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8436         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8437         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
8438         gl_tree_sortedlist_indexof_from_to): New functions.
8439         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8440         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8441         Update.
8442         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8443         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
8444         Update.
8445
8446 2006-10-05  Bruno Haible  <bruno@clisp.org>
8447
8448         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
8449         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
8450         (struct gl_list_implementation): Add fields search_from_to,
8451         indexof_from_to. Remove fields search, indexof.
8452         (gl_list_search): Use the search_from_to method.
8453         (gl_list_search_from, gl_list_search_from_to): New functions.
8454         (gl_list_indexof): Use the indexof_from_to method.
8455         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8456         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
8457         (gl_list_search_from, gl_list_search_from_to): New functions.
8458         (gl_list_indexof): Use the indexof_from_to method.
8459         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8460         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
8461         gl_array_indexof. Add start_index, end_index arguments.
8462         (gl_array_search_from_to): Renamed from gl_array_search. Add
8463         start_index, end_index arguments.
8464         (gl_array_remove, gl_array_list_implementation): Update.
8465         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
8466         gl_carray_indexof. Add start_index, end_index arguments.
8467         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
8468         start_index, end_index arguments.
8469         (gl_carray_remove, gl_carray_list_implementation): Update.
8470         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
8471         gl_linked_search. Add start_index, end_index arguments.
8472         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
8473         start_index, end_index arguments.
8474         (gl_linked_remove): Update.
8475         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8476         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8477         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
8478         field to 'size_t'.
8479         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
8480         gl_tree_search. Add start_index, end_index arguments.
8481         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8482         start_index, end_index arguments.
8483         (gl_tree_remove): Update.
8484         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8485         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8486         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
8487         function.
8488         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
8489         gl_tree_search. Add start_index, end_index arguments.
8490         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8491         start_index, end_index arguments.
8492         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8493         Update.
8494         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
8495
8496 2006-10-05  Bruno Haible  <bruno@clisp.org>
8497
8498         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
8499
8500         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
8501         fwriteerror_temp): New declarations.
8502         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
8503         (descriptors): New variable.
8504         (cleanup): First, close the descriptors.
8505         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
8506         fclose_temp, fwriteerror_temp): New functions.
8507
8508 2006-10-04  Jim Meyering  <jim@meyering.net>
8509
8510         * lib/fts.c (fts_open): Tiny comment change.
8511
8512 2006-10-04  Bruno Haible  <bruno@clisp.org>
8513
8514         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
8515         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
8516         gl_LOCK_BODY.
8517         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
8518         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
8519         gl_LOCK_EARLY_BODY.
8520         (gl_LOCK): Require gl_LOCK_BODY.
8521
8522 2006-10-04  Bruno Haible  <bruno@clisp.org>
8523
8524         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
8525         (gl_oset_search_atleast): New declaration.
8526         (struct gl_oset_implementation): Add field 'search_atleast'.
8527         (gl_oset_search_atleast): New inline function.
8528         * lib/gl_oset.c (gl_oset_search_atleast): New function.
8529         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
8530         (gl_array_oset_implementation): Update.
8531         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
8532         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
8533         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
8534
8535 2006-10-04  Bruno Haible  <bruno@clisp.org>
8536
8537         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
8538
8539 2006-10-03  Bruno Haible  <bruno@clisp.org>
8540
8541         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
8542         from gl_avltreehash_list_implementation.
8543
8544 2006-10-03  Bruno Haible  <bruno@clisp.org>
8545
8546         * lib/gl_oset.c (gl_oset_add): Fix return type.
8547
8548 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
8549
8550         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
8551
8552 2006-10-02  Eric Blake  <ebb9@byu.net>
8553
8554         * modules/strnlen (Depends-on): Add extensions.
8555
8556 2006-10-02  Eric Blake  <ebb9@byu.net>
8557
8558         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
8559         definition in 2.60+.
8560
8561 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
8562
8563         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
8564         checks.
8565
8566 2006-10-02  Bruno Haible  <bruno@clisp.org>
8567
8568         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
8569         to the AUTOMAKE_OPTIONS.
8570         Reported by Jim Meyering.
8571
8572 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8573
8574         Work around bug in Solaris 10 /proc file system:
8575         /proc/self/fd/NNN/.. isn't the parent directory of
8576         the directory whose file descriptor is NNN.  This needs to
8577         be worked around at run time, not compile time, since a
8578         program might be built on Solaris 8, where things work, and
8579         run on Solaris 10.
8580         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
8581         to use the following interface instead:
8582         (OPENAT_BUFFER_SIZE): New macro.
8583         (openat_proc_name): New function.
8584         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
8585         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
8586         Likewise.
8587         * lib/openat-proc.c: New file.
8588         * modules/openat (Files): Add lib/openat-proc.c.
8589         (Depends-on): Add same-inode, stdbool.
8590         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
8591
8592 2006-09-29  Bruno Haible  <bruno@clisp.org>
8593
8594         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
8595         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
8596         argument. Set stdout_closed before testing for ferror, not after.
8597         (fwriteerror, fwriteerror_no_ebadf): New functions.
8598
8599 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8600
8601         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
8602
8603 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
8604
8605         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
8606         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
8607
8608 2006-09-28  Jim Meyering  <jim@meyering.net>
8609
8610         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
8611         Include <unistd.h>.
8612
8613 2006-09-28  Bruno Haible  <bruno@clisp.org>
8614
8615         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
8616         * modules/linkedhash-list (Depends-on): Likewise.
8617         * modules/rbtreehash-list (Depends-on): Likewise.
8618
8619 2006-09-28  Bruno Haible  <bruno@clisp.org>
8620
8621         * lib/strndup.h: Simplify the redefinition of strndup.
8622         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
8623         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
8624
8625 2006-09-28  Bruno Haible  <bruno@clisp.org>
8626
8627         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
8628         * lib/gl_linkedhash_list.c: Likewise.
8629         * lib/gl_rbtreehash_list.c: Likewise.
8630
8631 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
8632
8633         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
8634         getaddrinfo.
8635
8636         * lib/__fpending.h: Don't include <stdio_ext.h> unless
8637         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
8638         it causes <stdio_ext.h> to cause a compile-time error.
8639         Problem reported by Nelson H. F. Beebe.
8640         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
8641         of HAVE_DECL___PENDING.
8642
8643         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
8644         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
8645         declaration.
8646
8647 2006-09-27  Jim Meyering  <jim@meyering.net>
8648
8649         This file could end up with a definition for a function
8650         named __strndup, rather than rpl_strndup on a system with
8651         incomplete weak_alias support.
8652         * lib/strndup.c (strndup): Rename from __strndup.
8653         Remove #defines that used to map __strndup to strndup.
8654         Don't use K&R prototypes.
8655         Remove LIBC-related code, since this file is not sync'd with glibc.
8656         * lib/strndup.h: Revamp, accordingly.
8657         * m4/strndup.m4: Modernize.
8658
8659 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8660
8661         * modules/savewd (Depends-on): Add 'raise'.
8662         * lib/savewd.c: Include <signal.h>, for 'raise'.
8663
8664 2006-09-26  Jim Meyering  <jim@meyering.net>
8665
8666         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
8667         when we detect Darwin 8.7.0's acl_get_file bug.
8668         Rearrange to perform the new (below) run-test while $LIBS
8669         contains any acl-related library.  Set USE_ACL at the end.
8670         (gl_ACL_GET_FILE): New function.
8671
8672 2006-09-26  Eric Blake  <ebb9@byu.net>
8673
8674         * lib/verror.c: Include <config.h> unconditionally.
8675
8676 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
8677
8678         * modules/clock-time (Maintainer): Add self.
8679         * modules/getlogin_r (Depends-on): Add extensions.
8680
8681 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8682
8683         * modules/clock-time: New module.
8684         * modules/nanosleep (Depends-on): Add clock-time.
8685         * modules/gethrxtime (Depends-on): Likewise.
8686         * modules/gettime (Depends-on): Likewise.
8687         * modules/settime (Depends-on): Likewise.
8688
8689         * modules/fts-lgpl: Depend on openat.
8690         * modules/mkancesdirs: Depend on savewd.
8691         * modules/mkdir-p: Likewise.
8692
8693 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8694
8695         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
8696
8697         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
8698         `gl_have_arbitrary_file_name_length_limit' to
8699         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
8700         actually works between configure runs.
8701
8702 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8703             Bruno Haible  <bruno@clisp.org>
8704
8705         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
8706
8707 2006-09-25  Jim Meyering  <jim@meyering.net>
8708
8709         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
8710         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
8711
8712 2006-09-25  Eric Blake  <ebb9@byu.net>
8713
8714         * gnulib-tool (func_import, func_create_testdir): Fix typos in
8715         exec's in 2006-09-18 patch when shuffling fds.
8716
8717 2006-09-25  Bruno Haible  <bruno@clisp.org>
8718
8719         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
8720         Reported by Jim Meyering.
8721
8722 2006-09-24  Jim Meyering  <jim@meyering.net>
8723
8724         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
8725         compare a pointer against a literal "0".  That caused failures with
8726         at least HP-UX's hpcc.
8727
8728 2006-09-22  Simon Josefsson  <jas@extundo.com>
8729
8730         * modules/gc-sha1:
8731         * modules/gc-md4:
8732         * modules/gc-hmac-sha1:
8733         * modules/gc-hmac-md5:
8734         * modules/gc-des:
8735         * modules/gc-arcfour: Distribute more files.
8736
8737 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8738
8739         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
8740         (gl_linked_iterator_from_to): Initialize struct completely.
8741         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
8742         (gl_tree_iterator_from_to): Likewise
8743         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
8744         * lib/gl_array_list.c [lint] (gl_array_iterator)
8745         (gl_array_iterator_from_to): Likewise.
8746         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
8747         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
8748         (gl_carray_iterator_from_to): Likewise.
8749
8750         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
8751         * lib/md4.c (md4_process_block): Remove unused variable.
8752         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
8753         parentheses for clarity.
8754
8755 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8756
8757         * modules/bison-i18n (Depends-on): Add gettext.
8758
8759 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8760
8761         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
8762         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
8763         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
8764         also add missing comma that caused broken test.
8765         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
8766         stdlib.h, for `abort'.
8767         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
8768         variables.
8769         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
8770         include unistd.h if present, for `rmdir'.
8771         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
8772         variables.
8773         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
8774         in the process include standard headers for prototypes.
8775         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
8776         gets declared on GNU/Linux.
8777         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
8778         unistd.h, for `rmdir'.
8779         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
8780
8781         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
8782         always true.
8783         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
8784
8785         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
8786
8787 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8788
8789         * gnulib-tool (func_version): Create output all at once.  This
8790         may help avoid triggering unnecessary SIGPIPEs, and at any
8791         rate it doesn't hurt.
8792
8793 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8794             Bruno Haible  <bruno@clisp.org>
8795
8796         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
8797         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
8798         * m4/signed.m4 (bh_C_SIGNED): Likewise.
8799
8800         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
8801         (gl_FUNC_VASPRINTF): Invoke it.
8802
8803 2006-09-22  Bruno Haible  <bruno@clisp.org>
8804
8805         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
8806         getloadavg.c as first argument.
8807
8808 2006-09-22  Bruno Haible  <bruno@clisp.org>
8809
8810         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
8811         at the beginning of the gl_INIT macro.
8812         * modules/getloadavg (configure.ac): Pass $gl_source_base to
8813         gl_GETLOADAVG.
8814
8815 2006-09-22  Bruno Haible  <bruno@clisp.org>
8816
8817         * gnulib-tool (func_create_megatestdir): Don't include the config-h
8818         module.
8819         Suggested by Ralf Wildenhues.
8820
8821 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
8822
8823         Import this patch from libc:
8824
8825         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
8826
8827         * lib/regex_internal.c (re_string_reconstruct): Handle
8828         offset < pstr->valid_raw_len && pstr->offsets_needed case.
8829         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
8830         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
8831         re_string_context_at.
8832
8833         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
8834         now requires it.
8835         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
8836         gl_REGEX now does it for us.
8837         (gl_REGEX): Add test taken from
8838         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
8839
8840         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
8841         Check that large offsets work.  Modernize Autoconf usages.
8842         Prefer "yes" to mean a good thing rather than a bad.
8843         Don't put "#define mkstemp" in config.h, as this might interfere
8844         with standard system headers that "#define mkstemp mkstemp64".
8845
8846         * modules/mkstemp (Depends-on): Add extensions, so that
8847         mkstemp is visible on some platforms.
8848         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
8849         (Include): Change to "mkstemp.h" from <stdlib.h>.
8850         (Files): Add mkstemp.h.
8851
8852         * lib/mkstemp.h: New file, since some standard headers
8853         #define mkstemp.
8854         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
8855         Include "mkstemp.h".
8856         Make the _LIBC code resemble glibc original more,
8857         e.g., use K&R style.
8858         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
8859         (mkstemp): Remove, since mkstemp.h does this for us.
8860         * lib/stdlib--.h: Include mkstemp.h.
8861
8862         Import this patch from libc:
8863
8864         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
8865
8866         * lib/tempname.c (__gen_tempname): Change attempts_min
8867         into a macro.  Use preprocessor to decide how to initialize
8868         attempts [Coverity CID 67].
8869
8870 2006-09-20  Bruno Haible  <bruno@clisp.org>
8871
8872         * lib/mkdtemp.c: Import from libc.
8873         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
8874                 * sysdeps/posix/tempname.c (__gen_tempname): Change
8875                 attempts_min into a macro.  Use preprocessor to decide how to
8876                 initialize attempts [Coverity CID 67].
8877         2001-11-27  Paul Eggert  <eggert@twinsun.com>
8878                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
8879                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
8880
8881 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8882
8883         * gnulib-tool (func_exit): New function, to allow to pass the
8884         exit status portably through the trap.  Use everywhere.
8885         (--help, --version): Signal a write error.
8886         (trap): catch SIGPIPE, for write errors.
8887         Exit at the end of the trap, with the correct exit status.
8888
8889 2006-09-19  Karl Berry  <karl@gnu.org>
8890
8891         * doc/gnulib.texi: note about the license texinfo files.
8892
8893 2006-09-19  Eric Blake  <ebb9@byu.net>
8894
8895         * gnulib-tool: Avoid space-tab.
8896
8897 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
8898
8899         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
8900         that prevented coreutils 6.1 from building.  Problem reported
8901         by Petter Reinholdtsen.
8902
8903 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
8904
8905         * gnulib-tool (avoidlist): Fix typo that broke options like
8906         --avoid=lock that are used by coreutils bootstrap.
8907
8908 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
8909
8910         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
8911         more systematically.
8912
8913 2006-09-18  Jim Meyering  <jim@meyering.net>
8914
8915         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
8916
8917 2006-09-18  Bruno Haible  <bruno@clisp.org>
8918
8919         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
8920
8921 2006-09-18  Bruno Haible  <bruno@clisp.org>
8922
8923         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
8924         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
8925         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
8926         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
8927         * m4/gettext.m4: Require autoconf >= 2.52.
8928         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
8929         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
8930         of gl_cv_header_inttypes_h.
8931
8932 2006-09-18  Bruno Haible  <bruno@clisp.org>
8933
8934         * lib/javaversion.c: Include configmake.h.
8935
8936 2006-09-18  Bruno Haible  <bruno@clisp.org>
8937
8938         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
8939         avoid that the while loops be executed in a subshell.
8940
8941 2006-09-18  Bruno Haible  <bruno@clisp.org>
8942
8943         * MODULES.html.sh (func_module): Break long lines.
8944         Suggested by Bruce Korb <bkorb@gnu.org>.
8945
8946 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8947
8948         Speed up by a factor of 1.12.
8949         * gnulib-tool (nl): New variable.
8950         (func_import): Rewrite include directive extraction to only read each
8951         directive once.
8952
8953 2006-09-17  Bruno Haible  <bruno@clisp.org>
8954
8955         * modules/javaversion (Makefile.am): Remove DEFS setting.
8956         (Depends-on): Add configmake, for PKGDATADIR definition.
8957
8958 2006-09-17  Bruno Haible  <bruno@clisp.org>
8959
8960         * gnulib-tool (func_create_testdir): Rewrite all files at once.
8961
8962 2006-09-17  Bruno Haible  <bruno@clisp.org>
8963
8964         * gnulib-tool (func_append): New function, stolen from libtool.m4.
8965         (func_modules_transitive_closure, func_modules_add_dummy,
8966         func_modules_to_filelist, func_import, func_create_testdir,
8967         func_create_megatestdir, ...): Use it wherever possible.
8968         Suggested by Ralf Wildenhues.
8969
8970 2006-09-16  Karl Berry  <karl@gnu.org>
8971
8972         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
8973         to avoid sectioning errors.
8974         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
8975         [ifinfo]: blank line after @center-ed titles.
8976         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
8977         Spell FSF address consistently with others.
8978         (These changes approved by rms.)
8979
8980 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8981
8982         Speed up by a factor of 1.61.
8983         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
8984         already checked module names again.
8985
8986 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8987
8988         Speed up by a factor of 1.13.
8989         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
8990         for new_files, and the input to func_add_or_update.
8991
8992 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8993
8994         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
8995         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
8996
8997 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8998
8999         * modules/mkancesdirs (Depends-on): Add fcntl.
9000         * modules/savewd: New file.
9001         * MODULES.html.sh (File system functions): Add savewd.
9002
9003         * modules/configmake (Makefile.am): Add support for the
9004         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
9005
9006 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9007
9008         * m4/savewd.m4: New file.
9009
9010 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9011
9012         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
9013         (dirchownmod): New arg FD.  All callers changed.
9014         Use FD rather than opening the directory ourself, as opening is
9015         now the caller's responsibility.
9016         * lib/dirchownmod.h: Likewise.
9017         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
9018         hosts that require <sys/types.h> before <sys/stat.h>.  Include
9019         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
9020         (test_dir): Remove.
9021         (mkancesdirs): Return length of prefix of FILE that has already
9022         been made, or -2 if there is a child doing the work.  Redo
9023         algorithm so that it is O(N) rather than O(N**2).  Optimize away
9024         ".", and treat ".." specially since it might stray back into
9025         already-created areas.  Use a subprocess if necessary.  New arg
9026         WD; all users changed.  MAKE_DIR function should now return 1
9027         if it creates a directory that is not readable.  Return -2 if
9028         a child process is spun off.
9029         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
9030         Adjust signature to match code.
9031         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
9032         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
9033         all users changed.
9034         * lib/savewd.c, lib/savewd.h: New files.
9035
9036 2006-09-15  Jim Meyering  <jim@meyering.net>
9037
9038         * modules/rename-dest-slash: New module.
9039         * MODULES.html.sh (posix_compat): Add it here.
9040
9041         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
9042
9043 2006-09-15  Jim Meyering  <jim@meyering.net>
9044
9045         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
9046         file.
9047
9048         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
9049
9050 2006-09-15  Jim Meyering  <jim@meyering.net>
9051
9052         * lib/rename-dest-slash.c (has_trailing_slash): Use
9053         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
9054         (rpl_rename_dest_slash): Perform the cheaper trailing slash
9055         test before testing whether SRC is a directory.
9056         Suggestions from Bruno Haible.
9057
9058         Avoid a warning about an unused variable.
9059         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
9060         into the #ifdef block where it's used.
9061
9062         * lib/rename-dest-slash.c: New file.
9063
9064 2006-09-14  Bruno Haible  <bruno@clisp.org>
9065
9066         * lib/allocsa.c: Include <config.h> unconditionally.
9067         * lib/asnprintf.c: Likewise.
9068         * lib/asprintf.c: Likewise.
9069         * lib/c-strcasecmp.c: Likewise.
9070         * lib/c-strcasestr.c: Likewise.
9071         * lib/c-strncasecmp.c: Likewise.
9072         * lib/c-strstr.c: Likewise.
9073         * lib/classpath.c: Likewise.
9074         * lib/clean-temp.c: Likewise.
9075         * lib/concatpath.c: Likewise.
9076         * lib/copy-file.c: Likewise.
9077         * lib/csharpcomp.c: Likewise.
9078         * lib/csharpexec.c: Likewise.
9079         * lib/execute.c: Likewise.
9080         * lib/fatal-signal.c: Likewise.
9081         * lib/findprog.c: Likewise.
9082         * lib/fwriteerror.c: Likewise.
9083         * lib/gl_array_list.c: Likewise.
9084         * lib/gl_array_oset.c: Likewise.
9085         * lib/gl_avltree_list.c: Likewise.
9086         * lib/gl_avltree_oset.c: Likewise.
9087         * lib/gl_avltreehash_list.c: Likewise.
9088         * lib/gl_carray_list.c: Likewise.
9089         * lib/gl_linked_list.c: Likewise.
9090         * lib/gl_linkedhash_list.c: Likewise.
9091         * lib/gl_list.c: Likewise.
9092         * lib/gl_oset.c: Likewise.
9093         * lib/gl_rbtree_list.c: Likewise.
9094         * lib/gl_rbtree_oset.c: Likewise.
9095         * lib/gl_rbtreehash_list.c: Likewise.
9096         * lib/imaxabs.c: Likewise.
9097         * lib/imaxdiv.c: Likewise.
9098         * lib/javacomp.c: Likewise.
9099         * lib/javaexec.c: Likewise.
9100         * lib/javaversion.c: Likewise.
9101         * lib/linebreak.c: Likewise.
9102         * lib/localcharset.c: Likewise.
9103         * lib/lock.c: Likewise.
9104         * lib/mbchar.c: Likewise.
9105         * lib/mbswidth.c: Likewise.
9106         * lib/mkdtemp.c: Likewise.
9107         * lib/pipe.c: Likewise.
9108         * lib/printf-args.c: Likewise.
9109         * lib/printf-parse.c: Likewise.
9110         * lib/progname.c: Likewise.
9111         * lib/progreloc.c: Likewise.
9112         * lib/readlink.c: Likewise.
9113         * lib/sh-quote.c: Likewise.
9114         * lib/stpcpy.c: Likewise.
9115         * lib/stpncpy.c: Likewise.
9116         * lib/strcasecmp.c: Likewise.
9117         * lib/strcasestr.c: Likewise.
9118         * lib/strcspn.c: Likewise.
9119         * lib/striconv.c: Likewise.
9120         * lib/strncasecmp.c: Likewise.
9121         * lib/strnlen1.c: Likewise.
9122         * lib/strstr.c: Likewise.
9123         * lib/strtok_r.c: Likewise.
9124         * lib/tls.c: Likewise.
9125         * lib/tmpdir.c: Likewise.
9126         * lib/unicodeio.c: Likewise.
9127         * lib/unsetenv.c: Likewise.
9128         * lib/vasnprintf.c: Likewise.
9129         * lib/vasprintf.c: Likewise.
9130         * lib/wait-process.c: Likewise.
9131         * lib/xallocsa.c: Likewise.
9132         * lib/xsetenv.c: Likewise.
9133         * lib/xstriconv.c: Likewise.
9134
9135 2006-09-13  Simon Josefsson  <jas@extundo.com>
9136
9137         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
9138         that internally, suggested by Ralf Wildenhues
9139         <Ralf.Wildenhues@gmx.de>.
9140
9141 2006-09-13  Simon Josefsson  <jas@extundo.com>
9142
9143         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
9144         @LIBOBJS@.
9145         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9146
9147 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
9148
9149         * lib/_fpending.c: Include <config.h> unconditionally, since we no
9150         longer worry about uses that don't define HAVE_CONFIG_H.
9151         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
9152         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
9153         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
9154         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
9155         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
9156         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
9157         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
9158         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
9159         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
9160         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
9161         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
9162         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
9163         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
9164         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
9165         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
9166         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
9167         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
9168         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
9169         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
9170         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
9171         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
9172         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
9173         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
9174         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
9175         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
9176         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
9177         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
9178         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
9179         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
9180         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
9181         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
9182         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
9183         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
9184         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
9185         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
9186         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
9187         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
9188         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
9189         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
9190         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
9191         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
9192         Likewise.
9193
9194 2006-09-13  Eric Blake  <ebb9@byu.net>
9195
9196         * lib/getopt.c: Fix typo in last commit.
9197
9198 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9199
9200         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
9201         dgettext.
9202
9203 2006-09-12  Jim Meyering  <jim@meyering.net>
9204
9205         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
9206         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
9207         Reported by Nelson H. F. Beebe.
9208
9209 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9210
9211         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
9212         program_invocation_name and program_invocation_short_name are
9213         initialized.
9214         * lib/argp-namefrob.h: Move declarations of program_invocation_name
9215         and program_invocation_short_name to argp.h, so they are visible
9216         to user programs.
9217         * lib/argp.h: Likewise
9218
9219 2006-09-10  Bruno Haible  <bruno@clisp.org>
9220
9221         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
9222         m4/inttypes_h.m4, m4/uintmax_t.m4.
9223
9224 2006-09-10  Bruno Haible  <bruno@clisp.org>
9225
9226         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
9227         gl_AC_TYPE_UINTMAX_T.
9228
9229 2006-09-10  Bruno Haible  <bruno@clisp.org>
9230
9231         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
9232
9233 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9234
9235         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
9236         convention.  Text proposed by Bruno Haible.
9237         (struct argp_option): Document the use of N_() wrappers.
9238
9239         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
9240         '\v', and translate the two parts separately, instead of feeding
9241         the whole string to gettext.  This allows to exclude
9242         '\v' from the strings visible to the translator by writing doc
9243         strings as N_("..") "\v" N_("..").
9244
9245 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
9246
9247         * config/srclist.txt: Undo latest change; the bug was fixed.
9248
9249 2006-09-09  Bruno Haible  <bruno@clisp.org>
9250
9251         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
9252         assignments if building a library without libtool.
9253         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
9254         in func_emit_lib_Makefile_am.
9255         (func_import): When building a static library libfoo.a, arrange to
9256         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
9257         (func_create_testdir): Likewise.
9258         * modules/gc (configure.ac, Makefile.am): If building statically,
9259         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
9260         * modules/iconvme (configure.ac, Makefile.am): Likewise.
9261         * modules/striconv (configure.ac, Makefile.am): Likewise.
9262         Based on a suggestion by Ralf Wildenhues.
9263
9264 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9265
9266         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
9267         Check for unistd.h too, since Autoconf doesn't assume POSIX.
9268         Also:
9269
9270         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9271         Add year_2050_test to catch glibc bug 2821
9272         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9273
9274         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9275         Prefer #ifdef to #if.
9276
9277         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
9278         Return from 'main' instead of calling 'exit'.
9279
9280 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9281
9282         * lib/mktime.c (guess_time_tm): Fix bug where mktime
9283         returned the maximum time_t value rather than (time_t) -1.
9284         Problem originally reported by William Bardwell
9285         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9286
9287         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9288         Moved to here ...
9289         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9290         ... from here.
9291
9292 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9293
9294         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
9295         2821 is fixed.
9296
9297 2006-09-08  Jim Meyering  <jim@meyering.net>
9298
9299         Don't make generated files read-only.  That would bother too many
9300         people.  However, do retain the ability to work when targets are
9301         read-only: remove the destination and temporary files before writing
9302         them (when generated via sed or echo), or by using the -f option for
9303         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
9304         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9305         * modules/byteswap, modules/configmake, modules/fcntl:
9306         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9307         * modules/localcharset, modules/netinet_in, modules/poll:
9308         * modules/stdbool, modules/stdint, modules/sys_select:
9309         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9310
9311 2006-09-08  Jim Meyering  <jim@meyering.net>
9312
9313         Avoid new build failure on FreeBSD 6.0.
9314         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
9315         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
9316         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
9317
9318 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9319
9320         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
9321
9322 2006-09-07  Jim Meyering  <jim@meyering.net>
9323
9324         Fix global typo in last change: use chmod u-w, not chmod u-x.
9325         Spotted by Paul Eggert and Bruce Korb.
9326         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9327         * modules/byteswap, modules/configmake, modules/fcntl:
9328         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9329         * modules/localcharset, modules/netinet_in, modules/poll:
9330         * modules/stdbool, modules/stdint, modules/sys_select:
9331         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9332
9333 2006-09-06  Jim Meyering  <jim@meyering.net>
9334
9335         Make generated files be read-only.
9336         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
9337         Ensure that each generated file is now read-only.
9338         * modules/argz: Likewise.
9339         * modules/arpa_inet: Likewise.
9340         * modules/byteswap: Likewise.
9341         * modules/configmake: Likewise.
9342         * modules/fcntl: Likewise.
9343         * modules/fnmatch: Likewise.
9344         * modules/getopt: Likewise.
9345         * modules/glob: Likewise.
9346         * modules/inttypes: Likewise.
9347         * modules/netinet_in: Likewise.
9348         * modules/poll: Likewise.
9349         * modules/stdbool: Likewise.
9350         * modules/stdint: Likewise.
9351         * modules/sys_select: Likewise.
9352         * modules/sys_socket: Likewise.
9353         * modules/sys_stat: Likewise.
9354         * modules/sysexits: Likewise.
9355         * modules/localcharset: Same as above, but continue using temporary
9356         file named "t-$@" (why different?) rather than the "$@-t" used
9357         everywhere else.
9358
9359         * modules/sysexits (Makefile.am): Replace literal occurrences
9360         of "sysexit.h" more readable, and more consistent, "$@".
9361
9362 2006-09-06  Bruno Haible  <bruno@clisp.org>
9363
9364         * modules/striconv: New file.
9365         * modules/xstriconv: New file.
9366         * MODULES.html.sh (Internationalization functions): Add striconv,
9367         xstriconv.
9368
9369 2006-09-06  Bruno Haible  <bruno@clisp.org>
9370
9371         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
9372         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
9373         not using libtool correctly.
9374
9375 2006-09-06  Bruno Haible  <bruno@clisp.org>
9376
9377         * lib/striconv.h: New file.
9378         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
9379         iconvstring.c.
9380         * lib/xstriconv.h: New file.
9381         * lib/xstriconv.c: New file.
9382
9383 2006-09-06  Bruno Haible  <bruno@clisp.org>
9384
9385         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
9386         lib_..._LDFLAGS.
9387
9388 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9389
9390         * lib/argz_.h: Sync from Libtool.
9391
9392         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
9393                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9394
9395         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
9396
9397 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9398
9399         * modules/trim: New file.
9400
9401 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9402
9403         * lib/trim.h: New file.
9404         * lib/trim.c: New file.
9405
9406 2006-09-05  Bruno Haible  <bruno@clisp.org>
9407
9408         * MODULES.html.sh (String handling): Add trim.
9409
9410 2006-09-04  Karl Berry  <karl@gnu.org>
9411
9412         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
9413         until next release.
9414
9415 2006-09-03  Bruno Haible  <bruno@clisp.org>
9416
9417         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
9418         correctly.
9419
9420 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9421
9422         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
9423         not gl_GETLOADAVG.  Omit unneeded semicolons.
9424         Problems reported by Ralf Wildenhues in
9425         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9426         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
9427         at the end, which is the usual gnulib style.
9428
9429         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
9430         of doing all the work ourselves.
9431         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
9432         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
9433
9434 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9435
9436         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
9437         Problem reported by Ralf Wildenhues in
9438         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9439
9440         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
9441         HAVE_STRUCT_STATFS_F_FSTYPENAME.
9442
9443 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9444
9445         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
9446         yesterday's patch by changing test -n to test -z.
9447
9448 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9449
9450         * modules/getloadavg (Files): Add m4/getloadavg.m4.
9451         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
9452         the former is now obsolescent.
9453
9454         * modules/chdir-long (Depends-on): Add fcntl.
9455
9456 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9457
9458         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
9459         obsolescent, and programs should use gnulib instead.
9460         * m4/getloadavg.m4: New file, with contents taken from Autoconf
9461         but with prefixes changed.
9462
9463 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9464
9465         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
9466         or stdbool.h, because they might not exist while configuring.
9467
9468         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
9469         Don't include unistd.h or limits.h; not needed, since chdir-long.h
9470         does that for us.
9471         (O_DIRECTORY): Remove.
9472
9473 2006-08-31  Eric Blake  <ebb9@byu.net>
9474
9475         * gnulib-tool: Don't let emacs change spaces to TAB.
9476
9477 2006-08-31  Bruno Haible  <bruno@clisp.org>
9478
9479         * gnulib-tool: When calling func_import more than once, do it in a
9480         subshell.
9481         Reported by Eric Blake <ebb9@byu.net>.
9482
9483 2006-08-31  Bruno Haible  <bruno@clisp.org>
9484
9485         * gnulib-tool (nl): Remove variable.
9486         (sed_transform_lib_file): Use more robust test for config-h module.
9487         (func_import): Fix typo in 2006-08-25 patch.
9488
9489 2006-08-31  Bruno Haible  <bruno@clisp.org>
9490
9491         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
9492         specified, augment Makefile.am variables instead of assigning them.
9493
9494 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9495
9496         Work around a bug in both the Linux and SunOS 64-bit kernels:
9497         nanosleep mishandles sleeps for longer than 2**31 seconds.
9498         Problem reported by Frank v Waveren in
9499         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9500         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
9501         Check for nanosleep bug.
9502         (LIB_NANOSLEEP): Append clock_gettime library if needed.
9503
9504 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9505
9506         Work around a bug in both the Linux and SunOS 64-bit kernels:
9507         nanosleep mishandles sleeps for longer than 2**31 seconds.
9508         Problem reported by Frank v Waveren in
9509         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9510         * lib/nanosleep.c (BILLION): New constant.
9511         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
9512         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
9513         implementation.
9514
9515 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9516
9517         * modules/nanosleep (Depends-on): Add gettime.
9518
9519 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9520         and Simon Josefsson  <jas@extundo.com>
9521         and Oskar Liljeblad  <oskar@osk.mine.nu>
9522
9523         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
9524         * gnulib-tool (func_import): New license type 'unmodifiable license
9525         text'.
9526         * modules/fdl: Use it.  Longer description.
9527         * module/gpl, module/lgpl: New files.
9528
9529 2006-08-30  Jim Meyering  <jim@meyering.net>
9530
9531         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
9532         shadowing the parameter.
9533
9534 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9535
9536         Sync from Libtool:
9537
9538         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9539
9540         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
9541         sharing with gnulib.  Report by Eric Blake.
9542
9543 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9544
9545         * modules/isapipe: New file.
9546         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
9547
9548 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9549
9550         * modules/configmake (Makefile.am): Add a comment, and omit
9551         the CONFIGMAKE_ prefix from generated macro names.  Suggested
9552         by Bruno Haible.
9553
9554 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9555
9556         * m4/isapipe.m4: New file.
9557
9558 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9559
9560         * lib/isapipe.c, lib/isapipe.h: New files.
9561
9562 2006-08-29  Jim Meyering  <jim@meyering.net>
9563
9564         * modules/configmake (Makefile.am): Make configmake.h depend on
9565         Makefile.  Otherwise, a stale configmake.h could hang around.
9566
9567 2006-08-29  Eric Blake  <ebb9@byu.net>
9568
9569         * lib/error.c (error_at_line, print_errno_message): Match libc, after
9570         resolution of upstream bug 3044.
9571
9572 2006-08-29  Bruno Haible  <bruno@clisp.org>
9573
9574         * modules/localcharset (Depends-on): Add configmake.
9575         (Makefile.am): Remove setting of LIBDIR through DEFS.
9576
9577 2006-08-29  Bruno Haible  <bruno@clisp.org>
9578
9579         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
9580         defined.
9581
9582 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9583
9584         * modules/fcntl: New file.
9585         * modules/chdir-safer (Depends-on): Add fcntl.
9586         * modules/fts: Likewise.
9587         * modules/mkdir-p: Likewise.
9588
9589         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
9590         This undoes the most recent change, since we're now addressing the
9591         problem in a different way.
9592
9593         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
9594         into output, since the output might be called Makefile.am even
9595         if $makefile_name is something different.
9596         (func_import): Use $makefile_am rather than
9597         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
9598         empty.
9599
9600         * modules/inttypes (Files): Add m4/inttypes-h.m4.
9601
9602 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9603
9604         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
9605         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
9606         recent change to stdint.m4, since we're now addressing the problem in a
9607         different way.
9608
9609 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9610
9611         * m4/fcntl_h.m4: New file.
9612
9613 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9614
9615         * lib/fcntl_.h: New file.
9616         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
9617         the fcntl module.
9618         * lib/dirchownmod.c: Likewise.
9619         * lib/fts.c: Likewise.
9620
9621         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
9622         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
9623         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
9624         just before including <inttypes.h>, to avoid circular inclusion.
9625
9626 2006-08-28  Jim Meyering  <jim@meyering.net>
9627
9628         * doc/visibility.texi: Actually read and correct the grammar of the
9629         sentence affected by yesterday's change.
9630
9631 2006-08-28  Eric Blake  <ebb9@byu.net>
9632
9633         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
9634         needs wrapper.
9635
9636 2006-08-28  Eric Blake  <ebb9@byu.net>
9637
9638         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
9639
9640 2006-08-28  Eric Blake  <ebb9@byu.net>
9641
9642         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
9643
9644 2006-08-28  Bruno Haible  <bruno@clisp.org>
9645
9646         * modules/c-strstr: New file, from GNU gettext.
9647         * MODULES.html.sh (String handling): Add c-strstr.
9648
9649 2006-08-28  Bruno Haible  <bruno@clisp.org>
9650
9651         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
9652         macros.
9653         Reported by Eric Blake.
9654
9655 2006-08-28  Bruno Haible  <bruno@clisp.org>
9656
9657         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
9658         (VASNPRINTF): Return a string of length > INT_MAX without failing.
9659         * lib/vasprintf.c: Include errno.h, limits.h.
9660         (EOVERFLOW): New fallback definition.
9661         (vasprintf): Test here whether the string length is > INT_MAX.
9662         * lib/vsnprintf.c: Include errno.h, limits.h.
9663         (EOVERFLOW): New fallback definition.
9664         (vsnprintf): Fix bug when generated string was too long for the buffer.
9665         Test here whether the string length is > INT_MAX.
9666
9667 2006-08-28  Bruno Haible  <bruno@clisp.org>
9668
9669         * lib/inttypes_.h (SCNX*): Remove definitions.
9670         Reported by Eric Blake.
9671
9672 2006-08-28  Bruno Haible  <bruno@clisp.org>
9673
9674         * lib/c-strstr.h: New file, from GNU gettext.
9675         * lib/c-strstr.c: New file, from GNU gettext.
9676
9677 2006-08-28  Bruno Haible  <bruno@clisp.org>
9678
9679         * gnulib-tool: Reorder some statements.
9680
9681 2006-08-28  Bruno Haible  <bruno@clisp.org>
9682
9683         * gnulib-tool: New option --makefile-name.
9684         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
9685         $makefile_name.
9686         (func_import): Write $makefile_name to the cache file, and read it from
9687         there unless explicitly specified. Use $makefile_name as file name
9688         instead of Makefile.am. Adjust the recommendations accordingly.
9689
9690 2006-08-28  Bruno Haible  <bruno@clisp.org>
9691
9692         * gnulib-tool (func_verify_module): Check against misapplying patch.
9693
9694 2006-08-28  Bruno Haible  <bruno@clisp.org>
9695
9696         * gnulib-tool (func_relativize, func_relconcat): New functions.
9697         Give an error if --local-dir is given with --update.
9698         Remove trailing slashes from $local_gnulib_dir.
9699         (func_import): Store the relativized $local_gnulib_dir in
9700         gnulib-cache.m4, and read it from there if not specified explicitly.
9701
9702 2006-08-28  Bruno Haible  <bruno@clisp.org>
9703
9704         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
9705         is the current directory. Respect also $local_gnulib_dir.
9706
9707 2006-08-28  Bruno Haible  <bruno@clisp.org>
9708             Simon Josefsson  <jas@extundo.com>
9709
9710         BeOS portability.
9711         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
9712
9713 2006-08-27  Jim Meyering  <jim@meyering.net>
9714
9715         * doc/visibility.texi: Remove duplicate word: "pointer".
9716
9717 2006-08-26  Bruno Haible  <bruno@clisp.org>
9718
9719         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
9720         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
9721         (Makefile.am): Create inttypes.h from inttypes_.h.
9722         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
9723
9724         * modules/imaxabs: New file.
9725
9726         * modules/imaxdiv: New file.
9727
9728 2006-08-26  Bruno Haible  <bruno@clisp.org>
9729
9730         * m4/inttypes.m4: New file.
9731         * m4/_inttypes_h.m4: Remove file.
9732         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
9733         PRI_MACROS_BROKEN.
9734         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
9735
9736         * m4/imaxabs.m4: New file.
9737
9738         * m4/imaxdiv.m4: New file.
9739
9740 2006-08-26  Bruno Haible  <bruno@clisp.org>
9741
9742         * lib/inttypes_.h: New file.
9743         * lib/inttypes.h: Remove file.
9744         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
9745
9746         * lib/imaxabs.c: New file.
9747
9748         * lib/imaxdiv.c: New file.
9749
9750 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9751
9752         New config-h module, so that "make" output needn't be cluttered
9753         by -DHAVE_CONFIG_H.
9754         * MODULES.html.sh (Support for building libraries and executables):
9755         Add config-h.
9756         * modules/config-h: New file.
9757         * gnulib-tool (nl, sed_transform_lib_file): New vars.
9758         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
9759         the config-h module is used.
9760
9761         New configmake module, so that "make" output needn't be cluttered
9762         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
9763         * MODULES.html.sh (Support for building libraries and executables):
9764         Add configmake.
9765         * modules/configmake: New file.
9766
9767 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9768
9769         * m4/config-h.m4: New file.
9770
9771 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9772
9773         * config/srclist.txt: Add elisp-comp.
9774
9775 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9776
9777         * MODULES.html.sh (Support for building libraries and executables):
9778         Add elisp-comp.
9779         * build-aux/elisp-comp: New file.
9780         * modules/elisp-comp: New file.
9781
9782 2006-08-24  Bruno Haible  <bruno@clisp.org>
9783
9784         * gnulib-tool (func_create_testdir): Use non-default values of
9785         sourcebase and m4base.
9786
9787 2006-08-24  Bruno Haible  <bruno@clisp.org>
9788
9789         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
9790         HTML structure.
9791
9792 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9793
9794         * modules/openat (Depends-on): Add lchown.
9795
9796 2006-08-23  Bruno Haible  <bruno@clisp.org>
9797
9798         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
9799         of gl_LOCK_EARLY instead of gl_LOCK.
9800
9801 2006-08-23  Bruno Haible  <bruno@clisp.org>
9802
9803         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
9804         on OSF/1 to no.
9805         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
9806
9807 2006-08-23  Bruno Haible  <bruno@clisp.org>
9808
9809         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
9810         as unusable.
9811
9812         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
9813         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
9814         (gl_LOCK): New macro.
9815
9816 2006-08-22  Simon Josefsson  <jas@extundo.com>
9817
9818         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
9819         to md5 module.
9820
9821 2006-08-22  Simon Josefsson  <jas@extundo.com>
9822
9823         * MODULES.html.sh: Add "Support for maintaining and release
9824         projects".
9825
9826         * build-aux/gnupload: New file, from coreutils.
9827
9828 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9829
9830         Avoid the need for AC_LIBSOURCES in m4 macros.
9831         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
9832         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
9833         * modules/check-version (EXTRA_DIST): Add check-version.h.
9834         * modules/crc (EXTRA_DIST): Add crc.h.
9835         * modules/des (EXTRA_DIST): Add des.h.
9836         * modules/gc (EXTRA_DIST): Add gc.h.
9837         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
9838         * modules/getline (EXTRA_DIST): Add getline.h.
9839         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
9840         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
9841         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
9842         * modules/md2 (EXTRA_DIST): Add md2.h.
9843         * modules/md4 (EXTRA_DIST): Add md4.h.
9844         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
9845         * modules/read-file (EXTRA_DIST): Add read-file.h.
9846         * modules/readline (EXTRA_DIST): Add readline.h.
9847         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
9848         rijndael-api-fst.h.
9849
9850 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9851
9852         * m4/rijndael.m4 (gl_ARCFOUR):
9853         * m4/arctwo.m4 (gl_ARCTWO):
9854         * m4/check-version.m4 (gl_CHECK_VERSION):
9855         * m4/crc.m4 (gl_CRC):
9856         * m4/des.m4 (gl_DES):
9857         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
9858         * m4/gc.m4 (gl_GC):
9859         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
9860         * m4/getline.m4 (gl_FUNC_GETLINE):
9861         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
9862         * m4/hmac-md5.m4 (gl_HMAC_MD5):
9863         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
9864         * m4/md2.m4 (gl_MD2):
9865         * m4/md4.m4 (gl_MD4):
9866         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
9867         * m4/read-file.m4 (gl_FUNC_READ_FILE):
9868         * m4/readline.m4 (gl_FUNC_READLINE):
9869         * m4/rijndael.m4 (gl_RIJNDAEL):
9870         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
9871         to get the necessary .h files and whatnot.
9872
9873 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9874
9875         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
9876         gnulib rather than the other way around.
9877         * config/srclistvars.sh (COREUTILS): Remove.
9878
9879 2006-08-22  Jim Meyering  <jim@meyering.net>
9880
9881         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
9882
9883         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
9884
9885 2006-08-22  Eric Blake  <ebb9@byu.net>
9886
9887         * modules/regexprops-generic: New file.
9888         * MODULES.html.sh (Support for building documentation): List it.
9889
9890 2006-08-22  Eric Blake  <ebb9@byu.net>
9891
9892         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
9893         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
9894         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
9895         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
9896
9897 2006-08-22  Bruno Haible  <bruno@clisp.org>
9898
9899         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
9900         and lib_LTLIBRARIES like the other lib_* variables.
9901
9902 2006-08-22  Bruno Haible  <bruno@clisp.org>
9903
9904         * build-aux/x-to-1.in: New file, from GNU gettext.
9905
9906 2006-08-22  Bruno Haible  <bruno@clisp.org>
9907
9908         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
9909         <utmpx.h> exists.
9910
9911 2006-08-22  Bruno Haible  <bruno@clisp.org>
9912
9913         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
9914         <utmpx.h> exists.
9915
9916 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
9917
9918         BeOS portability.
9919         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
9920         exist.
9921         Problem reported by Bruno Haible.
9922
9923 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
9924
9925         Avoid the need for AC_LIBSOURCES in m4 macros.
9926         * modules/acl (EXTRA_DIST): Add acl.h.
9927         * modules/argmatch (Files): Add m4/argmatch.m4.
9928         (configure.ac): Add gl_ARGMATCH.
9929         (EXTRA_DIST): Renamed from lib_SOURCES, for
9930         consistency with the other modules.  Remove argmatch.c.
9931         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
9932         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
9933         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
9934         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
9935         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
9936         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
9937         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
9938         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
9939         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
9940         * modules/closeout (EXTRA_DIST): Add closeout.h.
9941         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
9942         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
9943         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
9944         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
9945         dirname.h; remove basename.c and stripslash.c.
9946         * modules/exclude (EXTRA_DIST): Add exclude.h.
9947         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
9948         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
9949         * modules/file-type (EXTRA_DIST): Add file-type.h.
9950         * modules/filemode (EXTRA_DIST): Add filemode.h.
9951         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
9952         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
9953         * modules/fpending (EXTRA_DIST): Add __fpending.h.
9954         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
9955         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
9956         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
9957         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
9958         * modules/getdate (EXTRA_DIST): Add getdate.c.
9959         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
9960         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
9961         * modules/getpass (EXTRA_DIST): Add getpass.h.
9962         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
9963         * modules/group-member (EXTRA_DIST): Add group-member.h.
9964         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
9965         * modules/hash (EXTRA_DIST): Add hash.h.
9966         * modules/human (EXTRA_DIST): Add human.h.
9967         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
9968         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
9969         * modules/lchown (EXTRA_DIST): Add lchown.h.
9970         * modules/long-options (EXTRA_DIST): Add long-options.h.
9971         * modules/lstat (EXTRA_DIST): Add lstat.h.
9972         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
9973         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
9974         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
9975         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
9976         * modules/memxor (EXTRA_DIST): Add memxor.h.
9977         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
9978         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
9979         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
9980         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
9981         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
9982         * modules/physmem (EXTRA_DIST): Add physmem.h.
9983         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
9984         * modules/posixver (EXTRA_DIST): Add posixver.h.
9985         * modules/quote (EXTRA_DIST): Add quote.h.
9986         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
9987         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
9988         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
9989         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
9990         regex_internal.h regexec.c.
9991         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
9992         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
9993         * modules/same (EXTRA_DIST): Add same.h.
9994         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
9995         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
9996         * modules/savedir (EXTRA_DIST): Add savedir.h.
9997         * modules/sha1 (EXTRA_DIST): Add sha1.h.
9998         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
9999         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
10000         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
10001         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
10002         * modules/strdup (EXTRA_DIST): Add strdup.h.
10003         * modules/strftime (EXTRA_DIST): Add strftime.h.
10004         * modules/strndup (EXTRA_DIST): Add strndup.h.
10005         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
10006         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
10007         * modules/time_r (EXTRA_DIST): Add time_r.h.
10008         * modules/timespec (EXTRA_DIST): Add timespec.h.
10009         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
10010         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
10011         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
10012         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
10013         * modules/userspec (EXTRA_DIST): Add userspec.h.
10014         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
10015         * modules/utimens (EXTRA_DIST): Add utimens.h.
10016         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
10017         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
10018         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
10019         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
10020         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
10021         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
10022         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
10023         * modules/yesno (EXTRA_DIST): Add yesno.h.
10024
10025 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10026
10027         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
10028
10029         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
10030         * m4/dev-ino.m4, same-inode.m4: Remove.
10031
10032         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
10033         * m4/acl.m4 (AC_FUNC_ACL):
10034         * m4/backupfile.m4 (gl_BACKUPFILE):
10035         * m4/c-strtod.m4 (gl_C99_STRTOLD):
10036         * m4/canon-host.m4 (gl_CANON_HOST):
10037         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
10038         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
10039         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
10040         * m4/cloexec.m4 (gl_CLOEXEC):
10041         * m4/close-stream.m4 (gl_CLOSE_STREAM):
10042         * m4/closeout.m4 (gl_CLOSEOUT):
10043         * m4/dirfd.m4 (gl_FUNC_DIRFD):
10044         * m4/dirname.m4 (gl_DIRNAME):
10045         * m4/exclude.m4 (gl_EXCLUDE):
10046         * m4/exitfail.m4 (gl_EXITFAIL):
10047         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
10048         * m4/file-type.m4 (gl_FILE_TYPE):
10049         * m4/filemode.m4 (gl_FILEMODE):
10050         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
10051         * m4/fpending.m4 (gl_FUNC_FPENDING):
10052         * m4/fprintftime.m4 (gl_FPRINTFTIME):
10053         * m4/fts.m4 (gl_FUNC_FTS):
10054         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
10055         * m4/getdate.m4 (gl_GETDATE):
10056         * m4/gethrxtime.m4 (gl_GETHRXTIME):
10057         * m4/getpagesize.m4 (gl_GETPAGESIZE):
10058         * m4/getpass.m4 (gl_FUNC_GETPASS):
10059         * m4/gettime.m4 (gl_GETTIME):
10060         * m4/getugroups.m4 (gl_GETUGROUPS):
10061         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
10062         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
10063         * m4/hard-locale.m4 (gl_HARD_LOCALE):
10064         * m4/hash.m4 (gl_HASH):
10065         * m4/idcache.m4 (gl_IDCACHE):
10066         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
10067         * m4/lchown.m4 (gl_FUNC_LCHOWN):
10068         * m4/long-options.m4 (gl_LONG_OPTIONS):
10069         * m4/lstat.m4 (gl_FUNC_LSTAT):
10070         * m4/md5.m4 (gl_MD5):
10071         * m4/memcasecmp.m4 (gl_MEMCASECMP):
10072         * m4/memcoll.m4 (gl_MEMCOLL):
10073         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
10074         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
10075         * m4/memxor.m4 (gl_MEMXOR):
10076         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
10077         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
10078         * m4/modechange.m4 (gl_MODECHANGE):
10079         * m4/mountlist.m4 (gl_MOUNTLIST):
10080         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
10081         * m4/openat.m4 (gl_FUNC_OPENAT):
10082         * m4/pathmax.m4 (gl_PATHMAX):
10083         * m4/physmem.m4 (gl_PHYSMEM):
10084         * m4/posixtm.m4 (gl_POSIXTM):
10085         * m4/posixver.m4 (gl_POSIXVER):
10086         * m4/quote.m4 (gl_QUOTE):
10087         * m4/quotearg.m4 (gl_QUOTEARG):
10088         * m4/readtokens.m4 (gl_READTOKENS):
10089         * m4/readutmp.m4 (gl_READUTMP):
10090         * m4/regex.m4 (gl_REGEX):
10091         * m4/safe-read.m4 (gl_SAFE_READ):
10092         * m4/safe-write.m4 (gl_SAFE_WRITE):
10093         * m4/same.m4 (gl_SAME):
10094         * m4/save-cwd.m4 (gl_SAVE_CWD):
10095         * m4/savedir.m4 (gl_SAVEDIR):
10096         * m4/settime.m4 (gl_SETTIME):
10097         * m4/sha1.m4 (gl_SHA1):
10098         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
10099         * m4/stat-macros.m4 (gl_STAT_MACROS):
10100         * m4/stat-time.m4 (gl_STAT_TIME):
10101         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
10102         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
10103         * m4/strdup.m4 (gl_FUNC_STRDUP):
10104         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
10105         * m4/strndup.m4 (gl_FUNC_STRNDUP):
10106         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
10107         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
10108         * m4/time_r.m4 (gl_TIME_R):
10109         * m4/timespec.m4 (gl_TIMESPEC):
10110         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
10111         * m4/unlinkdir.m4 (gl_UNLINKDIR):
10112         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
10113         * m4/userspec.m4 (gl_USERSPEC):
10114         * m4/utimecmp.m4 (gl_UTIMECMP):
10115         * m4/utimens.m4 (gl_UTIMENS):
10116         * m4/xalloc.m4 (gl_XALLOC):
10117         * m4/xgetcwd.m4 (gl_XGETCWD):
10118         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
10119         * m4/xreadlink.m4 (gl_XREADLINK):
10120         * m4/xstrtod.m4 (gl_XSTRTOD):
10121         * m4/yesno.m4 (gl_YESNO):
10122         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
10123         to get the necessary .h files and whatnot.
10124
10125 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
10126             Bruno Haible  <bruno@clisp.org>
10127
10128         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
10129         /bin/sh understanding of '!' conditional negation.
10130
10131 2006-08-21  Jim Meyering  <jim@meyering.net>
10132
10133         * modules/openat (Depends-on): Really alphabetize.
10134
10135         * modules/acl (Depends-on): Add error and quote.
10136
10137         * check-module (find_included_lib_files): Add at-func.c to the
10138         ok-to-include-more-than-once white list.
10139
10140         * modules/openat (Depends-on): Add lstat.  Alphabetize.
10141
10142 2006-08-21  Bruno Haible  <bruno@clisp.org>
10143
10144         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10145         Emit a pkgdata_DATA variable only if some snippets add contents to it.
10146         Reported by Martin Lambers <marlam@marlam.de>.
10147
10148 2006-08-21  Bruno Haible  <bruno@clisp.org>
10149
10150         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
10151         specify an installation location, don't emit a noinst_LIBRARIES or
10152         noinst_LTLIBRARIES assignment.
10153
10154 2006-08-21  Bruno Haible  <bruno@clisp.org>
10155
10156         BeOS portability.
10157         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
10158         BeOS has mbrtowc() but no <wctype.h>.
10159
10160 2006-08-21  Bruno Haible  <bruno@clisp.org>
10161
10162         BeOS portability.
10163         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
10164         exist.
10165
10166 2006-08-21  Bruno Haible  <bruno@clisp.org>
10167
10168         BeOS portability.
10169         * lib/mbchar.h: Include <wctype.h> only if it exists.
10170
10171 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10172
10173         Remove files that are no longer needed by their respective modules.
10174         * m4/obstack.m4: Remove.
10175         * m4/strerror_r.m4: Remove.
10176         * m4/uint32_t.m4: Remove.
10177         * m4/uintptr_t.m4: Remove.
10178         * m4/ullong_max.m4: Remove.
10179         * m4/xstrtoimax.m4: Remove.
10180         * m4/xstrtoumax.m4: Remove.
10181
10182         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
10183         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
10184         dependencies now capture this.
10185
10186         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
10187         Do not use AC_LIBSOURCES, since gnulib modules now do this.
10188         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
10189         * m4/human.m4 (gl_HUMAN): Likewise.
10190         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
10191         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
10192
10193         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
10194
10195         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
10196         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
10197         stdint.
10198         * m4/human.m4 (gl_HUMAN): Likewise.
10199         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
10200         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
10201         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10202         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10203         * m4/xstrtol (gl_XSTRTOL): Likewise.
10204
10205         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
10206         AC_TYPE_LONG_LONG_INT.
10207         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10208         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
10209         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
10210         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10211
10212         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
10213         on stdbool.
10214
10215         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
10216         (gl_PREREQ_XSTRTOUL): Remove.
10217
10218         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
10219
10220         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
10221         mode.
10222
10223 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10224
10225         Add and change modules to make it easier for coreutils to use
10226         gnulib-tool.
10227         * modules/backupfile (Files): Remove m4/d-ino.m4.
10228         (Depends-on): Add d-ino.
10229         * modules/cycle-check (Depends-on): Add stdint.
10230         (lib_SOURCES): Add cycle-check.h.
10231         * modules/d-ino: New module.
10232         * modules/d-type: New module.
10233         * modules/error (Files): Remove m4/strerror_r.m4.
10234         * modules/filemode (Files): Add m4/st_dm_mode.m4.
10235         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
10236         m4/inttypes_h.m4, m4/uintmax_t.m4.
10237         (Depends-on): Add stdint.
10238         (lib_SOURCES): Add fsusage.h.
10239         * modules/getcwd (Files): Remove d-ino.m4.
10240         (Depends-on): Add d-ino.
10241         * modules/getndelim2 (Depends-on): Add stdint.
10242         * modules/glob (Files): Remove m4/d-type.m4.
10243         (Depends-on): Add d-type.
10244         * modules/host-os: New module.
10245         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
10246         m4/inttypes_h.m4, m4/uintmax_t.m4.
10247         * Depends-on: Add stdint.
10248         (lib_SOURCES): Add human.h.
10249         * modules/inttostr (Files): Remove m4/intmax_t.m4,
10250         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
10251         m4/uintmax_t.m4, m4/ulonglong.m4.
10252         (Depends-on): Add stdint.
10253         (EXTRA_DIST): Add inttostr.h.
10254         * modules/lchmod: New module.
10255         * modules/link-follow: New module.
10256         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
10257         (Depends-on): Add lchmod.
10258         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
10259         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
10260         (Depends-on): Add stdint.
10261         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
10262         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
10263         (Depends-on): Add stdint.
10264         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
10265         * modules/perl: New module.
10266         * modules/regex (Depends-on): Add stdint.
10267         * modules/rmdir-errno: New module.
10268         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10269         m4/intmax_t.m4.
10270         (Depends-on): Add stdint.
10271         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10272         m4/uintmax_t.m4.
10273         (Depends-on): Add stdint.
10274         * modules/unlink-busy: New module.
10275         * modules/utimecmp (Depends-on): Add stdint.
10276         * modules/uptime: New module.
10277         * modules/winsz-ioctl: New module.
10278         * modules/winsz-termios: New module.
10279         * modules/xnanosleep (Depends-on): Add nanosleep.
10280         * modules/ullong_max: Remove.
10281         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
10282         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
10283         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
10284         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
10285         (Depends-on): Add inttypes.
10286         (lib_SOURCES): Add xstrtol.h.
10287         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
10288         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
10289         * MODULES.html.sh: Move 'assert' into the assert section.
10290         Move 'dummy' into the linking section.
10291         Remove ullong_max.
10292         Add section for compatibility checks for POSIX:2001 functions,
10293         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
10294         winsz-ioctl, and winsz-termios into it.
10295         Add lchmod.
10296         Add top-level Misc section and put host-os, perl, and uptime
10297         into it.
10298
10299 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10300
10301         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
10302         now assume the stdint module.  Do not include inttypes.h.
10303         * lib/fsusage.h: Likewise.
10304         * lib/getndelim2.c: Likewise.
10305         * lib/human.h: Likewise.
10306         * lib/inttostr.h: Likewise.
10307         * lib/obstack.c: Likewise.
10308         * lib/regex_internal.h: Likewise.
10309         * lib/tempname.c: Likewise.
10310         * lib/utimecmp.c: Likewise.
10311         * lib/xstrtol.h: Likewise.
10312
10313         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
10314
10315         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
10316         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
10317         * lib/xtime.h: Likewise.
10318
10319 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10320
10321         * modules/openat (Files): Add lib/fchmodat.c.
10322         Fixes problem reported by Jay Youngman.
10323
10324 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10325
10326         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
10327         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
10328
10329 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
10330             Bruno Haible  <bruno@clisp.org>
10331
10332         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
10333         and is a script that invokes bison. Tighten the code. Add comments.
10334
10335 2006-08-18  Jim Meyering  <jim@meyering.net>
10336
10337         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
10338         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
10339         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
10340         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
10341
10342 2006-08-18  Bruno Haible  <bruno@clisp.org>
10343
10344         * modules/bison-i18n: New file.
10345         * MODULES.html.sh (Internationalization functions): Add it.
10346
10347 2006-08-18  Bruno Haible  <bruno@clisp.org>
10348
10349         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
10350         sys/statvfs.h. When getmntinfo was found, check its declaration and
10351         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
10352
10353 2006-08-18  Bruno Haible  <bruno@clisp.org>
10354
10355         * m4/bison-i18n.m4: New file, from bison.
10356
10357 2006-08-18  Bruno Haible  <bruno@clisp.org>
10358
10359         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
10360         (ME_DUMMY): Treat "kernfs" as a dummy.
10361         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
10362
10363 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10364
10365         Update from coreutils.
10366
10367         2006-08-15  Jim Meyering  <jim@meyering.net>
10368
10369         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
10370
10371         2006-01-17  Jim Meyering  <jim@meyering.net>
10372
10373         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
10374
10375         2006-01-11  Jim Meyering  <jim@meyering.net>
10376
10377         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
10378         Check for the lchmod function.
10379
10380 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10381
10382         Update from coreutils.
10383
10384         * lib/__fpending.h: Add copyright notice.
10385         * lib/fprintftime.h: Likewise.
10386         * lib/savedir.c: Use (C) in copyright notice.
10387         * lib/savedir.h: Likewise.
10388
10389         2006-08-15  Jim Meyering  <jim@meyering.net>
10390
10391         * lib/at-func.c: New file, with the logic of all emulated at-functions.
10392         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
10393         in support of the EXPECTED_ERRNO macro.
10394         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
10395         definitions.  Instead, define the appropriate symbols and include
10396         "at-func.c".
10397         * lib/mkdirat.c (mkdirat): Likewise.
10398         * lib/fchmodat.c (fchmodat): Likewise.
10399         (ENOSYS): Remove definition.
10400         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
10401         it.  Don't include "unistd--.h" -- it wasn't ever used.
10402
10403         2006-01-17  Jim Meyering  <jim@meyering.net>
10404
10405         Rewrite fts.c not to change the current working directory,
10406         by using openat, fstatat, fdopendir, etc..
10407
10408         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
10409         (HAVE_OPENAT_SUPPORT): Define.
10410         [_LIBC] (fchdir): Don't undef or define; no longer used.
10411         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
10412         Now, this `function' always succeeds, and consumes its file descriptor
10413         parameter -- so callers must not close such FDs.  Update callers.
10414         (diropen_fd, opendirat, cwd_advance_fd): New functions.
10415         (diropen): Add parameter, SP.  Adjust all callers.
10416         Implement using diropen_fd, rather than open.
10417         (fts_open): Initialize new member, fts_cwd_fd.
10418         Remove fts_rft-setting code.
10419         (fts_close): Close fts_cwd_fd, if necessary.
10420         (__opendir2): Define in terms of opendir or opendirat,
10421         depending on whether the FST_NOCHDIR flag is set.
10422         (fts_build): Since fts_safe_changedir consumes its FD, and since
10423         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
10424         and close the dup'd file descriptor upon failure.
10425         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
10426         (fts_safe_changedir): Tweak semantics to reflect that this function
10427         now calls cwd_advance_fd and hence consumes its FD argument.
10428         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
10429         [struct FTS] (fts_rft): Remove now-unused member.
10430         [struct FTS] (fts_cycle.state): Improve comment.
10431
10432         * lib/openat.c (openat_needs_fchdir): New function.
10433         * lib/openat.h (openat_needs_fchdir): Declare it.
10434
10435 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10436
10437         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
10438         Problem and fix reported by Pádraig Brady in
10439         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
10440
10441 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10442
10443         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
10444
10445 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10446
10447         * lib/memcoll.c (memcoll): Optimize for the common case where the
10448         arguments are bytewise equal.
10449
10450 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10451
10452         * doc/regexprops-generic.texi: Add a copyright notice.
10453
10454 2006-08-15  Bruno Haible  <bruno@clisp.org>
10455
10456         * modules/tmpdir (License): Change to LGPL.
10457
10458 2006-08-15  Bruno Haible  <bruno@clisp.org>
10459
10460         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
10461         module.
10462
10463 2006-08-14  Simon Josefsson  <jas@extundo.com>
10464
10465         * config/srclist.txt: Add gnupload.
10466
10467 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10468
10469         Change copyright notice from LGPL 2 to GPL 2, since that's the
10470         standard form used in the gnulib repository.
10471         * tests/test-lock.c: Likewise.
10472         * tests/test-stdint.c: Likewise.
10473         * tests/test-tls.c: Likewise.
10474
10475         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
10476         prelude-manager.  User shorter URLs for GNU projects, without '?'.
10477         Add copyright notice.
10478
10479         * check-module: Add copyright notice.  Output a copyright
10480         notice if "--version" is specified.
10481         * modules/COPYING: New file.
10482         * tests/test-getaddrinfo.c: Add copyright notice.
10483         * tests/test-verify.c: Likewise.
10484
10485 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10486
10487         Change copyright notice from LGPL 2 to GPL 2, since that's the
10488         standard form used in the gnulib repository.
10489         * lib/lock.c: LGPL -> GPL.
10490         * lib/lock.h: Likewise.
10491         * lib/strnlen1.c: Likewise.
10492         * lib/strnlen1.h: Likewise.
10493         * lib/tls.c: Likewise.
10494         * lib/tls.h: Likewise.
10495         * lib/tmpdir.c: Likewise.
10496
10497         * lib/TODO: Remove; this belongs only in coreutils.
10498
10499 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10500
10501         Add copyright notices to long-enough files that lack them, since
10502         otherwise the files aren't clearly free.  Use the same notice that
10503         getdate.texi already uses.
10504         * doc/alloca-opt.texi: Add copyright notice.
10505         * doc/alloca.texi: Likewise.
10506         * doc/ctime.texi: Likewise.
10507         * doc/functions.texi: Likewise.
10508         * doc/gcd.texi: Likewise.
10509         * doc/gnulib-tool.texi: Likewise.
10510         * doc/inet_ntoa.texi: Likewise.
10511         * doc/visibility.texi: Likewise.
10512
10513         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
10514         * doc/quote.texi: Add copyright notice.
10515
10516         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
10517         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
10518         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
10519         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
10520         is now obsolete, and give a pointer to the Sun list.
10521         Add copyright notice.
10522
10523 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10524
10525         * config/srclistvars.sh: Add copyright notice.
10526
10527 2006-08-14  Eric Blake  <ebb9@byu.net>
10528
10529         Import the following change from libc:
10530
10531         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10532
10533         Upstream bug 2997.
10534         * lib/misc/error.c: Add space between program name and message if file
10535         name is missing.
10536
10537 2006-08-12  Karl Berry  <karl@gnu.org>
10538
10539         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
10540         remove, these originate in gnulib now.
10541
10542 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10543
10544         * doc/Makefile (standards.info standards.html standards.dvi):
10545         Also depend on make-stds.texi.
10546
10547 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
10548
10549         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
10550         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
10551
10552         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
10553         in wchar_t.  Problem reported by Eric Blake.
10554
10555         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
10556         LEN is smaller than SIZE.  Suggested by Bruno Haible.
10557         Also, help the compiler to keep LEN in a register.
10558
10559 2006-08-11  Eric Blake  <ebb9@byu.net>
10560
10561         * users.txt: Sort.  Add tar.
10562
10563 2006-08-11  Bruno Haible  <bruno@clisp.org>
10564
10565         * users.txt: New file.
10566
10567 2006-08-11  Bruno Haible  <bruno@clisp.org>
10568
10569         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
10570         before <wchar.h>. Needed for OSF/1 and BSD/OS.
10571
10572 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10573
10574         * modules/snprintf (Depends-on): Remove minmax.
10575         (Maintainer): Add self and Bruno.
10576
10577 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10578
10579         * lib/.cppi-disable: Add snprintf.h, socket_.h.
10580         * lib/snprintf.c: Include <errno.h> and <limits.h>.
10581         (EOVERFLOW): Define if the system does not.
10582         Do not include "minmax.h"; it wasn't used.
10583         (snprintf): Don't assume size_t promotes to an unsigned type.
10584         Fix bug when generated string was too long for the buffer: the
10585         buffer's contents are supposed to be the initial prefix of the
10586         output.  Don't assume vasnprintf returns EOVERFLOW if the size
10587         exceeds INT_MAX; do the check ourselves.
10588
10589         Import the following changes from libc:
10590
10591         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10592
10593         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
10594         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
10595         set wc to the byte which couldn't be converted.
10596         (re_string_reconstruct): Don't clear valid_raw_len before calling
10597         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10598         tip_context using re_string_context_at.
10599
10600         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
10601
10602         * lib/posix/regex.h: g++ still cannot handled [restrict].
10603
10604         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
10605
10606         * lib/posix/regex.h: Remove special handling for VMS.
10607
10608 2006-08-10  Jim Meyering  <jim@meyering.net>
10609
10610         * modules/same-inode: New module.
10611         * modules/dev-ino: New module.
10612         * modules/cycle-check: Depend on these modules, rather than simply
10613         including their .h files.
10614         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
10615         required via m4/cycle-check.m4.
10616         * modules/same: Depend on new same-inode module, rather than
10617         including same-inode.h.
10618         * modules/chdir-safer: New file.
10619
10620         * modules/chown (Depends-on): Add stat-macros.
10621
10622 2006-08-10  Jim Meyering  <jim@meyering.net>
10623
10624         * m4/cycle-check.m4: New file.
10625         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
10626         * m4/dev-ino.m4, m4/same-inode.m4: New files.
10627
10628 2006-08-10  Eric Blake  <ebb9@byu.net>
10629
10630         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
10631         in from original proposal.
10632
10633 2006-08-10  Eric Blake  <ebb9@byu.net>
10634         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10635
10636         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
10637         namespace.
10638
10639 2006-08-10  Bruno Haible  <bruno@clisp.org>
10640
10641         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
10642         as well.
10643
10644 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10645
10646         Sync from coreutils.
10647
10648         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
10649
10650         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
10651         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
10652
10653 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10654
10655         * modules/restrict: Remove; no longer needed now that we assume
10656         Autoconf 2.59 or later.
10657         * MODULES.html.sh: Remove 'restrict'.
10658         * modules/argp (Depends-on): Remove 'restrict'.
10659         * modules/base64 (Depends-on): Likewise.
10660         * modules/gc (Depends-on): Likewise.
10661         * modules/getaddrinfo (Depends-on): Likewise.
10662         * modules/glob (Depends-on): Likewise.
10663         * modules/inet_ntop (Depends-on): Likewise.
10664         * modules/inet_pton (Depends-on): Likewise.
10665         * modules/memxor (Depends-on): Likewise.
10666         * modules/regex (Depends-on): Likewise.
10667         * modules/strtok_r (Depends-on): Likewise.
10668         * modules/time_r (Depends-on): Likewise.
10669
10670 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10671
10672         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
10673         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
10674         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
10675         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
10676         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
10677         * m4/memxor.m4 (gl_MEMXOR): Likewise.
10678         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
10679         gl_C_RESTRICT replaced by AC_C_RESTRICT.
10680
10681         Merge from coreutils.
10682         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
10683         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
10684         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
10685         * m4/time_r.m4 (gl_TIME_R): Likewise.
10686
10687 2006-08-09  Karl Berry  <karl@gnu.org>
10688
10689         * config/srclist.txt: no more gettext-tools, per Bruno.
10690
10691 2006-08-08  Eric Blake  <ebb9@byu.net>
10692
10693         * modules/verror: New module.
10694         * MODULES.html.sh: Document it.
10695
10696 2006-08-08  Eric Blake  <ebb9@byu.net>
10697
10698         * lib/verror.h, lib/verror.c: New files.
10699
10700 2006-08-08  Eric Blake  <ebb9@byu.net>
10701
10702         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
10703         verror_at_line output complies with GNU Coding Standards even when
10704         file is NULL.
10705
10706 2006-08-07  Bruno Haible  <bruno@clisp.org>
10707
10708         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
10709         versions of AIX.
10710         Reported by Ralf Wildenhues.
10711
10712 2006-08-07  Bruno Haible  <bruno@clisp.org>
10713
10714         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
10715         in an AC_DEFUN. Needed so that the autoconf snippets can use
10716         AC_REQUIRE.
10717
10718 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10719
10720         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10721         Initialize pkgdata_DATA.
10722         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
10723         overriding it.
10724
10725 2006-08-06  Eric Blake  <ebb9@byu.net>
10726
10727         * lib/error.h: Fold in some upstream changes from glibc.
10728         * lib/error.c: Likewise.
10729
10730 2006-08-04  Bruno Haible  <bruno@clisp.org>
10731
10732         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10733         Make the mostlyclean-local rule depend on mostlyclean-generic.
10734         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
10735
10736 2006-07-31  Bruno Haible  <bruno@clisp.org>
10737
10738         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
10739         <stdlib.h>, <string.h>.
10740
10741 2006-07-30  Bruno Haible  <bruno@clisp.org>
10742
10743         * modules/readlink (License): Change to LGPL.
10744
10745 2006-07-30  Bruno Haible  <bruno@clisp.org>
10746
10747         * modules/javaversion (Makefile.am): Distribute javaversion.java and
10748         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
10749         set PKGDATADIR to point to it.
10750
10751 2006-07-30  Bruno Haible  <bruno@clisp.org>
10752
10753         * modules/csharpexec (configure.ac): Comment out macro invocation.
10754         * modules/javaexec (configure.ac): Likewise.
10755         * modules/javacomp-script (configure.ac): Likewise.
10756
10757         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
10758
10759 2006-07-30  Bruno Haible  <bruno@clisp.org>
10760
10761         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
10762         linked-list.
10763
10764 2006-07-30  Bruno Haible  <bruno@clisp.org>
10765
10766         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
10767
10768 2006-07-30  Bruno Haible  <bruno@clisp.org>
10769
10770         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10771         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
10772         get removed.
10773
10774 2006-07-29  Bruno Haible  <bruno@clisp.org>
10775
10776         Make it possible for gnulib-tool to work with locally modified or
10777         augmented gnulib repositories.
10778         * gnulib-tool (func_usage): Document --local-dir option.
10779         (local_gnulib_dir): New variable.
10780         Handle --local-dir option.
10781         (func_lookup_file): New function.
10782         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
10783         (func_get_description, func_get_filelist, func_get_description,
10784         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
10785         func_get_automake_snippet, func_get_include_directive,
10786         func_get_license, func_get_maintainer): Use func_lookup_file.
10787         (func_import, func_create_testdir): Use func_lookup_file.
10788
10789 2006-07-29  Bruno Haible  <bruno@clisp.org>
10790
10791         * modules/setenv (Depends-on): Add unistd.
10792
10793 2006-07-29  Bruno Haible  <bruno@clisp.org>
10794
10795         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
10796
10797 2006-07-29  Bruno Haible  <bruno@clisp.org>
10798
10799         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
10800
10801 2006-07-29  Bruno Haible  <bruno@clisp.org>
10802
10803         * gnulib-tool (import, update): If there is no Makefile.am, look at
10804         aclocal.m4, instead of bailing out.
10805
10806 2006-07-29  Bruno Haible  <bruno@clisp.org>
10807
10808         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
10809         Categorize the options by when they are useful.
10810
10811 2006-07-29  Bruno Haible  <bruno@clisp.org>
10812
10813         * gnulib-tool (func_usage): Document option --no-libtool.
10814         Handle option --no-libtool.
10815         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
10816         for changed semantics of $libtool variable.
10817         (func_import): Likewise. If libtool is not used, show this through
10818         an option --no-libtool.
10819         (func_create_testdir): Update.
10820
10821 2006-07-29  Bruno Haible  <bruno@clisp.org>
10822
10823         * gnulib-tool (func_import): Extend error message about missing
10824         --doc-base.
10825
10826 2006-07-29  Bruno Haible  <bruno@clisp.org>
10827
10828         * gnulib-tool (func_import): Don't create the $docbase directory if
10829         there is no file to store there.
10830
10831 2006-07-29  Bruno Haible  <bruno@clisp.org>
10832
10833         * gnulib-tool (autoconf_minversion): If a --dir option is given and
10834         relevant, look for configure.ac there, not in the current directory.
10835         Also use a simple search for AC_PREREQ, not "autoconf --trace".
10836
10837 2006-07-29  Bruno Haible  <bruno@clisp.org>
10838
10839         * gnulib-tool (SORT): New variable.
10840         (func_usage): Undocument --assume-autoconf option.
10841         Remove --assume-autoconf option handling.
10842         (autoconf_minversion): Determine from the contents of configure.ac.
10843         (func_import): Remove autoconf_minversion handling.
10844         Suggested by Eric Blake.
10845
10846 2006-07-29  Bruno Haible  <bruno@clisp.org>
10847
10848         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
10849
10850 2006-07-29  Bruno Haible  <bruno@clisp.org>
10851
10852         * config/srclist.txt (*setenv.[ch]): Remove rules.
10853
10854 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10855
10856         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
10857
10858 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10859
10860         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
10861         arpa/inet.h.
10862
10863 2006-07-28  Simon Josefsson  <jas@extundo.com>
10864
10865         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
10866         * modules/inet_pton (Depends-on): Likewise.
10867
10868 2006-07-28  Simon Josefsson  <jas@extundo.com>
10869
10870         * m4/netinet_in_h.m4: New file.
10871
10872 2006-07-28  Simon Josefsson  <jas@extundo.com>
10873
10874         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
10875         #include's.
10876
10877 2006-07-28  Simon Josefsson  <jas@extundo.com>
10878
10879         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
10880         #include's.
10881
10882 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
10883
10884         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
10885         setgid on directories only if they set these bits.
10886         * lib/modechange.h: Remove obsolete comment about masks.
10887
10888 2006-07-28  Eric Blake  <ebb9@byu.net>
10889
10890         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
10891         macro expansion.
10892
10893 2006-07-28  Bruno Haible  <bruno@clisp.org>
10894
10895         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
10896
10897 2006-07-28  Bruno Haible  <bruno@clisp.org>
10898
10899         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
10900
10901 2006-07-28  Bruno Haible  <bruno@clisp.org>
10902
10903         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
10904         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
10905         Define fallbacks.
10906         Avoids link error on FreeBSD 4.x.
10907         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10908
10909         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
10910         encoding.
10911         * lib/mbswidth.c (iswcntrl): Likewise.
10912
10913 2006-07-27  Bruno Haible  <bruno@clisp.org>
10914
10915         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
10916         test.
10917
10918 2006-07-27  Bruno Haible  <bruno@clisp.org>
10919
10920         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
10921         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
10922         defined.
10923
10924 2006-07-26  Eric Blake  <ebb9@byu.net>
10925
10926         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
10927
10928 2006-07-26  Eric Blake  <ebb9@byu.net>
10929
10930         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
10931         like mingw that lack mkstemp.
10932         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
10933         avoid compilation warning on mingw.
10934
10935 2006-07-26  Bruno Haible  <bruno@clisp.org>
10936
10937         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
10938         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
10939         INT_FAST*_MIN, INTPTR_MIN.
10940
10941 2006-07-25  Bruno Haible  <bruno@clisp.org>
10942
10943         * modules/version-etc (Depends-on): Add stdarg.
10944
10945 2006-07-25  Bruno Haible  <bruno@clisp.org>
10946
10947         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
10948         complex commands.
10949
10950 2006-07-25  Bruno Haible  <bruno@clisp.org>
10951
10952         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
10953         defined in <stdarg.h> or config.h.
10954
10955 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
10956
10957         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
10958         (gl_STDIO_SAFER): Remove.
10959
10960 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
10961
10962         * MODULES.html.sh (File stream based Input/Output):
10963         Add fopen-safer, tmpfile-safer; remove stdio-safer.
10964         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
10965         * modules/fopen-safer, modules/tmpfile-safer: New files.
10966         * modules/stdio-safer: Remove.
10967
10968 2006-07-24  Bruno Haible  <bruno@clisp.org>
10969
10970         * modules/tmpdir: New file.
10971         * MODULES.html.sh (File system functions): Add it.
10972
10973 2006-07-24  Bruno Haible  <bruno@clisp.org>
10974
10975         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
10976         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
10977
10978 2006-07-24  Bruno Haible  <bruno@clisp.org>
10979
10980         * modules/clean-temp: New file.
10981
10982 2006-07-24  Bruno Haible  <bruno@clisp.org>
10983
10984         * m4/tmpdir.m4: New file, from GNU gettext.
10985
10986 2006-07-24  Bruno Haible  <bruno@clisp.org>
10987
10988         * lib/tmpdir.h: New file, from GNU gettext.
10989         * lib/tmpdir.c: New file, from GNU gettext.
10990
10991 2006-07-24  Bruno Haible  <bruno@clisp.org>
10992
10993         * lib/clean-temp.h: New file, from GNU gettext.
10994         * lib/clean-temp.c: New file, from GNU gettext.
10995
10996 2006-07-23  Eric Blake  <ebb9@byu.net>
10997
10998         * modules/stdio-safer (Files): Add tmpfile-safer.c.
10999         (Depends-on): Add binary-io.
11000
11001 2006-07-23  Eric Blake  <ebb9@byu.net>
11002
11003         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
11004
11005 2006-07-23  Eric Blake  <ebb9@byu.net>
11006
11007         * lib/tmpfile-safer.c: New file.
11008         * lib/stdio-safer.h (fopen_safer): Add prototype.
11009         * lib/stdio--.h (tmpfile): Make safer.
11010
11011 2006-07-23  Bruno Haible  <bruno@clisp.org>
11012
11013         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
11014         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
11015         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
11016         gl_linked_remove_at): Use it.
11017
11018 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11019         and Simon Josefsson <jas@extundo.com>
11020
11021         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
11022
11023         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
11024
11025 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11026
11027         * modules/close-stream: New file.
11028         * modules/closeout (Description): Make it clear that it exits
11029         with a diagnostic on error.
11030         (Depends-on): Add close-stream.  Remove fpending, stdbool.
11031         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
11032
11033 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11034
11035         * m4/close-stream.m4: New file.
11036
11037 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11038
11039         * lib/close-stream.c, lib/close-stream.h: New files.
11040
11041 2006-07-22  Bruno Haible  <bruno@clisp.org>
11042
11043         Merge from GNU gettext 0.15.
11044
11045         2006-05-01  Bruno Haible  <bruno@clisp.org>
11046
11047                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
11048
11049         2006-07-22  Bruno Haible  <bruno@clisp.org>
11050
11051                 * modules/javaversion: New file.
11052                 * MODULES.html.sh (Java): Add javaversion.
11053
11054         2006-03-12  Bruno Haible  <bruno@clisp.org>
11055
11056                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
11057
11058         2005-12-04  Bruno Haible  <bruno@clisp.org>
11059
11060                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
11061                 (untested).
11062
11063         2006-06-21  Bruno Haible  <bruno@clisp.org>
11064
11065                 Avoid warnings from recent versions of mcs.
11066                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
11067                 -o, -L, -r any more. Use options documented since mcs-1.0
11068                 instead. Similarly for -g.
11069
11070         2005-12-04  Bruno Haible  <bruno@clisp.org>
11071
11072                 * build-aux/csharpcomp.sh.in: Suffix for resources is
11073                 .resources, not .resource.
11074
11075         2005-07-09  Bruno Haible  <bruno@clisp.org>
11076
11077                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
11078                 add a .dll suffix.
11079                 Reported by Mark Junker <mjscod@gmx.de>.
11080
11081         2006-07-22  Bruno Haible  <bruno@clisp.org>
11082
11083                 * modules/gettext: Upgrade to gettext-0.15.
11084                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
11085                 m4/visibility.m4.
11086                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
11087
11088 2006-07-22  Bruno Haible  <bruno@clisp.org>
11089
11090         Merge from GNU gettext 0.15.
11091
11092         2006-03-25  Bruno Haible  <bruno@clisp.org>
11093
11094                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
11095
11096         2006-07-21  Bruno Haible  <bruno@clisp.org>
11097
11098                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
11099                 "1.1".
11100
11101         2006-05-09  Bruno Haible  <bruno@clisp.org>
11102
11103                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
11104                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
11105                 for the conftestver execution.
11106
11107         2006-05-01  Bruno Haible  <bruno@clisp.org>
11108
11109                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
11110                 optional target-version argument. Verify that the compiler
11111                 groks source of the specified source-version, or add -source
11112                 option as necessary. Verify that the compiler produces
11113                 bytecode in the specified target-version, or add -target and
11114                 -source options as necessary. Make the result of the test
11115                 available as variable CONF_JAVAC. Also log error output in
11116                 config.log.
11117
11118         2006-03-11  Bruno Haible  <bruno@clisp.org>
11119
11120                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
11121
11122         2006-05-09  Bruno Haible  <bruno@clisp.org>
11123
11124                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
11125                 CLASSPATH_SEPARATOR to a semicolon.
11126
11127         2006-03-12  Bruno Haible  <bruno@clisp.org>
11128
11129                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
11130                 available as variable CONF_JAVA, for subsequent autoconf
11131                 tests. Also log error output in config.log.
11132
11133         2006-07-19  Bruno Haible  <bruno@clisp.org>
11134
11135                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
11136                 that getline works on glibc2 systems. Needed to avoid trouble
11137                 in relocatable.c.
11138                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
11139
11140         2005-12-04  Bruno Haible  <bruno@clisp.org>
11141
11142                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
11143                 launcher (untested).
11144
11145         2005-12-04  Bruno Haible  <bruno@clisp.org>
11146
11147                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
11148
11149         2006-07-22  Bruno Haible  <bruno@clisp.org>
11150
11151                 * gettext.m4: Update from GNU gettext-0.15.
11152                 * nls.m4: Likewise.
11153                 * po.m4: Likewise.
11154                 * inttypes-pri.m4: Likewise.
11155                 * inttypes-h.m4: Renamed from inttypes.m4.
11156                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
11157
11158 2006-07-22  Bruno Haible  <bruno@clisp.org>
11159
11160         Merge from GNU gettext 0.15.
11161
11162         2005-07-05  Bruno Haible  <bruno@clisp.org>
11163
11164                 * printf-args.c (printf_fetchargs): Work around broken
11165                 definition of wint_t on mingw.
11166
11167         2005-02-12  Bruno Haible  <bruno@clisp.org>
11168
11169                 * xallocsa.h: Add extern "C" for C++.
11170
11171         2006-05-17  Bruno Haible  <bruno@clisp.org>
11172
11173                 Cygwin portability.
11174                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
11175
11176         2006-04-30  Bruno Haible  <bruno@clisp.org>
11177
11178                 * progreloc.c: Include <mach-o/dyld.h> if available.
11179                 (find_executable): Use _NSGetExecutablePath when possible.
11180
11181         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
11182
11183                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
11184                 function.
11185
11186         2005-12-29  Bruno Haible  <bruno@clisp.org>
11187
11188                 * progreloc.c (set_program_name_and_installdir): Fix
11189                 compilation error.
11190
11191         2005-12-04  Bruno Haible  <bruno@clisp.org>
11192
11193                 Cygwin portability.
11194                 * progreloc.c: Include <windows.h> also on Cygwin.
11195                 (find_executable): Add support for Cygwin.
11196                 (set_program_name_and_installdir): Handle also platforms with
11197                 nonempty EXEEXT.
11198
11199         2006-07-11  Bruno Haible  <bruno@clisp.org>
11200
11201                 * javacomp.c: Fix a comment.
11202                 Reported by Jim Meyering.
11203
11204         2006-04-30  Bruno Haible  <bruno@clisp.org>
11205
11206                 * javacomp.h (compile_java_class): Add source_version,
11207                 target_version arguments.
11208                 * javacomp.c: Rewritten to choose only a compiler that
11209                 respects the specified source_version and target_version.
11210
11211         2006-06-27  Bruno Haible  <bruno@clisp.org>
11212
11213                 Assume correct S_ISDIR macro.
11214                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
11215
11216         2006-07-22  Bruno Haible  <bruno@clisp.org>
11217
11218                 * javaversion.h: New file, from GNU gettext.
11219                 * javaversion.c: New file, from GNU gettext.
11220                 * javaversion.java: New file, from GNU gettext.
11221                 * javaversion.class: New file, from GNU gettext.
11222
11223         2006-05-17  Bruno Haible  <bruno@clisp.org>
11224
11225                 Cygwin portability.
11226                 * javaexec.c (execute_java_class): Test for jview program
11227                 also on Cygwin.
11228
11229         2006-04-09  Bruno Haible  <bruno@clisp.org>
11230
11231                 * fatal-signal.c: Don't include string.h.
11232                 (at_fatal_signal): Use a copying loop instead of memcpy.
11233
11234         2005-12-04  Bruno Haible  <bruno@clisp.org>
11235
11236                 * csharpexec.c: Add support for 'clix' launcher (untested).
11237                 (execute_csharp_using_sscli): New function.
11238                 (execute_csharp_program): Call it.
11239
11240         2006-06-21  Bruno Haible  <bruno@clisp.org>
11241
11242                 Avoid warnings from recent versions of mcs.
11243                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
11244                 -o, -L, -r any more. Use options documented since mcs-1.0
11245                 instead. Similarly for -g.
11246
11247         2005-07-09  Bruno Haible  <bruno@clisp.org>
11248
11249                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
11250                 add a .dll suffix.
11251                 Reported by Mark Junker <mjscod@gmx.de>.
11252
11253         2006-06-17  Bruno Haible  <bruno@clisp.org>
11254
11255                 * config.charset: Update for NetBSD 3.0.
11256
11257         2006-05-17  Bruno Haible  <bruno@clisp.org>
11258
11259                 Cygwin portability.
11260                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
11261
11262         2006-05-16  Bruno Haible  <bruno@clisp.org>
11263
11264                 * localcharset.c [CYGWIN]: Include <windows.h>.
11265                 (get_charset_aliases): For Cygwin, return the same CPxxx
11266                 aliases list as under WIN32.
11267                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
11268                 the environment variables. Fall back to GetACP().
11269
11270         2006-04-05  Bruno Haible  <bruno@clisp.org>
11271
11272                 * config.charset: Update Juan Manuel Guerrero's address.
11273
11274         2005-02-12  Bruno Haible  <bruno@clisp.org>
11275
11276                 * allocsa.h: Add extern "C" for C++.
11277
11278         2005-02-10  Bruno Haible  <bruno@clisp.org>
11279
11280                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
11281                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
11282
11283         2006-07-22  Bruno Haible  <bruno@clisp.org>
11284
11285                 * gettext.h: Update to GNU gettext-0.15.
11286
11287 2006-07-22  Bruno Haible  <bruno@clisp.org>
11288
11289         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
11290         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
11291         lib-prefix.m4, longdouble.m4, ssize_t.m4.
11292
11293 2006-07-21  Eric Blake  <ebb9@byu.net>
11294
11295         * modules/stdlib-safer: New file.
11296         * MODULES.html.sh (File stream based Input/Output): Add
11297         stdlib-safer.
11298
11299 2006-07-21  Eric Blake  <ebb9@byu.net>
11300
11301         * lib/stdlib-safer.h: New file from coreutils, required by
11302         stdlib--.h.
11303
11304 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
11305
11306         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
11307
11308 2006-07-20  Bruno Haible  <bruno@clisp.org>
11309
11310         * gnulib-tool: Recognize new option --assume-autoconf.
11311         (autoconf_minversion): New variable.
11312         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
11313
11314 2006-07-20  Bruno Haible  <bruno@clisp.org>
11315
11316         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
11317
11318 2006-07-19  Derek R. Price  <derek@ximbiot.com>
11319
11320         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
11321         Reindent and repaginate.
11322
11323 2006-07-19  Derek Price  <derek@ximbiot.com>
11324
11325         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
11326         Correct grammar.
11327
11328 2006-07-17  Bruno Haible  <bruno@clisp.org>
11329
11330         * modules/list: New file.
11331         * modules/array-list: New file.
11332         * modules/carray-list, modules/carray-list-tests: New files.
11333         * modules/linked-list, modules/linked-list-tests: New files.
11334         * modules/avltree-list, modules/avltree-list-tests: New files.
11335         * modules/rbtree-list, modules/rbtree-list-tests: New files.
11336         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
11337         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
11338         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
11339         * modules/oset: New file.
11340         * modules/array-oset: New file.
11341         * modules/avltree-oset, modules/avltree-oset-tests: New files.
11342         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
11343         * tests/test-carray_list.c: New file.
11344         * tests/test-linked_list.c: New file.
11345         * tests/test-avltree_list.c: New file.
11346         * tests/test-rbtree_list.c: New file.
11347         * tests/test-linkedhash_list.c: New file.
11348         * tests/test-avltreehash_list.c: New file.
11349         * tests/test-rbtreehash_list.c: New file.
11350         * tests/test-avltree_oset.c: New file.
11351         * tests/test-rbtree_oset.c: New file.
11352         * MODULES.html.sh (Container data structures): New section.
11353
11354 2006-07-17  Bruno Haible  <bruno@clisp.org>
11355
11356         * m4/gl_list.m4: New file.
11357
11358 2006-07-17  Bruno Haible  <bruno@clisp.org>
11359
11360         * lib/gl_list.h: New file.
11361         * lib/gl_list.c: New file.
11362         * lib/gl_array_list.h: New file.
11363         * lib/gl_array_list.c: New file.
11364         * lib/gl_carray_list.h: New file.
11365         * lib/gl_carray_list.c: New file.
11366         * lib/gl_linked_list.h: New file.
11367         * lib/gl_linked_list.c: New file.
11368         * lib/gl_anylinked_list1.h: New file.
11369         * lib/gl_anylinked_list2.h: New file.
11370         * lib/gl_avltree_list.h: New file.
11371         * lib/gl_avltree_list.c: New file.
11372         * lib/gl_anyavltree_list1.h: New file.
11373         * lib/gl_anyavltree_list2.h: New file.
11374         * lib/gl_rbtree_list.h: New file.
11375         * lib/gl_rbtree_list.c: New file.
11376         * lib/gl_anyrbtree_list1.h: New file.
11377         * lib/gl_anyrbtree_list2.h: New file.
11378         * lib/gl_anytree_list1.h: New file.
11379         * lib/gl_anytree_list2.h: New file.
11380         * lib/gl_linkedhash_list.h: New file.
11381         * lib/gl_linkedhash_list.c: New file.
11382         * lib/gl_anyhash_list1.h: New file.
11383         * lib/gl_anyhash_list2.h: New file.
11384         * lib/gl_avltreehash_list.h: New file.
11385         * lib/gl_avltreehash_list.c: New file.
11386         * lib/gl_rbtreehash_list.h: New file.
11387         * lib/gl_rbtreehash_list.c: New file.
11388         * lib/gl_anytreehash_list1.h: New file.
11389         * lib/gl_anytreehash_list2.h: New file.
11390
11391         * lib/gl_oset.h: New file.
11392         * lib/gl_oset.c: New file.
11393         * lib/gl_array_oset.h: New file.
11394         * lib/gl_array_oset.c: New file.
11395         * lib/gl_avltree_oset.h: New file.
11396         * lib/gl_avltree_oset.c: New file.
11397         * lib/gl_rbtree_oset.h: New file.
11398         * lib/gl_rbtree_oset.c: New file.
11399         * lib/gl_anytree_oset.h: New file.
11400
11401 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11402
11403         * m4/mkancesdirs.m4: New file.
11404         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
11405         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
11406         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
11407         it.
11408
11409 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11410
11411         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
11412         * lib/mkancesdirs.h: New files.
11413         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
11414         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
11415         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
11416         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
11417         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
11418         callers changed.  Revamp internals significantly, by not
11419         attempting to create directories that are temporarily more
11420         permissive than the final results.  Do not attempt to use
11421         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
11422         This removes some race conditions, fixes some bugs, and simplifies
11423         things.  Use new dirchownmod function to do owner and mode changes.
11424         * lib/mkdir-p.h: Likewise.
11425         * lib/modechange.c (octal_to_mode): New function.
11426         (struct mode_change): New member mentioned.
11427         (make_node_op_equals): New arg mentioned.  All callers changed.
11428         (mode_compile): Keep track of which mode bits the user has explicitly
11429         mentioned.
11430         (mode_adjust): New arg DIR, so that we implement the X op correctly.
11431         New arg PMODE_BITS, to keep track of which mode bits the user
11432         mentioned; it treats S_ISUID and S_ISGID speciall.
11433         All callers changed.
11434         * lib/modechange.h: Likewise.
11435
11436 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11437
11438         * MODULES.html.sh: Add mkancestors.
11439         * modules/mkancesdirs: New module.
11440         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
11441         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
11442         The chdir-safer and afs files are now orphans; I'll remove them
11443         unless someone speaks up.
11444         Add lib/dirchownmod.c, lib/dirchownmod.h.
11445         (Depends-on): Remove alloca, chown, save-cwd, dirname.
11446         Add lchown, mkancesdirs.
11447         (Maintainer): Add self.
11448
11449 2006-07-15  Karl Berry  <karl@gnu.org>
11450
11451         * gnulib-tool: help message wording/arrangement.
11452
11453 2006-07-14  Simon Josefsson  <jas@extundo.com>
11454
11455         * doc/gnulib.texi (Libtool and Windows): New section.
11456
11457 2006-07-12  Simon Josefsson  <jas@extundo.com>
11458
11459         * modules/gendocs (License): Fix license, approved by Karl.
11460
11461 2006-07-12  Eric Blake  <ebb9@byu.net>
11462
11463         * MODULES.html.sh: Add gendocs.
11464
11465 2006-07-11  Eric Blake  <ebb9@byu.net>
11466
11467         * modules/fdl: New module, to install doc/fdl.texi.
11468         * MODULES.html.sh: Add new section for documentation modules.
11469         * gnulib-tool: Avoid space-tab.
11470         (--doc-base): New option, to manage files from doc.
11471
11472 2006-07-11  Eric Blake  <ebb9@byu.net>
11473
11474         * m4/absolute-header.m4: Fix comments to match recent change.
11475
11476 2006-07-11  Eric Blake  <ebb9@byu.net>
11477
11478         * gnulib-tool: List --doc-base before --tests-base.
11479
11480 2006-07-11  Derek R. Price  <derek@ximbiot.com>
11481
11482         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
11483
11484 2006-07-11  Bruno Haible  <bruno@clisp.org>
11485
11486         * README: Mention where to put documentation.
11487
11488 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11489
11490         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
11491
11492 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11493
11494         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
11495         to stdint.m4.
11496
11497 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11498
11499         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
11500         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
11501         "no/such/file/stdint.h" when there is no such file, so that
11502         the resulting C code can be parsed by dodgy compilers.
11503         Problems reported by Bob Proulx.
11504
11505 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11506
11507         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
11508         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11509         macros into the GNU _D_EXACT_NAMLEN.
11510         * lib/savedir.c:  Likewise.
11511         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
11512
11513 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11514         and Paul Eggert  <eggert@cs.ucla.edu>
11515
11516         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
11517         * m4/savedir.m4:
11518         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11519         macros into the GNU _D_EXACT_NAMLEN.
11520
11521 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11522
11523         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
11524         around the absolute name, to work around a problem with the HP-UX
11525         11.23 native C compiler, reported by Bob Proulx.
11526
11527 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11528
11529         * doc/maintain.texi, make-stds.texi: Sync from
11530         <http://savannah.gnu.org/projects/gnustandards>.
11531
11532 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11533
11534         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
11535
11536 2006-07-09  Jim Meyering  <jim@meyering.net>
11537
11538         * m4/glob.m4: Remove a doubled word in a comment.
11539
11540 2006-07-09  Jim Meyering  <jim@meyering.net>
11541
11542         * lib/argp-pv.c: Remove a doubled word in a comment.
11543         * lib/check-version.c (check_version): Likewise.
11544         * lib/javacomp.c (compile_java_class): Likewise.
11545
11546 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11547
11548         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
11549         for the benefit of people using Autoconf 2.60.  If you want to
11550         support older Autoconf versions you can copy m4/onceonly_2_57.m4
11551         (or m4/onceonly.m4, if pre-2.57) manually.
11552
11553 2006-07-08  Jim Meyering  <jim@meyering.net>
11554
11555         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
11556         comment.
11557         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
11558         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
11559         comment.
11560
11561 2006-07-08  Jim Meyering  <jim@meyering.net>
11562
11563         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
11564
11565 2006-07-07  Simon Josefsson  <jas@extundo.com>
11566
11567         * tests/test-crc.c: Change expected crc value, the test vector
11568         were probably computed using the old broken crc.c?
11569
11570 2006-07-06  Simon Josefsson  <jas@extundo.com>
11571
11572         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
11573         now the canonical place for the M4 file).
11574
11575         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
11576         from the sys_socket dependency now.
11577
11578         * modules/inet_pton (Files): Ditto.
11579
11580         * modules/inet_ntop (Files): Ditto.
11581
11582 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11583
11584         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
11585         not gl_PREREQ_GETUSERSHELL.
11586
11587 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11588
11589         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
11590         with only one argument, for Autoconf 2.60.
11591         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
11592         expand to nothing, so add a shell command to avoid syntax error.
11593         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
11594
11595 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11596
11597         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
11598
11599 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11600
11601         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
11602         no longer needed.  Check for isblank decl.
11603         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
11604         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
11605         of existence.
11606
11607 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11608
11609         * lib/getloadavg.c: Use __VMS, not VMS.
11610         * lib/getopt.c: Likewise.
11611         * lib/getpagesize.h: Likewise.
11612         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
11613         and probably does not work.
11614
11615 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11616
11617         * lib/.cppi-disable: Add wcwidth.
11618         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
11619         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
11620         (ISGRAPH): Remove.  All uses changed to isgraph.
11621         (FOLD) [!defined _LIBC]: Remove special case.
11622         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
11623         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
11624         HAVE_ISBLANK.
11625         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
11626         case.
11627
11628 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
11629
11630         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
11631         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
11632         brackets.  Other minor changes to suppress some compiler
11633         warnings.
11634
11635 2006-07-06  Derek R. Price  <derek@ximbiot.com>
11636         and Paul Eggert  <eggert@cs.ucla.edu>
11637
11638         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
11639         of invoking obsolescent AC_HEADER_DIRENT macro.
11640         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
11641         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
11642         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
11643         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
11644         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
11645         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
11646         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
11647         * m4/readdir.m4: Remove; no longer needed.
11648
11649 2006-07-06  Derek R. Price  <derek@ximbiot.com>
11650         and Paul Eggert  <eggert@cs.ucla.edu>
11651
11652         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
11653         Don't worry about this obsolete case any more.
11654         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
11655         directories.
11656         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
11657         worry about this obsolete case any more.
11658         * lib/fts.c: Likewise.
11659         * lib/getcwd.c: Likewise.
11660         * lib/glob.h: Likewise.
11661         * lib/savedir.c: Likewise.
11662
11663 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11664
11665         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
11666         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
11667         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
11668         needed.
11669         All uses removed.
11670         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11671         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
11672         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
11673         needed.
11674         * m4/getdate.m4 (gl_GETDATE): Likewise.
11675         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
11676         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
11677         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
11678         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11679         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
11680         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
11681         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
11682         needed.
11683
11684 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11685
11686         * lib/memcasecmp.c: Include <limits.h>.
11687         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
11688         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
11689         Don't assume isdigit succeeds only on '0' through '9'.
11690
11691 2006-07-05  Eric Blake  <ebb9@byu.net>
11692
11693         * modules/getaddrinfo (Depends-on): Add snprintf.
11694
11695 2006-07-05  Eric Blake  <ebb9@byu.net>
11696
11697         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
11698         to avoid 'header present but could not be compiled' on cygwin.
11699
11700 2006-07-05  Eric Blake  <ebb9@byu.net>
11701
11702         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
11703         missing from netdb.h.
11704         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
11705
11706 2006-07-05  Derek R. Price  <derek@ximbiot.com>
11707
11708         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
11709         no longer needed.
11710         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
11711         * m4/getdate.m4 (gl_GETDATE): Likewise.
11712         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
11713         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
11714         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
11715         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11716         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
11717
11718 2006-07-05  Derek R. Price  <derek@ximbiot.com>
11719
11720         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
11721         All uses of is_space replaced by isspace.
11722         * lib/exit.h: Don't talk about STDC_HEADERS.
11723         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
11724         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
11725         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
11726         replaced by isprint etc.
11727         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
11728         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
11729         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
11730         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
11731         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
11732         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
11733
11734 2006-07-05  Bruno Haible  <bruno@clisp.org>
11735
11736         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
11737         the function exists, before testing against AIX.
11738         Reported by Martin Lambers <marlam@marlam.de>.
11739
11740 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11741
11742         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
11743         From Mark D. Baushke.
11744
11745 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11746
11747         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
11748         to the absolute name, not just one, to bypass Sun C 5.8's
11749         "warning: #include of /usr/include/... may be non-portable".
11750
11751 2006-07-04  Eric Blake  <ebb9@byu.net>
11752
11753         * modules/dirname-tests: New test module.
11754         * tests/test-dirname.c: New file, replacing dirname.c
11755         TEST_DIRNAME section that was recently deleted.
11756
11757 2006-07-04  Bruno Haible  <bruno@clisp.org>
11758
11759         Assume ANSI C header files and <ctype.h> functions.
11760         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
11761         (mbsnwidth): Use isprint, iscntrl instead.
11762
11763 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11764
11765         Merge from coreutils.
11766         * MODULES.html.sh: Add xstrtold.
11767         * modules/xstrtold: New file.
11768         * modules/cycle-check (Files): Add lib/same-inode.h.
11769         * modules/dirname (Files): Add m4/double-slash-root.m4.
11770         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
11771         * modules/mkdir-p (Files): Add lib/same-inode.h.
11772         * modules/same (Files): Add lib/same-inode.h.
11773
11774 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11775
11776         * m4/absolute-header.m4: Renamed from full-header-path.m4.
11777         This is to keep the terminology clean; POSIX talks about
11778         "absolute pathnames", not "full pathnames", but the GNU
11779         Coding Standards say to use "path" for something else;
11780         so use "absolute" to keep both sides happy.
11781         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
11782         Set gl_absolute_header, not gl_full_header_path.
11783         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
11784         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
11785         All uses changed.
11786
11787         Merge from coreutils.
11788
11789         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
11790
11791         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
11792         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
11793         want to require the building of c-strtod.o.
11794         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
11795         needs -lm directly.
11796         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
11797
11798         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
11799
11800         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
11801         --as-needed option if available.  Problem reported by Albert Chin in
11802         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
11803         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
11804         cc merely issues a bunch of annoying warnings for --as-needed
11805         (this problem was reported by Bob Proulx).  Also, try linking with
11806         -lm to detect a bug in binutils 2.16 (this problem was reported
11807         by Ralf Wildenhues).
11808
11809         2006-06-18  Jim Meyering  <jim@meyering.net>
11810
11811         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
11812         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
11813         macro.
11814         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
11815         also check for glibc-2.4's abort-inducing bug.
11816
11817         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
11818         Low-probability clean-up should be to use rmdir to get rid of
11819         the just-created directory, not unlink.
11820
11821         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
11822         configure fail, and request a bug report to inform us about it.
11823         Add a comment that, barring reports to the contrary, in 2007 we'll
11824         assume ftruncate is universally available.
11825
11826         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
11827
11828         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
11829
11830         2006-03-12  Jim Meyering  <jim@meyering.net>
11831
11832         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
11833         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
11834         * m4/same.m4 (gl_SAME): Likewise.
11835         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
11836
11837         2006-03-11  Eric Blake  <ebb9@byu.net>
11838
11839         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
11840         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
11841         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
11842         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
11843
11844 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11845
11846         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
11847         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
11848         reported by Mark D. Baushke, one in
11849         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
11850
11851         Merge from coreutils.
11852
11853         * lib/.cppi-disable: Add stdint_.h.
11854         * lib/.cvsignore: Add stdint.h.
11855
11856         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
11857
11858         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
11859         both double and long double versions.
11860         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
11861         * lib/xstrtold.c: New file.
11862         * lib/xstrtod.h (xstrtold): New decl.
11863
11864         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
11865
11866         * lib/filemode.c (setst): Remove.
11867         (strmode): Rewrite to avoid setst.  This makes the code shorter,
11868         (arguably) clearer, and the generated code is a bit smaller on my
11869         Debian GNU/Linux stable x86 host.
11870
11871         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
11872
11873         * lib/filemode.c: Include "filemode.h" first, to test the interface.
11874         Assume that filemode.h includes sys/types.h and sys/stat.h.
11875         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
11876         (ftypelet): Reorder to put common cases first, for efficiency.
11877         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
11878         to do 'M'.
11879         (strmode): Renamed from mode_string, and now stores 12 bytes instead
11880         of 10, for compatibility with FreeBSD.  All callers changed.
11881         (filemodestring): Now stores 12 bytes instead of 10, and sets file
11882         types that can't be deduced solely from st_mode.  First arg is now a
11883         const pointer.
11884         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
11885         (strmode): Renamed from mode_string.
11886         (filemodestring): New decl.
11887         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
11888         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
11889         needed.
11890         (S_ISPORT, S_ISWHT): New macros, if not already defined.
11891
11892         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
11893
11894         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
11895         fsusage.h now does that.  Include fsusage.h first, to test interface.
11896         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
11897         at most one method (the old code could have generated decls that
11898         didn't conform to C89, not that this was ever exercised).
11899         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
11900
11901         2006-03-19  Jim Meyering  <jim@meyering.net>
11902
11903         Work even in a chroot where d_ino values for entries in "/"
11904         don't match the stat.st_ino values for the same names.
11905         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
11906         number, iterate through all entries again, using lstat instead.
11907         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
11908         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
11909
11910         * lib/getcwd.c (__getcwd): Clarify a comment.
11911         Use memcpy in place of a call to strcpy.
11912
11913         2006-03-12  Jim Meyering  <jim@meyering.net>
11914
11915         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
11916         matches that of the current directory (which we're about to chdir ".."
11917         out of), then save the dev-ino of the parent, instead.
11918
11919         * lib/same-inode.h (SAME_INODE): New file/macro.
11920         * lib/chdir-safer.c (SAME_INODE): Remove definition.
11921         Include "same-inode.h", instead.
11922         * lib/same.c: Likewise.
11923         * lib/cycle-check.h: Include "same-inode.h".
11924         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
11925         * lib/cycle-check.c (SAME_INODE): Remove definition.
11926         * lib/root-dev-ino.h: Include "same-inode.h".
11927
11928         2006-03-11  Eric Blake  <ebb9@byu.net>
11929
11930         * lib/same.c (same_name): s/base_name/last_component/
11931         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
11932         * lib/filenamecat.c (file_name_concat): Likewise.
11933
11934         2006-03-11  Eric Blake  <ebb9@byu.net>,
11935                     Paul Eggert  <eggert@cs.ucla.edu>
11936
11937         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
11938         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
11939         drive prefix.
11940         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
11941         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
11942         (last_component): New method.
11943         * lib/dirname.c (dir_len): Determine when drive letters need a
11944         subsequent slash.  Preserve // when it is special.
11945         (dir_name): Don't append dot when drive letter is absolute.
11946         [TEST_DIRNAME]: Move into a full-blown gnulib test.
11947         * lib/basename.c (base_name): New semantics - malloc the result.
11948         Preserve // when it is special.  Preserve relative files that look
11949         like drive letters.
11950         (base_len): Preserve // when it is special.
11951         (last_component): New method, similar to old base_name semantics.
11952         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
11953         base_name.  Strip redundant slashes from ///.
11954
11955 2006-07-03  Jim Meyering  <jim@meyering.net>
11956
11957         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
11958         macro is used before the first cycle_check call.
11959
11960 2006-07-03  Eric Blake  <ebb9@byu.net>
11961
11962         * modules/dirname (Depends-on): Add xstrndup.
11963
11964 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11965
11966         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
11967         test cases, so that config.log is a bit easier to follow.
11968
11969 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11970
11971         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
11972         both are 64 bits, since this seems to be the tradition, and this
11973         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
11974         we ever run into a host that prefers long long to long in this
11975         case, we'll need another configure-time test.  Problem reported by
11976         Jim Meyering.
11977
11978 2006-07-02  Eric Blake  <ebb9@byu.net>
11979
11980         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
11981
11982 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11983
11984         * modules/inttypes (Depends-on): No longer depends on stdint.
11985         * modules/stdint (Description): Say more about assumptions.
11986         Say that the fast types might differ.  Say macros are used.
11987         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
11988         (Makefile.am): Revise list of substituted symbols to match
11989         new stdint.m4.
11990         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
11991         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
11992         * tests/test-stdint.c (verify_same_types)
11993         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
11994         the code conforms to C99/C89.
11995         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
11996         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
11997
11998 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11999
12000         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
12001         but fix a bug, by requiring at least 64 bits.
12002         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
12003         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
12004         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
12005         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
12006
12007         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
12008         changes.  Make 2.59 a prerequisite.  Check and substitute for
12009         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
12010         inttypes.h.  Do not use special include files; just use the
12011         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
12012         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
12013         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
12014         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
12015         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
12016         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
12017         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
12018         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
12019         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
12020         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
12021         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
12022         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
12023         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
12024         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
12025         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
12026         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
12027         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
12028         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
12029         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
12030         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
12031         WINT_MAX.  Check for C99 conformance more strictly, by detecting
12032         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
12033         not check for things that C99 does not require, e.g., int8_t.  If
12034         a test isn't needed unless <stdint.h> isn't working, and is
12035         unlikely to be needed for any other reason, then don't do it
12036         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
12037         size_t, since we assume C89 freestanding at least.  Do not check
12038         for sig_atomic_t, wchar_t, or wint_t, since the code now does
12039         the right thing even if the types are not defined.  Instead use:
12040         (gl_STDINT_TYPE_PROPERTIES): New macro.
12041         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
12042         testing whether <sys/types.h> clashes, as Autoconf does this for
12043         us now.  All uses removed.
12044         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
12045         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
12046         (gl_CHECK_TYPE_SAME):
12047         Remove; no longer needed.
12048         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
12049         exists, since we'll return 0 anyway in that case.
12050         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
12051
12052 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12053
12054         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
12055         possible collision with system files.
12056         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
12057         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
12058         WCHAR_MIN and WCHAR_MAX in this case.
12059         (<stddef.h>): Do not include; no longer needed.
12060         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
12061         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
12062         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
12063         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
12064         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
12065         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
12066         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
12067         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
12068         !defined(__c99))]: Include in this case too, since it's harmless
12069         now.
12070         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
12071         dangerous to do so.
12072         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
12073         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
12074         (_STDINT_MIN, _STDINT_MAX): New macros.
12075         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
12076         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
12077         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
12078         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
12079         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
12080         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
12081         macros, not typedefs; this simplifies things quite a bit.
12082         Use long int for all types narrower than int64_t.
12083         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
12084         Define in terms of long long int or int64_t or long int,
12085         not int64_t or int32_t.  This saves some compile-time testing.
12086         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
12087         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
12088         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
12089         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
12090         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
12091         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
12092         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
12093         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
12094         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
12095         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
12096         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12097         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12098         undef any previous version and define our own version, for
12099         simplicity and consistency with the new macros for types.
12100         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12101         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12102         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
12103         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
12104         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
12105         @WINT_T_SUFFIX@ to keep things simple here.
12106         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
12107         Simplify by assuming typical 8/16/32/64 host, since we're
12108         already doing that elsewhere anyway.
12109         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
12110         and assume long long int is 64 bits if available.  This
12111         speeds up 'configure'.
12112
12113 2006-07-01  Eric Blake  <ebb9@byu.net>
12114
12115         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
12116         Reported by Andreas Buening.
12117
12118 2006-07-01  Eric Blake  <ebb9@byu.net>
12119
12120         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
12121
12122 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
12123
12124         * lib/getaddrinfo.c: fixed typo
12125
12126 2006-06-29  Jim Meyering  <jim@meyering.net>
12127
12128         * modules/strftime (Maintainer): Add my name, since with the
12129         FPRINTFTIME changes strftime.c has forked from glibc.
12130
12131 2006-06-29  Eric Blake  <ebb9@byu.net>
12132
12133         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
12134
12135 2006-06-29  Eric Blake  <ebb9@byu.net>
12136
12137         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
12138
12139 2006-06-29  Eric Blake  <ebb9@byu.net>
12140
12141         * lib/stat_.h: New file.
12142
12143 2006-06-29  Eric Blake  <ebb9@byu.net>
12144
12145         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
12146         unused static function.
12147
12148 2006-06-29  Eric Blake  <ebb9@byu.net>
12149
12150         * doc/functions.texi (Function Portability): Document missing lstat
12151         on mingw.
12152
12153 2006-06-29  Eric Blake  <ebb9@byu.net>
12154
12155         * MODULES.html.sh: Add sys_stat.
12156         * modules/sys_stat: New module.
12157         * modules/mkstemp (Depends-on): Add sys_stat.
12158
12159 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12160
12161         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
12162
12163 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12164
12165         * m4/c-bs-a.m4: Removed.
12166
12167 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12168
12169         * lib/strftime.c: Assume strftime() exists.
12170
12171 2006-06-29  Derek Price  <derek@ximbiot.com>
12172
12173         * modules/c-bs-a: Removed - \a is C89.
12174         * MODULES.html.sh: Remove c-bs-a.
12175
12176 2006-06-29  Bruno Haible  <bruno@clisp.org>
12177
12178         * modules/wcwidth (License): Change to LGPL.
12179
12180 2006-06-28  Simon Josefsson  <jas@extundo.com>
12181
12182         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
12183         on _WIN32.
12184
12185         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
12186         getnameinfo.
12187
12188 2006-06-28  Simon Josefsson  <jas@extundo.com>
12189
12190         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
12191
12192 2006-06-28  Simon Josefsson  <jas@extundo.com>
12193
12194         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
12195         functions there.  It will succeed on Windows XP, but on Windows
12196         2000 and (presumably) earlier, it will fail, and use the internal
12197         re-implementation.
12198         (use_win32_p): New function.
12199         (getaddrinfo): Use strtoul on servname, to support numeric ports.
12200         Support AI_NUMERICSERV to disable getservbyname.
12201         (getnameinfo): New function, only supports
12202         NI_NUMERICHOST|NI_NUMERICSERV for now.
12203
12204         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
12205         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
12206         getnameinfo.
12207
12208 2006-06-28  Eric Blake  <ebb9@byu.net>
12209
12210         * modules/wcwidth: New file.
12211         * modules/mbchar (Depends-on): Add wcwidth.
12212         * modules/mbswidth (Depends-on): Add wcwidth.
12213         * MODULES.html.sh: Add wcwidth.
12214
12215 2006-06-28  Eric Blake  <ebb9@byu.net>
12216
12217         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
12218         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
12219
12220 2006-06-28  Eric Blake  <ebb9@byu.net>
12221
12222         * lib/xvasprintf.h: Fix comments.
12223
12224 2006-06-28  Eric Blake  <ebb9@byu.net>
12225
12226         * lib/mbchar.h (wcwidth): Include wcwidth.h.
12227         * lib/mbswidth.c (wcwidth): Move from here...
12228         * lib/wcwidth.h: ...to this new file.
12229
12230 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12231
12232         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
12233
12234         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
12235         it's obsolete.
12236         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
12237
12238 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12239
12240         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
12241         Autoconf 2.60 says this stuff was obsolete.
12242
12243 2006-06-28  Bruno Haible  <bruno@clisp.org>
12244
12245         * modules/wcwidth (Files): Add m4/wchar_t.m4.
12246
12247 2006-06-28  Bruno Haible  <bruno@clisp.org>
12248
12249         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
12250         gt_TYPE_WCHAR_T.
12251
12252 2006-06-28  Bruno Haible  <bruno@clisp.org>
12253
12254         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
12255         declaration for wcwidth.
12256         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
12257
12258 2006-06-28  Bruno Haible  <bruno@clisp.org>
12259
12260         * lib/mkdtemp.c [MINGW]: Include <io.h>.
12261         (mkdir): Define using _mkdir.
12262
12263 2006-06-28  Bruno Haible  <bruno@clisp.org>
12264
12265         * lib/getaddrinfo.h: Fix POSIX URL.
12266         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
12267         _WIN32.
12268         (use_win32_p): Make static.
12269         (getaddrinfo): Reject service name if it is empty or does not consist
12270         solely of decimal digits, or if its value is > 65535.
12271         (getnameinfo): Remove useless casts.
12272
12273 2006-06-27  Simon Josefsson  <jas@extundo.com>
12274
12275         * modules/sys_select: New file, suggested by Bruno Haible, Paul
12276         Eggert and Martin Lambers.
12277
12278 2006-06-27  Simon Josefsson  <jas@extundo.com>
12279
12280         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
12281         Eggert and Martin Lambers.
12282
12283 2006-06-27  Bruno Haible  <bruno@clisp.org>
12284
12285         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
12286         result to 0, not to empty.
12287         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
12288
12289 2006-06-27  Bruno Haible  <bruno@clisp.org>
12290
12291         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
12292
12293 2006-06-26  Simon Josefsson  <jas@extundo.com>
12294
12295         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
12296         present.
12297
12298 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
12299
12300         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
12301         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
12302         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
12303
12304 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
12305
12306         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
12307
12308 2006-06-26  Bruno Haible  <bruno@clisp.org>
12309
12310         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
12311
12312 2006-06-26  Bruno Haible  <bruno@clisp.org>
12313
12314         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
12315
12316 2006-06-26  Bruno Haible  <bruno@clisp.org>
12317
12318         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
12319         SGI C compiler in pre-C99 mode.
12320         Suggested by Mark D. Baushke and Larry Jones.
12321
12322 2006-06-26  Bruno Haible  <bruno@clisp.org>
12323
12324         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
12325         WCHAR_MAX.
12326         Reported by Mark D. Baushke and Larry Jones.
12327
12328 2006-06-26  Bruno Haible  <bruno@clisp.org>
12329
12330         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
12331         in pre-C99 mode.
12332         Suggested by Mark D. Baushke and Larry Jones.
12333
12334 2006-06-23  Simon Josefsson  <jas@extundo.com>
12335             Bruno Haible  <bruno@clisp.org>
12336
12337         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
12338         Emit mostlyclean-local rule.
12339         (func_emit_tests_Makefile_am): Likewise.
12340         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
12341
12342 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
12343
12344         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
12345
12346 2006-06-23  Bruno Haible  <bruno@clisp.org>
12347
12348         * tests/test-stdint.c: Update to match ISO C 99 Technical
12349         Corrigendum 1.
12350
12351 2006-06-23  Bruno Haible  <bruno@clisp.org>
12352
12353         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
12354
12355 2006-06-23  Bruno Haible  <bruno@clisp.org>
12356
12357         * lib/stdint_.h: Treat IRIX like OpenBSD.
12358
12359 2006-06-23  Bruno Haible  <bruno@clisp.org>
12360
12361         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
12362         ISO C 99 Technical Corrigendum 1.
12363
12364 2006-06-22  Simon Josefsson  <jas@extundo.com>
12365
12366         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
12367         MinGW.
12368
12369 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12370
12371         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
12372         needed.  Some compiler complained about some of them.  Problem reported
12373         by Larry Jones in
12374         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
12375
12376 2006-06-21  Simon Josefsson  <jas@extundo.com>
12377
12378         * tests/test-getaddrinfo.c: New file.
12379
12380         * modules/getaddrinfo-tests: New file.
12381
12382         * MODULES.html.sh: Add inet_pton.
12383
12384         * modules/inet_pton: New file.
12385
12386 2006-06-21  Simon Josefsson  <jas@extundo.com>
12387
12388         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
12389         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
12390         of using the (limited) gnulib implementation on Windows XP.
12391
12392         * m4/inet_pton.m4: New file.
12393
12394 2006-06-21  Simon Josefsson  <jas@extundo.com>
12395
12396         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
12397         variable.
12398
12399         * lib/socket_.h: Don't define WINVER.
12400
12401         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
12402         slightly modified to work in gnulib.
12403
12404 2006-06-21  Simon Josefsson  <jas@extundo.com>
12405
12406         * doc/gnulib.texi (Windows sockets): Add.
12407
12408 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12409
12410         * lib/read-file.c (fread_file): Start with buffer allocation of
12411         0 bytes rather than 1 byte; this simplifies the code.
12412         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
12413         code to free buffer and save/restore errno.
12414         (internal_read_file): Remove unused local.
12415
12416 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12417
12418         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
12419         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
12420         Problem reported by Denis Excoffier in
12421         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
12422
12423 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12424
12425         * modules/sys_socket, modules/socklen: Include sys/types since
12426         FreeBSD 4.x's sys/socket.h needs it.
12427
12428 2006-06-19  Simon Josefsson  <jas@extundo.com>
12429
12430         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
12431
12432 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
12433
12434         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
12435
12436 2006-06-19  Bruno Haible  <bruno@clisp.org>
12437
12438         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
12439         and FULL_PATH_INTTYPES_H in angle brackets.
12440         Reported by Mark D. Baushke <mdb@gnu.org>.
12441
12442 2006-06-17  Eric Blake  <ebb9@byu.net>
12443
12444         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
12445         errno.
12446
12447 2006-06-17  Bruno Haible  <bruno@clisp.org>
12448
12449         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
12450         <sys/inttypes.h>.
12451
12452 2006-06-17  Bruno Haible  <bruno@clisp.org>
12453
12454         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
12455         whether errno is declared. Assume <errno.h> declares errno.
12456
12457 2006-06-17  Bruno Haible  <bruno@clisp.org>
12458
12459         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
12460
12461 2006-06-17  Bruno Haible  <bruno@clisp.org>
12462
12463         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
12464         problem on Solaris 2.5.1.
12465
12466 2006-06-16  Eric Blake  <ebb9@byu.net>
12467
12468         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
12469         * lib/unicodeio.c [!defined errno]: Likewise.
12470         * lib/strtol.c [!defined errno]: Likewise.
12471         * lib/strtod.c [!defined errno]: Likewise.
12472
12473 2006-06-15  Eric Blake  <ebb9@byu.net>
12474
12475         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
12476
12477 2006-06-15  Eric Blake  <ebb9@byu.net>
12478
12479         * config/srclist.txt (ssize_t.m4): Lose sync.
12480
12481 2006-06-15  Bruno Haible  <bruno@clisp.org>
12482
12483         * modules/stdint (Files): Include m4/full-header-path.m4,
12484         m4/size_max.m4, m4/wchar_t.m4.
12485         (Makefile.am): Many more substitutions.
12486         * modules/stdint-tests: New file.
12487         * tests/test-stdint.c: New file.
12488
12489 2006-06-15  Bruno Haible  <bruno@clisp.org>
12490
12491         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
12492         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
12493         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
12494         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
12495         gl_CHECK_TYPE_SAME): New macros.
12496
12497 2006-06-15  Bruno Haible  <bruno@clisp.org>
12498
12499         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
12500
12501 2006-06-15  Bruno Haible  <bruno@clisp.org>
12502
12503         * lib/stdint_.h: Rewritten to be fully auto-configured.
12504         Fixes bug on HP-UX/IA64.
12505
12506 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
12507
12508         * lib/getdate.y (__attribute__): Don't define if already defined.
12509         Problem reported by Larry Jones.
12510         * lib/utimens.c (__attribute__): Likewise.
12511
12512 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
12513
12514         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
12515         reported by Andreas Schwab.
12516
12517 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12518             Bruno Haible  <bruno@clisp.org>
12519
12520         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
12521         check for the declaration of strnlen and a run test that exposes the
12522         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
12523         rpl_strndup.
12524
12525 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12526             Bruno Haible  <bruno@clisp.org>
12527
12528         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
12529
12530 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12531
12532         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
12533         compile test, for Tru64 4.0D.
12534
12535 2006-05-28  Karl Berry  <karl@gnu.org>
12536
12537         * config/srclist.txt (printf-args.c): lose sync.
12538
12539 2006-05-26  Martin Lambers  <marlam@marlam.de>
12540
12541         * lib/getpass.c: Updates the test for the native W32 API, and adds
12542         missing includes, thus fixing compilation warnings.
12543
12544 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12545
12546         * lib/exclude.c (exclude_fnmatch): New function.
12547         (excluded_file_name): Call exclude_fnmatch.
12548         * lib/exclude.h (excluded_file_name): New prototype
12549
12550 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
12551
12552         * lib/tempname.c (small_open, large_open): New macros.
12553         (__open, __open64) [!_LIBC]: Remove.
12554         (__gen_tempname): Use small_open and large_open instead of __open
12555         and __open64.  This fixes a portability bug on HP-UX 11.11i
12556         reported by Simon Wing-Tang in
12557         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
12558
12559 2006-05-24  Bruno Haible  <bruno@clisp.org>
12560
12561         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
12562         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
12563         Reported by Thorsten Maerz <torte@netztorte.de> via
12564         Aaron Stone <aaron@serendipity.cx>.
12565
12566 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12567
12568         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
12569         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
12570         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
12571         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
12572         not really conditional on the cache.
12573         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
12574
12575 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12576
12577         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
12578         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
12579         (my_usleep): Don't mishandle maximum value.
12580
12581 2006-05-19  Jim Meyering  <jim@meyering.net>
12582
12583         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
12584
12585 2006-05-17  Bruno Haible  <bruno@clisp.org>
12586
12587         Cygwin portability.
12588         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
12589
12590 2006-05-17  Bruno Haible  <bruno@clisp.org>
12591
12592         * lib/stdint_.h: Fix recognition of Cygwin.
12593
12594 2006-05-15  Bruno Haible  <bruno@clisp.org>
12595
12596         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
12597         on libtool patch by Ralf Wildenhues.
12598
12599 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12600
12601         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
12602         test for C99 conformance; (bool) 0.5 is an integer constant
12603         expression, but (bool) -0.5 is not.  Problem reported by Fedor
12604         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
12605
12606 2006-05-11  Simon Josefsson  <jas@extundo.com>
12607
12608         * m4/xvasprintf.m4: Fix obvious typo.
12609
12610 2006-05-11  Jim Meyering  <jim@meyering.net>
12611
12612         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
12613         James Lemley.
12614
12615 2006-05-10  Simon Josefsson  <jas@extundo.com>
12616
12617         * lib/md4.c: Typo fix, update copyright years.
12618         (K1, K2): Don't use L because it turn computations into 64-bit on
12619         64-bit platforms.
12620
12621 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
12622
12623         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
12624         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
12625         unwanted sign propagation, e.g., on hosts with 64-bit int.
12626         There still are some problems with reeelly weird theoretical hosts
12627         (e.g., 33-bit int) but it's not worth worrying about now.
12628         * lib/sha1.c (rol): Likewise.
12629         (K1, K2, K3, K4): Remove unnecessary L suffix.
12630
12631 2006-05-10  Bruno Haible  <bruno@clisp.org>
12632
12633         * lib/des.c: Cast to avoid warnings.
12634
12635 2006-05-09  Bruno Haible  <bruno@clisp.org>
12636
12637         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
12638         (Depends-on): Depend also on xsize, stdarg.
12639         (configure.ac): Add gl_XVASPRINTF.
12640
12641 2006-05-09  Bruno Haible  <bruno@clisp.org>
12642
12643         * m4/xvasprintf.m4: New file.
12644
12645 2006-05-09  Bruno Haible  <bruno@clisp.org>
12646
12647         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
12648         (EOVERFLOW): Define fallback value.
12649         (xstrcat): New function.
12650         (xvasprintf): Recognize the special case of a string concatenation.
12651
12652 2006-05-08  Eric Blake  <ebb9@byu.net>
12653
12654         * gnulib-tool (func_version): Base copyright year on CVS date.
12655         (func_emit_copyright_notice): New function.
12656         (func_emit_lib_Makefile_am): Use it.
12657         (func_emit_tests_Makefile_am): Likewise.
12658         (func_import): Likewise.
12659
12660 2006-05-08  Bruno Haible  <bruno@clisp.org>
12661
12662         * modules/stdarg: New file.
12663         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
12664
12665 2006-05-08  Bruno Haible  <bruno@clisp.org>
12666
12667         * m4/stdarg.m4: New file, from GNU gettext.
12668
12669 2006-05-08  Bruno Haible  <bruno@clisp.org>
12670
12671         * config/srclist.txt (build-aux/config.rpath): different from latest
12672         release.
12673
12674 2006-05-08  Bruno Haible  <bruno@clisp.org>
12675
12676         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
12677
12678 2006-05-05  Jim Meyering  <jim@meyering.net>
12679
12680         * m4/warning.m4: New file, derived from bison's file by the same name.
12681
12682 2006-05-03  Bruno Haible  <bruno@clisp.org>
12683
12684         * lib/stdint_.h: Shorter URL.
12685         * lib/inttypes.h: Likewise.
12686
12687 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12688
12689         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
12690
12691 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12692
12693         * lib/verify.h: Document the internals better.  Most of this change
12694         was written by Bruno Haible.
12695
12696 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12697
12698         * doc/verify.texi: New file, partly based on a proposal by
12699         Bruno Haible.
12700
12701 2006-05-02  Bruno Haible  <bruno@clisp.org>
12702
12703         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
12704         test from here...
12705         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
12706
12707 2006-04-29  Bruno Haible  <bruno@clisp.org>
12708
12709         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
12710         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
12711
12712 2006-04-29  Bruno Haible  <bruno@clisp.org>
12713
12714         * gnulib-tool: Make --update option actually work.
12715
12716 2006-04-29  Bruno Haible  <bruno@clisp.org>
12717
12718         * doc/gcd.texi: New file.
12719         * doc/gnulib.texi: Include it.
12720
12721 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
12722
12723         * lib/getdate.y (get_date): When adding relative date, start with the
12724         initial time, not with the result of the first mktime call.
12725
12726 2006-04-25  Bruno Haible  <bruno@clisp.org>
12727
12728         * gnulib-tool (func_import): Output the include directives in three
12729         blocks, sorted separately.
12730         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12731
12732 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
12733
12734         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
12735         to define main with arguments, for C++.  Reported by Eric Blake.
12736         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
12737         Prefer 'int main ()' to 'int main (void)', for C++.
12738         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
12739         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
12740         for 'main', for C99 and C++.
12741
12742 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
12743
12744         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
12745         Don't assume that exit status -1 is valid.
12746         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
12747         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
12748         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
12749         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
12750         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
12751         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
12752         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
12753         functions can be used without declaring them, or that you can
12754         exit with status -1.
12755         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
12756
12757 2006-04-24  Karl Berry  <karl@gnu.org>
12758
12759         * config/srclist.txt (longdouble.m4): sync lost.
12760
12761 2006-04-24  Eric Blake  <ebb9@byu.net>
12762
12763         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
12764
12765 2006-04-24  Bruno Haible  <bruno@clisp.org>
12766
12767         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
12768         poll() implementation in AIX.
12769         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12770
12771 2006-04-24  Bruno Haible  <bruno@clisp.org>
12772
12773         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
12774         assigned exactly once.
12775
12776 2006-04-23  Claudio Fontana  <claudio@gnu.org>
12777             Bruno Haible  <bruno@clisp.org>
12778
12779         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
12780         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
12781         for AM_CPPFLAGS.
12782
12783 2006-04-23  Bruno Haible  <bruno@clisp.org>
12784
12785         * modules/copy-file: Depend on unistd.
12786         * modules/execute: Likewise.
12787         * modules/fatal-signal: Likewise.
12788         * modules/findprog: Likewise.
12789         * modules/mkdtemp : Likewise.
12790         * modules/pipe: Likewise.
12791         * modules/wait-process: Likewise.
12792
12793 2006-04-23  Bruno Haible  <bruno@clisp.org>
12794
12795         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
12796         condition was already detected.
12797         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12798
12799 2006-04-23  Bruno Haible  <bruno@clisp.org>
12800
12801         * lib/copy-file.c: Include <unistd.h> unconditionally.
12802         * lib/execute.c: Likewise.
12803         * lib/fatal-signal.c: Likewise.
12804         * lib/findprog.c: Likewise.
12805         * lib/mkdtemp.c: Likewise.
12806         * lib/pipe.h: Likewise.
12807         * lib/pipe.c: Likewise.
12808         * lib/wait-process.h: Likewise.
12809
12810 2006-04-23  Bruno Haible  <bruno@clisp.org>
12811
12812         * gnulib-tool (func_usage): Fix --import description. Document
12813         --update.
12814         (func_import): Create temporary file in a temporary directory, if
12815         --dry-run is specified. Silence errors from 'grep' when there are no
12816         m4 files in $m4dir.
12817         (func_create_testdir): Silence errors from 'grep' when there are no
12818         m4 files in $m4dir.
12819         Reported by Karl Berry <karl@freefriends.org>.
12820
12821 2006-04-20  Bruno Haible  <bruno@clisp.org>
12822
12823         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
12824         one argument, so that the code will be portable to Autoconf 2.60.
12825         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
12826         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
12827         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
12828
12829 2006-04-19  Derek Price  <derek@ximbiot.com>
12830             Eric Blake  <ebb9@byu.net>
12831
12832         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
12833         rather than "/full/path.h".  Update comment to match.  Shorten &
12834         generalize m4_translit call via AS_TR_CPP.
12835
12836 2006-04-19  Derek Price  <derek@ximbiot.com>
12837             Eric Blake  <ebb9@byu.net>
12838
12839         * lib/inttypes.h: Correct grammar in comment.
12840
12841 2006-04-18  Derek Price  <derek@ximbiot.com>
12842             Paul Eggert  <eggert@cs.ucla.edu>
12843
12844         * modules/inttypes: New file.
12845         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
12846
12847 2006-04-18  Derek Price  <derek@ximbiot.com>
12848             Paul Eggert  <eggert@cs.ucla.edu>
12849
12850         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
12851         New files.
12852
12853 2006-04-18  Derek Price  <derek@ximbiot.com>
12854             Paul Eggert  <eggert@cs.ucla.edu>
12855
12856         * lib/inttypes.h: New file.
12857         * lib/strtoimax.c: Assume <inttypes.h>.
12858
12859 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
12860
12861         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
12862         isn't mounted.  Problem reported by Kir Kolyshkin.
12863
12864 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
12865
12866         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
12867         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
12868         Derek R. Price.
12869         * lib/regex.h (RE_DUP_MAX): Update comment to match current
12870         implementation.
12871
12872 2006-04-12  Eric Blake  <ebb9@byu.net>
12873
12874         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
12875         is now done automatically by the corresponding Autoconf macro.
12876
12877 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
12878
12879         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
12880         time_r.h.
12881
12882 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
12883
12884         Merge regex changes from libc, removing some of our
12885         POSIX-conformance changes that were rejected and redoing them in a
12886         less-intrusive way.
12887
12888         * lib/regcomp.c (re_compile_internal, init_dfa):
12889         Length arg is now size_t, not Idx.  All uses changed.
12890         (peek_token): Forward decl now says internal_function.
12891         (__re_error_msgid, __re_error_msgid_idx):
12892         Now static rather than extern with attribute_hidden.
12893         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
12894         For some reason libc prefers K&R style defns for external functions.
12895         (regerror) [!defined _LIBC]: Likewise.
12896         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
12897         (seek_collating_symbol_entry, lookup_collation_sequence_value):
12898         (build_range_exp, build_collating_symbol):
12899         Use K&R-style defn.
12900         (re_compile_fastmap): Use '\0' to memset, not 0.
12901         (utf8_sb_map): Make the calculations more obvious.
12902         (init_dfa, parse_bracket_exp, build_charclass_op):
12903         Call calloc and cast result, as glibc does.
12904         (init_word_char, fetch_token, peek_token, peek_token_bracket):
12905         (build_range_exp, build_collating_symbol):
12906         Now internal functions.
12907
12908         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
12909
12910         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
12911         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
12912         Don't depend on VMS; depend on __VMS instead, for POSIX
12913         namespace cleanness.
12914         (regoff_t): Define to ssize_t, not long int.
12915
12916         Remove the REG_ macros named below.  Instead, make the old names
12917         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
12918         __USE_GNU_REGEX.
12919         (REG_BACKSLASH_ESCAPE_IN_LISTS):
12920         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
12921         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
12922         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
12923         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
12924         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
12925         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
12926         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
12927         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
12928         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
12929         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
12930         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
12931         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
12932         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
12933         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
12934         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
12935         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
12936         (REG_NREGS):
12937         Remove.  All uses replaced by the old RE_* names.
12938         (RE_BACKSLASH_ESCAPE_IN_LISTS):
12939         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
12940         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
12941         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
12942         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
12943         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
12944         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
12945         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
12946         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
12947         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
12948         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
12949         Don't bother having these macros be independent of each others'
12950         values, since they no longer exist in the POSIX name space.
12951
12952         Rename the following member names back to their old names,
12953         unless !__USE_GNU_REGEX.  All uses changed back.
12954         (buffer): Renamed from re_buffer.
12955         (allocated): Renamed from re_allocated.
12956         (used): Renamed from re_used.
12957         (syntax): Renamed from re_syntax.
12958         (fastmap): Renamed from re_fastmap.
12959         (translate): Renamed from re_translate.
12960         (can_be_null): Renamed from re_can_be_null.
12961         (regs_allocated): Renamed from re_regs_allocated.
12962         (fastmap_accurate): Renamed from re_fastmap_accurate.
12963         (no_sub): Renamed from re_no_sub.
12964         (not_bol): Renamed from re_not_bol.
12965         (not_eol): Renamed from re_not_eol.
12966         (newline_anchor): Renamed from re_newline_anchor.
12967         (num_regs): Renamed from rm_num_regs.
12968         (start): Renamed from rm_start.
12969         (end): Renamed from rm_end.
12970
12971         (free_state): Move up a bit.
12972
12973         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
12974         #define to be empty.
12975         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
12976         when that is what is intended.
12977         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
12978         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
12979         (MAX): New macro.
12980         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
12981         All uses changed back to re_malloc, etc.  It's now the caller's
12982         responsibility to check for overflow; all callers changed.
12983         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
12984         (re_x2nrealloc): Remove.
12985         (free_state): Remove decl.
12986
12987         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
12988         (re_set_registers, re_exec):
12989         Use K&R-style defn.
12990
12991         2006-01-31  Roland McGrath  <roland@redhat.com>
12992
12993         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
12994         Reported by Mike Frysinger <vapier@gentoo.org>.
12995
12996         2006-01-15  Andreas Jaeger  <aj@suse.de>
12997
12998         [BZ #1950]
12999         * lib/regex_internal.c (re_string_reconstruct): Adjust for
13000         build_wcs_upper_buffer change.
13001         (build_wcs_upper_buffer): Change return type.
13002
13003         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
13004
13005         * lib/regex_internal.h: Include <stdint.h> if available.
13006
13007         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
13008
13009         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
13010
13011         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
13012
13013         * lib/regcomp.c: Adjust for changed secondary hash function.
13014
13015         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
13016
13017         * lib/regex.h: Pretty printing.
13018         Clean up namespace a bit.
13019
13020         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
13021
13022         * lib/regexec.c (update_cur_sifted_state, check_arrival,
13023         check_arrival_add_next_nodes): Avoid using uninitialized variable.
13024
13025         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
13026                     Ulrich Drepper  <drepper@redhat.com>
13027
13028         [BZ #1302]
13029         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
13030         changed.
13031         (bitset_word_t): Renamed from bitset_word.  All uses changed.
13032
13033         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
13034
13035         [BZ #281]
13036         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
13037         * lib/regcomp.c: Remove unnecessary uses of
13038         unsigned RE_TRANSLATE_TYPE.
13039         * lib/regex_internal.h: Likewise.
13040         * lib/regex_internal.c: Likewise.
13041         * lib/regexec.c: Likewise.
13042         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
13043
13044         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
13045
13046         * lib/regexec.c (find_recover_state): Remove unnecessary
13047         initialization.
13048         (transit_state_bkref): Make DFA a const pointer.
13049         (get_subexp): Likewise.
13050         (check_arrival): Likewise.
13051         (update_cur_sifted_state): Likewise.
13052         (re_search_internal): Likewise.
13053         (prune_impossible_nodes): Likewise.
13054         (acquire_init_state_context): Likewise.
13055         (proceed_next_node): Likewise.
13056         (set_regs): Likewise.
13057         (free_fail_stack_return): Likewise.
13058         (check_arrival_expand_ecl): Mark DFA parameter as const.
13059         (check_arrival_expand_ecl_sub): Likewise.
13060         (check_subexp_limits): Likewise.
13061         (sub_epsilon_src_nodes):  Likewise.
13062         (add_epsilon_src_nodes):  Likewise.
13063         (merge_state_array): Likewise.
13064         (update_regs): Likewise.
13065         (build_trtable): Likewise.
13066         (sift_states_backward): Mark MCTX parameter as const.
13067         (build_sifted_states): Likewise.
13068         (update_cur_sifted_state): Likewise.
13069         (sift_states_mkref): Likewise.
13070         (check_arrival_expand_ecl): Mark eclosure as const.
13071         (check_dst_limits_calc_pos_1): Likewise.
13072         * lib/regex_internal.h (re_match_context_t): Make dfa a const
13073         pointer.
13074
13075         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
13076
13077         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
13078         (transit_state_sb): Likewise.
13079         (transit_state_mb): Likewise.
13080         (sift_states_iter_mb): Likewise.
13081         (check_arrival_add_next_nodes): Likewise.
13082         (check_node_accept_bytes): Change first parameter to pointer-to-const.
13083         [_LIBC] (re_search_2_stub): Use mempcpy.
13084
13085         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
13086         mbrtowc for very simple UTF-8 case.
13087
13088         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
13089         a pointer-to-const.
13090         (re_acquire_state_context): Likewise.
13091         * lib/regex_internal.h: Adjust prototypes.
13092
13093         * lib/regex.c: Prevent using C++ compilers.
13094
13095         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
13096         (re_acquire_state_context): Likewise.
13097
13098 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13099
13100         * modules/regex (Depends-on): Add ssize_t.
13101
13102 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13103
13104         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
13105         translation table.
13106
13107 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13108
13109         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
13110
13111 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
13112             Bruno Haible  <bruno@clisp.org>
13113
13114         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
13115         <sys/types.h> and <inttypes.h>.
13116
13117 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13118
13119         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
13120         `__error_t_defined', so argp.h will not typedef the former.
13121
13122 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
13123
13124         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
13125         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
13126         glibc names.  Even if glibc is changed to conform to POSIX, the
13127         traditional names will be available anyway, since regex depends on
13128         the extensions module.  Also, fix a longstanding typo in the
13129         implementation of Spencer ERE test #75 from grep 2.3.  Problems
13130         reported by Emanuele Giaquinta.  Also, change sense of cached
13131         variable, so that the message makes sense.
13132
13133 2006-03-24  Simon Josefsson  <jas@extundo.com>
13134
13135         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
13136         including some doc fixes.
13137         (base64_encode_alloc): Fix +1 bug on allocation failures.
13138
13139 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13140
13141         * lib/base64.c (base64_encode): Do not read past end of array with
13142         unsanitized input on systems with CHAR_BIT > 8.
13143
13144 2006-03-24  Eric Blake  <ebb9@byu.net>
13145
13146         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
13147
13148 2006-03-22  Karl Berry  <karl@gnu.org>
13149
13150         * config/srclist.txt (*setenv.[ch]): get from coreutils.
13151         * config/srclistvars.sh (COREUTILS): new var.
13152
13153 2006-03-17  Jim Meyering  <jim@meyering.net>
13154
13155         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
13156         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
13157
13158 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13159
13160         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
13161         no longer needs it.  Instead, check that regoff_t is as least
13162         as wide as ptrdiff_t.
13163
13164         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
13165         so that our regex.h stays compatible with the installed regex.
13166         This is helpful for installers who configure --without-included-regex.
13167         Problem reported by Emanuele Giaquinta.
13168
13169 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13170
13171         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
13172         Typedef to long int, not to off_, as POSIX will likely change
13173         in that direction.
13174
13175 2006-03-15  Eric Blake  <ebb9@byu.net>
13176
13177         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
13178
13179 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13180
13181         * lib/argp-help.c (validate_uparams): Fix typo
13182         * lib/argp-parse.c (argp_default_options): Consistently begin help
13183         messages with a lowercase letter.
13184
13185 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
13186
13187         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
13188         overrun buffers and shouldn't be used (much as gets shouldn't be
13189         used).
13190         * lib/time_r.c (asctime_r, ctime_r): Likewise.
13191
13192 2006-03-08  Simon Josefsson  <jas@extundo.com>
13193
13194         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
13195         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13196
13197 2006-03-08  Simon Josefsson  <jas@extundo.com>
13198
13199         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
13200         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13201
13202 2006-03-08  Simon Josefsson  <jas@extundo.com>
13203
13204         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
13205         signal that configure disabled the device.
13206
13207 2006-03-08  Simon Josefsson  <jas@extundo.com>
13208
13209         * build-aux/maint.mk: Fix refresh-po, to handle no translated
13210         languages.
13211
13212 2006-03-07  Simon Josefsson  <jas@extundo.com>
13213
13214         * modules/getopt (Depends-on): Add unistd.
13215
13216         * modules/unistd: New file.
13217
13218 2006-03-07  Simon Josefsson  <jas@extundo.com>
13219
13220         * modules/gc-random: New file.
13221
13222 2006-03-07  Simon Josefsson  <jas@extundo.com>
13223
13224         * m4/unistd_h.m4: New file.
13225
13226 2006-03-07  Simon Josefsson  <jas@extundo.com>
13227
13228         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
13229         test to be side-effect free by storing the result in the cache
13230         variable gl_cv_lib_readline, and moving the assignment of
13231         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
13232         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13233
13234 2006-03-07  Simon Josefsson  <jas@extundo.com>
13235
13236         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
13237         error on missing devices (the functions will return an error).
13238
13239         * m4/gc.m4: Move random stuff to gc-random.m4
13240
13241 2006-03-07  Simon Josefsson  <jas@extundo.com>
13242
13243         * lib/unistd_.h: New file.
13244
13245 2006-03-07  Simon Josefsson  <jas@extundo.com>
13246
13247         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
13248
13249 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13250
13251         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
13252         Problem reported by Juan Manuel Guerrero.
13253
13254 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13255
13256         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
13257         the unistd module.
13258         * lib/getlogin_r.c: Likewise.
13259         * lib/getlogin_r.h: Likewise.
13260         * lib/glob.c: Likewise.
13261         * lib/pagealign_alloc.c: Likewise.
13262         * lib/unistd_.h: Remove; no longer needed.
13263
13264 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13265
13266         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13267         Add unistd.
13268         * modules/c-stack (Depends-on): Add unistd.
13269         * modules/getlogin_r: Likewise.
13270         * modules/glob: Likewise.
13271         * modules/pagealign_alloc: Likewise.
13272         * modules/unistd (Files): Remove lib/unistd_.h.
13273         (EXTRA_DIST): Remove.
13274         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
13275         need unistd_.h.
13276         (MOSTLYCLEANFILES): Remove unistd.h-t.
13277
13278 2006-03-03  Simon Josefsson  <jas@extundo.com>
13279
13280         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
13281
13282 2006-03-03  Simon Josefsson  <jas@extundo.com>
13283
13284         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
13285         libidn and bison.
13286
13287 2006-03-03  Simon Josefsson  <jas@extundo.com>
13288
13289         * build-aux/maint.mk: Add indent target.
13290
13291 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
13292
13293         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
13294         our replacement poll.h in any case, to avoid a differing
13295         declaration from a system header.  Seen on AIX.
13296
13297 2006-03-01  Simon Josefsson  <jas@extundo.com>
13298
13299         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
13300         <kasal@ucw.cz>.
13301
13302 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13303
13304         * modules/gettime (Depends-on): Add extensions module.
13305         * modules/nanosleep (Depends-on): Likewise.
13306         * modules/settime (Depends-on): Likewise.
13307
13308 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13309
13310         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
13311         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
13312         pedantically.
13313         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13314         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
13315
13316         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
13317         not "==".  Reported by Ralf Wildenhues.
13318
13319 2006-03-01  Karl Berry  <karl@gnu.org>
13320
13321         * doc/Copyright/request-*: new files, synced from gnuorg.
13322
13323 2006-03-01  Karl Berry  <karl@gnu.org>
13324
13325         * config/srclist.txt (Copyright/*): new entries.
13326
13327 2006-02-28  Simon Josefsson  <jas@extundo.com>
13328
13329         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
13330
13331 2006-02-27  Simon Josefsson  <jas@extundo.com>
13332
13333         * lib/base64.h: Indent #define's.  From Jim Meyering
13334         <jim@meyering.net>.
13335
13336 2006-02-27  Jim Meyering  <jim@meyering.net>
13337
13338         Revert the change of 2006-02-24, so these files can continue
13339         to be sync'd from gettext.
13340         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
13341         of `config.h'.
13342
13343 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13344
13345         * modules/intprops: New file.
13346         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
13347         Add intprops.
13348         * modules/getloadavg (Files): Remove lib/intprops.h.
13349         (Depends-on): Add intprops.
13350         * modules/human: Likewise.
13351         * modules/inttostr: Likewise.
13352         * modules/openat: Likewise.
13353         * modules/sig2str: Likewise.
13354         * modules/userspec: Likewise.
13355         * modules/utimecmp: Likewise.
13356         * modules/xnanosleep: Likewise.
13357         * modules/xstrtol: Likewise.
13358
13359 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
13360
13361         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
13362         * modules/lock-tests (TESTS): Use $(EXEEXT).
13363         * modules/tls-tests: Likewise.
13364         * modules/argp-tests: Likewise.
13365         (check_PROGRAMS): New var, replacing...
13366         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
13367
13368 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13369
13370         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
13371         `config.h'.
13372
13373 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
13374
13375         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
13376
13377 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13378
13379         Sync from coreutils.
13380         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
13381         gl_CHDIR_SAFER.
13382
13383 2006-02-22  Jim Meyering  <jim@meyering.net>
13384
13385         Sync from coreutils.
13386         * m4/chdir-safer.m4: New file.
13387
13388 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
13389
13390         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
13391         AT_FDCWD exceeds INT_MAX.
13392         * lib/openat.h (AT_FDCWD): Likewise.
13393
13394 2006-02-17  Eric Blake  <address@hidden>
13395
13396         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
13397
13398 2006-02-16  Simon Josefsson  <jas@extundo.com>
13399
13400         * modules/getaddrinfo (Depends-on): Add sys_socket.
13401
13402 2006-02-15  Simon Josefsson  <jas@extundo.com>
13403
13404         * build-aux/maint.mk: Add dsyntax-check rule.
13405
13406 2006-02-15  Eric Blake  <ebb9@byu.net>
13407
13408         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
13409         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
13410         'present but cannot compile' warnings on cygwin.
13411         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
13412         use ws2tcpip.h if sys/socket.h works.
13413         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
13414         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
13415
13416 2006-02-14  Simon Josefsson  <jas@extundo.com>
13417
13418         * modules/maintainer-makefile (Files): Rename.
13419
13420         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
13421         and (the local) Makefile.cfg to maint-cfg.mk.
13422
13423         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
13424         to the latter.
13425
13426         * modules/maintainer-makefile: New module.
13427
13428         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
13429         severaly stripped to make it possible to build it up from scratch
13430         with reliable tests.
13431
13432         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
13433         fixes to permit overriding the default actions when configure and
13434         makefile are not available.
13435
13436 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
13437
13438         Sync from coreutils.
13439         * modules/lstat (Depends-on): Don't depend on xalloc.
13440         (License): Change from GPL to LGPL, since this is now simply a
13441         replacement for a libc function.
13442
13443 2006-02-14  Jim Meyering  <jim@meyering.net>
13444
13445         Sync from coreutils.
13446
13447         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
13448         failure on deficient systems, and simplify gnulib lgpl dependencies.
13449         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
13450         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
13451
13452         * lib/xalloc-die.c: Remove unused definition of N_.
13453
13454 2006-02-14  Jim Meyering  <jim@meyering.net>
13455
13456         Sync from coreutils.
13457         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
13458         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
13459         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
13460         double-quote uses of that variable, to accommodate the rare case in
13461         which getmntent is available in none of the libraries checked.  This
13462         happens at least on FreeBSD 5.0.
13463
13464 2006-02-13  Simon Josefsson  <jas@extundo.com>
13465
13466         * gnulib-tool (Usage): Fix --import, from
13467         karl@freefriends.org (Karl Berry).
13468
13469 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13470
13471         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
13472
13473 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
13474
13475         * lib/argp-namefrob.h: Restore changes accidentally lost during the
13476         "autoupdate" on 2005-12-12.
13477
13478 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13479
13480         * modules/closeout (Depends-on): Remove atexit.
13481
13482 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13483
13484         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
13485         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
13486
13487 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13488
13489         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
13490         __EXTENSIONS__ if this causes compilation to fail.  Problem
13491         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
13492         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
13493
13494 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
13495
13496         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
13497         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
13498         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
13499         All uses changed.
13500
13501 2006-01-26  Simon Josefsson  <jas@extundo.com>
13502
13503         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
13504         prototype is visible on mingw32.
13505
13506         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
13507         for mingw32.
13508
13509         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
13510         mingw32).
13511
13512 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
13513
13514         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
13515         attempt to open for write; this always fails, at least on POSIX
13516         hosts.  This reinstates the 2006-01-09 change, which was
13517         inadvertently removed.
13518
13519 2006-01-26  Bruno Haible  <bruno@clisp.org>
13520
13521         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
13522         Reported by Paul Eggert.
13523
13524 2006-01-26  Bruno Haible  <bruno@clisp.org>
13525             Paul Eggert  <eggert@cs.ucla.edu>
13526
13527         * lib/stdbool_.h (_Bool)
13528         [(! (defined __cplusplus || defined __BEOS__)
13529           && !defined __GNUC__
13530           && !(defined __HP_cc || defined __xlc__
13531                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
13532                || defined __sgi))]:
13533         #define to signed char in these cases too; this simplifies
13534         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
13535         etc., separately) and makes it more conservative.
13536
13537 2006-01-25  Simon Josefsson  <jas@extundo.com>
13538
13539         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
13540         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
13541         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
13542
13543 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13544
13545         * lib/argp-namefrob.h: Bugfix. Remove stray #
13546
13547 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
13548
13549         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
13550         so that we test the test.
13551         Check for yet another HP-UX cc bug involving *bool |= bool.
13552
13553 2006-01-25  Karl Berry  <karl@gnu.org>
13554
13555         * config/srclist.txt (vasnprintf.c): sync lost.
13556
13557 2006-01-25  Jim Meyering  <jim@meyering.net>
13558
13559         Sync from the stable (b5) branch of coreutils:
13560
13561         * lib/fts.c (fts_children): Don't let close() clobber errno from
13562         failed fchdir().
13563
13564         * lib/fts.c (fts_stat): When following a symlink-to-directory,
13565         don't necessarily interpret stat-fails+lstat-succeeds as indicating
13566         a dangling symlink.  That can also happen at least for ELOOP.
13567         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
13568         FYI, this bug predates the inclusion of fts.c in coreutils.
13569
13570         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
13571         in their own block, so pre-c99 compilers don't object.
13572
13573         Avoid the double-free (first in fts_read, second in fts_close) that
13574         would occur when an `active' directory is made inaccessible (e.g.,
13575         via chmod a-x) during a traversal.
13576         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
13577         before returning.  Reproduce this failure by
13578         mkdir -p a/b; cd a; chmod a-x . b
13579         Reported by Stavros Passas.
13580
13581 2006-01-25  Jim Meyering  <jim@meyering.net>
13582
13583         * lib/fileblocks.c: Remove more useless parentheses.
13584         * lib/readutmp.h: Likewise.
13585
13586 2006-01-25  Bruno Haible  <bruno@clisp.org>
13587
13588         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
13589         warnings.
13590         Reported by Paul Eggert.
13591
13592 2006-01-25  Bruno Haible  <bruno@clisp.org>
13593
13594         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
13595         rid of a trap command. For Solaris sh.
13596         Reported by Mark D. Baushke <mdb@gnu.org>.
13597
13598 2006-01-24  Simon Josefsson  <jas@extundo.com>
13599
13600         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
13601         Bruno.
13602
13603 2006-01-24  Karl Berry  <karl@gnu.org>
13604
13605         * config/srclist.txt (argp-namefrob.h): sync lost.
13606
13607 2006-01-24  Jim Meyering  <jim@meyering.net>
13608
13609         * modules/openat (Files): Add lib/intprops.h.
13610         From Mark D. Baushke.
13611
13612 2006-01-24  Jim Meyering  <jim@meyering.net>
13613
13614         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
13615         Reported by Mark D. Baushke.
13616
13617 2006-01-24  Jim Meyering  <jim@meyering.net>
13618
13619         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
13620
13621 2006-01-24  Bruno Haible  <bruno@clisp.org>
13622
13623         * modules/strnlen (Maintainer): Change from glibc to all.
13624
13625 2006-01-24  Bruno Haible  <bruno@clisp.org>
13626
13627         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
13628         Patch by Paul Eggert.
13629
13630 2006-01-24  Bruno Haible  <bruno@clisp.org>
13631
13632         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
13633         already has it.
13634         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
13635         2005-11-26.
13636
13637         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
13638         'signed char' to avoid problems with the built-in _Bool type.
13639         Reported by Paul Eggert on 2005-11-26.
13640
13641 2006-01-24  Bruno Haible  <bruno@clisp.org>
13642
13643         * gnulib-tool (func_import): Avoid constructing complicated sed
13644         expressions inside backquote.
13645         Report and solution by Mark D. Baushke <mdb@gnu.org>.
13646
13647 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
13648
13649         These changes imported from libc.
13650         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
13651         test and two separate function calls.
13652         * lib/strndup.c (__strndup): Add libc_hidden_def.
13653
13654 2006-01-23  Simon Josefsson  <jas@extundo.com>
13655
13656         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
13657         Remove the test_*_SOURCES variable: automake infers it by default.
13658         * modules/tls-tests: Likewise.
13659
13660 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13661
13662         Work around porting bugs reported by Dieter in
13663         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
13664         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
13665         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
13666         Include "getopt.h" first, to check interface.
13667         (getenv): Declare only if defined HAVE_DECL_GETENV &&
13668         !HAVE_DECL_GETENV.
13669         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
13670         (__strndup): Revert to K&R-style function dfns, the glibc style.
13671         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
13672         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
13673         Include strnlen.h first, to get prototype properly.
13674         (strnlen): Renamed from __strnlen.
13675         Remove weak alias.
13676
13677 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13678
13679         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
13680
13681 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13682
13683         * config/srclist.txt: Adjust to reflect glibc reorganization.
13684         This affects only comments.
13685
13686 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13687
13688          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
13689          Reported by Bruce Korb <bkorb@gnu.org>.
13690
13691 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
13692
13693         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
13694         to pacify gcc -Wswitch-default.
13695
13696 2006-01-22  Bruno Haible  <bruno@clisp.org>
13697
13698         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
13699         temporary buffer for sprintf, take into account the precision also
13700         for 'd', 'i', 'u', 'o', 'x', 'X'.
13701
13702 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
13703
13704         * modules/argp-tests: New module
13705         * tests/test-argp.c: New file
13706         * tests/test-argp-2.sh: New file
13707
13708 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
13709
13710         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
13711         (__argp_base_name): Removed
13712         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
13713         typo.
13714         (__argp_base_name): Provide macro definition or extern declaration
13715         depending on the configuration
13716
13717 2006-01-20  Simon Josefsson  <jas@extundo.com>
13718
13719         * modules/inet_ntop (Depends-on): Depend on sys_socket.
13720
13721 2006-01-20  Simon Josefsson  <jas@extundo.com>
13722
13723         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
13724
13725 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13726
13727         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
13728         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
13729         Suggested by Bruno Haible.
13730
13731 2006-01-20  Karl Berry  <karl@gnu.org>
13732
13733         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
13734         until changes propagate, I guess.
13735
13736 2006-01-19  Simon Josefsson  <jas@extundo.com>
13737
13738         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
13739
13740 2006-01-19  Simon Josefsson  <jas@extundo.com>
13741
13742         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
13743
13744 2006-01-19  Simon Josefsson  <jas@extundo.com>
13745
13746         * gnulib-tool: Set check_PROGRAMS.
13747
13748         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
13749         modules/des-tests, modules/gc-arcfour-tests,
13750         modules/gc-arctwo-tests, modules/gc-des-tests,
13751         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
13752         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
13753         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
13754         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
13755         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
13756         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
13757         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
13758         test_*_SOURCES.
13759
13760 2006-01-18  Simon Josefsson  <jas@extundo.com>
13761
13762         * modules/socklen (Depends-on): Depend on sys_socket.
13763
13764 2006-01-18  Simon Josefsson  <jas@extundo.com>
13765
13766         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
13767         modules/des-tests, modules/gc-arcfour-tests,
13768         modules/gc-arctwo-tests, modules/gc-des-tests,
13769         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
13770         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
13771         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
13772         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
13773         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
13774         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
13775         $(EXEEXT) to automake TESTS variable, for mingw32.
13776
13777 2006-01-17  Simon Josefsson  <jas@extundo.com>
13778
13779         * modules/socklen (Include): Need sys/socket.h.
13780
13781 2006-01-17  Bruno Haible  <bruno@clisp.org>
13782
13783         * modules/ssize_t (Include): Add <sys/types.h>.
13784
13785 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
13786
13787         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
13788         it's not portable and it doesn't work with cross-compiles.
13789         Problem reported by Bruno Haible.  Fix missing-$ typo in
13790         'test "gl_cv_ignore_unused_libraries" ...' that prevented
13791         -zignore from being used with Sun's C compiler.
13792
13793 2006-01-12  Simon Josefsson  <jas@extundo.com>
13794
13795         * lib/base64.c: Fix warning, reported by Bruno Haible
13796         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
13797
13798 2006-01-12  Bruno Haible  <bruno@clisp.org>
13799
13800         * modules/ldd: New file.
13801         * build-aux/ldd.sh.in: New file.
13802         * MODULES.html.sh (Support for building libraries and executables): Add
13803         ldd.
13804
13805 2006-01-12  Bruno Haible  <bruno@clisp.org>
13806
13807         * m4/ldd.m4: New file.
13808
13809 2006-01-12  Bruno Haible  <bruno@clisp.org>
13810
13811         * gnulib-tool (func_import, func_create_testdir): Don't go into an
13812         endless loop while replacing $auxdir with build-aux.
13813
13814 2006-01-11  Simon Josefsson  <jas@extundo.com>
13815
13816         * lib/stdint_.h (SIZE_MAX): Add missing (.
13817
13818 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
13819
13820         Sync from coreutils.
13821         * lib/md5.c: Fix commentary typos.
13822         (alignof, UNALIGNED_P): No need for a GCC-specific version.
13823         * lib/md5.h (__attribute__): Remove; unused.
13824         * lib/sha1.c: Fix commentary to match md5 better.
13825         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
13826         so that we don't need to worry about alignment.  All uses changed.
13827         This merges the 2005-10-28 md5 change into sha1.
13828
13829 2006-01-11  Jim Meyering  <jim@meyering.net>
13830
13831         Sync from coreutils.
13832         * lib/md5.c (OP): Fix spacing.
13833
13834 2006-01-11  Bruno Haible  <bruno@clisp.org>
13835
13836         Ensure automatic ordering between gl_LOCK and gl_ARGP.
13837         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
13838         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
13839
13840 2006-01-11  Bruno Haible  <bruno@clisp.org>
13841
13842         Ensure automatic ordering between gl_LOCK and gl_ARGP.
13843         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
13844         the "early" section as well.
13845
13846 2006-01-11  Bruno Haible  <bruno@clisp.org>
13847
13848         Avoid "ar: no archive members specified" error on MacOS X.
13849         * gnulib-tool (func_modules_add_dummy): New function.
13850         (func_import, func_create_testdir): Invoke it.
13851
13852 2006-01-11  Bruno Haible  <bruno@clisp.org>
13853
13854         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
13855         with $auxdir in AC_CONFIG_FILES statements.
13856
13857 2006-01-11  Bruno Haible  <bruno@clisp.org>
13858
13859         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
13860         Initialize also noinst_HEADERS to empty.
13861
13862 2006-01-11  Bruno Haible  <bruno@clisp.org>
13863
13864         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
13865         variables.
13866         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
13867         autoreconf.
13868
13869 2006-01-11  Bruno Haible  <bruno@clisp.org>
13870
13871         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
13872         overridable by the user.
13873         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13874
13875 2006-01-10  Simon Josefsson  <jas@extundo.com>
13876
13877         * modules/sys_socket: New file.
13878
13879 2006-01-10  Simon Josefsson  <jas@extundo.com>
13880
13881         * m4/sys_socket_h.m4: New file.
13882
13883 2006-01-10  Simon Josefsson  <jas@extundo.com>
13884
13885         * lib/socket_.h: New file.
13886
13887 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13888
13889         * modules/readutmp (Maintainer): Add myself.
13890
13891 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13892
13893         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
13894         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
13895         People who are still concerned with buggy memcmp implementations
13896         can invoke gl_FUNC_MEMCMP themselves.
13897
13898 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13899
13900         * lib/regex_internal.h (BITSET_WORD_BITS):
13901         Work around a bug in 64-bit PGC (before version 6.1-2), where the
13902         preprocessor mishandles large unsigned values as if they were signed.
13903         Problem reported by Claudio Fontana in
13904         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
13905
13906 2006-01-10  Jim Meyering  <jim@meyering.net>
13907
13908         Avoid the double-free (first in fts_read, second in fts_close) that
13909         would occur when an `active' directory is made inaccessible (e.g.,
13910         via chmod a-x) during a traversal.
13911         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
13912         before returning.  Reproduce this failure by
13913         mkdir -p a/b; cd a; chmod a-x . b
13914         Reported by Stavros Passas.
13915
13916         Sync from coreutils.
13917         * lib/sha1.c: Tweak grammar in a comment.
13918
13919 2006-01-10  Jim Meyering  <jim@meyering.net>
13920
13921         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
13922         Patch by Joerg Sonnenberger.
13923
13924 2006-01-10  Bruno Haible  <bruno@clisp.org>
13925
13926         * modules/readutmp: Depend on module free.
13927         * modules/strtok_r: Depend on module restrict.
13928
13929 2006-01-10  Bruno Haible  <bruno@clisp.org>
13930
13931         * modules/gettext (configure.ac): Add an invocation of
13932         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
13933
13934 2006-01-10  Bruno Haible  <bruno@clisp.org>
13935
13936         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
13937         Reported by Werner Lemberg <wl@gnu.org>.
13938
13939 2006-01-10  Bruno Haible  <bruno@clisp.org>
13940
13941         * lib/localcharset.c: Update from GNU gettext.
13942
13943 2006-01-10  Bruno Haible  <bruno@clisp.org>
13944
13945         * lib/argp.h (__const): Remove macro. Use const instead.
13946         * lib/argp-fmtstream.h (__const): Likewise.
13947         * lib/glob_.h (__const): Remove macro.
13948         * lib/glob-libc.h: Use const instead of __const.
13949
13950 2006-01-10  Bruno Haible  <bruno@clisp.org>
13951
13952         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
13953         variable.
13954         Needed to avoid an automake error regarding the 'gettext' module.
13955
13956 2006-01-09  Simon Josefsson  <jas@extundo.com>
13957
13958         * modules/inet_ntop (Depends-on): Add restrict.
13959
13960 2006-01-09  Simon Josefsson  <jas@extundo.com>
13961
13962         * modules/gc-rijndael-tests (License): Put under LGPL.
13963
13964         * modules/gc-des-tests (License): Likewise.
13965
13966         * modules/gc-arcfour-tests (License): Likewise.
13967
13968         * modules/gc-arctwo-tests (License): Likewise.
13969
13970         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
13971
13972         * modules/gc-hmac-sha1-tests (Files): Likewise.
13973
13974         * modules/gc-hmac-md5-tests (License): Likewise.
13975
13976         * modules/gc-sha1-tests (License): Likewise.
13977
13978         * modules/gc-md5-tests (License): Likewise.
13979
13980         * modules/gc-md4-tests (License): Likewise.
13981
13982         * modules/gc-md2-tests (License): Likewise.
13983
13984         * modules/gc-tests (License): Likewise.
13985
13986         * modules/des-tests (License): Likewise.
13987
13988         * modules/md4-tests (License): Likewise.
13989
13990         * modules/md2-tests (License): Likewise.
13991
13992 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13993
13994         Sync from coreutils:
13995
13996         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
13997         * modules/lib-ignore: New file.
13998         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
13999         chdir-safer.m4, lchmod.m4.
14000         * modules/openat: Add mkdirat.c, openat-priv.h.
14001
14002 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14003
14004         Sync from coreutils.
14005         * m4/lib-ignore.m4: New file.
14006         * m4/lchmod.m4: New file.
14007
14008 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14009
14010         Sync from coreutils.
14011         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
14012         for write access: POSIX says that must fail.
14013         * lib/fts.c (diropen): Likewise.
14014         * lib/save-cwd.c (save_cwd): Likewise.
14015         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
14016         well, for minor improvements on hosts that lack O_DIRECTORY.
14017         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
14018         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
14019         Fall back on chown if open failed with EACCES.
14020
14021         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
14022         Report an error at compile-time if only a 1-second nominal clock
14023         resolution is found.
14024
14025         * lib/lchmod.h: New file.
14026         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
14027         (make_dir_parents): Use lchown rather than chown, and
14028         lchmod rather than chmod.
14029
14030         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
14031         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
14032         "proc" reported by n0dalus.
14033
14034         * lib/mountlist.c: Include <limits.h>.
14035         (dev_from_mount_options)
14036         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
14037         New function.  It no longer assumes "dev=" has the System V meaning
14038         on Linux (since it doesn't).  It also parses "dev=" more carefully.
14039         (read_file_system_list)
14040         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
14041         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
14042         dev= in that case.
14043
14044         * lib/posixtm.h (PDS_PRE_2000): New macro.
14045         * lib/posixtm.c (year): Arg is now syntax_bits rather than
14046         allow_century.  All usages changed.  Reject dates outside the range
14047         1969-1999 if PDS_PRE_2000 is used.
14048
14049 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14050
14051         Sync from coreutils.
14052         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
14053         (Time of day items): Mention the possibility of leap seconds.
14054         Problem reported by Dr. David Alan Gilbert.
14055
14056 2006-01-09  Jim Meyering  <jim@meyering.net>
14057
14058         Sync from coreutils.
14059
14060         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
14061
14062         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
14063
14064         * lib/modechange.c (mode_compile): Reject an invalid mode string
14065         that starts with an octal digit.  From Andreas Gruenbacher.
14066
14067         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
14068         and dup to open_safer and dup_safer, respectively.
14069         (openat_permissive): Fix typo in comment.
14070
14071         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
14072         "gettext.h"; either no longer needed or are guaranteed by openat.h.
14073         (_): Remove; no longer needed.
14074         (openat): Renamed from rpl_openat; no need for rpl_openat
14075         since openat.h renames openat for us.
14076         Replace most of the body with a call to openat_permissive,
14077         to avoid duplicate code.
14078         Port to (probably hypothetical) environments were mode_t is
14079         wider than int.
14080         (openat_permissive): Require mode arg, so that we can check
14081         types better.  Put it just after flags.  Change cwd failure
14082         indicator from pointer-to-bool to pointer-to-errno-value.
14083         All callers changed.
14084         Invoke openat_save_fail and/or openat_restore_fail if
14085         cwd_errno is null, so that openat can call us.
14086         (openat_permissive, fdopendir, fstatat, unlinkat):
14087         Simplify errno handling to avoid some duplicate code,
14088         as it's OK to set errno on success.
14089         * lib/openat.h: Revamp code so that function macros depend on
14090         __OPENAT_PREFIX only, not also on AT_FDCWD.
14091         (openat_ro): Remove.  Caller changed to use openat_permissive.
14092         (openat_permissive): Now a macro, if not a function.
14093         (openat_restore_fail, openat_save_fail): Now always functions,
14094         since mkdirat needs them even if __OPENAT_PREFIX is defined.
14095
14096         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
14097         and openat.c.
14098         * lib/mkdirat.c: Include openat-priv.h.
14099         Remove definitions of macros defined therein.
14100         * lib/openat.c: Likewise.
14101
14102         * lib/mkdirat.c (mkdirat): New file and function.
14103         * lib/openat.h (mkdirat): Declare.
14104
14105         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
14106
14107         * lib/openat.h (openat_permissive): Declare.
14108         (openat_ro): Define.
14109
14110         * lib/openat.c (EXPECTED_ERRNO): New macro.
14111         (openat_permissive): New function -- used in remove.c rewrite.
14112         (all functions): Set errno just before returning, only if there
14113         was an actual failure.
14114         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
14115
14116         Emulate openat-family functions using Linux's procfs, if possible.
14117         Idea and some code based on Ulrich Drepper's glibc changes.
14118
14119         * lib/openat.c: (BUILD_PROC_NAME): New macro.
14120         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
14121         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
14122         before falling back on save_cwd and restore_cwd.
14123         (fdopendir, fstatat, unlinkat): Likewise.
14124
14125         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
14126         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
14127
14128         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
14129         as second argument to va_arg.  Otherwise, some versions of gcc
14130         warn that `if this code is reached, the program will abort'.
14131
14132 2006-01-09  Jim Meyering  <jim@meyering.net>
14133
14134         Sync from coreutils.
14135         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
14136         Require openat-priv.h.
14137
14138 2006-01-09  Bruno Haible  <bruno@clisp.org>
14139
14140         * modules/strnlen (Include): Use strnlen.h.
14141
14142 2006-01-09  Bruno Haible  <bruno@clisp.org>
14143
14144         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
14145
14146 2006-01-09  Bruno Haible  <bruno@clisp.org>
14147
14148         * lib/sysexit_.h (EX_OK): New macro.
14149         Suggested by Martin Lambers <marlam@marlam.de>.
14150
14151 2006-01-09  Bruno Haible  <bruno@clisp.org>
14152
14153         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
14154         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
14155
14156 2006-01-09  Bruno Haible  <bruno@clisp.org>
14157
14158         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
14159         numbers.
14160
14161 2006-01-09  Bruno Haible  <bruno@clisp.org>
14162
14163         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
14164         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
14165         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
14166         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
14167
14168 2006-01-09  Bruno Haible  <bruno@clisp.org>
14169
14170         * build-aux/javacomp.sh.in: New file, moved from lib/.
14171         * modules/javacomp-script (Files): Update.
14172         (configure.ac): Add AC_CONFIG_FILES invocation.
14173         (EXTRA_DIST): Remove variable.
14174
14175         * build-aux/javaexec.sh.in: New file, moved from lib/.
14176         * modules/javaexec (Files): Update.
14177         (configure.ac): Add AC_CONFIG_FILES invocation.
14178         (EXTRA_DIST): Remove javaexec.sh.in.
14179
14180         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
14181         * modules/csharpcomp-script (Files): Update.
14182         (configure.ac): Add AC_CONFIG_FILES invocation.
14183         (EXTRA_DIST): Remove variable.
14184
14185         * build-aux/csharpexec.sh.in: New file, moved from lib/.
14186         * modules/csharpexec (Files): Update.
14187         (configure.ac): Add AC_CONFIG_FILES invocation.
14188         (EXTRA_DIST): Remove csharpexec.sh.in.
14189
14190 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14191
14192         Sync from coreutils.
14193
14194         Add POSIX ACL support
14195         * lib/acl.h (copy_acl, set_acl): Add declarations.
14196         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
14197         systems other than Linux.
14198         (chmod_or_fchmod): New function: use fchmod when possible,
14199         and chmod otherwise.
14200         (file_has_acl): Add a POSIX ACL implementation, with a
14201         Linux-specific subcase.
14202         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
14203         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
14204         acls are unsupported.
14205         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
14206         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
14207         are unsupported.
14208
14209 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14210
14211         Sync from coreutils.
14212         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
14213
14214 2006-01-07  Bruno Haible  <bruno@clisp.org>
14215
14216         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
14217         gl_EARLY.
14218
14219 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14220
14221         * lib/strftime.c (tzname): Don't declare if it is already #defined.
14222         Problem reported for Mingw by Mark Junker.
14223
14224 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14225
14226         * README: Gnulib normally doesn't generate a tarball.
14227
14228 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
14229
14230         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
14231         long int, not int, for nanosecond counts, so that people who are
14232         used to POSIX struct timespec won't be surprised.  Reported by Jim
14233         Meyering.
14234
14235 2005-12-28  Bruno Haible  <bruno@clisp.org>
14236
14237         * build-aux/config.rpath: Update from GNU gettext.
14238
14239 2005-12-16  Jim Meyering  <jim@meyering.net>
14240
14241         * modules/fprintftime: New module.
14242         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
14243
14244 2005-12-16  Jim Meyering  <jim@meyering.net>
14245
14246         * m4/fprintftime.m4: New file.
14247
14248 2005-12-16  Jim Meyering  <jim@meyering.net>
14249
14250         * lib/fprintftime.c, lib/fprintftime.h: New files.
14251
14252 2005-12-15  Simon Josefsson  <jas@extundo.com>
14253
14254         * modules/socklen (configure.ac): Fix M4 macro name, to align with
14255         new m4/socklen.m4.
14256
14257 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14258
14259         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
14260         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
14261
14262 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14263
14264         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
14265         * lib/argp-help.c (fill_in_uparams): Check if the constructed
14266         struct uparams is valid. Fall back to the default values if it is
14267         not.
14268
14269 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14270
14271         * modules/argp (Files): Add argp-pin.c
14272         (Depends-on): dirname
14273         (lib_SOURCES): Add argp-pin.c
14274
14275 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14276
14277         * m4/argp.m4:  Check if program_invocation_name and
14278         program_invocation_short_name are declared and define appropriate
14279         macros if they are not.
14280
14281 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14282
14283         * lib/argp-help.c (__argp_base_name): New function
14284         (__argp_short_program_name): Rewrite using __argp_base_name
14285         * lib/argp-namefrob.h: Define program_invocation_name and
14286         program_invocation_short_name if requested
14287         (__argp_base_name): Add prototype
14288         * lib/argp-parse.c (argp_def): Use gettext wrappers
14289         (argp_default_parser): Use __argp_base_name
14290         * lib/argp-pin.c: New file. Defines program_invocation_name and
14291         program_invocation_short_name on systems that lack them.
14292
14293 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14294
14295         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
14296         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14297         porting problem reported by Georg Schwarz in
14298         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14299
14300 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14301
14302         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
14303         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14304         porting problem reported by Georg Schwarz in
14305         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14306
14307 2005-12-05  Bruno Haible  <bruno@clisp.org>
14308
14309         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
14310         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
14311         Reported by Mark Junker <mjscod@gmx.de>.
14312
14313 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
14314
14315         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
14316         Use implementation from Albert Chin, with some
14317         comments/corrections by Stepan Kasal and myself.
14318
14319 2005-12-02  Bruno Haible  <bruno@clisp.org>
14320
14321         * gnulib-tool (func_import): Accept GPLed build tool modules when
14322         --lgpl is given.
14323         * modules/csharpcomp-script: New file.
14324         * modules/csharpcomp: Depend on it.
14325         * modules/javacomp-script: New file.
14326         * modules/javacomp: Depend on it.
14327         Suggested by Simon Josefsson.
14328
14329 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
14330
14331         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
14332         statement, to work around an HP-UX 10.20 compiler bug reported by
14333         Peter O'Gorman.
14334
14335 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14336
14337         * modules/savedir (Depends-on): Add openat.
14338
14339 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14340
14341         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
14342         (uintmax_t) [defined uintmax_t]: Do not declare.
14343         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
14344         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
14345         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
14346         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
14347         sake of portability to weird hosts that C allows (though we don't
14348         know of any practical examples).
14349
14350         * lib/savedir.h (fdsavedir): New decl.
14351         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
14352         contains most of the former guts of savedir.
14353         (savedir): Use savedirstream.
14354         Include "openat.h".
14355
14356 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14357
14358         * modules/obstack (Files): Add m4/ulonglong.m4.
14359         Problem reported by Davide Angelocola.
14360
14361 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
14362
14363         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
14364         coreutils no longer futzes with rounding modes.
14365
14366 2005-11-14  Jim Meyering  <jim@meyering.net>
14367
14368         * lib/mkstemp-safer.c: Include <config.h>, required for possible
14369         replacement of mkstemp.
14370
14371 2005-11-10  Simon Josefsson  <jas@extundo.com>
14372
14373         * lib/readline.c: Remove EOL.
14374
14375 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14376
14377         * modules/gethrxtime (Depends-on): Add gettime.
14378
14379 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14380
14381         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
14382         or gettimeofday; no longer needed.
14383
14384 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14385
14386         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
14387         time business.
14388         (gethrxtime) [! (HAVE_NANOUPTIME
14389         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
14390         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
14391         our own approximation.
14392
14393 2005-11-08  Eric Blake  <ebb9@byu.net>
14394
14395         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14396
14397 2005-11-08  Eric Blake  <ebb9@byu.net>
14398
14399         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14400
14401 2005-11-04  Bruno Haible  <bruno@clisp.org>
14402
14403         * gnulib-tool: Implement --update mode.
14404
14405 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14406
14407         Fix porting problem reported by Theodoros V. Kalamatianos.
14408         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
14409         Don't assume that futimes failing means we must fail.
14410
14411 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14412
14413         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
14414         variables to suggest the intended function of the PATH_MAX check.
14415
14416 2005-10-30  Kean Johnston  <jkj@sco.com>
14417
14418         Trivial changes to support SCO systems.
14419         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
14420         as PATH_MAX.
14421         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
14422         where __ptr is null when no I/O is pending.
14423
14424 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14425
14426         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
14427         leave errno alone.  Problem reported by Dmitry V. Levin.
14428
14429 2005-10-28  Simon Josefsson  <jas@extundo.com>
14430
14431         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
14432         Test more.
14433
14434         * tests/test-gc-md2.c, tests/test-md2.c: New files.
14435
14436         * modules/md2, modules/md2-tests: New files.
14437
14438 2005-10-28  Simon Josefsson  <jas@extundo.com>
14439
14440         * m4/inet_ntop.m4: More tests.
14441
14442         * m4/gc-md2.m4, md2.m4: New file.
14443
14444 2005-10-28  Simon Josefsson  <jas@extundo.com>
14445
14446         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
14447         "restrict" keywords, as per POSIX.  Protect the function
14448         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
14449         Don't use K&R prototypes.  Check the sprintf return values.
14450         Re-define EAFNOSUPPORT if not present.  Indent.
14451
14452         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
14453         suggested by Bruno Haible <bruno@clisp.org>.
14454
14455         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
14456
14457         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
14458
14459         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
14460         libgcrypt).
14461
14462         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
14463
14464         * lib/md2.h, lib/md2.c: New files.
14465
14466 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
14467
14468         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
14469         errno alone.  Problem reported by Frederic Jolliton.
14470
14471 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
14472
14473         * modules/verify (License): Change from GPL to LGPL.  This is a
14474         tiny module and there are apparently near-equivalents that are
14475         under the BSD license.
14476
14477 2005-10-24  Simon Josefsson  <jas@extundo.com>
14478
14479         * modules/sha1: Relicense to LGPL.
14480
14481 2005-10-24  Simon Josefsson  <jas@extundo.com>
14482
14483         * lib/md4.h: Shrink buffer size, now that we changed the type.
14484
14485 2005-10-23  Simon Josefsson  <jas@extundo.com>
14486
14487         * gnulib-tool (func_import): Fix --tests-base.
14488
14489 2005-10-22  Simon Josefsson  <jas@extundo.com>
14490
14491         * modules/arcfour (Depends-on): Need stdint.
14492
14493 2005-10-22  Simon Josefsson  <jas@extundo.com>
14494
14495         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
14496         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
14497
14498 2005-10-22  Simon Josefsson  <jas@extundo.com>
14499
14500         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
14501         suggested by Bruno Haible <bruno@clisp.org>.
14502
14503 2005-10-22  Simon Josefsson  <jas@extundo.com>
14504
14505         * lib/crc.h: Include stddef.h, for size_t.
14506
14507 2005-10-22  Simon Josefsson  <jas@extundo.com>
14508
14509         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
14510         arcfour_context struct (simplify test vector testing in GNU
14511         Shishi).
14512
14513 2005-10-21  Simon Josefsson  <jas@extundo.com>
14514
14515         * modules/des, modules/des-tests: New files.
14516
14517         * modules/gc-des, modules/gc-des-tests: New files.
14518
14519         * tests/test-des.c, tests/test-gc-des.c: New file.
14520
14521 2005-10-21  Simon Josefsson  <jas@extundo.com>
14522
14523         * modules/arctwo, modules/arctwo-tests: New files.
14524
14525         * tests/test-arctwo.c: New file.
14526
14527         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
14528
14529         * tests/test-gc-arctwo.c: New file.
14530
14531 2005-10-21  Simon Josefsson  <jas@extundo.com>
14532
14533         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
14534         Bruno Haible <bruno@clisp.org>.
14535
14536         * m4/gc-des.m4: New file.
14537
14538 2005-10-21  Simon Josefsson  <jas@extundo.com>
14539
14540         * m4/arctwo.m4: New file.
14541
14542         * m4/gc-arctwo.m4: New file.
14543
14544 2005-10-21  Simon Josefsson  <jas@extundo.com>
14545
14546         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
14547         block.
14548
14549 2005-10-21  Simon Josefsson  <jas@extundo.com>
14550
14551         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
14552         <bruno@clisp.org>.
14553
14554         * lib/hmac-sha1.c (hmac_sha1): Likewise.
14555
14556         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
14557         Bruno Haible <bruno@clisp.org>.
14558
14559         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
14560         <bruno@clisp.org>.
14561
14562 2005-10-21  Simon Josefsson  <jas@extundo.com>
14563
14564         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
14565
14566 2005-10-21  Simon Josefsson  <jas@extundo.com>
14567
14568         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
14569
14570 2005-10-21  Simon Josefsson  <jas@extundo.com>
14571
14572         * lib/des.h, lib/des.c: New files.
14573
14574         * lib/gc-gnulib.c: Support DES.c
14575
14576 2005-10-21  Simon Josefsson  <jas@extundo.com>
14577
14578         * lib/arctwo.h, lib/arctwo.c: New files.
14579
14580         * lib/gc-gnulib.c: Support ARCTWO.
14581
14582 2005-10-21  Simon Josefsson  <jas@extundo.com>
14583
14584         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
14585         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14586
14587 2005-10-21  Simon Josefsson  <jas@extundo.com>
14588
14589         * gnulib-tool (func_import, func_create_testdir): Define automake
14590         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
14591         Makefile.am snippet),
14592         suggested by Bruno Haible <bruno@clisp.org>.
14593
14594         * modules/gc (Makefile.am): Use it.
14595
14596 2005-10-21  Bruno Haible  <bruno@clisp.org>
14597
14598         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
14599         patch.
14600
14601 2005-10-19  Simon Josefsson  <jas@extundo.com>
14602
14603         * tests/test-gc-rijndael.c: New file.
14604
14605         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
14606
14607 2005-10-19  Simon Josefsson  <jas@extundo.com>
14608
14609         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
14610         interface too.
14611
14612 2005-10-19  Simon Josefsson  <jas@extundo.com>
14613
14614         * tests/test-gc-arcfour.c: New file.
14615
14616         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
14617
14618 2005-10-19  Simon Josefsson  <jas@extundo.com>
14619
14620         * modules/gc-md4, modules/gc-md4-tests: New file.
14621
14622         * tests/test-gc-md4.c: New file.
14623
14624 2005-10-19  Simon Josefsson  <jas@extundo.com>
14625
14626         * m4/gc-md4.m4: New file.
14627
14628 2005-10-19  Simon Josefsson  <jas@extundo.com>
14629
14630         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
14631         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
14632         <kasal@ucw.cz>.
14633
14634 2005-10-19  Simon Josefsson  <jas@extundo.com>
14635
14636         * m4/gc-arcfour.m4: New file.
14637
14638         * m4/gc-rijndael.m4: New file.
14639
14640 2005-10-19  Simon Josefsson  <jas@extundo.com>
14641
14642         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
14643
14644 2005-10-19  Simon Josefsson  <jas@extundo.com>
14645
14646         * lib/gc-gnulib.c: Support ARCFOUR.
14647
14648 2005-10-19  Simon Josefsson  <jas@extundo.com>
14649
14650         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
14651         support.
14652
14653         * lib/gc.h: Add ECB enum type.
14654
14655         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
14656
14657 2005-10-18  Simon Josefsson  <jas@extundo.com>
14658
14659         * tests/test-md5.c: New file.
14660
14661         * modules/md5-tests: New file.
14662
14663 2005-10-18  Simon Josefsson  <jas@extundo.com>
14664
14665         * tests/test-md4.c: New file.
14666
14667         * modules/md4, modules/md4-tests: New files.
14668
14669 2005-10-18  Simon Josefsson  <jas@extundo.com>
14670
14671         * m4/md4.m4: New file.
14672
14673 2005-10-18  Simon Josefsson  <jas@extundo.com>
14674
14675         * lib/md4.h, lib/md4.c: New files, based on md5.?.
14676
14677 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
14678
14679         * gnulib-tool (func_create_testdir): Omit the second check whether
14680         BUILT_SOURCES in nonempty.
14681
14682 2005-10-17  Simon Josefsson  <jas@extundo.com>
14683
14684         * tests/test-rijndael.c: New file.
14685
14686 2005-10-17  Simon Josefsson  <jas@extundo.com>
14687
14688         * modules/sha1: Depend on stdint instead of md5.
14689
14690         * modules/md5: Depend on stdint, remove uint32_t.
14691
14692 2005-10-17  Simon Josefsson  <jas@extundo.com>
14693
14694         * modules/gc-sha1-tests: New file.
14695
14696         * tests/test-gc-sha1.c: New file.
14697
14698 2005-10-17  Simon Josefsson  <jas@extundo.com>
14699
14700         * m4/md5.m4: Remove call to uint32_t.m4.
14701
14702 2005-10-17  Simon Josefsson  <jas@extundo.com>
14703
14704         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
14705
14706         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
14707         md5.h.
14708
14709         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
14710
14711         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
14712
14713 2005-10-17  Simon Josefsson  <jas@extundo.com>
14714
14715         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
14716
14717 2005-10-17  Simon Josefsson  <jas@extundo.com>
14718
14719         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
14720
14721 2005-10-17  Simon Josefsson  <jas@extundo.com>
14722
14723         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
14724
14725         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
14726
14727 2005-10-17  Bruno Haible  <bruno@clisp.org>
14728
14729         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
14730         that it can also be used in a test.
14731
14732 2005-10-16  Bruno Haible  <bruno@clisp.org>
14733
14734         * gnulib-tool (func_emit_tests_Makefile_am): Also define
14735         TESTS_ENVIRONMENT, so that individual tests can augment it.
14736
14737         * gnulib-tool (func_create_testdir): Use an intermediate target for
14738         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
14739         macros, like $(ALLOCA_H), which cannot be passed through the command
14740         line.
14741
14742 2005-10-15  Simon Josefsson  <jas@extundo.com>
14743
14744         * modules/rijndael-tests: New file.
14745
14746         * modules/rijndael: New file.
14747
14748 2005-10-15  Simon Josefsson  <jas@extundo.com>
14749
14750         * m4/rijndael.m4: New file.
14751
14752 2005-10-15  Simon Josefsson  <jas@extundo.com>
14753
14754         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
14755
14756         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
14757
14758 2005-10-14  Simon Josefsson  <jas@extundo.com>
14759
14760         * tests/test-arcfour.c: New file.
14761
14762         * modules/arcfour, modules/arcfour-tests: New files.
14763
14764 2005-10-14  Simon Josefsson  <jas@extundo.com>
14765
14766         * m4/arcfour.m4: New file.
14767
14768 2005-10-14  Simon Josefsson  <jas@extundo.com>
14769
14770         * lib/arcfour.h, lib/arcfour.c: New files.
14771
14772 2005-10-14  Roland McGrath  <roland@redhat.com>
14773
14774         Import from libc.  [BZ #1331]
14775         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
14776         macro argument.
14777         Reported by Matej Vela <vela@debian.org>.
14778
14779 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
14780
14781         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
14782         include <wchar.h>; no longer needed.
14783
14784 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
14785
14786         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
14787
14788 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
14789         and  Ulrich Drepper  <drepper@redhat.com>
14790
14791         Import from libc.
14792         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
14793         instead of inline stream orientation test and two separate
14794         function calls.  Pay no attention to USE_IN_LIBIO.
14795
14796 2005-10-13  Simon Josefsson  <jas@extundo.com>
14797
14798         * modules/gc-hmac-md5-tests: New file.
14799
14800         * tests/test-gc-hmac-sha1.c: New file.
14801
14802         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
14803
14804         * modules/gc-hmac-md5-tests: New file.
14805
14806         * tests/test-gc-md5.c: New file.
14807
14808         * modules/gc-md5-tests: New file.
14809
14810 2005-10-13  Simon Josefsson  <jas@extundo.com>
14811
14812         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
14813         Move memory allocation outside of loop.
14814
14815 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
14816
14817         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
14818         intermediate directory is in a read-only file system.  Problem
14819         reported by Eric Blake.
14820
14821 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
14822
14823         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
14824
14825 2005-10-12  Simon Josefsson  <jas@extundo.com>
14826
14827         * tests/test-hmac-sha1.c: New file.
14828
14829         * modules/hmac-sha1-tests: New file.
14830
14831         * modules/hmac-sha1: New file.
14832
14833 2005-10-12  Simon Josefsson  <jas@extundo.com>
14834
14835         * modules/gc-sha1: New file.
14836
14837 2005-10-12  Simon Josefsson  <jas@extundo.com>
14838
14839         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
14840
14841         * tests/test-gc-pbkdf2-sha1.c: New file.
14842
14843 2005-10-12  Simon Josefsson  <jas@extundo.com>
14844
14845         * modules/gc-md5, modules/gc-hmac-md5: New files.
14846
14847         * modules/gc (Files): Remove md5, memxor and hmac files.
14848
14849 2005-10-12  Simon Josefsson  <jas@extundo.com>
14850
14851         * m4/gc-pbkdf2-sha1.m4: New file.
14852
14853         * m4/gc-hmac-sha1.m4: New file.
14854
14855         * m4/gc-sha1: New file.
14856
14857         * m4/hmac-sha1.m4: New file.
14858
14859 2005-10-12  Simon Josefsson  <jas@extundo.com>
14860
14861         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
14862
14863         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
14864
14865 2005-10-12  Simon Josefsson  <jas@extundo.com>
14866
14867         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
14868         suggested by Bruno Haible <bruno@clisp.org>.
14869
14870 2005-10-12  Simon Josefsson  <jas@extundo.com>
14871
14872         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
14873
14874 2005-10-12  Simon Josefsson  <jas@extundo.com>
14875
14876         * lib/gc-pbkdf2-sha1.c: New file.
14877
14878         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
14879
14880 2005-10-12  Simon Josefsson  <jas@extundo.com>
14881
14882         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
14883
14884         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
14885
14886 2005-10-12  Simon Josefsson  <jas@extundo.com>
14887
14888         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
14889         GC_USE_HMAC_MD5, respectively.
14890
14891         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
14892         (gc_md5): Fix typo.
14893
14894         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
14895
14896         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
14897
14898         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
14899
14900 2005-10-12  Bruno Haible  <bruno@clisp.org>
14901
14902         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
14903         Reported by Stepan Kasal <kasal@ucw.cz>.
14904
14905 2005-10-11  Simon Josefsson  <jas@extundo.com>
14906
14907         * tests/test-crc.c: New file.
14908
14909         * modules/crc, modules/crc-tests: New files.
14910
14911 2005-10-11  Simon Josefsson  <jas@extundo.com>
14912
14913         * m4/crc.m4: New file.
14914
14915 2005-10-11  Simon Josefsson  <jas@extundo.com>
14916
14917         * lib/gc.h: Add gc_hash and gc_hash_buffer.
14918
14919         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
14920
14921         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
14922
14923 2005-10-11  Simon Josefsson  <jas@extundo.com>
14924
14925         * lib/crc.h, lib/crc.c: New files.
14926
14927         * lib/gc.h (gc_hash_buffer): Add doc.
14928
14929 2005-10-11  Bruno Haible  <bruno@clisp.org>
14930
14931         * modules/c-strcasestr: New file.
14932         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
14933
14934 2005-10-11  Bruno Haible  <bruno@clisp.org>
14935
14936         * modules/c-strcase: New file.
14937         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
14938
14939 2005-10-11  Bruno Haible  <bruno@clisp.org>
14940
14941         * lib/strcasecmp.c: Include limits.h.
14942         (strcasecmp): Avoid integer overflow on exotic platforms.
14943         * lib/strncasecmp.c: Include limits.h.
14944         (strncasecmp): Avoid integer overflow on exotic platforms.
14945         Reported by Paul Eggert.
14946
14947 2005-10-11  Bruno Haible  <bruno@clisp.org>
14948
14949         * lib/c-strcasestr.h: New file, from GNU gettext.
14950         * lib/c-strcasestr.c: New file, from GNU gettext.
14951
14952 2005-10-11  Bruno Haible  <bruno@clisp.org>
14953
14954         * lib/c-strcase.h: New file, from GNU gettext.
14955         * lib/c-strcasecmp.c: New file, from GNU gettext.
14956         * lib/c-strncasecmp.c: New file, from GNU gettext.
14957
14958 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14959
14960         * modules/mempcpy (License): GPL -> LGPL.
14961         * modules/strchrnul (License): Likewise.
14962         * modules/sysexits (License): Likewise.
14963
14964 2005-10-08  Simon Josefsson  <jas@extundo.com>
14965
14966         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
14967
14968 2005-10-07  Simon Josefsson  <jas@extundo.com>
14969
14970         * m4/memxor.m4: Remove gl_C_RESTRICT call.
14971
14972 2005-10-06  Simon Josefsson  <jas@extundo.com>
14973
14974         * tests/test-hmac-md5.c: New file.
14975
14976         * modules/hmac-md5-tests: New file.
14977
14978         * modules/hmac-md5: New file.
14979
14980 2005-10-06  Simon Josefsson  <jas@extundo.com>
14981
14982         * m4/hmac-md5.m4: New file.
14983
14984         * m4/memxor.m4: Require gl_C_RESTRICT.
14985
14986 2005-10-06  Simon Josefsson  <jas@extundo.com>
14987
14988         * lib/memxor.c (memxor): Avoid casts and warnings.
14989
14990 2005-10-06  Simon Josefsson  <jas@extundo.com>
14991
14992         * lib/hmac-md5.c: New file.
14993
14994         * lib/hmac.h: New file.
14995
14996 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14997
14998         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
14999         promotes to int, not unsigned int, to catch the AIX 5.3
15000         compiler bug.
15001
15002 2005-10-05  Simon Josefsson  <jas@extundo.com>
15003
15004         * modules/memxor: New file.
15005
15006         * modules/iconv (Files): Move config.rpath to havelib, it is used
15007         there.
15008
15009         * modules/havelib (Files): Add config.rpath.
15010
15011 2005-10-05  Simon Josefsson  <jas@extundo.com>
15012
15013         * m4/memxor.m4: New file.
15014
15015 2005-10-05  Simon Josefsson  <jas@extundo.com>
15016
15017         * lib/memxor.c (memxor): Fix compiler error.
15018
15019         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
15020         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
15021
15022         * lib/memxor.h, lib/memxor.c: New files.
15023
15024         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
15025         we assume all systems have it, suggested by Jim Meyering
15026         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
15027         any systems lack sys/socket.h; mingw32 is known to lack it, but we
15028         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
15029         same reasons.
15030
15031 2005-10-05  Simon Josefsson  <jas@extundo.com>
15032
15033         * config/srclist.txt: Add glibc bug 1423 for md5.h.
15034
15035 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
15036
15037         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
15038         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
15039         needed, since the source code now assumes these .h files.
15040
15041 2005-10-05  Derek Price  <derek@ximbiot.com>
15042
15043         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
15044
15045 2005-10-05  Bruno Haible  <bruno@clisp.org>
15046
15047         * modules/stdint (License): Change to LGPL.
15048
15049 2005-10-04  Simon Josefsson  <jas@extundo.com>
15050
15051         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
15052         D. Baushke" <mdb@gnu.org>.
15053
15054 2005-10-04  Bruno Haible  <bruno@clisp.org>
15055
15056         * lib/verify.h (verify_true): Provide alternative definition for C++.
15057
15058 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
15059
15060         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
15061         (SSIZE_MAX): New macro, if not already defined.
15062         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
15063         than 2 GiB.
15064
15065 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15066
15067         Sync from coreutils.
15068         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
15069         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
15070         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
15071         ULLONG_MAX doesn't work with 2.7.2.1.
15072
15073 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15074
15075         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
15076         From Ben Pfaff.
15077
15078         * modules/exclude (Depends-on): Depend on verify.
15079         * modules/strtoimax (Depends-on): Likewise.
15080         * modules/utimecmp (Depends-on): Likewise.
15081
15082 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15083
15084         * lib/exclude.c: Include verify.h.
15085         (verify): Remove.  All callers changed to use verify.h's version.
15086         * lib/strtoimax.c: Likewise.
15087         * lib/utimecmp.c: Likewis.e
15088
15089         Sync from coreutils.
15090         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
15091         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
15092         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
15093         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
15094         bother returning ENOSYS if settimeofday or stime fails; just let
15095         them return whatever errno they want to return.
15096         * lib/utimens.c: Include unistd.h, for dup2.
15097         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
15098         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
15099
15100 2005-10-02  Jim Meyering  <jim@meyering.net>
15101
15102         Sync from coreutils.
15103         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
15104         from glibc-2.2.5 that fails for read-only files.
15105
15106 2005-10-02  Jim Meyering  <jim@meyering.net>
15107
15108         Sync from coreutils.
15109         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
15110         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
15111         `#if HAVE_CONFIG_H'.
15112         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
15113         Remove AT_FDCWD test.
15114         Do not consume the fd unless successful.
15115         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
15116         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
15117         block, so that we don't even try to compile it if settimeofday is
15118         available.  This works around a compilation failure on OSF1 V5.1,
15119         due to stime requiring a `long int*' while tv_sec is `int'.
15120
15121 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
15122
15123         Sync from coreutils.
15124         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
15125         against `yes', rather than just testing for nonempty.
15126
15127 2005-10-01  Simon Josefsson  <jas@extundo.com>
15128
15129         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
15130         and Darwin.
15131
15132         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
15133         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
15134         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
15135         freeaddrinfo and gai_strerror are declared by the POSIX headers.
15136         Check if struct addrinfo is declared.
15137
15138 2005-10-01  Simon Josefsson  <jas@extundo.com>
15139
15140         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
15141         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
15142         AI_* and EAI_* definitions.  Protect function declarations.
15143
15144 2005-10-01  Jim Meyering  <jim@meyering.net>
15145
15146         Sync from coreutils.
15147
15148         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
15149         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
15150         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
15151         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15152         in the inet and nsl libraries.  Required on Solaris 5.7.
15153
15154 2005-10-01  Jim Meyering  <jim@meyering.net>
15155
15156         Sync from coreutils.
15157         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15158         in the inet and nsl libraries.  Required on Solaris 5.7.
15159
15160 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
15161
15162         * lib/getdelim.c (getdelim): Remove unused variables.
15163
15164 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
15165
15166         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
15167         so that the code works even with ancient cpp.  Portability problem
15168         with GCC 2.7.2.1 reported by Thomas M.Ott.
15169
15170 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
15171
15172         * modules/regex (Depends-on): Add strcase.
15173
15174         * modules/gethostname (Licence): Change from GPL to LGPL, since
15175         gethostname.c is a trivial implementation of a standard library
15176         function.
15177         * modules/poll (License): Change from GPL to LGPL, since it's
15178         derived from LGPL code.
15179
15180 2005-09-27  Jim Meyering  <jim@meyering.net>
15181
15182         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
15183         HAVE_CONFIG_H.
15184
15185         * lib/intprops.h (signed_type_or_expr__): Define.
15186         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
15187         for unsigned types.
15188
15189 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
15190
15191         * lib/verify.h (verify_expr): Remove, replacing with:
15192         (verify_true): New macro that returns true instead of void.
15193         (verify_type__): Remove.
15194         (verify): Use verify_true rather than verify_type__.
15195
15196 2005-09-26  Bruno Haible  <bruno@clisp.org>
15197
15198         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
15199         is necessary.
15200         (lib_SOURCES): Remove mbchar.c.
15201         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
15202         (Files): Add m4/mbrtowc.m4.
15203         * modules/mbiter: Likewise.
15204         * modules/mbuiter: Likewise.
15205
15206 2005-09-26  Bruno Haible  <bruno@clisp.org>
15207
15208         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
15209         compile mbchar.c if they are not both present.
15210         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
15211         * m4/mbiter.m4 (gl_MBITER): Likewise.
15212         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
15213         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
15214         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
15215
15216 2005-09-25  Jim Meyering  <jim@meyering.net>
15217
15218         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
15219         also uses socklen_t.
15220
15221 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
15222
15223         * lib/utimens.c (ENOSYS): Define if not already defined.
15224         (futimens): Support having a null PATH if the file descriptor
15225         is nonnegative.
15226
15227         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
15228         Remove.
15229         (__attribute): Define to empty unless GCC 3.1 or later.
15230         This works around a core dump on OpenBSD 3.4, which has GCC
15231         2.95.3, which dumps core when given __attribute__(()).  It also
15232         simplifies other tests, since we really don't want to bother with
15233         worrying about which ancient version of GCC supported what.
15234         Original problem reported by Yoann Vandoorselaere, with part of
15235         the fix suggested by Derek Price.
15236
15237 2005-09-24  Jim Meyering  <jim@meyering.net>
15238
15239         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
15240         so we can once again use a positive bitfield width of 1 -- now we
15241         don't have to explain why we were using a bitfield width of 2.
15242
15243 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15244
15245         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
15246         and similarly for the other external symbols.  Problem reported
15247         by James Gallager.
15248
15249         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
15250         bug reported by Jim Meyering.
15251
15252         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
15253         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
15254         not needed, since socklen is a prerequisite module.
15255
15256 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15257
15258         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
15259         Problem reported by Eric Blake.
15260         (getaddrinfo): Initialize se so that it's not garbage.
15261         Redo internal storage allocation so that it doesn't make unportable
15262         assumptions about alignment.
15263         Fix a memory leak.
15264
15265         * lib/utimens.c (futimens): Use futimesat if available.
15266         Prefer it to futimes since it doesn't have the futimes bug.
15267
15268         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
15269         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
15270         Instead, declare a function that returns a pointer to an array,
15271         and use verify_type__ to declare the size of the array.
15272         Problem and germ of a solution reported by Bruno Haible.
15273         (verify_type__): Use 2, not 1, for bitfield size, to avoid
15274         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
15275
15276 2005-09-23  Jim Meyering  <jim@meyering.net>
15277
15278         Sync from coreutils.
15279         Correct build failure (socklen_t not defined) on at least
15280         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
15281         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
15282
15283 2005-09-23  Jim Meyering  <jim@meyering.net>
15284
15285         * modules/getaddrinfo (Depends-on): Add socklen.
15286
15287 2005-09-23  Bruno Haible  <bruno@clisp.org>
15288
15289         * tests/test-verify.c: New file.
15290
15291 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15292
15293         Sync from coreutils.
15294
15295         * modules/argmatch (Depends-on): Add verify.
15296         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
15297         unistd-safer.
15298         * modules/save-cwd (Depends-on): Likewise.
15299
15300         * modules/openat (Files): Add lib/openat-die.c.
15301         (Depends-on): Remove error, exitfail.
15302         Add dirname.
15303
15304         * modules/verify: New file.
15305         * MODULES.html.sh (Diagnostics <assert.h>): New section,
15306         with "verify" module.
15307
15308 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15309
15310         Sync from coreutils.
15311
15312         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
15313         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
15314         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
15315         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
15316         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
15317         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
15318         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
15319         Don't bother checking for string.h, stdlib.h, unistd.h.
15320         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
15321         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
15322         module's job.
15323         * m4/jm-macros.m4 (gl_MACROS): Likewise.
15324         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
15325
15326         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
15327         (gl_GETDATE): Use it.
15328
15329         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
15330
15331 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15332
15333         Sync from coreutils.
15334
15335         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
15336         stat-time.h.
15337         * lib/argmatch.h: Include verify.h
15338         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
15339         (ARGMATCH_ASSERT): Remove; unused.
15340         * lib/canonicalize.c: Assume STDC_HEADERS.
15341         * lib/exclude.c: Include "strcase.h".
15342         * lib/regex_internal.h [!defined _LIBC]: Likewise.
15343         * lib/getusershell.c: Include stdio--.h rather than stdio.h
15344         and stdio-safer.h.
15345         (getusershell): Call fopen, not fopen_safer.
15346         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
15347         Do not include unistd-safer.h.
15348         (save_cwd): Don't call fd_safer; no longer needed
15349         now that we include fcntl--.h.
15350
15351         * lib/getdate.y (relative_time): New type.
15352         (RELATIVE_TIME_0): New constant.
15353         (parser_control): Use relative_time instead of doing it ourselves.
15354         (%union): Add new relative_time rel member.
15355         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
15356         Now typeless.
15357         (relunit, relunit_snumber): Now of type rel.
15358         (zone, rel, relunit, get_date): Adjust to above changes.
15359
15360         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
15361         Do not include unistd-safer.h.
15362         (getloadavg): Don't call fd_safer; no longer needed
15363         now that we include fcntl--.h.
15364
15365         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
15366         (make_dir_parents): Treat ENOSYS like EEXIST.
15367
15368         Improve quality of diagnostics on restore_cwd failure.
15369         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
15370         (make_dir_parents): Last arg is now int * (for errno), not bool *.
15371         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
15372         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
15373         each time through the loop.  Do not diagnose restore_cwd failure;
15374         that is the caller's job (and perhaps the caller does not care).
15375
15376         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
15377         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
15378         If the file already exists but is not a directory, don't bother
15379         to try to make its parents.
15380         Close potential file descriptor leak if we can't chdir("/") (!).
15381         Don't always return true if chdir($PWD) fails; return true only
15382         if the requested action was done successfully (except for the
15383         chdir($PWD)).
15384         Don't log final directory unless we actually made it.
15385         Refactor to avoid duplicate code to fix up permissions.
15386         Don't attempt to fix up parent permissions if chdir($PWD) fails.
15387
15388         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
15389         to make it a bit faster and (I hope) clearer.
15390         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
15391         Fix bug in formats like %2N.
15392
15393         * lib/verify.h: New file.
15394
15395 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15396
15397         Sync from coreutils.
15398         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
15399
15400 2005-09-22  Jim Meyering  <jim@meyering.net>
15401
15402         Sync from coreutils.
15403
15404         * m4/lstat.m4 (gl_FUNC_LSTAT):
15405         Use AC_LIBSOURCES to require lstat.c and lstat.h.
15406         Remove obsolete comment.
15407         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
15408         * m4/xstrtod.m4: Likewise.
15409
15410         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
15411
15412 2005-09-22  Jim Meyering  <jim@meyering.net>
15413
15414         Sync from coreutils.
15415
15416         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
15417
15418         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
15419         the .tm_year member, since otherwise gcc-4.0 would now warn about
15420         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
15421
15422         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
15423         order to avoid an unsuppressible warning from gcc on 64-bit systems.
15424
15425         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
15426         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
15427         when run in a time zone for which daylight savings time is in effect
15428         for the starting date.
15429
15430         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
15431         stop us from restricting permissions of just-created absolute-named
15432         directories.
15433         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
15434         to restore initial working directory.
15435         * lib/mkdir-p.c (make_dir_parents): New parameter:
15436         different_working_dir, to tell caller if/when we change the working
15437         directory and are unable to return to the initial one.
15438         * lib/mkdir-p.h (make_dir_parents): Update prototype.
15439         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
15440         `return false'.  This fixes a bug introduced on 2004-07-30.
15441
15442         * lib/openat.c (fdopendir): Be sure to close the supplied
15443         file descriptor before returning.  This makes our replacement
15444         implementation a little closer to Solaris's, where fdopendir
15445         ties the file descriptor to the returned DIR* pointer.
15446         * lib/openat.c (unlinkat): New function.
15447         * lib/openat.h (unlinkat): Add prototype.
15448         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
15449         (openat_restore_fail): Rename from openat_restore_die.
15450         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
15451
15452         Provide an alternative to exiting immediately upon save_cwd or
15453         restore_cwd failure.  Now, an application can arrange e.g.,
15454         to perform a longjump in that case.
15455         * lib/openat.c: Include dirname.h.
15456         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
15457         (rpl_openat, fdopendir, fstatat): Call openat_save_die
15458         and openat_restore_die rather than calling error directly.
15459         Don't include "error.h" or "exitfail.h"; they're no longer needed.
15460
15461         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
15462         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
15463         define.
15464
15465         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
15466         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
15467                             int utc, int nanoseconds);
15468         Background:
15469         date should not have to allocate a megabyte of virtual memory to
15470         handle a format argument like +%1048575T.  When implemented with
15471         strftime, it must allocate such a buffer, use strftime to fill it
15472         in, print it, then free it.
15473         With fprintftime, it simply prints everything and exits.
15474         With no need for memory allocation, that's one fewer way to fail.
15475         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
15476         optional field width, not before, so we accept %9:z, not %:9z.
15477         (my_strftime): Be sure to use L_('x') for literals.
15478
15479         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
15480         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
15481         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
15482         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
15483         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
15484         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
15485         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
15486         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
15487         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
15488         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
15489         * lib/xgethostname.c, lib/xreadlink.c:
15490         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
15491
15492         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
15493         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
15494         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
15495         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
15496         and don't include <sys/file.h>).
15497
15498 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
15499
15500         Sync from coreutils.
15501
15502         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
15503         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
15504         [!LDAV_DONE]: Avoid unused variable warning.
15505
15506 2005-09-21  Bruno Haible  <bruno@clisp.org>
15507
15508         * lib/unicodeio.h (unicode_to_mb): New declaration.
15509
15510 2005-09-20  Derek Price  <derek@ximbiot.com>
15511
15512         * lib/getaddrinfo.c: Don't include <netdb.h> included from
15513         getaddrinfo.h.
15514
15515 2005-09-20  Bruno Haible  <bruno@clisp.org>
15516
15517         * gnulib-tool: Remove trailing slashes from the values specified for
15518         --source-base, --m4-base, --tests-base, --aux-dir.
15519         Suggested by Simon Josefsson <jas@extundo.com>.
15520
15521 2005-09-20  Bruno Haible  <bruno@clisp.org>
15522
15523         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
15524         func_modules_to_filelist, func_import, func_create_testdir): Make all
15525         sorting results locale-independent, so that gnulib-cache.m4 doesn't
15526         change when gnulib-tool is invoked in a different locale.
15527
15528 2005-09-19  Simon Josefsson  <jas@extundo.com>
15529
15530         * m4/socklen.m4: Fix typo.
15531
15532 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15533
15534         Use a consistent style for including <config.h>.
15535         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
15536         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
15537         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
15538         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
15539         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
15540         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
15541         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
15542         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
15543         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
15544         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
15545         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
15546         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
15547         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
15548         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
15549         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
15550         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
15551         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
15552         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
15553         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
15554         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
15555         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
15556         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
15557         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
15558         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
15559         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
15560         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
15561         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
15562         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
15563         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
15564         lib/xstrtoumax.c, lib/yesno.c:
15565         Standardize inclusion of config.h.
15566         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
15567         lib/inttostr.h:  Removed inclusion of config.h from header files.
15568         * lib/inttostr.c:  Adjusted in-tree users.
15569         * lib/timespec.h: Remove superfluous warning to include config.h.
15570         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
15571         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
15572         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
15573         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
15574         config.h with HAVE_CONFIG_H.
15575
15576 2005-09-19  Jim Meyering  <jim@meyering.net>
15577
15578         * modules/pathmax (License): Change to LGPL.
15579
15580 2005-09-19  Derek Price  <derek@ximbiot.com>
15581
15582         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
15583
15584 2005-09-19  Bruno Haible  <bruno@clisp.org>
15585
15586         * gnulib-tool (import): Provide default for --tests-base.
15587
15588 2005-09-19  Bruno Haible  <bruno@clisp.org>
15589
15590         * doc/quote.texi: New file, extracted from gnulib.texi.
15591         * doc/ctime.texi: New file, extracted from gnulib.texi.
15592         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
15593         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
15594         * doc/gnulib.texi: Include them.
15595
15596 2005-09-18  Bruno Haible  <bruno@clisp.org>
15597
15598         Portability fix.
15599         * gnulib-tool (func_readlink): New function.
15600         (func_ln_if_changed): Use it.
15601
15602 2005-09-18  Bruno Haible  <bruno@clisp.org>
15603
15604         * gnulib-tool: Support --with-tests also with --import.
15605         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
15606         (func_import): Use variables $testsbase and $inctests. Emit a
15607         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
15608         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
15609         SUBDIRS += $testsdir.
15610         (func_create_testdir): Update.
15611
15612 2005-09-18  Bruno Haible  <bruno@clisp.org>
15613
15614         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
15615         instead of $dry_run.
15616         (func_cp_if_changed, func_mv_if_changed): Remove functions.
15617         (func_ln_if_changed): Don't handle dry-run here.
15618         (func_import): In dry-run mode, detect more precisely which actions
15619         would be performed, and don't use "...ing" verbs.
15620
15621 2005-09-18  Bruno Haible  <bruno@clisp.org>
15622
15623         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
15624         (func_import): Use join on two temporary files instead of three nested
15625         loops, in order to determine which files are new or old.
15626
15627 2005-09-18  Bruno Haible  <bruno@clisp.org>
15628
15629         * gnulib-tool (func_import): Comment out code that spits out the
15630         new files with --dry-run.
15631
15632 2005-09-18  Bruno Haible  <bruno@clisp.org>
15633
15634         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
15635
15636 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15637
15638         * lib/stat-time.h: New file.
15639         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
15640         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
15641         in a different way.
15642         (timespec_cmp): New function.
15643         * lib/utimecmp.c: Include stat-time.h.
15644         (SYSCALL_RESOLUTION): Depend on whether various struct stat
15645         members exist, not on the obsolescent ST_MTIM_NSEC.
15646         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
15647
15648 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15649
15650         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
15651
15652 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15653
15654         * MODULES.html.sh (File system functions): Add stat-time.
15655         * modules/stat-time: New file.
15656         * modules/timespec (Files): Remove m4/st_mtim.m4; this
15657         is now done in a different way, by the stat-time module.
15658         * modules/utimecmp (Depends-on): Add stat-time.
15659
15660 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
15661
15662         * m4/st_mtim.m4: Remove.  Superseded by...
15663         * m4/stat-time.m4: New file.
15664         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
15665         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
15666
15667 2005-09-15  Derek Price  <derek@ximbiot.com>
15668
15669         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
15670
15671 2005-09-15  Derek Price  <derek@ximbiot.com>
15672
15673         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
15674         * lib/regex_internal.c: Ditto, using this...
15675         (__GNUC_PREREQ): ...new macro.
15676         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
15677         using...
15678         (__GNUC_PREREQ): ...this new macro.
15679
15680         * lib/strstr.h: Include string.h. Define strstr as a macro here.
15681
15682 2005-09-15  Derek Price  <derek@ximbiot.com>
15683             Paul Eggert  <eggert@cs.ucla.edu>
15684
15685         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
15686         changes, consolidating in...
15687         * lib/regex_internal.h: ...this file.
15688
15689 2005-09-13  Jim Meyering  <jim@meyering.net>
15690
15691         * lib/canon-host.c: Filter through gnu indent and reword comments
15692         slightly.
15693         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
15694
15695 2005-09-13  Derek Price  <derek@ximbiot.com>
15696
15697         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
15698         failure.
15699         Reported by Jim Meyering  <jim@meyering.net>.
15700
15701 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
15702
15703         * lib/base64.c: Typo.
15704         (base64_encode): Put b64str in initialized data section.
15705
15706 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
15707
15708         Merge glibc and coreutils changes into gnulib, plus a few
15709         extra fixes.
15710         * lib/md5.c: Use #error rather than a string.
15711         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
15712         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
15713         (__attribute__): Define to empty for non recent-GCC.
15714         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
15715         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
15716         Renamed from their non-__ counterparts, with new macros replacing
15717         them if not _LIBC.  Add __THROW attribute.
15718         (rol): Remove.
15719         (struct md5_ctx): Align buffer if using GCC.
15720         * lib/sha1.h (struct sha1_ctx): Likewise.
15721         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
15722         The old name was backwards.
15723         (NOTSWAP): Remove; not used.
15724         (rol): New macro, moved here from md5.h.
15725         (sha1_process_block): Remove a FIXME that doesn't make sense.
15726
15727 2005-09-12  Derek Price  <derek@ximbiot.com>
15728
15729         Return usable errors from canon-host.
15730         * lib/canon-host.h: New file.
15731         * lib/canon-host.c (canon_host): Wrap...
15732         (canon_host_r): ...this new function, which now relies exclusively on
15733         getaddrinfo.
15734         (ch_strerror): New function.
15735         (last_cherror): New global.
15736         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
15737         interface.
15738         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
15739         void *.
15740         (freeaddrinfo): Free ai->ai_canonname when set.
15741
15742 2005-09-12  Derek Price  <derek@ximbiot.com>
15743
15744         Make canon-host require getaddrinfo.
15745         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
15746         AC_LIBSOURCE canon-host.h.  Call...
15747         (gl_PREREQ_CANON_HOST): ...this new function, which requires
15748         gl_GETADDRINFO.
15749         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
15750
15751 2005-09-12  Derek Price  <derek@ximbiot.com>
15752
15753         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
15754         LGPL.
15755         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
15756
15757 2005-09-12  Derek Price  <derek@ximbiot.com>
15758
15759         * lib/gai_strerror.c: Include config.h when available.  Include
15760         getaddrinfo.h before other headers to test interface.
15761         Reported by Larry Jones <lawrence.jones@ugs.com>.
15762
15763 2005-09-12  Derek Price  <derek@ximbiot.com>
15764             Paul Eggert  <eggert@cs.ucla.edu>
15765
15766         * modules/glob (Files): Add glob-libc.h.
15767
15768 2005-09-12  Derek Price  <derek@ximbiot.com>
15769             Paul Eggert  <eggert@cs.ucla.edu>
15770
15771         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
15772         glob_.h, glob-libc.h.
15773         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
15774
15775 2005-09-12  Derek Price  <derek@ximbiot.com>
15776             Paul Eggert  <eggert@cs.ucla.edu>
15777
15778         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
15779         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
15780         protecting things that should be done only in gnulib contexts.
15781         * lib/glob_.h: New file, containing only the glob things needed for
15782         gnulib.
15783         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
15784         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
15785         (glob, globfree, glob_pattern_p): Now defined simply in terms of
15786         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
15787         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
15788         and to respect the namespace rules better.
15789
15790 2005-09-08  Simon Josefsson  <jas@extundo.com>
15791
15792         * modules/socklen: New file.
15793
15794 2005-09-08  Simon Josefsson  <jas@extundo.com>
15795
15796         * m4/socklen.m4: New file.
15797
15798 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15799
15800         * modules/utimens (Files): Add m4/utimbuf.m4, since
15801         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
15802         Reported by Sergey Poznyakoff.
15803
15804 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15805
15806         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
15807         definitions, since that's the preferred style in glibc.
15808         Fix a minor spacing issue, and update copyright notice to match
15809         glibc's.
15810
15811 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15812
15813         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
15814
15815 2005-09-06  Simon Josefsson  <jas@extundo.com>
15816
15817         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
15818         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
15819
15820 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
15821
15822         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
15823         warning.
15824
15825 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
15826
15827         * config/srclist.txt: Add glibc bug 1302.
15828
15829 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
15830
15831         Change bitset word type from unsigned int to unsigned long int,
15832         as this has better performance on typical 64-bit hosts.
15833         Port bitset code to hosts with unusual word sizes.
15834         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
15835         (build_collating_symbol):
15836         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
15837         argument is a bitset.  This is merely a style issue, but it makes
15838         it clearer that an entire array is expected.
15839         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
15840         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
15841         Port to the case where bitset_word is not the same as unsigned int.
15842         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
15843         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
15844         Likewise.
15845         * lib/regexec.c (check_dst_limits_calc_pos_1,
15846         check_subexp_matching_top):
15847         (build_trtable, group_nodes_into_DFAstates):
15848         Likewise.
15849         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
15850         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
15851         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
15852         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
15853         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
15854         * lib/regcomp.c (optimize_subexps, lower_subexp):
15855         Work even if bitset_word has holes in its bitwise representation.
15856         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
15857         * lib/regexec.c (check_dst_limits_calc_pos_1,
15858         check_subexp_matching_top):
15859         Likewise.
15860         * lib/regex_internal.c (re_string_reconstruct):
15861         Don't assume UCHAR_MAX == 255.
15862         * lib/regex_internal.h (bitset_set_all): Likewise.
15863         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
15864         All uses changed.
15865         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
15866         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
15867         All uses changed.
15868         (BITSET_WORD_MAX): New macro.
15869         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
15870         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
15871         (bitset_empty, bitset_copy):
15872         Prefer sizeof (bitset) to multiplying it out ourselves.
15873         (bitset_not_merge): Remove; unused.
15874         (bitset_contain): Return bool, not unsigned int with one bit on.
15875         All callers changed.
15876         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
15877         alignment than re_node_set; do this by defining a new internal
15878         type struct dests_alloc and using it to allocate memory.
15879
15880 2005-09-05  Bruno Haible  <bruno@clisp.org>
15881
15882         * gnulib-tool (func_import): Fix comparison in handling of symbolic
15883         links.
15884
15885 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
15886
15887         * modules/size_max (Makefile.am): Add size_max.h
15888
15889 2005-09-04  Derek Price  <derek@ximbiot.com>
15890
15891         * gnulib-tool (func_import): Fix reversed $symbolic logic.
15892
15893 2005-09-03  Simon Josefsson  <jas@extundo.com>
15894
15895         * gnulib-tool: Fix typo.
15896
15897 2005-09-03  Simon Josefsson  <jas@extundo.com>
15898
15899         * config/srclist.txt: Add glibc bug 1293.
15900
15901 2005-09-03  Derek Price  <derek@ximbiot.com>
15902
15903         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
15904         From Larry Jones <lawrence.jones@ugs.com>.
15905
15906 2005-09-02  Simon Josefsson  <jas@extundo.com>
15907
15908         * modules/socklen: New file.
15909
15910 2005-09-02  Simon Josefsson  <jas@extundo.com>
15911
15912         * modules/havelib: New module.
15913
15914         * modules/gettext, modules/iconv, modules/lock, modules/readline:
15915         Use havelib.
15916
15917 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
15918
15919         Check for arithmetic overflow when calculating sizes, to prevent
15920         some buffer-overflow issues.  These patches are conservative, in the
15921         sense that when I couldn't determine whether an overflow was possible,
15922         I inserted a run-time check.
15923         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
15924         macros.
15925         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
15926         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
15927         (re_xnrealloc, re_x2nrealloc): New inline functions.
15928         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
15929         parse_bracket_exp):
15930         (build_equiv_class, build_charclass): Check for arithmetic overflow
15931         in size expression calculations.
15932         * lib/regex_internal.c (re_string_realloc_buffers):
15933         (build_wcs_upper_buffer, re_node_set_add_intersect):
15934         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
15935         (re_dfa_add_node, register_state): Likewise.
15936         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
15937         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
15938         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
15939         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
15940
15941 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
15942
15943         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15944         m4/ulonglong.m4.  Problem reported by Martin Lambers.
15945
15946 2005-09-02  Bruno Haible  <bruno@clisp.org>
15947
15948         Support for lib vs. lib64 distinction on biarch platforms.
15949         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
15950         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
15951         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
15952
15953 2005-09-02  Bruno Haible  <bruno@clisp.org>
15954
15955         * gnulib-tool (import): In the other first-use case, provide defaults
15956         as well.
15957
15958 2005-09-02  Bruno Haible  <bruno@clisp.org>
15959
15960         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
15961         patches not yet found in the latest gettext release.
15962
15963 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15964
15965         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
15966         to avoid a collision with bits/local_lim.h in glibc.
15967         All uses changed.  Problem reported by Dmitry V. Levin in
15968         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
15969
15970         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
15971         bugs in int versus size_t comparisons.
15972         (re_string_context_at): Fix bug where the code assumed that
15973         Idx is signed.
15974
15975         Use bool where appropriate.
15976         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
15977         All callers changed.
15978         (calc_eclosure_iter): Likewise, for ROOT arg.
15979         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
15980         (build_charclass_op): Likewise, for NON_MATCH arg.
15981         * lib/regex_internal.c (re_string_allocate, re_string_construct):
15982         (re_string_construct_common): Likewise, for ICASE arg.
15983         * lib/regexec.c (re_search_2_stub, re_search_stub):
15984         Likewise, for RET_LEN arg.
15985         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
15986         (set_regs): Likewise, for FL_BACKTRACK arg.
15987         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
15988         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
15989         (calc_eclosure_iter, parse_bracket_exp):
15990         Use bool for internal variables that are booleans.
15991         * lib/regexec.c (re_search_internal, check_matching,
15992         proceed_next_node):
15993         (set_regs, build_sifted_states, sift_states_bkref):
15994         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
15995         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
15996         (find_collation_sequence_value):
15997         Likewise.
15998         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
15999         (re_node_set_compare):
16000         Return bool, not int. All callers changed.
16001         * lib/regexec.c (check_halt_node_context, check_dst_limits):
16002         (build_trtable, check_node_accept): Likewise.
16003         * lib/regex_internal.h: Include stdbool.h.
16004
16005         Fix bugs uncovered when converting to bool.
16006         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
16007         failure instead of charging ahead blindly.
16008         * lib/regex_internal.c (register_state): Likewise.
16009         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
16010         for freeing internal storage.
16011         (group_nodes_into_DFA_states): Use unsigned int, not int, for
16012         bitset pieces used as boolean, to avoid undefined behavior
16013         on hosts that do int overflow checking.
16014
16015 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16016
16017         * config/srclist.txt: Add glibc bugs 1285-1287.
16018
16019 2005-09-01  Jim Meyering  <jim@meyering.net>
16020
16021         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
16022         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
16023         Require gl_STAT_MACROS, too.
16024
16025 2005-09-01  Bruno Haible  <bruno@clisp.org>
16026
16027         * gnulib-tool (import): In the first-use case, provide defaults.
16028
16029 2005-09-01  Bruno Haible  <bruno@clisp.org>
16030
16031         * gnulib-tool (func_import): Remove the .tmp files.
16032
16033 2005-09-01  Bruno Haible  <bruno@clisp.org>
16034
16035         * gnulib-tool (func_import): Fix handling of symbolic links.
16036
16037 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16038
16039         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
16040         old glibc regex code mishandles strings longer than 2**31 bytes.
16041         This patch fixes this when the regex code is used in gnulib
16042         (i.e., outside glibc).
16043
16044         This patch should not affect the use of the regex code inside
16045         glibc.  No doubt this problem also needs to be handled for glibc
16046         as well, but the result will be an incompatible change to the
16047         glibc ABI, and the old ABI will have to be supported too.  That
16048         can be the the subject for another patch.
16049
16050         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
16051         governing whether the rest of this patch is active.  By default,
16052         the macro is disabled and the patch has no effect.
16053         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
16054         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
16055         (struct re_pattern_buffer, re_search, re_search_2, re_match):
16056         (re_match_2, re_set_registers): Use the new types.
16057         * lib/regex_internal.h (Idx, re_hashval_t): New types.
16058         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
16059         New macros.
16060         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
16061         (re_string_context_at, bin_tree_t, re_dfastate_t):
16062         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
16063         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
16064         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
16065         (re_string_char_size_at, re_string_wchar_at):
16066         (re_string_elem_size_at):
16067         Use the new types and macros to port to 64-bit hosts.
16068         Use unsigned types for internal values, so that the code
16069         mostly works even for arrays larger than SSIZE_MAX.
16070         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
16071         (search_duplicated_node, calc_eclosure_iter, fetch_number):
16072         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
16073         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
16074         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
16075         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
16076         (calc_inveclosure, parse_dup_op, build_range_exp):
16077         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
16078         (fetch_number, create_token_tree, mark_opt_subexp):
16079         Likewise.
16080         * lib/regex_internal.c (re_string_construct_common,
16081         create_ci_newstate):
16082         (create_cd_newstate, re_string_allocate, re_string_construct):
16083         (re_string_realloc_buffers, build_wcs_upper_buffer):
16084         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
16085         (re_string_reconstruct, re_string_peek_byte_case):
16086         (re_string_fetch_byte_case, re_string_context_at):
16087         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
16088         (re_node_set_init_copy, re_node_set_add_intersect):
16089         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16090         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16091         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
16092         (re_acquire_state, re_acquire_state_context, register_state):
16093         Likewise.
16094         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
16095         search_cur_bkref_entry):
16096         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
16097         (re_search_internal, re_search_2_stub, re_search_stub)
16098         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
16099         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
16100         (update_cur_sifted_state, check_dst_limits):
16101         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16102         (check_subexp_limits, sift_states_bkref, merge_state_array):
16103         (check_subexp_matching_top, get_subexp, get_subexp_sub):
16104         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
16105         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
16106         (expand_bkref_cache, check_node_accept_bytes):
16107         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
16108         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
16109         (acquire_init_state_context, check_halt_node_context):
16110         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
16111         (sift_states_backward, clean_state_log_if_needed):
16112         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
16113         (find_recover_state, transit_state_sb, transit_state_mb):
16114         (transit_state_bkref, build_trtable, match_ctx_clean):
16115         Likewise.
16116         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
16117         to work around an assumption that REG_MISSING is negative.
16118
16119         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
16120         (seek_collating_symbol_entry) [defined _LIBC]:
16121         (lookup_collation_sequence_value) [defined _LIBC]:
16122         (build_range_exp, build_collating_symbol) [defined _LIBC]:
16123         Use prototypes rather than old-style function definitions.
16124         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
16125         (transit_state_sb) [0]:
16126         (find_collation_sequence_value) [defined _LIBC]: Likewise.
16127
16128         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
16129         rm_eo.
16130
16131         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
16132         (optimize_subexps, lower_subexp):
16133         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
16134         since the signed shift might overflow.  Use 1u<<31 instead.
16135         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
16136         Likewise.
16137         * lib/regexec.c (check_dst_limits_calc_pos_1,
16138         check_subexp_matching_top): Likewise.
16139
16140         * lib/regcomp.c (optimize_subexps, lower_subexp):
16141         Use CHAR_BIT rather than 8, for clarity.
16142         * lib/regexec.c (check_dst_limits_calc_pos_1):
16143         (check_subexp_matching_top): Likewise.
16144         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
16145         have to worry about portability issues when shifting it left.
16146         Remove no-longer-needed test for table_size > 0.
16147         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
16148         in a word, as the resulting behavior is undefined.
16149         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
16150         in one case, a <= should have been an <, and in another case the
16151         whole test was missing.
16152         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
16153         the standard name CHAR_BIT.
16154         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
16155         this is not true on one's complement and signed-magnitude hosts.
16156
16157         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
16158         next_last_offset.
16159         (struct re_dfa_t): Remove unused member states_alloc.
16160         * lib/regcomp.c (init_dfa): Don't initialize unused members.
16161
16162 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16163
16164         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
16165         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
16166         and large-file glibc and in 32-bit large-file Solaris.
16167
16168 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16169
16170         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
16171         lengths fit in regoff_t; this isn't true if regoff_t is the same
16172         width as size_t.
16173         * lib/regex.c (re_search_internal): 5th arg is LAST_START
16174         (= START + RANGE) instead of RANGE.  This avoids overflow
16175         problems when regoff_t is the same width as size_t.
16176         All callers changed.
16177         (re_search_2_stub): Check for overflow when adding the
16178         sizes of the two strings.
16179         (re_search_stub): Check for overflow when adding START
16180         to RANGE; if it occurs, substitute the extreme value.
16181
16182 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16183
16184         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
16185
16186 2005-08-31  Jim Meyering  <jim@meyering.net>
16187
16188         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
16189         a pointer-to-const.
16190         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
16191         (register_state): Likewise.
16192         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
16193         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16194         (group_nodes_into_DFAstates): Likewise.
16195
16196 2005-08-31  Jim Meyering  <jim@meyering.net>
16197
16198         * check-module: Add a FIXME comment.
16199
16200 2005-08-31  Eric Blake  <ebb9@byu.net>
16201
16202         * modules/unistd-safer (Files): Add unistd--.h.
16203         * modules/stdio-safer (Files): Add stdio--.h.
16204
16205 2005-08-31  Derek Price  <derek@ximbiot.com>
16206
16207         * lib/getdelim.c (getdelim): Return EOF on EOF.
16208         Reported by Larry Jones <lawrence.jones@ugs.com>.
16209
16210 2005-08-31  Bruno Haible  <bruno@clisp.org>
16211
16212         Avoid unnecessary diffs in the generated lib/Makefile.am.
16213         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
16214         the generated files.
16215         (func_import): Don't set cmd.
16216
16217 2005-08-31  Bruno Haible  <bruno@clisp.org>
16218
16219         * lib/strstr.c: Include <stddef.h>, for NULL.
16220         * lib/strcasestr.c: Likewise.
16221         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
16222
16223 2005-08-31  Bruno Haible  <bruno@clisp.org>
16224
16225         * gnulib-tool: New option --macro-prefix.
16226         (func_import): Use macro_prefix.
16227         (import): Handle option --macro-prefix.
16228
16229 2005-08-31  Bruno Haible  <bruno@clisp.org>
16230
16231         * gnulib-tool (import): Rename most ac_* variables to cached_*.
16232         Also use new variables cached_lgpl, cached_libtool.
16233
16234 2005-08-31  Bruno Haible  <bruno@clisp.org>
16235
16236         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
16237         always instantiating them.
16238
16239 2005-08-31  Bruno Haible  <bruno@clisp.org>
16240
16241         * gnulib-tool (func_import): Read the previous cached settings
16242         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
16243         earlier added by gnulib but are now dropped. Warn when a gnulib file
16244         overwrites a non-gnulib file.
16245
16246 2005-08-31  Bruno Haible  <bruno@clisp.org>
16247
16248         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
16249         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
16250         projects that don't keep autogenerated files in CVS. Put into
16251         actioncmd only the specified modules, not the transitive closure.
16252
16253 2005-08-31  Bruno Haible  <bruno@clisp.org>
16254
16255         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
16256         Create directories that shall be filled.
16257         (import): Don't look for gl_* macros in configure.ac. Recurse across
16258         all directories containing a gnulib-cache.m4 files, if meaningful.
16259
16260 2005-08-31  Bruno Haible  <bruno@clisp.org>
16261
16262         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
16263         (import): Set seen_libtool when we see gl_LIBTOOL.
16264
16265 2005-08-31  Bruno Haible  <bruno@clisp.org>
16266
16267         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
16268         declaration macro definitions from generated gnulib.m4.
16269
16270 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
16271
16272         * lib/iconvme.h: Add prototype for iconv_alloc.
16273
16274 2005-08-29  Simon Josefsson  <jas@extundo.com>
16275
16276         * lib/iconvme.c: Fix errno.
16277
16278 2005-08-29  Bruno Haible  <bruno@clisp.org>
16279
16280         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
16281         that it works when the directory contains spaces.
16282
16283 2005-08-29  Bruno Haible  <bruno@clisp.org>
16284
16285         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
16286
16287 2005-08-29  Bruno Haible  <bruno@clisp.org>
16288
16289         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
16290         Emit more advice.
16291
16292 2005-08-29  Bruno Haible  <bruno@clisp.org>
16293         and Stepan Kasal  <kasal@ucw.cz>
16294
16295         * check-module: If more parameters are given, check each of them
16296         separately; add more exceptions, as noted by Jim Meyering.
16297         (check_module): New procedure.
16298         (%exempt_header): Now contains all exceptions.
16299
16300 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
16301
16302         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
16303
16304 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16305
16306         * lib/iconvme.c: Split iconv_string into iconv_alloc.
16307
16308 2005-08-28  Bruno Haible  <bruno@clisp.org>
16309
16310         * m4/gnulib-tool.m4: New file.
16311
16312 2005-08-27  Jim Meyering  <jim@meyering.net>
16313
16314         * modules/unistd-safer (Files): Add pipe-safer.c.
16315         * modules/fcntl-safer (Files): Add creat-safer.c.
16316
16317 2005-08-27  Jim Meyering  <jim@meyering.net>
16318
16319         * m4/stdlib-safer.m4: New file.  From coreutils.
16320         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
16321         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
16322         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
16323         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
16324         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
16325
16326 2005-08-27  Jim Meyering  <jim@meyering.net>
16327
16328         * lib/fopen-safer.c: Merge minor changes from coreutils.
16329         * lib/dup-safer.c: Likewise.
16330         * lib/fd-safer.c: Likewise.
16331
16332         Merge from coreutils.
16333         * lib/stdio--.h: New file.
16334         * lib/stdlib--.h: New file.
16335         * lib/mkstemp-safer.c: New file.
16336
16337         GNU tar needs these.
16338         * lib/pipe-safer.c: New file.
16339         * lib/creat-safer.c: New file.
16340         * lib/fcntl--.h (creat): Define to creat_safer.
16341         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
16342         * lib/unistd--.h (pipe): Define to pipe_safer.
16343         * lib/unistd-safer.h: Declare pipe_safer.
16344
16345 2005-08-26  Simon Josefsson  <jas@extundo.com>
16346
16347         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
16348         Haible <bruno@clisp.org>.
16349
16350 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
16351
16352         * lib/regex_internal.h: Remove all references to
16353         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
16354         or better.
16355         (bitset_not, bitset_merge, bitset_not_merge):
16356         (bitset_mask, re_string_allocate, re_string_construct):
16357         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
16358         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
16359         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
16360         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
16361         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16362         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16363         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
16364         (re_acquire_state_context):
16365         Remove unnecessary forward decls.
16366         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
16367         Put __attribute at function definition,
16368         now that the function decl has been removed.
16369         * lib/regex_internal.c (re_string_peek_byte_case):
16370         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
16371         Likewise.
16372
16373 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
16374
16375         * m4/regex.m4: Add AC_PREREQ(2.50).
16376         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
16377
16378 2005-08-25  Simon Josefsson  <jas@extundo.com>
16379
16380         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
16381         __fsetlocking.
16382
16383 2005-08-25  Simon Josefsson  <jas@extundo.com>
16384
16385         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
16386         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
16387         GLIBC specific code.
16388
16389 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16390
16391         Make regex safe for g++.  This fixes one real bug (an "err"
16392         that should have been "*err").  g++ problem reported by
16393         Sam Steingold.
16394         * lib/regex_internal.h (re_calloc): New macro, consistent with
16395         re_malloc etc.  All callers of calloc changed to use re_calloc.
16396         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
16397         not int.  All callers changed.
16398         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
16399         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
16400         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
16401         (find_recover_state): Change "err" to "*err"; this fixes what
16402         appears to be a real bug.
16403         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
16404         versus int.
16405
16406 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16407
16408         * modules/regex (Depends-on): Add malloc, since the code
16409         assumes that !malloc(0) means failure.
16410
16411 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16412
16413         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
16414
16415         alloca modernization/simplification for regex.
16416         * lib/regex.c: Remove portability cruft for alloca.  This no longer
16417         needs to be at the start of the file, and can be moved into
16418         regex_internal.h and simplified.
16419         * lib/regex_internal.h: Include <alloca.h>.
16420         (__libc_use_alloca) [!defined _LIBC]: New macro.
16421         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
16422         now works outside glibc.
16423
16424 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16425
16426         * config/srclist.txt: Add glibc bugs 1241, 1245.
16427
16428 2005-08-25  Jim Meyering  <jim@meyering.net>
16429
16430         * lib/open-safer.c: Include <config.h>.
16431         Otherwise, we'd lose LARGEFILE support in any file using
16432         e.g. "fcntl--.h"
16433
16434 2005-08-25  Bruno Haible  <bruno@clisp.org>
16435
16436         * m4/minmax.m4: Require autoconf 2.52.
16437         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
16438         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
16439         alternatives of translit over the alphabet.
16440         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
16441
16442 2005-08-24  Simon Josefsson  <jas@extundo.com>
16443
16444         * tests/test-getpass.c: New file.
16445
16446 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16447
16448         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
16449         for GNU regex features.
16450
16451 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16452
16453         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
16454         * lib/regex.h (regerror): Likewise.
16455
16456         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
16457         requires this.  (The code never needed it.)
16458
16459         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
16460         All uses of recently-renamed identifiers changed to use the new,
16461         POSIX-compliant names.  The code will build and run just fine
16462         without these changes, but it's better to eat our own dog food
16463         and use the standard-conforming names.
16464
16465         * lib/regex.h: Fix a multitude of POSIX name space violations.
16466         These changes have an effect only for programs that define
16467         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
16468         do not change anything for programs compiled in the normal way.
16469         Also, there is no effect on the ABI.
16470
16471         (_REGEX_SOURCE): New macro.
16472         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
16473         defined and _GNU_SOURCE is not; this fixes a name space violation.
16474
16475         Rename the following macros to obey POSIX requirements.
16476         The old names are still visible as macros if _REGEX_SOURCE is defined.
16477         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
16478         RE_BACKSLASH_ESCAPE_IN_LISTS.
16479         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
16480         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
16481         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
16482         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
16483         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
16484         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
16485         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
16486         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
16487         (REG_INTERVALS): renamed from RE_INTERVALS.
16488         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
16489         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
16490         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
16491         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
16492         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
16493         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
16494         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
16495         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
16496         RE_UNMATCHED_RIGHT_PAREN_ORD.
16497         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
16498         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
16499         (REG_DEBUG): renamed from RE_DEBUG.
16500         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
16501         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
16502         unusual, since we can't clash with the POSIX REG_ICASE.
16503         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
16504         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
16505         (REG_NO_SUB): renamed from RE_NO_SUB.
16506         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
16507         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
16508         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
16509         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
16510         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
16511         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
16512         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
16513         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
16514         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
16515         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
16516         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
16517         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
16518         RE_SYNTAX_POSIX_MINIMAL_BASIC.
16519         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
16520         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
16521         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
16522         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
16523         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
16524         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
16525         (REG_FIXED): Renamed from REGS_FIXED.
16526         (REG_NREGS): Renamed from RE_NREGS.
16527
16528         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
16529         of other REG_* macros, since POSIX says the user is allowed to
16530         #undef these macros selectively.
16531
16532         (reg_errcode_t): Update comment stating what other tables need
16533         to be consistent.
16534
16535         Rename the following enum values to obey POSIX requirements.
16536         The old names are still visible as macros.
16537         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
16538         is not defined, since GNU is supposed to be a superset of POSIX as
16539         much as possible, and since we want reg_errcode_t to be a signed
16540         type for implementation consistency.
16541         (_REG_NOERROR): Renamed from REG_NOERROR.
16542         (_REG_NOMATCH): Renamed from REG_NOMATCH.
16543         (_REG_BADPAT): Renamed from REG_BADPAT.
16544         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
16545         (_REG_ECTYPE): Renamed from REG_ECTYPE.
16546         (_REG_EESCAPE): Renamed from REG_EESCAPE.
16547         (_REG_ESUBREG): Renamed from REG_ESUBREG.
16548         (_REG_EBRACK): Renamed from REG_EBRACK.
16549         (_REG_EPAREN): Renamed from REG_EPAREN.
16550         (_REG_EBRACE): Renamed from REG_EBRACE.
16551         (_REG_BADBR): Renamed from REG_BADBR.
16552         (_REG_ERANGE): Renamed from REG_ERANGE.
16553         (_REG_ESPACE): Renamed from REG_ESPACE.
16554         (_REG_BADRPT): Renamed from REG_BADRPT.
16555         (_REG_EEND): Renamed from REG_EEND.
16556         (_REG_ESIZE): Renamed from REG_ESIZE.
16557         (_REG_ERPAREN): Renamed from REG_ERPAREN.
16558         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
16559         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
16560         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
16561         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
16562
16563         (_REG_RE_NAME, _REG_RM_NAME): New macros.
16564         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
16565         changed.  But support the old name if the new one is not defined
16566         and if _REGEX_SOURCE.
16567
16568         Change the following member names in struct re_pattern_buffer.
16569         The old names are still supported if !_REGEX_SOURCE.
16570         The new names are always supported, regardless of _REGEX_SOURCE.
16571         (re_buffer): Renamed from buffer.
16572         (re_allocated): Renamed from allocated.
16573         (re_used): Renamed from used.
16574         (re_syntax): Renamed from syntax.
16575         (re_fastmap): Renamed from fastmap.
16576         (re_translate): Renamed from translate.
16577         (re_can_be_null): Renamed from can_be_null.
16578         (re_regs_allocated): Renamed from regs_allocated.
16579         (re_fastmap_accurate): Renamed from fastmap_accurate.
16580         (re_no_sub): Renamed from no_sub.
16581         (re_not_bol): Renamed from not_bol.
16582         (re_not_eol): Renamed from not_eol.
16583         (re_newline_anchor): Renamed from newline_anchor.
16584
16585         Change the following member names in struct re_registers.
16586         The old names are still supported if !_REGEX_SOURCE.
16587         The new names are always supported, regardless of _REGEX_SOURCE.
16588         (rm_num_regs): Renamed from num_regs.
16589         (rm_start): Renamed from start.
16590         (rm_end): Renamed from end.
16591
16592         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
16593         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
16594         Prepend __ to parameter names.
16595
16596         Undo yesterday's changes.
16597
16598 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16599
16600         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
16601         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
16602         lib/regex.c.
16603
16604 2005-08-24  Jim Meyering  <jim@meyering.net>
16605
16606         Sync from coreutils.
16607         * m4/fcntl-safer.m4: New file.
16608
16609         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
16610         and object files for this module.
16611
16612 2005-08-24  Jim Meyering  <jim@meyering.net>
16613
16614         Sync from coreutils.
16615         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
16616
16617 2005-08-24  Jim Meyering  <jim@meyering.net>
16618
16619         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
16620         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
16621
16622 2005-08-24  Jim Meyering  <jim@meyering.net>
16623
16624         * modules/fcntl-safer: New module.
16625         * modules/fts (Depends-on): Add fcntl-safer.
16626         * MODULES.html.sh (File descriptor based Input/Output):
16627         Add fcntl-safer.
16628
16629 2005-08-24  Bruno Haible  <bruno@clisp.org>
16630
16631         Support for unit test modules.
16632         * modules/README: Mention tests modules.
16633         * modules/TEMPLATE-TESTS: New file.
16634         * gnulib-tool: New options --extract-tests-module, --with-tests and
16635         --tests-base (unused for the moment).
16636         (testsbase, inctests): New variables.
16637         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
16638         (func_verify_module): Exclude TEMPLATE-TESTS.
16639         (func_verify_nontests_module, func_verify_tests_module): New functions.
16640         (func_get_dependencies): Add implicit dependency for tests modules.
16641         (func_get_tests_module): New function.
16642         (func_modules_transitive_closure): When --with-tests was specified,
16643         include the unit tests as well, unless explicitly avoided.
16644         (func_emit_lib_Makefile_am): Ignore the tests modules here.
16645         (func_emit_tests_Makefile_am): New function.
16646         (func_create_testdir): When --with-tests was specified, emit a
16647         tests/ directory.
16648         * MODULES.html.sh (Future developments): Update.
16649
16650 2005-08-24  Bruno Haible  <bruno@clisp.org>
16651
16652         * modules/tls-tests: New file.
16653         * tests/test-tls.c: New file, from GNU gettext.
16654
16655 2005-08-24  Bruno Haible  <bruno@clisp.org>
16656
16657         * modules/lock-tests: New file.
16658         * tests/test-lock.c: New file, from GNU gettext.
16659
16660 2005-08-24  Bruno Haible  <bruno@clisp.org>
16661
16662         * lib/lock.h: Add multiple inclusion guard.
16663         * lib/tls.h: Add multiple inclusion guard.
16664
16665 2005-08-24  Bruno Haible  <bruno@clisp.org>
16666
16667         * gnulib-tool: Add support for the --aux-dir option to
16668         --create-testdir, --create-megatestdir, --test, --megatest.
16669         (func_create_testdir, func_create_megatestdir): Optionally emit a
16670         AC_CONFIG_AUX_DIR directive.
16671         (create-testdir, create-megatestdir, test, megatest): Provide a
16672         default value for $auxdir.
16673
16674 2005-08-24  Bruno Haible  <bruno@clisp.org>
16675
16676         * gnulib-tool (import): Use compound statement instead of subshell
16677         where possible.
16678
16679 2005-08-24  Bruno Haible  <bruno@clisp.org>
16680
16681         * gnulib-tool (import): Change --aux-dir default to "build-aux".
16682
16683 2005-08-24  Bruno Haible  <bruno@clisp.org>
16684
16685         * gnulib-tool (func_version): Update.
16686
16687 2005-08-24  Bruno Haible  <bruno@clisp.org>
16688
16689         * gnulib-tool (func_import, func_create_testdir,
16690         func_create_megatestdir): Quote all autoconf macro arguments.
16691
16692 2005-08-24  Bruno Haible  <bruno@clisp.org>
16693
16694         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
16695         option --force, because --force causes the aclocal.m4 of each
16696         subdirectory to be newer than the corresponding config.h.in.
16697
16698 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16699
16700         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
16701         All contents moved to gl_REGEX.
16702         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
16703         assume that it does.
16704
16705 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16706
16707         * lib/regex.h (REG_NOSYS)
16708         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
16709         Define, since POSIX requires it as of 2001.
16710         (_REG_ENOSYS)
16711         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
16712         New private symbol, used to keep the enum signed in all cases.
16713         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
16714         Youngman in
16715         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
16716
16717         * lib/regex_internal.c (re_string_skip_chars, register_state):
16718         (calc_state_hash):
16719         Remove forward decls; no longer needed now that we use prototypes.
16720         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
16721         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
16722         (clean_state_log_if_needed): Likewise.
16723
16724 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16725
16726         * config/srclist.txt: Add glibc bugs 1231-1233.
16727
16728 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16729
16730         Fix problems reported by Sam Steingold in
16731         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
16732         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
16733         assumed that reg_errcode_t is a signed type, which is not
16734         necessarily true if _XOPEN_SOURCE is not defined.
16735         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
16736         since some compilers warn about it otherwise.
16737
16738 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16739
16740         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
16741         (init_word_char, create_initial_state, duplicate_node_closure):
16742         (fetch_token, peek_token_bracket, build_range_exp):
16743         (build_collating_symbol): Remove forward decls; no longer needed
16744         now that we use prototypes.
16745
16746         * lib/regcomp.c:
16747         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
16748         (re_compile_fastmap_iter, regcomp, regerror, regfree):
16749         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
16750         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
16751         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
16752         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
16753         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
16754         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
16755         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
16756         (build_range_exp, build_collating_symbol, parse_bracket_exp):
16757         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
16758         (build_charclass, build_charclass_op, fetch_number, create_tree):
16759         (create_token_tree, mark_opt_subexp, duplicate_tree):
16760         Use prototypes rather than old-style definitions.
16761
16762         * lib/regex_internal.c:
16763         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
16764         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
16765         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
16766         (re_string_reconstruct, re_string_peek_byte_case):
16767         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
16768         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
16769         (re_node_set_init_copy, re_node_set_add_intersect):
16770         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16771         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16772         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
16773         (re_acquire_state, re_acquire_state_context, register_state):
16774         (create_ci_newstate, create_cd_newstate, free_state):
16775         Likewise.
16776         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
16777         re_search_2):
16778         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
16779         (re_search_internal, prune_impossible_nodes):
16780         (acquire_init_state_context, check_matching, static):
16781         (check_halt_node_context, check_halt_state_context, proceed_next_node):
16782         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
16783         (update_regs, sift_states_backward, build_sifted_states):
16784         (clean_state_log_if_needed, merge_state_array):
16785         (update_cur_sifted_state, add_epsilon_src_nodes):
16786         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
16787         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
16788         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
16789         (find_recover_state, check_subexp_matching_top, transit_state_mb):
16790         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
16791         (check_arrival, check_arrival_add_next_nodes):
16792         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
16793         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
16794         (check_node_accept_bytes, check_node_accept, extend_buffers):
16795         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
16796         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
16797         (sift_ctx_init):
16798         Likewise.
16799
16800         * lib/regex_internal.h:
16801         (re_string_allocate, re_string_construct, re_string_reconstruct):
16802         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
16803         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
16804         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
16805         (re_string_context_at, re_string_peek_byte_case):
16806         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
16807         is defined, since we now use prototypes always.
16808
16809         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
16810         C89 or better.  All uses removed.
16811
16812 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16813
16814         * config/srclist.txt: Add glibc bugs 1220-1227.
16815
16816 2005-08-20  Jim Meyering  <jim@meyering.net>
16817
16818         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
16819         of unused local, dfa.
16820
16821 2005-08-20  Bruno Haible  <bruno@clisp.org>
16822
16823         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
16824
16825 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16826
16827         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
16828         (re_node_set_insert_last, re_dfa_add_node):
16829         Rename local variables to avoid GCC shadowing warnings.
16830
16831 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16832
16833         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
16834         [defined lint]: Suppress bogus uninitialized-variable warnings.
16835
16836         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
16837         and let the caller return REG_ESPACE if out of space.  This
16838         removes an uninitialied-variable warning with GCC 4.0.1, and also
16839         avoids taking the address of a local variable.  All callers
16840         changed.
16841
16842 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16843
16844         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
16845         $LIBCSRC/posix/regexec.c.
16846         Add glibc bug 1217 for regcomp.c.
16847
16848 2005-08-19  Jim Meyering  <jim@meyering.net>
16849
16850         * lib/regexec.c (proceed_next_node): Redo local variables to
16851         avoid GCC shadowing warnings.
16852
16853 2005-08-18  Bruno Haible  <bruno@clisp.org>
16854
16855         * lib/strstr.c (strstr): Fix return value in multibyte case.
16856         * lib/strcasestr.c (strcasestr): Likewise.
16857
16858 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16859
16860         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
16861
16862 2005-08-17  Jim Meyering  <jim@meyering.net>
16863
16864         Make the %s format (seconds since the epoch) work for a negative
16865         number and when used with a zero-padded field width, e.g. %015s.
16866
16867         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
16868         label so that it precedes the code to set `digits'.  Otherwise,
16869         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
16870         print `00-22'.  Now, it prints `-0022', as it should.
16871
16872 2005-08-17  Bruno Haible  <bruno@clisp.org>
16873
16874         * modules/strstr (Files): Add m4/mbrtowc.m4.
16875         (Depends-on): Add mbuiter.
16876
16877 2005-08-17  Bruno Haible  <bruno@clisp.org>
16878
16879         * modules/strcasestr: New file.
16880         * MODULES.html.sh (String handling, based on ANSI C 89): Add
16881         strcasestr.
16882
16883 2005-08-17  Bruno Haible  <bruno@clisp.org>
16884
16885         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
16886
16887 2005-08-17  Bruno Haible  <bruno@clisp.org>
16888
16889         * modules/mbuiter: New file.
16890         * MODULES.html.sh (Extended multibyte and wide character utilities):
16891         Add mbuiter.
16892
16893 2005-08-17  Bruno Haible  <bruno@clisp.org>
16894
16895         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
16896         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
16897
16898 2005-08-17  Bruno Haible  <bruno@clisp.org>
16899
16900         * m4/strcasestr.m4: New file.
16901
16902 2005-08-17  Bruno Haible  <bruno@clisp.org>
16903
16904         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
16905         * lib/strstr.c: Completely rewritten, with multibyte locale support.
16906
16907 2005-08-17  Bruno Haible  <bruno@clisp.org>
16908
16909         * lib/strcasestr.h: New file.
16910         * lib/strcasestr.c: New file.
16911
16912 2005-08-17  Bruno Haible  <bruno@clisp.org>
16913
16914         * lib/strcasecmp.c: Use mbuiter.h.
16915
16916 2005-08-17  Bruno Haible  <bruno@clisp.org>
16917
16918         * lib/mbuiter.h: New file.
16919
16920 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
16921
16922         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
16923         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
16924         and gl_GETOPT are both invoked via different paths (as happens
16925         with GNU tar CVS because it uses both argp and getopt), the former
16926         wins.
16927
16928 2005-08-16  Bruno Haible  <bruno@clisp.org>
16929
16930         * modules/tls: New file.
16931         * MODULES.html.sh (Multithreading): Add tls.
16932
16933 2005-08-16  Bruno Haible  <bruno@clisp.org>
16934
16935         * modules/strnlen1: New file.
16936         * MODULES.html.sh (String handling): Add strnlen1.
16937
16938 2005-08-16  Bruno Haible  <bruno@clisp.org>
16939
16940         * modules/strcase (Files): Add m4/mbrtowc.m4.
16941         (Depends-on): Add strnlen1, mbchar.
16942
16943 2005-08-16  Bruno Haible  <bruno@clisp.org>
16944
16945         * modules/mbiter: New file.
16946         * MODULES.html.sh (Extended multibyte and wide character utilities):
16947         Add mbiter.
16948
16949 2005-08-16  Bruno Haible  <bruno@clisp.org>
16950
16951         * modules/mbfile: New file.
16952         * MODULES.html.sh (Extended multibyte and wide character utilities):
16953         Add mbfile.
16954
16955 2005-08-16  Bruno Haible  <bruno@clisp.org>
16956
16957         * modules/mbchar: New file.
16958         * MODULES.html.sh (Extended multibyte and wide character utilities):
16959         New section.
16960
16961 2005-08-16  Bruno Haible  <bruno@clisp.org>
16962
16963         * m4/tls.m4: New file, from GNU gettext.
16964
16965 2005-08-16  Bruno Haible  <bruno@clisp.org>
16966
16967         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
16968         always.
16969         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
16970
16971 2005-08-16  Bruno Haible  <bruno@clisp.org>
16972
16973         * m4/mbiter.m4: New file.
16974
16975 2005-08-16  Bruno Haible  <bruno@clisp.org>
16976
16977         * m4/mbfile.m4: New file.
16978
16979 2005-08-16  Bruno Haible  <bruno@clisp.org>
16980
16981         * m4/mbchar.m4: New file.
16982
16983 2005-08-16  Bruno Haible  <bruno@clisp.org>
16984
16985         * lib/tls.h: New file, from GNU gettext.
16986         * lib/tls.c: New file, from GNU gettext.
16987
16988 2005-08-16  Bruno Haible  <bruno@clisp.org>
16989
16990         * lib/strnlen1.h: New file.
16991         * lib/strnlen1.c: New file.
16992
16993 2005-08-16  Bruno Haible  <bruno@clisp.org>
16994
16995         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
16996         (mbi_init): Update.
16997         (mbi_avail, mbi_advance): Let the iteration end before the terminating
16998         NUL byte, not after it.
16999
17000 2005-08-16  Bruno Haible  <bruno@clisp.org>
17001
17002         * lib/strcase.h (strcasecmp): Add note in comments.
17003         * lib/strncasecmp.c: Use code from strcasecmp.c.
17004         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
17005         (strcasecmp): Work correctly in multibyte locales.
17006
17007 2005-08-16  Bruno Haible  <bruno@clisp.org>
17008
17009         * lib/mbiter.h: New file.
17010
17011 2005-08-16  Bruno Haible  <bruno@clisp.org>
17012
17013         * lib/mbfile.h: New file.
17014
17015 2005-08-16  Bruno Haible  <bruno@clisp.org>
17016
17017         * lib/mbchar.h: New file.
17018         * lib/mbchar.c: New file.
17019
17020 2005-08-16  Bruno Haible  <bruno@clisp.org>
17021
17022         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
17023         the valid ones. Makes the comparison operations transitive:
17024         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
17025         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
17026
17027 2005-08-15  Simon Josefsson  <jas@extundo.com>
17028
17029         * modules/ssize_t (License): Change to 'unlimited'.
17030
17031         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
17032
17033 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17034
17035         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
17036         Add comments for each pending glibc patch.
17037
17038 2005-08-15  Bruno Haible  <bruno@clisp.org>
17039
17040         * lib/regex.h (__restrict_arr): Don't define to __restrict if
17041         __cplusplus is defined.
17042
17043 2005-08-14  Jim Meyering  <jim@meyering.net>
17044
17045         Sync from coreutils.
17046
17047         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
17048         Use the hash-table-based cycle-detection code not just when
17049         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
17050         Reported by James Youngman in
17051         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
17052         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
17053         FTS_TIGHT_CYCLE_CHECK.
17054         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
17055         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
17056         once again.
17057         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
17058         * lib/fts.c (fd_safer): Remove decl.
17059         Include fcntl--.h rather than unistd-safer.h
17060         (fts_safe_changedir): Don't call fd_safer; no longer needed
17061         now that we include fcntl--.h.
17062
17063 2005-08-12  Simon Josefsson  <jas@extundo.com>
17064
17065         * modules/getndelim2: Use ssize_t module.
17066         * modules/getnline: Likewise.
17067         * modules/safe-read: Likewise.
17068         * modules/xreadlink: Likewise.
17069
17070         * modules/ssize_t: New file.
17071
17072 2005-08-12  Simon Josefsson  <jas@extundo.com>
17073
17074         * m4/readline.m4: Look for termcap, curses or ncurses if required.
17075
17076 2005-08-12  Simon Josefsson  <jas@extundo.com>
17077
17078         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17079         ssize_t.
17080
17081 2005-08-12  Simon Josefsson  <jas@extundo.com>
17082
17083         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
17084         readline, getdelim and check_version.
17085         (Support for systems lacking ISO C 99: Sizes of integer types):
17086         Add size_max.
17087
17088 2005-08-12  Bruno Haible  <bruno@clisp.org>
17089
17090         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
17091
17092 2005-08-11  Simon Josefsson  <jas@extundo.com>
17093
17094         * modules/readline: New file.
17095
17096         * modules/strnlen (Files): Add strnlen.h.
17097
17098 2005-08-11  Simon Josefsson  <jas@extundo.com>
17099
17100         * m4/readline.m4: New file.
17101
17102 2005-08-11  Simon Josefsson  <jas@extundo.com>
17103
17104         * lib/readline.h, readline.c: New file.
17105
17106 2005-08-11  Simon Josefsson  <jas@extundo.com>
17107
17108         * doc/gnulib.texi (Initial import, Finishing touches): Mention
17109         gl_AVOID.
17110
17111 2005-08-11  Bruno Haible  <bruno@clisp.org>
17112
17113         * lib/strnlen.h (strnlen): Change parameter name to match comment.
17114
17115 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
17116
17117         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
17118
17119 2005-08-10  Simon Josefsson  <jas@extundo.com>
17120
17121         * tests/test-iconvme.c: New file.
17122
17123 2005-08-10  Simon Josefsson  <jas@extundo.com>
17124
17125         * m4/strnlen.m4: New file.
17126
17127         * m4/strndup.m4: Don't check for strnlen declaration, done in
17128         strnlen.m4.
17129
17130 2005-08-10  Simon Josefsson  <jas@extundo.com>
17131
17132         * lib/strndup.c: Use strnlen.h.
17133
17134         * lib/strnlen.h: New file.
17135
17136 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17137
17138         * README: Typos.
17139
17140 2005-08-02  Simon Josefsson  <jas@extundo.com>
17141
17142         * modules/readline: New file.
17143
17144 2005-08-02  Simon Josefsson  <jas@extundo.com>
17145
17146         * modules/getdelim: New file.
17147
17148         * modules/getline: Rewrite, don't use getndelim2.
17149
17150 2005-08-02  Simon Josefsson  <jas@extundo.com>
17151
17152         * m4/getline.m4: Separate out getdelim stuff into separate module.
17153
17154         * m4/getdelim.m4: New file.
17155
17156 2005-08-02  Simon Josefsson  <jas@extundo.com>
17157
17158         * lib/getline.h, getline.c: Rewrite.
17159
17160         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
17161
17162 2005-07-31  Bruno Haible  <bruno@clisp.org>
17163
17164         * lib/lock.h (gl_lock_initializer): New macro.
17165         (gl_lock_define_initialized): Use it.
17166         (gl_rwlock_initializer): New macro.
17167         (gl_rwlock_define_initialized): Use it.
17168         (gl_recursive_lock_initializer): New macro.
17169         (gl_recursive_lock_define_initialized): Use it.
17170
17171 2005-07-30  Karl Berry  <karl@gnu.org>
17172
17173         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
17174         Report from Ben Pfaff, regarding getopt.
17175
17176 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
17177
17178         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
17179         normal way.
17180         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
17181         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
17182         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
17183         (gl_GETOPT): Use the new macros.  Most of the implementation
17184         is moved to the new macros.  This is for programs like Emacs
17185         that don't want all the functionality of gl_GETOPT.
17186
17187 2005-07-26  Bruno Haible  <bruno@clisp.org>
17188
17189         * m4/lock.m4: Update from GNU gettext.
17190
17191 2005-07-26  Bruno Haible  <bruno@clisp.org>
17192
17193         * lib/lock.h: Update from GNU gettext.
17194         * lib/lock.c: Update from GNU gettext.
17195
17196 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
17197
17198         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
17199         obsolescent AC_TRY_RUN.  Include the default includes files, for
17200         'exit'.
17201
17202 2005-07-24  Bruno Haible  <bruno@clisp.org>
17203
17204         * modules/visibility: New file.
17205         * MODULES.html.sh (Misc): Add visibility.
17206
17207 2005-07-24  Bruno Haible  <bruno@clisp.org>
17208
17209         * m4/visibility.m4: New file.
17210
17211 2005-07-24  Bruno Haible  <bruno@clisp.org>
17212
17213         * doc/visibility.texi: New file.
17214
17215 2005-07-22  Bruno Haible  <bruno@clisp.org>
17216
17217         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
17218         $(ALLOCA_H), redundant through BUILT_SOURCES.
17219         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
17220         redundant through BUILT_SOURCES.
17221         * modules/byteswap (Makefile.am): Remove explicit dependency on
17222         $(BYTESWAP_H), redundant through BUILT_SOURCES.
17223         * modules/fnmatch (Makefile.am): Remove explicit dependency on
17224         $(FNMATCH_H), redundant through BUILT_SOURCES.
17225         * modules/getopt (Makefile.am): Remove explicit dependency on
17226         $(GETOPT_H), redundant through BUILT_SOURCES.
17227         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
17228         redundant through BUILT_SOURCES.
17229         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
17230         redundant through BUILT_SOURCES.
17231         * modules/stdbool (Makefile.am): Remove explicit dependency on
17232         $(STDBOOL_H), redundant through BUILT_SOURCES.
17233         * modules/stdint (Makefile.am): Remove explicit dependency on
17234         $(STDINT_H), redundant through BUILT_SOURCES.
17235         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
17236         Remove explicit dependency on $(SYSEXITS_H).
17237         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
17238
17239 2005-07-18  Simon Josefsson  <jas@extundo.com>
17240
17241         * lib/check-version.c (check_version): Accept identical versions too.
17242
17243 2005-07-18  Bruno Haible  <bruno@clisp.org>
17244
17245         * modules/lock: New file.
17246         * MODULES.html.sh (Multithreading): New section.
17247
17248 2005-07-18  Bruno Haible  <bruno@clisp.org>
17249
17250         * m4/lock.m4: New file, from GNU gettext.
17251
17252 2005-07-18  Bruno Haible  <bruno@clisp.org>
17253
17254         * lib/lock.h: New file, from GNU gettext.
17255         * lib/lock.c: New file, from GNU gettext.
17256
17257 2005-07-18  Bruno Haible  <bruno@clisp.org>
17258
17259         * lib/lock.h (gl_once_t): New type.
17260         (gl_once_define, gl_once): New macros.
17261         * lib/lock.c (fresh_once): New variable.
17262         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
17263         functions.
17264
17265 2005-07-16  Simon Josefsson  <jas@extundo.com>
17266
17267         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
17268         workaround, suggested by Bruno.
17269
17270 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17271
17272         * modules/xalloc (Depends-on): Add xalloc-die.
17273         * modules/xvasprintf (Depends-on): Add xalloc-die.
17274
17275 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17276
17277         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
17278         with a minor change.
17279
17280 2005-07-15  Bruno Haible  <bruno@clisp.org>
17281
17282         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
17283         When using lib/poll.c, define poll as rpl_poll.
17284
17285 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
17286
17287         * modules/argp (Depends-on): Remove unlocked-io.
17288
17289 2005-07-14  Derek Price  <derek@ximbiot.com>
17290
17291         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
17292         for glob symlink bug.
17293
17294 2005-07-14  Bruno Haible  <bruno@clisp.org>
17295
17296         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
17297         Instead, test for *_unlocked function declarations directly.
17298
17299 2005-07-11  Simon Josefsson  <jas@extundo.com>
17300
17301         * modules/size_max: New file.
17302
17303         * modules/xsize: Depend on size_max module for size_max.m4.
17304
17305 2005-07-11  Simon Josefsson  <jas@extundo.com>
17306
17307         * lib/size_max.h: New file.
17308
17309 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
17310
17311         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
17312         copyright symbol and the year.
17313         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
17314         (version_etc_va): Use parameterized copyright notice.
17315         Reword to conform to the current GNU coding standards.
17316
17317 2005-07-11  Karl Berry  <karl@gnu.org>
17318
17319         * doc/gnulib.texi (Quoting): new node.
17320         (Initial import): more info, from Patrice.
17321
17322 2005-07-11  Bruno Haible  <bruno@clisp.org>
17323
17324         * gnulib-tool (func_usage): Document option --avoid.
17325         (Command line options): Handle --avoid.
17326         (func_acceptable): New function.
17327         (func_modules_transitive_closure): Use it.
17328
17329 2005-07-11  Bruno Haible  <bruno@clisp.org>
17330
17331         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
17332         Reported by Jim Meyering.
17333
17334 2005-07-10  Bruno Haible  <bruno@clisp.org>
17335
17336         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
17337         Needed when size_t is smaller than 'unsigned int'.
17338         Reported by Paul Eggert.
17339
17340 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17341
17342         * modules/argp (Depends-on): Add unlocked-io
17343
17344 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17345
17346         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
17347         block of defines.
17348
17349 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
17350
17351         * config/srclist.txt: Comment out regcomp.c, since we have a porting
17352         fix now.
17353
17354 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
17355         and Paul Eggert  <eggert@cs.ucla.edu>
17356
17357         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
17358         in wint_t, not wchar_t.  Remove now-unnecessary cast.
17359
17360 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17361
17362         * modules/regex (Files): Add lib/regex_internal.c,
17363         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
17364         (Depends-on): Add extensions.
17365         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
17366
17367 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17368
17369         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
17370         pathconf.
17371         * m4/same.m4 (gl_SAME): Likewise.
17372         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
17373
17374         * m4/regex.m4: Adjust to new libc regex implementation.
17375         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
17376         all the .c and .h parts of (the new) regex.
17377         Quote the m4 stuff better.
17378         Check for RE_ICASE bug of old gnulib.
17379         Check for REG_STARTEND of recent libc.
17380         Rename local variables from jm_* to gl_*.
17381         Quote operand of "test -f".
17382         Say "recent enough" version of libc, not "version 2".
17383         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
17384         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
17385         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
17386         Remove check for btowc, isascii.
17387         Require AM_LANGINFO_CODESET.
17388
17389 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17390
17391         * lib/regex.c, regex.h: Sync from libc.
17392         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
17393         * lib/regexec.c:
17394         New files, synced from libc, except that regex_internal.h
17395         currently has a small porting fix.
17396
17397 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17398
17399         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
17400         regex_internal.c, regexec.c.
17401         Add regex_internal.h too, but as a comment, since the libc version
17402         is currently broken in gnulib mode.
17403
17404 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17405
17406         Support programs like Emacs that use gnulib but not gettext.
17407         * MODULES.html.sh (Internationalization functions): Add gettext-h.
17408         * modules/gettext-h: New file.
17409         * modules/gettext (Files): Remove lib/gettext.h.
17410         (Depends-on): Add gettext-h.
17411         (Makefile.am): Remove lib_SOURCES.
17412         * modules/argmatch, modules/c-stack, modules/closeout:
17413         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
17414         * modules/execute, modules/file-type, modules/getaddrinfo:
17415         * modules/getopt, modules/human, modules/javacomp:
17416         * modules/javaexec, modules/mkdir-p, modules/obstack:
17417         * modules/openat, modules/pagealign_alloc, modules/pipe:
17418         * modules/quotearg, modules/regex, modules/rpmatch:
17419         * modules/unicodeio, modules/userspec, modules/version-etc:
17420         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
17421         * modules/xsetenv:
17422         Depend on gettext-h, not gettext.
17423
17424 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
17425
17426         * gnulib-tool (func_import): Add support for 'public domain' license.
17427         * modules/alloca, modules/atexit, modules/memmove:
17428         Now public domain, not GPL.
17429         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
17430         * modules/realloc, modules/strerror, modules/strtod:
17431         Now LGPL, not GPL.
17432
17433 2005-07-05  Bruno Haible  <bruno@clisp.org>
17434
17435         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
17436         autoconf CVS. Needed for mingw.
17437
17438 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17439
17440         Remove the dependency of the strftime module on the tzset module.
17441         * modules/strftime (Depends-on): Remove dependency on tzset.
17442
17443 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17444
17445         Remove the dependency of the strftime module on the tzset module.
17446         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
17447         gl_FUNC_TZSET_CLOBBER.
17448
17449 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17450
17451         Remove the dependency of the strftime module on the tzset module.
17452         * lib/strftime.c (my_strftime)
17453         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
17454         Copy the input structure, to work around some of the bug with
17455         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
17456         Solaris releases, you should also use the tzset module, but we won't
17457         require it as a dependency any more since we don't want LGPLed code
17458         to depend on GPLed code.
17459
17460 2005-07-02  Jim Meyering  <jim@meyering.net>
17461
17462         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
17463         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
17464         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
17465         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
17466
17467 2005-07-02  Jim Meyering  <jim@meyering.net>
17468
17469         * lib/backupfile.c (backup_args): Change a `0' to NULL.
17470
17471 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
17472
17473         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
17474         declares only 'struct timespec;' (!).
17475
17476 2005-07-01  Jim Meyering  <jim@meyering.net>
17477
17478         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
17479         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
17480         * lib/save-cwd.c, tempname.c:
17481         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
17482         and don't include <sys/file.h>).
17483
17484 2005-06-29  Jim Meyering  <jim@meyering.net>
17485
17486         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
17487         type name.  Use the variable name instead.
17488         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
17489         Likewise.
17490
17491 2005-06-28  Simon Josefsson  <jas@extundo.com>
17492
17493         * modules/check-version (Files): Add check-version.m4.
17494
17495 2005-06-28  Simon Josefsson  <jas@extundo.com>
17496
17497         * m4/check-version.m4: New file, suggested by Jim Meyering
17498         <jim@meyering.net>.
17499
17500 2005-06-28  Simon Josefsson  <jas@extundo.com>
17501
17502         * lib/check-version.h, lib/check-version.c: New files.
17503
17504 2005-06-28  Simon Josefsson  <jas@extundo.com>
17505
17506         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
17507         collision with global variable.  Better indentation.  Don't
17508         increment buffer pointer beyond buffer end.  Based on comments
17509         from Paul Eggert <eggert@cs.ucla.edu>.
17510
17511         * lib/base64.h: Indent.
17512
17513 2005-06-28  Simon Josefsson  <jas@extundo.com>
17514
17515         * doc/gnulib.texi (Library version handling): New section.
17516
17517 2005-06-28  Jim Meyering  <jim@meyering.net>
17518
17519         * check-module (find_included_lib_files): Hard-code another
17520         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
17521         but modules/fts-lgpl (correctly) does not list those files.
17522
17523         * modules/canonicalize (Files): Add lib/pathmax.h.
17524
17525 2005-06-25  Simon Josefsson  <jas@extundo.com>
17526
17527         * modules/check-version: New file.
17528
17529 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
17530
17531         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
17532         initializer of struct addrinfo, as an indication that we don't
17533         care how many members the structure has.
17534
17535 2005-06-24  Derek Price  <derek@ximbiot.com>
17536         and Bruno Haible  <bruno@clisp.org>
17537
17538         Remove stat module & update lstat.
17539         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
17540         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
17541         * m4/stat.m4: Remove this file.
17542
17543 2005-06-24  Derek Price  <derek@ximbiot.com>
17544         and Bruno Haible  <bruno@clisp.org>
17545
17546         Remove stat module & update lstat.
17547         * lib/stat.c: Remove this file...
17548         (slash_aware_lstat): ...moving this content and its support...
17549         * lib/lstat.c (rpl_lstat): ...into here.
17550         * lib/lstat.h: New file.
17551
17552 2005-06-24  Derek Price  <derek@ximbiot.com>
17553         and Bruno Haible  <bruno@clisp.org>
17554
17555         Remove stat module & update lstat.
17556         * config/srclist.txt (libc sources): Remove stat.
17557
17558 2005-06-24  Derek Price  <derek@ximbiot.com>
17559         and Bruno Haible  <bruno@clisp.org>
17560
17561         Remove stat module & update lstat.
17562         * MODULES.html.sh (stat): Remove.
17563         * MODULES.html: Regenerated.
17564         * modules/lstat (Description): Correct function name.
17565         (Files): Add "lstat.h".
17566         (Depends-on): Remove stat, add xalloc, stat-macros.
17567         * modules/stat: Remove this file.
17568         (Include): Add "lstat.h", remove <sys/stat.h>.
17569
17570 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
17571
17572         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
17573         (ranged_convert): Don't save conversion in a temporary struct.
17574         This causes a warning with GCC 4.0.0, and anyway in the typical
17575         case it's not worth the extra 100 bytes or so of code.
17576         (ranged_convert, __mktime_internal): When calling a function via a
17577         pointer P, use P () rather than (*P) (), as we now assume C89 or
17578         better.
17579
17580 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17581
17582         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
17583         "who -r" failed to give output.  Problem reported by Tim Waugh.
17584
17585         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
17586         (xcalloc): Use it to avoid needless tests.
17587         Problem reported by Jim Meyering.
17588
17589 2005-06-20  Derek Price  <derek@ximbiot.com>
17590
17591         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
17592         unnecessary for Autoconfs > 2.59c.
17593
17594 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
17595
17596         * lib/argp.h (__option_is_short): Check upper limit of
17597         __key. Isprint() requires its argument to have the value
17598         of an unsigned char or EOF.
17599
17600 2005-06-16  Jim Meyering  <jim@meyering.net>
17601
17602         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
17603         when either N or S is zero.
17604
17605 2005-06-16  Derek Price  <derek@ximbiot.com>
17606
17607         * m4/bison.m4: Declare YACC & YFLAGS precious.
17608
17609 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
17610
17611         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
17612         multibyte string or pattern, fall back on unibyte matching.
17613         Problem reported by James Youngman.
17614
17615 2005-06-08  Bruno Haible  <bruno@clisp.org>
17616
17617         * modules/csharpcomp: New file.
17618         * MODULES.html.sh (C#): Add csharpcomp.
17619
17620 2005-06-08  Bruno Haible  <bruno@clisp.org>
17621
17622         * m4/csharpcomp.m4: New file, from GNU gettext.
17623
17624 2005-06-08  Bruno Haible  <bruno@clisp.org>
17625
17626         * lib/csharpcomp.h: New file, from GNU gettext.
17627         * lib/csharpcomp.c: New file, from GNU gettext.
17628         * lib/csharpcomp.sh.in: New file, from GNU gettext.
17629
17630 2005-06-08  Bruno Haible  <bruno@clisp.org>
17631
17632         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
17633         warning on mingw.
17634
17635 2005-06-07  Derek Price  <derek@ximbiot.com>
17636
17637         Sync from CVS.
17638         * lib/glob_.h: Indent nested #ifdef.
17639
17640 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17641
17642         Sync from coreutils.
17643         Use "file name" when talking about file names, instead of "filename"
17644         or "path", as per the GNU coding standards.
17645         * lib/mkdir-p.c: Renamed from makepath.c.
17646         (make_dir_parents): Renamed from make_path.  All callers changed.
17647         * lib/mkdir-p.h: Likewise.  All includers changed.
17648         * lib/filenamecat.c: Renamed from path-concat.c.
17649         (file_name_concat): Renamed from path_concat.  All callers changed.
17650         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
17651         * lib/filenamecat.h: Likewise.  All includers changed.
17652         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
17653         in comments or local variable names.
17654         * lib/basename.c: Likewise.
17655         * lib/canonicalize.c, canonicalize.h: Likewise.
17656         * lib/dirname.c, dirname.h: Likewise.
17657         * lib/euidaccess.c: Likewise.
17658         * lib/exclude.c: Likewise
17659         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
17660         * lib/fsusage.c, fsuage.h: Likewise.
17661         * lib/fts.c, fts_.h: Likewise.
17662         * lib/getcwd.c: Likewise.
17663         * lib/getloadavg.c: Likewise.
17664         * lib/mkstemp.c: Likewise.
17665         * lib/mountlist.c, mountlist.h: Likewise.
17666         * lib/openat.c, openat.h: Likewise.
17667         * lib/readlink-stub.c: Likewise.
17668         * lib/readutmp.c, readutmp.h: Likewise.
17669         * lib/rename.c: Likewise.
17670         * lib/rmdir.c: Likewise.
17671         * lib/same.c: Likewise.
17672         * lib/savedir.c: Likewise.
17673         * lib/stripslash.c: Likewise.
17674         * lib/tempname.c: Likewise.
17675         * lib/xreadlink.c: Likewise.
17676         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
17677         All uses changed.
17678         * lib/exclude.h: Likewise.
17679
17680         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
17681         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17682         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
17683         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17684         * lib/pathmax.h: Include <limits.h> unconditionally, since other
17685         files have been getting away with it for years (MORE/BSD 4.3
17686         is extinct now).
17687         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
17688         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17689
17690         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
17691         Define to 256, not 255, as per modern POSIX.
17692
17693 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17694
17695         Sync from coreutils.
17696         Use "file name" when talking about file names, instead of "filename"
17697         or "path", as per the GNU coding standards.
17698         * MODULES.html.sh: mkdir-p renamed from makepath.
17699         filenamecat renamed from path-concat.
17700         * modules/filenamecat: Renamed from modules/path-concat.
17701         (Files): filenamecat.h and filenamecat.c renamed from
17702         path-concat.h and path-concat.c.
17703         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
17704         (Include): filenamecat.h, not path-concat.h.
17705         * modules/mkdir-p: Renamed from modules/makepath.
17706         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
17707         makepath.c.
17708         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
17709         (Include): mkdir-p.h, not makepath.h.
17710
17711 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17712
17713         Sync from coreutils.
17714         * m4/mkdir-p.m4: Renamed from makepath.m4.
17715         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
17716         Rename files from makepath.c to mkdir-p.c, and from
17717         makepath.h to mkdir-p.h.
17718         * m4/filenamecat.m4: Renamed from path-concat.m4.
17719         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
17720         Rename files from path-concat.c to filenamecat.c,
17721         and from path-concat.h to filenamecat.h.
17722         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
17723         "file name" in local variables or comments.
17724         * m4/rename.m4: Likewise.
17725
17726 2005-06-01  Bruno Haible  <bruno@clisp.org>
17727
17728         * modules/csharpexec: New file.
17729         * MODULES.html.sh (C#): New section.
17730
17731 2005-06-01  Bruno Haible  <bruno@clisp.org>
17732
17733         * m4/csharp.m4: New file, from GNU gettext.
17734         * m4/csharpexec.m4: New file, from GNU gettext.
17735
17736 2005-06-01  Bruno Haible  <bruno@clisp.org>
17737
17738         * lib/csharpexec.h: New file, from GNU gettext.
17739         * lib/csharpexec.c: New file, from GNU gettext.
17740         * lib/csharpexec.sh.in: New file, from GNU gettext.
17741
17742 2005-05-31  Derek Price  <derek@ximbiot.com>
17743             Paul Eggert  <eggert@cs.ucla.edu>
17744
17745         Sync from cvs.
17746         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
17747
17748 2005-05-31  Derek Price  <derek@ximbiot.com>
17749             Paul Eggert  <eggert@cs.ucla.edu>
17750
17751         Sync from cvs.
17752         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
17753
17754 2005-05-29  Derek Price  <derek@ximbiot.com>
17755
17756         * config/srclist.txt (glob_.h, glob.c): Add these files.
17757
17758 2005-05-29  Derek Price  <derek@ximbiot.com>
17759
17760         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
17761         * modules/glob: New file.
17762         * modules/getlogin_r: Add link to POSIX spec in description.
17763
17764 2005-05-29  Derek Price  <derek@ximbiot.com>
17765             Paul Eggert  <eggert@cs.ucla.edu>
17766
17767         * m4/glob.m4: New file.
17768
17769 2005-05-29  Derek Price  <derek@ximbiot.com>
17770             Paul Eggert  <eggert@cs.ucla.edu>
17771
17772         * lib/glob_.h, lib/glob.c: New files.
17773
17774 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17775
17776         * modules/fts (Files): Remove m4/inttypes-pri.m4.
17777         * modules/fts-lgpl (Depends-on): Remove gettext.
17778
17779 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17780
17781         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
17782         and don't require gt_INTTYPES_PRI.
17783
17784 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17785
17786         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
17787
17788         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
17789         the configuration hassle isn't worth it.
17790         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
17791         (LONGEST_MODIFIER, PRIuMAX): Remove.
17792
17793 2005-05-27  Bruno Haible  <bruno@clisp.org>
17794
17795         * lib/getlogin_r.h: Remove second include of <stddef.h>.
17796
17797 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
17798
17799         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
17800         _POSIX_PTHREAD_SEMANTICS for Solaris.
17801
17802 2005-05-25  Derek Price  <derek@ximbiot.com>
17803
17804         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
17805
17806 2005-05-25  Derek Price  <derek@ximbiot.com>
17807             Paul Eggert  <eggert@cs.ucla.edu>
17808
17809         * modules/getlogin_r, m4/getlogin_r.m4: New files.
17810         * lib/getlogin_r.c, getlogin_r.h: New files.
17811
17812 2005-05-25  Bruno Haible  <bruno@clisp.org>
17813             Derek Price  <derek@ximbiot.com>
17814
17815         * lib/getlogin_r.h: Simplify API documentation.
17816
17817 2005-05-23  Derek Price  <derek@ximbiot.com>
17818
17819         * modules/minmax (Files): Add m4/minmax.m4.
17820         (configure.ac): Add gl_MINMAX.
17821
17822 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
17823
17824         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
17825         so that unistd-safer.h (GPL'ed code) need not be included.
17826
17827 2005-05-22  Bruno Haible  <bruno@clisp.org>
17828
17829         * m4/minmax.m4: New file.
17830         Based on a patch by Derek Price <derek@ximbiot.com>.
17831
17832 2005-05-22  Bruno Haible  <bruno@clisp.org>
17833
17834         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
17835         (INT64_MIN): Fix definition.
17836         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
17837
17838         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
17839         NEED_SIGNED_INT_TYPES.
17840
17841         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
17842         HAVE_SYSTEM_INTTYPES.
17843
17844 2005-05-22  Bruno Haible  <bruno@clisp.org>
17845
17846         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
17847         Also include <sys/param.h> if it defines MIN, MAX.
17848         Based on a patch by Derek Price <derek@ximbiot.com>.
17849
17850 2005-05-21  Jim Meyering  <jim@meyering.net>
17851
17852         * modules/fts (Files): Add m4/inttypes-pri.m4.
17853         (Depends-on): Add lstat and remove gettext.  Alphabetize.
17854
17855 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17856
17857         New fts module.
17858         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
17859         (setup_dir, free_dir): New functions.
17860         (enter_dir, leave_dir): Define trivial
17861         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
17862         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
17863         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
17864         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
17865         Move to fts-cycle.c.
17866         (fts_open): Use setup_dir.
17867         (fts_close): Use free_dir.
17868         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
17869         This adds a label and some gotos, but the alternatives were messier.
17870         Check for memory allocation failure when entering a dir.
17871         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
17872         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
17873         (FTS): New member fts_cycle, that is a union that contains the
17874         old active_dir_ht and cycle_state.  All uses changed to mention
17875         fts_cycle.ht and fts_cycle.state.
17876         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
17877         fts.c, with the following changes:
17878         (setup_dir, free_dir): New functions.
17879         (enter_dir): Now returns bool.  Return true if successful, false
17880         if memory exhausted.  All callers changed.
17881         Do not bother partly cleaning up on
17882         memory allocation failure; that is free_dir's job.
17883         However, free ad if hash_insert fails, to avoid memory leak.
17884         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
17885         fts->fts_options to see which union member to use.
17886
17887 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17888
17889         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
17890         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
17891
17892 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17893
17894         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
17895
17896 2005-05-20  Jim Meyering  <jim@meyering.net>
17897
17898         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
17899         Now a macro, to pacify GCC.
17900
17901 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
17902
17903         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
17904         of -1.
17905
17906 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
17907
17908         * lib/chown.c (rpl_chown): Return -1 on failure.
17909
17910 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
17911
17912         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
17913         Don't check for stddef.h.
17914         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
17915         don't use its results.
17916         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
17917         since we include them unconditionally.  Don't require
17918         AM_STDBOOL_H, since stdbool is a prerequisite.
17919         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
17920         since we assume C89 or better.
17921         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
17922         as we don't use their results.
17923         Don't check for fchdir, memmove, memset, strrchr, as we use
17924         them unconditionally.
17925         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
17926         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
17927
17928 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
17929
17930         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
17931         Include <stddef.h> unconditionally, since we assume C89 now.
17932         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
17933         * lib/fts.c: Include fts_.h first, to check interface.
17934         Do not include intprops.h; no longer needed.
17935         Include cycle-check.h and hash.h, since fts_.h no longer does.
17936         Remove unnecessary casts of closedir to void.
17937         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
17938         decide whether to decrement nlinks.
17939         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
17940         (FTS): Use struct hash_table * instead of Hash_table, so that
17941         we no longer need to include hash.h here.
17942
17943 2005-05-18  Jim Meyering  <jim@meyering.net>
17944
17945         * modules/dirfd (License): Change to LGPL.  Most of the code
17946         is already in the public domain.
17947
17948 2005-05-18  Jim Meyering  <jim@meyering.net>
17949
17950         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
17951         Reported by Yoann Vandoorselaere.
17952
17953 2005-05-17  Jim Meyering  <jim@meyering.net>
17954
17955         * m4/fts.m4: New file, from coreutils.
17956
17957 2005-05-17  Jim Meyering  <jim@meyering.net>
17958
17959         * lib/fts.c, lib/fts_.h: New files, from coreutils.
17960
17961 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17962
17963         Sync from coreutils.
17964         * m4/unlinkdir.m4: New file.
17965
17966 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17967
17968         Sync from coreutils.
17969         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
17970         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
17971         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
17972         White space changes only.
17973         * lib/makepath.c (make_path): Port to hosts where leading "//" is
17974         special.
17975         * lib/yesno.c: Include getline.h, not ctype.h.
17976         (yesno): Don't remove leading white space; POSIX doesn't allow it.
17977         Use getline to remove arbitrary restriction on response length.
17978
17979 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17980
17981         * config/srclist-update: Spell out "Street" in FSF postal
17982         mail address; this is the style the FSF seems to prefer.
17983
17984         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
17985         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
17986         this updates FSF postal mail address.
17987
17988         Sync from coreutils.
17989         * modules/unlinkdir: New file.
17990         * modules/yesno (Depends-on): Add getline.
17991         * MODULES.html.sh (File system functions): Add unlinkdir.
17992
17993 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17994
17995         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
17996         lib/strsep.h:
17997         Change the initial comment to refer to GPL, not LGPL.
17998         gnulib-tool will change it to LGPL as needed.
17999
18000         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
18001         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
18002         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
18003         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
18004         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
18005         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
18006         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
18007         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
18008         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
18009         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
18010         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
18011         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
18012         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
18013         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
18014         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
18015         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
18016         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
18017         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
18018         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
18019         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
18020         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
18021         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
18022         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
18023         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
18024         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
18025         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
18026         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
18027         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
18028         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
18029         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
18030         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
18031         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
18032         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
18033         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
18034         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
18035         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
18036         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
18037         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
18038         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
18039         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
18040         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
18041         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
18042         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
18043         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
18044         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
18045         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
18046         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
18047         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
18048         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
18049         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
18050         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
18051         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
18052         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
18053         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
18054         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
18055         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
18056         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
18057         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
18058         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
18059         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
18060         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
18061         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
18062         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
18063         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
18064         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
18065         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
18066         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
18067         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
18068         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
18069         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
18070         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
18071         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
18072         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
18073         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
18074         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
18075         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
18076         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
18077         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
18078         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
18079         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
18080         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
18081         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
18082         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
18083         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
18084         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
18085         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
18086         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
18087         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
18088         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
18089         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
18090         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
18091         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
18092         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
18093         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
18094         lib/yesno.c, lib/yesno.h:
18095         Update FSF postal mail address.
18096
18097 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
18098
18099         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
18100         tests/test-memmem.c, tests/test-stpncpy.c:
18101         Update FSF postal mail address.
18102
18103 2005-05-13  Bruno Haible  <bruno@clisp.org>
18104
18105         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
18106         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
18107         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
18108         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
18109         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
18110         Add support for 64-bit integers in the MSVC compiler.
18111
18112 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18113
18114         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
18115
18116 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
18117
18118         * gnulib-tool (func_import): Sort and uniquify recommended includes.
18119
18120 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
18121
18122         * doc/getdate.texi (General date syntax): Don't say that date
18123         date --iso-8601=ns generates acceptable dates; it doesn't yet.
18124         Problem reported by Nic Ferrier.
18125
18126 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18127
18128         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
18129         specified in ai_socktype. Fix invalid ai_protocol
18130         check. ai_protocol is usually set to 0 or depending on
18131         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
18132         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
18133         ai_socktype / ai_protocol in the returned addrinfo structure.
18134
18135 2005-05-10  Simon Josefsson  <jas@extundo.com>
18136
18137         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
18138         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18139
18140 2005-05-10  Karl Berry  <karl@gnu.org>
18141
18142         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
18143         (from http://www.gnu.org/licenses).
18144         * doc/COPYING.LIB: also rename to COPYING.LESSER.
18145         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
18146         fdl.texi suffices.
18147
18148 2005-05-10  Karl Berry  <karl@gnu.org>
18149
18150         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
18151         (COPYING.DOC): remove.
18152
18153         * config/srclist-update: new FSF address.
18154
18155 2005-05-10  Derek Price  <derek@ximbiot.com>
18156
18157         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
18158         possible.
18159
18160 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18161             Bruno Haible  <bruno@clisp.org>
18162
18163         * modules/inet_ntop: New file.
18164         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18165         inet_ntop.
18166
18167 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18168             Bruno Haible  <bruno@clisp.org>
18169
18170         * m4/inet_ntop.m4: New file.
18171
18172 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18173             Bruno Haible  <bruno@clisp.org>
18174
18175         * lib/inet_ntop.h: New file.
18176         * lib/inet_ntop.c: New file, from glibc with modifications.
18177
18178 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
18179
18180         * modules/time_r (License): Change to LGPL.
18181         * modules/extensions (License): Change to LGPL.  Actually,
18182         the license is more permissive than that, but currently gnulib-tool
18183         doesn't know how to handle more-permissive licenses.
18184
18185         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
18186         Problem reported by Dave Love.
18187
18188 2005-05-08  Jim Meyering  <jim@meyering.net>
18189
18190         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
18191         blank.
18192
18193 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
18194
18195         * modules/argmatch (Depends-on): Add stdbool.
18196         * modules/backupfile (Depends-on): Likewise.
18197         * modules/chdir-long (Depends-on): Likewise.
18198         * modules/closeout (Depends-on): Likewise.
18199         * modules/cycle-check (Depends-on): Likewise.
18200         * modules/dirname (Depends-on): Likewise.
18201         * modules/fnmatch (Depends-on): Likewise.
18202         * modules/fsusage (Depends-on): Likewise.
18203         * modules/fwriteerror (Depends-on): Likewise.
18204         * modules/getcwd (Depends-on): Likewise.
18205         * modules/getloadavg (Depends-on): Likewise.
18206         * modules/hard-locale (Depends-on): Likewise.
18207         * modules/makepath (Depends-on): Likewise.
18208         * modules/mountlist (Depends-on): Likewise.
18209         * modules/nanosleep (Depends-on): Likewise.
18210         * modules/posixtm (Depends-on): Likewise.
18211         * modules/quotearg (Depends-on): Likewise.
18212         * modules/readtokens (Depends-on): Likewise.
18213         * modules/readtokens0 (Depends-on): Likewise.
18214         * modules/readutmp (Depends-on): Likewise.
18215         * modules/save-cwd (Depends-on): Likewise.
18216         * modules/strftime (Depends-on): Likewise.
18217         * modules/userspec (Depends-on): Likewise.
18218         * modules/utimecmp (Depends-on): Likewise.
18219         * modules/xgetcwd (Depends-on): Likewise.
18220         * modules/xnanosleep (Depends-on): Likewise.
18221         * modules/xstrtod (Depends-on): Likewise.
18222         * modules/yesno (Depends-on): Likewise.
18223
18224 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
18225
18226         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
18227         needless checks.
18228
18229 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18230
18231         Merge from coreutils.  Among other things,
18232         add bulletproofing for cases where stdin, stdout, or stderr are closed.
18233         * lib/fd-safer.c: New file.
18234         * lib/fcntl-safer.h, open-safer.c: Remove.
18235         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
18236         * lib/dup-safer.c: Include unistd-safer.h first.
18237         Don't include errno.h.
18238         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
18239         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
18240         * lib/file-type.c: Rely on file-type.h change.
18241         * lib/getloadavg.c: Include unistd-safer.h.
18242         (getloadavg): Use safer open.
18243         * lib/getusershell.c: Include "stdio-safer.h".
18244         (getusershell): Use safer fopen.
18245         * lib/long-options.c (long_options): Use NULL rather than 0.
18246         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
18247         'free'.
18248         * lib/modechange.c: Likewise.
18249         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
18250         (MODE_DONE): New constant.
18251         (struct mode_change): Remove 'next' member.
18252         (make_node_op_equals): New function; like the old one of the
18253         same name, except it allocates an array.
18254         (mode_compile, mode_create_from_ref): Use it.
18255         (mode_compile): Allocate result as an array, not a linked list.
18256         Parse octal string ourself, so that we catch mistakes like "+0".
18257         (mode_adjust): Arg is an array, not a linked list.
18258         * lib/modechange.c: Include stat-macros.h, xalloc.h.
18259         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
18260         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
18261         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
18262         Remove.  This is now stat-macros.h's job.
18263         (talloc): Remove.  All callers replaced by xalloc, so that
18264         our invokers don't have to worry about reporting memory failures.
18265         (make_node_op_equals): Remove.
18266         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18267         New constants.
18268         (struct mode_change): Moved here from modechange.h.
18269         (mode_append_entry): Remove.
18270         (mode_compile): Remove MASKED_OPS arg, since it encouraged
18271         apps to have incorrect behavior.  Use simpler algorithm for head
18272         and tail.  Don't futz with umask; that's now the job of mode_adjust.
18273         Detect more invalid usages rather than having somewhat-random behavior.
18274         Don't insert an "a=" action, as that leads to incorrect behavior.
18275         (mode_compile, mode_create_from_ref): Return NULL on error instead
18276         of an enum, since now there's only one way to have an error.  All
18277         callers changed.
18278         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
18279         at the correct time.  Simplify calculation of "+u" and its ilk.
18280         Don't mishandle "+X".
18281         (mode_free): Remove "register" and localize decls.
18282         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18283         (struct mode_change): Move to modechange.c; callers don't
18284         need to see this stuff.
18285         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
18286         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
18287         (mode_change, mode_adjust): Reflect the new signatures noted above.
18288         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
18289         that might redefine system include files.
18290         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
18291         (my_usleep): Use NULL rather than (void *) 0.
18292         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
18293         Use siginterrupt to specify that system calls should be interrupted.
18294         (rpl_nanosleep): Move initialization of suspended closer to call of
18295         my_usleep.
18296         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
18297         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
18298         (desirable_utmp_entry): New function.
18299         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
18300         using x2nrealloc, to simplify logic.
18301         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
18302         size calculation.  Do not assume utmp file is a regular file.
18303         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
18304         (READ_UTMP_CHECK_PIDS): New constant.
18305         * lib/save-cwd.c: Include unistd-safer.h.
18306         (save_cwd): Use fd_safer.
18307         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
18308         [!_LIBC] Include "stat-macros.h" instead.
18309         * lib/unistd-safer.h (fd_safer): New decl.
18310
18311 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18312
18313         * modules/getloadavg (Depends-on): Add unistd-safer.
18314         * modules/getusershell (Depends-on): Add stdio-safer.
18315         * modules/lstat (Depends-on): Remove xalloc.
18316         * modules/mkstemp (Depends-on): Add stat-macros.
18317         * modules/modechange (Depends-on): Remove xstrtol.
18318         Add stat-macros, xalloc.
18319         * modules/save-cwd (Depends-on): Add unistd-safer.
18320         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
18321         * modules/unistd-safer (Files): Add lib/fd-safer.c
18322         (Makefile.am): Remove lib_SOURCES.
18323
18324         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
18325         Remove fcntl-safer; unistd-safer supersedes it.
18326
18327 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18328
18329         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
18330         AC_HEADER_STAT.
18331         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
18332         (gl_PREREQ_CHOWN): Remove.
18333         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
18334         it.  Don't require AC_HEADER_STAT.
18335         (gl_PREREQ_LSTAT): Remove.
18336         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
18337         Don't require AC_HEADER_STAT.
18338         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
18339         (gl_PREREQ_RMDIR): Remove.
18340         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
18341         mention stat-macros.h or AC_HEADER_STAT, since we'll make
18342         the stat-macros module a prerequisite.
18343         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
18344         * m4/filemode.m4 (gl_FILEMODE): Likewise.
18345         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
18346         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
18347         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
18348         variable names.
18349         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
18350         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
18351         variable prefixes.
18352         * m4/fcntl-safer.m4: Remove.
18353         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
18354         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
18355         Invoke gl_PREREQ_FD_SAFER.
18356         (gl_PREREQ_FD_SAFER): New macro.
18357         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
18358         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
18359         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
18360         Remove duplicate call to AC_LIBOBJ(readutmp).
18361         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
18362
18363         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
18364         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
18365
18366 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18367
18368         * MODULES.html.sh (Misc): Add byteswap.
18369
18370 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18371
18372         * modules/getcwd (Depends-on): Add extensions.
18373         * modules/openat (Depends-on): Likewise.
18374
18375 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18376
18377         * modules/byteswap: New file.
18378
18379 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18380
18381         * m4/byteswap.m4: New file.
18382
18383 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18384
18385         * lib/byteswap_.h: New file.
18386
18387 2005-04-25  Karl Berry  <karl@gnu.org>
18388
18389         * m4/gettext.m4: Update from GNU gettext 0.14.4.
18390
18391 2005-04-25  Albert Chin  <china@thewrittenword.com>
18392
18393         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
18394         Toolkit C bug.
18395
18396 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
18397
18398         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
18399         (func_ln_if_changed) Remove forcibly for no error message
18400         in case file does not exist.
18401
18402 2005-04-19  Simon Josefsson  <jas@extundo.com>
18403
18404         * gnulib-tool (Options): Make --symlink mean --symbolic.
18405
18406 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
18407
18408         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
18409
18410 2005-04-16  Simon Josefsson  <jas@extundo.com>
18411
18412         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
18413
18414 2005-04-15  Simon Josefsson  <jas@extundo.com>
18415
18416         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
18417
18418 2005-04-15  Simon Josefsson  <jas@extundo.com>
18419
18420         * gnulib-tool: Rename --symlink to --symbolic.
18421
18422 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
18423
18424         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
18425         symbolic links to files instead of copying/moving.  Add --aux-dir,
18426         specifying directory relative --dir where auxiliary build tools
18427         are placed.
18428
18429 2005-04-14  Bruno Haible  <bruno@clisp.org>
18430
18431         * modules/allocsa (License): Change to LGPL.
18432         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
18433
18434 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
18435
18436         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
18437         that "UTC +1 second" continues to work.  Problem reported
18438         by Dmitry V. Levin.
18439         (relunit_snumber): New rule.
18440         (relunit): Use it.
18441
18442 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
18443
18444         * lib/getdate.y (universal_time_zone_table): New constant.
18445         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
18446         universal_time_zone_table.
18447         (lookup_zone): Prefer universal_time_zone_table to
18448         local_time_zone_table, so that "GMT" time stamps are allowed in
18449         London during the summer.  Problem reported by Ian Abbott.
18450
18451 2005-04-12  Jim Meyering  <jim@meyering.net>
18452
18453         * lib/human.c (humblock): Set *options even when returning due to
18454         xstrtoumax conversion failure.  Thanks to a used-uninitialized
18455         warning from gcc-4.
18456
18457 2005-04-09  Jim Meyering  <jim@meyering.net>
18458
18459         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
18460         -Wuninitialized: initialize tm0.tm_year.
18461
18462 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
18463
18464         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
18465         count, since there's no maximum.  All uses changed.
18466         Add member dsts_seen.
18467         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
18468         not being INT_MAX.
18469         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
18470         Use pc_rels_seen to decide whther a date is absolute.
18471
18472         * lib/getdate.y (number): Don't overwrite year.
18473         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
18474         check.
18475
18476 2005-04-02  Simon Josefsson  <jas@extundo.com>
18477
18478         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
18479         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
18480
18481 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
18482
18483         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
18484         where no absolute path name can be longer than PATH_MAX.
18485
18486 2005-03-27  Jim Meyering  <jim@meyering.net>
18487
18488         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
18489
18490 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
18491
18492         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
18493         "one's complement" -> "ones' complement" in comment, as per Knuth.
18494         "value of type" -> "type or expression" in comment.
18495         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
18496
18497 2005-03-26  Jim Meyering  <jim@meyering.net>
18498
18499         Comment nits.
18500         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
18501         Correct typos: s/or/of/.
18502
18503 2005-03-26  Jim Meyering  <jim@meyering.net>
18504
18505         * modules/check-include-files: Move to ../ and rename to...
18506         * check-module: ...this.
18507
18508 2005-03-25  Jim Meyering  <jim@meyering.net>
18509
18510         * modules/xvasprintf (Files): Add xalloc.h.
18511
18512 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
18513
18514         * modules/gettext (Files): config/config.rpath ->
18515         build-aux/config.rpath
18516         * modules/iconv (Files): Likewise.
18517         Problem reported by Oskar Liljeblad.
18518
18519 2005-03-23  Jim Meyering  <jim@meyering.net>
18520
18521         * modules/check-include-files: New script to check for
18522         missing dependencies, multiple includes, etc.
18523
18524         * modules/c-strtold (Depends-on): Add xalloc.
18525         * modules/c-strtod (Depends-on): Add xalloc.
18526         * modules/hash (Depends-on): Add xalloc.
18527         (Files): Remove lib/xalloc.h.
18528
18529         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
18530         * modules/userspec (Files): Add lib/inttostr.h.
18531
18532 2005-03-23  Jim Meyering  <jim@meyering.net>
18533
18534         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
18535
18536 2005-03-22  Jim Meyering  <jim@meyering.net>
18537
18538         * modules/stat-macros: New module.
18539         * modules/canonicalize, modules/euidaccess, modules/file-type,
18540         * modules/filemode, modules/lchown, modules/makepath,
18541         * modules/rmdir, modules/stat: Depend on new stat-macros module
18542         rather than listing lib/stat-macros.h manually.
18543         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
18544
18545 2005-03-22  Jim Meyering  <jim@meyering.net>
18546
18547         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
18548
18549 2005-03-22  Bruno Haible  <bruno@clisp.org>
18550
18551         * config/srclist.txt: Replace target directory 'config' with
18552         'build-aux'.
18553         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
18554         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
18555         ../build-aux/.
18556
18557 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
18558
18559         * modules/chdir-long (Depends-on): Add mempcpy.
18560
18561         * modules/acl, modules/backupfile, modules/c-strtod,
18562         modules/c-strtold, modules/canon-host, modules/canonicalize,
18563         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
18564         modules/exclude, modules/exitfail, modules/file-type,
18565         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
18566         modules/getdate, modules/getline, modules/getpagesize,
18567         modules/getpass, modules/getugroups, modules/group-member,
18568         modules/hard-locale, modules/hash, modules/human, modules/idcache,
18569         modules/inttostr, modules/long-options, modules/makepath,
18570         modules/md5, modules/memcasecmp, modules/memcoll,
18571         modules/modechange, modules/mountlist, modules/path-concat,
18572         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
18573         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
18574         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
18575         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
18576         modules/strftime, modules/strndup, modules/strverscmp,
18577         modules/timespec, modules/unlocked-io, modules/userspec,
18578         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
18579         modules/yesno:
18580         Remove lib_SOURCES line from Makefile.am section, as this is now
18581         done automatically by the corresponding Autoconf macro.
18582
18583 2005-03-21  Jim Meyering  <jim@meyering.net>
18584
18585         Changes imported from coreutils.
18586
18587         * lib/cycle-check.c: Don't include xalloc.h.
18588
18589         * lib/path-concat.c: Don't include assert.h.
18590         (path_concat): Remove assertion that would have triggered
18591         for ABASE starting with more than one slash.
18592         Reported by Andreas Schwab.
18593
18594         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
18595         properly when ABASE is an absolute file name.
18596         Correct the description of this function.
18597         Include <assert.h>.
18598         Add an assertion and a test driver.
18599         This fixes a bug introduced on 2004-07-02.
18600         Andreas Schwab reported the resulting failure of cp --parents:
18601         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
18602
18603 2005-03-21  Jim Meyering  <jim@meyering.net>
18604
18605         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
18606         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
18607
18608 2005-03-21  Jim Meyering  <jim@meyering.net>
18609         and  Paul Eggert  <eggert@cs.ucla.edu>
18610
18611         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
18612         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
18613         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
18614         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
18615         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
18616         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
18617         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
18618         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
18619         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
18620         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
18621         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
18622         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
18623         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
18624         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
18625         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
18626         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
18627         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
18628         for these modules.
18629
18630 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
18631
18632         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
18633         (which shouldn't happen), generate nothing instead of returning 0
18634         immediately, so that nstrftime (NULL, ...) doesn't return 0.
18635
18636 2005-03-16  Bruno Haible  <bruno@clisp.org>
18637
18638         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
18639         HAVE_LONGLONG_64BIT.
18640
18641 2005-03-16  Bruno Haible  <bruno@clisp.org>
18642
18643         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
18644         HAVE_LONGLONG_64BIT.
18645
18646 2005-03-16  Bruno Haible  <bruno@clisp.org>
18647
18648         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
18649         HAVE_LONGLONG_64BIT.
18650
18651 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
18652
18653         * lib/strftime.c (my_strftime): Prepend space to format so that we can
18654         reliably distinguish strftime failure from empty output on POSIX
18655         hosts.
18656
18657 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
18658
18659         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
18660         (iconv_string): Don't guess a size-zero buffer, as that might cause
18661         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
18662         result would be 'too large', where 'too large' is (heuristically)
18663         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
18664         overflow concerns.  This will prevent some unwanted malloc failures
18665         when the inputs are very large.
18666
18667 2005-03-15  Karl Berry  <karl@gnu.org>
18668
18669         * config/srclist.txt (config.rpath): from gettext.
18670         * config/config.rpath: update.
18671
18672 2005-03-15  Bruno Haible  <bruno@clisp.org>
18673
18674         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
18675         to 'negate'.
18676
18677         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
18678         variable.
18679
18680         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
18681         results.
18682
18683 2005-03-14  Simon Josefsson  <jas@extundo.com>
18684
18685         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
18686         <fx@gnu.org>.
18687
18688 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
18689
18690         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
18691         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
18692         intprops.h.
18693         * lib/strtol.c: Likewise.
18694
18695 2005-03-14  Jim Meyering  <jim@meyering.net>
18696
18697         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
18698         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
18699         to be nonzero so that we (and caller) can detect the difference
18700         between a valid zero-length expansion and an error return, even
18701         when the underlying strftime fails before writing anything into
18702         that location.
18703
18704 2005-03-14  Bruno Haible  <bruno@clisp.org>
18705
18706         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
18707         Update from GNU gettext 0.14.3.
18708
18709 2005-03-10  Jim Meyering  <jim@meyering.net>
18710
18711         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
18712
18713 2005-03-10  Jim Meyering  <jim@meyering.net>
18714
18715         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
18716         so that this module works on systems without fchdir.
18717
18718 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
18719
18720         Factor int-properties macros into a single file, except for
18721         glibc-related files.
18722         * lib/intprops.h: New file.
18723         * lib/getloadavg.c: Include it instead of limits.h.
18724         (INT_STRLEN_BOUND): Remove.
18725         * lib/human.c: Include intprops.h.
18726         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
18727         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
18728         302/1000.
18729         * lib/inttostr.h: Include intprops.h instead of limits.h.
18730         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
18731         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
18732         for consistency with intprops.h.
18733         (time_t_is_integer, twos_complement_arithmetic): Use them.
18734         * lib/sig2str.h: Include <signal.h>, intprops.h.
18735         (INT_STRLEN_BOUND): Remove.
18736         * lib/strftime.c (TYPE_SIGNED): Remove.
18737         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
18738         * lib/strtol.c: Adjust comments to match intprops.h.
18739         * lib/userspec.c: Include intprops.h.
18740         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
18741         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
18742         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
18743         instead of rolling our own expressions.
18744         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
18745
18746         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
18747         instead of int.
18748         (my_strftime): Do not mishandle years close to INT_MAX, by doing
18749         the right thing even if adding 1900 would overflow.  Similarly
18750         for tm_mon + 1 and tm_yday + 1.
18751         Make %Y always equivalent to %C%y, and similarly for %G and %g.
18752         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
18753         (DO_SIGNED_NUMBER): New macro.
18754         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
18755
18756 2005-03-07  Bruno Haible  <bruno@clisp.org>
18757
18758         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
18759
18760 2005-03-07  Bruno Haible  <bruno@clisp.org>
18761
18762         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
18763
18764 2005-03-04  Derek R. Price  <derek@ximbiot.com>
18765
18766         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
18767         (func_import): Only replace files via --import when they have actually
18768         changed.
18769
18770 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18771
18772         * m4/mmap-anon.m4: New file.
18773         * m4/pagealign_alloc.m4: New file.
18774
18775 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18776             Bruno Haible  <bruno@clisp.org>
18777
18778         * modules/pagealign_alloc: New file.
18779         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
18780
18781 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18782             Bruno Haible  <bruno@clisp.org>
18783
18784         * lib/pagealign_alloc.h: New file.
18785         * lib/pagealign_alloc.c: New file.
18786
18787 2005-03-03  Bruno Haible  <bruno@clisp.org>
18788
18789         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
18790         Use an all-permissive copyright notice, recommended by RMS.
18791
18792 2005-03-02  Bruno Haible  <bruno@clisp.org>
18793
18794         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
18795         of AIX, the replacement has to be done only after <string.h> is
18796         included, therefore not in config.h. stpncpy.h does the replacement,
18797         and stpncpy.c uses it.
18798
18799 2005-03-02  Bruno Haible  <bruno@clisp.org>
18800
18801         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
18802         stpncpy.c uses it.
18803
18804 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18805
18806         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
18807         The workaround isn't strictly needed for POSIX conformance, and
18808         it's too much of a pain to configure and maintain.  We'll ask
18809         people to fix their kernels instead.
18810         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
18811         (NANOSLEEP_BUG_WORKAROUND): Remove.
18812         (xnanosleep): Remove the workaround.
18813
18814 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18815
18816         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
18817         Reported by Derek Price.
18818         (Include): Add "timespec.h".
18819
18820         * modules/xnanosleep (Depends-on): Remove gethrxtime.
18821
18822 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18823
18824         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
18825         to detect nanosleep bug.
18826
18827 2005-03-01  Bruno Haible  <bruno@clisp.org>
18828
18829         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
18830
18831 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
18832
18833         * modules/gethrxtime: New file.
18834         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
18835         (Depends-on): Add gethrxtime.
18836         (configure.ac): Add gl_XNANOSLEEP.
18837         (Makefile.am): Remove lib_SOURCES line.
18838
18839 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
18840
18841         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
18842         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
18843
18844 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
18845
18846         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
18847         * lib/timespec.h (gettime): Return void, since it always
18848         succeeds now.  All uses changed.
18849         * lib/gettime.c (gettime) Likewise.
18850         [HAVE_NANOTIME]: Prefer nanotime.
18851         Assume gettimeofday succeeds, as POSIX requires.
18852         Assime time () succeeds, since other code already does.
18853         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
18854         (timespec_subtract): Remove.
18855         (NANOSLEEP_BUG_WORKAROUND): New constant.
18856         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
18857         things considerably.  Use it only on GNU/Linux hosts, since the
18858         workaround shouldn't be needed elsewhere.
18859
18860 2005-02-24  Bruno Haible  <bruno@clisp.org>
18861
18862         * modules/gettext (Files): Add m4/glibc2.m4.
18863
18864 2005-02-24  Bruno Haible  <bruno@clisp.org>
18865
18866         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
18867         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
18868         * m4/progtest.m4:
18869         Update from GNU gettext 0.14.2.
18870         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
18871
18872 2005-02-24  Bruno Haible  <bruno@clisp.org>
18873
18874         * lib/localcharset.c: Update from GNU gettext 0.14.2.
18875         * lib/config.charset: Update from GNU gettext 0.14.2.
18876
18877 2005-02-24  Bruno Haible  <bruno@clisp.org>
18878
18879         * lib/gettext.h: Update from GNU gettext 0.14.2.
18880
18881 2005-02-23  Simon Josefsson  <jas@extundo.com>
18882
18883         * m4/iconvme.m4: New file.
18884
18885 2005-02-23  Jim Meyering  <jim@meyering.net>
18886
18887         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
18888         change.
18889         Thanks to Bruno Haible for catching it.
18890
18891 2005-02-22  Simon Josefsson  <jas@extundo.com>
18892
18893         * modules/iconvme: New file.
18894
18895         * MODULES.html.sh: Add iconvme.
18896
18897 2005-02-22  Simon Josefsson  <jas@extundo.com>
18898
18899         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
18900
18901 2005-02-22  Simon Josefsson  <jas@extundo.com>
18902
18903         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
18904
18905 2005-02-22  Jim Meyering  <jim@meyering.net>
18906
18907         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
18908         s/ifndef/ifdef/.
18909
18910 2005-02-20  Neil Conway  <neilc@samurai.com>
18911
18912         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
18913         returned by OSX/Darwin if the specified buffer is not large
18914         enough for the hostname.
18915
18916 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18917
18918         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
18919         pass it to _help, otherwise the latter coredumps trying to
18920         dereference state.root_argp.
18921
18922 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18923
18924         * modules/chdir-long (Depends-on): Add memrchr.
18925         * modules/memrchr (Files): Add lib/memrchr.h.
18926         (Include): "memrchr.h".
18927
18928 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18929
18930         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
18931
18932 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18933
18934         * lib/memrchr.h: New file.
18935         * lib/chdir-long.c: Include it.
18936         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
18937         Don't bother including stddef.h.
18938
18939 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
18940
18941         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
18942         inclusion.
18943         Include <sys/types.h>, for dev_t.
18944         (ME_DUMMY, ME_REMOTE): Move from here....
18945         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
18946         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
18947         Dmitry V. Levin.
18948         Include mountlist.h first, to test the interface.
18949
18950 2005-01-29  Bruno Haible  <bruno@clisp.org>
18951
18952         * lib/progname.c (program_name): Initialize.
18953         Needed when linking statically on MacOS X.
18954
18955 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
18956
18957         Sync from coreutils.
18958         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
18959         (Depends-on): Add c-strtod.
18960         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
18961
18962 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
18963
18964         Sync from coreutils.
18965         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
18966
18967         Remove files that are specific to coreutils.
18968         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
18969
18970 2005-01-28  Bruno Haible  <bruno@clisp.org>
18971
18972         * modules/javacomp: New file.
18973         * MODULES.html.sh (Java): Add javacomp.
18974
18975 2005-01-28  Bruno Haible  <bruno@clisp.org>
18976
18977         * m4/javacomp.m4: New file, from GNU gettext.
18978
18979 2005-01-28  Bruno Haible  <bruno@clisp.org>
18980
18981         * lib/javacomp.sh.in: New file, from GNU gettext.
18982         * lib/javacomp.h: New file, from GNU gettext.
18983         * lib/javacomp.c: New file, from GNU gettext.
18984
18985 2005-01-26  Simon Josefsson  <jas@extundo.com>
18986
18987         * lib/gai_strerror.c: Use GPL in header.
18988
18989 2005-01-26  Bruno Haible  <bruno@clisp.org>
18990
18991         * modules/javaexec: New file.
18992         * MODULES.html.sh (Java): Add javaexec.
18993
18994 2005-01-26  Bruno Haible  <bruno@clisp.org>
18995
18996         * m4/javaexec.m4: New file, from GNU gettext.
18997
18998 2005-01-26  Bruno Haible  <bruno@clisp.org>
18999
19000         * lib/javaexec.sh.in: New file, from GNU gettext.
19001         * lib/javaexec.h: New file, from GNU gettext.
19002         * lib/javaexec.c: New file, from GNU gettext.
19003
19004 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19005
19006         * modules/lchown (Depends-on): Remove lchown.h
19007
19008 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19009
19010         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
19011         must be defined if the header file was not found, in order
19012         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
19013
19014 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19015
19016         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
19017         initializers for struct pentry_state.
19018         (__argp_error): Check return value of __asprintf
19019         (__argp_failure): Translate error message
19020
19021         * lib/argp-parse.c: Removed braces around the expansion of N_()
19022
19023 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19024
19025         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
19026         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
19027         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
19028         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
19029         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
19030         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
19031         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
19032         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
19033         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
19034         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
19035         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
19036         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
19037         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
19038         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
19039         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
19040         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
19041         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
19042         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
19043         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
19044         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
19045         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
19046         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
19047         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
19048         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
19049         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
19050         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
19051         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
19052         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
19053         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
19054         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
19055         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
19056         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
19057         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
19058         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
19059         xstrtol.m4, xstrtoumax.m4, yesno.m4:
19060         Use an all-permissive copyright notice, recommended by RMS.
19061
19062 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
19063
19064         * modules/chdir-long (Depends-on): Remove mempcpy.
19065
19066 2005-01-21  Jim Meyering  <jim@meyering.net>
19067
19068         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
19069         same value as for Solaris 9.
19070
19071         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
19072         component length.  This included changing the parameter to be
19073         of type `char *' rather than `char const *'.
19074         * lib/chdir-long.h (chdir_long): Update prototype.
19075
19076         * lib/openat.c (fdopendir, fstatat): New functions.
19077         * lib/openat.h: Include headers required for use of DIR and struct
19078         stat.
19079         [AT_SYMLINK_NOFOLLOW]: Define.
19080         (fdopendir, fstatat): Add prototypes.
19081
19082 2005-01-21  Bruno Haible  <bruno@clisp.org>
19083
19084         * modules/classpath: New file.
19085         * MODULES.html.sh (Java): Add classpath.
19086
19087 2005-01-21  Bruno Haible  <bruno@clisp.org>
19088
19089         * lib/classpath.h: New file, from GNU gettext.
19090         * lib/classpath.c: New file, from GNU gettext.
19091
19092 2005-01-20  Simon Josefsson  <jas@extundo.com>
19093
19094         * modules/version-etc-fsf: New file.
19095
19096 2005-01-20  Simon Josefsson  <jas@extundo.com>
19097
19098         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
19099         * lib/version-etc.c: Remove version_etc_copyright.
19100         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
19101         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
19102
19103 2005-01-20  Simon Josefsson  <jas@extundo.com>
19104
19105         * lib/base64.h (isbase64): Add.
19106
19107         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
19108         using a unsigned prototype, don't inline.
19109         (base64_decode): Use it.
19110
19111 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19112
19113         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
19114         it.
19115
19116 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19117
19118         * lib/save-cwd.c (save_cwd): Remove code to support the case
19119         where fchdir is missing or flaky.
19120
19121 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19122
19123         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
19124
19125 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
19126
19127         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
19128         AC_LIBSOURCES now does this.
19129         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
19130         with new ullong_max module.
19131
19132 2005-01-19  Bruno Haible  <bruno@clisp.org>
19133
19134         * modules/sh-quote: New file.
19135         * MODULES.html.sh (Executing programs): Add sh-quote.
19136
19137 2005-01-19  Bruno Haible  <bruno@clisp.org>
19138
19139         * lib/sh-quote.h: New file, from GNU gettext.
19140         * lib/sh-quote.c: New file, from GNU gettext.
19141
19142 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19143
19144         Merge from coreutils.
19145         * m4/ullong_max.m4: New file.
19146         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
19147         (gl_MACROS): Assume localeconv exists.
19148
19149 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19150
19151         Merge changes from coreutils, as described below in several
19152         changelogs dated today.
19153
19154         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
19155         (O_DIRECTORY): Remove; not needed here, since "." must be
19156         a directory.  All uses removed.
19157         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
19158         universal on Suns, and we also need to test for IRIX.
19159         Revamp code to use 'if' rather than '#if'.
19160         Avoid unnecessary comparison of cwd->desc to 0.
19161
19162         * lib/utimens.c (futimens): Robustify the previous patch, by checking
19163         for known valid error numbers rather than observed invalid ones.
19164
19165 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19166
19167         * modules/ullong_max: New file.
19168
19169         * modules/chdir-long, modules/openat: New files.
19170         * modules/save-cwd (Depends-on): Depend on chdir-long.
19171         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
19172
19173 2005-01-18  Jim Meyering  <jim@meyering.net>
19174
19175         Merge from coreutils.
19176         * m4/chdir-long.m4, m4/openat.m4: New files.
19177         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
19178         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
19179         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
19180         is sane and DOES follow symlinks.  Besides, testing 20 different
19181         systems found no broken chown implementations.
19182         Prompted by a change in rsync's copy of this macro.
19183         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
19184
19185         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
19186
19187         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
19188         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
19189         NULL-means-set-to-current-time semantics.
19190         Remove temporary file immediately, rather than waiting
19191         for configure's at-exit trap code to do it.
19192
19193 2005-01-18  Jim Meyering  <jim@meyering.net>
19194
19195         * lib/version-etc.c (version_etc_copyright): Update copyright date.
19196
19197         * lib/utimens.c (futimens): Account for the fact that futimes
19198         can also fail with errno == ENOSYS or errno == ENOENT.
19199         Patch from Dmitry V. Levin.
19200
19201         Change the name of the robust chdir function from chdir to chdir_long.
19202         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
19203         (restore_cwd): Use chdir_long, not chdir.
19204         * lib/chdir-long.c: Renamed from chdir.c.
19205         * lib/chdir-long.h: Renamed from chdir.h.
19206         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
19207         Hurd.
19208
19209 2005-01-18  Bruno Haible  <bruno@clisp.org>
19210
19211         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
19212         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
19213         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
19214         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
19215         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
19216         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
19217         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
19218         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
19219         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
19220         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
19221         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
19222         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
19223         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
19224         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
19225         Use an all-permissive copyright notice, recommended by RMS.
19226
19227 2005-01-18  Bob Proulx  <bob@proulx.com>
19228
19229         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
19230         simplify offsetof() macro construct to avoid compile failure with
19231         native HP-UX 11.0 ANSI C compiler.
19232
19233 2005-01-17  Bruno Haible  <bruno@clisp.org>
19234
19235         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
19236         redundant because stpncpy.m4 takes care of it.
19237
19238 2005-01-17  Bruno Haible  <bruno@clisp.org>
19239
19240         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
19241
19242 2005-01-17  Bruno Haible  <bruno@clisp.org>
19243
19244         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
19245         used.
19246
19247 2005-01-17  Bruno Haible  <bruno@clisp.org>
19248
19249         * lib/fwriteerror.h (fwriteerror): Change specification to include
19250         fclose.
19251         * lib/fwriteerror.c: Include <stdbool.h>.
19252         (fwriteerror): At the end, close the file stream. Record whether
19253         stdout was already closed.
19254
19255 2005-01-17  Bruno Haible  <bruno@clisp.org>
19256
19257         * lib/execute.c (environ): Declare if needed.
19258         * lib/pipe.c (environ): Likewise.
19259         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
19260
19261 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19262
19263         * modules/argp: Depend on vsnprintf
19264
19265 2005-01-10  Jim Meyering  <jim@meyering.net>
19266
19267         * modules/closeout (Depends-on): Add atexit.
19268
19269 2005-01-06  Bruno Haible  <bruno@clisp.org>
19270
19271         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
19272
19273 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19274
19275         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
19276         definitions to be after all include files, to avoid collisions.
19277         Problem reported by Bob Proulx.
19278
19279 2005-01-04  Jim Meyering  <jim@meyering.net>
19280
19281         Changes imported from coreutils.
19282         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
19283         as the mkstemp template, use a temporary directory and an
19284         8.3-friendly template to avoid trouble on systems like DJGPP.
19285         Reported by Juan M. Guerrero via Stepan Kasal.
19286         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
19287         close. Remove the temporary directory right away, rather than waiting
19288         for configure's at-exit trap code to do it.
19289         Suggestion from Stepan Kasal.
19290
19291 2005-01-01  Simon Josefsson  <jas@extundo.com>
19292
19293         * gnulib-tool: Print #include directives when --import'ing.
19294
19295 2004-12-28  Simon Josefsson  <jas@extundo.com>
19296
19297         * tests/test-base64.c: Include required header files.  Remove
19298         unused variables.
19299
19300 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19301
19302         * modules/error (Depends-on): Remove gettext.
19303
19304 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19305
19306         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
19307         not needed.  This removes a dependency on the gettext module.
19308         [defined _LIBC]: Do not include <libintl.h>; not needed.
19309
19310 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19311
19312         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
19313         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
19314
19315 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19316
19317         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
19318         HAVE_DECL_STRTOLD.
19319
19320 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19321
19322         * modules/getdate (Depends-on): Remove alloca-opt.
19323
19324 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19325
19326         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
19327
19328 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19329
19330         * lib/argp-parse.c: Include <stddef.h>.
19331         (alignof, alignto): New macros.
19332         (parser_init): Don't assume that void * is aligned sufficiently
19333         for struct option.
19334
19335         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
19336         need to extend the stack.
19337         (YYINITDEPTH): New macro, so that the initial stack isn't overly
19338         large.
19339
19340 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19341
19342         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
19343
19344 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19345
19346         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
19347         (2004-10-24) change.  Apparently this was a false alarm.
19348
19349         * modules/getdate: Depend on alloca-opt, not alloca.
19350
19351 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19352
19353         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
19354         Remove now-obsolete comment about AIX.
19355         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
19356         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
19357         (YYMAXDEPTH): New macro.
19358
19359 2004-12-18  Simon Josefsson  <jas@extundo.com>
19360
19361         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
19362
19363 2004-12-18  Bruno Haible  <bruno@clisp.org>
19364
19365         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
19366
19367 2004-12-18  Bruno Haible  <bruno@clisp.org>
19368
19369         * lib/fatal-signal.c (fatal_signals): Make non-const.
19370         (init_fatal_signals): New function.
19371         (uninstall_handlers, install_handlers): Ignore signals that were set to
19372         SIG_IGN.
19373         (at_fatal_signal): Call init_fatal_signals.
19374         (init_fatal_signal_set): Likewise. Ignore signals that were set to
19375         SIG_IGN.
19376         Reported by Paul Eggert.
19377
19378 2004-12-18  Bruno Haible  <bruno@clisp.org>
19379
19380         * doc/alloca.texi: New file.
19381         * doc/alloca-opt.texi: New file.
19382
19383 2004-12-17  Jim Meyering  <jim@meyering.net>
19384
19385         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
19386         Otherwise, install-sh could exit with improper exit status when
19387         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
19388
19389 2004-12-16  Simon Josefsson  <jas@extundo.com>
19390
19391         * tests/test-base64.c: Add license.
19392
19393 2004-12-15  Stepan Kasal  <address@hidden>
19394
19395         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
19396
19397 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
19398
19399         * modules/getcwd (Files): Add m4/d-ino.m4.
19400         Suggested by Mark D. Baushke.
19401
19402 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19403
19404         * lib/getdate.y (textint): New member "negative".
19405         (time_zone_hhmm): New function.
19406         Expect 14 shift-reduce conflicts, not 13.
19407         (o_colon_minutes): New rule.
19408         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
19409         (yylex): Set the "negative" member of signed numbers.
19410
19411 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19412
19413         * doc/getdate.texi (Time of day items, Time zone items):
19414         Describe new formats +00:00, UTC+00:00.
19415
19416 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
19417
19418         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
19419         spurious "-l"s.  Problem reported by Stepan Kasal.
19420
19421 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
19422
19423         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
19424         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
19425
19426 2004-12-04  Simon Josefsson  <jas@extundo.com>
19427
19428         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
19429         Vandoorselaere <yoann@prelude-ids.org>.
19430
19431 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19432
19433         Changes imported from coreutils.
19434         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
19435         exist.
19436         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
19437
19438 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19439
19440         Changes imported from coreutils.
19441         * lib/hard-locale.c: Assume <locale.h> exists.
19442         Include "strdup.h".
19443         (GLIBC_VERSION): New macro.
19444         (hard_locale): Assume setlocale exists.
19445         Rewrite to avoid #ifdef.
19446         Use strdup rather than malloc + strcpy.
19447         * lib/human.c: Assume <locale.h> exists.
19448         (human_readable): Assume localeconv exists.
19449
19450 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19451
19452         * modules/hard-locale (Depends-on): Add strdup.
19453
19454 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
19455
19456         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
19457         convert T2, not T.  (Imported from libc.)
19458
19459 2004-11-30  Simon Josefsson  <jas@extundo.com>
19460
19461         * modules/restrict (License): Change to LGPL.
19462
19463 2004-11-30  Simon Josefsson  <jas@extundo.com>
19464
19465         * m4/restrict.m4: Add copyright and copying conditions.
19466
19467 2004-11-30  Simon Josefsson  <jas@extundo.com>
19468
19469         * m4/base64.m4: New file.
19470
19471 2004-11-30  Simon Josefsson  <jas@extundo.com>
19472
19473         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
19474         base64.
19475
19476         * tests/test-base64.c: New file.
19477
19478         * modules/base64: New file.
19479
19480 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19481
19482         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
19483         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
19484
19485         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
19486
19487 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19488
19489         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
19490         (__getcwd.c): Don't restore errno; glibc doesn't.
19491         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
19492         first, falling back to our code only if its results look suspicious.
19493         Ensure that the resulting buffer is only as large as necessary.
19494
19495         * lib/readutmp.c: Include readutmp.h first.
19496         Include <errno.h>, since readutmp.h no longer does that.
19497         * lib/readutmp.h: Don't include <errno.h>,
19498         <sys/param.h>, <time.h>; not needed to establish interface.
19499         (errno): Remove decl.
19500         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
19501         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
19502         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
19503
19504 2004-11-28  Simon Josefsson  <jas@extundo.com>
19505
19506         * lib/base64.h, base64.c: New file.
19507
19508 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19509
19510         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
19511
19512 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19513
19514         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
19515         (Depends-on): Remove pathmax, same.  Add mempcpy.
19516         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
19517         (Makefile.am): Append getcwd.h to lib_SOURCES.
19518         (Include): Add getcwd.h.
19519         (Maintainer): Change from Jim Meyering to "all, glibc",
19520         since getdate now uses intended-for-glibc code.
19521         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
19522         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
19523
19524 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19525
19526         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
19527         HP's ANSI C compiler.
19528         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
19529         Declaring int functions causes warnings on some modern systems and
19530         shouldn't be needed to compile on ancient ones.
19531         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
19532         defined.
19533
19534         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
19535         with the following changes.
19536         (__set_errno): Parenthesize properly.
19537         Include <stdbool.h>.
19538         (MIN, MAX, MATCHING_INO): New macros.
19539         (__getcwd): Define with prototype, not K&R form.
19540         Use heuristics to allocate default buffer on stack if possible.
19541         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
19542         behavior, and to avoid the PATH_MAX limit when computing
19543         ../../../../...
19544         Use MATCHING_INO to compare inode number to file.
19545         Check for arithmetic overflow in size calculations.
19546         Fix bug in reallocation of dot array that caused getcwd to fail
19547         on directories nested deeper than 75.
19548         Be more careful about saving errno on error.
19549         Do not use realloc; use only free+malloc, as this is a bit
19550         more flexible and avoids a needless copy operation.
19551         Do not inspect st_dev and st_ino for symbolic links; POSIX
19552         doesn't specify the latter.
19553         Check for closedir errors.
19554         Avoid needless casts.
19555         Use "#ifdef weak_alias" around weak_alias, to be like other
19556         glibc code.
19557         The following changes to getcwd.c have effect only when used in
19558         gnulib; they have no effect inside glibc proper.
19559         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
19560         as alloca isn't used.
19561         (alloca, __alloca): Likewise.
19562         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
19563         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19564         unconditionally, as gnulib assumes C89 or better.
19565         Do not include <sys/param.h>.
19566         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
19567         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
19568         better.
19569         (NULL) [!defined NULL]: Remove; we assume C89 or better.
19570         Include <dirent.h> in a way that is compatible with modern Autoconf.
19571         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
19572         New macros, if not already defined.
19573         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
19574         Use "_LIBC", not "defined _LIBC", for consistency.
19575         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
19576         a mempcpy module.
19577         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
19578         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
19579         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
19580         credit only to Jim Meyering and adjust the copyright dates.
19581         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
19582         <stdlib.h>, <unistd.h>, "pathmax.h".
19583         Instead, include "xgetcwd.h" (first) and "getcwd.h".
19584         (INITIAL_BUFFER_SIZE): Remove.
19585         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
19586
19587 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19588
19589         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
19590         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
19591         Use the _ONCE methods, for efficiency.
19592         Check for fcntl.h.  In test program, include <errno.h>
19593         and <fcntl.h> if available.  Remove old K&R cruft from
19594         test program.  Check for common errors in GNU/Linux,
19595         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
19596         don't do AC_LIBOBJ, as that's getcwd.m4's job.
19597         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
19598         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
19599         name accordingly.
19600         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
19601         accommodate new getcwd.c.
19602         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
19603         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
19604         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
19605         that's all we need now.
19606
19607 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19608
19609         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
19610         argp-parse.c depends on getopt internals, that means we should
19611         always use our getopt, to be on the safe side.
19612         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
19613         order not to spoil the result of an eventual previous invocation
19614         of gl_GETOPT_SUBSTITUTE.
19615
19616 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19617
19618         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
19619         redefinition warnings. To avoid them, include the defines
19620         in `#if !defined __need_getopt ... #endif'. The only place
19621         where __getopt_argv_const is used is in definitions
19622         of getopt_long and getopt_long_only below, which are as well
19623         protected by `#ifndef __need_getopt'.
19624         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
19625         __need_getopt after including <stdio.h> and <unistd.h> These
19626         headers might have defined it.
19627
19628 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
19629
19630         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
19631
19632 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
19633
19634         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
19635         (futimens): New function, which uses futimes if available.
19636         (futimens, utimens): Support timespec==NULL, with same semantics
19637         as utime and utimens.
19638         * lib/utimens.h (futimens): New decl.
19639
19640 2004-11-23  Jim Meyering  <jim@meyering.net>
19641
19642         * lib/getopt_.h: Remove trailing blanks.
19643
19644 2004-11-23  Jim Meyering  <jim@meyering.net>
19645
19646         * lib/__fpending.c: Add comment.
19647
19648 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
19649
19650         * modules/canonicalize (Depends-on): Add xreadlink.
19651         Problem reported by James Youngman.
19652
19653 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19654
19655         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
19656         New macros.
19657         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
19658         optopt): Use them instead of invoking ## directly; otherwise, the
19659         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
19660
19661 2004-11-19  Bruno Haible  <bruno@clisp.org>
19662
19663         * lib/strtok_r.c: Move comments from here...
19664         * lib/strtok_r.h: ... to here.
19665
19666 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19667
19668         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
19669         implementations that mishandle size_t overflow.
19670
19671 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19672
19673         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
19674         might fail.  Problem reported by Yoann Vandoorselaere.
19675         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
19676         implementations that mishandle size_t overflow.
19677
19678 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19679
19680         * modules/canon-host (Depends-on): Add strdup.
19681
19682 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19683
19684         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
19685
19686 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19687
19688         * lib/canon-host.c: Include "strdup.h".
19689         (canon_host): Use getaddrinfo if available, so that IPv6 works.
19690         Use strdup instead of malloc/strcpy to duplicate strings.
19691
19692         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
19693         (human_space_before_unit): New constant.
19694         * lib/human.c (human_readable): Support it.
19695
19696         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
19697         (xgetcwd): Set errno correctly when failing.
19698         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
19699         the failure is actually due to a PATH_MAX problem.
19700
19701         Further getopt changes to make it more likely that glibc will
19702         buy the changes back.
19703         * lib/getopt.c (POSIXLY_CORRECT): New constant.
19704         (getopt): Use it, so to preserve glibc semantic
19705         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
19706         when compiling for libc.
19707         * lib/getopt_.h (__getopt_argv_const): Bring it back.
19708         (getopt_long, getopt_long_only): Use it.
19709
19710         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
19711         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
19712         (getopt): Argv is now char * const *, as per standard.
19713         (_getopt_internal_r, _getopt_internal): Argv is now char **,
19714         not char *__getopt_argv_const *.
19715         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
19716         _getopt_long_only_r): Likewise.
19717         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
19718         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
19719         _getopt_long_r, _getopt_long_only_r): Likewise.
19720         * lib/getopt_.h (__getopt_argv_const): Remove.
19721         (getopt): Argv is now char * const *, as per standard.
19722
19723         * lib/getdate.y (tORDINAL): New token.
19724         (day, relunit): Allow it for relative times.
19725         (relative_time_table): Use tORDINAL for ordinals.
19726
19727 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19728
19729         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
19730         Document that "second" isn't allowed as an ordinal number.
19731
19732 2004-11-16  Jim Meyering  <jim@meyering.net>
19733
19734         * modules/closeout (Depends-on): Add fpending.
19735
19736 2004-11-15  Jim Meyering  <jim@meyering.net>
19737
19738         * lib/closeout.c: Include "__fpending.h" once again.
19739         Include <stdbool.h>.
19740         (close_stdout): Don't fail just because stdout was closed initially,
19741         since some programs don't write to stdout in the normal course of
19742         operation (other than --version and --help), and we don't want this
19743         function to make e.g. `touch file >&-' fail.
19744         But do fail if it was closed and someone has tried to write to it.
19745         E.g., `printf foo >&-' must fail.
19746
19747 2004-11-13  Jim Meyering  <jim@meyering.net>
19748
19749         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
19750
19751 2004-11-12  Simon Josefsson  <jas@extundo.com>
19752
19753         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
19754         small doc fix is still pending.
19755
19756 2004-11-11  Simon Josefsson  <jas@extundo.com>
19757
19758         * modules/strtok_r: New file.
19759
19760         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19761         strtok_r.
19762
19763 2004-11-11  Simon Josefsson  <jas@extundo.com>
19764
19765         * m4/strtok_r.m4: New file.
19766
19767         * m4/getopt.m4: Replace opterr.
19768
19769 2004-11-11  Simon Josefsson  <jas@extundo.com>
19770
19771         * lib/strtok_r.h, strtok_r.c: New file.
19772
19773 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
19774
19775         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
19776         of replacing opterr, getopt, etc.  This should handle the
19777         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
19778
19779 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
19780
19781         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
19782         we can stop lying to compilers about the constness of argv when we
19783         are compiled outside glibc.
19784         (getopt, getopt_long, getopt_long_only): Use it.
19785         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
19786         _getopt_internal, getopt): Likewise.
19787         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
19788         _getopt_long_only_r): Likewise.
19789         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
19790         _getopt_long_r, _getopt_long_only_r): Likewise.
19791
19792         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
19793         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
19794         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
19795         the other external symbols.
19796         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
19797         declaration, since the above renaming now works around collisions.
19798
19799 2004-11-11  Jim Meyering  <jim@meyering.net>
19800
19801         * lib/linebreak.c: Remove trailing blanks.
19802         * lib/alloca_.h: Likewise.
19803         * lib/acosl.c: Likewise.
19804         * lib/euidaccess.c: Likewise.
19805         * lib/allocsa.h: Likewise.
19806
19807 2004-11-10  Simon Josefsson  <jas@extundo.com>
19808
19809         * m4/getaddrinfo.m4: New file.
19810
19811 2004-11-10  Simon Josefsson  <jas@extundo.com>
19812
19813         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
19814
19815 2004-11-10  Simon Josefsson  <jas@extundo.com>
19816
19817         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19818         getaddrinfo.
19819
19820         * modules/getaddrinfo: New file.
19821
19822 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
19823
19824         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
19825
19826 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
19827
19828         * lib/mktime.c (SHR): New macro, which is a portable
19829         substitute for >> that should work even on Crays.
19830         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
19831         Problem reported by Mark D. Baushke in
19832         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
19833         * lib/getdate.y (SHR): Likewise.
19834         (tm_diff): Use it.
19835         * lib/strftime.c (SHR): Likewise.
19836         (tm_diff): Use it.
19837         * lib/quotearg.c (struct quoting_options): Use unsigned int for
19838         quote_these_too, so that right shifts are well defined.  All uses
19839         changed.
19840
19841 2004-11-10  Jim Meyering  <jim@meyering.net>
19842
19843         Ensure that no close failure goes unreported.
19844         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
19845         return early when it seems there's nothing to flush.
19846         Don't include __fpending.h.
19847
19848 2004-11-10  Jim Meyering  <jim@meyering.net>
19849
19850         * modules/closeout (Depends-on): Remove fpending.
19851
19852 2004-11-10  Jim Meyering  <jim@meyering.net>
19853
19854         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
19855
19856 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19857
19858         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
19859         gl_FUNC_STRFTIME.
19860         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
19861         and AC_REQUIRE when possible, to avoid duplicate checks.
19862         Check for <wchar.h>.
19863
19864 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19865
19866         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
19867
19868 2004-11-09  Bruno Haible  <bruno@clisp.org>
19869
19870         * m4/sockpfaf.m4: New file.
19871
19872 2004-11-05  Bruno Haible  <bruno@clisp.org>
19873
19874         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
19875         Reported by Mark D. Baushke <mdb@cvshome.org>.
19876
19877 2004-11-04  Bruno Haible  <bruno@clisp.org>
19878
19879         2004-09-11  Bruno Haible  <bruno@clisp.org>
19880                 * allocsa.valgrind: New file.
19881         2004-02-06  Bruno Haible  <bruno@clisp.org>
19882                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
19883                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
19884                 Reported by Christopher Seip <chris.seip@hp.com>.
19885
19886 2004-11-04  Bruno Haible  <bruno@clisp.org>
19887
19888         * modules/allocsa (Files): Add lib/allocsa.valgrind.
19889         (Makefile.am): Distribute it.
19890
19891 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
19892
19893         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
19894         with errno == ERANGE if the buffer is too small.
19895         Problem reported by Mark D. Baushke.
19896
19897 2004-11-03  Albert Chin  <china@thewrittenword.com>
19898             Paul Eggert  <eggert@cs.ucla.edu>
19899
19900         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
19901         equivalent, substitute $ac_type for equivalent type rather than
19902         blindly using uint32_t *always* which won't work if uint32_t is not
19903         available.  Define _UINT32_T to work around typedef of uint32_t if
19904         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
19905         2.5.1.
19906
19907 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19908
19909         * m4/jm-macros.m4: Sync from coreutils.
19910         (gl_MACROS): Check for mbrlen, for pathchk.
19911         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
19912
19913 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19914
19915         * lib/xreadlink.c (MAXSIZE): New macro.
19916         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
19917         size does not exceed MAXSIZE.  Avoid cast.
19918         As suggested by Mark D. Baushke in
19919         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
19920         if readlink fails with buffer size just under MAXSIZE, try again
19921         with MAXSIZE.
19922
19923 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19924
19925         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
19926
19927 2004-11-02  Derek R. Price  <derek@ximbiot.com>
19928         and  Paul Eggert  <eggert@cs.ucla.edu>
19929
19930         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
19931         (get_date): Overparenthesize to avoid GCC warning.
19932
19933 2004-11-02  Bruno Haible  <bruno@clisp.org>
19934
19935         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
19936         returns void.
19937
19938 2004-11-02  Bruno Haible  <bruno@clisp.org>
19939
19940         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
19941         function returns void.
19942
19943 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
19944
19945         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
19946         fflush_unlocked, flockfile, funlockfile, funlockfile,
19947         fputs_unlocked, putc_unlocked.
19948
19949 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
19950
19951         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
19952         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
19953         already declared.
19954
19955 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19956
19957         * modules/getdate (Files): Add doc/getdate.texi.
19958         (Depends-on): Add setenv, xalloc.
19959
19960 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19961
19962         * lib/getdate.y: Add support for TZ="foo" within a date string.
19963         Fix some bugs near time_t boundaries.  Reject dates with
19964         out-of-range components, e.g., "Sept 31".
19965         Include <stdlib.h>, "setenv.h", "xalloc.h".
19966         (ISDIGIT_LOCALE): Remove; unused.
19967         Note that the TZ and time functions used here are not reentrant.
19968         (mktime_ok, get_tz): New functions.
19969         (TZBUFSIZE): New constant.
19970         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
19971         This requires that we sometimes generate our own TZ="XXX..." setting.
19972
19973 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19974
19975         * doc/getdate.texi: New file, from coreutils with modifications for
19976         the new TZ parsing.
19977
19978 2004-10-27  Derek R. Price  <derek@ximbiot.com>
19979
19980         * lib/mktime.c (not_equal_tm): Remove redundant check.
19981
19982 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
19983
19984         * modules/regex (lib_SOURCES): Add regex.c.
19985         Reported by James Youngman in
19986         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
19987
19988 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
19989
19990         * lib/getdate.y: Use Bison 1.875 features, and some minor
19991         code cleanups.  This change does not affect semantics.
19992         Don't include <stdlib.h>; no longer needed.
19993         Don't include unlocked-io.h; only the "#if TEST" code uses
19994         stdio, and performance isn't crucial there.
19995         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
19996         Bison 1.875 features as described below.
19997         All uses of "PC." replaced by "pc->".
19998         (YYSTYPE): Add a forward declaration.
19999         (yylex, yyerror): Use full prototypes in forward decls.
20000         Use "%pure-parser" rather than obsolescent "%pure_parser".
20001         Use %parse-param and %lex-param instead of obsolescent
20002         YYPARSE_PARAM and YYLEX_PARAM.
20003         (meridian_table, month_and_day_table, time_units_table,
20004         relative_time_table, time_zone_table, military_table,
20005         lookup_zone, lookup_word, get_date):
20006         Use NULL instead of 0 where appropriate.
20007         (to_hour): Avoid abort (), to avoid a dependency on
20008         stdlib.h.
20009         (yyerror, yylex): Now accepts parser_control * arg.
20010         (main) [TEST]: Use '\0' rather than 0 for char.
20011
20012 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20013
20014         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
20015
20016 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20017
20018         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
20019         It's now the caller's responsibility to handle the case where
20020         !HAVE_GETPAGESIZE && !defined getpagesize.
20021
20022         * lib/mktime.c (leapyear): Arg is long int, not int.
20023
20024 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
20025
20026         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
20027
20028 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20029
20030         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
20031         missing.  Problem reported by James Youngman.
20032
20033 2004-10-16  Simon Josefsson  <jas@extundo.com>
20034
20035         * gnulib-tool: Fix comments.  Fix parse problem.
20036         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
20037
20038 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
20039
20040         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
20041         implementation of getopt_long.  Problem reported by Alexander Taler in:
20042         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
20043
20044 2004-10-15  Bruno Haible  <bruno@clisp.org>
20045
20046         * gnulib-tool: Untabify. Initialize supplied_libname.
20047         (func_usage): More homogenous output.
20048         (func_modules_transitive_closure, func_modules_to_filelist,
20049         func_emit_lib_Makefile_am): New functions.
20050         (func_import): New function, extracted from big case statement. Use
20051         func_get_license, func_modules_transitive_closure,
20052         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
20053         opt_lgpl. Don't use test -a, as it's not portable.
20054         (func_create_testdir): Use func_modules_transitive_closure,
20055         func_modules_to_filelist, func_emit_lib_Makefile_am.
20056
20057 2004-10-15  Bruno Haible  <bruno@clisp.org>
20058
20059         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
20060
20061 2004-10-15  Bruno Haible  <bruno@clisp.org>
20062
20063         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
20064         the portions belonging to each module.
20065         Suggested by Derek Robert Price <derek@ximbiot.com>.
20066
20067 2004-10-12  Simon Josefsson  <jas@extundo.com>
20068
20069         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
20070         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
20071         to real functions.
20072
20073 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20074
20075         * modules/vsnprintf: New file.
20076
20077 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20078
20079         * m4/vsnprintf.m4: New file.
20080
20081 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20082
20083         * lib/vsnprintf.h: New file.
20084         * lib/vsnprintf.c: New file.
20085
20086 2004-10-11  Bruno Haible  <bruno@clisp.org>
20087
20088         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
20089         vsnprintf.
20090
20091 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
20092
20093         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
20094
20095 2004-10-07  Bruno Haible  <bruno@clisp.org>
20096
20097         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
20098         fits into the provided buffer.
20099
20100 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
20101
20102         * lib/diacrit.c, diacrit.h: Add GPL notice.
20103
20104         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
20105         notice.
20106         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
20107         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
20108         This avoids a potential constant-folding bug.
20109
20110 2004-10-05  Bruno Haible  <bruno@clisp.org>
20111
20112         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
20113         for the declaration of strsep.
20114
20115 2004-10-05  Bruno Haible  <bruno@clisp.org>
20116
20117         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
20118
20119 2004-10-04  Simon Josefsson  <jas@extundo.com>
20120
20121         * modules/memmem: New file.
20122         * tests/test-memmem.c: New file.
20123         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
20124
20125 2004-10-04  Simon Josefsson  <jas@extundo.com>
20126
20127         * m4/memmem.m4: New file.
20128
20129 2004-10-04  Simon Josefsson  <jas@extundo.com>
20130
20131         * lib/memmem.h: New file.
20132         * lib/memmem.c: New file, taken from glibc.
20133
20134 2004-10-04  Simon Josefsson  <jas@extundo.com>
20135
20136         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
20137         '#ifdef USE_UNLOCKED_IO'.
20138
20139 2004-10-04  Simon Josefsson  <jas@extundo.com>
20140
20141         * config/srclist.txt: Add memmem from glibc.
20142
20143 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20144
20145         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
20146
20147         * modules/argmatch, modules/argp, modules/closeout, modules/error,
20148         modules/exclude, modules/getdate, modules/getline,
20149         modules/getndelim2, modules/getpass, modules/getpass-gnu,
20150         modules/getusershell, modules/linebuffer, modules/md5,
20151         modules/mountlist, modules/posixtm, modules/readtokens,
20152         modules/readutmp, modules/regex, modules/sha1,
20153         modules/version-etc, modules/yesno:
20154         Remove dependency on unlocked-io.
20155
20156 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20157
20158         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
20159
20160         * m4/unlocked-io.m4: Add copyright notice.
20161         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
20162
20163 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20164
20165         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
20166         * lib/xmalloc.c (xmemdup): Likewise.
20167         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
20168         XFREE): Remove these long-obsolescent macros.
20169         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
20170         * lib/xstrdup.c: Remove.
20171
20172         * lib/regex.c (re_comp): Cast gettext return value to char *,
20173         Problem reported by Martin Neitzel via Mark D. Baushke.
20174
20175 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20176
20177         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
20178         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
20179         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
20180         regex.c, sha1.c, version-etc.c, yesno.c:
20181         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
20182         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
20183         the includer's responsibility.
20184
20185         Sync from coreutils.
20186
20187         * lib/modechange.c (mode_compile): Don't decrement a pointer that
20188         points to the start of a string, as the C Standard says the
20189         resulting behavior is undefined.
20190
20191         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
20192         simple -> simple_backups, numbered_existing ->
20193         numbered_existing_backups, numbered -> numbered_backups
20194         to avoid shadowing problems.  All uses changed.
20195         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
20196         * lib/backupfile.c (check_extension, numbered_backup):
20197         Rename locals to avoid shadowing 'basename'.
20198         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
20199         once.
20200
20201         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
20202         * lib/.cvsignore: Add getopt.h.
20203
20204 2004-10-04  Bruno Haible  <bruno@clisp.org>
20205
20206         * modules/README: New file.
20207         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
20208         not a module.
20209
20210 2004-10-02  Jim Meyering  <jim@meyering.net>
20211
20212         * lib/dirfd.h, getpagesize.h: Add copyright notice.
20213
20214 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20215
20216         * modules/strsep: New file.
20217
20218 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20219
20220         * m4/strsep.m4: New file.
20221
20222 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20223
20224         * lib/strsep.h: New file.
20225         * lib/strsep.c: New file.
20226
20227 2004-10-01  Simon Josefsson  <jas@extundo.com>
20228
20229         * lib/snprintf.c (snprintf): Handle size==0.
20230
20231 2004-10-01  Simon Josefsson  <jas@extundo.com>
20232             Bruno Haible  <bruno@clisp.org>
20233
20234         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
20235         (snprintf): Declare 'args'.
20236
20237 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
20238
20239         * lib/snprintf.c: Remove comments as to why each header is needed.
20240
20241 2004-10-01  Bruno Haible  <bruno@clisp.org>
20242
20243         * MODULES.html.sh: Add strsep.
20244
20245 2004-09-30  Simon Josefsson  <jas@extundo.com>
20246
20247         * modules/snprintf: New file.
20248
20249 2004-09-30  Simon Josefsson  <jas@extundo.com>
20250
20251         * m4/snprintf.m4: New file.
20252
20253 2004-09-30  Simon Josefsson  <jas@extundo.com>
20254
20255         * lib/snprintf.h, lib/snprintf.c: New files.
20256
20257 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20258
20259         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
20260         (hol_entry_help): Never translate an empty string.
20261         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
20262         * lib/argp.h (OPTION_NO_TRANS): New option.
20263
20264 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20265
20266         * modules/argp (Maintainer): Replace Simon Josefsson
20267         by Sergey Poznyakoff.
20268
20269 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20270
20271         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
20272         changes merged back into glibc.
20273
20274 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20275
20276         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
20277
20278 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
20279
20280         * lib/xvasprintf.c: Include xalloc.h.
20281         (xvasprintf): Use xalloc_die, not xmalloc_die.
20282
20283 2004-09-29  Bruno Haible  <bruno@clisp.org>
20284
20285         * modules/alloca-opt: New file, derived from modules/alloca.
20286         * modules/allocsa: Depend on alloca-opt instead of alloca.
20287         * modules/setenv: Likewise.
20288         * modules/vasnprintf: Likewise.
20289         * MODULES.html.sh: Add alloca-opt.
20290
20291 2004-09-28  Simon Josefsson  <jas@extundo.com>
20292
20293         * gnulib-tool: New parameter --lgpl, to asseert that modules are
20294         LGPL, and to replace license template from GPL to LGPL.
20295
20296 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20297
20298         * modules/dummy: Change license to LGPL.
20299
20300 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20301
20302         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
20303
20304 2004-09-24  Simon Josefsson  <jas@extundo.com>
20305
20306         * modules/minmax (License): Change from GPL to LGPL.
20307
20308 2004-09-23  Simon Josefsson  <jas@extundo.com>
20309
20310         * gnulib-tool (--import): Typo.
20311
20312 2004-09-23  Simon Josefsson  <jas@extundo.com>
20313
20314         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
20315
20316 2004-09-22  Bruno Haible  <bruno@clisp.org>
20317
20318         * modules/*: Add 'License' field.
20319         * gnulib-tool: Accept --extract-license option.
20320         (func_get_license): New function.
20321
20322 2004-09-21  Bruno Haible  <bruno@clisp.org>
20323
20324         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
20325         Reported by Simon Josefsson.
20326
20327 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20328
20329         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
20330         gl_AC_TYPE_LONG_LONG.
20331
20332 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20333
20334         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
20335
20336 2004-09-18  Simon Josefsson  <jas@extundo.com>
20337         and  Paul Eggert  <eggert@cs.ucla.edu>
20338
20339         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
20340         calls with autoreconf.  Define GL_LIB.
20341
20342 2004-09-14  Karl Berry  <karl@gnu.org>
20343
20344         * config/srclist.txt: unsync setenv.c, sigh.
20345
20346 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20347
20348         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
20349         Problem reported by Bruno Haible in:
20350         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
20351
20352 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20353
20354         * config/srclist.txt: Comment out argp-pvh.c.
20355
20356 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
20357
20358         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
20359         in case some system header has #define'd it.  Problem reported by
20360         Soeren D. Schulze in
20361         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
20362
20363 2004-09-09  Karl Berry  <karl@gnu.org>
20364
20365         * regex.[ch]: delete from the root.  These were supposed to be
20366                 synced with emacs cvs, but this has not happened for about
20367                 a year, and anyway nothing else uses emacs regex.[ch].
20368                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
20369                 lib/regex[.ch] is untouched.
20370
20371 2004-09-09  Bruno Haible  <bruno@clisp.org>
20372
20373         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
20374
20375 2004-09-09  Bruno Haible  <bruno@clisp.org>
20376
20377         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
20378         modifications.
20379         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
20380
20381 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20382
20383         * modules/xvasprintf: New file.
20384         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
20385
20386 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20387
20388         * lib/xvasprintf.h: New file.
20389         * lib/xvasprintf.c: New file.
20390         * lib/xasprintf.c: New file.
20391
20392 2004-09-08  Bruno Haible  <bruno@clisp.org>
20393
20394         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
20395
20396 2004-09-08  Bruno Haible  <bruno@clisp.org>
20397
20398         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
20399         length is > INT_MAX.
20400         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
20401         more.
20402
20403 2004-09-08  Bruno Haible  <bruno@clisp.org>
20404
20405         * lib/stdint_.h: New file, taken from GNU clisp.
20406
20407 2004-09-08  Bruno Haible  <bruno@clisp.org>
20408             Oskar Liljeblad  <oskar@osk.mine.nu>
20409
20410         * modules/stdint: New file.
20411         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
20412
20413 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20414
20415         Import from coreutils.
20416         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
20417         strings on unbounded length.  alloca's performance benefits aren't
20418         that important here.
20419         (V_STRDUP): Remove.
20420         (parse_with_separator): New function, with most of the internals
20421         of the old parse_user_spec.  Allow user to omit both user and group,
20422         for compatibility with FreeBSD.
20423         Clone only the user name, not the entire spec.
20424         Do not set *uid, *gid unless entirely successful.
20425         Avoid memory leak in some failing cases.
20426         Fix regression for USER.GROUP reported by Dmitry V. Levin in
20427         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
20428         (parse_user_spec): Rewrite to use parse_with_separator.
20429
20430 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20431
20432         * modules/userspec: Don't depend on alloca.
20433
20434 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20435
20436         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
20437
20438 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
20439
20440         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
20441         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
20442         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
20443
20444 2004-08-16  Simon Josefsson  <jas@extundo.com>
20445
20446         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
20447         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
20448         Add --dry-run for --import.
20449         Let user provided command line parameters override configure.ac
20450         settings.
20451
20452 2004-08-12  Simon Josefsson  <jas@extundo.com>
20453
20454         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
20455         as discussed with Paul Eggert in threads rooted at
20456         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
20457         and
20458         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
20459         Before, the test was empty, and relied on ELIDE_CODE in source
20460         code.)
20461         (gl_PREREQ_GETOPT): New macro.
20462         (gl_GETOPT): Use them.
20463
20464 2004-08-12  Simon Josefsson  <jas@extundo.com>
20465
20466         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
20467         * lib/getopt_.h: Renamed from getopt.h.
20468
20469 2004-08-12  Simon Josefsson  <jas@extundo.com>
20470
20471         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
20472         Change default library name from libfoo to libgnu.
20473         Now, if you have a configure.ac that says:
20474                 gl_SOURCE_BASE(gl)
20475                 gl_M4_BASE(gl/m4)
20476                 gl_MODULES(error getopt etcetera)
20477                 gl_INIT
20478         you can import all you need by running:
20479                 ../gnulib/gnulib-tool --import
20480
20481         * modules/getopt (Files): Rename getopt.h to getopt_.h.
20482         (Makefile.am): Rewrite, use logic from argz.
20483         (Include): Use <getopt.h> instead of "getopt.h".
20484
20485 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20486
20487         * modules/argp (Files): Add m4/unlocked-io.m4.
20488         (Depends-on): Add extensions.
20489
20490 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20491
20492         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
20493         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
20494         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
20495         Check for program_invocation_name, program_invocation_short_name,
20496         flockfile, funlockfile, features.h, _getopt_long_only_r.
20497
20498 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20499
20500         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
20501         its complicated substitute.
20502         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
20503         and program_invocation_name.
20504         (__argp_basename) [!_LIBC]: Remove; the only use was
20505         replaced by its body.
20506         (__argp_short_program_name): Change condition from
20507         !defined __argp_short_program_name to
20508         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
20509         to match argp-namefrob.h.
20510         (__argp_failure): Don't assume strerror_r returns char *.
20511         * lib/argp-parse.c (N_): Define unconditionally.
20512         (argp_default_options): Fill out initializers with 0 to avoid
20513         gcc warnings.
20514
20515 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20516
20517         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
20518         getopt1.c.
20519
20520 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20521
20522         Merge from coreutils.
20523
20524         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
20525
20526         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
20527         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
20528
20529 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20530
20531         Merge from coreutils.
20532
20533         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
20534         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
20535         for Reliant Unix 5.43.
20536
20537         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
20538         (union fooround): Use uintmax_t, not long int.
20539         The rest is a merge from libc:
20540         [defined _LIBC]: Include <shlib-compat.h>.
20541         (_obstack) [defined _LIBC]: Remove after 2.3.4.
20542
20543         * lib/settime.c (settime): Recode to avoid warning with
20544         Sun Forte C 6U2.
20545
20546         * lib/strverscmp.c: Convert to UTF-8.
20547
20548 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20549
20550         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
20551         m4/uintmax_t.m4.
20552
20553 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20554
20555         * modules/xalloc-die: New file.
20556         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
20557
20558         * modules/md5 (Files): Add m4/uint32_t.m4.
20559         * modules/sha1: Renamed from modules/sha.
20560         (Files):
20561         Rename lib/sha.h to lib/sha1.h.
20562         Rename lib/sha.c to lib/sha1.c.
20563         Rename m4/sha.m4 to m4/sha1.m4.
20564         (lib_SOURCES): Likewise.
20565         (configure.ac): Rename gl_SHA to gl_SHA1.
20566         (Include): sha.h -> sha1.h.
20567
20568 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20569
20570         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
20571         * m4/sha1.m4: Renamed from sha.m4.
20572         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
20573
20574 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20575
20576         * lib/obstack.h (obstack_empty_p):
20577         Don't assume that chunk->contents is suitably aligned.
20578         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
20579         Likewise. Problem reported by Benno in
20580         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
20581
20582         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
20583         readable.  This could be improved further but it'd take some work.
20584
20585 2004-08-08  Simon Josefsson  <jas@extundo.com>
20586
20587         * modules/xgethostname (Depends-on): Remove exit and error (not
20588         used).
20589
20590         * modules/getpass-gnu: Add getpass.h.
20591         (Depends-on): Add stdbool.
20592         * modules/getpass: Add getpass.h.
20593
20594 2004-08-08  Simon Josefsson  <jas@extundo.com>
20595
20596         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
20597         Check getpass declaration.
20598
20599 2004-08-08  Simon Josefsson  <jas@extundo.com>
20600
20601         * lib/xgethostname.c: Don't include error.h (not used).
20602
20603         * lib/getpass.h: Add.
20604         * lib/getpass.c: Include getpass.h first.
20605
20606 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
20607
20608         * lib/xalloc-die.c: New file.
20609         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
20610         All uses removed.
20611         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
20612         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
20613         xalloc-die.c.
20614         (_, N_, xalloc_die): Move to xalloc-die.c.
20615         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
20616         so that we needn't mess with xalloc_msg_memory_exhausted.
20617
20618         * lib/sha1.h: Renamed from sha.h.
20619         (SHA1_H): Renamed from _SHA_H.
20620         (sha1_ctx): Renamed from sha_ctx.
20621         (sha1_init_ctx): Renamed from sha_init_ctx.
20622         (sha1_process_block): Renamed from sha_process_block.
20623         (sha1_process_bytes): Renamed from sha_process_bytes.
20624         (sha1_finish_ctx): Renamed from sha_finish_ctx.
20625         (sha1_read_ctx): Renamed from sha_read_ctx.
20626         (sha1_stream): Renamed from sha_stream.
20627         (sha1_buffer): Renamed from sha_buffer.
20628         * lib/sha1.c: Likewise; renamed from sha.c.
20629         Do not include <sys/types.h>.
20630         Include <stddef.h> rather than <stdlib.h>.
20631
20632 2004-08-08  Bruno Haible  <bruno@clisp.org>
20633
20634         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
20635         FILESYSTEM_PREFIX_LEN.
20636         * lib/progreloc.c: Likewise.
20637         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
20638
20639 2004-08-06  Simon Josefsson  <jas@extundo.com>
20640
20641         * modules/progname (Depends-on): Don't depend on stdbool.
20642
20643 2004-08-06  Simon Josefsson  <jas@extundo.com>
20644
20645         * modules/getsubopt: New file.
20646         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20647         getsubopt.
20648
20649 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20650
20651         More merge from coreutils.
20652
20653         * m4/utimens.m4, m4/utimecmp.m4: New files.
20654         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
20655         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
20656         prereq.m4, sha.m4: Import changes from coreutils.
20657
20658 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20659
20660         More merge from coreutils.
20661         * modules/raise, modules/readtokens0, modules/utimens:
20662         * modules/utimecmp, module/xnanosleep: New files.
20663         * modules/strftime: Add lib/strftime.h.
20664         Change include from <time.h> to "strftime.h".
20665         * modules/yesno: Add lib/yesno.h.
20666         * modules/backupfile: Remove lib/addext.c.
20667         * modules/euidaccess: Add stat-macros.h.
20668         * modules/canonicalize, modules/euidaccess,
20669         modules/filemode, modules/lchown, modules/makepath,
20670         modules/rmdir, modules/stat: Likewise.
20671
20672 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20673
20674         Merge from tar.
20675         * lib/argp-help.c (make_hol, hol_append): Don't assume that
20676         SIZE_MAX is a valid preprocessor constant.
20677         (__argp_basename): Change from "#ifndef _LIBC"
20678         to "#ifndef __argp_short_program_name", so that
20679         we don't compile these functions for tar.
20680
20681         More merges from coreutils.
20682         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
20683         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
20684         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
20685         * lib/addext.c: Remove; no longer needed.
20686         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
20687         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
20688         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
20689         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
20690         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
20691         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
20692         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
20693         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
20694         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
20695         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
20696         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
20697         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
20698         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
20699         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
20700         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
20701         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
20702         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
20703         Import changes from coreutils.
20704
20705 2004-08-05  Simon Josefsson  <jas@extundo.com>
20706
20707         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
20708
20709 2004-08-05  Simon Josefsson  <jas@extundo.com>
20710
20711         * m4/getsubopt.m4: New file.
20712
20713 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20714
20715         Merge from coreutils.
20716
20717         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
20718         * m4/getcwd-path-max.m4: New files.
20719
20720         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
20721         FILESYSTEM_PREFIX_LEN ->
20722         FILE_SYSTEM_PREFIX_LEN.
20723         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
20724         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
20725         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
20726         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
20727
20728         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
20729         prerequisite modules now handle the DOS stuff.
20730         Don't check for unistd.h.
20731
20732 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20733
20734         Merge from coreutils.
20735
20736         * lib/.gdb-history: Remove; this doesn't belong here.
20737
20738         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
20739         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
20740         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
20741         * lib/getcwd.c: New files.
20742
20743         * lib/dirname.h: Include <stdbool.h>.
20744         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
20745         for consistency with POSIX terminology.  All uses changed.
20746         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
20747         (strip_trailing_slashes): Use bool for booleans.
20748         * lib/stripslash.c (strip_trailing_slashes): Likewise.
20749
20750         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
20751         sometimes returns a positive errno value even when it succeeds.
20752         (print_errno_message) [!LIBC]: Fall back on strerror if
20753         __strerror_r fails.
20754
20755         * lib/path-concat.c (mempcpy): Don't define if a system header defines
20756         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
20757         (longest_relative_suffix): New function.
20758         (path_concat): Use it.  Assume first argument is not NULL.
20759         Port to DOS.  Omit redundant separators.
20760         Report an error instead of returning NULL.
20761         Use mempcpy instead of memcpy.
20762         (xpath_concat): Remove: not declared or used.
20763
20764         * lib/same.h: Include <stdbool.h>
20765         (same_name): Return bool, not int.
20766         * lib/same.c (same_name): Likewise.
20767         (errno): Don't declare; we assume C89 or better now.
20768
20769         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
20770         if not already defined.
20771
20772         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
20773         * lib/dup-safer.c (errno): Likewise.
20774
20775 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20776
20777         Merge from coreutils.
20778         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
20779         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
20780         * modules/path-concat: Don't depend on strdup.
20781
20782 2004-08-03  Simon Josefsson  <jas@extundo.com>
20783
20784         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
20785         * lib/progname.h: Don't include stdbool.h.
20786
20787 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20788
20789         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
20790         * MODULES.html.sh (func_all_modules): Remove fatal.
20791
20792 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20793
20794         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
20795
20796 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20797
20798         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
20799         working.
20800
20801 2004-08-02  Simon Josefsson  <jas@extundo.com>
20802
20803         * lib/getsubopt.h: New file, with comments from Bruno Haible.
20804         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
20805         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
20806
20807 2004-08-01  Simon Josefsson  <jas@extundo.com>
20808
20809         * lib/xgetdomainname.c: Include stdlib.h, for free().
20810
20811 2004-07-19  Bruno Haible  <bruno@clisp.org>
20812
20813         * MODULES.html.sh (func_all_modules): Add dummy.
20814
20815 2004-07-16  Simon Josefsson  <jas@extundo.com>
20816
20817         * modules/dummy: New file.
20818
20819 2004-07-16  Simon Josefsson  <jas@extundo.com>
20820
20821         * lib/dummy.c: New file.
20822
20823 2004-07-16  Bruno Haible  <bruno@clisp.org>
20824
20825         * lib/backupfile.h: Add extern "C" for C++.
20826         * lib/closeout.h: Likewise.
20827         * lib/copy-file.h: Likewise.
20828         * lib/findprog.h: Likewise.
20829         * lib/full-write.h: Likewise.
20830         * lib/pathname.h: Likewise.
20831         * lib/progname.h: Likewise.
20832         * lib/stpcpy.h: Likewise.
20833         * lib/stpncpy.h: Likewise.
20834         * lib/strcase.h: Likewise.
20835         * lib/strstr.h: Likewise.
20836         * lib/xalloc.h: Likewise.
20837
20838         * lib/mbswidth.h: Add extern "C" for C++.
20839         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
20840
20841 2004-07-13  Robert Millan  <robertmh@gnu.org>
20842
20843         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
20844
20845 2004-07-09  Simon Josefsson  <jas@extundo.com>
20846
20847         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
20848         failed without this.)
20849
20850 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20851
20852         * modules/chown (Files): Add lib/fchown-stub.c, since
20853         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
20854
20855 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20856
20857         * lib/fchown-stub.c: New file.
20858
20859 2004-06-24  Jim Meyering  <jim@meyering.net>
20860
20861         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
20862
20863 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20864
20865         * modules/argz: Omit "#include".
20866
20867         * MODULES.html.sh (func_all_modules): Add calloc, to match
20868         2004-06-01 addition of calloc module.
20869
20870 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20871
20872         * m4/argz.m4: New file, which is autoupdated from libtool.
20873
20874 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20875
20876         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
20877         libtool.
20878
20879 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20880
20881         * config/srclist-update: Don't insist on "USA." before the
20882         close-comment, as libtool omits the period and puts the */ on a
20883         separate line.
20884         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
20885         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
20886
20887 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
20888
20889         * modules/argz: New file.
20890         * MODULES.html.sh (func_all_modules): Add argz.
20891
20892 2004-06-12  Jim Meyering  <jim@meyering.net>
20893         and  Paul Eggert  <eggert@cs.ucla.edu>
20894
20895         * modules/hash (Files): Add lib/xalloc.h.
20896         * modules/pipe (Depends-on): Add wait-process.
20897         * modules/stat (Depends-on): Add xalloc.
20898         * modules/userspec (Files): Add lib/userspec.h.
20899         * modules/xstrto
20900
20901         Upgrade from gettext-0.13.
20902         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
20903         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
20904         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
20905
20906 2004-06-10  Jim Meyering  <jim@meyering.net>
20907
20908         * lib/calloc.c: New file.
20909
20910 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
20911
20912         * lib/getdate.y (yylex): Allow space between sign and number.
20913         Problem reported by Dan Jacobson.
20914
20915 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
20916
20917         Merge from coreutils CVS.
20918
20919         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
20920         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
20921         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
20922         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
20923         xstrtol.m4: Fix copyright date and/or serial number.
20924
20925         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
20926         See if we need an fchown replacement.
20927         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
20928         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
20929         and use the replacement function if we detect either defect.
20930
20931         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
20932         gl_UTIMECMP.
20933
20934 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
20935         and  Jim Meyering  <jim@meyering.net>
20936
20937         Merge from coreutils CVS.
20938
20939         * lib/stat-macros.h: New file, with contents from file-type.h
20940         and coreutils' system.h.
20941         * lib/file-type.c: Include "stat-macros.h".
20942         * lib/file-type.h (file_type): Move all macro definitions to new file,
20943         stat-macros.h.
20944
20945         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
20946         Wrap old code with this conditional.
20947         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
20948         function that does not dereference symlinks.
20949         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
20950
20951         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
20952         dependency problems.
20953         (xreadlink): Accept new arg SIZE, for efficiency.
20954         All decls and uses changed.
20955         * lib/xreadlink.h: Include <stddef.h>, for size_t.
20956
20957         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
20958         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
20959
20960         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
20961         sysexits.h.
20962
20963 2004-06-01  Jim Meyering  <jim@meyering.net>
20964
20965         * m4/calloc.m4: New file.
20966
20967 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
20968
20969         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
20970         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
20971         Also, fix a typo in a diagnostic.
20972
20973 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
20974
20975         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
20976         or AC_FUNC_REALLOC.
20977
20978 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
20979
20980         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
20981         macros to be defined.
20982         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
20983         the allocator returns NULL because the requested size is zero.
20984
20985 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
20986
20987         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
20988         var.  Add comment explaining why libc still defines it.  This
20989         merges the following patch from glibc:
20990         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
20991
20992 2004-05-20  Andreas Schwab  <schwab@suse.de>
20993
20994         * m4/free.m4: Replace free if it not known to work, not the other
20995         way round.
20996
20997 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
20998
20999         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
21000         present in glibc since revision 1.1 of this file.
21001         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
21002         obstack_alignment_mask, obstack_alloc, obstack_base,
21003         obstack_blank, obstack_blank_fast, obstack_chunk_size,
21004         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
21005         obstack_grow0, obstack_init, obstack_int_grow,
21006         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
21007         obstack_next_free, obstack_object_size, obstack_ptr_grow,
21008         obstack_ptr_grow_fast, obstack_room): Remove declarations of
21009         nonexistent functions.
21010
21011 2004-05-18  Karl Berry  <karl@gnu.org>
21012
21013         * config/srclist.txt: break link for vasnprintf.c.
21014
21015 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21016
21017         Port obstack to the AS/400, where pointers are 16 bytes wide and
21018         you cannot cast an integer to a valid pointer.  This patch is
21019         currently waiting to be integrated into glibc; see
21020         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
21021
21022         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
21023         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
21024         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
21025         (struct obstack): temp member is now a union of a pointer and
21026         an integer, instead of an integer.  All integer uses changed.
21027         This does not affect the physical layout of struct obstack,
21028         except on hosts (like the AS/400) where the size or alignment of
21029         void * is greater than that of ptrdiff_t.
21030         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
21031         __STDC__)]: Store temporary in pointer member of union, not
21032         integer member.
21033         * lib/obstack.c: Include <stddef.h>, for offsetof.
21034         (struct fooalign): Remove; it doesn't need a name.
21035         (union fooround): Change double to long double, and add void *.
21036         (DEFAULT_ALIGNMENT): Use offsetof to compute.
21037         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
21038         not a macro.  Hence the values are always int; so remove all
21039         casts-to-int in uses.
21040
21041 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21042
21043         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
21044         we can get this patch merged into glibc.
21045
21046 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21047             Paul Eggert  <eggert@cs.ucla.edu>
21048
21049         * m4/argp: Depend on alloca.
21050
21051 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21052             Paul Eggert  <eggert@cs.ucla.edu>
21053
21054         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
21055         freecoding.
21056
21057 2004-05-17  Bruno Haible  <bruno@clisp.org>
21058
21059         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
21060         precision that consists of a '.' followed by an empty digit string.
21061         Patch by Tor Lillqvist <tml@iki.fi>.
21062
21063 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21064
21065         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
21066         for backward compatibility with older code.  We need our own
21067         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
21068         it under some other name, and our alloca.h will define it.
21069
21070 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21071             Derek Price  <derek@ximbiot.com>
21072
21073         * lib/alloca.c: Include <alloca.h>, to get our interface.
21074         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
21075         include <alloca.h> first.  Use C89 prototype for alloca; this
21076         requires including <stddef.h> for size_t.  Use extern "C" if C++.
21077         Use #elif for simplicity, since we can assume C89 now.
21078         Don't try to source the system alloca.h since it will not be found
21079         and to prevent recursively including its replacement.
21080         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
21081         * lib/regex.c: Likewise.
21082
21083 2004-05-16  Derek Price  <derek@ximbiot.com>
21084             Paul Eggert  <eggert@cs.ucla.edu>
21085
21086         getline cleanup.  This changes the getndelim2 API: both order of
21087         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
21088         no delimiter).
21089
21090         * lib/getline.c: Don't include stddef.h or stdio.h, since our
21091         interface does that.
21092         (getline): Always use getdelim, so that we don't have two
21093         copies of this code.
21094         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
21095         if available.
21096         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
21097         (GETNDELIM2_MAXIMUM): New macro.
21098         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
21099         instead of the old practice of delim2==0.  All callers changed.
21100         Return -1 on overflow, instead of returning junk.
21101         Do not set *linesize unless allocation succeeds.
21102         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
21103         that we include sys/types.h.
21104         * lib/getnline.h: Likewise.
21105         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
21106         (getndelim2): Reorder arguments.
21107         * lib/getnline.c (getnline, getndelim):
21108         Don't discard the NMAX argument.
21109         (getnline): Invoke getndelim, to avoid code duplication.
21110         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
21111         of (size_t) -1 by callers of the getnline family.
21112
21113 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21114
21115         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
21116         Check for gettimeofday.
21117         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
21118         Check for settimeofday, stime.
21119
21120 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21121
21122         * lib/nanosleep.c (suspended): Change its type from int to
21123         sig_atomic_t volatile.
21124         (first_call): Make it private to rpl_nanosleep, and have it
21125         be zero initially as that's a bit faster.
21126         (my_usleep): Round up fractional times instead of truncating them,
21127         as this is the usual meaning for 'sleep'.
21128
21129         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
21130         doesn't work.
21131         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
21132         (ENOSYS): Define if not defined.
21133         (settime): Fall back on stime if it exists and settimeofday fails.
21134         But don't bother with fallbacks if a method fails with errno == EPERM.
21135
21136 2004-05-11  Jim Meyering  <jim@meyering.net>
21137
21138         Prior to this change, the save_cwd caller required read access to the
21139         current directory on most systems (ones with the fchdir function).
21140
21141         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
21142         fails, try write-only, and finally, resort to using xgetcwd.
21143
21144 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
21145
21146         * lib/obstack.c, obstack.h: Import changes from libc.
21147
21148 2004-04-28  Bruno Haible  <bruno@clisp.org>
21149
21150         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
21151         also implicitly appends .exe to executables.
21152         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
21153         accepts Windows pathnames.
21154         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21155         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21156         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21157         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21158         Reported by Derek Robert Price <derek@ximbiot.com>.
21159
21160 2004-04-21  Karl Berry  <karl@gnu.org>
21161
21162         * config/srclist.txt (localcharset.c): break sync.
21163
21164 2004-04-20  Paul Eggert  <eggert@twinsun.com>
21165
21166         * m4/host-os.m4: Add a copyright notice.
21167
21168 2004-04-20  Jim Meyering  <jim@meyering.net>
21169
21170         Change UTILS_ to gl_ in AC_DEFINE'd names.
21171         Change utils_- and jm_-prefixed variables, too.
21172         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
21173         UTILS_FUNC_MKDIR_TRAILING_SLASH.
21174         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
21175
21176         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
21177         Don't emit trailing blanks.
21178         Also rename jm_-prefixed variables to have gl_ prefix.
21179
21180         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
21181         Also rename jm_-prefixed variables to have gl_ prefix.
21182
21183         * m4/jm-macros.m4: Reflect the renamings.
21184         * m4/prereq.m4: Likewise.
21185
21186 2004-04-20  Jim Meyering  <jim@meyering.net>
21187
21188         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
21189         memory.
21190
21191 2004-04-20  Jim Meyering  <jim@meyering.net>
21192             Bruno Haible  <bruno@clisp.org>
21193
21194         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
21195         memory when realloc fails.
21196
21197 2004-04-19  Jim Meyering  <jim@meyering.net>
21198
21199         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
21200         now that readutmp.c may call `free (0)'.
21201
21202 2004-04-19  Bruno Haible  <bruno@clisp.org>
21203
21204         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
21205         * m4/inttypes_h.m4: Likewise.
21206         * m4/stdint_h.m4: Likewise.
21207         * m4/intmax_t.m4: Likewise.
21208         * m4/uintmax_t.m4: Likewise.
21209
21210 2004-04-18  Jim Meyering  <jim@meyering.net>
21211
21212         * m4/prereq.m4: Don't forbid jm_ prefix.
21213
21214         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
21215         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
21216         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
21217         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
21218         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
21219         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
21220         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
21221         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
21222         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
21223         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
21224         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
21225         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
21226         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
21227         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
21228         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
21229         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
21230         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
21231         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
21232         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
21233
21234 2004-04-18  Jim Meyering  <jim@meyering.net>
21235
21236         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
21237         failure, don't leak memory and do call END_UTMP_ENT.
21238
21239 2004-04-16  Jim Meyering  <jim@meyering.net>
21240
21241         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
21242         coreutils' stat program.
21243         (gl_PREREQ): Don't require jm_PREREQ_STAT.
21244
21245 2004-04-11  Paul Eggert  <eggert@twinsun.com>
21246
21247         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
21248         C89.
21249         (CHAR_BIT): Remove, since we assume C89.
21250         Include <stdint.h> if available, as per current Autoconf CVS advice.
21251
21252 2004-03-31  Jim Meyering  <jim@meyering.net>
21253
21254         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
21255         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
21256         * m4/xalloc.m4: Likewise.
21257
21258 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21259
21260         Merge from coreutils.
21261
21262         * m4/inttostr.m4: New file.
21263         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
21264         Require AM_STDBOOL_H and gl_TIMESPEC instead.
21265         Require gl_CLOCK_TIME.
21266         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
21267
21268 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21269
21270         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
21271         not bool, to be more consistent with Unix conventions.
21272         Suggested by Bruno Haible.
21273
21274         Merge from coreutils.
21275
21276         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
21277         * lib/umaxtostr.c: New files.
21278
21279         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
21280         the usual <time.h> dance.
21281         (get_date): Change signature to support fractional time stamps.
21282         All callers changed.
21283         * lib/getdate.y: Include "getdate.h" first, as we can now
21284         assume C89 and don't need to worry about 'const'.
21285         Similarly, include "unlocked-io.h" near start, not in middle.
21286         Include <limits.h>.
21287         (textint.value): Use long int rather than int.
21288         (textint.digits): Use size_t rather than int.
21289         (BILLION, LOG10_BILLION): New constants.
21290         (parser_control): New member rel_ns.  Members day_ordinal,
21291         time_zone, month, day, hour, minutes, rel_year, rel_month,
21292         rel_day, rel_hour, rel_minutes, rel_seconds
21293         are now long int, not int.  Member seconds is now struct timespec,
21294         not int.  New member timespec_seen.  Members dates_seen, days_seen,
21295         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
21296         not int.
21297         (%union.intval): Now long int, not int.
21298         New member timespec.
21299         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
21300         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
21301         (spec): Now is a timespec or an item list.
21302         (timespec, items): New nonterminals.
21303         (time, rel, relunit, number, get_date):
21304         Add support for fractional seconds.
21305         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
21306         (gmtime, localtime, mktime): Remove decls; not needed with C89.
21307         (to_hour): First arg is now long int, not int.
21308         (to_year): Returns long int, not int.
21309         Don't treat year -70 like 70.
21310         (tm_diff): Returns long int, not int.
21311         (lookup_word): Use bool instead of int when appropriate.
21312         (yylex): Use size_t for count, not int.
21313         Detect overflow when parsing large integer constants.
21314         Add support for fractions.
21315         (get_date): Make pointers 'const' if possible.
21316         Use more-portable code to detect integer overflow.
21317         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
21318         Don't use ctime; it's not reliable if the year has >4 digits.
21319
21320         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
21321         This is for compatibility with BSD.
21322
21323         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
21324         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
21325         From coreutils' system.h.
21326
21327         * lib/userspec.c: Don't include "posixver.h".
21328         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
21329         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
21330         compatible extension.  Simplify code by removing a boolean int
21331         that was always nonzero if a string was nonnull.
21332
21333 2004-03-30  Jim Meyering  <jim@meyering.net>
21334
21335         Merge from coreutils.
21336
21337         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
21338         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
21339         on some systems one must include <grp.h> before it.
21340         Reported by Christian Krackowizer.
21341
21342 2004-03-30  Jim Meyering  <jim@meyering.net>
21343
21344         Merge from coreutils.
21345
21346         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
21347
21348         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
21349         an empty input stream.
21350
21351         * lib/readtokens.c: Include <stdbool.h>.
21352         (readtoken): Use `size_t' rather than int/long.
21353         All callers adjusted.
21354         Use `bool' rather than `int' where appropriate.
21355         Use memset rather than an explicit loop.
21356         Use x2nrealloc rather than xrealloc.
21357         Allow the use of `\0' as a delimiter.
21358         (readtokens): Likewise.
21359         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
21360
21361 2004-03-30  Jim Meyering  <jim@meyering.net>
21362
21363         * m4/realloc.m4: Remove file, since now it does no more than
21364         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
21365         the `configure.ac' section of module/realloc.
21366         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
21367
21368 2004-03-30  Bruno Haible  <bruno@clisp.org>
21369
21370         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
21371         nonnull.
21372
21373 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21374
21375         Merge changes to getloadavg.c from coreutils and Emacs.
21376
21377         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
21378         Define to an expression, not to the empty string.
21379         Include cloexec.h and xalloc.h.
21380         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
21381         Use set_cloexec_flag rather than rolling our own.
21382         * lib/cloexec.c, lib/cloexec.h: New files.
21383
21384 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21385
21386         * m4/cloexec.m4: New file.
21387
21388 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21389
21390         * lib/getopt.h: Sync with libc CVS.
21391
21392 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21393             Bruno Haible  <bruno@clisp.org>
21394
21395         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
21396         mbswidth.
21397
21398 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21399             Bruno Haible  <bruno@clisp.org>
21400
21401         * lib/mbswidth.h: Include <wchar.h> only if
21402         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
21403         <wchar.h>.
21404         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
21405
21406 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21407
21408         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
21409         Sync with libc CVS.
21410         * lib/getopt_int.h: New file, also synced from libc.
21411
21412 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21413
21414         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
21415         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
21416         Bring back getopt.c, getopt.h, getopt1.c.
21417
21418 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21419
21420         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
21421         All uses changed.  Check for sa_sigaction member; this fixes
21422         a bug first reported by Jason Andrade in
21423         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21424
21425 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21426
21427         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
21428         '#if' expressions.  Unlike the code it replaces, it does not
21429         depend on (defined _SC_PAGESIZE).  However, it does depend on
21430         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
21431         first reported by Jason Andrade in
21432         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21433
21434 2004-02-25  Simon Josefsson  <jas@extundo.com>
21435
21436         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
21437
21438 2004-02-25  Simon Josefsson  <jas@extundo.com>
21439
21440         * lib/strdup.h: New file.
21441         * lib/strdup.c: Include it.
21442         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
21443         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
21444
21445 2004-02-23  Karl Berry  <karl@gnu.org>
21446
21447         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
21448         (from fencepost.gnu.org:/gd/gnuorg).
21449
21450 2004-02-23  Karl Berry  <karl@gnu.org>
21451
21452         * config/srclistvars.sh (GNUORG) [karl]: redefine.
21453         * config/srclist.txt: add maintain/standards documents.
21454
21455 2004-02-18  Bruno Haible  <bruno@clisp.org>
21456
21457         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
21458         Reported by Derek Robert Price <derek@ximbiot.com>.
21459
21460 2004-02-16  Karl Berry  <karl@gnu.org>
21461
21462         * config/mkinstalldirs, install-sh: update from automake.
21463
21464 2004-02-06  Karl Berry  <karl@gnu.org>
21465
21466         * m4/po.m4: update from gettext 0.14.1.
21467
21468 2004-02-06  Karl Berry  <karl@gnu.org>
21469
21470         * lib/config.charset: update from gettext 0.14.1.
21471
21472 2004-02-05  Paul Eggert  <eggert@twinsun.com>
21473
21474         Add comments and code, prompted by suggestions from Bruno Haible
21475         for sh-quote.
21476         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
21477         describing the enum quoting_style values.
21478         * lib/quotearg.c (quotearg_alloc): New function.
21479         (quotearg_buffer_restyled): Treat lone { and } as special.
21480         Treat = as special.  Work around bug with older shells
21481         that "see" a '\' that is really the 2nd byte of a multibyte char.
21482         Quote empty string with shell_quoting_style.
21483
21484 2004-02-03  Bruno Haible  <bruno@clisp.org>
21485
21486         * m4/pipe.m4: New file, from GNU gettext.
21487
21488 2004-02-03  Bruno Haible  <bruno@clisp.org>
21489
21490         * lib/pipe.h: New file, from GNU gettext.
21491         * lib/pipe.c: New file, from GNU gettext.
21492
21493 2004-01-27  Bruno Haible  <bruno@clisp.org>
21494
21495         * m4/execute.m4: New file, from GNU gettext.
21496
21497 2004-01-27  Bruno Haible  <bruno@clisp.org>
21498
21499         * lib/execute.h: New file, from GNU gettext.
21500         * lib/execute.c: New file, from GNU gettext.
21501         * lib/w32spawn.h: New file, from GNU gettext.
21502
21503 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21504
21505         Merge from diffutils.
21506
21507         * lib/file-type.c (file_type): Add typed memory objects.
21508         * lib/file-type.h (S_TYPEISTMO): New macro.
21509
21510         * lib/c-stack.h (c_stack_action): Remove argv argument.
21511         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
21512         (die): Don't calculate message unless segv_action returns.
21513         (get_stack_location, min_address_from_argv, max_address_from_argv,
21514         volatile stack_base, volatile_stack_size): Remove.
21515         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
21516         that every segmentation violation is a stack overflow.  (Ouch!)
21517         See Debian bug 136249 (still outstanding) for more info about why
21518         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
21519
21520 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21521
21522         Exit-status fix from coreutils.
21523
21524         Use exit_failure consistently in place of EXIT_FAILURE,
21525         so that program exit statuses are consistent on failure.
21526
21527         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
21528         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
21529         * lib/argmatch.h: Comment fix to match the above.
21530         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
21531         Now a macro referring to exit_failure, instead of a separate
21532         variable.  Include "exitfail.h" to get it.
21533         * lib/xstrtol.h: Include "exitfail.h".
21534         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
21535
21536         * lib/long-options.c (parse_long_options): Use prototype
21537         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
21538         for clarity.
21539
21540 2004-01-21  Jim Meyering  <jim@meyering.net>
21541
21542         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
21543         so as not to conflict with a different-sized __mktime_internal
21544         function in GNU libc.
21545         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
21546         Problem building statically-linked `ls' reported by Michael Brunnbauer.
21547
21548 2004-01-20  Karl Berry  <karl@gnu.org>
21549
21550         * config/config.guess: update from config.
21551
21552         * config/srclistvars.sh: GNUWWWLICENSES for karl.
21553
21554 2004-01-20  Bruno Haible  <bruno@clisp.org>
21555
21556         Safer stack allocation.
21557         * lib/setenv.c: Include allocsa.h.
21558         (alloca): Remove fallback definition.
21559         (freea): Remove macro.
21560         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
21561         instead of freea.
21562
21563 2004-01-20  Bruno Haible  <bruno@clisp.org>
21564
21565         * m4/eealloc.m4: New file, from GNU gettext.
21566
21567 2004-01-20  Bruno Haible  <bruno@clisp.org>
21568
21569         * m4/allocsa.m4: New file, from GNU gettext.
21570
21571 2004-01-20  Bruno Haible  <bruno@clisp.org>
21572
21573         * lib/xallocsa.h: New file, from GNU gettext.
21574         * lib/xallocsa.c: New file, from GNU gettext.
21575
21576 2004-01-20  Bruno Haible  <bruno@clisp.org>
21577
21578         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
21579
21580 2004-01-20  Bruno Haible  <bruno@clisp.org>
21581
21582         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
21583         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
21584         specially.
21585
21586 2004-01-20  Bruno Haible  <bruno@clisp.org>
21587
21588         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
21589         patch.
21590
21591 2004-01-20  Bruno Haible  <bruno@clisp.org>
21592
21593         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
21594
21595 2004-01-20  Bruno Haible  <bruno@clisp.org>
21596
21597         * lib/eealloc.h: New file.
21598
21599 2004-01-20  Bruno Haible  <bruno@clisp.org>
21600
21601         * lib/binary-io.h: Avoid warnings on Cygwin.
21602
21603 2004-01-20  Bruno Haible  <bruno@clisp.org>
21604
21605         * lib/allocsa.h: New file, from GNU gettext.
21606         * lib/allocsa.c: New file, from GNU gettext.
21607
21608 2004-01-18  Karl Berry  <karl@gnu.org>
21609
21610         * doc/gpl.texi, doc/lgpl.texi: new files.
21611
21612 2004-01-18  Karl Berry  <karl@gnu.org>
21613
21614         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
21615         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
21616
21617 2004-01-15  Paul Eggert  <eggert@twinsun.com>
21618
21619         Merge from coreutils.
21620
21621         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
21622         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
21623         (gl_DEFAULT_POSIX2_VERSION): Move
21624         the documentation from 'configure' into 'config.hin',
21625         so that 'configure --help' isn't burdened by it and
21626         we don't have to worry about its formatting there.
21627         Reword the documentation so that it's more succinct
21628         and can be run together into a single paragraph.
21629         * m4/same.m4 (gl_SAME): Check for pathconf.
21630
21631 2004-01-15  Paul Eggert  <eggert@twinsun.com>
21632
21633         Merge from coreutils.
21634
21635         * lib/posixver.c: Include posixver.h.
21636
21637         * lib/same.c: Include <stdbool.h>, <limits.h>.
21638         (_POSIX_NAME_MAX): Define if not defined.
21639         (MIN): New macro.
21640         (same_name): If file names are silently truncated, report
21641         that the file names are the same if they are the same after
21642         the silent truncation.
21643
21644         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
21645         conversion function.
21646         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
21647         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
21648         longer needed.
21649
21650 2004-01-15  Jim Meyering  <jim@meyering.net>
21651
21652         Merge from coreutils.
21653
21654         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
21655         if no library is required.
21656         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
21657         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
21658         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
21659         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
21660         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
21661         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
21662         value, $ac_cv_search_crypt, if it's "none required".
21663         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
21664         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
21665         not gl_FUNC_GETLOADAVG.
21666         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
21667         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
21668
21669 2004-01-15  Jim Meyering  <jim@meyering.net>
21670
21671         Merge from coreutils.
21672
21673         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
21674         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
21675         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
21676
21677         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
21678         optional configure-time default.
21679
21680         * lib/version-etc.c (version_etc_copyright): Update copyright date.
21681
21682         * lib/xreadlink.c (xreadlink): Correct outdated comment.
21683
21684 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
21685
21686         Merge from coreutils.
21687
21688         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
21689         value, $ac_cv_search_nanosleep, if it's "none required".
21690
21691 2004-01-14  Paul Eggert  <eggert@twinsun.com>
21692
21693         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
21694         with like-named macro in fnmatch.c.
21695         (EXT): Use an internal constant instead.
21696
21697         Merge fnmatch patches from glibc.
21698         * lib/fnmatch.c (mbsinit): Remove define.
21699         Add libc_hidden_ver (__fnmatch, fnmatch).
21700         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
21701         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
21702
21703 2004-01-14  Karl Berry  <karl@gnu.org>
21704
21705         * config/install-sh: update from automake.
21706
21707 2004-01-13  Karl Berry  <karl@gnu.org>
21708
21709         * config/install-sh: update from automake.
21710
21711 2004-01-09  Karl Berry  <karl@gnu.org>
21712
21713         * config/install-sh: update from automake.
21714
21715 2004-01-05  Karl Berry  <karl@gnu.org>
21716
21717         * config/config.{sub,guess}: update from config.
21718
21719 2003-12-31  Karl Berry  <karl@gnu.org>
21720
21721         * config/depcomp: update from automake.
21722
21723 2003-12-14  Karl Berry  <karl@gnu.org>
21724
21725         * lib/config.charset: update from gettext-runtime.
21726
21727 2003-12-03  Paul Eggert  <eggert@twinsun.com>
21728
21729         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
21730         Bug reported by Alfred M. Szmidt.
21731
21732 2003-12-03  Bruno Haible  <bruno@clisp.org>
21733
21734         * m4/gettext.m4: Upgrade from gettext-0.13.
21735         * m4/po.m4: Upgrade from gettext-0.13.
21736         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
21737         * m4/intmax.m4: New file, from gettext-0.13.
21738         * m4/printf-posix.m4: New file, from gettext-0.13.
21739
21740 2003-11-29  Karl Berry  <karl@gnu.org>
21741
21742         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
21743
21744 2003-11-25  Paul Eggert  <eggert@twinsun.com>
21745             Bruno Haible  <bruno@clisp.org>
21746
21747         * lib/printf-parse.h: Don't include sys/types.h.
21748         (ARG_NONE): New macro.
21749         (char_directive): Change type of *arg_index fields to size_t.
21750         * lib/printf-parse.c: Don't include sys/types.h.
21751         (SSIZE_MAX): Remove macro.
21752         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
21753         Remove unnecessary overflow check.
21754         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
21755         fields.
21756
21757 2003-11-25  Bruno Haible  <bruno@clisp.org>
21758
21759         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
21760
21761 2003-11-25  Bruno Haible  <bruno@clisp.org>
21762
21763         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
21764         gt_TYPE_SSIZE_T.
21765
21766 2003-11-24  Paul Eggert  <eggert@twinsun.com>
21767
21768         * modules/alloca: Remove dependency on xalloc.
21769
21770 2003-11-24  Paul Eggert  <eggert@twinsun.com>
21771
21772         * lib/alloca.c: Remove dependency on xalloc module.
21773         (xalloc_die): Remove.
21774         (memory_full) [!defined emacs]: New macro.
21775         [!defined emacs]: Don't include xalloc.h.
21776         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
21777         address arithmetic overflows.  Change datatypes a bit to avoid
21778         unnecessary casts.
21779
21780 2003-11-22  Jim Meyering  <jim@meyering.net>
21781
21782         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
21783         s/size/size_t/.
21784
21785 2003-11-21  Karl Berry  <karl@gnu.org>
21786
21787         * config/config.{sub,guess}: update from config.
21788
21789 2003-11-18  Karl Berry  <karl@gnu.org>
21790
21791         * config/config.{sub,guess}: update from config.
21792
21793         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
21794
21795 2003-11-17  Paul Eggert  <eggert@twinsun.com>
21796
21797         * README: Mention that S+T cannot overflow if S is the size of
21798         an existing object and T is sufficiently small.
21799
21800 2003-11-17  Jim Meyering  <jim@meyering.net>
21801
21802         On systems without utime and without a utimes function capable of
21803         dealing with a NULL struct utimbuf* argument, this utime replacement
21804         could -- in unusual circumstances -- leak a file descriptor.
21805         * lib/utime.c: Include <unistd.h> and <errno.h>.
21806         (utime_null): Be sure to close `fd' and to preserve errno.
21807         Reported by Geoff Collyer via Arnold Robbins.
21808
21809 2003-11-17  Bruno Haible  <bruno@clisp.org>
21810
21811         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
21812         (Depends-on): Add xsize.
21813
21814 2003-11-17  Bruno Haible  <bruno@clisp.org>
21815
21816         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
21817
21818 2003-11-17  Bruno Haible  <bruno@clisp.org>
21819
21820         * lib/vasnprintf.c (alloca): Remove fallback definition.
21821         (freea): Remove definition.
21822         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
21823         Reported by Paul Eggert.
21824
21825 2003-11-16  Paul Eggert  <eggert@twinsun.com>
21826             Bruno Haible  <bruno@clisp.org>
21827
21828         Protect against address arithmetic overflow.
21829         * lib/printf-args.h: Include stddef.h.
21830         (arguments): Change type of field 'count' to size_t.
21831         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
21832         'unsigned int' where appropriate.
21833         * lib/printf-parse.h: Include sys/types.h.
21834         (char_directive): Change type of *arg_index fields to ssize_t.
21835         (char_directives): Change type of fields 'count', max_*_length to
21836         size_t.
21837         * lib/printf-parse.c: Include sys/types.h and xsize.h.
21838         (SSIZE_MAX): Define fallback value.
21839         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
21840         instead of 'int' where appropriate. Check a_allocated, d_allocated
21841         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
21842         * lib/vasnprintf.c: Include xsize.h.
21843         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
21844         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
21845         overflow. Avoid wraparound when converting a width or precision from
21846         decimal to binary.
21847
21848 2003-11-16  Bruno Haible  <bruno@clisp.org>
21849
21850         Update from GNU gettext.
21851         * lib/printf-parse.c: Generalize to it can be compiled for wide
21852         strings.
21853         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
21854         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
21855         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
21856         SNPRINTF): New macros.
21857         Don't include <alloca.h> if the file is used inside libintl.
21858         (local_wcslen): New function, for Solaris 2.5.1.
21859         (VASNPRINTF): Use it instead of wcslen.
21860
21861 2003-11-16  Bruno Haible  <bruno@clisp.org>
21862
21863         * lib/xsize.h (xmax): New function.
21864         (xsum, xsum3, xsum4): Declare as "pure" functions.
21865
21866 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21867
21868         * modules/xalloc (Files): Undo latest change, since xalloc.h
21869         no longer needs SIZE_MAX or PTRDIFF_MAX.
21870
21871 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21872
21873         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
21874         gl_PTRDIFF_MAX.
21875
21876 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21877
21878         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
21879         "return", to pacify some unknown compiler.  Problem reported
21880         by Joerg Schilling.
21881
21882 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21883
21884         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
21885         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
21886         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
21887         heuristic is just as accurate as far as we know, and it removes a
21888         dependency on size_max.m4 and ptrdiff_max.m4.
21889
21890 2003-11-11  Bruno Haible  <bruno@clisp.org>
21891
21892         * modules/xsize (Files): Add m4/size_max.m4.
21893         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
21894
21895 2003-11-11  Bruno Haible  <bruno@clisp.org>
21896
21897         * m4/size_max.m4: New file.
21898         * m4/ptrdiff_max.m4: New file.
21899         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
21900         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
21901         (gl_XALLOC): Invoke it.
21902
21903 2003-11-11  Bruno Haible  <bruno@clisp.org>
21904
21905         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
21906         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
21907         defined.
21908
21909 2003-11-10  Paul Eggert  <eggert@twinsun.com>
21910
21911         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
21912         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
21913         rejected some allocations of exactly SIZE_MAX - 2 bytes.
21914         From Bruno Haible.
21915         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
21916         not (size_t) -1, since it's defined here.
21917
21918 2003-11-09  Karl Berry  <karl@gnu.org>
21919
21920         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
21921
21922 2003-11-06  Paul Eggert  <eggert@twinsun.com>
21923
21924         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
21925         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
21926         Reject sizes of exactly SIZE_MAX bytes.
21927         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
21928         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
21929
21930 2003-11-05  Bruno Haible  <bruno@clisp.org>
21931
21932         * lib/xsize.h: Include limits.h, to avoid a possible collision with
21933         SIZE_MAX defined in <limits.h> on Solaris.
21934
21935 2003-11-04  Jim Meyering  <jim@meyering.net>
21936
21937         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
21938         variable names, rather than @VAR@.
21939         * modules/poll: Likewise.
21940
21941 2003-11-04  Bruno Haible  <bruno@clisp.org>
21942
21943         * modules/xsize: New file.
21944         * modules/linebreak: Depend on xsize.
21945         * MODULES.html.sh (func_all_modules): Add xsize.
21946
21947 2003-11-04  Bruno Haible  <bruno@clisp.org>
21948
21949         * m4/xsize.m4: New file.
21950
21951 2003-11-04  Bruno Haible  <bruno@clisp.org>
21952
21953         * lib/xsize.h: New file.
21954         * lib/linebreak.c: Include xsize.h.
21955         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
21956         argument for overflow.
21957         Suggested by Paul Eggert.
21958
21959 2003-11-03  Karl Berry  <karl@gnu.org>
21960
21961         * config/config.{guess,sub}: update from config.
21962
21963 2003-11-03  Jim Meyering  <jim@meyering.net>
21964
21965         * modules/userspec (lib_SOURCES): Add userspec.h.
21966         (Include): Add "userspec.h".
21967         Improve description.
21968
21969 2003-11-03  Jim Meyering  <jim@meyering.net>
21970
21971         * lib/userspec.c: Include "userspec.h".
21972         * lib/userspec.h: New file.
21973
21974 2003-11-03  Bruno Haible  <bruno@clisp.org>
21975
21976         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
21977
21978 2003-11-03  Bruno Haible  <bruno@clisp.org>
21979
21980         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
21981         available, to avoid (extremely rare) race condition.
21982         Suggested by Paul Eggert.
21983
21984 2003-11-02  Karl Berry  <karl@gnu.org>
21985
21986         * config/srclist.txt (vasprintf.c): sync broken, sigh.
21987
21988 2003-10-31  Paul Eggert  <eggert@twinsun.com>
21989
21990         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
21991         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
21992         (read_filesystem_list): Set and use me_type_malloced.
21993         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
21994         whatever the type happens to be), for brevity and consistency.
21995         Check for size calculation overflow on Alphas running OSF/1.
21996
21997 2003-10-31  Jim Meyering  <jim@meyering.net>
21998
21999         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
22000
22001         * lib/linebuffer.c: Include <string.h> for declaration of memset.
22002
22003 2003-10-30  Paul Eggert  <eggert@twinsun.com>
22004             Bruno Haible  <bruno@clisp.org>
22005
22006         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
22007         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
22008
22009 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
22010
22011         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
22012         netbsd*-gnu*.  Suggested by Robert Millan.
22013
22014 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22015
22016         * modules/group-member: Depend on stdbool.
22017
22018 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22019
22020         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
22021
22022 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22023
22024         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
22025         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
22026         after the 'gnu' in these cases.  This fixes some bugs in the
22027         previous change, and is based on suggestions by Robert Millan.
22028
22029 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22030
22031         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
22032         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
22033         no longer needed.
22034         * lib/quotearg.c (quotearg_n_options): Use it.
22035         * lib/group-member.c: Include <stdbool.h>.
22036         (free_group_info): Arg is now const *; don't free arg.
22037         (get_group_info): Now returns bool and accepts struct group_info *,
22038         rather than returning a malloc'ed struct group_info *.
22039         All uses changed.  Check for overflow in internal size calculation.
22040
22041         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
22042         rather than xmalloc/xrealloc.
22043         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
22044         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
22045         conformance bug: the old code used a pointer after freeing the
22046         storage that it addressed.
22047         * lib/hash.c (hash_initialize): Simplify the code by using
22048         xalloc_oversized rather than doing it by hand.
22049         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
22050         the buffer preserved.  Use free and xmalloc instead.
22051         * lib/quotearg.c (quotearg_n_options): Likewise.
22052         Use a simpler test for size overflow.  Don't use xalloc_oversized
22053         because unsigned int might be wider than size_t (!); this suggests
22054         that we should switch from unsigned int to size_t for slot numbers.
22055
22056 2003-10-28  Paul Eggert  <eggert@twinsun.com>
22057
22058         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
22059         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
22060         NetBSD kernels.  Requested by Richard Stallman.
22061
22062 2003-10-27  Paul Eggert  <eggert@twinsun.com>
22063
22064         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
22065         to allocate the returned structure.  Do not allocate a subarray,
22066         as x2nrealloc will do that.
22067         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
22068         instead of xnrealloc.
22069         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
22070
22071 2003-10-27  Bruno Haible  <bruno@clisp.org>
22072
22073         * lib/stdbool_.h: Better support for BeOS.
22074
22075 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22076
22077         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
22078         now uses inline.
22079
22080 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22081
22082         * lib/xalloc.h (xalloc_oversized): New static inline function, for
22083         callers that want to do their own size-overflow checking.  Include
22084         <stdbool.h>, since xalloc_oversized returns bool.
22085         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
22086         to use xalloc_oversized.
22087
22088         Add two functions x2realloc, x2nrealloc, for programs that grow
22089         arrays dynamically by doubling their sizes.
22090         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
22091         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
22092         New functions.
22093
22094         Port to C99 semantics for 'inline' of external functions.
22095         Bug reported by Bruno Haible.
22096         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
22097         with the old contents of xnmalloc.
22098         (xnmalloc, xmalloc): Use it.
22099         (xnrealloc_inline): New static inline function,
22100         with the old contents of xnrealloc.
22101         (xnrealloc, xrealloc): Use it.
22102
22103         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
22104         that.
22105
22106 2003-10-26  Karl Berry  <karl@gnu.org>
22107
22108         * config/srclist.txt (COPYING.DOC): no longer available from
22109         /gd/gnuorg; don't know where the ultimate source is.
22110
22111 2003-10-25  Paul Eggert  <eggert@twinsun.com>
22112
22113         Fix several address-calculation bugs in the hash modules,
22114         plus some minor code cleanup.
22115
22116         * lib/hash.h: Include <stdbool.h>, for bool.
22117         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
22118         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
22119         hash_get_n_entries, hash_get_max_bucket_length,
22120         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
22121         hash_rehash): Use size_t rather than unsigned.
22122         * lib/hash.c (struct hash_table, hash_get_n_buckets,
22123         hash_get_n_buckets_used, hash_get_n_entries,
22124         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
22125         hash_get_entries, hash_do_for_each, hash_string, is_prime,
22126         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
22127         Likewise.
22128         (SIZE_MAX): Define if not defined.
22129         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
22130         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
22131         hash_print):
22132         Use const * when possible.
22133         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
22134         (check_tuning): Fix bug: if tuning parameters were very close to
22135         0 or 1, rounding errors could have caused subscript violations.
22136         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
22137         (hash_initialize): Add 'fail:' label
22138         to free table and return NULL, and use it to simplify code.
22139         Use calloc rather than clearing the storage ourself.
22140         (hash_initialize, hash_rehash): Check for arithmetic overflow in
22141         buffer size calculations.
22142         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
22143         Include <stddef.h>, for size_t.
22144         * lib/hash-pjw.c (hash_pjw): Likewise.
22145         Switch to method described by Bruno Haible.
22146         Include <limits.h>, for CHAR_BIT.
22147         (SIZE_BITS): New macro.
22148
22149 2003-10-23  Paul Eggert  <eggert@twinsun.com>
22150
22151         * m4/getline.m4 (AM_FUNC_GETLINE):
22152         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
22153         hosts.  Problem reported by Derek Robert Price in
22154         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
22155         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
22156         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
22157
22158 2003-10-21  Paul Eggert  <eggert@twinsun.com>
22159
22160         * lib/getndelim2.c (getndelim2): When size calculation overflows,
22161         ceiling the allocation at NMAX bytes rather than silently
22162         discarding input bytes before NMAX is reached.  This makes
22163         a difference only if NMAX exceeds SIZE_MAX / 2.
22164
22165         * lib/obstack.c: Merge from glibc.
22166         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
22167         Add libc_hidden_def (_obstack_newchunk).
22168         (_obstack_free) [! defined _LIBC]: Remove.
22169         [defined _LIBC]: Make a strong alias from obstack_free, rather than
22170         a clone of the function body.
22171         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
22172         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
22173
22174         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
22175         glibc.
22176         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
22177         arg to memcpy.
22178
22179         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
22180         (obstack_ptr_grow_fast, obstack_int_grow_fast):
22181         Don't use lvalue casts, as GCC plans to remove support for them
22182         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
22183         was also present in the non-GCC version, indicating that this
22184         code had always been buggy and had never been widely used.
22185         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
22186         Use the fast variant of each macro, rather than copying the
22187         definiens of the fast variant; that way, we'll be more likely to
22188         catch future bugs in the fast variants.
22189
22190 2003-10-20  Bruno Haible  <bruno@clisp.org>
22191
22192         * modules/wait-process: New file.
22193         * MODULES.html.sh (func_all_modules): Add wait-process.
22194
22195 2003-10-20  Bruno Haible  <bruno@clisp.org>
22196
22197         * m4/wait-process.m4: New file.
22198
22199 2003-10-20  Bruno Haible  <bruno@clisp.org>
22200
22201         * lib/wait-process.h: New file, from GNU gettext.
22202         * lib/wait-process.c: New file, from GNU gettext.
22203
22204 2003-10-19  Jim Meyering  <jim@meyering.net>
22205
22206         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
22207         HPUX 10.20.
22208
22209 2003-10-18  Karl Berry  <karl@gnu.org>
22210
22211         * config/config.guess: update from config.
22212
22213 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22214
22215         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
22216         (getgroups): First arg is int, not size_t.
22217         Don't let 'free' mangle errno.
22218
22219 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22220
22221         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
22222
22223 2003-10-16  Karl Berry  <karl@gnu.org>
22224
22225         * config/config.{guess,sub}: update from config.
22226
22227 2003-10-16  Jim Meyering  <jim@meyering.net>
22228
22229         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
22230         memcpy.
22231
22232 2003-10-15  Paul Eggert  <eggert@twinsun.com>
22233
22234         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
22235         (SIZE_MAX): Remove.
22236         (new_exclude, add_exclude_file): Initial size no longer needs to
22237         be a power of 2.
22238         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
22239         our own address arithmetic overflow checking.
22240
22241         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
22242         (fnmatch): Do not alloca more than 2000 wide characters;
22243         instead, use malloc for large buffers.
22244         Check for address arithmetic overflow, and return -1
22245         with errno set to ENOMEM in that case.
22246         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
22247         (NEW_PATTERN): Do not alloca more than 8000 bytes;
22248         instead, return -1.  Check for address arithmetic overflow.
22249
22250 2003-10-14  Paul Eggert  <eggert@twinsun.com>
22251
22252         Handle invalid suffixes and overflow independently, so that
22253         callers can treat them independently as needed.  Fix some bugs in
22254         suffix handling, e.g., "100k@" was not diagnosed as an invalid
22255         suffix for a human-readable blocksize.  The major caller-visible
22256         change is the addition of a new
22257         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
22258         that both overflow and suffix chars were found.
22259
22260         * lib/human.c (humblock): Don't check separately for invalid suffix
22261         char; that is xstrtoumax's job (now that its bug is fixed).
22262         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
22263         INTMAX_MAX]: New macros.
22264         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
22265         TYPE_MAXIMUM): New macros.
22266         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
22267         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
22268         if overflow occurs, as it's what __strtol does and it's more useful
22269         in practice.
22270         (__xstrtol): If __strtol reports some error other than ERANGE,
22271         reflect it to the caller as LONGINT_INVALID.  If it reports
22272         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
22273         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
22274         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
22275         value.
22276         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
22277         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
22278         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
22279         [defined UINTMAX_MAX]: New macros.
22280
22281 2003-10-14  Bruno Haible  <bruno@clisp.org>
22282
22283         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
22284
22285 2003-10-14  Bruno Haible  <bruno@clisp.org>
22286
22287         * m4/sig_atomic_t: New file, from GNU gettext.
22288         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
22289
22290 2003-10-14  Bruno Haible  <bruno@clisp.org>
22291
22292         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
22293         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
22294         Also use volatile where needed.
22295
22296 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22297
22298         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
22299         Change maintainer from Bruno Haible to 'all'.
22300
22301 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22302
22303         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
22304
22305 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22306
22307         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
22308         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
22309         and define in terms of the other primitives.
22310         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
22311         (SIZE_MAX): Define if not already defined.
22312         (array_size_overflow): New function.
22313         (xalloc_die): Abort instead of exiting if 'error' returns.
22314         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
22315         (xmalloc, xrealloc): Use them.
22316         (xcalloc): Check for address arithmetic overflow.
22317         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
22318         a bit faster than strcpy.
22319
22320 2003-10-10  Simon Josefsson  <jas@extundo.com>
22321
22322         * modules/argp (Depends-on): Add restrict and strcase.
22323
22324 2003-10-10  Simon Josefsson  <jas@extundo.com>
22325
22326         * m4/argp.m4: Add AC_C_INLINE.
22327
22328 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22329
22330         Merge getpass from libc, plus a few fixes.
22331
22332         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
22333         Include <stdbool.h>.
22334         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
22335         __fsetlocking to empty.
22336         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
22337         do include <bits/libc-lock.h>.
22338         Do not include <fcntl.h>; not needed.
22339         [_LIBC]: Include <wchar.h>.
22340         (NOTCANCEL_MODE): New macro.
22341         (flockfile, funlockfile) [_LIBC]: New macros.
22342         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
22343         [!_LIBC]: New macros.
22344         (call_fclose): New function.
22345         (getpass): Use it.  Save tty stream separately; this simplifies the
22346         code and makes it more reliable if stdin happens to equal stdout.
22347         Invoke __fsetlocking on tty.
22348         Handle thread cancellation if needed.
22349         Namespace cleanup (use __tcgetattr, __getline).
22350         Use bool for Booleans.
22351         [USE_IN_LIBIO]: Handle wide streams.
22352         [!_LIBC]: Unconditionally do the fseek, since we don't know what
22353         stream might go where.
22354
22355         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
22356         doesn't have to include <stdio.h> before us.
22357         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
22358         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
22359         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
22360         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
22361         if not declared, so that we can use getpass.c code from libc without
22362         rewriting it.
22363         (flockfile, ftrylockfile, funlockfile): New macros.
22364
22365 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22366
22367         * modules/getpass: Depend on stdbool.
22368
22369 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22370
22371         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
22372
22373 2003-10-07  Karl Berry  <karl@gnu.org>
22374
22375         * config/config.{guess,sub}: update from config.
22376
22377 2003-10-06  Jim Meyering  <jim@meyering.net>
22378             Bruno Haible  <bruno@clisp.org>
22379
22380         This lets translators provide better translations for the
22381         "Written by ..." part of --version output.
22382         * lib/version-etc.h: Include stdarg.h.
22383         (version_etc_copyright): Declare as readonly.
22384         (version_etc): Make this function variadic with a NULL-terminated list
22385         of author name strings.
22386         (version_etc_va): New declaration.
22387         * lib/version-etc.c: Include stdarg.h, stdlib.h.
22388         (version_etc_copyright): Declare as readonly.
22389         (version_etc_va): New function. Provide a different translatable string
22390         for each possible number of authors < 10. Abbreviate when there are 10
22391         authors or more.
22392         (version_etc): Make this function variadic. Call version_etc_va.
22393         Suggestion from Gary V. Vaughan.
22394
22395         * lib/long-options.h (parse_long_options): Change prototype: the
22396         authors string is moved to the end and becomes variadic.
22397         * lib/long-options.c: Include stdarg.h.
22398         (parse_long_options): Make this function variadic, too.
22399         Call version_etc_va, not version_etc.
22400
22401 2003-10-06  Bruno Haible  <bruno@clisp.org>
22402
22403         * modules/version-etc-2: Remove file.
22404         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
22405
22406 2003-10-06  Bruno Haible  <bruno@clisp.org>
22407
22408         * modules/fatal-signal: New file.
22409         * MODULES.html.sh (func_all_modules): Add fatal-signal.
22410
22411 2003-10-06  Bruno Haible  <bruno@clisp.org>
22412
22413         * m4/fatal-signal.m4: New file.
22414         * m4/signalblocking.m4: New file, from GNU gettext.
22415
22416 2003-10-06  Bruno Haible  <bruno@clisp.org>
22417
22418         * lib/version-etc-2.h: Remove file.
22419         * lib/version-etc-2.c: Remove file.
22420
22421 2003-10-06  Bruno Haible  <bruno@clisp.org>
22422
22423         * lib/fatal-signal.h: New file, from GNU gettext.
22424         * lib/fatal-signal.c: New file, from GNU gettext.
22425
22426 2003-10-05  Paul Eggert  <eggert@twinsun.com>
22427
22428         * README: Rework advice for preventing empty .o files.
22429         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
22430         not <sys/types.h>.
22431
22432 2003-10-04  Karl Berry  <karl@gnu.org>
22433
22434         * lib/argp*: update from libc.
22435
22436 2003-10-04  Karl Berry  <karl@gnu.org>
22437
22438         * config/config.{guess,sub}: update from config.
22439
22440 2003-10-02  Bruno Haible  <bruno@clisp.org>
22441
22442         * modules/lchown (Include): Add lchown.h.
22443         * modules/time_r (Include): Use "..." syntax.
22444         * modules/xgetdomainname (Include): Add xgetdomainname.h.
22445
22446 2003-10-01  Simon Josefsson  <jas@extundo.com>
22447
22448         * MODULES.html.sh (func_all_modules): Move gethostname from section
22449         'based on' to section 'lacking' POSIX:2001.
22450
22451 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
22452
22453         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
22454         to output mode on the same stream.
22455
22456 2003-09-29  Paul Eggert  <eggert@twinsun.com>
22457
22458         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
22459         Fix arg typo in previous patch.
22460
22461 2003-09-28  Jim Meyering  <jim@meyering.net>
22462
22463         * lib/error.c: Correct cpp indentation.
22464
22465 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22466
22467         * modules/free: New file.
22468
22469 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22470
22471         * m4/free.m4: New file.
22472
22473 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22474
22475         * lib/minmax.h (MIN, MAX)
22476         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
22477         Omit the special code that used __typeof__, since we worry that
22478         it could be more trouble than it's worth.  See:
22479         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
22480         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
22481
22482         * lib/free.c: New file.
22483
22484 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
22485
22486         Trivial fixes to Makefile.am parts of module listings.
22487         * modules/strstr: Append strstr.h to lib_SOURCES.
22488         * modules/strcase: Likewise, for strcase.h.
22489
22490 2003-09-27  Karl Berry  <karl@gnu.org>
22491
22492         * config/mkinstalldirs: update from automake.
22493
22494 2003-09-26  Paul Eggert  <eggert@twinsun.com>
22495
22496         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
22497         (error_tail): Do not loop, reallocating temporary buffer, since
22498         the output cannot contain more wide characters than the input
22499         contains bytes, the size must be big enough already.  This avoids
22500         one potential size overflow calculation.  Check for size overflow
22501         when calculating temporary buffer size.  Free temporary buffer
22502         when done, if it was allocated with malloc; this plugs a memory
22503         leak.  Remove casts from void * to pointers, that are no longer
22504         needed now that we're assuming C89 or better.
22505
22506         Merge error changes from glibc.
22507
22508         * lib/error.c, error.h: Update copyright notice header to match glibc.
22509         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
22510         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
22511         Disable cancellation while printing error.
22512         * lib/error.h: Prepend __ to parameter names.
22513
22514 2003-09-26  Jim Meyering  <jim@meyering.net>
22515
22516         * lib/error.c (error_tail): Move some declarations
22517         into inner scope where the local variables are used.
22518
22519 2003-09-26  Bruno Haible  <bruno@clisp.org>
22520
22521         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
22522         stpncpy().
22523         Don't define stpncpy through config.h; it's now done through stpncpy.h.
22524
22525 2003-09-26  Bruno Haible  <bruno@clisp.org>
22526
22527         * lib/stpncpy.h (gnu_stpncpy): New declaration.
22528         (stpncpy): Define as alias for gnu_stpncpy.
22529         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
22530
22531 2003-09-25  Simon Josefsson  <jas@extundo.com>
22532
22533         * lib/xgetdomainname.h: New file.
22534         * lib/xgetdomainname.c: New file.
22535
22536 2003-09-25  Simon Josefsson  <jas@extundo.com>
22537             Bruno Haible  <bruno@clisp.org>
22538
22539         * modules/getdomainname: New file.
22540         * modules/xgetdomainname: New file.
22541         * MODULES.html.sh (func_all_modules): Add getdomainname,
22542         xgetdomainname.
22543
22544 2003-09-25  Simon Josefsson  <jas@extundo.com>
22545             Bruno Haible  <bruno@clisp.org>
22546
22547         * m4/getdomainname.m4: New file.
22548
22549 2003-09-25  Simon Josefsson  <jas@extundo.com>
22550             Bruno Haible  <bruno@clisp.org>
22551
22552         * lib/getdomainname.h: New file.
22553         * lib/getdomainname.c: New file.
22554
22555 2003-09-25  Karl Berry  <karl@gnu.org>
22556
22557         * lib/argp-fmtstream.c, argp-help.c: update from libc.
22558
22559 2003-09-25  Karl Berry  <karl@gnu.org>
22560
22561         * config/install-sh: update from automake.
22562
22563 2003-09-25  Bruno Haible  <bruno@clisp.org>
22564
22565         * modules/version-etc-2: New file, from modules/version-etc with
22566         modifications.
22567         * MODULES.html.sh (func_all_modules): Add version-etc-2.
22568
22569 2003-09-25  Bruno Haible  <bruno@clisp.org>
22570
22571         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
22572         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
22573
22574 2003-09-24  Simon Josefsson  <jas@extundo.com>
22575
22576         * modules/xgethostname: Add xgethostname.h.
22577
22578 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22579
22580         * lib/linebuffer.c (freebuffer): Don't free the argument, just
22581         the buffer associated with the argument.  Bug reported by
22582         Simon Josefsson.
22583
22584 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22585
22586         * README: Document assumptions that 'int' is at least 32 bits
22587         wide, that integer arithmetic is 2's complement without overflow,
22588         that there are no holes in integer values, that adding sizes of
22589         two nonoverlapping objects can't overflow, and that all-bits-zero
22590         yields scalar zero.  Fix spelling and capitalization typos.
22591
22592 2003-09-19  Karl Berry  <karl@gnu.org>
22593
22594         * lib/argp.h: update from libc.
22595
22596 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22597
22598         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
22599         to avoid spurious warnings like "AC_RUN_IFELSE was called before
22600         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
22601
22602 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22603
22604         * gnulib-tool: Use "test -h", not "test -L", for portability
22605         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
22606         (tags_regexp): Remove, since \| doesn't conform to POSIX.
22607         (sed_extract_prog): Issue s commands one-by-one, rather than
22608         using \| in one s command.
22609
22610 2003-09-16  Paul Eggert  <eggert@twinsun.com>
22611
22612         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
22613         input error, instead of returning NULL the next time we are called
22614         (and therefore losing track of errno).
22615
22616 2003-09-16  Bruno Haible  <bruno@clisp.org>
22617
22618         * gnulib-tool (func_create_testdir): Warn about duplicated
22619         dependencies.
22620
22621 2003-09-15  Paul Eggert  <eggert@twinsun.com>
22622
22623         * modules/argmatch, modules/fatal, modules/obstack,
22624         modules/xalloc, modules/xgethostname: Sort dependencies by
22625         importance, not alphabetically.
22626
22627 2003-09-15  Paul Eggert  <eggert@twinsun.com>
22628
22629         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
22630         fails, so that the caller gets the proper errno.
22631
22632         * lib/readutmp.c (read_utmp): Likewise.
22633         Check for fstat error.  Close stream and free storage
22634         when failing.
22635
22636 2003-09-14  Karl Berry  <karl@gnu.org>
22637
22638         * config/srclist.txt (strdup.c): disable for c89 changes.
22639
22640 2003-09-14  Jim Meyering  <jim@meyering.net>
22641
22642         * lib/getloadavg.c: Correct cpp indentation.
22643         * lib/strdup.c: Likewise.
22644         * lib/vasnprintf.c: Likewise.
22645
22646 2003-09-14  Bruno Haible  <bruno@clisp.org>
22647
22648         * modules/fwriteerror: New file.
22649         * MODULES.html.sh (func_all_modules): Add fwriteerror.
22650
22651 2003-09-14  Bruno Haible  <bruno@clisp.org>
22652
22653         * lib/fwriteerror.h: New file.
22654         * lib/fwriteerror.c: New file.
22655
22656 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22657
22658         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
22659         modules/xgethostname, modules/xalloc: Depend on exit.
22660
22661 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22662
22663         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
22664
22665         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
22666         and AC_MINIX, too, so that their extensions are available.
22667
22668         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
22669         This macro has been superseded by gl_BACKUPFILE.
22670
22671         More patches to assume C89 or better.
22672
22673         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
22674
22675         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
22676         unconditionally.
22677         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
22678         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
22679         Include <string.h>, <stdlib.h> unconditionally.
22680         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
22681         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
22682         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
22683         headers or for string.h.
22684         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
22685         or strtoul.
22686
22687         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
22688         headers.
22689         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
22690         * m4/userspec.m4 (gl_USERSPEC): Likewise.
22691         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
22692         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
22693         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
22694         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
22695         memcpy, memset.
22696         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
22697         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
22698         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
22699         strtol.
22700         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
22701         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
22702         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
22703         strtoul.
22704
22705 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22706
22707         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
22708         * lib/obstack.c [!defined _LIBC]: Likewise.
22709         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
22710         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
22711         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
22712
22713         More changes to assume C89 or better.
22714
22715         * lib/error.c (error_tail): Assume vprintf.
22716
22717         * lib/argmatch.c (getenv): Remove decl.
22718         * lib/progreloc.c (get_full_program_name): Define via prototype.
22719         * lib/setenv.c (clearenv): Likewise.
22720         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
22721         needed.
22722         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
22723         (malloc, memcpy): Remove decls.
22724         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
22725         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
22726         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
22727         (memcpy): Remove macro.
22728         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
22729         (__P): Remove.  All uses removed.
22730         (PTR): Remove.  All uses changed to void *.
22731         (CHAR_BIT, NULL): Remove.
22732         (spaces, zeros, memset_space, memset_zero)
22733         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
22734         Remove.
22735         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
22736         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
22737         Define with prototype.
22738         Remove now-unnecessary prototype decl.
22739         (extra_args_spec): Assume ANSI C.  All uses changed.
22740         (extra_args_spec_iso): Remove.
22741         (my_strftime, emacs_strftimeu): Define via prototype.
22742         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
22743         unconditionally.
22744         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
22745         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
22746         (strtoul, strtol): Remove decls.
22747         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
22748         LONG_MAX): Remove.
22749         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
22750         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
22751         (LOCALE_PARAM_PROTO): New macro.
22752         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
22753         (INTERNAL (strtol), strtol): Define with a prototype.
22754         (PARAMS): Remove.  All uses removed.
22755         * lib/tempname.c: Include <string.h> unconditionally.
22756         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
22757         * lib/xgethostname.c (main): Define with a prototype.
22758         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
22759         Include <stdlib.h> unconditionally.
22760         (calloc, malloc, realloc, free): Remove decls.
22761         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
22762         Include <stdlib.h> unconditionally.  Sort include file names.
22763         (strtod): Remove.
22764         (xstrtod): Define with a prototype.
22765         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
22766         (strtol, strtoul): Remove decls.
22767
22768 2003-09-11  Paul Eggert  <eggert@twinsun.com>
22769
22770         More patches to assume C89 or better.
22771         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
22772         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
22773         string.h, memchr, STDC_HEADERS.
22774
22775 2003-09-11  Paul Eggert  <eggert@twinsun.com>
22776
22777         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
22778         Include <stdlib.h>, <string.h> unconditionally.
22779         Remove now-unnecessary cast to char *.
22780         * lib/strnlen.c: Include <string.h> unconditionally.
22781         * lib/yesno.c (yesno): Define with a prototype.
22782
22783 2003-09-11  Bruno Haible  <bruno@clisp.org>
22784
22785         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
22786
22787 2003-09-10  Jim Meyering  <jim@meyering.net>
22788
22789         * lib/error.c: Correct indentation of cpp directives.
22790
22791 2003-09-10  Bruno Haible  <bruno@clisp.org>
22792
22793         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
22794         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
22795         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
22796         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
22797         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
22798         <stdlib.h> and <string.h> checks.
22799         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
22800         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
22801
22802 2003-09-10  Bruno Haible  <bruno@clisp.org>
22803
22804         * lib/strcspn.c: Include <string.h> unconditionally.
22805         * lib/strpbrk.c: Include <string.h> unconditionally.
22806         * lib/strstr.c: Include <string.h> unconditionally.
22807         * lib/unicodeio.c: Include <string.h> unconditionally.
22808         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
22809         * lib/unsetenv.c: Likewise.
22810         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
22811         * lib/yesno.c: Include <stdlib.h> unconditionally.
22812         (rpmatch): Add prototype.
22813
22814 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22815
22816         More patches to assume C89 or better.
22817         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
22818         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
22819         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
22820         or for string.h.
22821         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
22822         stdlib.h.
22823         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
22824         C headers.
22825         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
22826         string.h.
22827         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
22828         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
22829         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
22830         or for string.h.
22831         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
22832         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
22833         C headers.
22834         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
22835         memcpy.
22836         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
22837         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
22838         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
22839         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
22840         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
22841         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
22842         string.h, free.
22843         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
22844         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
22845         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
22846         C headers, or for string.h.
22847         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
22848         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
22849         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
22850         headers, memory.h, stdlib.h, string.h, strings.h.
22851         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
22852         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
22853         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
22854         strchr.
22855         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
22856         headers, memory.h, string.h.
22857         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
22858         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
22859         free.
22860         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
22861         headers.
22862         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
22863         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
22864         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
22865         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
22866         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
22867
22868 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22869
22870         More K&R removal.
22871
22872         * lib/acosl.c (main): Use a prototype.
22873         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
22874         tanl.c: Likewise.
22875
22876         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
22877
22878         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
22879         (getopt, etopt_long, getopt_long_only, _getopt_internal)
22880         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
22881         with a prototype.
22882         * lib/getopt.c (const): Remove macro.
22883         Include <string.h> unconditionally.
22884         (my_index): Remove; all uses changed to strchr.
22885         (strlen): Remove decl.
22886         (exchange): Remove forward decl; no longer needed.
22887         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
22888         Define with prototype.
22889         * lib/getopt1.c (const): Remove macro.
22890         (getopt_long, getopt_long_only, main): Define with prototype.
22891
22892         * lib/getugroups.c: Include <string.h> unconditionally.
22893
22894         * lib/getusershell.c: Include <stdlib.h> unconditionally.
22895         (getusershell, setusershell, endusershell, readname, main):
22896         Define with prototypes.
22897
22898         * lib/group-member.c: Include group-member.h first.
22899         Include <stdlib.h> unconditionally.
22900
22901         * lib/hard-locale.c: Include hard-locale.h first.
22902         Include <stdlib.h>, <string.h> unconditionally.
22903
22904         * lib/hash.c (free, malloc): Remove decls.
22905         Include <stdlib.h> unconditionally.
22906
22907         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
22908         (getenv): Do not declare.
22909
22910         * lib/idcache.c: Include <string.h> unconditionally.
22911
22912         * lib/long-options.c: Include long-options.h first, to test interface.
22913         Include <stdlib.h> unconditionally.
22914
22915         * lib/makepath.c: Include makepath.h first, to test interface.
22916         Include <stdlib.h> and <string.h> unconditionally.
22917
22918         * lib/linebuffer.c: Include <stdlib.h>.
22919         (free): Remove decl.
22920
22921         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
22922         stddef.h. rpl_malloc returns void *, not char *.
22923         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
22924         prototype.
22925
22926         * lib/md5.h: Include <limits.h> unconditionally.
22927         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
22928         (__P): Remove; all uses removed.
22929         * lib/md5.c: Include "md5.h" first.
22930         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
22931         md5_buffer, md5_process_bytes, md5_process_block):
22932         Define with prototypes.
22933         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
22934         * lib/sha.c: Include "sha.h" first.
22935         Include <stdlib.h>, <string.h> unconditionally.
22936
22937         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
22938         * lib/memcmp.c (__ptr_t): Likewise.
22939         * lib/memrchr.c (__ptr_t): Likewise.
22940         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
22941         Include <string.h> unconditionally.
22942         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
22943         * lib/memchr.c: Include <stdlib.h> unconditionally.
22944         * lib/memchr.c (LONG_MAX): Remove.
22945         * lib/memrchr.c (LONG_MAX): Likewise.
22946         * lib/memchr.c (__memchr): Define via a prototype.
22947         * lib/memrchr.c (__memrchr): Likewise.
22948         * lib/memcmp.c (__P): Remove, and remove all uses.
22949         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
22950         Remove forward decls; no longer needed.
22951         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
22952         Use types required by C89 in prototype.
22953
22954         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
22955         * lib/savedir.c: Likewise.
22956         * lib/mkdir.c (free): Remove decl.
22957         * lib/rmdir.c (rmdir): Define with a prototype.
22958         * lib/savedir.c: Include savedir.h first, to test interface.
22959
22960         * lib/mktime.c (STDC_HEADERS): Remove.
22961         Include <stdlib.h>, <string.h> unconditionally.
22962
22963         * lib/modechange.c: Include <stdlib.h> unconditionally.
22964         (malloc): Remove decl.
22965
22966         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
22967         (free): Remove decl.
22968
22969         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
22970         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
22971         (This type really should be intptr_t, but that's a C99ism.)
22972         (_obstack_memcpy): Remove: all uses changed to memcpy.
22973         Include <string.h> unconditionally.
22974         (struct obstack): Assume __STDC__ for types of members
22975         chunkfun, freefun, extra_arg.
22976         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
22977         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
22978         obstack_begin, obstack_specify_allocation,
22979         obstack_specify_allocation_with_arg, obstack_chunkfun,
22980         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
22981         Remove unprototyped decls and the macros that use them.
22982         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
22983         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
22984         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
22985         (defined __STDC__ && __STDC__)]:
22986         Remove nonprototyped code.
22987         Include <stdlib.h> unconditionally.
22988         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
22989         _obstack_allocated_p, _obstack_free, obstack_free,
22990         _obstack_memory_used, print_and_abort):
22991         Define using prototypes.
22992         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
22993         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
22994         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
22995         obstack_next_free, obstack_object_size, obstack_room) [0]:
22996         Remove unused, unprototyped code.
22997
22998         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
22999
23000         * lib/physmem.c (physmem_total, physmem_available, main): Define
23001         with prototypes.
23002
23003         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
23004         (main): Define with a prototype.
23005
23006         * lib/posixver.c (getenv): Remove decl.
23007
23008         * lib/putenv.c (malloc): Returns void *, not char *.
23009         Include <string.h> unconditionally.
23010         (strchr, memcpy, NULL): Do not define.
23011
23012         * lib/readtokens.c: Include readtokens.h first, to test interface.
23013         Include <stdlib.h>, <string.h> unconditionally.
23014         (init_tokenbuffer): Define with a prototype.
23015
23016         * lib/regex.c (PARAMS): Remove.  All uses removed.
23017         All uses of _RE_ARGS removed, too.
23018         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
23019         unconditionally.
23020         (bzero): Assume memset exists.
23021         (memcmp, memcpy, NULL): Remove.
23022         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
23023         char, or assignments to local vars of type signed char.
23024         (init_syntax_once, PREFIX(extract_number_and_incr),
23025         PREFIX(print_partial_compiled_pattern),
23026         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
23027         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
23028         PREFIX(regex_grow_registers), PREFIX(regex_compile),
23029         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
23030         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
23031         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
23032         wcs_compile_range, byte_compile_range, truncate_wchar,
23033         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
23034         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
23035         count_mbs_length, wcs_re_match_2_internal,
23036         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
23037         PREFIX(alt_match_null_string_p),
23038         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
23039         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
23040         regfree, PREFIX(extract_number)): Define with prototype.  Remove
23041         now-unnecessary declaration, if any.
23042         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
23043         regcomp, regexec):
23044         Remove now-unnecessary casts among pointer types.
23045         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
23046
23047         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
23048         (free): Remove decl.
23049
23050         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
23051
23052         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
23053         (free): Remove decl.
23054
23055         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
23056         * lib/xgetcwd.c: Likewise.
23057
23058         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
23059         (free): Remove decl.
23060
23061         * lib/strchrnul.c (strchrnul): Define with a prototype.
23062         Fix bug: c_in was not converted to char before searching.
23063
23064         The following changes are not K&R related:
23065
23066         * lib/group-member.h: Include <sys/types.h>, so that this file is
23067         self-contained.
23068         * lib/makepath.h: Likewise.
23069
23070         * lib/getusershell.c (readname, default_index, line_size, readname):
23071         Use size_t, not int, for sizes.
23072         (readname): If the size overflows, report an error instead of
23073         looping forever.
23074
23075 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23076
23077         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
23078         libc.
23079
23080 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23081
23082         * README: New section: portability guidelines.
23083
23084 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23085
23086         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
23087         C89 spec.
23088
23089 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23090
23091         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
23092
23093 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23094
23095         Assume C89 or better; remove K&R cruft.
23096         A few of these changes were first proposed by Derek Robert Price
23097         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
23098
23099         * lib/addext.c: Include <string.h> unconditionally.
23100         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
23101         Don't declare getenv or malloc.
23102
23103         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
23104         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
23105         (NULL): Remove.
23106         (find_stack_direction, alloca): Use prototypes.
23107
23108         * lib/atexit.c (atexit): Define using a prototype.
23109
23110         * lib/basename.c, dirname.c, stripslash.c:
23111         Include <string.h> unconditionally.
23112
23113         * lib/bcopy.c: Include <stddef.h>.
23114         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
23115
23116         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
23117
23118         * lib/error.h (error, error_at_line, error_print_progname)
23119         [! (defined (__STDC__) && __STDC__)]: Remove decls.
23120         * lib/error.c: Include error.h first, to check interface.
23121         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23122         (VA_START): Remove; all uses changeed to va_start.
23123         (exit, strerror): Remove decls.
23124         (error_print_progname): Prototype uncondionally.
23125         Don't include <errno.h>; no longer needed.
23126         (private_strerror): Remove.
23127         (error_tail): Always define.
23128         (error, error_at_line): Assume C89 or better; always use prototypes.
23129         * lib/fatal.c: Include "fatal.h" first, to test interface.
23130         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23131         (VA_START): Remove; all uses changed to va_start.
23132         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
23133         this case.
23134         (exit): Remove decl.
23135         (fatal): Prototype unconditionally.  Assume va_start works.
23136         Abort at end, to pacify gcc.
23137
23138         * lib/euidaccess.c (main): Define with a prototype.
23139
23140         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
23141
23142         * lib/exitfail.c: Include <stdlib.h> unconditionally.
23143
23144         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
23145         prototypes.
23146         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
23147         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
23148         (getenv): Remove decl.
23149         (fnmatch): Define using a prototype.
23150         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
23151         (FCT): Define using a prototype.
23152
23153         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
23154
23155         * lib/gethostname.c: Include <stddef.h>.
23156         (gethostname): Define with prototype.  Length is size_t, not int.
23157
23158 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23159
23160         Assume C89 or better; remove K&R cruft.
23161         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
23162         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
23163         string.h, getenv, malloc.
23164         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
23165         headers.
23166         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
23167         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
23168         do not check for strerror.
23169         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
23170         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
23171         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
23172         do not check for doprnt or vprintf.
23173         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
23174         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
23175
23176 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23177
23178         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
23179         getversion.c should have been removed then, but was accidentally
23180         preserved.
23181
23182         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
23183         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
23184
23185 2003-09-08  Karl Berry  <karl@gnu.org>
23186
23187         * config/config.sub, config.guess, srclistvars.sh: update from savannah
23188                 config, forget about prep.
23189
23190         * config/depcomp, missing: update from automake.
23191
23192 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23193
23194         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
23195         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23196
23197 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23198
23199         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
23200         copy_tm_result.  Bug reported by Simon Josefsson in
23201         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23202
23203 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23204
23205         * m4/time_r.m4: New file.
23206         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
23207         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
23208         is. Check for timegm declaration.
23209         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
23210         Do not check for gmtime_r.
23211         Replace mktime if __mktime_internal does not exist and if mktime
23212         hasn't been replaced already.
23213
23214 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23215
23216         * lib/time_r.c, lib/time_r.h: New files.
23217
23218         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
23219         __localtime_r.
23220         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
23221         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
23222
23223         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
23224         __gmtime_r.
23225         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
23226         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
23227         Include <time_r.h>.
23228
23229         * lib/timegm.c: Switch to glibc implementation, with the following
23230         changes:
23231         [defined HAVE_CONFIG_H]: Include <config.h>.
23232         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
23233         (__mktime_internal) [!defined _LIBC]: New decl.
23234         (__gmtime_r) [!defined _LIBC]: New macro and function.
23235         (timegm): Use a prototype, since gnulib assumes C89.
23236         Do not bother declaring tmp to be const, as it's not really usefu.
23237         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
23238         (timegm): Declare only if HAVE_DECL_TIMEGM.
23239
23240 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23241
23242         * MODULES.html.sh (func_all_modules): Add time_r.
23243         * modules/time_r: New file.
23244         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
23245         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
23246
23247 2003-09-03  Paul Eggert  <eggert@twinsun.com>
23248
23249         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
23250         Bug reported by Lute Kamstra in
23251         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
23252
23253         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
23254         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
23255         course with correspondingly smaller numbers for tomorrow and
23256         yesterday.  From Tadayoshi Funaba.  Originally installed into
23257         sh-utils on 1999-08-07, but the patch got lost (I guess during the
23258         coreutils merge?).
23259
23260 2003-08-31  Simon Josefsson  <jas@extundo.com>
23261
23262         * modules/timegm: New file.
23263         * MODULES.html.sh (func_all_modules): Add timegm.
23264
23265 2003-08-31  Simon Josefsson  <jas@extundo.com>
23266
23267         * m4/timegm.m4: New file.
23268
23269 2003-08-31  Simon Josefsson  <jas@extundo.com>
23270
23271         * lib/timegm.h: New file.
23272         * lib/timegm.c: New file.  Based on
23273         wget-1.8.2/src/http.c:mktime_from_utc.
23274
23275 2003-08-31  Karl Berry  <karl@gnu.org>
23276
23277         * lib/argp.h: update from libc.
23278
23279 2003-08-28  Bruno Haible  <bruno@clisp.org>
23280
23281         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
23282         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
23283         followed by '#define fnmatch fnmatch_posix' gives an error.
23284
23285 2003-08-28  Bruno Haible  <bruno@clisp.org>
23286
23287         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
23288         warning on QNX, which defines O_BINARY to 000000.
23289
23290 2003-08-27  Jim Meyering  <jim@meyering.net>
23291
23292         * m4/mkstemp.m4: Require that the system mkstemp be able to create
23293         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
23294         would fail after 32.  Reported by Danny Levinson.  Details here:
23295         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
23296
23297 2003-08-24  Bruno Haible  <bruno@clisp.org>
23298
23299         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
23300         MSVC7 <stdio.h> is included later.
23301
23302 2003-08-22  Simon Josefsson  <jas@extundo.com>
23303
23304         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
23305
23306 2003-08-20  Karl Berry  <karl@gnu.org>
23307
23308         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
23309
23310 2003-08-20  Bruno Haible  <bruno@clisp.org>
23311
23312         * modules/progname: New file.
23313         * MODULES.html.sh (func_all_modules): Add progname.
23314
23315 2003-08-20  Bruno Haible  <bruno@clisp.org>
23316
23317         * lib/progname.h: New file, from GNU gettext.
23318         * lib/progname.c: New file, from GNU gettext.
23319         * lib/progreloc.c: New file, from GNU gettext.
23320
23321 2003-08-19  Jim Meyering  <jim@meyering.net>
23322
23323         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
23324         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
23325
23326 2003-08-19  Bruno Haible  <bruno@clisp.org>
23327
23328         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
23329         more.
23330
23331 2003-08-19  Bruno Haible  <bruno@clisp.org>
23332
23333         * lib/xstrdup.c: Assume <string.h> exists.
23334
23335 2003-08-18  Paul Eggert  <eggert@twinsun.com>
23336
23337         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
23338         in makefile rules.
23339
23340 2003-08-18  Jim Meyering  <jim@meyering.net>
23341
23342         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
23343         * m4/lib-ld.m4: Likewise.
23344
23345 2003-08-18  Jim Meyering  <jim@meyering.net>
23346
23347         * lib/setenv.h: Indent nested cpp directive.
23348         * lib/vasnprintf.c: Remove trailing blanks.
23349
23350 2003-08-17  Simon Josefsson  <jas@extundo.com>
23351
23352         * modules/xstrndup: New file.
23353         * MODULES.html.sh (func_all_modules): Add xstrndup.
23354
23355 2003-08-17  Simon Josefsson  <jas@extundo.com>
23356
23357         * modules/argp: Fix autoconf macro name. Add more dependencies.
23358
23359 2003-08-17  Simon Josefsson  <jas@extundo.com>
23360
23361         * m4/xstrndup.m4: New file.
23362
23363 2003-08-17  Simon Josefsson  <jas@extundo.com>
23364
23365         * m4/argp.m4: New file.
23366
23367 2003-08-17  Simon Josefsson  <jas@extundo.com>
23368             Bruno Haible  <bruno@clisp.org>
23369
23370         * lib/xstrndup.h: New file.
23371         * lib/xstrndup.c: New file.
23372
23373 2003-08-17  Bruno Haible  <bruno@clisp.org>
23374
23375         * modules/strndup (Files, Include): Add lib/strndup.h.
23376
23377 2003-08-17  Bruno Haible  <bruno@clisp.org>
23378
23379         * modules/euidaccess (Files): Add lib/euidaccess.h.
23380
23381 2003-08-17  Bruno Haible  <bruno@clisp.org>
23382
23383         * lib/strndup.h: New file.
23384
23385 2003-08-17  Bruno Haible  <bruno@clisp.org>
23386
23387         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
23388         like AC_GNU_SOURCE.
23389         * modules/extensions (configure.ac): Comment out the invocation of
23390         gl_USE_SYSTEM_EXTENSIONS.
23391
23392 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23393
23394         Merges from coreutils, etc.
23395         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
23396         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
23397         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
23398         fixing a typo.
23399         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
23400         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
23401
23402 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23403
23404         Document merge from coreutils.
23405         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
23406         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
23407         * modules/utime: Add m4/utimes-null.m4.
23408
23409 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23410
23411         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
23412         space, undoing this 2003-08-12 change:
23413         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23414
23415 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23416
23417         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
23418         strtoul.c from libc, undoing this 2003-08-12 change:
23419         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23420
23421 2003-08-16  Jim Meyering  <jim@meyering.net>
23422
23423         Merges from coreutils.
23424         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
23425         prefix.  Adjust cache variables similarly.  Create 500 rather than
23426         just 300 files, to exercise bug on Darwin6.5, too.
23427         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
23428         $missing_dir.
23429         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
23430         AM_SYS_POSIX_TERMIOS.
23431         Reported by mkc@mathdogs.com.
23432         Also change use of $am_cv_sys_posix_termios
23433         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
23434         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
23435         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
23436         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
23437         in /proc/mounts until it finds one with matching device number.  This
23438         is unnecessary when the FILE argument *is* a mount point.  No stat call
23439         is necessary in that case.  So, disable the statvfs-testing code on
23440         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
23441         as RedHat bug# 84846.
23442         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23443         to 1MB, so as not to render systems with no stack size limit (e.g.,
23444         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23445         Include <unistd.h>.  On some systems,
23446         it is required for the definition of _SC_PAGESIZE.
23447
23448 2003-08-16  Jim Meyering  <jim@meyering.net>
23449
23450         Merge from coreutils.
23451         * lib/xstrtoimax.c: #else #if -> #elif.
23452         * lib/xstrtoumax.c: Likewise.
23453
23454 2003-08-16  Jim Meyering  <jim@meyering.net>
23455
23456         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
23457         * m4/utimes.m4: Removed.
23458         * m4/utimes-null.m4: Renamed from utimes.m4.
23459
23460         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23461         to 1MB, so as not to render systems with no stack size limit (e.g.,
23462         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23463         Include <unistd.h>.  On some systems,
23464         it is required for the definition of _SC_PAGESIZE.
23465
23466 2003-08-16  Jim Meyering  <jim@meyering.net>
23467         and Paul Eggert  <eggert@cs.ucla.edu>
23468
23469         Merges from coreutils, etc.
23470
23471         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
23472         using the latest version from cvs.  This avoids problems with #line
23473         directives using a vendor (Sun) compiler.
23474         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
23475         Don't set GETGROUPS_LIB here; now it's
23476         done via getgroups.m4's wrapper function.
23477         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
23478         rather than just in sh-util/configure.in, so that the
23479         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
23480         same.
23481         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
23482         AC_FUNC_GETLOADAVG where to find getloadavg.c.
23483         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
23484         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
23485         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
23486         Remove code that is now done by the newly-required macros.
23487         Append $(EXEEXT) to DF_PROG.
23488         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
23489         Do not invoke or require the following here,
23490         since prereq.m4 or some gnulib .m4 now does this for us:
23491         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
23492         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
23493         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
23494         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
23495         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
23496         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
23497         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
23498         AC_FUNC_OBSTACK.
23499         Do not replace the following functions, as this is now the job
23500         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
23501         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
23502         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
23503         atexit getpass, strdup, getpagesize.
23504         Replace 'raise'.
23505         Do not check for the following functions, as this is now the job
23506         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
23507         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
23508         setregid.
23509         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
23510         Check for sys/sysctl.h.
23511         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
23512         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
23513         of checking for ssize_t ourselves.
23514
23515         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
23516         Require every macro that gnulib/modules/* suggests for us.
23517         (jm_PREREQ_ADDEXT): New macro.
23518         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
23519         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
23520
23521         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
23522         (gl_PHYSMEM): Use it.
23523         Also check for `table' function.
23524         Check for new headers and functions.
23525         Add check for sys/sysmp.h.
23526         With suggestions from Kaveh Ghazi.
23527         Ignore headers that are present but cannot be compiled.  This
23528         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
23529         C 5.4.
23530
23531 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23532
23533         Document merge from coreutils.
23534         * modules/userspec: Depend on posixver.
23535         * modules/strftime: Depend on tzset.
23536
23537 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23538
23539         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
23540         rather than tab, after '#' in shell-script copyright notices.
23541         Suggested by Bruno Haible.
23542
23543 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23544
23545         * config/srclist-update: Use three spaces, rather than tab, after '#'
23546         in shell-script copyright notices.  Suggested by Bruno Haible.
23547         Remove unnecessary parenthesization in regular expression.
23548
23549 2003-08-15  Jim Meyering  <jim@meyering.net>
23550
23551         Merge from coreutils.
23552         * lib/xgethostname.c: Include <stdlib.h>.
23553         (xghostname): Don't exit for anything other than memory-related
23554         failure; just return NULL.
23555         * lib/userspec.c: Include "posixver.h".
23556         (parse_user_spec): Accept `.' as a separator only
23557         in pre-POSIX-200112 mode.
23558         * lib/strtoimax.c: Use #elif rather than #else #if.
23559         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
23560         Remove function, now that we can rely on a working tzset function.
23561         [!_LIBC]: Ensure that the required autoconf test has been run.
23562         [!defined _NL_CURRENT && HAVE_STRFTIME]:
23563         Use underlying_strftime for %r.
23564         * lib/sha.c: Merge in some clean-up and optimization changes from
23565         glibc.
23566         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
23567         Ensure that it is a multiple of 64.
23568         Rearrange loop exit tests so as to avoid performing an
23569         additional fread after encountering an error or EOF.
23570         * lib/realloc.c: Update copyright date.
23571
23572 2003-08-15  Jim Meyering  <jim@meyering.net>
23573         and Paul Eggert  <eggert@twinsun.com>
23574
23575         Merge from coreutils.
23576         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
23577         member but strut utmpx does not.  Needed for AIX 4.3.3.
23578         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
23579
23580 2003-08-15  Jim Meyering  <jim@meyering.net>
23581         and Paul Eggert  <eggert@cs.ucla.edu>
23582
23583         Merges from coreutils, etc.
23584         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
23585         Require gl_FUNC_TZSET_CLOBBER.
23586         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
23587         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
23588         members.
23589
23590 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23591
23592         Help the merge from coreutils.
23593         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
23594         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
23595         * m4/tzset.m4: Use it too.
23596
23597 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23598
23599         * modules/tzset: New file.
23600
23601 2003-08-14  Jim Meyering  <jim@meyering.net>
23602
23603         Merges from coreutils.
23604         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
23605         variable names, rather than @FNMATCH_H@.
23606         * modules/alloca: Likewise for $(ALLOCA_H).
23607
23608         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
23609         the three copies of the literal target, `fnmatch.h'.
23610         * modules/alloca (alloca.h): Likewise.
23611
23612 2003-08-14  Jim Meyering  <jim@meyering.net>
23613
23614         Merge from coreutils.
23615         * m4/tzset.m4: New file.
23616         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
23617         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
23618         otherwise, AIX 5.1 systems would end up using the latter.
23619         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
23620         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
23621         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
23622         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
23623
23624 2003-08-14  Jim Meyering  <jim@meyering.net>
23625
23626         Merge from coreutils.
23627         * lib/obstack.h: Whitespace changes.
23628         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
23629         and xcalloc return values.
23630         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
23631         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
23632         hang on OSF/1 5.1 for DIR on both local and remote file systems.
23633         Reported by (and fix confirmed by) Nelson H. F. Beebe.
23634         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
23635         error from mntctl.
23636         Use mntctl's return value to drive the entry-processing loop, since
23637         we can't rely on the value of the vmt_length member in the last
23638         entry.  On some systems doing so could result in exhausting
23639         virtual memory.  Based in part on a patch from Mike Jetzer.
23640
23641 2003-08-14  Jim Meyering  <jim@meyering.net>
23642         and Paul Eggert  <eggert@twinsun.com>
23643
23644         Merges from coreutils, plus other fixes.
23645         * lib/physmem.c: Merge in portability changes from gcc/libiberty
23646         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
23647         for credits and details.  Thanks to Kaveh Ghazi for helping
23648         to keep these files in sync.
23649         (ARRAY_SIZE): Define it.
23650         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
23651         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
23652         (memcasecmp): Don't assume size_t fits in unsigned int.
23653         Remove casts and duplicate code.
23654         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
23655         (memcpy): Remove definition.
23656         Merge in some clean-up and optimization changes from glibc.
23657         [BLOCKSIZE]: Move definition to top of file.
23658         Ensure that it is a multiple of 64.
23659         Rearrange loop exit tests so as to avoid performing an
23660         additional fread after encountering an error or EOF.
23661         * lib/md5.h (md5_uintptr): Define.
23662         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
23663         return to the initial working directory.  Preserve errno
23664         for caller.
23665         * lib/idcache.c: Include "xalloc.h".
23666         (xmalloc, xrealloc): Remove decls.
23667         (getuser): Remove casts no longer required in C89.
23668         * lib/human.c: Include stdio.h, for sprintf.
23669         * lib/group-member.c: Include "xalloc.h".
23670         (xmalloc, xrealloc): Remove decls.
23671         (get_group_info): Remove casts no longer required in C89.
23672         * lib/getusershell.c (readname): Remove casts no longer required in
23673         C89.
23674         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
23675         * lib/getline.c: Whitespace fix, from coreutils.
23676
23677 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23678
23679         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
23680         Check for isascii.
23681
23682         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
23683         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
23684         Undo previous (whitespace-only) change.
23685
23686 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23687
23688         * lib/exclude.c: Include <ctype.h>
23689         (IN_CTYPE_DOMAIN): New macro.
23690         (is_space): New fn.
23691         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
23692         and empty lines.
23693
23694         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
23695         Undo previous (whitespace-only) change.
23696
23697 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23698
23699         * config/srclist-update: Change update back to the old behavior,
23700         leaving whitespace alone.  Use one 'sed' command rather than a
23701         pipeline.
23702         (fixlicense): Now a variable, not a function.
23703         (remove_trailing_blanks): Remove.
23704         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
23705         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
23706         Undo previous (whitespace-only) change.
23707
23708 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23709
23710         Merge from coreutils.
23711         * modules/euidaccess: Add lib_SOURCES, include for new
23712         file euidaccess.h
23713
23714 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23715
23716         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
23717         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
23718         Normalize leading white space and remove trailing white space.
23719
23720         Merge from coreutils
23721         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
23722
23723         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
23724         0.12.1.  These files are now being upgraded automatically by
23725         ../config/srclist-update.
23726
23727 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23728
23729         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
23730         Normalize leading white space and remove trailing white space.
23731         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
23732         notice, as per ../config/srclist-update.
23733
23734         Merge from coreutils.
23735         * lib/euidaccess.h: New file.
23736         * lib/euidaccess.c: Include it.
23737         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
23738         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
23739         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
23740
23741 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23742
23743         * config/srclist-update: Add copyright notice.
23744         (remove_id_lines, remove_trailing_blanks): New constants.
23745         (fixfile): Use them to normalize spacing a bit in copied files.
23746         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
23747         Normalize leading white space and remove trailing white space.
23748
23749         * config/texinfo.tex: Sync with texinfo.
23750
23751         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
23752         strtoul.c from libc, to merge coreutils whitespace changes.
23753
23754         * config/srclist.txt: Get the following m4 files from gettext:
23755         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
23756         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
23757         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
23758         wint_t.m4.
23759
23760 2003-08-12  Karl Berry  <karl@gnu.org>
23761
23762         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
23763         been made.
23764
23765 2003-08-11  Paul Eggert  <eggert@twinsun.com>
23766
23767         * modules/gnu-source, m4/gnu-source.m4:
23768         Remove; we're assuming Autoconf 2.54 or later now.
23769         Suggested by Bruno Haible.
23770         * MODULES.html.sh (func_all_modules): Remove gnu-source.
23771
23772 2003-08-11  Bruno Haible  <bruno@clisp.org>
23773
23774         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
23775
23776 2003-08-11  Bruno Haible  <bruno@clisp.org>
23777
23778         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
23779         (vasnprintf): Use it instead of wcslen.
23780
23781 2003-08-11  Bruno Haible  <bruno@clisp.org>
23782
23783         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
23784         value to ensure that _Bool promotes to int. Use #define for _Bool when
23785         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
23786
23787 2003-08-10  Karl Berry  <karl@gnu.org>
23788
23789         * lib/regex.h: update from libc (whitespace fix).
23790
23791 2003-08-09  Paul Eggert  <eggert@twinsun.com>
23792
23793         Merge some files from coreutils.  These changes were
23794         originally made by Jim Meyering.
23795         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
23796         many older Unixes require this.
23797         * lib/alloca.c (alloca): Remove cast to argument of free;
23798         no longer needed in C89.
23799         * lib/alloca_.h, regex.h: Fix white space to match
23800         what GNU indent does.
23801
23802 2003-08-09  Paul Eggert  <eggert@twinsun.com>
23803
23804         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
23805         apparently Emacs's Unicode mode got confused before my 2003-08-05
23806         checkin.
23807
23808 2003-08-08  Paul Eggert  <eggert@twinsun.com>
23809
23810         * m4/extensions.m4: New file.
23811         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
23812         Require gl_USE_SYSTEM_EXTENSIONS.
23813         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
23814         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
23815
23816 2003-08-08  Paul Eggert  <eggert@twinsun.com>
23817
23818         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
23819         * modules/extensions, modules/gnu-source: New files.
23820         * modules/timespec, modules/unlocked-io: Depend on extensions.
23821
23822 2003-08-07  Paul Eggert  <eggert@twinsun.com>
23823
23824         * modules/restrict: New file.
23825         * MODULES.html.sh (func_all_modules): Add restrict.
23826         * modules/regex: Depend on restrict.
23827
23828 2003-08-07  Paul Eggert  <eggert@twinsun.com>
23829
23830         * m4/restrict.m4: New file.
23831         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
23832
23833 2003-08-07  Bruno Haible  <bruno@clisp.org>
23834
23835         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
23836         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
23837
23838 2003-08-07  Bruno Haible  <bruno@clisp.org>
23839
23840         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
23841         makes the module 'getndelim2' compatible with the module 'getline'.
23842
23843 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23844
23845         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
23846         byte with "\201" to avoid glitches when editing that source file
23847         with multi-gnome-terminal.
23848
23849 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23850
23851         * lib/bumpalloc.h: Remove.
23852
23853 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23854
23855         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
23856         * modules/bumpalloc: Remove.
23857
23858 2003-08-04  Paul Eggert  <eggert@twinsun.com>
23859
23860         * lib/getloadavg.c: Change copyright notice and spacing to conform to
23861         GNU coding style.
23862
23863         Merge from coreutils.
23864         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
23865         1. From glibc.
23866         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
23867         from Karl Berry, implemented by Jim Meyering.
23868         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
23869         from Dmitry V. Levin.
23870         Remove anachronistic cast of xrealloc.
23871         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
23872         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
23873         type. Otherwise, it wouldn't compile with at least /bin/cc on
23874         ymp-cray-unicos9.0.2.X.
23875         Combine two mostly-identical uses of alloca into one.
23876         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
23877
23878 2003-08-04  Dave Love  <d.love@dl.ac.uk>
23879
23880         [From Emacs.]
23881
23882         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
23883         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
23884         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
23885         obsolete NLIST_NAME_UNION.
23886         [__GNU__]: Undef BSD and FSCALE.
23887         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
23888
23889 2003-08-03  Paul Eggert  <eggert@twinsun.com>
23890
23891         * lib/stdbool_.h (_Bool): Make it signed char, instead of
23892         an enum type, so that it's guaranteed to promote to int.  See:
23893         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
23894
23895 2003-08-03  Karl Berry  <karl@gnu.org>
23896
23897         * config/depcomp: update from automake.
23898
23899 2003-07-31  Paul Eggert  <eggert@twinsun.com>
23900
23901         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
23902         (strerror): Don't assume that a printable int fits in 14 bytes.
23903
23904 2003-07-31  Bruno Haible  <bruno@clisp.org>
23905
23906         * modules/getpass-gnu: New file.
23907         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
23908
23909 2003-07-31  Bruno Haible  <bruno@clisp.org>
23910
23911         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
23912
23913 2003-07-24  Karl Berry  <karl@gnu.org>
23914
23915         * config/missing: update from automake.
23916
23917 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
23918             Bruno Haible  <bruno@clisp.org>
23919
23920         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
23921         * lib/getline.c (getline, getdelim): Likewise.
23922         Remove _GNU_SOURCE define; now it's defined in config.h through
23923         m4/getline.m4.
23924
23925 2003-07-23  Karl Berry  <karl@gnu.org>
23926
23927         * config/config.sub: update from prep.
23928
23929 2003-07-22  Paul Eggert  <eggert@twinsun.com>
23930
23931         * modules/xalloc (Depends-on): Add exitfail.
23932         * modules/xmemcoll: Likewise.
23933
23934 2003-07-22  Paul Eggert  <eggert@twinsun.com>
23935
23936         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
23937         over-parenthesization in macros.
23938
23939         Sync with coreutils.
23940
23941         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
23942         required by C99.
23943
23944         Use `exit_failure' for xalloc and xmemcoll instead of their own
23945         private exit-failure variables.
23946         * lib/xalloc.h (xalloc_exit_failure): Remove.
23947         * lib/xmalloc.c: Likewise.  Include exitfail.h.
23948         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
23949         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
23950         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
23951         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
23952
23953 2003-07-20  Jim Meyering  <jim@meyering.net>
23954
23955         * modules/closeout (Depends-on): Add exitfail.
23956         Suggestion from Bruno Haible.
23957
23958 2003-07-19  Karl Berry  <karl@gnu.org>
23959
23960         * config/config.sub: update from prep.
23961
23962 2003-07-18  Paul Eggert  <eggert@twinsun.com>
23963
23964         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
23965         Remove.
23966         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
23967         to test that it can stand by itself.  Include "exitfail.h".
23968         Clients should set exit_failure instead.
23969         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
23970
23971 2003-07-18  Bruno Haible  <bruno@clisp.org>
23972
23973         * modules/getndelim2: New file.
23974         * modules/getline: Share files with module getndelim2.
23975         * modules/getnline: Depend on getndelim2 instead of sharing files with
23976         it. Add getnline.c to lib_SOURCES.
23977         * MODULES.html.sh (func_all_modules): Add getndelim2.
23978
23979 2003-07-18  Bruno Haible  <bruno@clisp.org>
23980
23981         * m4/getndelim2.m4: New file.
23982         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
23983         invoke gl_PREREQ_GETNDELIM2.
23984         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
23985         gl_PREREQ_GETNDELIM2.
23986         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
23987         gl_GETNDELIM2.
23988
23989 2003-07-18  Bruno Haible  <bruno@clisp.org>
23990
23991         * lib/getndelim2.h: New file.
23992         * lib/getndelim2.c: Make into a module of its own. Include config.h,
23993         getndelim2.h.
23994         (getndelim2): Make non-static. Change return type to ssize_t.
23995         * lib/getline.h: Change argument names.
23996         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
23997         * lib/getnline.c: Include getndelim2.h.
23998
23999 2003-07-18  Andreas Schwab  <schwab@suse.de>
24000
24001         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
24002
24003 2003-07-17  Karl Berry  <karl@gnu.org>
24004
24005         * config/config.sub: update from prep.
24006
24007 2003-07-17  Bruno Haible  <bruno@clisp.org>
24008
24009         * modules/getnline: New file.
24010         * modules/getline: Add lib/getndelim2.c to source file list.
24011         * MODULES.html.sh (func_all_modules): Add getnline.
24012
24013 2003-07-17  Bruno Haible  <bruno@clisp.org>
24014
24015         * m4/getnline.m4: New file.
24016
24017 2003-07-17  Bruno Haible  <bruno@clisp.org>
24018
24019         * m4/Makefile.am.in: Remove file.
24020         * m4/Makefile.am: Remove file.
24021         * m4/Makefile.in: Remove file.
24022
24023 2003-07-17  Bruno Haible  <bruno@clisp.org>
24024
24025         * lib/getnline.h: New file.
24026         * lib/getnline.c: New file.
24027         * lib/getndelim2.c: New file, extracted from getline.c.
24028         (getndelim2): Renamed from getdelim2, with added nmax argument.
24029         * lib/getline.c: Include getndelim2.c.
24030         (getdelim2): Moved out to getndelim2.c.
24031         (getline, getdelim): Update.
24032
24033 2003-07-17  Bruno Haible  <bruno@clisp.org>
24034
24035         * lib/Makefile.am: Remove file.
24036         * lib/Makefile.in: Remove file.
24037
24038 2003-07-17  Bruno Haible  <bruno@clisp.org>
24039
24040         * configure.in: Remove file.
24041         * Makefile.in: Remove file.
24042
24043 2003-07-17  Bruno Haible  <bruno@clisp.org>
24044
24045         * MODULES.html.sh: Put the </BODY> right before </HTML>.
24046
24047 2003-07-16  Karl Berry  <karl@gnu.org>
24048
24049         * config/srclist-update: was running fixlicense twice, which caused
24050                 texinfo.tex to be nullified for some reason.  Simplify,
24051                 $gplsrc is no longer needed as far as I can see?
24052
24053 2003-07-16  Jim Meyering  <jim@meyering.net>
24054
24055         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
24056
24057 2003-07-15  Paul Eggert  <eggert@twinsun.com>
24058
24059         * config/srclist.txt: Get the following files from gettext-runtime/intl
24060         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
24061         ref-del.sin.  From Bruno Haible.
24062         * config/srclist-update (fixfile): Change grep pattern again, since the
24063         previous fix didn't work (there was another trailing $).  Use
24064         '[$]' to escape the $s.
24065
24066 2003-07-15  Karl Berry  <karl@gnu.org>
24067
24068         * lib/vasnprintf.c: update from gettext.
24069
24070 2003-07-15  Karl Berry  <karl@gnu.org>
24071
24072         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
24073         gets expanded when surrounded by '$'.
24074
24075 2003-07-15  Jim Meyering  <jim@meyering.net>
24076
24077         * modules/save-cwd: Don't depend on error.  From Derek Price.
24078
24079 2003-07-15  Jim Meyering  <jim@meyering.net>
24080
24081         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
24082
24083 2003-07-14  Simon Josefsson  <jas@extundo.com>
24084
24085         * modules/mempcpy: New file.
24086         * MODULES.html.sh (func_all_modules): Add mempcpy.
24087
24088 2003-07-14  Simon Josefsson  <jas@extundo.com>
24089
24090         * m4/mempcpy.m4: New file.
24091
24092 2003-07-14  Simon Josefsson  <jas@extundo.com>
24093
24094         * lib/mempcpy.h: New file.
24095         * lib/mempcpy.c: New file.
24096
24097 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24098
24099         * modules/getdate, modules/posixtm: Depend on mktime.
24100
24101 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24102
24103         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
24104         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
24105         unicodeio.c, unicodeio.h, unlocked-io.h:
24106         Switch from LGPL to GPL.
24107
24108 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24109
24110         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
24111         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
24112         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
24113         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
24114         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
24115         updated automatically by ../config/srclist-update.  This changes
24116         their license from LPGL to GPL.
24117
24118 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24119
24120         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
24121         assumed to refer to the root of the most recent stable gettext version.
24122         * config/srclistvars.sh: Add defaults for eggert.
24123         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
24124         Match "This program" as well as "The program".  This is needed
24125         for gettext.
24126
24127 2003-07-14  Jim Meyering  <jim@meyering.net>
24128
24129         Don't emit diagnostics.  Let callers do that.
24130         * lib/save-cwd.c: Don't include "error.h".
24131         (save_cwd): Don't call error.  Ensure that errno is valid
24132         when returning nonzero.
24133
24134         * lib/save-cwd.h (restore_cwd): Update prototype.
24135         * lib/save-cwd.c (restore_cwd): Remove two parameters.
24136         Simplify.  Don't call error upon failure.  Let callers do that.
24137         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
24138         when auditing is enabled.  But don't bother updating the #if.
24139
24140 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
24141
24142         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
24143         it breaks C++ compilation.
24144         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
24145
24146 2003-07-10  Simon Josefsson  <jas@extundo.com>
24147
24148         * modules/strchrnul (Makefile.am): Add strchrnul.h.
24149
24150 2003-07-10  Jim Meyering  <jim@meyering.net>
24151
24152         * m4/clock_time.m4: Remove trailing blank.
24153         * m4/intmax_t.m4: Likewise.
24154
24155 2003-07-10  Jim Meyering  <jim@meyering.net>
24156
24157         * lib/vasnprintf.c: Remove trailing blanks.
24158         Make cpp indentation consistent.
24159
24160 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24161
24162         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
24163         posixver.c, strftime.c, strnlen.c, strverscmp.c:
24164         Switch from LGPL to GPL.
24165
24166 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24167
24168         * config/srclist.txt: Sort sublists.  Add
24169         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
24170         that differ from gnulib for one reason or another; we'd like this list
24171         to be smaller but for now let's document what we have.
24172
24173 2003-07-08  Paul Eggert  <eggert@twinsun.com>
24174
24175         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
24176         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
24177         and sweeter "eval x=$x".
24178         * config/srclist.txt: Get lib/argp* from glibc.
24179
24180 2003-07-07  Paul Eggert  <eggert@twinsun.com>
24181
24182         * lib/mktime.c: Fix some boundary cases and remove need for floating
24183         point.
24184
24185         Issue a compile-time diagnostic if time_t is floating point, or if
24186         two's complement arithmetic is not in effect, or if arithmetic
24187         right shift does not propagate the sign.  These assumptions were
24188         all in the original code but they weren't checked.
24189
24190         (TIME_T_MIDPOINT, verify): New macros.
24191         (__isleap): Remove; it has integer overflow problems.
24192         (leapyear): New function, without those problems.
24193         (ydhms_tm_diff): Remove; splitting into two parts.
24194         (ydhms_diff): New function, containing the arithmetic part of
24195         the old ydhms_tm_diff function.  Issue a compile-time
24196         diagnostic if we are not using C99 integer division.
24197         Avoid casts when possible.
24198         (guess_time_tm): New function, containing the checking part of
24199         the old ydhms_tm_diff function.  Return the new value, rather than
24200         the difference between it and the old.  Accept a new argument T
24201         so that *T specifies the old value.  Check for overflow in the result.
24202
24203         (__mktime_internal): Use a time_t offset, not a long int offset.
24204         This undoes the 2003-06-04 change, which is no longer needed now
24205         that we have better overflow checking.
24206         (localtime_offset): Likewise.
24207
24208         (__mktime_internal): Avoid harmful overflow on hosts where time_t
24209         and long are 64-bit but int is only 32-bit.
24210         (ydhms_diff): Use long int to store year1 and yday1.
24211         Issue a compile-time diagnostic if long int is not wide enough.
24212
24213         (__mktime_internal): Use long int to store adjusted year and yday.
24214         Use plain C rather than preprocessor commands, if that doesn't
24215         affect efficiency.
24216         Check for overflow (and try to repair) after each probe
24217         rather than checking only at the very end.  This avoids some bugs
24218         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
24219         does not equal GMT offset at maximum time).
24220         Use integer to check for overflow rather than floating point; this
24221         is more portable to non-IEEE hosts, and is a tad faster.
24222         When we detect that we are oscillating between two values,
24223         don't check whether tm_isdst has the requested value, since
24224         we already know the answer.  When tm_isdst has the wrong value,
24225         use a different heuristic to find the right one, based on the
24226         extreme values actually observed in practice in tz2003a,
24227         rather than the (overly optimistic) "previous 3 calendar quarters".
24228
24229         (not_equal_tm, print_tm, check_result): Use "const T" rather than
24230         "T const" to accommodate glibc style.
24231         (check_result): Use less-confusing report format.  "long" -> "long int.
24232         (main): Likewise.
24233         Don't loop if the iteration overflows time_t.
24234         Allow a negative step in the iteration.
24235
24236 2003-07-06  Karl Berry  <karl@gnu.org>
24237
24238         * config/depcomp: update from automake.
24239         * config/config.sub: update from prep.
24240
24241 2003-07-03  Karl Berry  <karl@gnu.org>
24242
24243         * config/config.guess: update from prep.
24244
24245 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24246
24247         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
24248         xreadlink.c now includes it unconditionally.
24249
24250 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24251
24252         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
24253         having it depend on HAVE_SYS_TYPES_H.
24254
24255 2003-07-01  Bruno Haible  <bruno@clisp.org>
24256
24257         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
24258         <sys/types.h> should be sufficient.
24259         Reported by Paul Eggert.
24260
24261 2003-06-26  Karl Berry  <karl@gnu.org>
24262
24263         * config/depcomp: update from automake.
24264
24265 2003-06-26  Bruno Haible  <bruno@clisp.org>
24266
24267         * modules/human: Depend on module stdbool.
24268
24269 2003-06-25  Bruno Haible  <bruno@clisp.org>
24270
24271         * modules/readlink: New file.
24272         * modules/xreadlink: Depend on it.
24273         * MODULES.html.sh (func_all_modules): Add readlink.
24274
24275 2003-06-25  Bruno Haible  <bruno@clisp.org>
24276
24277         * m4/readlink.m4: New file.
24278
24279 2003-06-25  Bruno Haible  <bruno@clisp.org>
24280
24281         * lib/readlink.c: New file.
24282
24283 2003-06-22  Karl Berry  <karl@gnu.org>
24284
24285         * config/srclist.txt: update mkinstalldirs from automake.
24286         * config/mkinstalldirs: update.
24287
24288 2003-06-22  Bruno Haible  <bruno@clisp.org>
24289
24290         Portability to mingw32.
24291         * m4/ssize_t.m4: New file, from GNU gettext.
24292         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
24293         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
24294
24295 2003-06-22  Bruno Haible  <bruno@clisp.org>
24296
24297         * modules/safe-read: Add m4/ssize_t.m4.
24298         * modules/xreadlink: Add m4/ssize_t.m4.
24299
24300 2003-06-20  Bruno Haible  <bruno@clisp.org>
24301
24302         Assume C89, so PARAMS isn't needed.
24303         * lib/unicodeio.h (PARAMS): Remove.
24304         * lib/unicodeio.c: Don't use PARAMS.
24305
24306 2003-06-18  Karl Berry  <karl@gnu.org>
24307
24308         * config/config.{guess,sub}: update from prep.
24309
24310 2003-06-18  Jim Meyering  <jim@meyering.net>
24311
24312         Merge changes from coreutils.
24313         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
24314         Remove explicit declarations of xmalloc and realloc.
24315         Include xalloc.h.
24316         (read_utmp): Remove anachronistic cast of xmalloc.
24317
24318 2003-06-17  Paul Eggert  <eggert@twinsun.com>
24319
24320         Assume C89, so PARAMS isn't needed.
24321         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
24322         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
24323         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
24324         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
24325         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
24326         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
24327         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
24328         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
24329         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
24330         lib/xstrtod.h, lib/xstrtol.h: Likewise.
24331         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
24332         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
24333         no longer needed. Anyway, config.h should always be included before any
24334         other file.
24335
24336 2003-06-11  Simon Josefsson  <jas@extundo.com>
24337
24338         * modules/sysexits: New file.
24339         * MODULES.html.sh (func_all_modules): Add sysexits.
24340
24341 2003-06-11  Simon Josefsson  <jas@extundo.com>
24342
24343         * lib/sysexit_.h: New file.
24344
24345 2003-06-11  Derek Price  <derek@ximbiot.com>
24346
24347         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
24348         necessary.
24349
24350 2003-06-11  Bruno Haible  <bruno@clisp.org>
24351
24352         * m4/sysexits.m4: New file.
24353
24354 2003-06-10  Simon Josefsson  <jas@extundo.com>
24355
24356         * lib/argp.h: New file, from glibc.
24357         * lib/argp-ba.c: New file, from glibc.
24358         * lib/argp-eexst.c: New file, from glibc.
24359         * lib/argp-fmtstream.c: New file, from glibc.
24360         * lib/argp-fmtstream.h: New file, from glibc.
24361         * lib/argp-fs-xinl.c: New file, from glibc.
24362         * lib/argp-help.c: New file, from glibc.
24363         * lib/argp-namefrob.h: New file, from glibc.
24364         * lib/argp-parse.c: New file, from glibc.
24365         * lib/argp-pv.c: New file, from glibc.
24366         * lib/argp-pvh.c: New file, from glibc.
24367         * lib/argp-xinl.c: New file, from glibc.
24368
24369 2003-06-10  Simon Josefsson  <jas@extundo.com>
24370
24371         * modules/strchrnul: New file.
24372
24373 2003-06-10  Simon Josefsson  <jas@extundo.com>
24374
24375         * modules/argp: New file.
24376
24377 2003-06-10  Simon Josefsson  <jas@extundo.com>
24378
24379         * m4/strchrnul.m4: New file.
24380
24381 2003-06-10  Simon Josefsson  <jas@extundo.com>
24382
24383         * lib/strchrnul.h: New file.
24384         * lib/strchrnul.c: New file.
24385
24386 2003-06-10  Bruno Haible  <bruno@clisp.org>
24387
24388         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
24389
24390 2003-06-07  Karl Berry  <karl@gnu.org>
24391
24392         * config/config.{guess,sub}: update from prep.
24393
24394 2003-06-07  Jim Meyering  <jim@meyering.net>
24395
24396         * modules/strtod: Use $(...) notation, not @...@ for
24397         AC_REPLACE'd variables.
24398         * modules/localcharset: Likewise.
24399
24400 2003-06-07  Jim Meyering  <jim@meyering.net>
24401
24402         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
24403         in place of my name in the copyright comment.
24404         Remove definition and uses of __P.
24405
24406         From coreutils.
24407         * lib/stat.c: Don't declare xmalloc explicitly.
24408         Instead, include "xalloc.h".
24409         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
24410         xrealloc, and xcalloc return values.
24411         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
24412         Improve comment.
24413         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
24414
24415 2003-06-07  Bruno Haible  <bruno@clisp.org>
24416
24417         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
24418         avoid AC_CONFIG_LINKS.
24419         * modules/fnmatch (Makefile.am): Use explicit creation rule for
24420         fnmatch.h, to avoid AC_CONFIG_LINKS.
24421         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
24422
24423 2003-06-07  Bruno Haible  <bruno@clisp.org>
24424
24425         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
24426         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
24427         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24428         directory.
24429         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
24430         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24431         directory.
24432
24433 2003-06-06  Jim Meyering  <jim@meyering.net>
24434
24435         Merge from coreutils.
24436         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
24437         Consolidate declarations and initializations of *_base* locals.
24438
24439         Merge from coreutils.
24440         This avoids a core dump on systems without GNU putenv,
24441         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
24442         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
24443         (unsetenv): New static function, from GNU libc.
24444         (rpl_putenv): Use it.
24445
24446         * lib/modechange.c: Remove trailing blanks.
24447
24448         Merge from coreutils.
24449         * lib/fsusage.c: Remove declaration of statfs.
24450         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
24451
24452         * lib/posixtm.c: Include <stdbool.h> unconditionally.
24453
24454 2003-06-06  Jim Meyering  <jim@meyering.net>
24455
24456         * lib/stdbool_.h: Renamed from stdbool.h.in.
24457
24458 2003-06-06  Jim Meyering  <jim@meyering.net>
24459             Bruno Haible  <bruno@clisp.org>
24460
24461         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
24462         Adjust Makefile.am snippet not to redirect directly to target.
24463         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
24464
24465 2003-06-05  Paul Eggert  <eggert@twinsun.com>
24466
24467         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
24468         mismatch, look in future quarters as well as past.  This fixes a
24469         bug when processing fall-backwards gaps immediately after a long
24470         period of daylight-saving time.
24471
24472         * lib/mktime.c: Assume freestanding C89 or better.
24473         (HAVE_LIMITS_H): Remove.  Assume it's 1.
24474         (__P): Remove; not used.
24475         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
24476         (mktime, not_equal_tm, print_tm, check_result,
24477         main): Use prototypes.  Use const * where appropriate.
24478         (main): Fix typo in testing code that uncovered by above changes.
24479         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
24480
24481 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24482
24483         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
24484         locale.h, localeconv.  This merges changes from coreutils.
24485
24486         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
24487         It can be removed after the next Autoconf is released.
24488         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
24489         needed.
24490
24491 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24492
24493         * lib/mktime.c: Fix Debian bug 177940
24494         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
24495         (localtime_offset): Now long int, not time_t, because we want it
24496         to be guaranteed to be signed.  All uses changed.
24497         (__mktime_internal): If overflow would occur when adding offset,
24498         don't add it.
24499
24500         Merge 'human' changes from coreutils.  Rewrite to support
24501         locale-specific notations like thousands separators.
24502         * lib/human.c: Simplify authorship notice.
24503         Include human.h immediately after config.h.
24504         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
24505         <limits.h>: Do not include, since human.h does.
24506         (SIZE_MAX, UINTMAX_MAX): New macros.
24507         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
24508         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
24509         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
24510         (power_letter): Renamed from suffixes.
24511         (generate_suffix_backwards): Remove.
24512         (adjust_value): Now takes int style (because of human.h changes)
24513         and long double value (for greater precision on some platforms).
24514         (group_number): New function.
24515         (human_readable): Use it.  Use integer options, not enum.
24516         Put the options before the sizes in the arg list.
24517         Support all the new options.
24518         The old human_readable function has been removed;
24519         use inttostr.h instead.
24520         (human_readable, default_block_size, humblock):
24521         Use uintmax_t, not int, for block sizes.
24522         (human_readable_inexact, block_size_types): Remove.
24523         (block_size_opts): New constant.
24524         (human_options): Renamed from human_block_size, with new signature
24525         that allows block sizes up to UINTMAX_MAX.  All callers changed.
24526         * lib/human.h: Add copyright and authorship notice.
24527         Include <limits.h> and <stdbool.h> unconditionally.
24528         (PARAMS): Remove.  All uses removed.
24529         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
24530         (enum human_inexact_style): Remove tag; now a nameless enum.
24531         (human_floor, human_ceiling, human_round_to_even): Now have
24532         values 2, 0, 1 rather than -1, 1, 0.
24533         (human_group_digits, human_suppress_point_zero, human_autoscale,
24534         human_base_1024, human_SI, human_B): New constants.
24535         (human_readable_inexact, human_block_size): Remove.
24536         (human_readable): Size args are now uintmax_t, not int.
24537         (human_options): New decl.
24538
24539         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
24540         unnecessary now that we assume C89 or better.  This change
24541         imported from coreutils.
24542
24543         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
24544         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
24545         in the 2003-05-30 sync from glibc.
24546
24547         .h files should stand alone, but we shouldn't include <sys/types.h>
24548         if we can get away with just <stddef.h>.
24549
24550         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
24551         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
24552         rather than <sys/types.h>, as we merely need size_t.
24553         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
24554         to get size_t.
24555         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
24556         Include <stdio.h>, to get FILE.
24557         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
24558         memcasecmp.h has included <stddef.h> and all we need is size_t.
24559         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
24560         our interface, instead of including <sys/types.h>
24561
24562 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24563
24564         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
24565         now, as glibc mktime is buggy on non-glibc systems.
24566
24567 2003-06-03  Karl Berry  <karl@gnu.org>
24568
24569         * config/config.sub: update from prep.
24570
24571 2003-06-02  Paul Eggert  <eggert@twinsun.com>
24572
24573         [from coreutils]
24574         Fix some minor time-related bugs with POSIX time arguments.
24575         Some valid time stamps were being rejected (notably -1, and
24576         time stamps before 1900 on 64-bit hosts).  And some invalid
24577         time stamps were being accepted, e.g. September 31.
24578
24579         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
24580         that we can return (time_t) -1 successfully.
24581         * lib/posixtm.c: Likewise.
24582         [HAVE_STDBOOL_H]: Include <stdbool.h>.
24583         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
24584         (t): Remove static var.
24585         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
24586         of static var.  All uses changed.
24587         (year): Do not reject years before 1900; they can occur with
24588         64-bit time_t.
24589         (posix_time_parse): Do not check for out-of-range components;
24590         that is now the caller's responsibility, since our checks were
24591         only approximations.
24592         (posixtime): Use mktime to check for out-of-range components,
24593         since it knows them exactly.
24594         If mktime returns (time_t) -1, check whether an error actually occurred
24595         by invoking localtime on -1.
24596         (main) [TEST_POSIXTIME]: Check for input data errors, and report
24597         posixtime failures better.
24598         Improve the test data (in comments only).
24599
24600 2003-06-02  Karl Berry  <karl@gnu.org>
24601
24602         * config/mkinstalldirs (version): new variable.
24603         (--version): new option.
24604         (usage): improve message.
24605
24606 2003-05-30  Karl Berry  <karl@gnu.org>
24607
24608         * lib/mktime.c: update from libc.
24609
24610 2003-05-30  Bruno Haible  <bruno@clisp.org>
24611
24612         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
24613         * config/config.rpath: Upgrade to gettext-0.12.1.
24614
24615 2003-05-30  Bruno Haible  <bruno@clisp.org>
24616
24617         * m4/gettext.m4: Upgrade to gettext-0.12.1.
24618         * m4/nls.m4: New file, from gettext-0.12.1.
24619         * m4/po.m4: New file, from gettext-0.12.1.
24620         * m4/progtest.m4: Upgrade to gettext-0.12.1.
24621
24622 2003-05-30  Bruno Haible  <bruno@clisp.org>
24623
24624         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
24625         * lib/localcharset.h: Likewise.
24626         * lib/localcharset.c: Likewise.
24627
24628 2003-05-29  Karl Berry  <karl@gnu.org>
24629
24630         * config/config.rpath: update from gettext.
24631
24632 2003-05-28  Paul Eggert  <eggert@twinsun.com>
24633
24634         Assume the headers required for C89 freestanding compilers.
24635         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
24636         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
24637         * m4/human.m4 (gl_HUMAN): Likewise.
24638         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
24639         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
24640         * m4/userspec.m4 (gl_USERSPEC): Likewise.
24641         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
24642         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24643         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
24644
24645 2003-05-28  Paul Eggert  <eggert@twinsun.com>
24646
24647         Assume the headers required for C89 freestanding compilers.
24648         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
24649         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
24650         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
24651         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
24652         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
24653         define, since <limits.h> is guaranteed to do that.
24654         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
24655         * lib/exclude.c: Include <stdbool.h> unconditionally.
24656         * lib/tempname.c: Include <stddef.h> unconditionally.
24657         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
24658         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
24659         <stddef.h> does that.
24660         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
24661         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
24662         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
24663         needed.
24664         * lib/xstrtol.c: Likewise.
24665         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
24666         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
24667
24668         * lib/addext.c (addext): Use assignment rather than cast, to avoid
24669         warnings on some platforms.
24670
24671         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
24672         arbitrarily.
24673
24674 2003-05-26  Jim Meyering  <jim@meyering.net>
24675
24676         Merge in a change from coreutils:
24677         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
24678         that is guaranteed to be `no'.  Use `no_such_member' to indicate
24679         that condition, rather than `-1' which is slightly misleading.
24680         Change the name of the cache variable to have the gl_ prefix.
24681         Prompted by a patch from Richard Dawe for DJGPP.
24682
24683 2003-05-24  Karl Berry  <karl@gnu.org>
24684
24685         * config/config.guess: update from prep.
24686
24687 2003-05-22  Karl Berry  <karl@gnu.org>
24688
24689         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
24690
24691 2003-05-20  Karl Berry  <karl@gnu.org>
24692
24693         * config/config.guess: update from prep.
24694
24695 2003-05-18  Karl Berry  <karl@gnu.org>
24696
24697         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
24698         might actually be set by the user.
24699
24700         * config/depcomp, install-sh, mdate-sh: update from automake.
24701
24702 2003-05-17  Bruno Haible  <bruno@clisp.org>
24703
24704         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
24705         invalid expansion for AC_EGREP_CPP.
24706         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
24707         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
24708         Suggested by Akim Demaille <akim@epita.fr> in
24709         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
24710
24711 2003-05-12  Jim Meyering  <jim@meyering.net>
24712
24713         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
24714         the space-padded-by-default conversion specifiers, %e, %k, %l.
24715
24716 2003-05-12  Bruno Haible  <bruno@clisp.org>
24717
24718         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
24719         the string is longer than 4 KB.
24720
24721 2003-05-11  Karl Berry  <karl@gnu.org>
24722
24723         * config/config.{guess,sub}: update from prep.
24724
24725 2003-05-09  Bruno Haible  <bruno@clisp.org>
24726
24727         * modules/error: Add m4/strerror_r.m4 to file list.
24728
24729 2003-05-03  Bruno Haible  <bruno@clisp.org>
24730
24731         Upgrade to Unicode-4.0.
24732         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
24733         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
24734         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
24735         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
24736         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
24737         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
24738         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
24739         Change width of U+E0100..U+E01EF from 1 to 0.
24740
24741 2003-04-25  Jim Meyering  <jim@meyering.net>
24742
24743         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
24744         of type size_t, not int.
24745
24746 2003-04-25  Bruno Haible  <bruno@clisp.org>
24747
24748         * lib/copy-file.c: Include <stddef.h>, for size_t.
24749
24750 2003-04-21  Paul Eggert  <eggert@twinsun.com>
24751
24752         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
24753         code which expansion is under static control.  Patch imported from
24754         Akim Demaille's patch to Bison; see
24755         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
24756
24757 2003-04-14  Bruno Haible  <bruno@clisp.org>
24758
24759         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
24760
24761 2003-04-11  Jim Meyering  <jim@meyering.net>
24762
24763         Merge changes from Coreutils.
24764
24765         2003-03-22  Jim Meyering  <jim@meyering.net>
24766
24767         * lib/strftime.c (widen): Cast alloca return value to proper type.
24768
24769         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
24770
24771         From GNU libc.
24772         * lib/strftime.c (my_strftime): Handle very large width
24773         specifications for numeric values correctly.  Improve checks for
24774         overflow.
24775
24776         2003-01-19  Jim Meyering  <jim@meyering.net>
24777
24778         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
24779         definitions.
24780         (nl_get_alt_digit) [! defined my_strftime]: Define.
24781         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
24782         _nl_get_alt_digit and _nl_get_walt_digit.
24783
24784         * lib/strftime.c (my_strftime): Merge in locale-related changes from
24785         libc. These changes have no effect outside of _LIBC.
24786
24787 2003-04-10  Bruno Haible  <bruno@clisp.org>
24788
24789         * modules/findprog: New file.
24790         * MODULES.html.sh (func_all_modules): Add it.
24791
24792 2003-04-10  Bruno Haible  <bruno@clisp.org>
24793
24794         * m4/findprog.m4: New file.
24795         * m4/eaccess.m4: New file.
24796
24797 2003-04-10  Bruno Haible  <bruno@clisp.org>
24798
24799         * lib/findprog.h: New file, from GNU gettext.
24800         * lib/findprog.c: New file, from GNU gettext.
24801
24802 2003-04-05  Jim Meyering  <jim@meyering.net>
24803
24804         Merge changes from Coreutils.
24805
24806         * lib/exclude.h (PARAMS): Remove definition and uses.
24807         * lib/exclude.c: Remove uses of `PARAMS'.
24808
24809         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
24810         Add test-cases for DOS filenames. Declare program_name.
24811         (main): Set up program_name.  Patch by Rich Dawe.
24812
24813         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
24814         error from mntctl.
24815         Use mntctl's return value to drive the entry-processing loop, since
24816         we can't rely on the value of the vmt_length member in the last
24817         entry.  On some systems doing so could result in exhausting
24818         virtual memory.  Based in part on a patch from Mike Jetzer.
24819
24820 2003-04-04  Bruno Haible  <bruno@clisp.org>
24821
24822         * modules/linebreak: New file.
24823         * MODULES.html.sh (func_all_modules): Add it.
24824
24825 2003-04-04  Bruno Haible  <bruno@clisp.org>
24826
24827         * m4/linebreak.m4: New file.
24828
24829 2003-04-04  Bruno Haible  <bruno@clisp.org>
24830
24831         * lib/linebreak.h: New file, from GNU gettext.
24832         * lib/linebreak.c: New file, from GNU gettext with slight
24833         modifications.
24834         * lib/lbrkprop.h: New file, from GNU gettext.
24835
24836 2003-04-03  Bruno Haible  <bruno@clisp.org>
24837
24838         * modules/utf8-ucs4: New file.
24839         * modules/utf16-ucs4: New file.
24840         * modules/ucs4-utf8: New file.
24841         * modules/ucs4-utf16: New file.
24842         * MODULES.html.sh (func_all_modules): Add them.
24843
24844 2003-04-03  Bruno Haible  <bruno@clisp.org>
24845
24846         * m4/utf-ucs4.m4: New file.
24847         * m4/ucs4-utf.m4: New file.
24848
24849 2003-04-03  Bruno Haible  <bruno@clisp.org>
24850
24851         * lib/utf8-ucs4.h: New file, from GNU gettext.
24852         * lib/utf16-ucs4.h: New file, from GNU gettext.
24853         * lib/ucs4-utf8.h: New file, from GNU gettext.
24854         * lib/ucs4-utf16.h: New file, from GNU gettext.
24855
24856 2003-04-02  Bruno Haible  <bruno@clisp.org>
24857
24858         * modules/binary-io: New file.
24859         * MODULES.html.sh (func_all_modules): Add it.
24860
24861 2003-04-02  Bruno Haible  <bruno@clisp.org>
24862
24863         * lib/binary-io.h: New file, from GNU gettext.
24864
24865 2003-04-01  Bruno Haible  <bruno@clisp.org>
24866
24867         * modules/pathname: New file.
24868         * MODULES.html.sh (func_all_modules): Add it.
24869
24870 2003-04-01  Bruno Haible  <bruno@clisp.org>
24871
24872         * lib/pathname.h: New file, from GNU gettext.
24873         * lib/concatpath.c: New file, from GNU gettext.
24874
24875 2003-03-30  Bruno Haible  <bruno@clisp.org>
24876
24877         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
24878
24879 2003-03-30  Bruno Haible  <bruno@clisp.org>
24880
24881         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
24882         function chown() doesn't exist.
24883
24884 2003-03-28  Bruno Haible  <bruno@clisp.org>
24885
24886         * modules/copy-file: New file.
24887         * MODULES.html.sh (func_all_modules): Add it.
24888
24889 2003-03-28  Bruno Haible  <bruno@clisp.org>
24890
24891         * m4/copy-file.m4: New file.
24892
24893 2003-03-28  Bruno Haible  <bruno@clisp.org>
24894
24895         * lib/copy-file.h: New file, from GNU gettext.
24896         * lib/copy-file.c: New file, from GNU gettext.
24897
24898 2003-03-18  Jim Meyering  <jim@meyering.net>
24899
24900         * lib/quote.c (quote_n): Fix typo in comment.
24901
24902 2003-03-18  Bruno Haible  <bruno@clisp.org>
24903
24904         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
24905         checking.
24906         * m4/onceonly_2_57.m4: Likewise.
24907
24908 2003-03-17  Bruno Haible  <bruno@clisp.org>
24909
24910         * m4/onceonly.m4: Require autoconf 2.54 or newer.
24911         (m4_quote): Remove macro.
24912         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
24913
24914 2003-03-14  Jim Meyering  <jim@meyering.net>
24915
24916         Merge changes from Coreutils.
24917         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
24918         to be const, in order to avoid warnings.
24919         (obstack_room): Likewise.
24920         (obstack_empty_p): Likewise.
24921
24922 2003-03-14  Bruno Haible  <bruno@clisp.org>
24923
24924         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
24925         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
24926
24927 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24928
24929         Merge changes from Bison.
24930         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
24931         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
24932         when compiling Bison 1.875's `bitset bset = obstack_alloc
24933         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
24934         * lib/hash.c: Include <stdbool.h> unconditionally.
24935
24936 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24937
24938         * m4/onceonly.m4 (m4_quote): New macro.
24939         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
24940         Quote AC_FOREACH variable-expansions properly.
24941
24942 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24943
24944         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
24945
24946 2003-03-09  Paul Eggert  <eggert@twinsun.com>
24947
24948         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
24949         Reported by Bruce Becker; see:
24950         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
24951
24952 2003-03-03  Paul Eggert  <eggert@twinsun.com>
24953             Bruno Haible  <bruno@clisp.org>
24954
24955         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
24956         Reported by John Hughes, see
24957         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
24958
24959 2003-02-20  Bruno Haible  <bruno@clisp.org>
24960
24961         * MODULES.html.sh (func_all_modules): Add poll.
24962
24963 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24964
24965         * modules/poll: New file.
24966
24967 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24968
24969         * lib/poll_.h: New file.
24970         * lib/poll.c: New file.
24971
24972 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24973
24974         * m4/poll.m4: New file.
24975
24976 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
24977
24978         * modules/mathl: New file.
24979
24980 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
24981
24982         * lib/mathl.h: New file.
24983         * lib/acosl.c: New file.
24984         * lib/asinl.c: New file.
24985         * lib/atanl.c: New file.
24986         * lib/ceill.c: New file.
24987         * lib/cosl.c: New file.
24988         * lib/expl.c: New file.
24989         * lib/floorl.c: New file.
24990         * lib/frexpl.c: New file.
24991         * lib/ldexpl.c: New file.
24992         * lib/logl.c: New file.
24993         * lib/sincosl.c: New file.
24994         * lib/sinl.c: New file.
24995         * lib/sqrtl.c: New file.
24996         * lib/tanl.c: New file.
24997         * lib/trigl.c: New file.
24998         * lib/trigl.h: New file.
24999
25000 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25001
25002         * m4/mathl.m4: New file.
25003
25004 2003-02-18  Bruno Haible  <bruno@clisp.org>
25005
25006         * MODULES.html.sh (func_all_modules): Add mathl.
25007
25008 2003-02-17  Bruno Haible  <bruno@clisp.org>
25009
25010         * modules/mkdtemp: New module.
25011         * MODULES.html.sh (func_all_modules): Add it.
25012
25013 2003-02-17  Bruno Haible  <bruno@clisp.org>
25014
25015         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
25016
25017 2003-02-17  Bruno Haible  <bruno@clisp.org>
25018
25019         * lib/mkdtemp.h: New file, from GNU gettext.
25020         * lib/mkdtemp.c: New file, from GNU gettext.
25021
25022 2003-02-02  Jim Meyering  <jim@meyering.net>
25023
25024         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
25025         e.g. glibc-2.2.93.
25026
25027 2003-01-31  Bruno Haible  <bruno@clisp.org>
25028
25029         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
25030         'rpl_rename'.
25031         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
25032         'rpl_strnlen'.
25033         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
25034         'rpl_strtod'.
25035         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
25036         'rpl_utime'.
25037
25038 2003-01-31  Bruno Haible  <bruno@clisp.org>
25039
25040         * lib/rename.c: #undef rename before defining rpl_rename.
25041         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
25042
25043 2003-01-30  Bruno Haible  <bruno@clisp.org>
25044
25045         * modules/vasnprintf, modules/vasprintf: New modules.
25046         * MODULES.html.sh (func_all_modules): Add them.
25047
25048 2003-01-30  Bruno Haible  <bruno@clisp.org>
25049
25050         * m4/signed.m4: New file, from GNU gettext.
25051         * m4/longdouble.m4: New file, from GNU gettext.
25052         * m4/wchar_t.m4: New file, from GNU gettext.
25053         * m4/wint_t.m4: New file, from GNU gettext.
25054         * m4/vasnprintf.m4: New file.
25055         * m4/vasprintf.m4: New file.
25056
25057 2003-01-30  Bruno Haible  <bruno@clisp.org>
25058
25059         * lib/printf-args.h: New file, from GNU gettext.
25060         * lib/printf-args.c: New file, from GNU gettext.
25061         * lib/printf-parse.h: New file, from GNU gettext.
25062         * lib/printf-parse.c: New file, from GNU gettext.
25063         * lib/vasnprintf.h: New file, from GNU gettext.
25064         * lib/vasnprintf.c: New file, from GNU gettext.
25065         * lib/asnprintf.c: New file, from GNU gettext.
25066         * lib/vasprintf.h: New file, from GNU gettext with modifications.
25067         * lib/vasprintf.c: New file, from GNU gettext.
25068         * lib/asprintf.c: New file, from GNU gettext.
25069
25070 2003-01-29  Bruno Haible  <bruno@clisp.org>
25071
25072         * modules/stpncpy: New module.
25073         * MODULES.html.sh (func_all_modules): Add it.
25074
25075 2003-01-29  Bruno Haible  <bruno@clisp.org>
25076
25077         * m4/stpncpy.m4: New file.
25078
25079 2003-01-29  Bruno Haible  <bruno@clisp.org>
25080
25081         * lib/stpncpy.h: New file, from GNU gettext with modifications.
25082         * lib/stpncpy.c: New file, from GNU gettext with modifications.
25083
25084 2003-01-28  Bruno Haible  <bruno@clisp.org>
25085
25086         * modules/c-ctype: New module.
25087         * MODULES.html.sh (func_all_modules): Add it.
25088
25089 2003-01-28  Bruno Haible  <bruno@clisp.org>
25090
25091         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
25092         Paul Eggert.
25093         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
25094         Paul Eggert.
25095
25096 2003-01-27  Bruno Haible  <bruno@clisp.org>
25097
25098         * modules/xsetenv: New module.
25099         * MODULES.html.sh (func_all_modules): Add it.
25100
25101 2003-01-27  Bruno Haible  <bruno@clisp.org>
25102
25103         * lib/xsetenv.h: New file, from GNU gettext.
25104         * lib/xsetenv.c: New file, from GNU gettext.
25105
25106 2003-01-23  Jim Meyering  <jim@meyering.net>
25107
25108         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
25109         from working on systems without dirfd (at least Irix and OSF1/Tru64).
25110
25111 2003-01-23  Bruno Haible  <bruno@clisp.org>
25112
25113         * modules/minmax: New module.
25114         * MODULES.html.sh (func_all_modules): Add it.
25115
25116 2003-01-23  Bruno Haible  <bruno@clisp.org>
25117
25118         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
25119         Eggert.
25120
25121 2003-01-22  Bruno Haible  <bruno@clisp.org>
25122
25123         * modules/exit: New module.
25124         * MODULES.html.sh (func_all_modules): Add it.
25125
25126 2003-01-22  Bruno Haible  <bruno@clisp.org>
25127
25128         * lib/exit.h: New file, from GNU gettext.
25129
25130 2003-01-19  Bruno Haible  <bruno@clisp.org>
25131
25132         * gnulib-tool: Recognize option --extract-maintainer.
25133         (func_get_maintainer): New function.
25134         * modules/*: Add Maintainer entry.
25135
25136 2003-01-16  Jim Meyering  <jim@meyering.net>
25137
25138         * m4/regex.m4: The `regex' struct is both input and output.
25139         Initialize it before each use.  Patch by Tim Waugh.
25140
25141 2003-01-16  Bruno Haible  <bruno@clisp.org>
25142
25143         * MODULES.html.sh: Add a table of contents. Add the module name as
25144         leftmost column. Add hyperlinks.
25145
25146 2003-01-15  Bruno Haible  <bruno@clisp.org>
25147
25148         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
25149
25150 2003-01-15  Bruno Haible  <bruno@clisp.org>
25151
25152         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
25153         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
25154         suffix.
25155
25156 2003-01-15  Bruno Haible  <bruno@clisp.org>
25157
25158         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
25159
25160 2003-01-15  Bruno Haible  <bruno@clisp.org>
25161
25162         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
25163         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
25164
25165 2003-01-14  Jim Meyering  <jim@meyering.net>
25166
25167         * lib/same.c (same_name): Tweak a comment.
25168
25169 2003-01-14  Bruno Haible  <bruno@clisp.org>
25170
25171         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
25172         when a string comparison is sufficient.
25173
25174 2003-01-14  Bruno Haible  <bruno@clisp.org>
25175
25176         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
25177         'unsigned int'.
25178
25179 2003-01-14  Bruno Haible  <bruno@clisp.org>
25180
25181         * lib/hash-pjw.c: Add comment about low quality of this function.
25182
25183 2003-01-13  Bruno Haible  <bruno@clisp.org>
25184
25185         * modules/stpcpy: Distribute lib/stpcpy.h.
25186         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
25187
25188 2003-01-13  Bruno Haible  <bruno@clisp.org>
25189
25190         * modules/*: Add a description.
25191         * modules/strpbrk: Fix Makefile.am snippet.
25192         * modules/strtoimax: Fix dependencies.
25193         * modules/strtoumax: Likewise.
25194
25195 2003-01-13  Bruno Haible  <bruno@clisp.org>
25196
25197         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
25198         * modules/alloca (Makefile.am): All object files depend on alloca.h.
25199         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
25200
25201 2003-01-13  Bruno Haible  <bruno@clisp.org>
25202
25203         * gnulib-tool (func_create_testdir): Store config/* files in the main
25204         directory.
25205         * config.rpath: Move to ...
25206         * config/config.rpath: ... here.
25207         * modules/gettext: Contains config/config.rpath, not config.rpath.
25208         * modules/iconv: Likewise.
25209
25210 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25211
25212         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25213         to avoid collisions with libcurses and libreadline.
25214
25215         * m4/getstr.m4: Remove.
25216         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
25217
25218 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25219
25220         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25221         to avoid collisions with libcurses and libreadline.
25222
25223         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
25224         * lib/getstr.h, getstr.c: Remove.
25225         * lib/getline.c: Include "getline.h", to check interface.
25226         Move body of old getstr.c here: this defines MIN_CHUNK and
25227         declares getdelim2, which is renamed from getstr.
25228         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
25229
25230         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
25231         All uses changed.
25232         * lib/linebuffer.h: Likewise.
25233         (readline): Remove backward-compatibility macro.
25234
25235 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25236
25237         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25238         to avoid collisions with libcurses and libreadline.
25239         * getstr: Remove.
25240         * MODULES.html.sh: Remove getstr.
25241         * modules/getline: Depend on unlocked-io, not getstr.
25242
25243 2003-01-12  Jim Meyering  <jim@meyering.net>
25244
25245         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
25246
25247 2003-01-10  Bruno Haible  <bruno@clisp.org>
25248
25249         * modules/alloca: Change Makefile.am requirements. Simplify Include
25250         requirements. Add lib/alloca_.h to file list.
25251
25252 2003-01-10  Bruno Haible  <bruno@clisp.org>
25253
25254         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
25255
25256 2003-01-10  Bruno Haible  <bruno@clisp.org>
25257
25258         * lib/alloca_.h: New file.
25259         * lib/getdate.y: Unconditionally include alloca.h.
25260         * lib/makepath.c: Likewise.
25261         * lib/setenv.c: Likewise.
25262         * lib/userspec.c: Likewise.
25263
25264 2003-01-09  Karl Berry  <karl@gnu.org>
25265
25266         * MODULES.html.sh: include `dirname $0` in PATH, to find
25267         gnulib-tool.
25268
25269 2003-01-09  Bruno Haible  <bruno@clisp.org>
25270
25271         * modules/stdbool: Change configure.ac, Makefile.am requirements.
25272         Simplify Include requirements. Add lib/stdbool.h.in to file list.
25273
25274 2003-01-09  Bruno Haible  <bruno@clisp.org>
25275
25276         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
25277
25278 2003-01-09  Bruno Haible  <bruno@clisp.org>
25279
25280         * lib/stdbool.h.in: New file.
25281
25282 2003-01-09  Bruno Haible  <bruno@clisp.org>
25283
25284         * gnulib-tool (func_all_modules): Ignore files ending in ~.
25285         * MODULES.html.sh: Likewise.
25286
25287 2003-01-08  Jim Meyering  <jim@meyering.net>
25288
25289         * lib/full-write.c: Undefine and define-away `const' after inclusion
25290         of errno.h, not before.  Suggestion from Bruno Haible.
25291
25292 2003-01-08  Bruno Haible  <bruno@clisp.org>
25293
25294         * modules/full-read: Depend on full-write.
25295
25296 2003-01-08  Bruno Haible  <bruno@clisp.org>
25297
25298         * lib/safe-read.c: Include specification header first, to ensure its
25299         selfcontainedness.
25300         * lib/full-write.c: Likewise.
25301
25302 2003-01-07  Jim Meyering  <jim@meyering.net>
25303
25304         * lib/full-write.c: Rework so that it may serve to define full_read,
25305         too.
25306         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
25307
25308 2003-01-07  Bruno Haible  <bruno@clisp.org>
25309
25310         * lib/strtoimax.c: Include <stdint.h> as an alternative to
25311         <inttypes.h>.
25312         * lib/xstrtol.h: Likewise.
25313         * lib/xstrtoimax.c: Likewise.
25314         * lib/xstrtoumax.c: Likewise.
25315         * lib/human.h: Likewise.
25316
25317         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
25318         on systems that have <inttypes.h> but not <stdint.h>.
25319
25320 2003-01-07  Bruno Haible  <bruno@clisp.org>
25321
25322         * MODULES.html.sh: Add copyright notice.
25323         (missed_files): Omit CVS directory entries.
25324         (func_module): Make it work with sed-3.02.
25325         * MODULES.txt: Remove file.
25326
25327 2003-01-06  Jim Meyering  <jim@meyering.net>
25328
25329         * lib/version-etc.c: Update year in translatable copyright string.
25330
25331 2003-01-03  Karl Berry  <karl@gnu.org>
25332
25333         * config/config.{guess,sub}: update from prep.
25334
25335 2003-01-02  Karl Berry  <karl@gnu.org>
25336
25337         * doc/COPYING.DOC: belatedly updated to 1.2.
25338
25339 2003-01-01  Karl Berry  <karl@gnu.org>
25340
25341         * gnulib-tool (func_verify_module): report module name $module in
25342         error message, not $1.
25343         * gnulib-tool (create-testdir): don't complain if destdir couldn't
25344         be created, only if it doesn't exist.
25345         * gnulib-tool (last_checkin_date): don't expand the $Date here.
25346
25347 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25348
25349         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
25350
25351 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25352
25353         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
25354         memcmp if strcoll doesn't work.
25355
25356 2002-12-31  Bruno Haible  <bruno@clisp.org>
25357
25358         * lib/utime.c (utime_null): No need to call ftruncate if the file was
25359         nonempty.
25360
25361 2002-12-31  Bruno Haible  <bruno@clisp.org>
25362
25363         * lib/memcoll.c (STRCOLL): New macro.
25364         (memcoll): Use it.
25365
25366 2002-12-31  Bruno Haible  <bruno@clisp.org>
25367
25368         * lib/localcharset.h: New file.
25369         * lib/localcharset.c: Include it.
25370         * lib/unicodeio.c: Likewise.
25371
25372 2002-12-31  Bruno Haible  <bruno@clisp.org>
25373
25374         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
25375         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
25376
25377 2002-12-31  Bruno Haible  <bruno@clisp.org>
25378
25379         * lib/getline.h: Include <stddef.h>, for size_t.
25380
25381         * lib/unicodeio.h: Include <stddef.h>, for size_t.
25382         * lib/unicodeio.c: Don't include <stddef.h>.
25383
25384 2002-12-31  Bruno Haible  <bruno@clisp.org>
25385
25386         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
25387         HAVE_TM_ZONE.
25388
25389 2002-12-24  Karl Berry  <karl@gnu.org>
25390
25391         * config/config.guess: update from prep.
25392
25393 2002-12-24  Bruno Haible  <bruno@clisp.org>
25394
25395         General infrasructure.
25396         * m4/README: Rewritten.
25397         * m4/onceonly.m4: New file.
25398         * m4/onceonly_2_57.m4: New file.
25399
25400         Module atexit.
25401         * m4/atexit.m4: New file.
25402
25403         Module strtod.
25404         * m4/strtod.m4: New file.
25405
25406         Module strtol.
25407         * m4/strtol.m4: New file.
25408
25409         Module strtoul.
25410         * m4/strtoul.m4: New file.
25411
25412         Module memchr.
25413         * m4/memchr.m4: New file.
25414
25415         Module memcmp.
25416         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
25417         (jm_FUNC_MEMCMP): Invoke it.
25418
25419         Module memcpy.
25420         * m4/memcpy.m4: New file.
25421
25422         Module memmove.
25423         * m4/memmove.m4: New file.
25424
25425         Module memset.
25426         * m4/memset.m4: New file.
25427
25428         Module strcspn.
25429         * m4/strcspn.m4: New file.
25430
25431         Module strpbrk.
25432         * m4/strpbrk.m4: New file.
25433
25434         Module strstr.
25435         * m4/strstr.m4: New file.
25436
25437         Module strerror.
25438         * m4/strerror.m4: New file.
25439
25440         Module mktime.
25441         * m4/mktime.m4: Renamed from jm-mktime.m4.
25442         (gl_PREREQ_MKTIME): New macro.
25443         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
25444
25445         Module malloc.
25446         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
25447         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
25448         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
25449
25450         Module realloc.
25451         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
25452         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
25453         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
25454
25455         Module strftime.
25456         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
25457         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
25458         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
25459         gl_TM_GMTOFF.
25460         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
25461
25462         Module xalloc.
25463         * m4/xalloc.m4: New file.
25464
25465         Module alloca.
25466         * m4/alloca.m4: New file.
25467
25468         Module putenv.
25469         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
25470         (jm_FUNC_PUTENV): Invoke it.
25471
25472         Module setenv.
25473         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
25474         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
25475         when invoked twice.
25476         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
25477         gt_FUNC_SETENV.
25478
25479         Module memrchr.
25480         * m4/memrchr.m4: New file.
25481
25482         Module stpcpy.
25483         * m4/stpcpy.m4: New file.
25484
25485         Module strcase.
25486         * m4/strcase.m4: New file.
25487
25488         Module strdup.
25489         * m4/strdup.m4: New file.
25490
25491         Module strnlen.
25492         * m4/strnlen.m4: New file.
25493
25494         Module strndup.
25495         * m4/strndup.m4: New file.
25496
25497         Module xstrtod.
25498         * m4/xstrtod.m4: New file.
25499
25500         Module xstrtol.
25501         * m4/xstrtol.m4: New file.
25502
25503         Module getdate.
25504         * m4/getdate.m4: New file.
25505
25506         Module unlocked-io.
25507         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
25508         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
25509         * m4/jm-glibc-io.m4n: Remove file.
25510
25511         Module long-options.
25512         * m4/long-options.m4: New file.
25513
25514         Module md5.
25515         * m4/md5.m4: New file.
25516
25517         Module sha.
25518         * m4/sha.m4: New file.
25519
25520         Module getstr.
25521         * m4/getstr.m4: New file.
25522
25523         Module getline.
25524         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
25525         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
25526         <sys/types.h>, for size_t. Use the function name gnu_getline, not
25527         simply getline. Infoke gl_PREREQ_GETLINE.
25528
25529         Module obstack.
25530         * m4/obstack.m4: New file.
25531
25532         Module hash.
25533         * m4/hash.m4: New file.
25534
25535         Module readtokens.
25536         * m4/readtokens.m4: New file.
25537
25538         Module strverscmp.
25539         * m4/strverscmp.m4: New file.
25540
25541         Module stdbool.
25542         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
25543         OSF/1.
25544
25545         Module strtoll.
25546         * m4/strtoll.m4: New file.
25547
25548         Module strtoull.
25549         * m4/strtoull.m4: New file.
25550
25551         Module strtoimax.
25552         * m4/strtoimax.m4: New file.
25553
25554         Module strtoumax.
25555         * m4/strtoumax.m4: New file.
25556
25557         Module xstrtoimax.
25558         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
25559         jm_AC_PREREQ_XSTRTOIMAX.
25560         Moved the strtol prerequisites to strtol.m4.
25561         Moved the strtoll prerequisites to strtoll.m4.
25562         Moved the strtoimax prerequisites to strtoimax.m4.
25563
25564         Module xstrtoumax.
25565         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
25566         jm_AC_PREREQ_XSTRTOUMAX.
25567         Moved the strtoul prerequisites to strtoul.m4.
25568         Moved the strtoull prerequisites to strtoull.m4.
25569         Moved the strtoumax prerequisites to strtoumax.m4.
25570
25571         Module chown.
25572         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
25573         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
25574
25575         Module dup2.
25576         * m4/dup2.m4: New file.
25577
25578         Module ftruncate.
25579         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
25580         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
25581
25582         Module getgroups.
25583         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
25584         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
25585
25586         Module gettimeofday.
25587         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
25588         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
25589         gl_PREREQ_GETTIMEOFDAY.
25590
25591         Module mkdir.
25592         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
25593         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
25594
25595         Module mkstemp.
25596         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
25597         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
25598         jm_AC_TYPE_UINTMAX_T.
25599         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
25600
25601         Module stat.
25602         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
25603         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
25604
25605         Module lstat.
25606         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
25607         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
25608
25609         Module timespec.
25610         * m4/timespec.m4 (gl_TIMESPEC): New macro.
25611         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
25612         * m4/st_mtim.m4: Indentation.
25613
25614         Module nanosleep.
25615         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
25616         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
25617         gl_PREREQ_NANOSLEEP.
25618
25619         Module regex.
25620         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
25621         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
25622         (gl_REGEX): New macro.
25623
25624         Module rename.
25625         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
25626         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
25627
25628         Module rmdir.
25629         * m4/rmdir.m4: New file.
25630
25631         Module utime.
25632         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
25633         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
25634         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
25635
25636         Module dirname.
25637         * m4/dirname.m4: New file.
25638
25639         Module getopt.
25640         * m4/getopt.m4: New file.
25641
25642         Module unistd-safer.
25643         * m4/unistd-safer.m4: New file.
25644
25645         Module fnmatch.
25646         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
25647         declaration.
25648         (gl_PREREQ_FNMATCH_EXTRA): New macro.
25649         (gl_FUNC_FNMATCH_POSIX): New macro.
25650         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
25651         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
25652         simply fnmatch.
25653
25654         Module exclude.
25655         * m4/exclude.m4: New file.
25656
25657         Module human.
25658         * m4/human.m4: New file.
25659
25660         Module acl.
25661         * m4/acl.m4: Nop.
25662
25663         Module backupfile.
25664         * m4/backupfile.m4: New file.
25665         * m4/d-ino.m4: Indentation.
25666
25667         Module fsusage.
25668         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
25669         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
25670         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
25671
25672         Module dirfd.
25673         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
25674         requirements.
25675
25676         Module euidaccess.
25677         * m4/euidaccess.m4: New file.
25678
25679         Module file-type.
25680         * m4/file-type.m4: New file.
25681
25682         Module fileblocks.
25683         * m4/fileblocks.m4: New file.
25684
25685         Module filemode.
25686         * m4/filemode.m4: New file.
25687
25688         Module isdir.
25689         * m4/isdir.m4: New file.
25690
25691         Module lchown.
25692         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
25693         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
25694
25695         Module makepath.
25696         * m4/makepath.m4: New file.
25697
25698         Module modechange.
25699         * m4/modechange.m4: New file.
25700
25701         Module mountlist.
25702         * m4/mountlist.m4: New file.
25703         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
25704         Indentation.
25705
25706         Module path-concat.
25707         * m4/path-concat.m4: New file.
25708
25709         Module pathmax.
25710         * m4/pathmax.m4: New file.
25711
25712         Module same.
25713         * m4/same.m4: New file.
25714
25715         Module save-cwd.
25716         * m4/save-cwd.m4: New file.
25717
25718         Module savedir.
25719         * m4/savedir.m4: New file.
25720
25721         Module xgetcwd.
25722         * m4/xgetcwd.m4: New file.
25723         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
25724
25725         Module xreadlink.
25726         * m4/xreadlink.m4: New file.
25727
25728         Module safe-read.
25729         * m4/safe-read.m4: New file.
25730
25731         Module safe-write.
25732         * m4/safe-write.m4: New file.
25733
25734         Module closeout.
25735         * m4/closeout.m4: New file.
25736
25737         Module stdio-safer.
25738         * m4/stdio-safer.m4: New file.
25739
25740         Module getpass.
25741         * m4/getpass.m4: New file.
25742
25743         Module getugroups.
25744         * m4/getugroups.m4: New file.
25745
25746         Module group-member.
25747         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
25748         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
25749
25750         Module idcache.
25751         * m4/idcache.m4: New file.
25752
25753         Module userspec.
25754         * m4/userspec.m4: New file.
25755
25756         Module gettime.
25757         * m4/clock_time.m4: New file.
25758         * m4/gettime.m4: New file.
25759
25760         Module settime.
25761         * m4/settime.m4: New file.
25762
25763         Module posixtm.
25764         * m4/posixtm.m4: New file.
25765
25766         Module gethostname.
25767         * m4/gethostname.m4: New file.
25768
25769         Module canon-host.
25770         * m4/canon-host.m4: New file.
25771
25772         Module gettext.
25773         * m4/codeset.m4: New file, from gettext-0.11.5.
25774         * m4/gettext.m4: New file, from gettext-0.11.5.
25775         * m4/glibc21.m4: New file, from gettext-0.11.5.
25776         * m4/iconv.m4: New file, from gettext-0.11.5.
25777         * m4/intdiv0.m4: New file, from gettext-0.11.5.
25778         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
25779         * m4/inttypes.m4: New file, from gettext-0.11.5.
25780         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
25781         * m4/isc-posix.m4: New file, from gettext-0.11.5.
25782         * m4/lcmessage.m4: New file, from gettext-0.11.5.
25783         * m4/lib-ld.m4: New file, from gettext-0.11.5.
25784         * m4/lib-link.m4: New file, from gettext-0.11.5.
25785         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
25786         * m4/progtest.m4: New file, from gettext-0.11.5.
25787         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
25788         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
25789         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
25790
25791         Module localcharset.
25792         * m4/localcharset.m4: New file.
25793
25794         Module hard-locale.
25795         * m4/hard-locale.m4: New file.
25796
25797         Module mbswidth.
25798         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
25799         onceonly macros.
25800         * m4/mbrtowc.m4: Add comment.
25801
25802         Module memcasecmp.
25803         * m4/memcasecmp.m4: New file.
25804
25805         Module memcoll.
25806         * m4/memcoll.m4: New file.
25807
25808         Module unicodeio.
25809         * m4/unicodeio.m4: New file.
25810
25811         Module rpmatch.
25812         * m4/rpmatch.m4: New file.
25813
25814         Module yesno.
25815         * m4/yesno.m4: New file.
25816
25817         Module exitfail.
25818         * m4/exitfail.m4: New file.
25819
25820         Module c-stack.
25821         * m4/c-stack.m4 (gl_C_STACK): New macro.
25822         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
25823
25824         Module error.
25825         * m4/error.m4 (gl_ERROR): New macro.
25826         (jm_PREREQ_ERROR): Use onceonly macros.
25827
25828         Module fatal.
25829         * m4/fatal.m4: New file.
25830
25831         Module getloadavg.
25832         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
25833         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
25834
25835         Module getpagesize.
25836         * m4/getpagesize.m4: New file.
25837
25838         Module getusershell.
25839         * m4/getusershell.m4: New file.
25840
25841         Module physmem.
25842         * m4/physmem.m4: New file.
25843
25844         Module posixver.
25845         * m4/posixver.m4: New file.
25846
25847         Module quotearg.
25848         * m4/quotearg.m4: New file.
25849
25850         Module quote.
25851         * m4/quote.m4: New file.
25852
25853         Module readutmp.
25854         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
25855
25856         Module sig2str.
25857         * m4/sig2str.m4: New file.
25858
25859         Other.
25860         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
25861         ulonglong.m4.
25862         * m4/intmax_t.m4: New file.
25863         * m4/d-type.m4: Indentation.
25864         * m4/jm-macros.m4: Update.
25865         * m4/prereq.m4 (jm_PREREQ): Update.
25866         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
25867         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
25868         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
25869         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
25870         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
25871         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
25872         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
25873         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
25874         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
25875         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
25876         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
25877         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
25878         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
25879         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
25880         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
25881         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
25882         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
25883         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
25884         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
25885
25886 2002-12-24  Bruno Haible  <bruno@clisp.org>
25887
25888         * MODULES.txt: Update according to m4/ changes.
25889
25890         Module gettext.
25891         * config.rpath: New file, from gettext-0.11.5.
25892
25893         * modules/*: New module descriptions.
25894         * gnulib-tool: New file.
25895         * MODULES.html.sh: New file.
25896
25897 2002-12-21  Karl Berry  <karl@gnu.org>
25898
25899         * doc/fdl.texi: update to version 1.2.
25900
25901 2002-12-19  Karl Berry  <karl@gnu.org>
25902
25903         * config/config.guess: update from prep.
25904
25905 2002-12-18  Bruno Haible  <bruno@clisp.org>
25906
25907         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
25908         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
25909
25910 2002-12-17  Bruno Haible  <bruno@clisp.org>
25911
25912         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
25913         stdlib.h, string.h.
25914
25915 2002-12-17  Bruno Haible  <bruno@clisp.org>
25916
25917         * lib/canon-host.c (strdup): Remove unused declaration.
25918
25919         * lib/fsusage.c: Include full_read.h.
25920         (get_fs_usage): Use full_read instead of safe_read.
25921
25922         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
25923
25924 2002-12-12  Karl Berry  <karl@gnu.org>
25925
25926         * config/config.guess: update from prep.
25927
25928 2002-12-11  Bruno Haible  <bruno@clisp.org>
25929
25930         * m4/setenv.m4: New file, from gettext-0.11.5.
25931
25932 2002-12-11  Bruno Haible  <bruno@clisp.org>
25933
25934         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
25935         not unsetenv().
25936         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
25937         modifications:
25938
25939         2002-12-11  Bruno Haible  <bruno@clisp.org>
25940
25941                 * setenv.c (alloca): Fall back to malloc.
25942                 (freea): New macro.
25943                 (setenv): Use freea() to free memory allocated with alloca().
25944
25945         2002-11-13  Bruno Haible  <bruno@clisp.org>
25946
25947                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
25948                 function declarations.
25949                 * unsetenv.c (unsetenv): Likewise.
25950
25951         2002-03-04  Bruno Haible  <bruno@clisp.org>
25952
25953                 Portability to AIX 4.3.3.
25954                 * unsetenv.c: New file, extracted from setenv.c.
25955                 * setenv.c: Move the unsetenv() function to unsetenv.c.
25956
25957         2001-12-20  Bruno Haible  <bruno@clisp.org>
25958
25959                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
25960                 use malloc instead. For SunOS 4.
25961
25962         2001-12-11  Bruno Haible  <bruno@clisp.org>
25963
25964                 * setenv.c: Declare alloca.
25965                 (compar_fn_t): New typedef.
25966                 (KNOWN_VALUE, STORE_VALUE): Use it.
25967
25968         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
25969         setenv.h.
25970
25971 2002-12-10  Paul Eggert  <eggert@twinsun.com>
25972
25973         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
25974         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
25975         Choose values that are less likely to collide with system fnmatch
25976         options.
25977         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
25978         defined (e.g., a pure POSIX system).
25979         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
25980         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
25981
25982 2002-12-06  Paul Eggert  <eggert@twinsun.com>
25983
25984         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
25985         a pain in practice to deal with generated m4 files.  This change
25986         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
25987
25988         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
25989         and jm-glibc-io.m4, as they are no longer a special case.
25990         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
25991         kludge and the auto-generation stuff.  Check only whether the
25992         functions are declared, not whether they exist, since older hosts
25993         that don't declare the functions can't use the optimization anyway.
25994
25995 2002-12-06  Jim Meyering  <jim@meyering.net>
25996
25997         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
25998
25999         Merge in changes from libc's misc/error.c, in preparation
26000         for the merge of gnulib's changes back into libc.
26001
26002         * lib/error.c (_): Define only if not already defined.
26003         Move definition to follow all #include directives.
26004         Include unlocked-io.h only if !_LIBC.
26005         [_LIBC]: Include <libio/libioP.h>.
26006         [USE_IN_LIBIO]: Include <libio/iolibio.h>
26007         (fflush): Tweak definition to use INTUSE.
26008         (putc): Define.
26009
26010 2002-12-05  Paul Eggert  <eggert@twinsun.com>
26011
26012         * lib/alloca.c [defined emacs]: Include "lisp.h".
26013         (xalloc_die) [defined emacs]: New macro.
26014         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
26015         [! defined emacs]: Include <xalloc.h>.
26016         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
26017         (pointer): Typedef to POINTER_TYPE *.
26018         (malloc): Remove decl; we now always use xmalloc.
26019         (alloca): Use old-style definition, since Emacs needs this.
26020         Check for arithmetic overflow when computing combined size.
26021
26022 2002-12-04  Paul Eggert  <eggert@twinsun.com>
26023
26024         Do not generate unlocked-io.h automatically, since it's easier to
26025         maintain it by hand.
26026
26027         * lib/unlocked-io.h: New file, from GNU diffutils,
26028         but with proper copyright notice and attribution.
26029         * lib/gen-uio: Remove.
26030         * lib/Makefile.am: Add copyright notice.
26031         (libfetish_a_SOURCES): Add unlocked-io.h.
26032         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
26033         (DISTCLEANFILES, io_functions): Remove macros.
26034         (EXTRA_DIST): Remove gen_uio.
26035         (unlocked-io.h): Remove rule.
26036
26037 2002-12-04  Jim Meyering  <jim@meyering.net>
26038
26039         Reflect the fact that stat.c and lstat.c are no longer generated.
26040         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
26041         (DISTCLEANFILES): Likewise.
26042         (EXTRA_DIST): Likewise.
26043         (all_local): Don't depend on stat.c or lstat.c.
26044         (stat.c, lstat.c): Remove rules.
26045         (EXTRA_DIST): Remove xstat.in.
26046
26047         * lib/xstat.in: Remove file.  Contents moved into stat.c.
26048         * lib/stat.c: New file.  Contents mostly from xstat.in.
26049         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
26050         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
26051
26052         * lib/safe-read.c: Rework so that it may serve to define safe_write,
26053         too.
26054         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
26055
26056 2002-12-03  Jim Meyering  <jim@meyering.net>
26057
26058         * lib/safe-read.c, safe-write.c: Change variable names and comments,
26059         but not semantics, to minimize the differences between these two files.
26060         (safe_read): Change comment to mention SAFE_READ_ERROR.
26061
26062         * lib/safe-read.c (IS_EINTR): Define.
26063         (safe_read): Use IS_EINTR in place of in-function cpp directives.
26064
26065 2002-12-02  Jim Meyering  <jim@meyering.net>
26066
26067         * lib/safe-read.c (EINTR): Define.
26068         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
26069         (INT_MAX): Provide fallback.
26070         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
26071
26072         * lib/safe-read.h (SAFE_READ_ERROR): Define.
26073
26074 2002-12-02  Bruno Haible  <bruno@clisp.org>
26075
26076         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
26077         Define, taken from safe-read.c.
26078         (INT_MAX): Provide fallback.
26079         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
26080         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
26081
26082         * lib/safe-read.c (EINTR): Remove definition.
26083         (safe_read): Don't use EINTR if it is absent.
26084
26085 2002-12-01  Jim Meyering  <jim@meyering.net>
26086
26087         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
26088         zero.
26089         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
26090
26091 2002-11-27  Paul Eggert  <eggert@twinsun.com>
26092
26093         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
26094         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
26095         with `if (! (value < limit)) abort ();', for readability.
26096
26097 2002-11-26  Karl Berry  <karl@gnu.org>
26098
26099         * lib/strdup.c: copy from libc again, with jim's ok.
26100         * lib/.cppi-disable: re-add strdup.c
26101
26102 2002-11-25  Karl Berry  <karl@gnu.org>
26103
26104         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
26105         instead of "strtol.c".
26106
26107 2002-11-25  Karl Berry  <karl@gnu.org>
26108
26109         * config/install-sh: update from automake for variable quoting, $0 in
26110         error msgs, etc.
26111
26112         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
26113         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
26114         entry.
26115
26116 2002-11-25  Jim Meyering  <jim@meyering.net>
26117
26118         * lib/mktime.c: Sync from libc, now that it has the latest fix.
26119
26120 2002-11-24  Karl Berry  <karl@gnu.org>
26121
26122         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
26123         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
26124
26125 2002-11-24  Jim Meyering  <jim@meyering.net>
26126
26127         Update from coreutils:
26128
26129         * lib/mktime.c: Merge in changes from libc.
26130
26131         Avoid a link-time failure on some Linux systems.
26132         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
26133         (otherwise).
26134         (__mon_yday): Declare with the STATIC attribute.
26135         (__mktime_internal): Likewise.
26136         Based on a report from Greg Schafer.
26137
26138 2002-11-23  Jim Meyering  <jim@meyering.net>
26139
26140         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
26141         Use `unsigned', not `int', as type of index.
26142
26143         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
26144
26145         * lib/fsusage.c: Remove unneeded parentheses around operands of
26146         `defined'.
26147
26148 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26149
26150         * lib/quotearg.h: Allow multiple inclusion by surrounding with
26151         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
26152         so that we can be included first.
26153         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
26154         * lib/quotearg.c: Include quotearg.h immediately after config.h.
26155         No need to include stddef.h or sys/types.h any more.
26156         Surround local include files with "", not "<>".
26157         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
26158         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
26159         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
26160         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
26161         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
26162         (ISPRINT): Remove; no longer needed now that we assume C89.
26163
26164         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
26165         Preserve errno.
26166
26167         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
26168         quotearg_char): Use SIZE_MAX rather than
26169         (size_t) -1 when we are talking about "infinity".
26170
26171         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
26172
26173 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26174
26175         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
26176         hint that one should use `if (! x) abort ();' rather than `assert
26177         (x);', and anyway it's one less thing to worry about configuring.
26178         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
26179         hash_rehash, hash_insert): Use abort rather than assert.
26180
26181 2002-11-22  Bruno Haible  <bruno@clisp.org>
26182
26183         * lib/safe-read.h: Assume C89. Add comments.
26184         (safe_read): Change return type to size_t.
26185         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
26186         byte counts > SSIZE_MAX correctly.
26187         * lib/safe-write.h: New file.
26188         * lib/safe-write.c: New file.
26189         * lib/full-read.h: New file.
26190         * lib/full-read.c: New file.
26191         * lib/full-write.h: Assume C89. Add comments.
26192         * lib/full-write.c: Include safe-write.h.
26193         (full_write): Rewritten to use safe_write.
26194         Suggested by Jim Meyering and Paul Eggert.
26195
26196 2002-11-21  Jim Meyering  <jim@meyering.net>
26197
26198         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
26199
26200         Merge in changes from the coreutils.
26201
26202         2002-09-25  Paul Eggert  <eggert@twinsun.com>
26203         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
26204         <stdint.h>.
26205         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
26206         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
26207         int.  Work more efficiently if X is the same width as uintmax_t.
26208         Do not compare X to -1, to avoid bogus compiler warning.
26209         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
26210         Don't assume that f_frsize and f_bsize are the same type.
26211
26212         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
26213         warning on FreeBSD.
26214
26215         * lib/makepath.c (make_path): Restore umask *before* creating the final
26216         component.
26217         (make_path): Minor reformatting.
26218
26219         * lib/xmalloc.c: Adjust to work with new autoconf macros,
26220         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
26221         HAVE_MALLOC/HAVE_REALLOC.
26222
26223         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
26224         dummy ones.  At least on GNU/Linux systems, `auto' means something
26225         else.
26226         From Michael Stone.
26227
26228 2002-11-21  Bruno Haible  <bruno@clisp.org>
26229
26230         Remove case insensitive option matching.
26231         * lib/argmatch.h (argcasematch): Remove declaration.
26232         (ARGCASEMATCH): Remove macro.
26233         (__xargmatch_internal): Remove case_sensitive argument.
26234         (XARGMATCH): Update.
26235         (XARGCASEMATCH): Remove macro.
26236         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
26237         case_sensitive argument.
26238         (argcasematch): Remove function.
26239         (__xargmatch_internal): Remove case_sensitive argument.
26240         (main): Use XARGMATCH instead of XARGCASEMATCH.
26241
26242         * lib/xmalloc.c: Change compile-time error message. Add comment about
26243         required autoconf version.
26244
26245 2002-11-20  Paul Eggert  <eggert@twinsun.com>
26246
26247         Merge argmatch cleanups from Bison.  Assume C89.
26248
26249         * lib/argmatch.c: Include config.h here, not in argmatch.h.
26250         Include stdlib.h, for EXIT_FAILURE.
26251         Always include <string.h>, since we assume C89.
26252         (EXIT_FAILURE): Remove pre-C89 bug workaround.
26253         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
26254         Include <stddef.h> instead, since it's all we need for size_t.
26255         (PARAMS): Remove.  All uses removed.
26256         (ARRAY_CARDINALITY): Do not bother to #undef.
26257         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
26258         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26259         Remove unnecessary parentheses.
26260         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26261         Insert necessary parentheses.
26262         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
26263         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
26264
26265 2002-11-19  Bruno Haible  <bruno@clisp.org>
26266
26267         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
26268         * lib/mbswidth.h: Include <stddef.h>, for size_t.
26269
26270         * lib/mbswidth.h (PARAMS): Remove macro.
26271         (mbswidth, mbsnwidth): Use ANSI C function declarations.
26272         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
26273
26274         * lib/gcd.h (PARAMS): Remove macro.
26275         (gcd): Use ANSI C function declarations.
26276         * lib/gcd.c (gcd): Likewise.
26277
26278 2002-11-15  Bruno Haible  <bruno@clisp.org>
26279
26280         * lib/strcspn.c: Include <stddef.h>.
26281         (strcspn): Use ANSI C function declaration. Change return type to
26282         size_t. Use NULL.
26283         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
26284         (strpbrk): Use NULL.
26285         * lib/strpbrk.h (PARAMS): Remove macro.
26286         (strpbrk): Use ANSI C function declaration.
26287         * lib/strstr.c: Don't include <sys/types.h>.
26288         * lib/strstr.h (PARAMS): Remove macro.
26289         (strstr): Use ANSI C function declarations.
26290
26291 2002-11-14  Karl Berry  <karl@gnu.org>
26292
26293         * config/mkinstalldirs: `do' on separate line, instead of
26294         `for var; do'.
26295
26296 2002-11-06  Bruno Haible  <bruno@clisp.org>
26297
26298         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
26299         * lib/gcd.c (gcd): Likewise.
26300
26301 2002-11-05  Bruno Haible  <bruno@clisp.org>
26302
26303         * lib/gcd.h: New file, from gettext-0.11.5.
26304         * lib/gcd.c: New file, from gettext-0.11.5.
26305
26306 2002-11-05  Bruno Haible  <bruno@clisp.org>
26307
26308         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26309         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26310         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26311         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26312
26313         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
26314         <libintl.h>.
26315         * lib/makepath.c: Include gettext.h instead of <locale.h> and
26316         <libintl.h>.
26317
26318         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
26319         * lib/human.c: Include gettext.h instead of <libintl.h>.
26320         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
26321         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
26322         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
26323         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
26324         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
26325         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
26326         (textdomain): Remove definition.
26327         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
26328
26329         * lib/long-options.c: Remove include of <libintl.h> and definition of
26330         _.
26331         * lib/same.c: Remove include of <libintl.h> and definition of _.
26332
26333 2002-11-04  Owen Taylor  <otaylor@redhat.com>
26334
26335         * lib/config.charset: A few additions for Solaris.
26336
26337 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26338
26339         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
26340         * lib/localcharset.c (locale_charset): Declare as extern "C".
26341
26342 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26343
26344         * lib/config.charset: msdos in uk_UA uses CP1125.
26345
26346 2002-11-04  Bruno Haible  <bruno@clisp.org>
26347
26348         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
26349         * lib/strcase.h: New file, from GNU gettext-0.11.5.
26350         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
26351         * lib/strstr.h: New file, from GNU gettext-0.11.5.
26352         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
26353
26354 2002-11-04  Bruno Haible  <bruno@clisp.org>
26355
26356         * lib/localcharset.c (locale_charset): Don't return an empty string.
26357
26358 2002-11-04  Bruno Haible  <bruno@clisp.org>
26359
26360         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
26361         aliases.
26362
26363 2002-11-04  Bruno Haible  <bruno@clisp.org>
26364
26365         * lib/config.charset: Update for newest glibc. Add canonical names
26366         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
26367
26368 2002-11-04  Bruno Haible  <bruno@clisp.org>
26369
26370         * lib/config.charset: Add support for NetBSD.
26371
26372 2002-11-04  Bruno Haible  <bruno@clisp.org>
26373
26374         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
26375
26376 2002-11-01  Bruno Haible  <bruno@clisp.org>
26377
26378         * configure.in: Add AC_CONFIG_AUX_DIR call.
26379         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
26380         test/Makefile.
26381         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
26382
26383 2002-09-28  Karl Berry  <karl@gnu.org>
26384
26385         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
26386         installed automake until the next release, since changes have been
26387         made.
26388
26389 2002-09-25  Karl Berry  <karl@gnu.org>
26390
26391         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
26392         * lib/getopt*: copy from libc/posix.
26393         * lib/gettext.h: copy from gettext.
26394         * lib/.cppi-disable: add strdup.c, gettext.h.
26395
26396 2002-09-25  Karl Berry  <karl@gnu.org>
26397
26398         * config/srclist.txt: enable gettext.h check.
26399         * config/config.{guess,sub}: update from prep.
26400         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
26401                 from automake 1.6.3.
26402         See srclist*.
26403
26404 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
26405
26406         * regex.c (PATFETCH): Remove the translating fetch.
26407         (PATFETCH_RAW): Rename to PATFETCH.
26408         (set_image_of_range): New fun.
26409         (SET_RANGE_TABLE_WORK_AREA): Use it.
26410         (regex_compile): Don't translate the pattern chars so eagerly.
26411         Only do it when inserting an `exactn' bytecode or when handling
26412         a char-range.
26413         (mutually_exclusive_p): Avoid empty statement.
26414
26415 2002-07-06  Jim Meyering  <meyering@lucent.com>
26416
26417         * m4/README: Don't mention Makefile.am.in.
26418         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
26419
26420 2002-07-01  Jim Meyering  <meyering@lucent.com>
26421
26422         * lib/c-stack.c: Include sys/time.h.
26423         From Volker Borchert.
26424
26425 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26426
26427         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
26428
26429 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26430
26431         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
26432         New macro.  Use it uniformly instead of
26433         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
26434         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
26435         reported by Vin Shelton.
26436
26437 2002-06-22  Paul Eggert  <eggert@twinsun.com>
26438
26439         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
26440         Do not assume SA_SIGINFO behavior.
26441         Bug reported by Jim Meyering on NetBSD 1.5.2.
26442
26443 2002-06-22  Jim Meyering  <meyering@lucent.com>
26444
26445         * m4/c-stack.m4: New file, from diffutils-2.8.2.
26446         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
26447
26448         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
26449         now that configure.ac uses AC_GNU_SOURCE.
26450         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
26451         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
26452
26453         Update to latest tools.  Suggestions from Paul Eggert.
26454         * m4/stdbool.m4: New file, from diffutils-2.8.2.
26455         * m4/gnu-source.m4: Update from diffutils-2.8.2.
26456         * m4/fnmatch.m4: Likewise.
26457         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
26458         to AC_HEADER_STDBOOL
26459
26460 2002-06-22  Jim Meyering  <meyering@lucent.com>
26461
26462         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
26463         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
26464
26465 2002-06-22  Jim Meyering  <meyering@lucent.com>
26466
26467         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
26468
26469         * lib/exitfail.c, exitfail.h: Likewise.
26470         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
26471
26472         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
26473         of fnmatch.h.
26474         (EXTRA_DIST): Add fnmatch_loop.c.
26475         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
26476
26477         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
26478         * lib/fnmatch.c: Update from diffutils-2.8.2.
26479         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
26480         * lib/fnmatch.h: Remove file.
26481
26482 2002-06-21  Jim Meyering  <meyering@lucent.com>
26483
26484         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
26485         * m4/mbrtowc.m4: Likewise.
26486
26487         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
26488         * m4/mbswidth.m4: Reflect name change:
26489         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
26490         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
26491
26492         * m4/lib-link.m4: Update from gettext-0.11.2.
26493         * m4/gettext.m4: Likewise.
26494
26495         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
26496         From Alfred M. Szmidt.
26497
26498 2002-06-18  Paul Eggert  <eggert@twinsun.com>
26499
26500         * lib/file-type.h: Report an error if neither S_ISREG nor
26501         S_IFREG is defined, instead of using a test specific to glibc
26502         2.2.  This should be safe, since POSIX requires S_ISREG and
26503         Unix Version 7 had S_IFREG.  We don't need to check for
26504         <sys/types.h> since we don't use any symbols that it defines.
26505
26506 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
26507
26508         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
26509         $@-t, so that each temporary file name is unique and valid in the first
26510         8 characters, for operation under DOS.
26511
26512 2002-06-15  Paul Eggert  <eggert@twinsun.com>
26513
26514         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
26515
26516 2002-06-15  Jim Meyering  <meyering@lucent.com>
26517
26518         Work even with DJGPP 2.03, which lacks support for symlinks.
26519         From Richard Dawe.
26520         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
26521         is defined.
26522         * lib/lchown.c (S_ISLNK): Likewise.
26523
26524 2002-06-15  Jim Meyering  <meyering@lucent.com>
26525
26526         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
26527         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
26528         have been included before this file.
26529
26530 2002-06-14  Jim Meyering  <meyering@lucent.com>
26531
26532         * lib/file-type.h: Use the version from diffutils-2.8.2.
26533         * lib/file-type.c: Likewise.
26534
26535 2002-06-07  Jim Meyering  <meyering@lucent.com>
26536
26537         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
26538         They're needed at least for NetBSD 1.5.2.
26539         ($statxfs_includes): Include those same headers.
26540         ($statxfs_includes): Include sys/vfs.h if available.
26541         ($statxfs_includes): Likewise for sys/statvfs.h.
26542         Check for the following members in both structs statfs and statvfs:
26543         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
26544
26545 2002-06-01  Jim Meyering  <meyering@lucent.com>
26546
26547         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
26548         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
26549
26550 2002-05-28  Jim Meyering  <meyering@lucent.com>
26551
26552         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
26553         Reported by Volker Borchert.
26554
26555 2002-05-27  Jim Meyering  <meyering@lucent.com>
26556
26557         Fix a problem seen only on nonconforming systems whereby ls.c's
26558         use of localtime, and then of gettimeofday would cause trouble:
26559         the localtime call used to initialize rpl_gettimeofday's save
26560         mechanism would clobber ls's current local time information so
26561         that in any long listing the first file would always be listed
26562         with date 1970-01-01.  Analysis by Volker Borchert.
26563
26564         * lib/gettimeofday.c (localtime): Undefine.
26565         (rpl_localtime): New function.
26566
26567 2002-05-27  Jim Meyering  <meyering@lucent.com>
26568
26569         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
26570         localtime.
26571
26572         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
26573         use the replacement function; it wouldn't resolve at link time.
26574         Reported by Volker Borchert.
26575
26576 2002-05-22  Jim Meyering  <meyering@lucent.com>
26577
26578         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
26579         file-type.h.
26580         * lib/file-type.h: New file.
26581         * lib/file-type.c (file_type): New file/function.  Extracted from
26582         diffutils.
26583
26584 2002-04-30  Jim Meyering  <meyering@lucent.com>
26585
26586         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
26587
26588 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26589
26590         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
26591
26592 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26593
26594         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
26595         Do not check for alloca.h (no longer used) or stdbool.h (was never
26596         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
26597
26598 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26599
26600         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
26601
26602 2002-04-29  Jim Meyering  <meyering@lucent.com>
26603
26604         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
26605         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
26606         Use AC_FUNC_STRNLEN here instead.
26607
26608         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
26609         With autoconf-2.53a, it's part of AC_PROG_CC.
26610
26611 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26612
26613         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
26614         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
26615
26616 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26617
26618         * lib/sig2str.h, lib/sig2str.c: New files.
26619         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
26620
26621 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26622
26623         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
26624         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
26625         of 127, since 64 is the largest conceivable number for ancient
26626         nonstandard hosts.
26627         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
26628
26629 2002-04-28  Jim Meyering  <meyering@lucent.com>
26630
26631         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
26632
26633 2002-04-24  Jim Meyering  <meyering@lucent.com>
26634
26635         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
26636         (jm_PREREQ): Use it.
26637
26638         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
26639         mach/mach.h fcntl.h.
26640         Check for this function: setlocale.
26641
26642 2002-04-24  Jim Meyering  <meyering@lucent.com>
26643
26644         * lib/gettext.h: New file, from Gettext.
26645         * lib/Makefile.am (INCLUDES): Remove -I../intl.
26646         (libfetish_a_SOURCES): Add gettext.h.
26647
26648 2002-04-16  Jim Meyering  <meyering@lucent.com>
26649
26650         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
26651         ut_pid, ut_id, ut_exit.
26652
26653 2002-04-16  Jim Meyering  <meyering@lucent.com>
26654
26655         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
26656         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
26657         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
26658
26659 2002-04-12  Jim Meyering  <meyering@lucent.com>
26660
26661         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
26662         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
26663         existence of the getmntinfo function.  Needed for Darwin 5.3.
26664
26665         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
26666         This is necessary at least on Darwin 5.3.
26667
26668         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
26669         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
26670         strnlen.o in the library, and that makes some versions of ranlib
26671         object.
26672
26673 2002-04-12  Jim Meyering  <meyering@lucent.com>
26674
26675         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
26676
26677 2002-04-09  Jim Meyering  <meyering@lucent.com>
26678
26679         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
26680         to be more precise.  Rather than saying we're checking whether the
26681         function `works', say what we're testing.
26682         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
26683         Reported by Bruno Haible.
26684
26685 2002-03-10  Jim Meyering  <meyering@lucent.com>
26686
26687         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
26688         Suggestion from Santiago Vila.
26689
26690 2002-03-08  Jim Meyering  <meyering@lucent.com>
26691
26692         * lib/rename.c: Mention that this wrapper is needed also on
26693         mips-dec-ultrix4.4 systems.
26694
26695 2002-03-02  Jim Meyering  <meyering@lucent.com>
26696
26697         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
26698         not HAVE_CLOCK_SETTIME.
26699
26700 2002-02-27  Paul Eggert  <eggert@twinsun.com>
26701
26702         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
26703         Check for clock_settime.
26704
26705 2002-02-27  Paul Eggert  <eggert@twinsun.com>
26706
26707         * lib/nanosleep.h: Rename to....
26708         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
26709
26710         * lib/gettime.c: New file.
26711         * lib/settime.c: New file.
26712         * lib/stime.c: Remove.
26713
26714         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
26715         timespec.h.  Remove nanosleep.h.
26716
26717 2002-02-25  Paul Eggert  <eggert@twinsun.com>
26718
26719         * m4/acl.m4: New file.
26720         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
26721         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
26722
26723 2002-02-25  Paul Eggert  <eggert@twinsun.com>
26724
26725         * lib/acl.c, lib/acl.h: New files.
26726         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
26727
26728 2002-02-24  Jim Meyering  <meyering@lucent.com>
26729
26730         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
26731         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
26732         cause trouble.  Reported by Nelson Beebe.
26733
26734 2002-02-23  Paul Eggert  <eggert@twinsun.com>
26735
26736         * lib/path-concat.c (xpath_concat): Reorder code to pacify
26737         compilers that don't know that xalloc_die never returns.
26738
26739 2002-02-20  Jim Meyering  <meyering@lucent.com>
26740
26741         * lib/getdate.c: Regenerate using bison-1.33.
26742
26743 2002-02-17  Jim Meyering  <meyering@lucent.com>
26744
26745         * config/config.guess (main): Don't use `head -1'; it's no longer
26746         portable. Use `sed 1q' instead.
26747
26748 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
26749
26750         * m4/codeset.m4: Upgrade to gettext-0.11.
26751         * m4/gettext.m4: Upgrade to gettext-0.11.
26752         * m4/glibc21.m4: Upgrade to gettext-0.11.
26753         * m4/iconv.m4: Upgrade to gettext-0.11.
26754         * m4/isc-posix.m4: Upgrade to gettext-0.11.
26755         * m4/lcmessage.m4: Upgrade to gettext-0.11.
26756         * m4/lib-ld.m4: New file, from gettext-0.11.
26757         * m4/lib-link.m4: New file, from gettext-0.11.
26758         * m4/lib-prefix.m4: New file, from gettext-0.11.
26759         * m4/progtest.m4: Upgrade to gettext-0.11.
26760
26761 2002-02-15  Paul Eggert  <eggert@twinsun.com>
26762
26763         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
26764         (jm_PREREQ): Use it.
26765
26766 2002-02-15  Paul Eggert  <eggert@twinsun.com>
26767
26768         * lib/posixver.c, lib/posixver.h: New files.
26769         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
26770
26771 2002-02-02  Paul Eggert  <eggert@twinsun.com>
26772             Bruno Haible  <bruno@clisp.org>
26773
26774         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
26775         (fwrite_success_callback): New declaration.
26776         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
26777         print_unicode_char. Call failure callback instead of error.
26778         (fwrite_success_callback): New function.
26779         (exit_failure_callback): New function.
26780         (fallback_failure_callback): New function.
26781         (print_unicode_char): Call unicode_to_mb.
26782
26783 2002-01-26  Jim Meyering  <meyering@lucent.com>
26784
26785         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
26786         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
26787
26788 2002-01-26  Jim Meyering  <meyering@lucent.com>
26789
26790         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
26791
26792 2002-01-22  Paul Eggert  <eggert@twinsun.com>
26793
26794         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
26795
26796 2002-01-22  Jim Meyering  <meyering@lucent.com>
26797
26798         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
26799         Otherwise, some versions of automake would omit the rule that makes
26800         Makefile from Makefile.in.
26801
26802 2002-01-21  Paul Eggert  <eggert@twinsun.com>
26803
26804         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
26805         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
26806         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
26807         (memcoll): Set errno to zero if there is no error.
26808
26809         * lib/quotearg.c (quotearg_buffer_restyled):
26810         Fix bug with quoting buffers containing NUL when backslashing escapes.
26811         This bug was exposed by the other changes in this patch.
26812         (quotearg_n_options): New arg ARGSIZE.
26813         All callers changed.
26814         (quoting_options_from_style): New function.
26815         (quotearg_n_style): Use it.
26816         (quotearg_n_style_mem): New function.
26817
26818         * lib/quotearg.h (quotearg_n_style_mem): New function.
26819
26820 2002-01-19  Jim Meyering  <meyering@lucent.com>
26821
26822         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
26823         Remove useless quotes: DF_PROG="df".
26824         * m4/strnlen.m4: New file.
26825
26826 2002-01-16  Paul Eggert  <eggert@twinsun.com>
26827
26828         * lib/backupfile.c (ISDIGIT): Comment fix.
26829         * lib/getdate.y (ISDIGIT): Likewise.
26830         * lib/posixtm.c (ISDIGIT, year): Likewise.
26831         * lib/strverscmp.c (ISDIGIT): Likewise.
26832         * lib/userspec.c (ISDIGIT): Likewise.
26833
26834 2002-01-16  Jim Meyering  <meyering@lucent.com>
26835
26836         * lib/getdate.y: Add three semicolons, each just before a closing
26837         brace. Bison (as of version 1.31) no longer papers over that mistake.
26838
26839 2002-01-05  Jim Meyering  <meyering@lucent.com>
26840
26841         * lib/version-etc.c (version_etc_copyright): Update copyright year.
26842
26843 2001-12-19  Paul Eggert  <eggert@twinsun.com>
26844
26845         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
26846         not silently exit merely because the output buffer happens to
26847         have nothing pending.
26848
26849 2001-12-18  Paul Eggert  <eggert@twinsun.com>
26850
26851         See the big note in ../ChangeLog.
26852         * lib/human.c (suffixes): Prefer K to k for 1024.
26853         (generate_suffix_backwards): New function.
26854         (human_readable_inexact): Use it.
26855         * lib/xstrtol.c (__xstrtol): If there is no number but there
26856         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
26857         Accept 'K' as well as 'k'.
26858
26859 2001-12-15  Jim Meyering  <meyering@lucent.com>
26860
26861         * lib/regex.h (__restrict_arr): Update from libc.
26862
26863         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
26864         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
26865         (STREQ): Define.
26866
26867 2001-12-14  Jim Meyering  <meyering@lucent.com>
26868
26869         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
26870         Suggestion from Bruno Haible.
26871
26872 2001-12-10  Jim Meyering  <meyering@lucent.com>
26873
26874         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
26875         xrealloc, Instead, include "xalloc.h".
26876         (initbuffer): Don't cast xmalloc return value to char*.
26877         (readline): Reword comment.
26878         Don't cast xrealloc return value to char*
26879         Return NULL, not 0.
26880
26881 2001-12-09  Jim Meyering  <meyering@lucent.com>
26882
26883         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
26884         about `signed and unsigned type in conditional expression'.
26885         * lib/posixtm.c (posix_time_parse): Likewise.
26886
26887         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
26888
26889         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
26890         to avoid a pedantic warning.
26891
26892         * lib/getstr.c: Don't include assert.h.
26893         (getstr): Remove warning-evoking assertions.
26894         Return -1 if offset parameter is out of bounds.
26895         Change the type of a local from int to size_t.
26896
26897         * lib/strftime.c (my_strftime_localtime_r): Include this function
26898         definition in the `#if ! HAVE_TM_GMTOFF' block.
26899
26900         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
26901         Include xalloc.h instead.
26902
26903 2001-12-02  Jim Meyering  <meyering@lucent.com>
26904
26905         * lib/tempname.c: Don't declare getenv, thus reverting the change of
26906         2001-11-18.  It's no longer necessary, now that stdlib.h is always
26907         included.
26908
26909         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
26910         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
26911
26912 2001-11-30  Akim Demaille  <akim@epita.fr>
26913
26914         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
26915         before being defined.
26916
26917 2001-11-27  Paul Eggert  <eggert@twinsun.com>
26918
26919         * lib/quotearg.h (quotearg_n, quotearg_n_style):
26920         First arg is int, not unsigned.
26921         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
26922         (SIZE_MAX, UINT_MAX): New macros.
26923         (quotearg_n_options): Abort if N is negative.
26924         Avoid overflow check on hosts where size_t is 64 bits and int
26925         is 32 bits, as overflow is impossible there.
26926         Fix off-by-one typo that caused unnecessary reallocation.
26927
26928 2001-11-27  Jim Meyering  <meyering@lucent.com>
26929
26930         * lib/tempname.c: Merge with version from libc.
26931         * lib/regex.c: Likewise.
26932
26933         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
26934         systems for which STDC_HEADERS is 0, it was not included, resulting in
26935         a warning about an integer-to-pointer conversion problem with getenv.
26936         Reported by Volker Borchert.
26937
26938 2001-11-26  Jim Meyering  <meyering@lucent.com>
26939
26940         * lib/gtod.h: Remove file.
26941         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
26942         * lib/gettimeofday.c: Don't include gtod.h.
26943         (GTOD_init): Remove function.
26944         (rpl_gettimeofday): Do its job here instead, rather than aborting.
26945         Suggestion from Volker Borchert.
26946
26947 2001-11-23  Jim Meyering  <meyering@lucent.com>
26948
26949         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
26950         it.
26951         * lib/hash.c (struct hash_table): Define it here instead.
26952
26953 2001-11-22  Jim Meyering  <meyering@lucent.com>
26954
26955         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
26956
26957 2001-11-20  Jim Meyering  <meyering@lucent.com>
26958
26959         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
26960         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
26961
26962 2001-11-19  Jim Meyering  <meyering@lucent.com>
26963
26964         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
26965         directory.  Use "conftestXXXXXX" as the template.
26966         Suggestion from Paul Eggert.
26967
26968         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
26969         immediately, so the test doesn't mistakenly hit the max-open-files
26970         limit.
26971
26972 2001-11-18  Paul Eggert  <eggert@twinsun.com>
26973
26974         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
26975         (TEMPORARIES): New macro.
26976         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
26977         removes an artificial limitation (e.g. HP-UX 10.20, where
26978         TMP_MAX is 17576).
26979
26980 2001-11-18  Jim Meyering  <meyering@lucent.com>
26981
26982         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
26983
26984 2001-11-18  Jim Meyering  <meyering@lucent.com>
26985
26986         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
26987         on SunOS 4.
26988
26989         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
26990         files will be created before anything else.
26991
26992 2001-11-17  Paul Eggert  <eggert@twinsun.com>
26993
26994         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
26995         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
26996
26997 2001-11-17  Jim Meyering  <meyering@lucent.com>
26998
26999         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
27000         Prompted by a report from Bob Proulx.
27001
27002         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
27003         Instead, require UTILS_FUNC_MKSTEMP.
27004
27005 2001-11-17  Jim Meyering  <meyering@lucent.com>
27006
27007         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
27008         Now, that's done as part of AC_FUNC_STRTOD.
27009
27010 2001-11-17  Jim Meyering  <meyering@lucent.com>
27011
27012         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
27013         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
27014         rather than group writable.  Patch by Juan F. Codagnone.
27015
27016         * lib/readtokens.c: Remove explicit declarations of xmalloc and
27017         xrealloc, Instead, include "xalloc.h".
27018
27019         * lib/mountlist.c: Include unlocked-io.h after all system headers.
27020         Remove explicit declarations of xmalloc, xrealloc,
27021         and xstrdup.  Instead, include "xalloc.h".
27022
27023         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
27024         unlocked-io.h.
27025         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
27026         Likewise.
27027         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
27028
27029         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
27030         Reported by Padraig Brady.
27031
27032         * lib/mkstemp.c: #undef mkstemp.
27033         Include config.h.
27034         (rpl_mkstemp): Rename from mkstemp.
27035         Protoize.
27036
27037 2001-11-16  Jim Meyering  <meyering@lucent.com>
27038
27039         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
27040         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
27041         determine the amount of total physical memory, use pstat_getstatic.
27042         HPUX-11 doesn't define _SC_PHYS_PAGES.
27043         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
27044         If sysconf couldn't be used to determine the amount of available
27045         physical memory, use both pstat_getstatic and pstat_getdynamic.
27046         Based on a patch from Bob Proulx.
27047
27048 2001-11-10  Jim Meyering  <meyering@lucent.com>
27049
27050         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
27051         (jm_PREREQ): Use it.
27052
27053 2001-11-09  Jim Meyering  <meyering@lucent.com>
27054
27055         * m4/jm-macros.m4: Require autoconf-2.52f.
27056         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
27057         Use these AC_-prefixed names, not the AM_-prefixed ones.
27058
27059         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
27060
27061 2001-11-05  Jim Meyering  <meyering@lucent.com>
27062
27063         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
27064
27065 2001-11-04  Jim Meyering  <meyering@lucent.com>
27066
27067         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
27068         $DEFS.
27069
27070 2001-11-03  Jim Meyering  <meyering@lucent.com>
27071
27072         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
27073         of AC_DEFUN.
27074
27075         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
27076         know the name of the variable in the macro definition.
27077
27078 2001-11-03  Jim Meyering  <meyering@lucent.com>
27079
27080         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
27081         in argmatch_to_argument call.
27082
27083         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
27084         argument.
27085
27086         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
27087         e.g., a fault due to an attempt to free a NULL pointer.
27088
27089 2001-11-01  Jim Meyering  <meyering@lucent.com>
27090
27091         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
27092         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
27093
27094 2001-11-01  Jim Meyering  <meyering@lucent.com>
27095
27096         * lib/dirfd.c, lib/dirfd.h: New files.
27097         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
27098
27099         * lib/hash.c (hash_print) [TESTING]: Clean up.
27100
27101 2001-10-22  Paul Eggert  <eggert@twinsun.com>
27102
27103         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
27104         to avoid a warning if -Wall.
27105
27106 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
27107
27108         * README: New file
27109         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
27110         (per RMS's instructions, this is now the canonical source)
27111         * lgpl/, gpl/: New directories.
27112
27113 2001-10-21  Paul Eggert  <eggert@twinsun.com>
27114
27115         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
27116
27117 2001-10-21  Jim Meyering  <meyering@lucent.com>
27118
27119         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
27120         this code would end up calling gettext even in packages built
27121         with --disable-nls.
27122         * lib/getopt.c (_): Likewise.
27123         * lib/regex.c (_): Likewise.
27124
27125 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27126
27127         * m4/error.m4 (jm_PREREQ_ERROR):
27128         Do not invoke AC_CHECK_FUNCS with strerror_r, as
27129         AC_FUNC_STRERROR_R does that.
27130         Check for strerror declaration.
27131
27132         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
27133         are supposed to have them these days.
27134         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
27135         Merge changes from latest Autoconf CVS.
27136         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
27137         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
27138         POSIX decided to standardize on the int flavor of strerror_r.
27139
27140 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27141
27142         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
27143         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
27144         Use strerror_r that is only a macro, even if it is not a function.
27145         (strerror): Check for HAVE_DECL_STRERROR before declaring.
27146         (private_strerror): Use prototypes, not old-style function definition.
27147         (print_errno_message): New function.
27148         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
27149         char*-flavored one.
27150         (error_tail, error, error_at_line): Use it.
27151
27152 2001-10-11  Jim Meyering  <meyering@lucent.com>
27153
27154         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
27155         and quote_n (1, ... to avoid clobbering a buffer.
27156
27157 2001-10-05  Jim Meyering  <meyering@lucent.com>
27158
27159         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
27160         hash-pjw.h.
27161         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
27162         * lib/hash-pjw.h: New file.
27163
27164 2001-09-30  Jim Meyering  <meyering@lucent.com>
27165
27166         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
27167         `struct fsstat' has the `f_fstypename' member.
27168         Use that to define FS_TYPE, which is now used to make
27169         the getfsstat link test tighter.
27170
27171 2001-09-30  Jim Meyering  <meyering@lucent.com>
27172
27173         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
27174         Include <sys/ucred.h>, for Apple Darwin.
27175         Include sys/mount.h and sys/fs_types.h only if available.
27176         (FS_TYPE): Define.
27177         (read_filesystem_list): Use FS_TYPE.
27178
27179 2001-09-29  Paul Eggert  <eggert@twinsun.com>
27180
27181         * lib/exclude.c (excluded_filename): 0 -> false, since it's
27182         a boolean context.
27183
27184 2001-09-29  Jim Meyering  <meyering@lucent.com>
27185
27186         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27187         [one-argument getmntent function]): Include stdio.h before mntent.h.
27188         SunOS 4.1.x needs it for the declaration of `FILE'.
27189         Patch by Volker Borchert.
27190
27191         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27192         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
27193         sys/fs_types.h, and make the link-test for getfsstat guard #include
27194         directives with appropriate #if HAVE_*_H tests so that we can
27195         detect getfsstat on Apple Darwin1.3.7 systems.
27196         Reported by Nelson Beebe.
27197         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
27198
27199 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27200
27201         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27202         #defines strtoimax.  Also treat the other strto* functions
27203         like strtoimax.
27204
27205         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27206         Check for strtoul and strtoumax,
27207         as those declarations are made even in the signed case.
27208         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
27209         Likewise, for strtol and strtoimax.
27210
27211 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27212
27213         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27214         #defines strtoimax.  Also treat the other strto* functions
27215         like strtoimax.
27216
27217         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
27218         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
27219         (strtoimax, strtoumax): Do not declare if already defined as a macro.
27220
27221 2001-09-26  Jim Meyering  <meyering@lucent.com>
27222
27223         Most macros in unlocked-io.h had the wrong number of arguments.
27224         * lib/gen-uio: New script.
27225         (USE_UNLOCKED_IO): Define to 1 if not already defined.
27226         * lib/unlocked-io.hin: Remove file.
27227         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
27228         rather than trying to embed it here.
27229         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
27230         Reported by Padraig Brady.
27231
27232 2001-09-25  Volker Borchert  <bt@teknon.de>
27233
27234         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
27235         `result'.
27236
27237 2001-09-24  Jim Meyering  <meyering@lucent.com>
27238
27239         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
27240
27241 2001-09-23  Jim Meyering  <meyering@lucent.com>
27242
27243         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
27244         instead of the mere test for existence of mntent.h.  The latter
27245         would get a false-positive on AIX 3.4 systems.
27246         In the outer getmntent if-block, don't die if neither of the getmntent
27247         tests succeeds.  Instead, just fall through and continue with the
27248         remaining tests.
27249
27250 2001-09-23  Jim Meyering  <meyering@lucent.com>
27251
27252         * lib/mountlist.c: Remove useless parentheses in #if directives.
27253         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
27254         the deprecated MOUNTED symbol is no longer defined in mntent.h.
27255
27256 2001-09-22  Jim Meyering  <meyering@lucent.com>
27257
27258         * m4/gettext.m4: New file.  From gettext.
27259         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
27260         * m4/progtest.m4: Likewise
27261         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
27262         * m4/glibc21.m4: Likewise.
27263
27264         * m4/libintl.m4: Remove.  No longer used.
27265
27266 2001-09-22  Jim Meyering  <meyering@lucent.com>
27267
27268         * lib/localcharset.c: Update from latest gettext.
27269         * lib/config.charset: Likewise.
27270
27271 2001-09-20  Jim Meyering  <meyering@lucent.com>
27272
27273         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
27274         strtoimax.
27275         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
27276         strtoumax.
27277
27278 2001-09-20  Jim Meyering  <meyering@lucent.com>
27279
27280         * lib/xstrtol.c (strtoimax): Guard declaration with
27281         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
27282         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
27283         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
27284         (strtoumax): Likewise, for completeness (it wasn't necessary).
27285
27286 2001-09-17  Paul Eggert  <eggert@twinsun.com>
27287
27288         * lib/strtoimax.c (HAVE_LONG_LONG):
27289         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
27290         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
27291         to work around bug in IBM C compiler.
27292
27293 2001-09-17  Jim Meyering  <meyering@lucent.com>
27294
27295         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
27296         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
27297         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
27298         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
27299         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
27300         whenever the right hand side need not be expanded by the shell.
27301
27302 2001-09-16  Paul Eggert  <eggert@twinsun.com>
27303
27304         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
27305         library.  It's not correct, as some older glibcs are buggy.
27306         fnmatch wasn't fixed until glibc 2.2.
27307
27308         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
27309         special shell magic here.
27310
27311 2001-09-16  Jim Meyering  <meyering@lucent.com>
27312
27313         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
27314         * m4/jm-macros.m4: Require it.
27315
27316 2001-09-16  Jim Meyering  <meyering@lucent.com>
27317
27318         * lib/mkdir.c: New file.
27319
27320 2001-09-15  Jim Meyering  <meyering@lucent.com>
27321
27322         * m4/jm-macros.m4: Check for help2man.
27323
27324 2001-09-11  Jim Meyering  <meyering@lucent.com>
27325
27326         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
27327         The body, by Paul Eggert, was moved here from configure.in.
27328         * m4/jm-macros.m4: Require UTILS_HOST_OS.
27329
27330 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27331
27332         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
27333         (jm_PREREQ): Use it.
27334
27335 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27336
27337         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
27338         Use ssize_t, not int, to store result of readlink.
27339         Check for ssize_t overflow as well as size_t overflow,
27340         as POSIX says the result of readlink is implementation-defined
27341         when ssize_t overflows.
27342         Remove unnecessary cast to char*.
27343         Use free+malloc instead of realloc, as the storage doesn't need
27344         to be preserved and it's clearer and can be more efficient that way.
27345         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
27346         * lib/xreadlink.h (xreadlink): Update prototype.
27347
27348 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27349
27350         * lib/xgetcwd.c: Revert some of the previous change; intead,
27351         fix the HAVE_GETCWD_NULL code to behave more like the
27352         !HAVE_GETCWD_NULL code used to.
27353
27354         Include "xalloc.h".
27355         (xgetcwd): Do not return NULL when memory is exhausted; instead,
27356         invoke xalloc_die.
27357
27358 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27359
27360         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
27361         sys/param.h, as pathmax.h includes them.
27362
27363 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27364
27365         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
27366         (jm_PREREQ_XGETCWD): New macro.
27367
27368         * m4/getcwd.m4: New file.
27369
27370 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27371
27372         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
27373         like the HAVE_GETCWD_NULL code.
27374         Include pathmax.h if not HAVE_GETCWD.
27375         Do not include xalloc.h.
27376         (INITIAL_BUFFER_SIZE): New symbol.
27377         Do not use xmalloc / xrealloc, since the caller is responsible for
27378         handling errors.  Preserve errno around `free' during failure.
27379         Do not overrun buffer when using getwd.
27380
27381 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27382
27383         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
27384         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
27385         getcwd (NULL, 0).
27386
27387 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27388
27389         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
27390         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
27391         spotted by Jim Meyering.
27392
27393 2001-09-03  Jim Meyering  <meyering@lucent.com>
27394
27395         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
27396         failure.
27397
27398 2001-09-02  Jim Meyering  <meyering@lucent.com>
27399
27400         * lib/error.c: Update from GNU libc.
27401
27402 2001-09-01  Jim Meyering  <meyering@lucent.com>
27403
27404         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
27405         Used by df.
27406
27407 2001-09-01  Jim Meyering  <meyering@lucent.com>
27408
27409         * lib/xreadlink.c: New file.
27410         * lib/xreadlink.h: New file.
27411         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
27412         xreadlink.h.
27413
27414         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
27415         doesn't conflict with sparc Solaris 7's definition in
27416         /usr/include/sys/int_types.h.
27417
27418         * lib/exclude.c: Use `""', not `<>' to #include non-system header
27419         files.
27420         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
27421         and strncasecmp as r-values.  Unixware didn't have declarations.
27422
27423 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27424
27425         * lib/xstrtol.h: Add copyright notice.
27426         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
27427         LONGINT_INVALID_SUFFIX_CHAR.
27428
27429 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27430
27431         * lib/xstrtol.c (strtoimax): New decl.
27432
27433 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27434
27435         * lib/xgetcwd.c: Don't include pathmax.h.
27436         Include stdlib.h and unistd.h if available.
27437         Include xalloc.h.
27438         (xmalloc, xstrdup, free): Remove decls.
27439         (xgetcwd): Don't assume sizes fit in unsigned.
27440         Check for overflow when computing sizes.
27441         Simplify reallocation code.
27442
27443 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27444
27445         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
27446         a directory's st_size can have an arbitrary value, so the old
27447         usage could waste an arbitrary amount of memory.  All uses
27448         changed.
27449         * lib/savedir.h: Update prototype.
27450
27451 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27452
27453         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
27454
27455         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
27456         old strtoimax.c.
27457
27458         Also, make the following further changes to make this file's
27459         configuration more similar to that of strtol.c:
27460         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
27461         (strtoumax, uintmax_t, strtoull, strtol): Remove.
27462         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
27463         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
27464         changed to signed values.
27465
27466         And make the following changes as well:
27467         Fix copyright notice, as 1999 was missing.
27468         (verify): New macro.
27469         (strtoimax): Check sizes at compile-time, not run-time.
27470         Prefer strtol to strtoll if both work.
27471         (main): Remove; it was not that useful and was a pain to maintain.
27472
27473         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
27474
27475 2001-08-31  Jim Meyering  <meyering@lucent.com>
27476
27477         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
27478         Use an initial, malloc'd, buffer of length 128 rather than
27479         a statically allocated one of length 1024.
27480
27481 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27482
27483         Simplify code, partly by assuming autoconf 2.52 semantics.
27484
27485         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
27486
27487         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
27488         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
27489         All uses removed.
27490         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
27491         Move AC_REQUIRE to next-to-top level, to avoid confusion.
27492         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
27493         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
27494         jm_AC_HEADER_INTTYPES_H.
27495         * m4/jm-macros.m4 (jm_MACROS): Likewise.
27496
27497         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
27498
27499         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27500         Quote first arg of AC_DEFUN.
27501         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
27502         since they are needed to parse the include file even if we need
27503         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
27504         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
27505         but with opposite signedness.
27506
27507 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27508
27509         Merge 'exclude' changes from tar 1.13.22.
27510         This fixes one or two unlikely storage allocation overflow bugs,
27511         but doesn't change user-visible behavior otherwise.
27512
27513 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27514
27515         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
27516         (jm_PREREQ_EXCLUDE): New macro.
27517
27518 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27519
27520         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
27521         tm to be declared.
27522
27523 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27524
27525         * lib/hash.c: Remove '2001' from copyright notice.
27526
27527 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27528
27529         * lib/full-write.h: New file.
27530         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
27531         * lib/full-write.c: Correct credits, as cccp.c no longer
27532         exists and anyway it was so heavily changed from the old cccp
27533         code as to be unrecognizable.  Include full-write.h.
27534         (full_write) Return size_t, with short writes meaning failure.
27535         All callers changed.  This fixes a bug with large buffers
27536         on 64-bit hosts.
27537         * lib/utime.c: Include full-write.h.
27538
27539 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27540
27541         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
27542         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
27543         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
27544         Include if available.
27545         (<xalloc.h>): Include
27546         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
27547         (verify): New macro.  Use it to verify that EXCLUDE macros do not
27548         collide with FNM macros.
27549         (struct patopts): New struct.
27550         (struct exclude): Use it, as exclude patterns now come with options.
27551         (new_exclude): Support above changes.
27552         (new_exclude, add_exclude_file):
27553         Initial size must now be a power of two to simplify overflow checking.
27554         (free_exclude, fnmatch_no_wildcards): New function.
27555         (excluded_filename): No longer requires options arg, as the options
27556         are determined by add_exclude.  Now returns bool, not int.
27557         (excluded_filename, add_exclude):
27558         Add support for the fancy new exclusion options.
27559         (add_exclude, add_exclude_file): Now takes int options arg.
27560         Check for arithmetic overflow when computing sizes.
27561         (add_exclude_file): xrealloc might modify errno, so don't
27562         realloc until after errno might be used.
27563
27564         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
27565         New macros.
27566         (free_exclude): New decl.
27567         (add_exclude, add_exclude_file): Now takes int options arg.
27568         (excluded_filename): No longer requires options arg, as the options
27569         are determined by add_exclude.  Now returns bool, not int.
27570
27571 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27572
27573         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
27574
27575 2001-08-27  Jim Meyering  <meyering@lucent.com>
27576
27577         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
27578
27579         * lib/version-etc.c (N_): Remove definition.
27580         Revert most of last change.
27581         Instead, simply don't mark the `Copyright...' string for translation.
27582         Based on advice from Paul Eggert.
27583
27584         * lib/strtoxmax.c: Tweak comment.
27585
27586 2001-08-26  Jim Meyering  <meyering@lucent.com>
27587
27588         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
27589
27590         * m4/xstrtoimax.m4: New file.
27591         * m4/xstrtoumax.m4: Add comments explaining why we
27592         AC_REPLACE_FUNCS(strtol).
27593
27594 2001-08-26  Jim Meyering  <meyering@lucent.com>
27595
27596         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
27597         of copyright with `%s' so translators don't get an untranslated
27598         message in 2002.
27599         (COPYRIGHT_YEAR): Define.
27600         (version_etc): Use fprintf rather than fputs.
27601         Suggestion from Ulrich Drepper.
27602
27603         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
27604
27605         * lib/strtoll.c: New file, from GNU libc.
27606         * lib/xstrtoimax.c: New file.
27607
27608         * lib/xstrtol.h: Add xstrtoimax.
27609         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
27610         * lib/strtoimax.c: New file.  Likewise, but first define
27611         STRTOUXMAX_SIGNED.
27612
27613         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
27614         ...
27615         * lib/strtoxmax.c: ... then renamed to this.
27616
27617 2001-08-18  Paul Eggert  <eggert@twinsun.com>
27618
27619         * m4/inttypes.m4: Add AC_PREREQ(2.13).
27620         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
27621         (jm_AC_TYPE_INTMAX_T): New macro.
27622         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
27623
27624         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
27625
27626         * m4/longlong.m4: Renamed from ulonglong.m4.
27627         * m4/inttypes.m4: Renamed from inttypes_h.m4.
27628         * m4/uintmax_t.m4: Removed.
27629
27630 2001-08-13  Paul Eggert  <eggert@twinsun.com>
27631
27632         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
27633         Port to Solaris 8, where 'sed' requires a space after the 'r'
27634         command, and where sh dislikes "$/".  Clean up the spacing a bit.
27635         Redirect output to $tmp just once.
27636
27637 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
27638
27639         * lib/addext.c (<errno.h>): Include.
27640         (errno): Declare if not defined.
27641         (addext): Work correctly when pathconf returns -1 and leaves
27642         errno alone because there is no limit.  Also, work even if
27643         pathconf returns a value greater than SIZE_MAX.
27644
27645 2001-08-12  Jim Meyering  <meyering@lucent.com>
27646
27647         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
27648         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
27649         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
27650         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
27651         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
27652         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
27653         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
27654         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
27655         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
27656         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
27657         utime.m4, utimes.m4, xstrtoumax.m4:
27658         Quote the first argument in each use of AC_DEFUN.
27659
27660 2001-08-12  Jim Meyering  <meyering@lucent.com>
27661
27662         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
27663         Simply `return getcwd (NULL, 0);'.
27664         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
27665         Use 1300 as initial value for length, not PATH_MAX.
27666
27667         * lib/pathmax.h: Clean up cpp syntax.
27668
27669 2001-08-12  Jim Meyering  <meyering@lucent.com>
27670
27671         * lib/gettimeofday.c: New file.
27672         * lib/gtod.h: New file.
27673         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
27674
27675 2001-08-05  Jim Meyering  <meyering@lucent.com>
27676
27677         * m4/jm-macros.m4: Require autoconf-2.52.
27678
27679 2001-08-04  Jim Meyering  <meyering@lucent.com>
27680
27681         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
27682         stmt, to get in sync with glibc.
27683
27684 2001-08-03  Paul Eggert  <eggert@twinsun.com>
27685
27686         The following changes are from gettext 0.10.39 as maintained by
27687         Bruno Haible.
27688
27689         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
27690         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
27691         with inverted sense.  All uses changed.
27692
27693         * lib/mbswidth.c: Don't include <limits.h>.
27694         Include <stdlib.h> and <string.h> unconditionally.
27695         (iswcntrl, mbsinit, ISCNTRL): New macros.
27696         (mbsnwidth): Use K&R style function declarations.
27697         Don't bother checking for MB_LEN_MAX == 1, since the compiler
27698         can optimize it when MB_CUR_MAX == 1.
27699         The width of control characters is zero, not 1.
27700
27701 2001-08-03  Paul Eggert  <eggert@twinsun.com>
27702
27703         The following changes are from gettext 0.10.39 as maintained by
27704         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
27705
27706         * m4/codeset.m4: Upgrade to serial AM1.
27707         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
27708         all uses changed.  Quote first arg of AC_DEFUN.
27709         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
27710
27711         * m4/iconv.m4: Upgrade to serial AM2.
27712         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
27713         Add --with-libconv-prefix.
27714         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
27715         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
27716         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
27717         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
27718         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
27719
27720         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
27721         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
27722         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
27723         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
27724         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
27725         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
27726         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
27727         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
27728         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
27729
27730         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
27731         string.h any more.
27732
27733         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
27734         not the default value.
27735
27736         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
27737         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
27738         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
27739         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
27740         Also check for iswcntrl, used for wcwidth fallback.
27741         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
27742         to Autoconf 2.13.
27743
27744 2001-08-03  Jim Meyering  <meyering@lucent.com>
27745
27746         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
27747         as it was in the original.  Reported by Paul Eggert.
27748
27749 2001-07-16  Jim Meyering  <meyering@lucent.com>
27750
27751         * m4/gettimeofday.m4: New file.
27752         Prompted by a report from Bernhard Baehr.
27753
27754 2001-07-15  Jim Meyering  <meyering@lucent.com>
27755
27756         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
27757         stuff. Now it's in ../Makefile.cfg.
27758
27759 2001-07-15  Jim Meyering  <meyering@lucent.com>
27760
27761         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
27762         (BUILT_SOURCES): Add unlocked-io.h.
27763         (io_functions): Define.
27764         (unlocked-io.h): New rule.
27765         (DISTCLEANFILES): Add unlocked-io.h.
27766         (all-local): Depend on unlocked-io.h, to ensure it is created.
27767
27768         * lib/unlocked-io.hin: New file
27769
27770         * lib/regex.c: Update from glibc.
27771
27772 2001-07-05  Jim Meyering  <meyering@lucent.com>
27773
27774         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
27775         recommendation.
27776         (libfetish_a_SOURCES): Put all .h files here instead.
27777         Remove a thus-exposed (better checks in automake) duplicate and
27778         two unnecessary .h files.
27779
27780 2001-07-04  Jim Meyering  <meyering@lucent.com>
27781
27782         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
27783         that generates jm-glibc-io.m4 so that it doesn't trigger any make
27784         distcheck failure.
27785
27786 2001-07-02  Jim Meyering  <meyering@lucent.com>
27787
27788         The following changes were prompted by suggestions from Bruno Haible.
27789
27790         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
27791         is now generated.
27792         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
27793         definition of EXTRA_DIST.
27794         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
27795         ensure that the generated file is created/updated whenever the list
27796         of $(unlocked_functions) is changed.
27797         (jm-glibc-io.m4): New rule.
27798         (unlocked-io.h): New rule -- currently unused.
27799
27800 2001-06-24  Jim Meyering  <meyering@lucent.com>
27801
27802         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
27803         unmatched right bracket, rather than kludging it with an extra,
27804         falsely-matching quote in a comment.  Patch by Akim Demaille.
27805
27806 2001-06-11  Jim Meyering  <meyering@lucent.com>
27807
27808         * lib/regex.c: Update from GNU libc.
27809
27810 2001-05-27  Jim Meyering  <meyering@lucent.com>
27811
27812         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
27813         Check for ut_type in struct utmp.
27814
27815 2001-05-27  Jim Meyering  <meyering@lucent.com>
27816
27817         * lib/readutmp.h (UT_TYPE): Define.
27818
27819 2001-05-24  Jim Meyering  <meyering@lucent.com>
27820
27821         * lib/argmatch.c: Include "quote.h".
27822         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
27823         quote function.  Reported by Göran Uddeborg.
27824
27825 2001-05-22  Jim Meyering  <meyering@lucent.com>
27826
27827         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
27828         now that we use the package-supplied version unconditionally.
27829         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
27830
27831 2001-05-21  Jim Meyering  <meyering@lucent.com>
27832
27833         * m4/regex.m4: Change a couple backticks to single quotes to avoid
27834         shell syntax errors.
27835
27836 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
27837
27838         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
27839
27840 2001-05-20  Paul Eggert  <eggert@twinsun.com>
27841
27842         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
27843         Don't bother to check library strftime, since
27844         we'll be using our own my_strftime function anyway.
27845         Define my_strftime instead of strftime.
27846
27847 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
27848
27849         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
27850         which is not yet declared.
27851
27852 2001-05-15  Jim Meyering  <meyering@lucent.com>
27853
27854         * m4/regex.m4: Use proper quoting so brackets appear in the test
27855         program.
27856         Reported by, and with help from, Bruno Haible.
27857
27858 2001-05-13  Jim Meyering  <meyering@lucent.com>
27859
27860         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
27861         undefined.
27862
27863 2001-05-11  Paul Eggert  <eggert@twinsun.com>
27864
27865         dirname code cleanup.  base_name now behaves more compatibly
27866         with POSIX basename when given file names that have trailing
27867         slashes, and similarly for dir_name.  Add new primitives
27868         base_len and dir_len.  Put the directory-name-related decls
27869         into dirname.h.
27870
27871         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
27872         * lib/backupfile.c (base_name): Likewise.
27873         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
27874         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
27875         * lib/makepath.c (strip_trailing_slashes): Likewise.
27876         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
27877         ISSLASH): Likewise.
27878         * lib/rename.c (strip_trailing_slashes): Likewise.
27879         * lib/same.c (base_name): Likewise.
27880         * lib/stripslash.c (ISSLASH): Likewise.
27881
27882         * lib/addext.c: Include <dirname.h> after size_t is defined.
27883         * lib/backupfile.c: Likewise.
27884
27885         * lib/addext.c (addext): Use base_len to trim redundant
27886         trailing slashes instead of doing it ourselves.
27887         But do not trim the last slash if it is not redundant.
27888
27889         * lib/backupfile.c (find_backup_file_name,
27890         max_backup_version): Use base_len instead of rolling it ourselves.
27891         Handle the case of "" and (on DOS) "C:" correctly.
27892
27893         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
27894         needed. Include <string.h>, <dirname.h>.
27895         (base_name): Allow file names ending in slashes, other than names
27896         that are all slashes.  In this case, return the basename followed
27897         by the slashes.  This is more general, and can be used in places
27898         where the original base_name purposely had an assertion failure.
27899         (base_len): New function.
27900
27901         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
27902         Do not include <assert.h>; no longer needed.
27903         Include xalloc.h.
27904         (memrchr): Remove decl.
27905         (dir_name_r): Remove.
27906         (dir_len): Renamed from dirlen.  All callers changed.
27907         Rewrite in terms of base_name, for simplicity and consistency.
27908         (dir_name): Never return NULL.  All callers changed.
27909         Do not include <stdlib.h> in test program; no longer needed.
27910         return 0; is fine for test program.
27911
27912         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
27913         New macros.
27914         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
27915
27916         * lib/path-concat.c (path_concat): Use base_len to compute
27917         base length, not strlen; this means we cannot rely on memcpy
27918         to null-terminate.
27919
27920         * lib/same.c (STREQ): Remove.
27921         (same_name): Handle the case where the basename ends in trailing '/'.
27922
27923         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
27924         a slash was stripped.  Do not strip the last slash after a
27925         file system prefix.
27926
27927 2001-05-11  Paul Eggert  <eggert@twinsun.com>
27928
27929         * lib/Makefile.am (libfetish_a_SOURCES):
27930         Add strftime.c, since we now compile it on all hosts.
27931
27932         * lib/strftime.c (my_strftime):
27933         Define to nstrftime if emacs, but only if my_strftime is not defined.
27934         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
27935         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
27936         Add one more extra argument: a nanoseconds value.
27937         All uses changed.
27938         (ns): New macro.
27939         (my_strftime function): Add %N format.
27940         (emacs_strftimeu): Renamed from emacs_strftime,
27941         with extra ut argument.
27942
27943 2001-05-09  Paul Eggert  <eggert@twinsun.com>
27944
27945         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
27946
27947 2001-04-21  Jim Meyering  <meyering@lucent.com>
27948
27949         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
27950         doesn't interfere.
27951
27952 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
27953
27954         * m4/ftruncate.m4: Check for chsize.
27955         Link with ftruncate.o unconditionally if ftruncate is missing.
27956         This was required when cross-compiling to i586-mingw32msvc.
27957
27958 2001-04-08  Jim Meyering  <meyering@lucent.com>
27959
27960         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
27961         recomputed; that's necessary when the offset spans a DST transition.
27962         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
27963
27964 2001-04-02  Jim Meyering  <meyering@lucent.com>
27965
27966         * lib/regex.h, regex.c: Update from GNU libc.
27967
27968 2001-03-24  Jim Meyering  <meyering@lucent.com>
27969
27970         * m4/jm-macros.m4: Require autoconf-2.49d.
27971
27972 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
27973
27974         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
27975
27976 2001-03-19  Paul Eggert  <eggert@twinsun.com>
27977
27978         * lib/version-etc.c (version_etc_copyright): Update to 2001.
27979
27980 2001-03-17  Jim Meyering  <meyering@lucent.com>
27981
27982         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
27983         now that the version in autoconf is equivalent.
27984         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
27985
27986         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
27987         Suggestion from Akim Demaille.
27988
27989         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
27990         (jm_PREREQ_TEMPNAME): New function.
27991
27992 2001-03-16  Paul Eggert  <eggert@twinsun.com>
27993
27994         * lib/tempname.c (uint64_t): Define to uintmax_t if
27995         not defined, and if UINT64_MAX is not defined.
27996         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
27997         Reported by John David Anglin.
27998
27999 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
28000
28001         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
28002         resolve alias if codeset is empty.
28003         * lib/config.charset (BeOS): Use wildcard syntax.
28004
28005 2001-03-13  Jim Meyering  <meyering@lucent.com>
28006
28007         * lib/path-concat.c (path_concat)
28008         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
28009         concatenating e.g., `C:' and `foo'.
28010         From Bruno Haible.
28011
28012 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28013
28014         * lib/localcharset.c (locale_charset): Don't use
28015         setlocale(LC_CTYPE,NULL). Don't return NULL.
28016         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
28017
28018 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28019
28020         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
28021         support for DOS/DJGPP.
28022
28023 2001-03-01  Paul Eggert  <eggert@twinsun.com>
28024
28025         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
28026         lacks mkstemp.  Compile our own tempname.c if we compile our own
28027         mkstemp.c, as mkstemp relies on tempname.
28028
28029 2001-03-01  Jim Meyering  <meyering@lucent.com>
28030
28031         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
28032         AH_VERBATIM really does output its argument verbatim.
28033
28034 2001-02-28  Paul Eggert  <eggert@twinsun.com>
28035
28036         * lib/Makefile.am (libfetish_a_SOURCES):
28037         Add dup-safer.c, fopen-safer.c.
28038         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
28039
28040         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
28041         * lib/unistd-safer.h: New files.
28042
28043 2001-02-25  Paul Eggert  <eggert@twinsun.com>
28044
28045         The mkstemp replacement is taken from glibc 2.2.2, with some
28046         portability fixes for use outside glibc, as follows:
28047
28048         * lib/tempname.c (struct_stat64): New macro.
28049         (direxists, __gen_tempname): Use it.
28050         This avoids a portability problem with Solaris 8.
28051
28052         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
28053         (<stddef.h>, <stdint.h>, <string.h>):
28054         Include only if STDC_HEADERS || _LIBC.
28055         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
28056         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
28057         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
28058         (__set_errno): Define this macro if <errno.h> doesn't.
28059         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
28060         Define these macros if <stdio.h> doesn't.
28061         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
28062         Define these macros if <sys/stat.h>
28063         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
28064         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
28065         __xstat64): Define if not _LIBC.
28066         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
28067         (__gen_tempname): Invoke gettimeofday only if
28068         HAVE_GETTIMEOFDAY || _LIBC;
28069         otherwise, fall back on plain "time".
28070         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
28071
28072         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
28073
28074         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
28075
28076 2001-02-18  Paul Eggert  <eggert@twinsun.com>
28077
28078         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
28079
28080 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28081
28082         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
28083         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
28084         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
28085         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
28086
28087 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28088
28089         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
28090         Remove workaround macros for hosts that have mbrtowc but not
28091         mbstate_t, as we now insist on proper declarations for both
28092         before using mbrtowc.
28093
28094 2001-02-17  Jim Meyering  <meyering@lucent.com>
28095
28096         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
28097         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
28098         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
28099         UnixWare 7.1.1.
28100
28101         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
28102         rather than AC_CACHE_VAL.
28103
28104 2001-02-17  Jim Meyering  <meyering@lucent.com>
28105
28106         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
28107         around included file name.
28108
28109         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
28110
28111         * lib/strftime.c: Update from GNU libc (the only changes were to
28112         comments).
28113
28114 2001-02-17  Jim Meyering  <meyering@lucent.com>
28115
28116         * lib/regex.c: Update from libc.
28117
28118 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
28119
28120         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
28121         clash.
28122
28123 2001-02-16  Paul Eggert  <eggert@twinsun.com>
28124
28125         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
28126         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
28127         Reported by Mark Hounschell via Paul Eggert.
28128
28129 2001-02-07  Jim Meyering  <meyering@lucent.com>
28130
28131         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
28132
28133 2001-02-05  Jim Meyering  <meyering@lucent.com>
28134
28135         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
28136         it includes the patch required for `large file' support with at least
28137         HP-UX's 10.20 /bin/cc.
28138
28139 2001-02-03  Jim Meyering  <meyering@lucent.com>
28140
28141         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
28142         AS_IF, now that it works once again (mysteriously).
28143         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28144
28145 2001-01-30  Jim Meyering  <meyering@lucent.com>
28146
28147         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
28148         * m4/chown.m4: Rename conftestchown to conftest.chown.
28149         * m4/rename.m4: s/conftestdir/conftest.d1/ and
28150         s/conftestdir2/conftest.d2/.
28151         * m4/utimes.m4: s/conftestdata/conftest.data/
28152         Inspired by Pavel Roskin's change in autoconf.
28153
28154 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
28155
28156         * lib/config.charset: Update for FreeBSD 4.2.
28157
28158 2001-01-27  Jim Meyering  <meyering@lucent.com>
28159
28160         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
28161         a use of AS_IF.
28162         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28163
28164 2001-01-26  Jim Meyering  <meyering@lucent.com>
28165
28166         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
28167         quotearg.c includes it.
28168
28169 2001-01-26  Jim Meyering  <meyering@lucent.com>
28170
28171         * lib/quotearg.c: Include stddef.h.
28172         * lib/quote.c: Include stddef.h.
28173         Reported by Axel Kittenberger.
28174
28175         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
28176         line in double quotes so that it evokes a better diagnostic.
28177         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
28178         Reported by Axel Kittenberger.
28179
28180 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
28181
28182         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
28183         as if it was a `charset'.
28184
28185 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28186
28187         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
28188         has const.
28189
28190 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28191
28192         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
28193         to avoid a warning.  Add back 'const' to inptr.
28194
28195 2001-01-20  Jim Meyering  <meyering@lucent.com>
28196
28197         Be sure that headers are checked before used in code compiled
28198         for the type checks.
28199         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
28200         In place of that, invoke jm_CHECK_ALL_TYPES.
28201         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
28202         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
28203         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
28204         The check for ssize_t was mistakenly run before the test for unistd.h.
28205
28206         The configure-time check for stdbool.h was missing.
28207         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
28208         (jm_PREREQ_HASH): New function.
28209
28210 2001-01-17  Jim Meyering  <meyering@lucent.com>
28211
28212         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
28213         for autoconf-2.49c.
28214         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
28215
28216 2001-01-16  Jim Meyering  <meyering@lucent.com>
28217
28218         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
28219         From Bruno Haible.
28220
28221 2001-01-14  Jim Meyering  <meyering@lucent.com>
28222
28223         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
28224         foo and bar.  Create conftestdir/ in the script, not in the C code.
28225         Remove directories in the script, not in the C code.
28226         Remove conftestdir{,2} before trying to create the directory.
28227         Make the entire configure script fail if the mkdir fails.
28228
28229 2001-01-14  Jim Meyering  <meyering@lucent.com>
28230
28231         * lib/rename.c: New file.  From Volker Borchert.
28232         Include stdlib.h, string.h or strings.h, and xalloc.h.
28233         Use strip_trailing_slashes rather than open-coding it.
28234
28235 2001-01-03  Paul Eggert  <eggert@twinsun.com>
28236
28237         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
28238
28239 2001-01-03  Jim Meyering  <meyering@lucent.com>
28240
28241         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
28242         of local `inptr' to avoid warning with some system declarations of
28243         iconv.
28244
28245 2001-01-02  Volker Borchert  <bt@teknon.de>
28246
28247         * m4/rename.m4: New file.
28248         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
28249
28250 2001-01-01  Jim Meyering  <meyering@lucent.com>
28251
28252         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
28253         even on systems with utmpx.h.  It's necessary for the declaration of
28254         utmp's ut_user member.  Reported by Andreas Jaeger.
28255
28256         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
28257         available. They are required for the declarations of getgrgid and
28258         getpwuid resp.
28259         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
28260         Reported by Andreas Jaeger.
28261
28262 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
28263
28264         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
28265         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
28266         so `make install' also works in VPATH builds.
28267
28268 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
28269
28270         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
28271         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
28272         can be used in subdirectories.
28273
28274 2000-12-29  Paul Eggert  <eggert@twinsun.com>
28275
28276         * lib/modechange.c: Do not assume that mode_t uses the
28277         traditional octal encoding.  E.g. "chmod 1 FOO" should set
28278         the other-execute bit of FOO even if S_IXOTH != 1.
28279
28280         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
28281         WOTH, XOTH, ALLM): New macros.
28282         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
28283          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
28284         Use them.
28285         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
28286         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
28287         (mode_compile):
28288         No need to use uintmax_t; unsigned long is long enough.
28289         Don't bother to get suffix since we don't use it.
28290
28291 2000-12-26  Jim Meyering  <meyering@lucent.com>
28292
28293         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
28294         better with autoheader.
28295
28296 2000-12-24  Jim Meyering  <meyering@lucent.com>
28297
28298         * lib/hash.c (is_prime): Return explicit boolean values.
28299         (hash_get_first): Return NULL to appease Irix5.6's 89.
28300         Reported by Nelson Beebe.
28301
28302 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
28303
28304         * lib/localcharset.c (locale_charset): Add support for Win32.
28305
28306 2000-12-18  Paul Eggert  <eggert@twinsun.com>
28307
28308         * lib/physmem.h, lib/physmem.c: New files.
28309
28310         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
28311         (noinst_HEADERS): Add physmem.h.
28312
28313         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
28314         't' for compatibility with Solaris 8 sort.
28315
28316 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
28317
28318         * lib/config.charset: Add support for BeOS.
28319
28320 2000-12-17  Jim Meyering  <meyering@lucent.com>
28321
28322         * m4/dos.m4 (jm_AC_DOS): New file and macro.
28323         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
28324
28325 2000-12-16  Jim Meyering  <meyering@lucent.com>
28326
28327         This bug had a serious impact on chown: `chown N:M FILE' (for integer
28328         N and M) would have treated it like `chown N:N FILE'.
28329
28330         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
28331
28332 2000-12-16  Jim Meyering  <meyering@lucent.com>
28333
28334         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
28335         SHELLS_FILE to a file name that's useful on djgpp systems.
28336         Include stdlib.h.
28337         (ADDITIONAL_DEFAULT_SHELLS): Define.
28338         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
28339         Based mostly on a patch from Prashant TR.
28340
28341 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
28342
28343         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
28344         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
28345         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
28346
28347 2000-12-08  Andreas Schwab  <schwab@suse.de>
28348
28349         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
28350         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
28351
28352 2000-12-07  Jim Meyering  <meyering@lucent.com>
28353
28354         * lib/stripslash.c (ISSLASH): Define.
28355         (strip_trailing_slashes): Use ISSLASH rather than comparing against
28356         `/'.
28357         From Prashant TR.
28358
28359         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
28360         (dir_name_r): Declare this function as static.
28361         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
28362         manifest itself on a name containing a mix of slashes and
28363         backslashes.
28364         Make this function work with names starting with a DOS-style
28365         drive letter and colon prefix.
28366         (dir_name): Append `.' if necessary.
28367         Based mostly on patches from Prashant TR and Eli Zaretskii.
28368
28369         * lib/dirname.h (dir_name_r): Remove prototype.
28370
28371 2000-12-06  Paul Eggert  <eggert@twinsun.com>
28372
28373         * m4/off_t-format.m4: Remove this file.
28374         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
28375
28376 2000-12-06  Jim Meyering  <meyering@lucent.com>
28377
28378         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
28379         replacement strtoull, we may well need the replacement strtoul, too.
28380         Check for declarations of strtoul and strtoull.
28381         Check for strtol.  Mainly as a cue to cause automake to include
28382         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
28383         Check for limits.h -- strtol.c needs it.
28384
28385 2000-12-05  Jim Meyering  <meyering@lucent.com>
28386
28387         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
28388
28389 2000-12-04  Jim Meyering  <meyering@lucent.com>
28390
28391         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
28392         Also include memory.h, stdlib.h, unistd.h if appropriate.
28393         Reported by Andreas Jaeger (conflicting declaration of malloc).
28394
28395 2000-12-02  Jim Meyering  <meyering@lucent.com>
28396
28397         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
28398         * m4/jm-macros.m4 (jm_MACROS): require it.
28399
28400 2000-12-02  Jim Meyering  <meyering@lucent.com>
28401
28402         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
28403
28404 2000-12-01  Paul Eggert  <eggert@twinsun.com>
28405
28406         * lib/memrchr.c: Include <config.h> before any system include file.
28407
28408 2000-11-30  Jim Meyering  <meyering@lucent.com>
28409
28410         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
28411
28412 2000-11-30  Jim Meyering  <meyering@lucent.com>
28413
28414         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
28415
28416 2000-11-29  Paul Eggert  <eggert@twinsun.com>
28417
28418         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
28419
28420 2000-11-26  Jim Meyering  <meyering@lucent.com>
28421
28422         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
28423
28424 2000-11-22  Paul Eggert  <eggert@twinsun.com>
28425
28426         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
28427         size of (size_t) -1; it's not portable.
28428
28429 2000-11-17  Jim Meyering  <meyering@lucent.com>
28430
28431         * lib/strstr.c: Update from GNU libc.
28432
28433 2000-11-17  Akim Demaille  <akim@epita.fr>
28434
28435         * lib/obstack.h: Formatting changes.
28436         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
28437         prevent type checking.
28438         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
28439         cast the value to (void *): assigning a `foo *' to a `void *'
28440         variable is valid.
28441         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
28442
28443 2000-11-16  Jim Meyering  <meyering@lucent.com>
28444
28445         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
28446
28447 2000-11-11  Jim Meyering  <meyering@lucent.com>
28448
28449         * lib/error.c: Add a couple #includes, merging from GNU libc version.
28450
28451 2000-11-10  Jim Meyering  <meyering@lucent.com>
28452
28453         * lib/obstack.h: Update from GNU libc.
28454         * lib/obstack.c: Likewise.
28455
28456 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
28457
28458         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
28459
28460 2000-11-06  Paul Eggert  <eggert@twinsun.com>
28461
28462         * lib/getusershell.c (setusershell): Use rewind rather than
28463         fseek/fseeko, to avoid configuration hassles with fseeko.
28464         Don't bother opening SHELLS_FILE if shellstream is NULL;
28465         it's not necessary.
28466
28467 2000-11-05  Jim Meyering  <meyering@lucent.com>
28468
28469         * lib/makepath.h (make_dir): Declare.
28470         * lib/makepath.c (make_dir): Remove `static' attribute.
28471         Tweak a comment.
28472
28473 2000-11-04  Jim Meyering  <meyering@lucent.com>
28474
28475         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
28476
28477 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
28478
28479         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
28480         last one in a bucket, advance to the next bucket.
28481
28482 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
28483
28484         * lib/fnmatch.c: Do not comment out all the code if we are using
28485         the GNU C library, because in some cases we are replacing buggy
28486         code in the GNU C library itself.
28487
28488 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
28489
28490         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
28491         (regex_compile): Catch bogus \(\1\).
28492
28493 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28494
28495         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
28496         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
28497         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
28498
28499 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28500
28501         * lib/error.h, getline.h, modechange.h:
28502         Remove "2000" from Copyright line, as the file hasn't been
28503         changed this year other than in the copyright notice.
28504
28505         * lib/xalloc.h: Add "2000" to Copyright line, as this file
28506         was changed this year.
28507
28508 2000-10-29  Jim Meyering  <meyering@lucent.com>
28509
28510         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
28511         renaming.
28512         * m4/ls-mntd-fs.m4: Likewise
28513
28514 2000-10-29  Jim Meyering  <meyering@lucent.com>
28515
28516         * lib/xstat.in: Fix grammar in comment.
28517
28518 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
28519
28520         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
28521         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
28522         doesn't define __restrict_arr.
28523
28524 2000-10-28  Jim Meyering  <meyering@lucent.com>
28525
28526         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
28527         (jm_PREREQ_MEMCHR): New function.
28528
28529 2000-10-28  Jim Meyering  <meyering@lucent.com>
28530
28531         * lib/memchr.c: Update from libc.
28532         Adjust for portability:
28533         [HAVE_STDLIB_H]: Include stdlib.h.
28534         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
28535         Undef __memchr, too.
28536         [!weak_alias]: Define __memchr to memchr.
28537
28538         * lib/regex.c: Update from libc.
28539         * lib/regex.h: Likewise.
28540         * lib/getopt1.c: Likewise.
28541         * lib/memcmp.c: Likewise.
28542
28543         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
28544         Avoid using fseek, when possible -- it's broken by design.
28545         Patch by Ulrich Drepper.
28546
28547 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
28548
28549         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
28550         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
28551         Giving in to popular pressure to shut up the compiler with casts.
28552
28553 2000-10-26  Jim Meyering  <meyering@lucent.com>
28554
28555         * lib/strftime.c: Update from libc.
28556
28557 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
28558
28559         * regex.c: More `unsigned char' -> `re_char' changes.
28560         Also change several `int' into `re_wchar_t'.
28561         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
28562         (PUSH_FAILURE_POINTER): Don't cast any more.
28563         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
28564         We want GCC to complain, since this piece of code makes
28565         re_match non-reentrant, which *should* be fixed.
28566         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
28567         (EXTEND_BUFFER): Use RETALLOC.
28568         (SET_LIST_BIT): Don't cast.
28569         (re_wchar_t): New type.
28570         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
28571         that those two functions will always properly return.
28572         (IMMEDIATE_QUIT_CHECK): Cast to void.
28573         (analyse_first): Use recursion rather than an explicit stack.
28574         (re_compile_fastmap): Can't fail anymore.
28575         (re_search_2): Don't check re_compile_fastmap for failure.
28576         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
28577         Now also sets the new value (passed in a new argument).
28578         (re_match_2_internal): Use it.
28579         Also, use a new var `reg' of type size_t when looping through regs
28580         rather than reuse the inappropriate `mcnt'.
28581
28582 2000-10-25  Jim Meyering  <meyering@lucent.com>
28583
28584         * lib/obstack.c: Update from libc.
28585
28586 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
28587
28588         * regex.c (regex_compile): Change the way of handling a range from
28589         a char less than 256 to a char not less than 256.
28590
28591 2000-10-24  Andrew Innes  <andrewi@gnu.org>
28592
28593         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
28594         NT-Emacs only.
28595         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
28596         so that re_search functions only quit when callers expect them to.
28597
28598 2000-10-23  Jim Meyering  <meyering@lucent.com>
28599
28600         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
28601         wrong.  That set_locale call must not have any side effects.
28602         From Paul Eggert.
28603
28604 2000-10-22  Jim Meyering  <meyering@lucent.com>
28605
28606         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
28607         [CYCLIC]: Remove now-unused definition.
28608
28609         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
28610         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
28611         Suggestion from Ulrich Drepper.
28612
28613 2000-10-21  Jim Meyering  <meyering@lucent.com>
28614
28615         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
28616         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
28617         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
28618
28619 2000-10-21  Jim Meyering  <meyering@lucent.com>
28620
28621         * lib/dirname.c (memrchr): Declare if necessary.
28622         (dir_name): Remove the restriction that there be no
28623         trailing slashes.  Now, this code skips past them, effectively
28624         ignoring them.
28625         [TEST_DIRNAME] (main): New unit tests.
28626
28627         * lib/memrchr.c: New file from GNU libc.
28628         Undef __memrchr, too.
28629         [!weak_alias]: Define __memrchr to memrchr.
28630         Guard weak_alias use with `#ifdef weak_alias'.
28631
28632 2000-10-21  Jim Meyering  <meyering@lucent.com>
28633
28634         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
28635         (dir_name): Use dir_name_r.
28636         * lib/dirname.h (dir_name_r): Declare it.
28637
28638 2000-10-17  Jim Meyering  <meyering@lucent.com>
28639
28640         * lib/quote.h (PARAMS): Define and use.
28641         Reported by Akim Demaille.
28642
28643         * lib/getopt.c: Update from libc.
28644
28645 2000-10-16  Jim Meyering  <meyering@lucent.com>
28646
28647         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
28648         setlocale.
28649         From Jan Fedak.
28650
28651 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
28652
28653         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
28654
28655 2000-09-25  Jim Meyering  <meyering@lucent.com>
28656
28657         * lib/md5.h (rol): Define (from GnuPG).
28658
28659         * lib/sha.c: Give credit (GnuPG) where due.
28660         (M): Use rol rather than open-coding it.
28661         Add a FIXME comment.
28662
28663 2000-09-21  Jim Meyering  <meyering@lucent.com>
28664
28665         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
28666         Reported by Michael Stone.
28667
28668 2000-09-20  Jim Meyering  <meyering@lucent.com>
28669
28670         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
28671         (noinst_HEADERS): Add sha.h.
28672         Based on code from Scott G. Miller and from GnuPG.
28673
28674 2000-09-18  Jim Meyering  <meyering@lucent.com>
28675
28676         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
28677         LIBS. Otherwise, everyone ends up linking with -lelf for some
28678         configurations.
28679         Reported by Mike Stone.
28680
28681 2000-09-15  Jim Meyering  <meyering@lucent.com>
28682
28683         * lib/regex.c: Update from libc.
28684
28685 2000-09-10  Jim Meyering  <meyering@lucent.com>
28686
28687         * lib/getopt.c (_getopt_internal): Update from glibc.
28688
28689 2000-09-09  Jim Meyering  <meyering@lucent.com>
28690
28691         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
28692         think it should be used as a general replacement for isascii.
28693         * lib/fnmatch.c: Likewise.
28694         * lib/mbswidth.c: Likewise
28695         * lib/regex.c: Likewise.
28696
28697         Don't use atoi.
28698         * lib/userspec.c: Include sys/param.h and limits.h.
28699         Include xstrtol.h.
28700         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
28701         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
28702         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
28703         UID, GID.  Check range.
28704
28705 2000-09-06  Jim Meyering  <meyering@lucent.com>
28706
28707         * lib/getopt.c (_getopt_internal): Update from glibc.
28708
28709 2000-08-30  Jim Meyering  <meyering@lucent.com>
28710
28711         * lib/strftime.c: Merge in changes from GNU libc.
28712
28713 2000-08-26  Jim Meyering  <meyering@lucent.com>
28714
28715         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
28716         * m4/fpending.m4: New file.
28717
28718 2000-08-26  Jim Meyering  <meyering@lucent.com>
28719
28720         * lib/closeout.c: Include "__fpending.h".
28721         (close_stdout_status): Return right away if there's nothing to flush.
28722
28723         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
28724         * lib/__fpending.c: New file.
28725         * lib/__fpending.h: New file.
28726
28727 2000-08-20  Jim Meyering  <meyering@lucent.com>
28728
28729         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
28730         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
28731         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
28732
28733 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
28734
28735         Improve fileutils installation on systems where running
28736         programs (like install) can't be unlinked.
28737         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
28738         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
28739
28740 2000-08-07  Paul Eggert  <eggert@twinsun.com>
28741
28742         Standardize on "memory exhausted" instead of "Memory exhausted"
28743         or "virtual memory exhausted".
28744         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
28745         "virtual memory exhausted".
28746         * lib/same.c (same_name): Invoke xalloc_die instead of printing
28747         our own message.
28748         * lib/userspec.c (parse_user_spec): Likewise.
28749         * lib/bumpalloc.h: comment fix
28750         * lib/same.c, userspec.c: Include xalloc.h.
28751
28752         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
28753         not char *const and pointing to a constant array.
28754         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
28755         (xrealloc): Comment fix.
28756
28757         * lib/userspec.c (parse_user_spec):
28758         Don't translate a message until just before returning,
28759         to avoid unnecessary translation.
28760
28761 2000-08-07  Jim Meyering  <meyering@lucent.com>
28762
28763         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
28764         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
28765         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
28766         getgroups.c, gethostname.c, getopt.h, group-member.c,
28767         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
28768         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
28769         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
28770         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
28771         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
28772         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
28773         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
28774         yesno.c: Back out Copyright date changes for each file with no change
28775         this year.  This eases coordination with other programs using the same
28776         source code modules.  From Paul Eggert.
28777
28778 2000-08-06  Paul Eggert  <eggert@twinsun.com>
28779
28780         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
28781         not char, for compatibility with glibc 2.1.3 strftime.c.
28782
28783 2000-08-03  Greg McGary  <greg@mcgary.org>
28784
28785         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
28786         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
28787         (EXTEND_BUFFER): Use them.
28788
28789 2000-08-01  Jim Meyering  <meyering@lucent.com>
28790
28791         * lib/dirname.c (ISSLASH): Define.
28792         (BACKSLASH_IS_PATH_SEPARATOR): Define.
28793         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
28794         both `\' and `/' may be use as path separators.
28795         Based on a patch from Prashant TR.
28796
28797 2000-07-31  Paul Eggert  <eggert@twinsun.com>
28798
28799         * lib/quotearg.c (quotearg_n_options): Don't make the initial
28800         slot vector a constant, since it might get modified.
28801
28802 2000-07-31  Jim Meyering  <meyering@lucent.com>
28803
28804         * lib/xmalloc.c: Use `virtual memory exhausted', not
28805         `Memory exhausted'.
28806         * lib/obstack.c (print_and_abort): Likewise.
28807
28808 2000-07-30  Paul Eggert  <eggert@twinsun.com>
28809
28810         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
28811         buffer, so that the caller can always quote one small
28812         component of a "memory exhausted" message in slot 0.
28813         From a suggestion by Jim Meyering.
28814
28815 2000-07-30  Jim Meyering  <meyering@lucent.com>
28816
28817         * lib/makepath.c (make_path): Quote the other instance, too.
28818
28819         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
28820         (STATIC_BUF_SIZE): Define.
28821         (quotearg_n_options): Use only statically allocated storage when
28822         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
28823         than STATIC_BUF_SIZE.
28824
28825 2000-07-29  Jim Meyering  <meyering@lucent.com>
28826
28827         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
28828         * lib/dirname.c (dir_name): Likewise.
28829
28830         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
28831         `/'.
28832
28833         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
28834         (dir_name): Assert that there are no trailing slashes.
28835
28836 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
28837
28838         * lib/mbswidth.h (mbswidth): Add a flags argument.
28839         (mbswidth): New declaration.
28840         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
28841         * lib/mbswidth.c (mbswidth): Add a flags argument.
28842         (mbsnwidth): New function.
28843
28844 2000-07-24  Jim Meyering  <meyering@lucent.com>
28845
28846         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
28847
28848 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28849
28850         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
28851
28852 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28853
28854         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
28855         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
28856         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
28857         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
28858         invoke multibyte primitives.
28859
28860 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28861
28862         * lib/quotearg.c:
28863         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
28864         so that mbstate_t is always defined.
28865
28866         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
28867         be 1 in at least one GCC installation, and this configuration
28868         error is likely to be common.  Ignoring MB_LEN_MAX hurts
28869         performance on hosts that have mbrtowc but have only unibyte
28870         locales, but I assume these hosts are rare.
28871
28872 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28873
28874         * lib/mbswidth.c (_XOPEN_SOURCE):
28875         Don't define; this causes problems on Solaris 7.
28876         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
28877
28878 2000-07-23  Jim Meyering  <meyering@lucent.com>
28879
28880         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
28881         too: getgrgid, getpwuid, getuid.
28882
28883 2000-07-23  Jim Meyering  <meyering@lucent.com>
28884
28885         * lib/basename.c (base_name): Add an assertion.
28886
28887 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
28888
28889         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
28890         shadow its mbsinit function.
28891
28892 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
28893
28894         * lib/mbswidth.h: New file.
28895         * lib/mbswidth.c: New file.
28896         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
28897         (noinst_HEADERS): Add mbswidth.h.
28898
28899 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
28900
28901         * lib/config.charset: Add support for FreeBSD. Improve support for
28902         HP-UX and IRIX 6.
28903
28904 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
28905
28906         * m4/mbswidth.m4: New file.
28907         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
28908
28909 2000-07-15  Jim Meyering  <meyering@lucent.com>
28910
28911         * lib/makepath.c: Include quote.h.
28912         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
28913         corresponding argument in a `quote (...)' call.
28914         Give better diagnostics.
28915
28916         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
28917         (noinst_HEADERS): Add quote.h.
28918
28919         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
28920         from tar's src/misc.c.
28921         * lib/quote.h: New file.  Prototypes for same.
28922
28923 2000-07-14  Paul Eggert  <eggert@twinsun.com>
28924
28925         From a suggestion by Bruno Haible.
28926         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
28927         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
28928         to decide whether to define the BeOS workaround macro;
28929         this adjusts to the change to AC_MBSTATE_T.
28930
28931 2000-07-14  Jim Meyering  <meyering@lucent.com>
28932
28933         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
28934         jm_AC_TYPE_UINTMAX_T.
28935
28936 2000-07-13  Paul Eggert  <eggert@twinsun.com>
28937
28938         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
28939
28940         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
28941         quotearg_buffer_restyled): Add support for
28942         clocale_quoting_style.  Undo previous change to
28943         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
28944         and "{RIGHT QUOTATION MARK}" msgids.
28945
28946 2000-07-10  Paul Eggert  <eggert@twinsun.com>
28947
28948         From a suggestion by Bruno Haible.
28949         * m4/mbstate_t.m4 (AC_MBSTATE_T):
28950         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
28951         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
28952         and mbstate_t, to a single-part test that simply defines mbstate_t.
28953         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
28954         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
28955
28956 2000-07-10  Jim Meyering  <meyering@lucent.com>
28957
28958         * m4/strerror_r.m4: Mirror the correction made in autoconf.
28959
28960         * m4/gnu-source.m4: Output to confdefs.h directly.
28961         Suggestion from Akim Demaille.
28962
28963 2000-07-09  Paul Eggert  <eggert@twinsun.com>
28964
28965         The old behavior of quoting `like this' doesn't look good with
28966         newer, ISO-style fonts.  See:
28967         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
28968
28969         Instead, quote "like this" by default.  Let the translator
28970         tailor the locale-specific quoting behavior by providing
28971         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
28972
28973         * lib/quotearg.c (N_): New macro.
28974         (gettext_default): New function.
28975         (quotearg_buffer_restyled): Use
28976         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
28977         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
28978
28979 2000-07-09  Jim Meyering  <meyering@lucent.com>
28980
28981         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
28982         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
28983
28984         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
28985         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
28986
28987 2000-07-09  Jim Meyering  <meyering@lucent.com>
28988
28989         * lib/Most files: Update copyright dates to include 2000.
28990
28991 2000-07-08  Jim Meyering  <meyering@lucent.com>
28992
28993         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
28994         if not defined.
28995         (xgethostname): Remove now-unnecessary #ifdef.
28996         Move declaration of `err' into loop where it's used.
28997
28998 2000-07-05  Paul Eggert  <eggert@twinsun.com>
28999         and Bruno Haible  <haible@clisp.cons.org>
29000
29001         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
29002         only if the test for an object-type mbstate_t fails.  This
29003         prevents us from mistakenly reporting that mbstate_t is a
29004         system object type after we "#define mbstate_t int" to work
29005         around its lack.
29006
29007 2000-07-05  Paul Eggert  <eggert@twinsun.com>
29008         and Bruno Haible  <haible@clisp.cons.org>
29009
29010         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
29011
29012 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29013
29014         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
29015         to strerror_r.
29016         Include <ctype.h> for use of isalpha.
29017
29018 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29019
29020         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
29021         by allocating a larger buffer. Test the gethostname return value for
29022         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
29023         returns an error and ENAMETOOLONG isn't defined.
29024
29025 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29026
29027         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
29028         dimension.
29029
29030 2000-07-04  Jim Meyering  <meyering@lucent.com>
29031
29032         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
29033         of the deprecated AC_CHECKING.
29034
29035 2000-07-04  Jim Meyering  <meyering@lucent.com>
29036
29037         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
29038         Reported by Bruno Haible.
29039
29040 2000-07-04  Jim Meyering  <meyering@lucent.com>
29041
29042         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
29043         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
29044         lacks mbrtowc.
29045
29046 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29047
29048         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
29049         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
29050
29051 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29052         and Bruno Haible  <haible@clisp.cons.org>
29053
29054         * lib/quotearg.c (mbrtowc):
29055         Assign to *pwc, and return 1 only if result is nonzero.
29056         (iswprint): Use ISPRINT when substituting our own mbrtowc.
29057
29058 2000-07-03  Jim Meyering  <meyering@lucent.com>
29059
29060         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
29061
29062 2000-07-03  Jim Meyering  <meyering@lucent.com>
29063
29064         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
29065         This is necessary to get a definition of e.g., UTMP_FILE on
29066         HP-UX 10.20.
29067         From Bob Proulx.
29068
29069 2000-07-02  Jim Meyering  <meyering@lucent.com>
29070
29071         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
29072
29073         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
29074         AC_LIBOBJ(function_name).
29075         * m4/chown.m4: Likewise.
29076         * m4/fnmatch.m4: Likewise.
29077         * m4/ftruncate.m4: Likewise.
29078         * m4/getgroups.m4: Likewise.
29079         * m4/getline.m4: Likewise.
29080         * m4/group-member.m4: Likewise.
29081         * m4/jm-macros.m4: Likewise.
29082         * m4/lstat.m4: Likewise.
29083         * m4/malloc.m4: Likewise.
29084         * m4/memcmp.m4: Likewise.
29085         * m4/nanosleep.m4: Likewise.
29086         * m4/putenv.m4: Likewise.
29087         * m4/realloc.m4: Likewise.
29088         * m4/regex.m4: Likewise.
29089         * m4/stat.m4: Likewise.
29090         * m4/strftime.m4: Likewise.
29091
29092 2000-07-02  Jim Meyering  <meyering@lucent.com>
29093
29094         * lib/quotearg.c (mbstate_t): Don't define here.
29095
29096 2000-07-02  Jim Meyering  <meyering@lucent.com>
29097
29098         * lib/nanosleep.c (SIGCONT): Define if not already defined.
29099
29100 2000-07-01  Jim Meyering  <meyering@lucent.com>
29101
29102         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
29103
29104 2000-07-01  Jim Meyering  <meyering@lucent.com>
29105
29106         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
29107         problem.
29108
29109 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29110
29111         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
29112         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
29113
29114 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29115
29116         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
29117         per change in ../m4/ls-mntd-fs.m4.
29118         (read_filesystem_list): Ignore symbolic links.
29119
29120 2000-06-29  Jim Meyering  <meyering@lucent.com>
29121
29122         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
29123         for declaration of strcmp.
29124
29125         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
29126
29127         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
29128         Avoid warning by casting result to `char *' to remove `const'.
29129
29130 2000-06-28  Jim Meyering  <meyering@lucent.com>
29131
29132         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
29133         included by quotearg.c, for which we perform this test.  From
29134         Bruno Haible.
29135
29136 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29137
29138         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
29139         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
29140         <utmpx.h> exists, put readutmp.o into LIBOBJS.
29141
29142 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29143
29144         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
29145
29146 2000-06-26  Paul Eggert  <eggert@twinsun.com>
29147
29148         savedir now sets errno on failure and invokes xmalloc to get memory.
29149         Fix a couple of other minor bugs while we're at it.
29150
29151         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
29152         (NAMLEN): Remove macro.
29153         (malloc, realloc): Remove decls.
29154         (stpcpy): Likewise.
29155         ("xalloc.h"): Include.
29156         (NAME_SIZE_DEFAULT): New macro.
29157         (savedir): Use xmalloc / xrealloc to allocate memory.
29158         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
29159         Skip "" directory entries.
29160         Use strlen to calculate directory entry length, since the old method
29161         is rarely used these days and isn't worth supporting.
29162         Don't use a pointer after freeing it.
29163         Check for integer overflow when calculating allocation size.
29164         Use memcpy to copy entries, instead of stpcpy.
29165         Set errno properly when returning NULL.
29166         Check for readdir error.
29167
29168 2000-06-26  Jim Meyering  <meyering@lucent.com>
29169
29170         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
29171
29172 2000-06-25  Jim Meyering  <meyering@lucent.com>
29173
29174         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
29175         Linux header bug when _XOPEN_SOURCE is defined to 500.
29176
29177 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29178
29179         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
29180         deficiency.
29181
29182 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29183
29184         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
29185         Include xalloc.h.
29186         Don't include <stdlib.h>.  Don't declare malloc, realloc.
29187
29188 2000-06-24  Jim Meyering  <meyering@lucent.com>
29189
29190         * m4/strerror_r.m4: Revive this file -- to try out an experimental
29191         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
29192         for which strerror does return char*, but which lacks a conveniently
29193         accessible declaration of the function.  If the compile-test says
29194         strerror_r doesn't work, then resort to a `run'-test that works on
29195         BeOS and segfaults on DEC Unix.
29196
29197 2000-06-24  Jim Meyering  <meyering@lucent.com>
29198
29199         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
29200
29201 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29202
29203         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
29204         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
29205
29206 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29207
29208         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
29209         (mbrtowc, mbstate_t): Define substitutes if
29210         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
29211         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
29212         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
29213
29214 2000-06-23  Jim Meyering  <meyering@lucent.com>
29215
29216         * m4/afs.m4: Add missing AC_MSG_RESULT.
29217         Reported by Bruno Haible.
29218
29219         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
29220         Suggestion from Bruno Haible.
29221
29222 2000-06-23  Jim Meyering  <meyering@lucent.com>
29223
29224         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
29225
29226 2000-06-21  Jim Meyering  <meyering@lucent.com>
29227
29228         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
29229
29230 2000-06-21  Jim Meyering  <meyering@lucent.com>
29231
29232         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
29233         (noinst_HEADERS): Add getstr.h.
29234
29235         * lib/getline.c (getstr): Move into a separate file.
29236         * lib/getstr.c (getstr): New file, extracted from getline.c, with
29237         the following changes: new parameter, delim2; both delim[12]
29238         parameters have type `int', not `char'.  The latter would lose
29239         with 8-bit delimiters.
29240         * lib/getstr.h: New file.
29241
29242 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29243
29244         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
29245         than 1024, return a memory chunk of least possible size, instead
29246         of size PATH_MAX + 2. In the loop, increment the size proportionally.
29247         Use free/xmalloc instead of xrealloc to avoid copying for very long
29248         paths.
29249
29250 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29251
29252         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
29253         the empty string.
29254
29255 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29256
29257         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
29258         address, not strdup.  Include <stdlib.h> and don't declare free().
29259
29260 2000-06-19  Jim Meyering  <meyering@lucent.com>
29261
29262         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
29263
29264 2000-06-18  Jim Meyering  <meyering@lucent.com>
29265
29266         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
29267
29268         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
29269         `checking whether...' message to be consistent with that of the
29270         lstat test.
29271
29272 2000-06-18  Jim Meyering  <meyering@lucent.com>
29273
29274         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
29275         Besides, these days every porting target provides a mkdir function.
29276
29277         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
29278         needed. (this snippet comes from src/system.h).
29279
29280 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
29281
29282         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
29283
29284 2000-06-15  Paul Eggert  <eggert@twinsun.com>
29285
29286         * lib/human.c (adjust_value): New function.
29287         (human_readable_inexact): Apply rounding style even when
29288         printing approximate values.
29289
29290 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29291
29292         * lib/human.c (human_readable_inexact): Allow an input block
29293         size that is not a multiple of the output block size, and vice versa.
29294         Reported by Piergiorgio Sartor.
29295
29296 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29297
29298         * lib/getdate.y (get_date): Apply relative times after time
29299         zone indicator, not before.  Reported by Todd A. Jacobs.
29300
29301 2000-06-13  Jim Meyering  <meyering@lucent.com>
29302
29303         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
29304
29305         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
29306
29307 2000-06-12  Paul Eggert  <eggert@twinsun.com>
29308
29309         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
29310
29311 2000-06-12  Jim Meyering  <meyering@lucent.com>
29312
29313         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
29314         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
29315         optional argument.
29316         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
29317         the optional argument, `lib'.
29318
29319 2000-06-08  Jim Meyering  <meyering@lucent.com>
29320
29321         * m4/largefile.m4: Remove file (now that it's part of autoconf).
29322
29323 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29324
29325         Rewrite largefile configuration so that we don't need to run
29326         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
29327         AC_CANONICAL_HOST in configure.in -- jmm]
29328
29329         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
29330         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
29331         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
29332         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
29333         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
29334         All uses changed.
29335         Instead of inspecting the output of getconf, try to compile the
29336         test program without and with the macro definition.
29337         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
29338         for getconf.  Instead, check for the needed flags by compiling
29339         test programs.
29340
29341 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29342
29343         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
29344
29345 2000-06-04  Jim Meyering  <meyering@lucent.com>
29346
29347         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
29348         SunOS 4.1.4 for which gid_t is an unsigned type.
29349
29350 2000-06-03  Jim Meyering  <meyering@lucent.com>
29351
29352         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
29353         now that autoconf requires that.
29354
29355         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
29356         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
29357         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
29358
29359 2000-06-03  Jim Meyering  <meyering@lucent.com>
29360
29361         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
29362
29363 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29364
29365         * m4/glibc21.m4: New file.
29366         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
29367
29368 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29369
29370         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
29371         newer, don't install charset.alias.
29372         * lib/config.charset: Change the Linux/glibc rules so they become empty
29373         on glibc-2.1 or newer.
29374
29375 2000-06-02  Jim Meyering  <meyering@lucent.com>
29376
29377         * lib/mountlist.c: Back out last change.  Instead, do this...
29378         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
29379         me_dummy member using the same `ignore'-testing code.
29380         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
29381         fs_type strings.
29382         From Mark D. Roth.
29383
29384 2000-05-29  Jim Meyering  <meyering@lucent.com>
29385
29386         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
29387         mounts with the `ignore' attribute.  Based on a patch from
29388         Mark D. Roth.
29389
29390 2000-05-28  Jim Meyering  <meyering@lucent.com>
29391
29392         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
29393         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29394         * m4/stat.m4: Likewise.
29395         * m4/lstat.m4: Likewise.
29396         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
29397
29398         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
29399         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
29400
29401 2000-05-26  Jim Meyering  <meyering@lucent.com>
29402
29403         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
29404
29405 2000-05-24  Jim Meyering  <meyering@lucent.com>
29406
29407         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
29408         autoconf requires that.
29409         * m4/lib-check.m4: Likewise.
29410         * m4/jm-macros.m4: Likewise.
29411         * m4/strftime.m4: Likewise.
29412
29413         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
29414         AC_CHECK_DECLS, now that autoconf requires that.
29415
29416 2000-05-22  Jim Meyering  <meyering@lucent.com>
29417
29418         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29419         * m4/lstat.m4: Likewise.
29420
29421 2000-05-22  Jim Meyering  <meyering@lucent.com>
29422
29423         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
29424
29425 2000-05-20  Jim Meyering  <meyering@lucent.com>
29426
29427         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
29428         (jm_PREREQ): Use it.
29429
29430 2000-05-18  Jim Meyering  <meyering@lucent.com>
29431
29432         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
29433         back, too, since it may have been modified by allocate_entry.
29434         (hash_delete): Rewrite to use neither the assignment operator
29435         nor the comma operator in an if-expression.
29436
29437 2000-05-15  Paul Eggert  <eggert@twinsun.com>
29438
29439         * lib/closeout.c:
29440         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
29441         Remove; no longer needed.
29442         "quotearg.h": Add include.
29443         (file_name): Do not bother to explicitly initialize to NULL; it's less
29444         efficient on some hosts.
29445         (close_stdout_status): Remove test as to whether stdout was already
29446         closed; it breaks for the case "echo x | sort >&-".
29447         Quote file name colons.
29448         Do not assume that _("write error") lacks format strings.
29449
29450 2000-05-15  Jim Meyering  <meyering@lucent.com>
29451
29452         * lib/version-etc.c (version_etc_copyright): Update the copyright
29453         string used in all --version output.
29454
29455 2000-05-14  Jim Meyering  <meyering@lucent.com>
29456
29457         * lib/closeout.c (close_stdout_set_file_name): New function.
29458         (close_stdout_status): Use new file-scoped global.
29459         Return right away if fstat says the stdout file descriptor is invalid.
29460         * lib/closeout.h (close_stdout_set_file_name): Declare.
29461
29462 2000-05-10  Jim Meyering  <meyering@lucent.com>
29463
29464         * lib/closeout.c [default_exit_status]: New file-scoped variable.
29465         (close_stdout_set_status): New function.
29466         * lib/closeout.h (close_stdout_set_status): Declare.
29467
29468 2000-05-09  Jim Meyering  <meyering@lucent.com>
29469
29470         * m4/gettext.m4: Rename this...
29471         * m4/libintl.m4: ...to this.
29472
29473 2000-05-08  Jim Meyering  <meyering@lucent.com>
29474
29475         * lib/long-options.c: Don't include closeout.h.
29476         (parse_long_options): Don't call close_stdout for --version.
29477
29478 2000-05-06  Paul Eggert  <eggert@twinsun.com>
29479
29480         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
29481         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
29482         2.1.3 bug.  This avoids a clash when files like regex.c define
29483         _GNU_SOURCE.
29484
29485 2000-05-06  Jim Meyering  <meyering@lucent.com>
29486
29487         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
29488         (AC_REPLACE_FUNCS): Add strnlen.
29489
29490         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
29491         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
29492
29493         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
29494         AC_SEARCH_LIBS call for nanosleep.
29495         (LIB_NANOSLEEP): Set and AC_SUBST.
29496
29497 2000-05-06  Jim Meyering  <meyering@lucent.com>
29498
29499         * lib/strnlen.c: Undefine __strnlen and strnlen.
29500         [!weak_alias]: Define __strnlen to strnlen.
29501
29502         * lib/atexit.c: New file, from libiberty.
29503
29504 2000-05-06  Jim Meyering  <meyering@lucent.com>
29505
29506         * lib/closeout.c (close_stdout_status): Also check for errors on the
29507         stderr stream.
29508
29509 2000-05-05  Jim Meyering  <meyering@lucent.com>
29510
29511         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
29512         AC_SEARCH_LIBS call for clock_gettime.
29513         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
29514
29515         * m4/search-libs.m4: Update from autoconf.
29516
29517         su doesn't work on Solaris 2.6.
29518         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
29519         <shadow.h>.  Reported by Dragos Harabor.
29520
29521 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
29522
29523         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
29524         memcpy instead of xmalloc, xrealloc, path_concat.
29525         (locale_charset): Treat empty environment variables as absent.
29526         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
29527
29528 2000-05-04  Jim Meyering  <meyering@lucent.com>
29529
29530         * lib/getopt.c: Update from glibc.
29531         * lib/obstack.c: Likewise.
29532         * lib/obstack.h: Likewise.
29533         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
29534         file
29535
29536         * lib/regex.h: Likewise.
29537         * lib/strndup.c: Likewise.
29538         * lib/strnlen.c: New file, from glibc.
29539
29540 2000-05-03  Jim Meyering  <meyering@lucent.com>
29541
29542         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
29543
29544 2000-05-02  Paul Eggert  <eggert@twinsun.com>
29545
29546         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
29547         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
29548         compile-time test, rather than inspecting host and OS, to
29549         decide whether to define _LARGEFILE_SOURCE.
29550
29551 2000-05-01  Jim Meyering  <meyering@lucent.com>
29552
29553         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
29554
29555         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
29556         Based on a patch from Bruno Haible.
29557
29558 2000-05-01  Jim Meyering  <meyering@lucent.com>
29559
29560         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
29561
29562 2000-04-29  Jim Meyering  <meyering@lucent.com>
29563
29564         * lib/path-concat.c: Declare strdup only if it's not defined.
29565         * lib/canon-host.c: Likewise.
29566
29567 2000-04-28  Jim Meyering  <meyering@lucent.com>
29568
29569         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
29570         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
29571         is included first, then limits.h is included by locale.h by libintl.h.
29572         From John David Anglin.
29573
29574 2000-04-25  Jim Meyering  <meyering@lucent.com>
29575
29576         * lib/makepath.c (S_IRWXUGO): Define.
29577         (make_path): Always perform explicit chmod if MODE specifies any
29578         of the `special' permission bits.  Prompted by a bug report against
29579         install from Mate Wierdl and Joost van Baal.
29580
29581 2000-04-18  Jim Meyering  <meyering@lucent.com>
29582
29583         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
29584         (jm_PREREQ): Use it.
29585
29586 2000-04-18  Jim Meyering  <meyering@lucent.com>
29587
29588         * lib/README: New file.
29589
29590         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
29591         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
29592
29593 2000-04-17  Jim Meyering  <meyering@lucent.com>
29594
29595         Get it right :-)
29596         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
29597         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
29598         Suggestion from Akim Demaille.
29599
29600 2000-04-17  Jim Meyering  <meyering@lucent.com>
29601
29602         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
29603         the definition of it to rpl_strftime also defined-away the system's
29604         declaration.
29605
29606 2000-04-15  Jim Meyering  <meyering@lucent.com>
29607
29608         Use `C' to denote so-called `contiguous' files, the same way
29609         that tar does.
29610         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
29611         (ftypelet): Use S_ISCTG.
29612         From Michael Deutschmann.
29613
29614 2000-04-14  Jim Meyering  <meyering@lucent.com>
29615
29616         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
29617         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
29618         clobbered.
29619
29620 2000-04-14  Jim Meyering  <meyering@lucent.com>
29621
29622         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
29623
29624 2000-04-13  Jim Meyering  <meyering@lucent.com>
29625
29626         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
29627         AH_VERBATIM to insert required #ifndef into config.h.in.
29628         Suggestion from Akim Demaille.
29629
29630 2000-04-12  Jim Meyering  <meyering@lucent.com>
29631
29632         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
29633         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
29634         Christian Krackowizer.
29635
29636         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
29637         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
29638         (AC_SYS_LARGEFILE): Require.
29639         (AM_C_PROTOTYPES): Require.
29640
29641 2000-04-08  Jim Meyering  <meyering@lucent.com>
29642
29643         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
29644         names don't conflict.  Reported by Eli Zaretskii.
29645
29646 2000-04-07  Jim Meyering  <meyering@lucent.com>
29647
29648         * lib/putenv.c: Move inclusion of errno.h so it follows that of
29649         sys/types.h, to work around system header problems on AIX 3.2.5.
29650         From Bruno Haible.
29651
29652 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
29653
29654         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
29655         bug.  Deal with the different error behavior of Irix iconv.
29656
29657 2000-04-05  Paul Eggert  <eggert@twinsun.com>
29658
29659         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
29660         IRIX if the installer said otherwise.
29661
29662 2000-04-05  Jim Meyering  <meyering@lucent.com>
29663
29664         Portability tweaks required for ultrix4.3.
29665         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
29666         (jm_CHECK_DECLS): Add getutent to the list of functions.
29667         (_jm_DECL_HEADERS): Add utmpx.h.
29668         From John David Anglin.
29669
29670         * m4/strftime.m4: Back out the 2000-04-02 change.
29671         Instead of that change, simply undefine putenv in the test program.
29672
29673 2000-04-05  Jim Meyering  <meyering@lucent.com>
29674
29675         Portability tweaks required for ultrix4.3.
29676         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
29677         getutent.
29678         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
29679         * lib/canon-host.c: Declare strdup.
29680         * lib/path-concat.c: Likewise.
29681         From John David Anglin.
29682
29683 2000-04-04  Jim Meyering  <meyering@lucent.com>
29684
29685         Be more DOS 8.3-friendly.
29686         * lib/ref-add.sin: Renamed from ref-add.sed.in.
29687         * lib/ref-del.sin: Renamed from ref-del.sed.in.
29688         * lib/Makefile.am: Reflect renaming.
29689         Reported by Eli Zaretskii.
29690
29691         Use a temporary file name that won't clash with `charset.alias'
29692         in the DOS 8.3 name space.
29693         * lib/Makefile.am (charset_tmp): Define.
29694         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
29695         (uninstall-local): Likewise.
29696         Reported by Eli Zaretskii.
29697
29698 2000-04-03  Jim Meyering  <meyering@lucent.com>
29699
29700         * m4/gettext.m4: Fix typo in comment.
29701
29702         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
29703         textutils/configure.in).  Suggestion from Paul Eggert.
29704         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
29705
29706 2000-04-02  Paul Eggert  <eggert@twinsun.com>
29707
29708         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
29709         variable in the shell rather than using putenv, which isn't
29710         portable.  This avoids the configure-time inter-test dependency
29711         on the potentially-renamed putenv function.
29712
29713 2000-03-30  Paul Eggert  <eggert@twinsun.com>
29714
29715         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
29716         before checking struct stat.st_blksize, so that
29717         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
29718
29719 2000-03-29  Paul Eggert  <eggert@twinsun.com>
29720
29721         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
29722         since strftime.c uses HAVE_STRFTIME to decide whether to use
29723         the underlying strftime.
29724
29725 2000-03-29  Paul Eggert  <eggert@twinsun.com>
29726
29727         * lib/time/strftime.c (my_strftime): Make sure we call the system
29728         strftime, not ourselves, when invoking the underlying strftime.
29729
29730 2000-03-24  Jim Meyering  <meyering@lucent.com>
29731
29732         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
29733         (charset_alias): Define.
29734         (install-exec-local): Factor out common code.
29735         (uninstall-local): Split lines longer than 80.
29736         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
29737         (SUFFIXES): Define.
29738         (.sed.in.sed): New rule.  Don't redirect directly to $@.
29739         (CLEANFILES): Add ref-add.sed and ref-del.sed.
29740
29741 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
29742
29743         * lib/config.charset: Output a line containing "Packages using this
29744         file".
29745         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
29746         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
29747         ref-del.sed): New rules.
29748
29749 2000-03-17  Jim Meyering  <meyering@lucent.com>
29750
29751         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
29752         Otherwise, include <strings.h>
29753
29754 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
29755
29756         * lib/unicodeio.c (utf8_wctomb): New function.
29757         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
29758         format instead of in UCS-4 with platform dependent endianness.
29759
29760 2000-03-10  Jim Meyering  <meyering@lucent.com>
29761
29762         * m4/lib-check.m4: Look for getspnam in -lgen, too.
29763         From Marco Franzen.
29764
29765 2000-03-07  Paul Eggert  <eggert@twinsun.com>
29766
29767         * lib/savedir.c (savedir): Work even if directory size is
29768         negative; this can happen with some screwy NFS configurations.
29769
29770 2000-03-06  Jim Meyering  <meyering@lucent.com>
29771
29772         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
29773         if it's NULL (because we ran out of memory).  From Bruno Haible.
29774
29775 2000-03-05  Jim Meyering  <meyering@lucent.com>
29776
29777         * lib/localcharset.c ("path-concat.h"): Include.
29778         (get_charset_aliases): Use path_concat instead of ANSI string
29779         concatenation.
29780
29781         * lib/unicodeio.h (PARAMS): Define.
29782         Use it to guard prototype.
29783
29784 2000-03-04  Jim Meyering  <meyering@lucent.com>
29785
29786         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
29787         for lib/localcharset.c.
29788
29789 2000-03-04  Jim Meyering  <meyering@lucent.com>
29790
29791         * lib/Makefile.am (install-exec-local): Create $(libdir) before
29792         installing into it.
29793         (uninstall-local): Uncomment this rule so `make distcheck' works
29794         once again.
29795
29796         * lib/unicodeio.c (<errno.h>): Include it.
29797         (errno): Declare if not defined.
29798
29799         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
29800
29801         * lib/config.charset: New version, incorporating remarks from a linux
29802         i18n mailing list.  From Bruno Haible.
29803
29804 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
29805
29806         * m4/codeset.m4: New file.
29807         * m4/iconv.m4: New file.
29808         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
29809
29810 2000-03-03  Jim Meyering  <meyering@lucent.com>
29811
29812         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
29813
29814 2000-03-02  Jim Meyering  <meyering@lucent.com>
29815
29816         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
29817         the messages come out on separate lines.
29818
29819         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
29820         rather than jm_CHECK_DECLARATIONS.
29821         * m4/decl.m4: Remove now-unused file.
29822
29823         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
29824         geteuid.
29825
29826 2000-03-02  Jim Meyering  <meyering@lucent.com>
29827
29828         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
29829
29830 2000-03-01  Jim Meyering  <meyering@lucent.com>
29831
29832         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
29833         * lib/unicodeio.c: Likewise.
29834
29835 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
29836
29837         * lib/config.charset: New file.
29838         * lib/localcharset.c: New file.
29839         * lib/unicodeio.h, lib/unicodeio.c: New files.
29840         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
29841         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
29842         (noinst_HEADERS): Add unicodeio.h.
29843         (all-local, install-exec-local, charset.alias): New targets.
29844
29845 2000-02-28  Paul Eggert  <eggert@twinsun.com>
29846
29847         * lib/quotearg.c (ALERT_CHAR): New macro.
29848         (quotearg_buffer_restyled): Use it.
29849
29850 2000-02-27  Jim Meyering  <meyering@lucent.com>
29851
29852         * m4/check-decl.m4: Add getenv to the list.
29853
29854 2000-02-27  Jim Meyering  <meyering@lucent.com>
29855
29856         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
29857         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
29858
29859         * lib/backupfile.c: Guard inclusion of stdlib.h with
29860         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
29861         Declare malloc if needed.
29862
29863         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
29864         `#ifndef HAVE_DECL..'
29865         now that autoconf always defines the HAVE_DECL_ symbols.
29866         * lib/human.c: Likewise.
29867         * lib/same.c: Likewise.
29868         * lib/strtoumax.c: Likewise.
29869
29870         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
29871         declaration check was not run.
29872         * lib/hash.c: Likewise.
29873         * lib/human.c: Likewise.
29874         * lib/same.c: Likewise.
29875         * lib/strtoumax.c: Likewise.
29876
29877         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
29878         `.', then first look up the entire `.'-containing string as a login
29879         name.
29880
29881 2000-02-23  Jim Meyering  <meyering@lucent.com>
29882
29883         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
29884         in place of my hack.
29885
29886 2000-02-18  Paul Eggert  <eggert@twinsun.com>
29887
29888         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
29889         (textint): New typedef.
29890         (parser_control): Member year changed from int to textint.
29891         All uses changed.
29892         (YYSTYPE): Removed; replaced by %union with int and textint members.
29893         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
29894         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
29895         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
29896         (tSNUMBER, tUNUMBER): Now of type <textintval>.
29897         (date, number, to_year): Use width of number in digits, not its value,
29898         to determine whether it's a 2-digit year, or a 2-digit time.
29899         (yylex): Store number of digits of numeric tokens.
29900         Reported by John Kendall.
29901
29902         (parser_control): Changed from struct parser_control to typedef (for
29903         consistency).  All uses changed.
29904
29905         (tID): Removed; not used.
29906         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
29907
29908 2000-02-14  Paul Eggert  <eggert@twinsun.com>
29909
29910         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
29911         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
29912
29913 2000-02-12  Jim Meyering  <meyering@lucent.com>
29914
29915         * lib/userspec.c (ISDIGIT): Define it.
29916         (isdigit): Remove definition.
29917         (is_number): Use ISDIGIT, not isdigit.
29918         <libintl.h>: Include.
29919         (_ and N_): Define.
29920         (parse_user_spec): Mark translatable strings.
29921
29922 2000-02-10  Jim Meyering  <meyering@lucent.com>
29923
29924         With these changes, nanosleep.[ch] are finally enough like the other
29925         lib/* replacement files to compile on a few more losing systems.
29926
29927         * lib/nanosleep.h: Don't include config.h.
29928         Remove prototype from declaration of nanosleep.
29929         (PARAMS): Remove now-unneeded definition.
29930         * lib/nanosleep.c: #undef nanosleep.
29931         (rpl_nanosleep): Rename from nanosleep.
29932
29933 2000-02-10  Jim Meyering  <meyering@lucent.com>
29934
29935         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
29936         gnu_nanosleep to rpl_nanosleep.
29937
29938 2000-02-09  Jim Meyering  <meyering@lucent.com>
29939
29940         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
29941         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
29942
29943 2000-02-08  Akim Demaille  <akim@epita.fr>
29944
29945         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
29946         `[' and `]' and remove uses of `changequote'.
29947         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
29948         (AC_SYS_LARGEFILE): Likewise.
29949         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
29950         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
29951         of changequote.
29952         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
29953         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
29954         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
29955         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
29956
29957 2000-02-05  Jim Meyering  <meyering@lucent.com>
29958
29959         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
29960         Remove explicit use of AC_HEADER_TIME.  It is required by
29961         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
29962         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
29963         in autoconf whereby the expansion of the latter ended up preceding
29964         the expansion of its prerequisite, AC_HEADER_TIME.
29965         Reported by Volker Borchert.
29966
29967 2000-02-03  Jim Meyering  <meyering@lucent.com>
29968
29969         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
29970
29971 2000-02-03  Jim Meyering  <meyering@lucent.com>
29972
29973         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
29974         rather than with `#if HAVE_UTMPNAME'.
29975
29976 2000-02-02  Jim Meyering  <meyering@lucent.com>
29977
29978         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
29979         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
29980         Reported by Eli Zaretskii.
29981
29982 2000-02-01  Jim Meyering  <meyering@lucent.com>
29983
29984         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
29985
29986 2000-01-31  Jim Meyering  <meyering@lucent.com>
29987
29988         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
29989         functions.  Add the time.h and sys/time.h headers along with the
29990         AC_REQUIRE'ment of AC_HEADER_TIME.
29991
29992 2000-01-31  Jim Meyering  <meyering@lucent.com>
29993
29994         * lib/nanosleep.h (nanosleep): Guard declaration with
29995         `#if ! HAVE_DECL_NANOSLEEP'.
29996         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
29997         the declaration in that vendor's sys/timers.h.
29998         Reported by Christian Krackowizer.
29999
30000         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
30001         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
30002         (ISPRINT): Likewise.
30003         Reported by Tom Tromey.
30004
30005 2000-01-30  Jim Meyering  <meyering@lucent.com>
30006
30007         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
30008
30009         * m4/prereq.m4 (utmp_includes): Define.
30010         Check for ut_user and ut_name members in both struct utmpx
30011         and struct utmp.
30012
30013 2000-01-30  Jim Meyering  <meyering@lucent.com>
30014
30015         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
30016         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
30017         header files where only utmpx.ut_user is declared.
30018
30019         * lib/readutmp.h (UT_USER): Define.
30020
30021 2000-01-29  Jim Meyering  <meyering@lucent.com>
30022
30023         * m4/lib-check.m4: New file containing library-related checks from
30024         fileutils and sh-utils (textutils had none).
30025
30026 2000-01-28  Jim Meyering  <meyering@lucent.com>
30027
30028         * m4/perl.m4: Change format of warning message to look more like that
30029         from the missing script.  Suggestion from François Pinard.
30030
30031 2000-01-25  Jim Meyering  <meyering@lucent.com>
30032
30033         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
30034         well as time.h in the compile check.
30035         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
30036         Fix typo in cross-compiling case: s/yes/no/.
30037
30038 2000-01-23  Jim Meyering  <meyering@lucent.com>
30039
30040         * m4/jm-macros.m4: Move df-related tests here from
30041         fileutils/configure.in
30042
30043         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
30044         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
30045
30046         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
30047         s/space/ac_fsusage_space/.
30048         (jm_FILE_SYSTEM_USAGE): Take two parameters.
30049
30050         * m4/ftruncate.m4: New file (derived from part of
30051         fileutils/configure.in).
30052         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
30053         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
30054
30055         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
30056         AC_SUBST these here, rather than just in sh-util/configure.in, so
30057         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
30058         all the same.
30059         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
30060         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
30061         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
30062         (AC_SUBST(POW_LIBM)): Likewise.
30063         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
30064
30065 2000-01-23  Jim Meyering  <meyering@lucent.com>
30066
30067         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
30068         obstack.c.
30069
30070 2000-01-22  Jim Meyering  <meyering@lucent.com>
30071
30072         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
30073
30074         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
30075
30076         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
30077         configure.in
30078         (AC_CHECK_HEADERS): Likewise for sh-utils.
30079         (AC_CHECK_HEADERS): Likewise for textutils.
30080         Merge the three lists of headers.
30081
30082         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
30083         from fileutils' configure.in.
30084
30085         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
30086         code. Moved tests into their own function (_jm_DECL_HEADERS) in
30087         check-decl.m4.
30088
30089         * m4/check-decl.m4: Use #if rather than #ifdef.
30090         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
30091         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
30092         (_jm_DECL_HEADERS): Define new function.
30093         (jm_CHECK_DECLARATIONS): Require it.
30094
30095 2000-01-22  Jim Meyering  <meyering@lucent.com>
30096
30097         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
30098         [! HAVE_DECL_STRTOULL]: Declare strtoull.
30099         Required for some AIX systems.  Reported by Christian Krackowizer.
30100         [TESTING] (main): New function.
30101
30102         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
30103         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
30104         letters.
30105
30106         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
30107         iswprint.
30108
30109         * lib/strverscmp.c (ISDIGIT): Define.
30110         (strverscmp): Use ISDIGIT, not isdigit.
30111
30112 2000-01-19  Jim Meyering  <meyering@lucent.com>
30113
30114         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
30115         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
30116         defines `struct timespec' in <sys/time.h>
30117
30118         * m4/c-bs-a.m4: Remove uses of changequote altogether.
30119         Thanks to Akim for explaining.
30120
30121 2000-01-17  Paul Eggert  <eggert@twinsun.com>
30122
30123         * lib/nanosleep.c (nanosleep):
30124         Don't use SA_INTERRUPT to decide whether to call sigaction, as
30125         POSIX.1 doesn't require SA_INTERRUPT and some systems
30126         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
30127         it's been part of POSIX.1 since day 1 (in 1988).
30128
30129 2000-01-17  Jim Meyering  <meyering@lucent.com>
30130
30131         * lib/interlock: Remove unused file.  Reported by François Pinard.
30132
30133 2000-01-16  Paul Eggert  <eggert@twinsun.com>
30134
30135         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
30136         alert, backslash, formfeed, and vertical tab unnecessarily in
30137         shell quoting style.
30138
30139 2000-01-16  Jim Meyering  <meyering@lucent.com>
30140
30141         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
30142         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
30143         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
30144         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
30145
30146 2000-01-16  Jim Meyering  <meyering@lucent.com>
30147
30148         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
30149         because the latter didn't work.
30150
30151 2000-01-15  Jim Meyering  <meyering@lucent.com>
30152
30153         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
30154         (AC_REPLACE_FUNCS): Add memcpy and memset.
30155         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
30156         Add strpbrk.
30157         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
30158
30159 2000-01-12  Jim Meyering  <meyering@lucent.com>
30160
30161         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
30162         (jm_PREREQ): Use it.
30163         (jm_PREREQ_READUTMP): New macro.
30164         (jm_PREREQ): Use it.
30165
30166 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30167
30168         Quote multibyte characters correctly.
30169         * m4/c-bs-a.m4: New file.
30170         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
30171         (jm_PREREQ): Use it.
30172
30173 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30174
30175         * m4/uintmax_t.m4: Port to autoconf 2.13.
30176
30177 2000-01-08  Jim Meyering  <meyering@ascend.com>
30178
30179         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
30180         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
30181
30182 2000-01-04  Jim Meyering  <meyering@ascend.com>
30183
30184         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
30185         jm_STRUCT_DIRENT_D_TYPE.
30186         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
30187         jm_STRUCT_DIRENT_D_INO.
30188         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
30189         jm_STRUCT_UTIMBUF.
30190         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
30191         renamings.
30192         * m4/utime.m4: Likewise.
30193
30194         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
30195         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
30196
30197 2000-01-03  Paul Eggert  <eggert@twinsun.com>
30198
30199         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
30200         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
30201
30202 2000-01-02  Jim Meyering  <meyering@ascend.com>
30203
30204         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
30205         remember if this is necessary.
30206
30207 1999-12-26  Jim Meyering  <meyering@ascend.com>
30208
30209         * m4/jm-macros.m4: Use it here.
30210         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
30211
30212 1999-12-23  Jim Meyering  <meyering@ascend.com>
30213
30214         * m4/jm-macros.m4: Check for clock_gettime (moved from
30215         fileutils/configure.in)
30216         Check for gettimeofday.
30217
30218 1999-12-20  Jim Meyering  <meyering@ascend.com>
30219
30220         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
30221         autoconf-2.14a-1999-12-20.
30222
30223 1999-12-19  Jim Meyering  <meyering@ascend.com>
30224
30225         * m4/lstat-slash.m4: New file.
30226         * m4/jm-macros.m4: Use the new macro:
30227         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30228
30229 1999-12-07  Jim Meyering  <meyering@ascend.com>
30230
30231         * m4/perl.m4: Require that File::Compare be available, too.
30232         Too many systems seem to lack it.
30233
30234         * m4/strftime.m4: Add checks for most of the cpp macros tested in
30235         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
30236
30237 1999-11-18  Paul Eggert  <eggert@twinsun.com>
30238
30239         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
30240         problem with the QNX 4.25 shell, which doesn't propagate exit
30241         status of failed commands inside shell assignments.
30242
30243 1999-11-17  Jim Meyering  <meyering@ascend.com>
30244
30245         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
30246
30247 1999-11-07  Jim Meyering  <meyering@ascend.com>
30248
30249         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
30250
30251 1999-11-06  Jim Meyering  <meyering@ascend.com>
30252
30253         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
30254         * m4/jm-macros.m4 (jm_MACROS): Use it here.
30255
30256 1999-11-05  Jim Meyering  <meyering@ascend.com>
30257
30258         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
30259         configure.in of textutils, fileutils, and sh-utils into this one
30260         (shared between those packages) file.
30261         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
30262         AC_STRUCT_ST_BLKSIZE.
30263
30264 1999-11-03  Jim Meyering  <meyering@ascend.com>
30265
30266         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
30267         of AC_CHECK_TYPE checks includes unistd.h.
30268         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
30269         Suggestion from Akim Demaille.
30270
30271 1999-10-30  Jim Meyering  <meyering@ascend.com>
30272
30273         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
30274         m4-quoted string.
30275         * m4/ls-mntd-fs.m4: Likewise.
30276         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
30277         * m4/jm-winsz1.m4: Likewise.
30278
30279         * m4/const.m4: Remove file, since the fix made it into the experimental
30280         version of autoconf.
30281         * m4/mktime.m4: Likewise.
30282
30283         * m4/check-type.m4: Remove file, now that the latest version of
30284         AC_CHECK_TYPE takes a third arg to specify additional #includes.
30285
30286         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
30287         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
30288         AC_CHECK_TYPE.
30289
30290 1999-10-04  Jim Meyering  <meyering@ascend.com>
30291
30292         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
30293
30294 1999-09-22  Paul Eggert  <eggert@twinsun.com>
30295
30296         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
30297         2.95.1 bug with HP-UX 10.20.
30298
30299 1999-09-17  Jim Meyering  <meyering@ascend.com>
30300
30301         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
30302         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
30303         due to missing strdup (against sh-utils-2.0).
30304
30305 1999-08-29  Jim Meyering  <meyering@ascend.com>
30306
30307         * m4/jm-macros.m4: Require jm_BISON.
30308         * m4/bison.m4: New file.
30309
30310 1999-08-17  Paul Eggert  <eggert@twinsun.com>
30311
30312         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
30313         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
30314
30315 1999-08-05  Jim Meyering  <meyering@ascend.com>
30316
30317         * m4/getline.m4: Rename test file from conftestdata to conftest.data
30318         to avoid conflicts with `conftest' on 8+3 filesystems.
30319         Suggestion from Eli Zaretskii.
30320
30321 1999-08-04  Jim Meyering  <meyering@ascend.com>
30322
30323         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
30324         fileutils and sh-utils (textutils's getline test was inadequate).
30325         (AM_FUNC_GETLINE): Run this test.
30326         (AC_CHECK_FUNCS): Check for getdelim.
30327         Reported by Bob Proulx.
30328
30329 1999-08-02  Jim Meyering  <meyering@ascend.com>
30330
30331         * m4/jm-macros.m4: Add a comment.
30332
30333 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30334
30335         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
30336         <inttypes.h> defines strtoumax as a macro (and not as a
30337         function).
30338
30339 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30340
30341         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
30342         that we can shift, multiply and divide unsigned long long
30343         values; Ultrix cc can't do it.
30344
30345 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30346
30347         * m4/mktime.m4: New file, which is a preview of what should appear
30348         in the next public autoconf release.
30349
30350 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30351
30352         * m4/lfs.m4: Remove this file.
30353         * m4/largefile.m4: New file.  It contains the old contents of
30354         lfs.m4, except that all names with prefix AC_LFS have been
30355         changed to use the prefix AC_SYS_LARGEFILE instead, to be
30356         compatible with future autoconf versions.  Also, some minor m4
30357         quoting problems have been fixed.
30358
30359 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30360
30361         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
30362         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
30363         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
30364         and simplify the shell code.
30365
30366 1999-08-01  Jim Meyering  <meyering@ascend.com>
30367
30368         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
30369         m4.
30370
30371 1999-07-20  Jim Meyering  <meyering@ascend.com>
30372
30373         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
30374
30375 1999-07-15  Jim Meyering  <meyering@ascend.com>
30376
30377         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
30378
30379 1999-05-22  Jim Meyering  <meyering@ascend.com>
30380
30381         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
30382
30383 1999-05-20  Jim Meyering  <meyering@ascend.com>
30384
30385         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
30386         Add a colon after each `then' in case $4 is empty.
30387
30388 1999-05-16  Jim Meyering  <meyering@ascend.com>
30389
30390         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
30391
30392 1999-05-10  Jim Meyering  <meyering@ascend.com>
30393
30394         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
30395
30396         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
30397         AC_FUNC_MKTIME.
30398
30399 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
30400
30401         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
30402
30403 1999-05-04  Paul Eggert  <eggert@twinsun.com>
30404
30405         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
30406         not CPPFLAGS, so that linking works correctly in IRIX.
30407
30408 1999-04-30  Paul Eggert  <eggert@twinsun.com>
30409
30410         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
30411
30412 1999-04-20  Paul Eggert  <eggert@twinsun.com>
30413
30414         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
30415         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
30416         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
30417         jm_AC_TYPE_UNSIGNED_LONG_LONG.
30418         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
30419
30420         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
30421
30422 1999-04-20  Jim Meyering  <meyering@ascend.com>
30423
30424         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
30425         AC_REPLACE xstroull if necessary.  From Paul Eggert.
30426         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
30427
30428 1999-04-18  Jim Meyering  <meyering@ascend.com>
30429
30430         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
30431         * m4/jm-macros.m4: Use it.
30432
30433 1999-04-06  Jim Meyering  <meyering@ascend.com>
30434
30435         * m4/strftime.m4: Remove test for %f.
30436
30437 1999-03-29  Jim Meyering  <meyering@ascend.com>
30438
30439         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
30440         superset of the AC_TYPE_* checks in the textutils, fileutils,
30441         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
30442         AC_TYPE_PID_T.
30443
30444 1999-03-28  Jim Meyering  <meyering@ascend.com>
30445
30446         * m4/jm-macros.m4: Define GNU_PACKAGE here.
30447         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
30448         replaced e.g., in the *.sh files of the sh-utils.
30449
30450 1999-03-20  Jim Meyering  <meyering@ascend.com>
30451
30452         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
30453         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
30454         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
30455
30456 1999-03-19  Jim Meyering  <meyering@ascend.com>
30457
30458         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
30459
30460 1999-03-12  Jim Meyering  <meyering@ascend.com>
30461
30462         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
30463
30464 1999-03-07  Jim Meyering  <meyering@ascend.com>
30465
30466         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
30467         declared.
30468
30469 1999-02-17  Jim Meyering  <meyering@ascend.com>
30470
30471         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
30472         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
30473
30474 1999-02-07  Jim Meyering  <meyering@ascend.com>
30475
30476         * m4/group-member.m4: New file -- extracted from sh-utils'
30477         configure.in.
30478
30479         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
30480         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
30481
30482 1999-02-06  Jim Meyering  <meyering@ascend.com>
30483
30484         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
30485         * m4/fnmatch.m4: Likewise.
30486         * m4/getgroups.m4: Likewise.
30487         * m4/lstat.m4: Likewise.
30488         * m4/malloc.m4: Likewise.
30489         * m4/putenv.m4: Likewise.
30490         * m4/realloc.m4: Likewise.
30491         * m4/regex.m4: Likewise.
30492         * m4/stat.m4: Likewise.
30493         * m4/strftime.m4: Likewise.
30494         Suggestion from Alain Magloire.
30495
30496         * m4/chown.m4: Use `.$ac_objext', not `.o'.
30497         * m4/fnmatch.m4: Likewise.
30498         * m4/getgroups.m4: Likewise.
30499         * m4/getline.m4: Likewise.
30500         * m4/lstat.m4: Likewise.
30501         * m4/malloc.m4: Likewise.
30502         * m4/memcmp.m4: Likewise.
30503         * m4/putenv.m4: Likewise.
30504         * m4/realloc.m4: Likewise.
30505         * m4/regex.m4: Likewise.
30506         * m4/stat.m4: Likewise.
30507         * m4/strftime.m4: Likewise.
30508         Suggestion from Alain Magloire.
30509
30510         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
30511         an argument.
30512
30513         * m4/regex.m4: Add a run-time Test for proper operation of
30514         re_compile_pattern.
30515
30516 1999-01-31  Jim Meyering  <meyering@ascend.com>
30517
30518         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
30519
30520 1999-01-30  Jim Meyering  <meyering@ascend.com>
30521
30522         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
30523
30524         * m4/jm-mktime.m4: Make this a wrapper around the official
30525         AM_FUNC_MKTIME rather than my private copy, now that the official one
30526         is up to date.
30527         * m4/mktime.m4: Remove file.
30528
30529         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
30530         * m4/uptime.m4: Likewise.
30531         * m4/uintmax_t.m4: Likewise.
30532
30533 1999-01-28  Jim Meyering  <meyering@ascend.com>
30534
30535         * m4/jm-macros.m4: Use jm_AFS.
30536         * m4/afs.m4: New file (from fileutils' configure.in).
30537
30538         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
30539         * m4/chown.m4: Likewise.
30540         * m4/d-ino.m4: Likewise.
30541         * m4/d-type.m4: Likewise.
30542         * m4/fnmatch.m4: Likewise.
30543         * m4/getgroups.m4: Likewise.
30544         * m4/gettext.m4: Likewise.
30545         * m4/jm-mktime.m4: Likewise.
30546         * m4/jm-winsz2.m4: Likewise.
30547         * m4/lcmessage.m4: Likewise.
30548         * m4/ls-mntd-fs.m4: Likewise.
30549         * m4/malloc.m4: Likewise.
30550         * m4/memcmp.m4: Likewise.
30551         * m4/putenv.m4: Likewise.
30552         * m4/realloc.m4: Likewise.
30553         * m4/st_mtim.m4: Likewise.
30554         * m4/strftime.m4: Likewise.
30555
30556 1999-01-16  Jim Meyering  <meyering@ascend.com>
30557
30558         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
30559         (ARGMATCH_DIE_DECL): Define.
30560
30561 1999-01-12  Jim Meyering  <meyering@ascend.com>
30562
30563         * m4/Makefile.am.in: Rewrite to avoid using fmt.
30564         Reported by Lars Hecking.
30565
30566 1999-01-10  Jim Meyering  <meyering@ascend.com>
30567
30568         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
30569         gross kludge.
30570         * m4/inttypes_h.m4: Likewise.
30571         * m4/lstat.m4: Likewise.
30572         * m4/malloc.m4: Likewise.
30573         * m4/readdir.m4: Likewise.
30574         * m4/realloc.m4: Likewise.
30575         * m4/st_dm_mode.m4: Likewise.
30576         * m4/stat.m4: Likewise.
30577         * m4/utimbuf.m4: Likewise.
30578         * m4/utimes.m4: Likewise.
30579
30580         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
30581         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
30582         comments in config.h.in are meaningful.
30583
30584         * m4/jm-macros.m4: Require autoconf-2.13 here.
30585
30586         * m4/regex.m4: By default, don't use the included regex.c on systems
30587         with glibc 2.  Suggestion from Uli Drepper.
30588
30589 1999-01-02  Jim Meyering  <meyering@ascend.com>
30590
30591         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
30592
30593 1998-12-18  Jim Meyering  <meyering@ascend.com>
30594
30595         * m4/Makefile.am.in (Makefile.am): Simplify rule.
30596         Based on a suggestion from Lars Hecking.
30597
30598 1998-11-16  Paul Eggert  <eggert@twinsun.com>
30599
30600         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
30601
30602 1998-11-16  Jim Meyering  <meyering@ascend.com>
30603
30604         * m4/lfs.m4: Double-quote the `uname...` expression.
30605
30606 1998-11-14  Jim Meyering  <meyering@ascend.com>
30607
30608         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
30609         * m4/stat.m4: Likewise.
30610
30611 1998-11-03  Jim Meyering  <meyering@ascend.com>
30612
30613         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
30614         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
30615
30616 1998-10-18  Jim Meyering  <meyering@ascend.com>
30617
30618         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
30619
30620 1998-10-17  Jim Meyering  <meyering@ascend.com>
30621
30622         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
30623         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
30624         calls for those previously hard-coded headers.  Instead, take a new
30625         parameter.
30626         (jm_CHECK_DECLARATIONS): Reflect interface change.
30627         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
30628         (jm_CHECK_DECL_LOCALTIME_R): New macro.
30629
30630         * m4/mktime.m4: Test for spring-forward gap before long-running test.
30631
30632 1998-10-14  Jim Meyering  <meyering@ascend.com>
30633
30634         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
30635         instead of "TZ=America/Vancouver".  From Paul Eggert.
30636
30637 1998-10-11  Jim Meyering  <meyering@ascend.com>
30638
30639         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
30640         This adds a test for a recently added compatibility fix for mktime.c.
30641         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
30642
30643 1998-09-27  Jim Meyering  <meyering@ascend.com>
30644
30645         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
30646
30647         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
30648         ../configure.in, including a change from Gordon Matzigkeit to allow
30649         cross-compiling for the Hurd.
30650
30651         * m4/glibc.m4: New file/macro to test for the GNU C Library
30652         versions 1 and 2.  From Gordon Matzigkeit.
30653         Indent.
30654
30655 1998-09-21  Jim Meyering  <meyering@ascend.com>
30656
30657         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
30658
30659 1998-08-18  Paul Eggert  <eggert@twinsun.com>
30660
30661         Port nanosecond-resolution times to UnixWare 2.1.2 and
30662         pedantic Solaris 2.6.
30663
30664         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
30665         AC_STRUCT_ST_MTIM.
30666         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
30667         Generate name of ns member, instead of just 1 or undef.
30668         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
30669
30670 1998-08-15  Jim Meyering  <meyering@ascend.com>
30671
30672         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
30673         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
30674         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
30675         instead of jm_TYPE_SSIZE_T.
30676
30677 1998-08-12  Jim Meyering  <meyering@ascend.com>
30678
30679         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
30680
30681 1998-08-02  Jim Meyering  <meyering@ascend.com>
30682
30683         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
30684         in acconfig.h manually.
30685
30686 1998-07-31  Paul Eggert  <eggert@twinsun.com>
30687
30688         * m4/st_mtim.m4: New file.
30689
30690 1998-07-28  Jim Meyering  <meyering@ascend.com>
30691
30692         * m4/utimes.m4: Undef stat.
30693
30694 1998-07-25  Jim Meyering  <meyering@ascend.com>
30695
30696         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
30697         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
30698
30699 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
30700
30701         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
30702         uid and gid actually remain unchanged.
30703
30704 1998-07-07  Jim Meyering  <meyering@ascend.com>
30705
30706         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
30707
30708 1998-07-04  Jim Meyering  <meyering@ascend.com>
30709
30710         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
30711         to prove that this macro can be used in packages without regex.c.
30712
30713 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
30714
30715         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
30716         is to be used.
30717
30718 1998-07-03  Jim Meyering  <meyering@ascend.com>
30719
30720         * m4/gettext.m4: Add -lintl if it's found to be necessary.
30721
30722         * m4/gettext.m4: New file -- from gettext-0.10.35.
30723         * m4/lcmessage.m4: Likewise.
30724         * m4/progtest.m4: Likewise.
30725
30726         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
30727         * m4/jm-macros.m4: Require the new macro.
30728
30729 1998-06-29  Jim Meyering  <meyering@ascend.com>
30730
30731         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
30732         for the definition of NGROUPS (used in a system header included
30733         by sys/mount.h).
30734
30735 1998-06-28  Jim Meyering  <meyering@ascend.com>
30736
30737         * m4/ls-mntd-fs.m4: New file.
30738         * m4/fstypename.m4: New file.
30739
30740         * m4/jm-macros.m4: Require the new macro.
30741         * m4/jm-glibc-io.m4: New file.
30742
30743 1998-05-19  Jim Meyering  <meyering@ascend.com>
30744
30745         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
30746         * m4/lchown.m4: New file.
30747
30748         * m4/Makefile.am.in: New file.
30749         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
30750
30751 1998-05-14  Jim Meyering  <meyering@ascend.com>
30752
30753         * m4/Makefile.am (EXTRA_DIST): Add them.
30754         * m4/jm-macros.m4: New file.
30755         * m4/utimbuf.m4: New file.
30756
30757 1998-05-12  Jim Meyering  <meyering@ascend.com>
30758
30759         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
30760
30761 1998-05-11  Jim Meyering  <meyering@ascend.com>
30762
30763         * m4/isc-posix.m4: New file.
30764
30765 1998-05-10  Jim Meyering  <meyering@ascend.com>