Add support for uClibc 0.9.29.
[gnulib.git] / ChangeLog
1 2007-06-08  Bruno Haible  <bruno@clisp.org>
2
3         Port to uClibc.
4         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
5         * lib/fpurge.c (fpurge): Likewise.
6         * lib/freading.c (freading): Likewise.
7         * lib/fseeko.c (rpl_fseeko): Likewise.
8         * lib/fseterr.c (fseterr): Likewise.
9         * lib/fwriting.c (fwriting): Likewise.
10         * tests/test-fflush.c (main): Avoid a failure on uClibc.
11
12 2007-06-08  Bruno Haible  <bruno@clisp.org>
13
14         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
15         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
16         * modules/gettext (Files): Add m4/intlmacosx.m4.
17
18 2007-06-07  Bruno Haible  <bruno@clisp.org>
19
20         * modules/localename-tests: New file.
21         * tests/test-localename.c: New file.
22
23         New module 'localename'.
24         * lib/localename.h: New file.
25         * lib/localename.c: New file, from GNU gettext.
26         * m4/localename.m4: New file.
27         * modules/localename: New file.
28
29 2007-06-07  Bruno Haible  <bruno@clisp.org>
30
31         Work around the lack of <wchar.h> on some builds of uClibc.
32         * doc/headers/wchar.texi: Update.
33         * lib/wchar_.h: Include <wchar.h> only if it exists.
34         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
35         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
36         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
37         doesn't exist.
38         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
39         * modules/mbfile (Depends-on): Add wchar.
40         * modules/mbiter (Depends-on): Likewise.
41         * modules/mbuiter (Depends-on): Likewise.
42         Reported by Simon Josefsson.
43
44 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
45
46         Work around problem reported by Steven M. Schweda in
47         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
48         Tru64 5.1B with the Compaq compiler environment installed declares
49         an 'isblank' function but does not define it in the C library.
50         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
51         * lib/regex_internal.h (isblank): Likewise.
52         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
53         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
54
55 2007-06-05  Bruno Haible  <bruno@clisp.org>
56
57         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
58         ia64.
59         * modules/printf-safe: New file.
60         * modules/fprintf-posix (Depends-on): Add printf-safe.
61         * modules/printf-posix (Depends-on): Likewise.
62         * modules/snprintf-posix (Depends-on): Likewise.
63         * modules/sprintf-posix (Depends-on): Likewise.
64         * modules/vasnprintf-posix (Depends-on): Likewise.
65         * modules/vasprintf-posix (Depends-on): Likewise.
66         * modules/vfprintf-posix (Depends-on): Likewise.
67         * modules/vprintf-posix (Depends-on): Likewise.
68         * modules/vsnprintf-posix (Depends-on): Likewise.
69         * modules/vsprintf-posix (Depends-on): Likewise.
70         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
71         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
72         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
73         "no" on i386, x86_64, ia64.
74         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
75         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
76         on i386, x86_64, ia64.
77         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
78         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
79         on i386, x86_64, ia64.
80         * tests/test-vasnprintf-posix.c: Include float.h.
81         (LDBL80_WORDS): New macro.
82         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
83         on i386, x86_64, ia64.
84         * tests/test-vasprintf-posix.c: Include float.h.
85         (LDBL80_WORDS): New macro.
86         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
87         on i386, x86_64, ia64.
88         * tests/test-snprintf-posix.c: Include float.h.
89         * tests/test-sprintf-posix.c: Likewise.
90         * tests/test-vsnprintf-posix.c: Likewise.
91         * tests/test-vsprintf-posix.c: Likewise.
92
93 2007-06-05  Bruno Haible  <bruno@clisp.org>
94
95         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
96         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
97         non-IEEE numbers on i386, x86_64, ia64.
98         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
99         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
100         * tests/test-isnanl.h: Include float.h.
101         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
102
103 2007-06-05  Bruno Haible  <bruno@clisp.org>
104
105         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
106         also the %a / %A. Handle the %a / %A code before this extra handling.
107
108 2007-06-05  Bruno Haible  <bruno@clisp.org>
109
110         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
111         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
112
113 2007-06-05  Bruno Haible  <bruno@clisp.org>
114
115         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
116         typo in variable name.
117
118 2007-06-05  Eric Blake  <ebb9@byu.net>
119
120         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
121         Reported by Simon Josefsson.
122
123 2007-06-04  Bruno Haible  <bruno@clisp.org>
124
125         Avoid test failures on some PowerPC platforms.
126         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
127         Define differently for PowerPC.
128         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
129         Reported by Gary V. Vaughan <gary@gnu.org>.
130
131 2007-06-02  Bruno Haible  <bruno@clisp.org>
132
133         Fix test-stdint failure on FreeBSD/ia64.
134         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
135         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
136         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
137         * doc/headers/stdint.texi: Update.
138
139 2007-06-01  Bruno Haible  <bruno@clisp.org>
140
141         * tests/test-binary-io.c (main): Pass a third argument to open().
142         Reported by Gary V. Vaughan <gary@gnu.org>.
143
144 2007-06-01  Bruno Haible  <bruno@clisp.org>
145
146         * doc/functions/frexpl.texi: Update for mingw.
147
148 2007-06-01  Bruno Haible  <bruno@clisp.org>
149
150         * tests/test-lseek.c (main): Disable test of errno for invalid third
151         argument.
152         * doc/functions/lseek.texi: Update.
153         Reported by Gary V. Vaughan <gary@gnu.org>.
154
155 2007-05-28  Bruno Haible  <bruno@clisp.org>
156
157         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
158
159 2007-05-31  Eric Blake  <ebb9@byu.net>
160
161         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
162         cross compiling.
163
164 2007-05-30  Eric Blake  <ebb9@byu.net>
165         and Bruno Haible  <bruno@clisp.org>
166
167         Work around mingw test failures exposed by m4-1.4.9b.
168         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
169         * tests/test-unistd.c: Disable uid_t and git_t tests for the
170         moment.
171
172 2007-05-30  Bruno Haible  <bruno@clisp.org>
173
174         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
175         assuming that they are closed. Needed on HP-UX 11.
176
177 2007-05-29  Bruno Haible  <bruno@clisp.org>
178
179         Fix a problem with #include_next.
180         * lib/dirent_.h: Split the double-inclusion guard.
181         * lib/fcntl_.h: Likewise.
182         * lib/float_.h: Likewise.
183         * lib/iconv_.h: Likewise.
184         * lib/inttypes_.h: Likewise.
185         * lib/locale_.h: Likewise.
186         * lib/math_.h: Likewise.
187         * lib/netinet_in_.h: Likewise.
188         * lib/search_.h: Likewise.
189         * lib/signal_.h: Likewise.
190         * lib/stdint_.h: Likewise.
191         * lib/stdio_.h: Likewise.
192         * lib/stdlib_.h: Likewise.
193         * lib/string_.h: Likewise.
194         * lib/sys_select_.h: Likewise.
195         * lib/sys_socket_.h: Likewise.
196         * lib/sys_stat_.h: Likewise.
197         * lib/sys_time_.h: Likewise.
198         * lib/sysexits_.h: Likewise.
199         * lib/time_.h: Likewise.
200         * lib/unistd_.h: Likewise.
201         * lib/wchar_.h: Likewise.
202         * lib/wctype_.h: Likewise.
203
204 2007-05-29  Bruno Haible  <bruno@clisp.org>
205
206         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
207         for the moment.
208
209 2007-05-29  Bruno Haible  <bruno@clisp.org>
210
211         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
212         invocation.
213         Reported by Eric Blake.
214
215 2007-05-29  Bruno Haible  <bruno@clisp.org>
216
217         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
218         compiling case.
219
220 2007-05-29  Eric Blake  <ebb9@byu.net>
221             Bruno Haible  <bruno@clisp.org>
222
223         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
224         cross compiles.
225
226 2007-05-28  Eric Blake  <ebb9@byu.net>
227
228         * modules/closein-tests (test_closein_LDADD): Support test on
229         cygwin with libtool.
230
231 2007-05-28  Bruno Haible  <bruno@clisp.org>
232
233         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
234         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
235         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
236         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
237         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
238         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
239         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
240         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
241         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
242
243 2007-05-28  Eric Blake  <ebb9@byu.net>
244
245         Unconditionally include <config.h> in unit tests.
246         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
247         * tests/test-allocsa.c, tests/test-arcfour.c,
248         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
249         tests/test-array_list.c, tests/test-array_oset.c,
250         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
251         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
252         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
253         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
254         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
255         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
256         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
257         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
258         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
259         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
260         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
261         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
262         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
263         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
264         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
265         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
266         test-md5.c, test-memmem.c, test-printf-posix.c,
267         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
268         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
269         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
270         test-strcasestr.c, test-striconv.c, test-striconveh.c,
271         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
272         test-vasnprintf-posix2.c, test-vasnprintf.c,
273         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
274         test-vfprintf-posix.c, test-vprintf-posix.c,
275         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
276         test-xvasprintf.c: Likewise.
277
278 2007-05-28  Bruno Haible  <bruno@clisp.org>
279
280         * gnulib-tool (func_import): Remember the --with-tests command-line
281         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
282         Reported by Eric Blake.
283
284 2007-05-28  Bruno Haible  <bruno@clisp.org>
285
286         * modules/ftell-tests: New file.
287         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
288         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
289
290         * lib/ftell.c: New file.
291         * modules/ftell: New file.
292         * m4/ftell.m4: New file.
293         * doc/functions/ftell.texi: Update.
294         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
295         REPLACE_FTELL.
296         * lib/stdio_.h (rpl_ftell): New declaration.
297         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
298         REPLACE_FTELL.
299
300 2007-05-28  Eric Blake  <ebb9@byu.net>
301
302         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
303
304 2007-05-28  Bruno Haible  <bruno@clisp.org>
305
306         * modules/fseek-tests: New file.
307         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
308         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
309
310         * lib/fseek.c: New file.
311         * modules/fseek: New file.
312         * m4/fseek.m4: New file.
313         * doc/functions/fseek.texi: Update.
314         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
315         REPLACE_FSEEK.
316         * lib/stdio_.h (rpl_fseek): New declaration.
317         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
318         REPLACE_FSEEK.
319
320 2007-05-28  Bruno Haible  <bruno@clisp.org>
321
322         * lib/stdio_.h (fflush): More comments.
323
324 2007-05-28  Bruno Haible  <bruno@clisp.org>
325
326         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
327         runtime test.
328
329 2007-05-28  Eric Blake  <ebb9@byu.net>
330
331         Improve lseek module.
332         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
333         * lib/unistd_.h (lseek): Scale back link warning message.
334         * tests/test-lseek.c: Beef up test.
335         * tests/test-lseek.sh: Exercise more facets of lseek.
336         Reported by Bruno Haible.
337
338 2007-05-28  Bruno Haible  <bruno@clisp.org>
339
340         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
341         to define.
342
343 2007-05-27  Bruno Haible  <bruno@clisp.org>
344
345         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
346
347 2007-05-27  Bruno Haible  <bruno@clisp.org>
348
349         * modules/openmp: New file.
350         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
351         Noah Misch.
352
353 2007-05-26  Bruno Haible  <bruno@clisp.org>
354
355         * modules/chdir-long (Depends-on): Add fchdir.
356         * modules/chdir-safer (Depends-on): Likewise.
357         * modules/fts (Depends-on): Likewise.
358         * modules/fts-lgpl (Depends-on): Likewise.
359         * modules/openat (Depends-on): Likewise.
360         * modules/savewd (Depends-on): Likewise.
361
362 2007-05-24  Eric Blake  <ebb9@byu.net>
363
364         Fix lseek on mingw.
365         * modules/lseek: New module.
366         * m4/lseek.m4: New file.
367         * lib/lseek.c: New file.
368         * modules/lseek-tests: New file.
369         * tests/test-lseek.c: New file.
370         * tests/test-lseek.sh: New file.
371         * MODULES.html.sh: Document lseek module.
372         * modules/fflush (Depends-on): Add lseek, fseeko.
373         * modules/fseeko (Depends-on): Likewise.
374         * modules/ftello (Depends-on): Likewise.
375         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
376         broken.
377         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
378         broken.
379         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
380         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
381         * lib/ftello.c (rpl_ftello): Likewise.
382         * tests/test-fseeko.c (main): Test this.
383         * tests/test-fseeko.sh: Likewise.
384         * tests/test-ftello.c (main): Likewise.
385         * tests/test-ftello.sh: Likewise.
386         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
387         implies replacing fseek.
388         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
389         HAVE_FTELLO.
390         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
391         * modules/unistd (Makefile.am): Likewise.
392         * lib/unistd_.h (lseek): Declare a replacement.
393         * doc/functions/lseek.texi (lseek): Document this fix.
394         * doc/functions/fseek.texi (fseek): Likewise.
395         * doc/functions/ftell.texi (ftell): Likewise.
396
397 2007-05-24  Bruno Haible  <bruno@clisp.org>
398
399         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
400         in the printed representation of a NaN.
401         * tests/test-vasprintf-posix.c (test_function): Likewise.
402         * tests/test-snprintf-posix.h (test_function): Likewise.
403         * tests/test-sprintf-posix.h (test_function): Likewise.
404         Reported by Eric Blake.
405
406 2007-05-23  Eric Blake  <ebb9@byu.net>
407
408         Fix fseeko/ftello on cygwin 1.5.24.
409         * doc/functions/fseeko.texi (fseeko): Document the fix.
410         * doc/functions/ftello.texi (ftello): Document the fix.
411         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
412         * doc/functions/stdout.text (stdout): New file.
413         * doc/functions/stderr.text (stderr): New file.
414         * doc/gnulib.texi (Function Substitutes): Use new files.
415         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
416         prior to 1.7.0.
417         * tests/test-ftello.c (main): Likewise for ftello.
418         * tests/test-fseeko.sh: New file.
419         * tests/test-ftello.sh: New file.
420         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
421         with seekable stdin.
422         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
423         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
424         (gl_REPLACE_FSEEKO): New macro.
425         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
426         * modules/fseeko (Files): Distribute fseeko.c.
427         * modules/ftello (Files): Distribute ftello.c.
428         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
429         mode.
430         * lib/ftello.c (rpl_ftello): New file.
431         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
432         fseeko, ftello.
433         (gl_STDIN_LARGE_OFFSET): New macro.
434         * modules/stdio (Makefile.am): Perform the replacement.
435         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
436
437 2007-05-23  Bruno Haible  <bruno@clisp.org>
438
439         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
440         GNULIB_POSIXCHECK is defined.
441
442 2007-05-21  Bruno Haible  <bruno@clisp.org>
443
444         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
445         Check also the output for NaN arguments. When cross-compiling, guess
446         no on IRIX.
447         * lib/vasnprintf.c: Update comments.
448         * tests/test-vasnprintf-posix.c (strisnan): New function.
449         (test_function): Use it.
450         * tests/test-vasprintf-posix.c (strisnan): New function.
451         (test_function): Use it.
452         * tests/test-snprintf-posix.h (strisnan): New function.
453         (test_function): Use it.
454         * tests/test-sprintf-posix.h (strisnan): New function.
455         (test_function): Use it.
456         Reported by Eric Blake.
457
458 2007-05-20  Bruno Haible  <bruno@clisp.org>
459
460         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
461         numbers that fails on BeOS.
462         * doc/functions/frexpl.texi: Update.
463
464 2007-05-20  Jim Meyering  <jim@meyering.net>
465
466         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
467         forced upon us by glibc-2.6.
468
469 2007-05-20  Bruno Haible  <bruno@clisp.org>
470
471         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
472         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
473         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
474         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
475         NEED_PRINTF_INFINITE.
476         (is_infinitel): New function.
477         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
478         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
479         gl_PREREQ_VASNPRINTF_INFINITE.
480         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
481         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
482         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
483         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
484         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
485         gl_PREREQ_VASNPRINTF_INFINITE.
486         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
487         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
488         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
489         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
490         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
491         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
492         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
493         * doc/functions/fprintf.texi: Update.
494         * doc/functions/printf.texi: Update.
495         * doc/functions/snprintf.texi: Update.
496         * doc/functions/sprintf.texi: Update.
497         * doc/functions/vfprintf.texi: Update.
498         * doc/functions/vprintf.texi: Update.
499         * doc/functions/vsnprintf.texi: Update.
500         * doc/functions/vsprintf.texi: Update.
501
502 2007-05-20  Bruno Haible  <bruno@clisp.org>
503
504         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
505         was not found in libc.
506         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
507
508 2007-05-20  Bruno Haible  <bruno@clisp.org>
509
510         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
511         printed as "-nan" instead of "nan".
512         * tests/test-vasprintf-posix.c (test_function): Likewise.
513         * tests/test-snprintf-posix.h (test_function): Likewise.
514         * tests/test-sprintf-posix.h (test_function): Likewise.
515         Needed for HP-UX 11.
516
517 2007-05-20  Jim Meyering  <jim@meyering.net>
518
519         Fix buggy test for the fchownat-deref bug.
520         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
521         symlink required for the run-test.  Without it, this test would
522         always declare that fchownat doesn't work, and client code would
523         unnecessarily use the replacement function with fixed libc.
524         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
525         Reported by Greg Schafer.
526
527 2007-05-19  Bruno Haible  <bruno@clisp.org>
528
529         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
530         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
531         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
532         Needed for IRIX 6.5 and Solaris 2.5.1.
533
534 2007-05-19  Bruno Haible  <bruno@clisp.org>
535
536         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
537         (test_function): Skip tests involving -0.0 on platforms where
538         -0.0 = 0.0.
539         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
540         (test_function): Skip tests involving -0.0 on platforms where
541         -0.0 = 0.0.
542         * tests/test-snprintf-posix.h (have_minus_zero): New function.
543         (test_function): Skip tests involving -0.0 on platforms where
544         -0.0 = 0.0.
545         * tests/test-sprintf-posix.h (have_minus_zero): New function.
546         (test_function): Skip tests involving -0.0 on platforms where
547         -0.0 = 0.0.
548         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
549         tests.
550         * tests/test-printf-posix.h (test_function): Likewise.
551         * tests/test-printf-posix.output: Remove all -0.0 related results.
552         Needed for IRIX 6.5.
553
554 2007-05-19  Bruno Haible  <bruno@clisp.org>
555
556         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
557         printed as "nan0x7fffffff" instead of "nan".
558         * tests/test-vasprintf-posix.c (test_function): Likewise.
559         * tests/test-snprintf-posix.h (test_function): Likewise.
560         * tests/test-sprintf-posix.h (test_function): Likewise.
561         * tests/test-fprintf-posix.h (NaN): Remove macro.
562         (test_function): Remove all NaN related tests.
563         * tests/test-printf-posix.h (NaN): Remove macro.
564         (test_function): Remove all NaN related tests.
565         * tests/test-printf-posix.output: Remove all NaN related results.
566         Needed for IRIX 6.5.
567
568 2007-05-19  Bruno Haible  <bruno@clisp.org>
569
570         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
571         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
572
573 2007-05-19  Bruno Haible  <bruno@clisp.org>
574
575         * lib/float_.h: New file.
576         * m4/float_h.m4: New file.
577         * modules/float: New file.
578         * modules/isnanl (Dependencies): Add float.
579         * modules/isnanl-nolibm (Dependencies): Likewise.
580         * modules/mathl (Dependencies): Likewise.
581         * modules/printf-frexpl (Dependencies): Likewise.
582         * modules/signbit (Dependencies): Likewise.
583         * modules/vasnprintf (Dependencies): Likewise.
584         * doc/headers/float.texi: Update.
585
586 2007-05-19  Jim Meyering  <jim@meyering.net>
587
588         * lib/utimens.c (gl_futimens): Rename from futimens,
589         now that glibc-2.6 declares futimens.
590         * lib/utimens.h: Likewise.
591
592 2007-05-19  Bruno Haible  <bruno@clisp.org>
593
594         Avoid test failures on mingw.
595         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
596         * tests/test-printf-posix.sh: Likewise.
597         * tests/test-vfprintf-posix.sh: Likewise.
598         * tests/test-vprintf-posix.sh: Likewise.
599
600 2007-05-19  Bruno Haible  <bruno@clisp.org>
601
602         Fix *printf result for NaN, Inf, -0.0 on mingw.
603         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
604         * lib/vasnprintf.c: Include math.h and isnan.h.
605         (is_infinite_or_zero): New function.
606         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
607         values in the %f, %F, %e, %E, %g, %G directives.
608         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
609         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
610         gl_PRINTF_INFINITE and test its result. Invoke
611         gl_PREREQ_VASNPRINTF_INFINITE.
612         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
613         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
614         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
615         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
616         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
617         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
618         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
619         * doc/functions/fprintf.texi: Update.
620         * doc/functions/printf.texi: Update.
621         * doc/functions/snprintf.texi: Update.
622         * doc/functions/sprintf.texi: Update.
623         * doc/functions/vfprintf.texi: Update.
624         * doc/functions/vprintf.texi: Update.
625         * doc/functions/vsnprintf.texi: Update.
626         * doc/functions/vsprintf.texi: Update.
627
628 2007-05-19  Bruno Haible  <bruno@clisp.org>
629
630         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
631         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
632         Instead of multiplying with 10^k, set extra_zeroes to k.
633         (scale10_round_long_double): Remove function.
634
635 2007-05-18  Bruno Haible  <bruno@clisp.org>
636
637         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
638         introduced on 2007-05-06.
639
640 2007-05-18  Bruno Haible  <bruno@clisp.org>
641
642         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
643         %g directives.
644         * tests/test-vasprintf-posix.c (test_function): Likewise.
645         * tests/test-snprintf-posix.h (test_function): Likewise.
646         * tests/test-sprintf-posix.h (test_function): Likewise.
647
648 2007-05-18  Bruno Haible  <bruno@clisp.org>
649
650         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
651         (strmatch): New function.
652         (test_function): Test the %f directive on numbers of various exponents.
653         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
654         (strmatch): New function.
655         (test_function): Test the %f directive on numbers of various exponents.
656         * tests/test-snprintf-posix.h (strmatch): New function.
657         (test_function): Test the %f directive on numbers of various exponents.
658         * tests/test-sprintf-posix.h (strmatch): New function.
659         (test_function): Test the %f directive on numbers of various exponents.
660         * tests/test-snprintf-posix.c (SIZEOF): New macro.
661         * tests/test-sprintf-posix.c (SIZEOF): New macro.
662         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
663         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
664
665 2007-05-18  Bruno Haible  <bruno@clisp.org>
666
667         Add support for 'long double' number output.
668         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
669         * lib/vasnprintf.c: Include math.h and float+.h.
670         (mp_limb_t): New type.
671         (GMP_LIMB_BITS): New macro.
672         (mp_twolimb_t): New type.
673         (GMP_TWOLIMB_BITS): New macro.
674         (mpn_t): New type.
675         (multiply, divide, convert_to_decimal, decode_long_double,
676         scale10_round_long_double, scale10_round_decimal_long_double,
677         floorlog10l): New functions.
678         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
679         for the %f, %F, %e, %E, %g, %G directives.
680         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
681         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
682         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
683         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
684         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
685         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
686         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
687         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
688         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
689         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
690         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
691         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
692         * modules/snprintf-posix (Depends-on): Likewise.
693         * modules/sprintf-posix (Depends-on): Likewise.
694         * modules/vasnprintf-posix (Depends-on): Likewise.
695         * modules/vasprintf-posix (Depends-on): Likewise.
696         * modules/vfprintf-posix (Depends-on): Likewise.
697         * modules/vsnprintf-posix (Depends-on): Likewise.
698         * modules/vsprintf-posix (Depends-on): Likewise.
699         * modules/vasnprintf (Files): Add lib/float+.h.
700         * doc/functions/fprintf.texi: Update.
701         * doc/functions/printf.texi: Update.
702         * doc/functions/snprintf.texi: Update.
703         * doc/functions/sprintf.texi: Update.
704         * doc/functions/vfprintf.texi: Update.
705         * doc/functions/vprintf.texi: Update.
706         * doc/functions/vsnprintf.texi: Update.
707         * doc/functions/vsprintf.texi: Update.
708
709 2007-05-18  Bruno Haible  <bruno@clisp.org>
710
711         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
712
713 2007-05-18  Bruno Haible  <bruno@clisp.org>
714
715         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
716         for printing 64-bit integers. Needed for mingw.
717
718 2007-05-18  Bruno Haible  <bruno@clisp.org>
719
720         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
721         gl_FUNC_FREXPL_WORKS.
722         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
723
724 2007-05-18  Bruno Haible  <bruno@clisp.org>
725
726         * modules/frexpl-nolibm-tests: New file.
727
728         * modules/frexpl-nolibm: New file.
729         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
730
731 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
732
733         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
734         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
735         GCC 4.2, which otherwise issues a lot of warnings.
736         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
737         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
738         Likewise.
739         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
740         * modules/iconv_open (iconv.h): Likewise.
741         * modules/locale (locale.h): Likewise.
742         * modules/netinet_in (netinet/in.h): Likewise.
743         * modules/sys_select (sys_select.h): Likewise.
744         * modules/sys_socket (sys/socket.h): Likewise.
745         * modules/sys_stat (sys/stat.h): Likewise.
746         * modules/sysexits (sysexits.h): Likewise.
747         * modules/unistd (unistd.h): Likewise.
748
749 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
750
751         * modules/closein-tests (Makefile.am): Distribute
752         `test-closein.sh'.
753
754 2007-05-17  Bruno Haible  <bruno@clisp.org>
755
756         * tests/test-printf-posix.output: Renamed from
757         tests/test-fprintf-posix.out.
758         * modules/fprintf-posix-tests: Update.
759         * modules/printf-posix-tests: Update.
760         * modules/vfprintf-posix-tests: Update.
761         * modules/vprintf-posix-tests: Update.
762         * tests/test-fprintf-posix.sh: Update.
763         * tests/test-printf-posix.sh: Update.
764         * tests/test-vfprintf-posix.sh: Update.
765         * tests/test-vprintf-posix.sh: Update.
766         Reported by Ralf Wildenhues.
767
768 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
769
770         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
771         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
772         GCC 4.2, which otherwise issues a lot of warnings.
773         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
774         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
775         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
776         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
777         it should no longer be needed.
778         * lib/string_.h: Likewise.
779         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
780         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
781         * modules/inttypes (inttypes.h): Likewise.
782         * modules/math (math.h): Likewise.
783         * modules/search (search.h): Likewise.
784         * modules/signal (signal.h): Likewise.
785         * modules/stdint (stdint.h): Likewise.
786         * modules/stdio (stdio.h): Likewise.
787         * modules/stdlib (stdlib.h): Likewise.
788         * modules/string (string.h): Likewise.
789         * modules/sys_time (sys/time.h): Likewise.
790         * modules/time (time.h): Likewise.
791         * modules/wchar (wchar.h): Likewise.
792         * modules/wctype (wtype.h): Likewise.
793
794 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
795
796         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
797
798 2007-05-13  Bruno Haible  <bruno@clisp.org>
799
800         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
801         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
802         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
803         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
804         (gl_PREREQ_STRTOK_R): Don't require it here.
805
806 2007-05-13  Bruno Haible  <bruno@clisp.org>
807
808         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
809         when used in C++ mode.
810
811 2007-05-12  Bruno Haible  <bruno@clisp.org>
812
813         * lib/linebuffer.h: Tweak doc.
814         * lib/linebuffer.c: Likewise.
815
816 2007-05-12  James Youngman  <jay@gnu.org>
817
818         * lib/linebuffer.c (readlinebuffer_delim): New function,
819         like readlinebuffer, but use a caller-specified delimiter.
820         (readlinebuffer): Just call readlinebuffer_delim with '\n'
821         as the delimiter.
822         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
823
824 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
825
826         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
827         * modules/openat (Files): Remove openat-die.c.
828         (Depends-on): Add openat-die.
829         * modules/openat-die: New module.
830
831 2007-05-06  Bruno Haible  <bruno@clisp.org>
832
833         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
834         Update with info about Cygwin.
835         * doc/functions/fprintf.texi: Update.
836         * doc/functions/printf.texi: Update.
837         * doc/functions/snprintf.texi: Update.
838         * doc/functions/sprintf.texi: Update.
839         * doc/functions/vfprintf.texi: Update.
840         * doc/functions/vprintf.texi: Update.
841         * doc/functions/vsnprintf.texi: Update.
842         * doc/functions/vsprintf.texi: Update.
843         Reported by Eric Blake.
844
845 2007-05-06  Bruno Haible  <bruno@clisp.org>
846
847         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
848         padding ourselves for the floating-point directives.
849         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
850         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
851         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
852         gl_PRINTF_FLAG_ZERO and test its result. Invoke
853         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
854         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
855         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
856         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
857         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
858         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
859         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
860         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
861         * tests/test-snprintf-posix.h (test_function): Also check the width
862         and some flags in the %f directive.
863         * tests/test-sprintf-posix.h (test_function): Likewise.
864         * tests/test-vasnprintf-posix.c (test_function): Likewise.
865         * tests/test-vasprintf-posix.c (test_function): Likewise.
866         * doc/functions/fprintf.texi: Update.
867         * doc/functions/printf.texi: Update.
868         * doc/functions/snprintf.texi: Update.
869         * doc/functions/sprintf.texi: Update.
870         * doc/functions/vfprintf.texi: Update.
871         * doc/functions/vprintf.texi: Update.
872         * doc/functions/vsnprintf.texi: Update.
873         * doc/functions/vsprintf.texi: Update.
874
875 2007-05-06  Bruno Haible  <bruno@clisp.org>
876
877         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
878         pass the ' flag character to sprintf or snprintf.
879         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
880         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
881         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
882         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
883         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
884         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
885         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
886         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
887         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
888         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
889         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
890         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
891         * tests/test-snprintf-posix.h (test_function): Also check the grouping
892         flag.
893         * tests/test-sprintf-posix.h (test_function): Likewise.
894         * tests/test-vasnprintf-posix.c (test_function): Likewise.
895         * tests/test-vasprintf-posix.c (test_function): Likewise.
896         * doc/functions/fprintf.texi: Update.
897         * doc/functions/printf.texi: Update.
898         * doc/functions/snprintf.texi: Update.
899         * doc/functions/sprintf.texi: Update.
900         * doc/functions/vfprintf.texi: Update.
901         * doc/functions/vprintf.texi: Update.
902         * doc/functions/vsnprintf.texi: Update.
903         * doc/functions/vsprintf.texi: Update.
904
905 2007-05-01  Bruno Haible  <bruno@clisp.org>
906
907         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
908
909 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
910
911         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
912         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
913
914 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
915
916         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
917         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
918         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
919
920 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
921
922         * lib/argp-help.c (struct hol_entry): New member `ord'.
923         (HOL_ENTRY_PTRCMP): Use ord for comparison
924         (hol_sort): Initialize ord.
925
926 2007-05-01  Bruno Haible  <bruno@clisp.org>
927
928         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
929         Reported by Eric Blake.
930         * doc/gnulib.texi (Function Substitutes): Update.
931
932 2007-05-01  Bruno Haible  <bruno@clisp.org>
933
934         * doc/functions.texi: Remove file, now redundant through
935         doc/functions/*.texi.
936
937 2007-05-01  Bruno Haible  <bruno@clisp.org>
938
939         * modules/argp (Depends-on): Add sleep.
940
941 2007-05-01  Bruno Haible  <bruno@clisp.org>
942
943         * modules/sleep-tests: New file.
944         * tests/test-sleep.c: New file.
945
946         * modules/sleep: New file.
947         * lib/sleep.c: New file.
948         * m4/sleep.m4: New file.
949         * lib/unistd_.h (sleep): New declaration.
950         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
951         HAVE_SLEEP.
952         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
953         * doc/functions/sleep.texi: Document the sleep module.
954
955 2007-05-01  Bruno Haible  <bruno@clisp.org>
956
957         * lib/sigprocmask.h: Remove file.
958         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
959         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
960         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
961         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
962         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
963         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
964         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
965         HAVE_SIGSET_T as a shell variable.
966         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
967         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
968         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
969         (Depends-on): Add signal. Remove verify.
970         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
971         (Include): Mention <signal.h> instead of sigprocmask.h.
972         * NEWS: Mention the change.
973         * lib/fatal-signal.c: Don't include sigprocmask.h.
974
975 2007-05-01  Bruno Haible  <bruno@clisp.org>
976
977         * modules/signal: New file.
978         * lib/signal_.h: New file.
979         * m4/signal_h.m4: New file.
980
981 2007-05-01  Bruno Haible  <bruno@clisp.org>
982
983         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
984         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
985         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
986         HAVE_WCTYPE_CTMP_BUG into wctype.h.
987
988 2007-05-01  Bruno Haible  <bruno@clisp.org>
989
990         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
991         configure time.
992         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
993         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
994         * modules/sys_stat (Makefile.am): Substitute their values into
995         sys/stat.h.
996
997 2007-05-01  Bruno Haible  <bruno@clisp.org>
998
999         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
1000         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
1001         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
1002
1003 2007-05-01  Bruno Haible  <bruno@clisp.org>
1004
1005         * doc/header/assert.texi: Undo last change: don't mention the gnulib
1006         'assert' module here.
1007
1008 2007-05-01  Bruno Haible  <bruno@clisp.org>
1009
1010         * doc/functions/*.texi: New files.
1011         * doc/functions/google-ranking.txt: New file.
1012         * doc/gnulib.texi (Function Substitutes): New chapter.
1013         (ctime, inet_ntoa): Remove sections.
1014         * doc/ctime.texi: Remove file.
1015         * doc/inet_ntoa.texi: Remove file.
1016         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
1017         dependencies.
1018         (%.info): New rule, specifying a --reference-limit.
1019
1020 2007-05-01  Bruno Haible  <bruno@clisp.org>
1021
1022         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
1023
1024 2007-05-01  Bruno Haible  <bruno@clisp.org>
1025
1026         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
1027         the portability of 'mkdir' to mingw systems.
1028
1029 2007-05-01  Bruno Haible  <bruno@clisp.org>
1030
1031         * doc/headers/google-ranking.txt: New file.
1032
1033 2007-04-30  Eric Blake  <ebb9@byu.net>
1034
1035         Prefer fseeko to fseek.
1036         * modules/getpass (Depends-on): Add fseeko.
1037         * lib/getpass.c (getpass): Use fseeko, not fseek.
1038
1039 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
1040
1041         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
1042         assumes the sorting is stable, while most qsort implementations
1043         are not.  Use argument addresses to ensure they never compare as
1044         equal.
1045
1046         * tests/test-argp-2.sh (usage-indent test): Fix output
1047         (func_compare): Restore diff options
1048         * tests/test-argp.c: Restore #include "progname.h"
1049
1050 2007-04-29  Bruno Haible  <bruno@clisp.org>
1051
1052         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
1053         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1054         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
1055         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1056         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
1057         (configure.ac): Define CHECK_SNPRINTF_POSIX.
1058         (TESTS, check_PROGRAMS): Add test-snprintf.
1059         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
1060         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
1061         (TESTS, check_PROGRAMS): Add test-vsnprintf.
1062         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
1063         assertions that fail on HP-UX, OSF/1, or IRIX.
1064         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
1065
1066 2007-04-29  Bruno Haible  <bruno@clisp.org>
1067
1068         * MODULES.html.sh (posix_functions): Remove 'contents'.
1069
1070 2007-04-29  Karl Berry  <karl@gnu.org>
1071
1072         * config/srclist.txt (gendocs_template_min): new entry.
1073
1074 2007-04-29  Bruno Haible  <bruno@clisp.org>
1075
1076         Work around fpurge bug on BSD systems.
1077         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
1078         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
1079         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
1080         fpurge to rpl_fpurge if the system already has this function.
1081         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
1082         the case where the system already has this function. Correct invariants
1083         on BSD systems.
1084         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
1085         BSD systems.
1086
1087 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
1088
1089         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
1090         proposed by Sven Verdoolaege.
1091
1092         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
1093         options.
1094         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
1095         (usage and help tests): Update
1096
1097 2007-04-29  Bruno Haible  <bruno@clisp.org>
1098
1099         * tests/test-fflush.c (main): Use a file of size 17, not 10.
1100         Print more information in case of failure. Disable a test on BeOS.
1101
1102 2007-04-29  Bruno Haible  <bruno@clisp.org>
1103
1104         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
1105         This helps debugging on systems on which no gdb is available.
1106
1107 2007-04-29  Bruno Haible  <bruno@clisp.org>
1108
1109         * lib/freading.h: Improve comments.
1110         * lib/fwriting.h: Likewise.
1111         * tests/test-freading.c (main): Don't check freading immediately after
1112         repositioning. Needed for glibc.
1113
1114 2007-04-29  Bruno Haible  <bruno@clisp.org>
1115
1116         * lib/freading.c (freading): Trivial simplification.
1117
1118 2007-04-28  Bruno Haible  <bruno@clisp.org>
1119
1120         * tests/test-fwriting.c (main): Also test the interaction between
1121         fflush and fwriting.
1122         * modules/fwriting-tests (Depends-on): Add fflush.
1123
1124         * tests/test-freading.c (main): Also test the interaction between
1125         fflush and freading.
1126         * modules/freading-tests (Depends-on): Add fflush.
1127
1128 2007-04-28  Bruno Haible  <bruno@clisp.org>
1129
1130         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
1131         fseeko and ftello.
1132         Suggested by Eric Blake.
1133
1134 2007-04-28  Jim Meyering  <jim@meyering.net>
1135
1136         Avoid false-negative in gl_STDINT_H's C99 conformance test.
1137         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
1138         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
1139
1140 2007-04-27  Eric Blake  <ebb9@byu.net>
1141
1142         * doc/headers/assert.texi (assert.h): Document assert module use.
1143
1144 2007-04-27  Bruno Haible  <bruno@clisp.org>
1145
1146         * doc/headers/*.texi: New files.
1147         * doc/gnulib.texi (Header File Substitutes): New chapter.
1148         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
1149         dependencies.
1150         (standards.info ,standards.html, standards.dvi): Update dependencies.
1151         (mostlyclean, clean): New targets.
1152
1153 2007-04-27  Bruno Haible  <bruno@clisp.org>
1154
1155         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
1156         * modules/sysexits (Files, Makefile.am): Update.
1157
1158         * lib/sys_socket_.h: Renamed from lib/socket_.h.
1159         * modules/sys_socket (Files, Makefile.am): Update.
1160
1161         * lib/sys_stat_.h: Renamed from lib/stat_.h.
1162         * modules/sys_stat (Files, Makefile.am): Update.
1163
1164 2007-04-27  Eric Blake  <ebb9@byu.net>
1165
1166         * lib/freading.h: Improve comments.
1167         * lib/fwriting.h: Likewise.
1168         * lib/fflush.c: Likewise.
1169
1170         Fix closein for mingw.
1171         * modules/closein-tests: Add tests for closein.
1172         * tests/test-closein.c: New file.
1173         * tests/test-closein.sh: Likewise.
1174         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
1175         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
1176
1177 2007-04-27  Bruno Haible  <bruno@clisp.org>
1178
1179         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
1180         version is < 6.
1181         * lib/math_.h [__DECC]: Likewise.
1182         * lib/stdio_.h [__DECC]: Likewise.
1183         * lib/stdlib_.h [__DECC]: Likewise.
1184         * lib/string_.h [__DECC]: Likewise.
1185         * lib/time_.h [__DECC]: Likewise.
1186         * lib/wchar_.h [__DECC]: Likewise.
1187         * lib/wctype_.h [__DECC]: Likewise.
1188
1189 2007-04-27  Bruno Haible  <bruno@clisp.org>
1190
1191         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
1192
1193 2007-04-27  Bruno Haible  <bruno@clisp.org>
1194
1195         * lib/fflush.c: Add comments.
1196         * modules/fpurge-tests (Depends-on): Add fflush.
1197         * modules/freadable-tests (Depends-on): Likewise.
1198         * modules/fwritable-tests (Depends-on): Likewise.
1199
1200 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
1201
1202         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
1203         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
1204         Report by Bruno Haible <bruno@clisp.org>.
1205
1206 2007-04-26  Eric Blake  <ebb9@byu.net>
1207
1208         Fix fflush on mingw.
1209         * modules/fflush (Depends-on): Add freading.
1210         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
1211         but unread data.
1212
1213 2007-04-26  Eric Blake  <ebb9@byu.net>
1214         and Bruno Haible  <bruno@clisp.org>
1215
1216         Implement freading and fwriting.
1217         * lib/freading.c: New file.
1218         * lib/freading.h: Likewise.
1219         * m4/freading.m4: Likewise.
1220         * modules/freading: Likewise.
1221         * modules/freading-tests: Likewise.
1222         * tests/test-freading.c: Likewise.
1223         * lib/fwriting.c: New file.
1224         * lib/fwriting.h: Likewise.
1225         * m4/fwriting.m4: Likewise.
1226         * modules/fwriting: Likewise.
1227         * modules/fwriting-tests: Likewise.
1228         * tests/test-fwriting.c: Likewise.
1229         * MODULES.html.sh (File stream based Input/Output): Mention them.
1230
1231 2007-04-26  Bruno Haible  <bruno@clisp.org>
1232
1233         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
1234         'long' when we assume it.
1235         Suggested by Eric Blake.
1236
1237 2007-04-26  Bruno Haible  <bruno@clisp.org>
1238
1239         Ensure fseeko, ftello are declared on glibc systems.
1240         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
1241         * modules/fseeko (configure.ac-early): Likewise.
1242         * modules/ftello (configure.ac-early): Likewise.
1243         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
1244         AC_FUNC_FSEEKO for this.
1245         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
1246         (gl_CHECK_FSEEKO): Remove macro.
1247
1248 2007-04-26  Bruno Haible  <bruno@clisp.org>
1249
1250         * tests/test-fflush.c (main): Also check the ftell result after
1251         fflush and fseek/fseeko.
1252         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
1253         file descriptor position cache in the stream.
1254         * lib/fseeko.c (rpl_fseeko): Likewise.
1255
1256 2007-04-26  Bruno Haible  <bruno@clisp.org>
1257
1258         * modules/fflush-tests (Depends-on): Add fseeko.
1259
1260 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
1261             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1262
1263         * lib/argz_.h: ensure error_t definition is obtained in same
1264         mechanism system argz.h would have.
1265         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
1266         argz facilities are known bad.  Err on the side of caution if
1267         cross-compiling.
1268
1269 2007-04-25  Eric Blake  <ebb9@byu.net>
1270
1271         * lib/fpurge.c (includes): Use stdlib.h for free.
1272         * tests/test-fflush.c (main): Also test fflush-fseeko.
1273
1274 2007-04-25  Bruno Haible  <bruno@clisp.org>
1275
1276         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
1277         * lib/fseeko.c: New file.
1278         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
1279         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
1280         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
1281         gl_FUNC_FSEEKO.
1282         (gl_FUNC_FSEEKO): Invoke it.
1283         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
1284         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
1285         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
1286
1287 2007-04-25  Bruno Haible  <bruno@clisp.org>
1288
1289         * modules/fflush (Depends-on): Add ftello.
1290
1291 2007-04-25  Bruno Haible  <bruno@clisp.org>
1292
1293         * modules/ftello-tests: New file.
1294         * tests/test-ftello.c: New file.
1295
1296         * modules/ftello: New file.
1297         * m4/ftello.m4: New file.
1298         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
1299         HAVE_FTELLO.
1300         * lib/stdio_.h (ftello): New declaration.
1301         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
1302         HAVE_FTELLO.
1303
1304 2007-04-25  Bruno Haible  <bruno@clisp.org>
1305
1306         * modules/fseeko-tests: New file.
1307         * tests/test-fseeko.c: New file.
1308
1309         * modules/fseeko: New file.
1310         * m4/fseeko.m4: New file.
1311         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
1312         HAVE_FSEEKO.
1313         * lib/stdio_.h (fseeko): New declaration.
1314         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
1315         HAVE_FSEEKO.
1316
1317 2007-04-25  Bruno Haible  <bruno@clisp.org>
1318
1319         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
1320
1321 2007-04-25  Bruno Haible  <bruno@clisp.org>
1322
1323         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
1324         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
1325         * tests/test-unistd.c: Likewise.
1326         * tests/test-fcntl.c: Likewise.
1327
1328 2007-04-23  Eric Blake  <ebb9@byu.net>
1329
1330         * lib/fflush.c: Fix missing include.
1331         Reported by Bruno Haible.
1332
1333 2007-04-23  Bruno Haible  <bruno@clisp.org>
1334
1335         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
1336         Reported by Eric Blake.
1337
1338 2007-04-23  Bruno Haible  <bruno@clisp.org>
1339
1340         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
1341
1342 2007-04-23  Bruno Haible  <bruno@clisp.org>
1343
1344         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
1345
1346 2007-04-23  Bruno Haible  <bruno@clisp.org>
1347
1348         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
1349         Needed on HP-UX 11.
1350
1351 2007-04-16  Eric Blake  <ebb9@byu.net>
1352
1353         Make fflush rely on fpurge.
1354         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
1355         open coding all variants.
1356         * modules/fflush (Depends-on): Add fpurge and unistd.
1357         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
1358         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
1359
1360         Fix --with-tests compilation on cygwin.
1361         * modules/argmatch-tests (Makefile.am): List gnulib library first
1362         in LDADD.
1363         * modules/argp-tests (Makefile.am): Likewise.
1364         * modules/array-list-tests (Makefile.am): Likewise.
1365         * modules/array-oset-tests (Makefile.am): Likewise.
1366         * modules/avltree-list-tests (Makefile.am): Likewise.
1367         * modules/avltree-oset-tests (Makefile.am): Likewise.
1368         * modules/avltreehash-list-tests (Makefile.am): Likewise.
1369         * modules/carray-list-tests (Makefile.am): Likewise.
1370         * modules/dirname-tests (Makefile.am): Likewise.
1371         * modules/frexp-tests (Makefile.am): Likewise.
1372         * modules/isnanl-tests (Makefile.am): Likewise.
1373         * modules/linked-list-tests (Makefile.am): Likewise.
1374         * modules/linkedhash-list-tests (Makefile.am): Likewise.
1375         * modules/lock-tests (Makefile.am): Likewise.
1376         * modules/rbtree-list-tests (Makefile.am): Likewise.
1377         * modules/rbtree-oset-tests (Makefile.am): Likewise.
1378         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
1379         * modules/tls-tests (Makefile.am): Likewise.
1380         * modules/tsearch-tests (Makefile.am): Likewise.
1381         * modules/xvasprintf-tests (Makefile.am): Likewise.
1382
1383         Fix fpurge for cygwin.
1384         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
1385         value.
1386         * modules/fpurge-tests (Depends-on): Clean up trash.
1387
1388 2007-04-16  Simon Josefsson  <simon@josefsson.org>
1389
1390         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
1391
1392         * m4/autobuild.m4: Re-indent.
1393
1394 2007-04-13  Bruno Haible  <bruno@clisp.org>
1395
1396         * modules/fpurge-tests: New file.
1397         * tests/test-fpurge.c: New file.
1398
1399         * modules/fpurge: New file.
1400         * lib/fpurge.h: New file.
1401         * lib/fpurge.c: New file.
1402         * m4/fpurge.m4: New file.
1403
1404 2007-04-13  Bruno Haible  <bruno@clisp.org>
1405
1406         * modules/fbufmode-tests: New file.
1407         * tests/test-fbufmode.c: New file.
1408
1409         * modules/fbufmode: New file.
1410         * lib/fbufmode.h: New file.
1411         * lib/fbufmode.c: New file.
1412         * m4/fbufmode.m4: New file.
1413
1414 2007-04-13  Bruno Haible  <bruno@clisp.org>
1415
1416         * modules/fwritable-tests: New file.
1417         * tests/test-fwritable.c: New file.
1418
1419         * modules/fwritable: New file.
1420         * lib/fwritable.h: New file.
1421         * lib/fwritable.c: New file.
1422         * m4/fwritable.m4: New file.
1423
1424 2007-04-13  Bruno Haible  <bruno@clisp.org>
1425
1426         * modules/freadable-tests: New file.
1427         * tests/test-freadable.c: New file.
1428
1429         * modules/freadable: New file.
1430         * lib/freadable.h: New file.
1431         * lib/freadable.c: New file.
1432         * m4/freadable.m4: New file.
1433
1434 2007-04-13  Bruno Haible  <bruno@clisp.org>
1435
1436         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
1437         MOSTLYCLEANFILES.
1438
1439 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
1440
1441         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
1442         gzip bootstrap.conf to avoid dragging in i18n machinery.
1443         (gnulib_tool_option): Use it.
1444
1445 2007-04-13  Bruno Haible  <bruno@clisp.org>
1446
1447         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
1448         %F directives.
1449         * tests/test-vasprintf-posix.c (test_function): Likewise.
1450         * tests/test-snprintf-posix.h (test_function): Likewise.
1451         * tests/test-sprintf-posix.h (test_function): Likewise.
1452         * tests/test-fprintf-posix.h (test_function): Likewise.
1453         * tests/test-printf-posix.h (test_function): Likewise.
1454         * tests/test-fprintf-posix.out: Likewise.
1455
1456 2007-04-13  Bruno Haible  <bruno@clisp.org>
1457
1458         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
1459         * modules/tls-tests (configure.ac): Likewise.
1460         Reported by Arto C. Nirkko <anirkko@insel.ch>.
1461
1462 2007-04-13  Bruno Haible  <bruno@clisp.org>
1463
1464         * lib/tls.c (glthread_tls_get): Fix return type.
1465         Patch by Arto C. Nirkko <anirkko@insel.ch>.
1466
1467 2007-04-12  Eric Blake  <ebb9@byu.net>
1468
1469         * modules/gettime (Depends-on): Remove gettime.
1470         Reported by Dmitry V. Levin.
1471
1472 2007-04-12  Bruno Haible  <bruno@clisp.org>
1473
1474         * modules/fflush (Include): Mention <stdio.h>.
1475         * modules/strtoimax (Include): Mention <inttypes.h>.
1476         * modules/strtoumax (Include): Likewise.
1477
1478 2007-04-12  Eric Blake  <ebb9@byu.net>
1479
1480         * .cvsignore: New file.
1481         * .gitignore: Likewise.
1482
1483 2007-04-12  Bruno Haible  <bruno@clisp.org>
1484
1485         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
1486         not before, since $(LDADD) often contains libgnu.a.
1487         * modules/striconv-tests (test_striconv_LDADD): Likewise.
1488         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
1489         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
1490         Needed on Cygwin.
1491
1492 2007-04-12  Eric Blake  <ebb9@byu.net>
1493
1494         Work around glibc's failure to flush stdin on fclose.
1495         * lib/closein.c (close_stdin): Flush stdin before closing.
1496
1497         Work around glibc's failure to reset seekable stdin on exit.
1498         * modules/closein: New module.
1499         * lib/closein.c: New file.
1500         * lib/closein.h: Likewise.
1501         * m4/closein.m4: Likewise.
1502         * MODULES.html.sh (File stream based Input/Output): Document it.
1503
1504 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1505
1506         * gnulib-tool: Rename generated 'autobuild' script to
1507         'do-autobuild' in --create-megatestdir output.
1508
1509         * doc/gnulib.texi (Build robot for gnulib): Fix.
1510
1511 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1512
1513         * modules/sysexits (Depends-on): Add absolute-header.
1514
1515 2007-04-12  Eric Blake  <ebb9@byu.net>
1516
1517         No need to preserve errno on success.
1518         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
1519         Reported by Bruno Haible.
1520
1521 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1522
1523         * MODULES.html.sh (Support for maintaining and releasing
1524         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
1525
1526 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1527
1528         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
1529
1530 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1531
1532         * modules/autobuild: New module.
1533
1534         * m4/autobuild.m4: New file.
1535
1536 2007-04-11  Bruno Haible  <bruno@clisp.org>
1537
1538         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
1539         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
1540         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
1541         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
1542         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1543         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1544         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1545         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1546         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1547         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1548         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
1549         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1550         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1551         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
1552         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1553         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1554         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
1555         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1556         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1557         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
1558         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1559         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1560         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
1561         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1562         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1563         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
1564         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1565         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1566         Reported by Eric Blake.
1567
1568 2007-04-11  Bruno Haible  <bruno@clisp.org>
1569
1570         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
1571
1572 2007-04-10  Bruno Haible  <bruno@clisp.org>
1573
1574         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
1575         for NaN and Infinity. Needed on FreeBSD 6.1.
1576         * tests/test-vasnprintf-posix.c (test_function): Undo last change
1577         regarding results for "%010a" of Infinity and NaN.
1578         * tests/test-vasprintf-posix.c (test_function): Likewise.
1579         * tests/test-snprintf-posix.h (test_function): Likewise.
1580         * tests/test-sprintf-posix.h (test_function): Likewise.
1581         * tests/test-fprintf-posix.h (test_function): Likewise.
1582         * tests/test-printf-posix.h (test_function): Likewise.
1583         * tests/test-fprintf-posix.out: Likewise.
1584
1585 2007-04-10  Bruno Haible  <bruno@clisp.org>
1586
1587         * modules/locale-tests: New file.
1588         * tests/test-locale.c: New file.
1589
1590         * modules/locale: New file.
1591         * lib/locale_.h: New file.
1592         * m4/locale_h.m4: New file.
1593
1594 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
1595             Bruno Haible  <bruno@clisp.org>
1596
1597         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
1598         be determined, test for availability of the copysignf, copysign,
1599         copysignl functions.
1600         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
1601         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
1602         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
1603
1604 2007-04-09  Eric Blake  <ebb9@byu.net>
1605
1606         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
1607         * modules/stdio (Makefile.am): Support fflush.
1608         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
1609         * modules/fflush: New file.
1610         * lib/fflush.c: Likewise.
1611         * m4/fflush.m4: Likewise.
1612         * modules/fflush-tests: New test.
1613         * tests/test-fflush.c: Likewise.
1614         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
1615
1616 2007-04-06  Bruno Haible  <bruno@clisp.org>
1617
1618         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
1619         (VASNPRINTF): Use signbit for faster determination whether to print a
1620         minus sign.
1621         * modules/vasnprintf (Files): Remove lib/float+.h.
1622         * modules/fprintf-posix (Depends-on): Add signbit.
1623         * modules/snprintf-posix (Depends-on): Likewise.
1624         * modules/sprintf-posix (Depends-on): Likewise.
1625         * modules/vasnprintf-posix (Depends-on): Likewise.
1626         * modules/vasprintf-posix (Depends-on): Likewise.
1627         * modules/vfprintf-posix (Depends-on): Likewise.
1628         * modules/vsnprintf-posix (Depends-on): Likewise.
1629         * modules/vsprintf-posix (Depends-on): Likewise.
1630
1631 2007-04-06  Bruno Haible  <bruno@clisp.org>
1632
1633         * tests/test-frexp.c (main): Test also the sign bit of zero results.
1634         * tests/test-frexpl.c (main): Likewise.
1635         * tests/test-ldexpl.c (main): Likewise.
1636         * modules/frexp-tests (Depends-on): Add signbit.
1637         * modules/frexpl-tests (Depdends-on): Likewise.
1638         * modules/ldexpl-tests (Depdends-on): Likewise.
1639
1640 2007-04-06  Bruno Haible  <bruno@clisp.org>
1641
1642         * modules/signbit-tests: New file.
1643         * tests/test-signbit.c: New file.
1644
1645         * modules/signbit: New file.
1646         * lib/signbitf.c: New file.
1647         * lib/signbitd.c: New file.
1648         * lib/signbitl.c: New file.
1649         * m4/signbit.m4: New file.
1650         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
1651         (signbit): New macro.
1652         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
1653         REPLACE_SIGNBIT.
1654         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
1655         REPLACE_FREXPL into math.h.
1656
1657 2007-04-06  Bruno Haible  <bruno@clisp.org>
1658
1659         * modules/isnanf-nolibm-tests: New file.
1660         * tests/test-isnanf.c: New file.
1661
1662         * modules/isnanf-nolibm: New file.
1663         * lib/isnanf.h: New file.
1664         * lib/isnanf.c: New file.
1665         * lib/isnan.c: Consider the USE_FLOAT macro.
1666         * m4/isnanf.m4: New file.
1667
1668 2007-04-06  Bruno Haible  <bruno@clisp.org>
1669
1670         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
1671         (Link): New section.
1672
1673         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
1674
1675 2007-04-06  Bruno Haible  <bruno@clisp.org>
1676
1677         Assume the 'long double' type.
1678         * m4/longdouble.m4: Remove file.
1679         * config/srclist.txt: Don't mention longdouble.m4.
1680         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
1681         * lib/float+.h: Likewise.
1682         * lib/frexp.c: Likewise.
1683         * lib/printf-args.h: Likewise.
1684         * lib/printf-args.c: Likewise.
1685         * lib/printf-frexp.c: Likewise.
1686         * lib/printf-parse.c: Likewise.
1687         * lib/vasnprintf.c: Likewise.
1688         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
1689         * m4/intl.m4: Likewise.
1690         * m4/isnanl.m4: Likewise.
1691         * m4/printf.m4: Likewise.
1692         * m4/printf-frexpl.m4: Likewise.
1693         * m4/vasnprintf.m4: Likewise.
1694         * modules/allocsa (Files): Remove m4/longdouble.m4.
1695         * modules/gettext (Files): Likewise.
1696         * modules/relocatable-prog-wrapper (Files): Likewise.
1697         * modules/vasnprintf (Files): Likewise.
1698         * modules/isnanl (Files): Likewise.
1699         (Include): Simplify.
1700         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
1701         (Include): Simplify.
1702         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
1703         (Include): Simplify.
1704         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
1705         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1706         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
1707         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1708         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1709         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1710         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
1711         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1712         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1713         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1714         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
1715         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1716         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
1717         * tests/test-isnanl.c: Likewise.
1718         * tests/test-snprintf-posix.h: Likewise.
1719         * tests/test-sprintf-posix.h: Likewise.
1720         * tests/test-vasnprintf-posix.c: Likewise.
1721         * tests/test-vasnprintf-posix2.c: Likewise.
1722         * tests/test-vasprintf-posix.c: Likewise.
1723
1724 2007-04-06  Bruno Haible  <bruno@clisp.org>
1725
1726         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
1727         * lib/math_.h [__DECC]: Include the overridden include file through
1728         #include_next, outside the double-inclusion guard.
1729         * lib/stdio_.h [__DECC]: Likewise.
1730         * lib/stdlib_.h [__DECC]: Likewise.
1731         * lib/string_.h [__DECC]: Likewise.
1732         * lib/time_.h [__DECC]: Likewise.
1733         * lib/wchar_.h [__DECC]: Likewise.
1734         * lib/wctype_.h [__DECC]: Likewise.
1735         * lib/inttypes_.h [__DECC]: Likewise.
1736         Reported by Albert Chin <china@thewrittenword.com> in
1737         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
1738
1739 2007-04-04  Eric Blake  <ebb9@byu.net>
1740
1741         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
1742         1.5.x.
1743
1744 2007-04-04  Bruno Haible  <bruno@clisp.org>
1745
1746         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
1747         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
1748
1749 2007-04-04  Bruno Haible  <bruno@clisp.org>
1750
1751         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
1752         results for "%010a" of Infinity and NaN.
1753         * tests/test-vasprintf-posix.c (test_function): Likewise.
1754         * tests/test-snprintf-posix.h (test_function): Likewise.
1755         * tests/test-sprintf-posix.h (test_function): Likewise.
1756         * tests/test-fprintf-posix.h (test_function): Remove these tests.
1757         * tests/test-printf-posix.h (test_function): Likewise.
1758         * tests/test-fprintf-posix.out: Update.
1759         Needed for FreeBSD 6.1.
1760
1761 2007-04-04  Bruno Haible  <bruno@clisp.org>
1762
1763         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
1764         directly used by the gnulib modules nor by gnulib-tool.
1765
1766 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1767
1768         * DEPENDENCIES: Give overall description of version dependency
1769         desirability.  Use more-typical names for apps.
1770         Add shell, coreutils, diffutils, grep, tar, gzip.
1771
1772 2007-04-04  Simon Josefsson  <simon@josefsson.org>
1773
1774         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
1775
1776 2007-04-04  Karl Berry  <karl@gnu.org>
1777
1778         * MODULES.html.sh (func_module): missing '.
1779
1780 2007-04-03  Bruno Haible  <bruno@clisp.org>
1781
1782         * modules/argmatch-tests (Makefile.am): New variable
1783         test_argmatch_LDADD.
1784         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
1785         * modules/array-list-tests (Makefile.am): New variable
1786         test_array_list_LDADD.
1787         * modules/array-oset-tests (Makefile.am): New variable
1788         test_array_oset_LDADD.
1789         * modules/avltree-list-tests (Makefile.am): New variable
1790         test_avltree_list_LDADD.
1791         * modules/avltree-oset-tests (Makefile.am): New variable
1792         test_avltree_oset_LDADD.
1793         * modules/avltreehash-list-tests (Makefile.am): New variable
1794         test_avltreehash_list_LDADD.
1795         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
1796         test_canonicalize_lgpl_LDADD.
1797         * modules/carray-list-tests (Makefile.am): New variable
1798         test_carray_list_LDADD.
1799         * modules/dirname-tests (Makefile.am): New variable
1800         test_dirname_LDADD.
1801         * modules/linked-list-tests (Makefile.am): New variable
1802         test_linked_list_LDADD.
1803         * modules/linkedhash-list-tests (Makefile.am): New variable
1804         test_linkedhash_list_LDADD.
1805         * modules/rbtree-list-tests (Makefile.am): New variable
1806         test_rbtree_list_LDADD.
1807         * modules/rbtree-oset-tests (Makefile.am): New variable
1808         test_rbtree_oset_LDADD.
1809         * modules/rbtreehash-list-tests (Makefile.am): New variable
1810         test_rbtreehash_list_LDADD.
1811         * modules/xvasprintf-tests (Makefile.am): New variable
1812         test_xvasprintf_LDADD.
1813         Reported by Eric Blake.
1814
1815 2007-04-03  Eric Blake  <ebb9@byu.net>
1816
1817         * DEPENDENCIES: Weaken m4 requirements.
1818
1819 2007-04-03  Bruno Haible  <bruno@clisp.org>
1820
1821         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
1822         * modules/isnanl-tests (configure.ac): Likewise.
1823
1824 2007-04-03  Ben Pfaff  <blp@gnu.org>
1825
1826         * modules/iconv_open: Add $(srcdir)/ to source directory
1827         references in Makefile fragments that call gperf, to fix VPATH
1828         builds.
1829
1830 2007-04-03  Bruno Haible  <bruno@clisp.org>
1831
1832         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
1833         * lib/ldexpl.c: Undo last change.
1834
1835 2007-04-03  Bruno Haible  <bruno@clisp.org>
1836
1837         * modules/printf-frexpl (Depends-on): Undo last change.
1838         (Files): Add m4/ldexpl.m4.
1839
1840 2007-04-03  Bruno Haible  <bruno@clisp.org>
1841
1842         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
1843         * modules/isnanl (Link): New section.
1844
1845         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
1846         * modules/frexp (Link): New section.
1847
1848         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
1849         * modules/frexpl (Link): New section.
1850
1851         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
1852         * modules/ldexpl (Link): New section.
1853
1854 2007-04-03  Bruno Haible  <bruno@clisp.org>
1855
1856         * modules/TEMPLATE-EXTENDED: New file.
1857         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
1858
1859 2007-04-03  Bruno Haible  <bruno@clisp.org>
1860
1861         * DEPENDENCIES: New file.
1862         Suggested by Simon Josefsson.
1863
1864 2007-04-03  Bruno Haible  <bruno@clisp.org>
1865
1866         * doc/gnulib.texi: Escape @.
1867
1868 2007-04-03  James Youngman  <jay@gnu.org>
1869         and Paul Eggert  <eggert@cs.ucla.edu>
1870
1871         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
1872         birthtime on all systems that have birthtime, not just those which
1873         use st_birthtimensec rather than st_birthtim.  Putting zero in
1874         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
1875         that the birth time is not available for files on an NFS mount.
1876
1877 2007-04-03  Simon Josefsson  <simon@josefsson.org>
1878
1879         * modules/memxor: Move back from crypto/, suggested by Bruno.
1880         * modules/crypto/hmac-sha1: Fix memxor dependency.
1881
1882         * modules/crypto/gc: Moved from ../.
1883
1884 2007-04-02  Eric Blake  <ebb9@byu.net>
1885
1886         * lib/ldexpl.c (includes): Avoid libm.
1887
1888         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
1889
1890 2007-04-02  Bruno Haible  <bruno@clisp.org>
1891
1892         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
1893         on IRIX.
1894
1895 2007-04-02  Bruno Haible  <bruno@clisp.org>
1896
1897         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
1898         x86 or x86_64 platforms running MacOS X.
1899         Reported by Ryan Schmidt <@ryandesign.com>.
1900
1901 2007-04-02  Bruno Haible  <bruno@clisp.org>
1902
1903         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
1904         i386.
1905
1906 2007-04-01  Simon Josefsson  <simon@josefsson.org>
1907
1908         * modules/crypto/arcfour: Moved from ../.
1909         * modules/crypto/arcfour-tests: Moved from ../.
1910         * modules/crypto/arctwo: Moved from ../.
1911         * modules/crypto/arctwo-tests: Moved from ../.
1912         * modules/crypto/des: Moved from ../.
1913         * modules/crypto/des-tests: Moved from ../.
1914         * modules/crypto/gc-arcfour: Moved from ../.
1915         * modules/crypto/gc-arcfour-tests: Moved from ../.
1916         * modules/crypto/gc-arctwo: Moved from ../.
1917         * modules/crypto/gc-arctwo-tests: Moved from ../.
1918         * modules/crypto/gc-des: Moved from ../.
1919         * modules/crypto/gc-des-tests: Moved from ../.
1920         * modules/crypto/gc-hmac-md5: Moved from ../.
1921         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
1922         * modules/crypto/gc-hmac-sha1: Moved from ../.
1923         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
1924         * modules/crypto/gc-md2: Moved from ../.
1925         * modules/crypto/gc-md2-tests: Moved from ../.
1926         * modules/crypto/gc-md4: Moved from ../.
1927         * modules/crypto/gc-md4-tests: Moved from ../.
1928         * modules/crypto/gc-md5: Moved from ../.
1929         * modules/crypto/gc-md5-tests: Moved from ../.
1930         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
1931         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
1932         * modules/crypto/gc-random: Moved from ../.
1933         * modules/crypto/gc-rijndael: Moved from ../.
1934         * modules/crypto/gc-rijndael-tests: Moved from ../.
1935         * modules/crypto/gc-sha1: Moved from ../.
1936         * modules/crypto/gc-sha1-tests: Moved from ../.
1937         * modules/crypto/gc-tests: Moved from ../.
1938         * modules/crypto/hmac-md5: Moved from ../.
1939         * modules/crypto/hmac-md5-tests: Moved from ../.
1940         * modules/crypto/hmac-sha1: Moved from ../.
1941         * modules/crypto/hmac-sha1-tests: Moved from ../.
1942         * modules/crypto/md2: Moved from ../.
1943         * modules/crypto/md2-tests: Moved from ../.
1944         * modules/crypto/md4: Moved from ../.
1945         * modules/crypto/md4-tests: Moved from ../.
1946         * modules/crypto/md5: Moved from ../.
1947         * modules/crypto/md5-tests: Moved from ../.
1948         * modules/crypto/memxor: Moved from ../.
1949         * modules/crypto/rijndael: Moved from ../.
1950         * modules/crypto/rijndael-tests: Moved from ../.
1951         * modules/crypto/sha1: Moved from ../.
1952
1953 2007-03-30  James Youngman  <jay@gnu.org>
1954
1955         * tests/test-stat-time.c (prepare_test): use chmod() rather than
1956         rename() to change the ctime of a file (because ctime is unaffected
1957         by rename on jfs2 on AIX 5.1).
1958         (main): Start by doing cleanup, in case a previous run failed leaving
1959         test files behind.
1960
1961 2007-03-31  Bruno Haible  <bruno@clisp.org>
1962
1963         Support old proprietary implementations of iconv.
1964         * modules/iconv_open: New file.
1965         * lib/iconv_.h: New file.
1966         * m4/iconv_h.m4: New file.
1967         * lib/iconv_open.c: New file.
1968         * lib/iconv_open-aix.gperf: New file.
1969         * lib/iconv_open-hpux.gperf: New file.
1970         * lib/iconv_open-irix.gperf: New file.
1971         * lib/iconv_open-osf.gperf: New file.
1972         * m4/iconv_open.m4: New file.
1973         * modules/linebreak (Depends-on): Add iconv_open.
1974         * modules/striconv (Depends-on): Likewise.
1975         * modules/striconveh (Depends-on): Likewise.
1976         * modules/unicodeio (Depends-on): Likewise.
1977         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
1978         (iconv_t)(-1).
1979         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
1980         conversion if cd is (iconv_t)(-1).
1981         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
1982         is not possible.
1983
1984 2007-03-31  Bruno Haible  <bruno@clisp.org>
1985
1986         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
1987         work on Solaris either. Protect also second use of "autodetect_jp".
1988
1989 2007-03-31  Bruno Haible  <bruno@clisp.org>
1990
1991         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
1992         the function is not present.
1993
1994 2007-03-31  Bruno Haible  <bruno@clisp.org>
1995
1996         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
1997         the function is not present.
1998
1999 2007-03-31  Bruno Haible  <bruno@clisp.org>
2000
2001         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
2002         a bug in HP-UX iconv_open().
2003
2004 2007-03-31  Bruno Haible  <bruno@clisp.org>
2005
2006         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
2007         (Mathematics <math.h>): New section, add fpieee.
2008         (Input/output <stdio.h>): Add fseterr.
2009         (Mathematics <math.h>): New section, add printf-frexp.
2010         (Container data structures): Add sublist.
2011         (Core language properties): Add fpucw, inline.
2012         (Functions for greatest-width integer types <inttypes.h>): Add
2013         imaxabs, imaxdiv, inttypes.
2014         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
2015         isnanl-nolibm, ldexp.
2016         (Mathematics <math.h>): New section, add printf-frexpl.
2017         (Support for systems lacking POSIX:2001): Add fprintf-posix,
2018         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
2019         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
2020         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
2021         (Unicode string functions): Add unistr/u*-mbtoucr.
2022         (Java): Add javacomp-script, javaexec-script.
2023         (C#): Add csharpcomp-script, csharpexec-script.
2024         (Support for building libraries and executables): Add havelib,
2025         relocatable-*.
2026         (Support for maintaining and releasing projects): Renamed from
2027         'Support for maintaining and release projects'. Add announce-gen.
2028
2029 2007-03-31  Bruno Haible  <bruno@clisp.org>
2030
2031         * README: Talk primarily about git.
2032         (git and CVS): Renamed from CVS.
2033         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
2034         gnulib is available through git.
2035         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
2036
2037 2007-03-30  Bruno Haible  <bruno@clisp.org>
2038
2039         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
2040         * lib/poll_.h: Likewise.
2041         * lib/stat_.h: Likewise.
2042         * lib/sys_time_.h: Likewise.
2043         * lib/sysexit_.h: Likewise.
2044         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
2045         * lib/stdbool_.h: Likewise.
2046         * lib/byteswap_.h: Add double-inclusion guard.
2047
2048 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
2049
2050         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
2051
2052 2007-03-30  Karl Berry  <karl@gnu.org>
2053
2054         * config/srclist-update: double space after USA in the license
2055         substitution, since that's how it's usually (?) written.
2056
2057 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
2058
2059         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
2060         reported by Bruno Haible.
2061
2062 2007-03-29  Bruno Haible  <bruno@clisp.org>
2063
2064         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
2065         a bug in AIX iconv().
2066
2067 2007-03-29  Bruno Haible  <bruno@clisp.org>
2068
2069         * modules/ldexpl-tests: New file.
2070         * tests/test-ldexpl.c: New file.
2071
2072 2007-03-29  Bruno Haible  <bruno@clisp.org>
2073
2074         * lib/ldexpl.c: Include fpucw.h.
2075         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
2076         multiplication.
2077         * modules/ldexpl (Depends-on): Add fpucw.
2078
2079 2007-03-29  Bruno Haible  <bruno@clisp.org>
2080
2081         * modules/ldexpl: New file.
2082         * m4/ldexpl.m4: New file.
2083         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
2084         set.
2085         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
2086         REPLACE_LDEXPL.
2087         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
2088         REPLACE_LDEXPL.
2089         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
2090         gl_FUNC_LDEXPL_WORKS.
2091         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
2092         * modules/mathl (Files): Remove lib/ldexpl.c.
2093         (Depends-on): Add ldexpl.
2094
2095 2007-03-29  Bruno Haible  <bruno@clisp.org>
2096
2097         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
2098
2099 2007-03-29  Bruno Haible  <bruno@clisp.org>
2100
2101         * tests/test-striconveh.c (main): Don't assume that a direct conversion
2102         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
2103         and possibly also HP-UX.
2104         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
2105         work on AIX, IRIX, HP-UX, OSF/1.
2106         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
2107         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
2108         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
2109         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
2110         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
2111         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
2112
2113 2007-03-29  Bruno Haible  <bruno@clisp.org>
2114
2115         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
2116
2117 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
2118
2119         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
2120         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
2121
2122 2007-03-29  Eric Blake  <ebb9@byu.net>
2123
2124         * lib/acl-internal.h: Remove redundant include.
2125         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
2126         Cygwin when a file is locked.
2127
2128 2007-03-29  Bruno Haible  <bruno@clisp.org>
2129
2130         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
2131         file.
2132         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
2133
2134 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
2135
2136         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
2137         try to remove a parent directory if the child couldn't be removed
2138         (except for the first rmdir, which could fail because the child
2139         doesn't exist).  Problem reported by Jeff Blaine in
2140         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
2141
2142 2007-03-28  Bruno Haible  <bruno@clisp.org>
2143
2144         * lib/striconveh.c (utf8conv_carefully): New function.
2145         (mem_cd_iconveh_internal): Invoke it.
2146
2147 2007-03-28  Bruno Haible  <bruno@clisp.org>
2148
2149         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
2150         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
2151         input.
2152         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
2153         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
2154         unistr/u8-uctomb.
2155
2156 2007-03-28  Bruno Haible  <bruno@clisp.org>
2157
2158         * modules/unistr/u8-mbtoucr: New file.
2159         * lib/unistr/u8-mbtoucr.c: New file.
2160         * modules/unistr/u16-mbtoucr: New file.
2161         * lib/unistr/u16-mbtoucr.c: New file.
2162         * modules/unistr/u16-mbtoucr: New file.
2163         * lib/unistr/u16-mbtoucr.c: New file.
2164         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
2165
2166 2007-03-27  Simon Josefsson  <simon@josefsson.org>
2167             Bruno Haible  <bruno@clisp.org>
2168
2169         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
2170         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
2171         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
2172
2173         * m4/stdio_h.m4: Add stubs for vasprintf too.
2174
2175         * modules/stdio: Support vasprintf in sed command.
2176
2177         * modules/vasprintf: Depend on stdio for prototypes.  Remove
2178         vasprintf.h.  Add stdio module indicator.
2179
2180         * lib/stdio_.h: Declare asprintf and vasprintf, based on
2181         vasprintf.h.
2182
2183         * lib/vasprintf.h: File removed.
2184
2185         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
2186         * lib/vasprintf.c: Ditto.
2187         * lib/xvasprintf.c: Ditto.
2188         * tests/test-vasprintf-posix.c: Ditto.
2189         * tests/test-vasprintf.c: Ditto.
2190
2191 2007-03-27  Bruno Haible  <bruno@clisp.org>
2192
2193         Make vasnprintf multithread-safe.
2194         * lib/vasnprintf.c (decimal_point_char): New function.
2195         (VASNPRINTF): Use it.
2196         Suggested by Simon Josefsson.
2197
2198 2007-03-27  Eric Blake  <ebb9@byu.net>
2199
2200         Support sub-second birthtime on cygwin.
2201         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
2202         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
2203         (get_stat_birthtime): Also work with st_birthtim.
2204
2205 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
2206
2207         * lib/stat-time.h (USE_BIRTHTIME): Remove.
2208         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
2209         (get_stat_birthtime_ns): Do not try to use "spare" fields.
2210         (get_stat_birthtime_ns): Simplify compile-time tests.
2211         (get_stat_birthtime): Change the API to look like
2212         get_stat_mtime etc., except return a negative tv_nsec on error.
2213         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
2214         Don't check for "spare" fields.
2215         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
2216         or for struct stat.st_birthtime, as these tests aren't used.
2217         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
2218
2219 2007-03-27  Bruno Haible  <bruno@clisp.org>
2220
2221         * lib/stat-time.h: Include <sys/stat.h>.
2222
2223 2007-03-27  James Youngman  <jay@gnu.org>
2224
2225         * lib/stat-time.h (get_stat_birthtime): New function for
2226           retrieving st_birthtime as provided by UFS2 (hence *BSD).
2227         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
2228           and its variants.
2229         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
2230         * modules/stat-time-test: New file.
2231         * tests/test-stat-time.c: New test, devised by Bruno Haible.
2232
2233 2007-03-26  Bruno Haible  <bruno@clisp.org>
2234
2235         Better support of signalling NaNs.
2236         * lib/atanl.c: Include isnanl.h.
2237         (atanl): Perform test for NaN at the beginning of the function and
2238         through a call to isnanl.
2239         * lib/cosl.c: Include isnanl.h.
2240         (cosl): Perform test for NaN at the beginning of the function and
2241         through a call to isnanl.
2242         * lib/ldexpl.c: Include isnanl.h.
2243         (ldexpl): Perform test for NaN through a call to isnanl.
2244         * lib/logl.c: Include isnanl.h.
2245         (logl): Perform test for NaN at the beginning of the function and
2246         through a call to isnanl.
2247         * lib/sinl.c: Include isnanl.h.
2248         (sinl): Perform test for NaN at the beginning of the function and
2249         through a call to isnanl.
2250         * lib/sqrtl.c: Include isnanl.h.
2251         (sqrtl): Perform test for NaN at the beginning of the function and
2252         through a call to isnanl.
2253         * lib/tanl.c: Include isnanl.h.
2254         (tanl): Perform test for NaN at the beginning of the function and
2255         through a call to isnanl.
2256         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
2257         * modules/mathl (Depends-on): Add isnanl.
2258
2259 2007-03-26  Eric Blake  <ebb9@byu.net>
2260
2261         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
2262         regression in logic sense of previous patch.
2263
2264 2007-03-26  Bruno Haible  <bruno@clisp.org>
2265
2266         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
2267         unportable shell command "if ! ...".
2268         Reported by Ralf Wildenhues.
2269
2270 2007-03-25  Bruno Haible  <bruno@clisp.org>
2271
2272         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
2273         <sysexits.h> file, and only add EX_CONFIG.
2274         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
2275         absolute file name and whether it is sufficient. Substitute also
2276         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
2277         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
2278         ABSOLUTE_SYSEXITS_H into sysexits.h.
2279
2280 2007-03-25  Bruno Haible  <bruno@clisp.org>
2281
2282         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
2283         hints is NULL.
2284
2285 2007-03-25  Bruno Haible  <bruno@clisp.org>
2286
2287         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
2288         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
2289
2290 2007-03-25  Bruno Haible  <bruno@clisp.org>
2291
2292         * lib/vasnprintf.c: Include langinfo.h.
2293         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
2294         multithread-safe.
2295         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
2296         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
2297         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2298         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2299         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2300         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2301         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2302         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
2303         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2304         Reported by Simon Josefsson.
2305
2306 2007-03-25  Bruno Haible  <bruno@clisp.org>
2307
2308         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
2309         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
2310         * modules/vasnprintf (Depends-on): Add stdint.
2311
2312 2007-03-25  Bruno Haible  <bruno@clisp.org>
2313
2314         * modules/fpieee: New file.
2315         * m4/fpieee.m4: New file.
2316         * modules/isnan-nolibm (Depends-on): Add fpieee.
2317         * modules/isnanl-nolibm (Depends-on): Add fpieee.
2318         * modules/isnanl (Depends-on): Add fpieee.
2319
2320 2007-03-25  Bruno Haible  <bruno@clisp.org>
2321
2322         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
2323
2324 2007-03-25  Bruno Haible  <bruno@clisp.org>
2325
2326         Avoid test failures on IRIX 6.5.
2327         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
2328         (main): Use it.
2329         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
2330         macros.
2331         (main): Use them.
2332
2333 2007-03-25  Bruno Haible  <bruno@clisp.org>
2334
2335         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
2336         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
2337         exists but doesn't work.
2338         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
2339         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
2340         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
2341         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
2342
2343 2007-03-25  Bruno Haible  <bruno@clisp.org>
2344
2345         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
2346         returns inf. Needed on IRIX 6.5.
2347
2348 2007-03-25  Bruno Haible  <bruno@clisp.org>
2349
2350         * tests/test-frexpl.c: Include isnanl-nolibm.h.
2351         (main): Use isnanl instead of x != x idiom.
2352         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
2353
2354         * tests/test-frexp.c: Include isnan.h.
2355         (main): Use isnan instead of x != x idiom.
2356         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
2357
2358 2007-03-25  Bruno Haible  <bruno@clisp.org>
2359
2360         * tests/test-frexp.c (NaN): New function/macro.
2361         (main): Use it instead of 0.0 / 0.0.
2362         * tests/test-isnan.c (NaN): New function/macro.
2363         (main): Use it instead of 0.0 / 0.0.
2364         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
2365         (test_function): Use it instead of 0.0 / 0.0.
2366         * tests/test-vasprintf-posix.c (NaN): New function/macro.
2367         (test_function): Use it instead of 0.0 / 0.0.
2368         * tests/test-snprintf-posix.h (NaN): New function/macro.
2369         (test_function): Use it instead of 0.0 / 0.0.
2370         * tests/test-sprintf-posix.h (NaN): New function/macro.
2371         (test_function): Use it instead of 0.0 / 0.0.
2372         * tests/test-fprintf-posix.h (NaN): New function/macro.
2373         (test_function): Use it instead of 0.0 / 0.0.
2374         * tests/test-printf-posix.h (NaN): New function/macro.
2375         (test_function): Use it instead of 0.0 / 0.0.
2376
2377         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
2378
2379 2007-03-25  Bruno Haible  <bruno@clisp.org>
2380
2381         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
2382
2383 2007-03-25  Bruno Haible  <bruno@clisp.org>
2384
2385         * lib/regexec.c (merge_state_with_log): Make static.
2386
2387 2007-03-25  Bruno Haible  <bruno@clisp.org>
2388
2389         * lib/trigl.c (kernel_rem_pio2): Make static.
2390
2391 2007-03-25  Bruno Haible  <bruno@clisp.org>
2392
2393         * lib/sincosl.c (sincosl_table): Make static.
2394
2395 2007-03-25  Bruno Haible  <bruno@clisp.org>
2396
2397         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
2398         if the compiler does not support C99.
2399
2400 2007-03-25  Bruno Haible  <bruno@clisp.org>
2401
2402         * modules/time (Makefile.am): Ensure all rule action lines start with a
2403         tab.
2404
2405 2007-03-24  Bruno Haible  <bruno@clisp.org>
2406
2407         * modules/tsearch-tests: New file.
2408         * tests/test-tsearch.sh: New file.
2409         * tests/test-tsearch.c: New file, mostly copied from glibc.
2410
2411         * modules/search-tests: New file.
2412         * tests/test-search.c: New file.
2413
2414         * modules/search: New file.
2415         * lib/search_.h: New file, incorporating lib/tsearch.h.
2416         * m4/search_h.m4: New file.
2417         * lib/tsearch.h: Remove file.
2418         * lib/tsearch.c: Include search.h instead of tsearch.h.
2419         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
2420         HAVE_TSEARCH.
2421         * modules/tsearch (Files): Remove lib/tsearch.h.
2422         (Depends-on): Add search.
2423         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
2424         (Include): Change tsearch.h into search.h.
2425
2426 2007-03-24  Bruno Haible  <bruno@clisp.org>
2427
2428         * modules/fpucw: New file.
2429         * lib/fpucw.h: New file.
2430         * lib/frexp.c: Include fpucw.h.
2431         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2432         (FUNC): Use them.
2433         * lib/printf-frexp.c: Include fpucw.h.
2434         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2435         (FUNC): Use them.
2436         * lib/vasnprintf.c: Include fpucw.h.
2437         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
2438         'long double' calculations.
2439         * tests/test-frexpl.c: Include fpucw.h.
2440         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2441         * tests/test-printf-frexpl.c: Include fpucw.h.
2442         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2443         * modules/frexpl (Depends-on): Add fpucw.
2444         * modules/printf-frexpl (Depends-on): Likewise.
2445         * modules/fprintf-posix (Depends-on): Likewise.
2446         * modules/snprintf-posix (Depends-on): Likewise.
2447         * modules/sprintf-posix (Depends-on): Likewise.
2448         * modules/vasnprintf-posix (Depends-on): Likewise.
2449         * modules/vasprintf-posix (Depends-on): Likewise.
2450         * modules/vfprintf-posix (Depends-on): Likewise.
2451         * modules/vsnprintf-posix (Depends-on): Likewise.
2452         * modules/vsprintf-posix (Depends-on): Likewise.
2453         * modules/frexpl-tests (Depends-on): Likewise.
2454         * modules/printf-frexpl-tests (Depends-on): Likewise.
2455
2456 2007-03-24  Bruno Haible  <bruno@clisp.org>
2457
2458         * lib/float+.h: New file.
2459         * lib/isnan.c: Include float+.h.
2460         (SIZE): New macro.
2461         (FUNC): Compare only SIZE bytes of the value.
2462         * lib/vasnprintf.c: Include float+.h.
2463         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
2464         SIZEOF_LDBL or SIZEOF_DBL bytes.
2465         * modules/isnan-nolibm (Files): Add lib/float+.h.
2466         * modules/isnanl-nolibm (Files): Add lib/float+.h.
2467         * modules/isnanl (Files): Add lib/float+.h.
2468         * modules/vasnprintf (Files): Add lib/float+.h.
2469
2470 2007-03-24  Bruno Haible  <bruno@clisp.org>
2471
2472         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
2473         include isnanl-nolibm.h.
2474
2475 2007-03-24  Bruno Haible  <bruno@clisp.org>
2476
2477         * tests/test-read-file.c (main): Don't produce spurious output for
2478         expected situations. Make the test fail if it encountered unexpected
2479         results.
2480
2481 2007-03-24  Bruno Haible  <bruno@clisp.org>
2482
2483         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
2484         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
2485
2486 2007-03-24  Bruno Haible  <bruno@clisp.org>
2487
2488         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
2489
2490 2007-03-24  Bruno Haible  <bruno@clisp.org>
2491
2492         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
2493         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
2494
2495         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
2496         * modules/utf8-ucs4: Turn into a symbolic link to module
2497         unistr/u8-mbtouc.
2498
2499         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
2500         utf8-ucs4-unsafe.
2501         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
2502         unistr/u8-mbtouc-unsafe.
2503
2504         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
2505         * modules/utf16-ucs4: Turn into a symbolic link to module
2506         unistr/u16-mbtouc.
2507
2508         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
2509         utf16-ucs4-unsafe.
2510         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
2511         unistr/u16-mbtouc-unsafe.
2512
2513         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
2514         * modules/ucs4-utf8: Turn into a symbolic link to module
2515         unistr/u8-ubtomb.
2516
2517         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
2518         * modules/ucs4-utf16: Turn into a symbolic link to module
2519         unistr/u16-ubtomb.
2520
2521 2007-03-24  Bruno Haible  <bruno@clisp.org>
2522
2523         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
2524         Enable the function only if HAVE_INLINE.
2525         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
2526         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2527         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
2528         Enable the function only if HAVE_INLINE.
2529         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
2530         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2531         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
2532         Enable the function only if HAVE_INLINE.
2533         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
2534         Enable the function only if HAVE_INLINE.
2535         * modules/utf8-ucs4: Update.
2536         * modules/utf8-ucs4-unsafe: Update.
2537         * modules/utf16-ucs4: Update.
2538         * modules/utf16-ucs4-unsafe: Update.
2539         * modules/ucs4-utf8: Update.
2540         * modules/ucs4-utf16: Update.
2541
2542 2007-03-24  Bruno Haible  <bruno@clisp.org>
2543
2544         * lib/utf8-ucs4.h: Remove file.
2545         * lib/utf8-ucs4-unsafe.h: Remove file.
2546         * lib/utf16-ucs4.h: Remove file.
2547         * lib/utf16-ucs4-unsafe.h: Remove file.
2548         * lib/ucs4-utf8.h: Remove file.
2549         * lib/ucs4-utf16.h: Remove file.
2550         * lib/unistr.h: Include their previous contents.
2551         * m4/utf-ucs4.m4: Remove file.
2552         * m4/ucs4-utf.m4: Remove file.
2553         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
2554         (Depends-on): Add unistr/base.
2555         (configure.ac): Remove gl_UTF_UCS4.
2556         (Makefile.am): Update.
2557         (Include): Change to unistr.h.
2558         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
2559         (Depends-on): Add unistr/base.
2560         (configure.ac): Remove gl_UTF_UCS4.
2561         (Makefile.am): Update.
2562         (Include): Change to unistr.h.
2563         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
2564         (Depends-on): Add unistr/base.
2565         (configure.ac): Remove gl_UTF_UCS4.
2566         (Makefile.am): Update.
2567         (Include): Change to unistr.h.
2568         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
2569         (Depends-on): Add unistr/base.
2570         (configure.ac): Remove gl_UTF_UCS4.
2571         (Makefile.am): Update.
2572         (Include): Change to unistr.h.
2573         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
2574         (Depends-on): Add unistr/base.
2575         (configure.ac): Remove gl_UCS4_UTF.
2576         (Makefile.am): Update.
2577         (Include): Change to unistr.h.
2578         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
2579         (Depends-on): Add unistr/base.
2580         (configure.ac): Remove gl_UCS4_UTF.
2581         (Makefile.am): Update.
2582         (Include): Change to unistr.h.
2583         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
2584         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
2585         utf8-ucs4-unsafe.h.
2586         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
2587         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
2588         utf16-ucs4-unsafe.h.
2589         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
2590         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
2591         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
2592         * lib/unistr/u8-strchr.c: Likewise.
2593         * lib/unistr/u8-strrchr.c: Likewise.
2594         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
2595         * lib/unistr/u16-strchr.c: Likewise.
2596         * lib/unistr/u16-strrchr.c: Likewise.
2597         * lib/striconveh.c: Update.
2598         * lib/linebreak.c: Update.
2599
2600 2007-03-24  Bruno Haible  <bruno@clisp.org>
2601
2602         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
2603         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
2604
2605 2007-03-22  Bruno Haible  <bruno@clisp.org>
2606
2607         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
2608
2609 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
2610
2611         * MODULES.html.sh (File system functions): New module write-any-file.
2612         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
2613         * m4/write-any-file.m4: New files.
2614
2615 2007-03-23  Eric Blake  <ebb9@byu.net>
2616
2617         * gnulib-tool: Rearrange space-tab sequences, since some editors
2618         like to eat them.
2619
2620 2007-03-23  Eric Blake  <ebb9@byu.net>
2621
2622         * lib/version-etc.c (version_etc_va): Update license wording to
2623         be more concise.  Recommended by Richard Stallman.
2624
2625 2007-03-22  Bruno Haible  <bruno@clisp.org>
2626
2627         * lib/poll.c (MSG_PEEK): New fallback definition.
2628
2629 2007-03-22  Bruno Haible  <bruno@clisp.org>
2630
2631         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
2632         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
2633         (main): Update.
2634         Fixes a compilation error on BeOS.
2635
2636 2007-03-22  Bruno Haible  <bruno@clisp.org>
2637
2638         * modules/frexpl-tests: New file.
2639         * tests/test-frexpl.c: New file.
2640
2641         * modules/frexpl: New file.
2642         * m4/frexpl.m4: New file.
2643         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
2644         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
2645         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
2646         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
2647         (Depends-on): Add frexpl. Remove isnanl-nolibm.
2648         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
2649
2650 2007-03-22  Bruno Haible  <bruno@clisp.org>
2651
2652         * lib/frexpl.c: Share code with lib/frexp.c.
2653         * modules/mathl (Files): Add lib/frexp.c.
2654         (Depends-on): Add isnanl-nolibm.
2655
2656 2007-03-22  Bruno Haible  <bruno@clisp.org>
2657
2658         * modules/printf-frexp (Files): Add m4/frexp.m4.
2659         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
2660         only if the found frexp function actually works.
2661
2662 2007-03-22  Bruno Haible  <bruno@clisp.org>
2663
2664         * lib/frexp.c: Remove older implementation that uses divisions.
2665
2666 2007-03-21  Bruno Haible  <bruno@clisp.org>
2667
2668         * modules/frexp-tests: New file.
2669         * tests/test-frexp.c: New file.
2670
2671         * modules/frexp: New file.
2672         * lib/frexp.c: New file.
2673         * m4/frexp.m4: New file.
2674         * lib/math_.h (frexp): New declaration.
2675         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
2676         REPLACE_FREXP.
2677         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
2678
2679 2007-03-21  Bruno Haible  <bruno@clisp.org>
2680
2681         * modules/isnanl-tests: New file.
2682         * tests/test-isnanl.c: New file.
2683
2684         * modules/isnanl: New file.
2685         * lib/isnanl.h: New file.
2686         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
2687         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
2688         gl_FUNC_ISNANL_WORKS.
2689         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
2690         New macros.
2691
2692 2007-03-21  Bruno Haible  <bruno@clisp.org>
2693
2694         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
2695         lib/isnanl.h.
2696         (Include): Update.
2697         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
2698         * lib/vasnprintf.c: Update.
2699         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
2700         tests/test-isnanl.h, remove tests/test-isnanl.c.
2701         (Makefile.am): Update.
2702         * tests/test-isnanl-nolibm.c: New file.
2703         * tests/test-isnanl.h: New file.
2704         * tests/test-isnanl.c: Remove file.
2705
2706 2007-03-21  Jim Meyering  <jim@meyering.net>
2707
2708         When trying to open ".", treat ESTALE like EACCES.
2709         * lib/savewd.c (savewd_save): Resort to forking not just upon
2710         failure with EACCES, but also when errno is ESTALE.
2711
2712 2007-03-20  Bruno Haible  <bruno@clisp.org>
2713
2714         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
2715         Needed on AIX 5.1. Reported by Matthew Woehlke.
2716
2717 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2718
2719         Suggestions by Bruno Haible:
2720         * lib/acl-internal.h: Include "gettext.h" rather than rolling
2721         our own.
2722         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
2723         * modules/acl (Depends-on): Add gettext.
2724
2725 2007-03-19  Bruno Haible  <bruno@clisp.org>
2726
2727         * modules/iconvme: Remove file.
2728         * lib/iconvme.h: Remove file.
2729         * lib/iconvme.c: Remove file.
2730         * m4/iconvme.m4: Remove file.
2731
2732 2007-03-19  Bruno Haible  <bruno@clisp.org>
2733
2734         * doc/relocatable-maint.texi: Break long shell script line.
2735         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2736
2737 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2738
2739         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
2740         handle file_has_acl.
2741         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
2742         * lib/acl.c: Move header inclusions and related macro defns into
2743         lib/acl-internal.h.
2744         (S_ISLNK): Remove defn, since that's now done for us.
2745         (file_has_acl): Move to lib/file-has-acl.c.
2746         Call acl_trivial if available.  This is the crucial part of the fix.
2747         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
2748         shared within the library.  Rewrite a bit, partly to make it compatible
2749         with the GNU coding style.
2750         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
2751         Remove unnecessary double-quotes.
2752         Don't test for acl_to_text; the build will catch that.
2753         Replace acl_entries if it doesn't exist and it is needed.
2754         Check for -lsec and acl_trivial (as used on Solaris 10).
2755         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
2756         lib/file-has-acl.c.
2757         (Depends-on): Add sys_stat, for S_ISLNK.
2758
2759 2007-03-19  Ben Pfaff  <blp@gnu.org>
2760
2761         * doc/gnulib.texi: Fix typos.
2762         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2763
2764 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2765
2766         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
2767         If size is zero here, buf must be zero.
2768
2769 2007-03-19  Simon Josefsson  <simon@josefsson.org>
2770
2771         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
2772         <bruno@clisp.org>.
2773
2774 2007-03-18  Bruno Haible  <bruno@clisp.org>
2775
2776         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
2777         Suggested by Eric Blake.
2778
2779 2007-03-18  Ben Pfaff  <blp@gnu.org>
2780
2781         * doc/relocatable.texi: Recommend using as prefix a directory
2782         that does not exist and will never be created.  Based on
2783         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
2784         and others.
2785
2786 2007-03-17  Bruno Haible  <bruno@clisp.org>
2787
2788         * lib/fchownat.c: Include lchown.h.
2789
2790 2007-03-17  Bruno Haible  <bruno@clisp.org>
2791
2792         Fix endless loop when the given allocated size was > INT_MAX.
2793         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
2794         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
2795         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
2796         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
2797         * lib/sprintf.c (sprintf): Likewise.
2798
2799 2007-03-17  Bruno Haible  <bruno@clisp.org>
2800
2801         * tests/test-argp-2.sh (func_compare): Output a context diff.
2802
2803 2007-03-17  Bruno Haible  <bruno@clisp.org>
2804
2805         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
2806         locale's decimal-point character.
2807
2808 2007-03-17  Bruno Haible  <bruno@clisp.org>
2809
2810         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
2811         before comparing it. Needed because on some platforms (e.g. x86) a
2812         'long double' occupies less bytes than sizeof (long double).
2813
2814 2007-03-17  Bruno Haible  <bruno@clisp.org>
2815
2816         * tests/test-crc.c (main): Make printf statements 64-bit clean.
2817         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
2818         * tests/test-getaddrinfo.c (simple): Likewise.
2819         * tests/test-read-file.c (main): Likewise.
2820
2821 2007-03-17  Bruno Haible  <bruno@clisp.org>
2822
2823         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
2824
2825 2007-03-17  Bruno Haible  <bruno@clisp.org>
2826
2827         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
2828         unused variable.
2829
2830 2007-03-17  Bruno Haible  <bruno@clisp.org>
2831
2832         * tests/test-c-strcasecmp.c: Include c-strcase.h.
2833         * tests/test-c-strncasecmp.c: Likewise.
2834
2835 2007-03-17  Bruno Haible  <bruno@clisp.org>
2836
2837         * modules/stdlib (Depends-on): Add unistd.
2838         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
2839         Needed for MacOS X 10.3.
2840
2841 2007-03-17  Bruno Haible  <bruno@clisp.org>
2842
2843         * lib/unistr/u-strdup.h: Include <stdlib.h>.
2844
2845 2007-03-17  Bruno Haible  <bruno@clisp.org>
2846
2847         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
2848
2849 2007-03-17  Bruno Haible  <bruno@clisp.org>
2850
2851         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
2852         to reflect files copied from gnulib (with or without modifications).
2853         Suggested by Jim Meyering.
2854
2855 2007-03-17  Eric Blake  <ebb9@byu.net>
2856
2857         * NEWS: Document stdlib change from 2007-02-18.
2858
2859 2007-03-17  Jim Meyering  <jim@meyering.net>
2860
2861         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
2862         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
2863         someone uses a name containing shell meta-characters.
2864         Reported by Alfred M. Szmidt.
2865
2866         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
2867
2868 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2869
2870         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
2871         and copy gettext configuration files only if configure.ac contains
2872         a use of AM_GNU_GETTEXT_VERSION.
2873
2874 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2875
2876         * build-aux/bootstrap (gnulib_name): New variable.
2877         (gnulib_tool_options): Use it.
2878
2879 2007-03-13  Simon Josefsson  <simon@josefsson.org>
2880
2881         * tests/test-des.c: Use new namespace.
2882
2883 2007-03-15  Bruno Haible  <bruno@clisp.org>
2884
2885         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
2886         Reported by James Youngman <jay@gnu.org>.
2887
2888 2007-03-15  Bruno Haible  <bruno@clisp.org>
2889
2890         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
2891         declared prototype. Needed with cc on OSF/1 5.1.
2892
2893 2007-03-15  Bruno Haible  <bruno@clisp.org>
2894
2895         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
2896         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
2897         (struct gl_list_implementation): Add dispose_fn argument to the
2898         'create_empty', 'create' methods.
2899         (struct gl_list_impl_base): Add field 'dispose_fn'.
2900         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
2901         argument.
2902         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
2903         dispose_fn argument.
2904         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
2905         dispose_fn on the dropped values.
2906         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
2907         dispose_fn argument.
2908         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
2909         dropped values.
2910         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
2911         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2912         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
2913         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2914         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
2915         argument.
2916         (gl_tree_list_free): Call dispose_fn on the dropped values.
2917         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
2918         the dropped values.
2919         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2920         Add dispose_fn argument.
2921         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
2922         Call dispose_fn on the dropped values.
2923         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
2924         Add dispose_fn argument.
2925         (gl_sublist_create): Initialize the 'dispose_fn' field.
2926         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
2927         * tests/test-array_list.c (main): Update.
2928         * tests/test-carray_list.c (main): Update.
2929         * tests/test-avltree_list.c (main): Update.
2930         * tests/test-rbtree_list.c (main): Update.
2931         * tests/test-avltreehash_list.c (main): Update.
2932         * tests/test-rbtreehash_list.c (main): Update.
2933         * tests/test-linked_list.c (main): Update.
2934         * tests/test-linkedhash_list.c (main): Update.
2935         * tests/test-array_oset.c (main): Update.
2936
2937 2007-03-15  Bruno Haible  <bruno@clisp.org>
2938
2939         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
2940         (gl_oset_create_empty): Add dispose_fn argument.
2941         (struct gl_oset_implementation): Add dispose_fn argument to
2942         'create_empty' method.
2943         (struct gl_oset_impl_base): Add dispose_fn field.
2944         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
2945         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
2946         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
2947         values.
2948         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
2949         (gl_tree_oset_free): Call dispose_fn on the dropped values.
2950         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2951         dropped value.
2952         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2953         dropped value.
2954         * tests/test-array_oset.c (main): Update.
2955         * tests/test-avltree_oset.c (main): Update.
2956         * tests/test-rbtree_oset.c (main): Update.
2957         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
2958
2959 2007-03-13  Bruno Haible  <bruno@clisp.org>
2960
2961         * tests/test-stdbool.c (i): Update after last patch.
2962
2963 2007-03-12  Bruno Haible  <bruno@clisp.org>
2964
2965         * lib/quotearg.c: Include <wctype.h> early, before the definition of
2966         the iswprint macro. Needed on Solaris 2.5.1.
2967
2968 2007-03-12  Bruno Haible  <bruno@clisp.org>
2969
2970         * tests/test-printf-frexp.c (main): Declare x as volatile.
2971
2972 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2973
2974         * doc/gnulib.texi (Build robot for gnulib): New section.
2975
2976 2007-03-12  Jim Meyering  <jim@meyering.net>
2977
2978         * build-aux/bootstrap: New file.
2979         * build-aux/bootstrap.conf: New file, from coreutils.
2980
2981 2007-03-11  Bruno Haible  <bruno@clisp.org>
2982
2983         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
2984
2985 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2986
2987         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
2988         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
2989         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
2990
2991 2007-03-11  Bruno Haible  <bruno@clisp.org>
2992
2993         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
2994         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
2995
2996 2007-03-11  Bruno Haible  <bruno@clisp.org>
2997
2998         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
2999         formula. Needed for SunPRO C 5.0.
3000
3001 2007-03-11  Bruno Haible  <bruno@clisp.org>
3002
3003         * modules/long-options (Depends-on): Add getopt.
3004
3005 2007-03-11  Bruno Haible  <bruno@clisp.org>
3006
3007         * modules/modechange (Depends-on): Add stdbool.
3008
3009 2007-03-11  Bruno Haible  <bruno@clisp.org>
3010
3011         * modules/i-ring (Depends-on): Add stdbool.
3012
3013 2007-03-11  Bruno Haible  <bruno@clisp.org>
3014
3015         * modules/gc-des (Depends-on): Add stdbool.
3016
3017 2007-03-11  Bruno Haible  <bruno@clisp.org>
3018
3019         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
3020
3021 2007-03-11  Bruno Haible  <bruno@clisp.org>
3022
3023         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
3024
3025 2007-03-11  Bruno Haible  <bruno@clisp.org>
3026
3027         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
3028
3029 2007-03-11  Bruno Haible  <bruno@clisp.org>
3030
3031         * lib/vasnprintf.c (sprintf): Undefine.
3032
3033 2007-03-11  Bruno Haible  <bruno@clisp.org>
3034
3035         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
3036         initializers in SunPRO C and Compaq C compilers.
3037
3038 2007-03-11  Bruno Haible  <bruno@clisp.org>
3039
3040         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
3041         decrementing code ANSI C compliant.
3042
3043 2007-03-11  Bruno Haible  <bruno@clisp.org>
3044
3045         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
3046         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
3047
3048 2007-03-11  Bruno Haible  <bruno@clisp.org>
3049
3050         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
3051         <stdbool.h> substitute doesn't pass.
3052
3053 2007-03-11  Bruno Haible  <bruno@clisp.org>
3054
3055         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
3056
3057 2007-03-11  Bruno Haible  <bruno@clisp.org>
3058
3059         * gnulib-tool (func_create_megatestdir): Create also an autobuild
3060         script, for submission to autobuild.josefsson.org.
3061
3062 2007-03-10  Bruno Haible  <bruno@clisp.org>
3063
3064         * modules/canonicalize-lgpl-tests: New file.
3065         * tests/test-canonicalize-lgpl.sh: New file.
3066         * tests/test-canonicalize-lgpl.c: New file.
3067
3068         * modules/c-strcase-tests: New file.
3069         * tests/test-c-strcase.sh: New file.
3070         * tests/test-c-strcasecmp.c: New file.
3071         * tests/test-c-strncasecmp.c: New file.
3072
3073         * modules/atexit-tests: New file.
3074         * tests/test-atexit.sh: New file.
3075         * tests/test-atexit.c: New file.
3076
3077 2007-03-10  Bruno Haible  <bruno@clisp.org>
3078
3079         * tests/test-binary-io.sh: Use temporary filenames that are not so
3080         likely to clash with those of other tests (in a parallel make).
3081         * tests/test-binary-io.c: Likewise.
3082
3083 2007-03-10  Bruno Haible  <bruno@clisp.org>
3084
3085         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
3086         fallback; use #error instead.
3087         Suggested by Simon Josefsson.
3088
3089 2007-03-10  Bruno Haible  <bruno@clisp.org>
3090
3091         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
3092         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
3093         first and the last.
3094
3095 2007-03-10  Bruno Haible  <bruno@clisp.org>
3096
3097         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
3098
3099 2007-03-10  Bruno Haible  <bruno@clisp.org>
3100
3101         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
3102         "make distcheck".
3103         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
3104         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
3105         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
3106
3107 2007-03-10  Bruno Haible  <bruno@clisp.org>
3108
3109         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
3110         variable.
3111         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
3112         variable.
3113
3114 2007-03-09  Eric Blake  <ebb9@byu.net>
3115         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
3116
3117         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
3118         types are not being provided by gnulib.
3119         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
3120         types are supported.
3121
3122 2007-03-10  Bruno Haible  <bruno@clisp.org>
3123
3124         * lib/stdio_.h (__attribute__): New macro.
3125         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
3126         vsprintf): Specify __attribute__ __format__ for GCC.
3127         Suggested by Eric Blake.
3128
3129 2007-03-09  Bruno Haible  <bruno@clisp.org>
3130
3131         * modules/printf-posix-tests: New file.
3132         * tests/test-printf-posix.sh: New file.
3133         * tests/test-printf-posix.c: New file.
3134
3135         * modules/printf-posix: New file.
3136         * lib/printf.c: New file.
3137         * m4/printf-posix-rpl.m4: New file.
3138         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
3139         REPLACE_PRINTF.
3140         * lib/stdio_.h (printf): New declaration.
3141         (format, __format__, ____printf____, ____scanf____, ____strftime____,
3142         ____strfmon____): New macros.
3143         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
3144         REPLACE_PRINTF.
3145
3146 2007-03-09  Bruno Haible  <bruno@clisp.org>
3147
3148         * tests/test-vasnprintf-posix2.sh: New file.
3149         * tests/test-vasnprintf-posix2.c: New file.
3150         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
3151         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
3152         (Makefile.am): Activate test-vasnprintf-posix2.sh.
3153
3154         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
3155         a locale dependent decimal point, rather than always '.'.
3156
3157 2007-03-09  Eric Blake  <ebb9@byu.net>
3158
3159         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
3160         spite of platforms like Tandem/NSK that define it to -1.
3161
3162 2007-03-08  Bruno Haible  <bruno@clisp.org>
3163
3164         * modules/vprintf-posix-tests: New file.
3165         * tests/test-vprintf-posix.sh: New file.
3166         * tests/test-vprintf-posix.c: New file.
3167         * tests/test-printf-posix.h: New file.
3168
3169         * modules/vprintf-posix: New file.
3170         * lib/vprintf.c: New file.
3171         * m4/vprintf-posix.m4: New file.
3172         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
3173         REPLACE_VPRINTF.
3174         * lib/stdio_.h (vprintf): New declaration.
3175         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
3176         REPLACE_VPRINTF.
3177
3178 2007-03-08  Bruno Haible  <bruno@clisp.org>
3179
3180         * modules/fprintf-posix-tests: New file.
3181         * tests/test-fprintf-posix.sh: New file.
3182         * tests/test-fprintf-posix.c: New file.
3183
3184         * modules/fprintf-posix: New file.
3185         * lib/fprintf.c: New file.
3186         * m4/fprintf-posix.m4: New file.
3187         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
3188         REPLACE_FPRINTF.
3189         * lib/stdio_.h (fprintf): New declaration.
3190         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
3191         REPLACE_FPRINTF.
3192
3193 2007-03-08  Bruno Haible  <bruno@clisp.org>
3194
3195         * modules/vfprintf-posix-tests: New file.
3196         * tests/test-vfprintf-posix.sh: New file.
3197         * tests/test-vfprintf-posix.c: New file.
3198         * tests/test-fprintf-posix.h: New file.
3199         * tests/test-fprintf-posix.out: New file.
3200
3201         * modules/vfprintf-posix: New file.
3202         * lib/vfprintf.c: New file.
3203         * m4/vfprintf-posix.m4: New file.
3204         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
3205         REPLACE_VFPRINTF.
3206         * lib/stdio_.h (vfprintf): New declaration.
3207         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
3208         REPLACE_VFPRINTF.
3209
3210 2007-03-08  Bruno Haible  <bruno@clisp.org>
3211
3212         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
3213
3214 2007-03-08  Bruno Haible  <bruno@clisp.org>
3215
3216         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
3217         instead of 'expr' invocations.
3218         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3219         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3220         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3221         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3222         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3223         Suggested by Paul Eggert.
3224
3225 2007-03-08  Bruno Haible  <bruno@clisp.org>
3226
3227         * modules/fseterr-tests: New file.
3228         * tests/test-fseterr.c: New file.
3229
3230         * modules/fseterr: New file.
3231         * lib/fseterr.h: New file.
3232         * lib/fseterr.c: New file.
3233
3234 2007-03-08  Bruno Haible  <bruno@clisp.org>
3235
3236         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
3237         * lib/getopt_.h: Likewise.
3238         * lib/mbswidth.h: Likewise.
3239         * lib/setenv.h: Likewise.
3240         * lib/vasnprintf.h: Likewise.
3241         * lib/vasprintf.h: Likewise.
3242         * lib/verror.h: Likewise.
3243         * lib/xsetenv.h: Likewise.
3244         * lib/xvasprintf.h: Likewise.
3245
3246 2007-03-08  Jim Meyering  <jim@meyering.net>
3247
3248         * users.txt: Add parted.
3249
3250         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
3251
3252 2007-03-07  Bruno Haible  <bruno@clisp.org>
3253
3254         * m4/printf.m4: Make the shell script snippets copy&pastable.
3255
3256 2007-03-02  Bruno Haible  <bruno@clisp.org>
3257
3258         * lib/netinet_in_.h: New file.
3259         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
3260         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
3261         * modules/netinet_in (Files): Add lib/netinet_in_.h.
3262         (Depends-on): Add absolute-header.
3263         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
3264         into netinet/in.h.
3265
3266 2007-03-03  Bruno Haible  <bruno@clisp.org>
3267
3268         * lib/sys_select_.h: New file.
3269         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
3270         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
3271         * modules/sys_select (Files): Add lib/sys_select_.h.
3272         (Depends-on): Add absolute-header.
3273         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
3274         into sys/select.h.
3275
3276 2007-03-02  Bruno Haible  <bruno@clisp.org>
3277
3278         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
3279         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
3280         values.
3281         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
3282         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
3283         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
3284         * modules/sys_socket (Depends-on): Add absolute-header.
3285         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
3286         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
3287         (Include): Remove requirement of inclusion of <sys/types.h>.
3288
3289 2007-03-02  Bruno Haible  <bruno@clisp.org>
3290
3291         * lib/byteswap_.h (bswap_32): Fix formula.
3292
3293 2007-03-06  Bruno Haible  <bruno@clisp.org>
3294
3295         * modules/sprintf-posix-tests: New file.
3296         * tests/test-sprintf-posix.c: New file.
3297
3298         * modules/sprintf-posix: New file.
3299         * lib/sprintf.c: New file.
3300         * m4/sprintf-posix.m4: New file.
3301         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
3302         REPLACE_SPRINTF.
3303         * lib/stdio_.h (sprintf): New declaration.
3304         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
3305         REPLACE_SPRINTF.
3306
3307 2007-03-06  Bruno Haible  <bruno@clisp.org>
3308
3309         * modules/vsprintf-posix-tests: New file.
3310         * tests/test-vsprintf-posix.c: New file.
3311         * tests/test-sprintf-posix.h: New file.
3312
3313         * modules/vsprintf-posix: New file.
3314         * lib/vsprintf.c: New file.
3315         * m4/vsprintf-posix.m4: New file.
3316         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
3317         REPLACE_VSPRINTF.
3318         * lib/stdio_.h (vsprintf): New declaration.
3319         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
3320         REPLACE_VSPRINTF.
3321
3322 2007-03-06  Bruno Haible  <bruno@clisp.org>
3323
3324         * modules/vsnprintf (Depend-on): Remove minmax.
3325
3326 2007-03-06  Bruno Haible  <bruno@clisp.org>
3327
3328         * modules/snprintf-posix-tests: New file.
3329         * tests/test-snprintf-posix.c: New file.
3330
3331         * modules/snprintf-posix: New file.
3332         * m4/snprintf-posix.m4: New file.
3333         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
3334         gl_FUNC_SNPRINTF.
3335         (gl_FUNC_SNPRINTF): Invoke it.
3336         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
3337         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
3338         is set.
3339         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
3340
3341 2007-03-06  Bruno Haible  <bruno@clisp.org>
3342
3343         * modules/vsnprintf-posix-tests: New file.
3344         * tests/test-vsnprintf-posix.c: New file.
3345         * tests/test-snprintf-posix.h: New file.
3346
3347         * modules/vsnprintf-posix: New file.
3348         * m4/vsnprintf-posix.m4: New file.
3349         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
3350         gl_FUNC_VSNPRINTF.
3351         (gl_FUNC_VSNPRINTF): Invoke it.
3352         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
3353         * lib/stdio_.h (vsnprintf): Define as a replacement if
3354         REPLACE_VSNPRINTF is set.
3355         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
3356
3357 2007-03-06  Bruno Haible  <bruno@clisp.org>
3358
3359         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
3360         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
3361
3362 2007-03-06  Bruno Haible  <bruno@clisp.org>
3363
3364         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
3365         (asinl): Declare also if HAVE_DECL_ASINL is set.
3366         (atanl): Declare also if HAVE_DECL_ATANL is set.
3367         (ceill): Declare also if HAVE_DECL_CEILL is set.
3368         (cosl): Declare also if HAVE_DECL_COSL is set.
3369         (expl): Declare also if HAVE_DECL_EXPL is set.
3370         (floorl): Declare also if HAVE_DECL_FLOORL is set.
3371         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
3372         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
3373         (logl): Declare also if HAVE_DECL_LOGL is set.
3374         (sinl): Declare also if HAVE_DECL_SINL is set.
3375         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
3376         (tanl): Declare also if HAVE_DECL_TANL is set.
3377         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
3378         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
3379         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
3380         declaration of frexpl, ldexpl.
3381         * modules/printf-frexpl (Depends-on): Add math.
3382         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
3383
3384 2007-03-05  Bruno Haible  <bruno@clisp.org>
3385
3386         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
3387         frexpl and ldexpl are declared.
3388         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
3389
3390 2007-03-05  Bruno Haible  <bruno@clisp.org>
3391
3392         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
3393         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
3394
3395 2007-03-05  Bruno Haible  <bruno@clisp.org>
3396
3397         * lib/stdio_.h: Include <stddef.h>.
3398
3399 2007-03-05  Bruno Haible  <bruno@clisp.org>
3400
3401         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
3402
3403 2007-03-05  Bruno Haible  <bruno@clisp.org>
3404
3405         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
3406         NetBSD 4, from Ralf Wildenhues.
3407
3408 2007-03-04  Bruno Haible  <bruno@clisp.org>
3409
3410         * lib/vasprintf.h: Update #if logic for the case when the functions
3411         exist but are overridden.
3412
3413 2007-03-04  Bruno Haible  <bruno@clisp.org>
3414
3415         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
3416         implementations: glibc-2.4 and MacOS X 10.3.
3417         * tests/test-vasnprintf-posix.c (test_function): Test also the case
3418         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
3419         * tests/test-vasprintf-posix.c (test_function): Likewise.
3420
3421 2007-03-04  Bruno Haible  <bruno@clisp.org>
3422
3423         * modules/vasprintf-posix-tests: New file.
3424         * tests/test-vasprintf-posix.c: New file.
3425
3426         * modules/vasprintf-posix: New file.
3427         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
3428         defined.
3429         * m4/vasprintf-posix.m4: New file.
3430         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
3431         gl_FUNC_VASPRINTF.
3432         (gl_FUNC_VASPRINTF): Invoke it.
3433         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
3434         here.
3435         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
3436
3437 2007-03-04  Bruno Haible  <bruno@clisp.org>
3438
3439         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
3440         REPLACE_GETTIMEOFDAY.
3441         * modules/sys_time (Makefile.am): Likewise.
3442         * m4/sys_time_h.m4: Likewise.
3443         * m4/gettimeofday.m4: Likewise.
3444
3445 2007-03-04  Bruno Haible  <bruno@clisp.org>
3446
3447         * modules/vasnprintf-posix-tests: New file.
3448         * tests/test-vasnprintf-posix.c: New file.
3449
3450         * modules/vasnprintf-posix: New file.
3451         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
3452         printf-frexpl.h.
3453         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
3454         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
3455         REPLACE_VASNPRINTF is defined.
3456         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
3457         gl_FUNC_VASNPRINTF.
3458         (gl_FUNC_VASNPRINTF): Invoke it.
3459         * m4/vasnprintf-posix.m4: New file.
3460         * m4/printf.m4: New file.
3461
3462 2007-03-04  Bruno Haible  <bruno@clisp.org>
3463
3464         Compile progreloc.c only if --enable-relocatable is specified.
3465         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
3466         if --enable-relocatable was specified.
3467         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
3468         lib_SOURCES.
3469
3470 2007-03-04  Jim Meyering  <jim@meyering.net>
3471
3472         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
3473         Use it consistently, rather than enumerating errno constants.
3474
3475 2007-03-04  Bruno Haible  <bruno@clisp.org>
3476
3477         * modules/xvasprintf-tests: New file.
3478         * tests/test-xvasprintf.c: New file.
3479
3480         * modules/vasprintf-tests: New file.
3481         * tests/test-vasprintf.c: New file.
3482
3483         * modules/vasnprintf-tests: New file.
3484         * tests/test-vasnprintf.c: New file.
3485
3486         * modules/vsnprintf-tests: New file.
3487         * tests/test-vsnprintf.c: New file.
3488
3489         * modules/snprintf-tests: New file.
3490         * tests/test-snprintf.c: New file.
3491
3492 2007-03-04  Bruno Haible  <bruno@clisp.org>
3493
3494         Compile relocatable.c only if --enable-relocatable is specified.
3495         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
3496         gl_RELOCATABLE_LIBRARY.
3497         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
3498         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
3499         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
3500         gl_RELOCATABLE_LIBRARY.
3501         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
3502         (Makefile.am): Remove lib_SOURCES.
3503         * modules/relocatable-lib-lgpl (configure.ac): Invoke
3504         gl_RELOCATABLE_LIBRARY.
3505         (Makefile.am): Remove lib_SOURCES.
3506         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
3507         always.
3508         * modules/relocatable-prog-wrapper (configure.ac): Invoke
3509         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
3510
3511 2007-03-04  Bruno Haible  <bruno@clisp.org>
3512
3513         * modules/argmatch-tests: New file.
3514         * tests/test-argmatch.c: New file.
3515
3516         * tests/test-allocsa.c (main): Halve the number of loop runs.
3517
3518         * modules/alloca-opt-tests: New file.
3519         * tests/test-alloca-opt.c: New file.
3520
3521 2007-03-04  Jim Meyering  <jim@meyering.net>
3522
3523         Work around difference between Linux ACLs and Solaris 10 ZFS.
3524         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
3525         for EINVAL.
3526
3527 2007-03-03  Bruno Haible  <bruno@clisp.org>
3528
3529         * modules/relocatable-prog (Depends-on): Add back progreloc's
3530         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
3531
3532 2007-03-03  Bruno Haible  <bruno@clisp.org>
3533
3534         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
3535         * modules/relocatable-lib: New file.
3536
3537 2007-03-03  Bruno Haible  <bruno@clisp.org>
3538
3539         * modules/relocatable-prog: Renamed from modules/relocatable.
3540         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
3541
3542 2007-03-03  Bruno Haible  <bruno@clisp.org>
3543
3544         * modules/relocatable-script (Files): Add doc/relocatable.texi,
3545         m4/relocatable-lib.m4.
3546         (Depends-on): Remove 'relocatable'.
3547         (configure.ac): Add gl_RELOCATABLE_NOP.
3548
3549 2007-03-03  Bruno Haible  <bruno@clisp.org>
3550
3551         * modules/relocatable-prog-wrapper: New file.
3552         * modules/relocatable (Depends-on): Add it. Remove all other
3553         dependencies except progname.
3554         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
3555
3556         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
3557         (gl_FUNC_STRERROR): Nop.
3558         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
3559
3560         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
3561         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
3562
3563         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
3564         (gl_FUNC_READLINK): Update.
3565
3566         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
3567
3568 2007-03-03  Bruno Haible  <bruno@clisp.org>
3569
3570         * lib/xreadlink.c: Include <unistd.h> unconditionally.
3571         * modules/xreadlink (Depends-on): Add unistd.
3572         * modules/xreadlink-with-size (Depends-on): Likewise.
3573
3574 2007-03-03  Bruno Haible  <bruno@clisp.org>
3575
3576         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
3577         extracted from gt_FUNC_SETENV.
3578         (gt_FUNC_SETENV): Remove macro.
3579         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
3580         remove gt_FUNC_SETENV.
3581
3582 2007-03-03  Bruno Haible  <bruno@clisp.org>
3583
3584         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
3585         ENABLE_RELOCATABLE here.
3586         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
3587
3588 2007-03-03  Bruno Haible  <bruno@clisp.org>
3589
3590         * modules/rbtreehash-list-tests (Depends-on): Add progname.
3591         * tests/test-rbtreehash_list.c: Include progname.h.
3592         (main): Call set_program_name.
3593
3594         * modules/rbtree-oset-tests (Depends-on): Add progname.
3595         * tests/test-rbtree_oset.c: Include progname.h.
3596         (main): Call set_program_name.
3597
3598         * modules/rbtree-list-tests (Depends-on): Add progname.
3599         * tests/test-rbtree_list.c: Include progname.h.
3600         (main): Call set_program_name.
3601
3602         * modules/linked-list-tests (Depends-on): Add progname.
3603         * tests/test-linked_list.c: Include progname.h.
3604         (main): Call set_program_name.
3605
3606 2007-03-03  Bruno Haible  <bruno@clisp.org>
3607
3608         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
3609         All uses of __restrict changed to _Restrict_.
3610         * lib/glob_.h (__restrict): Remove macro.
3611
3612 2007-03-02  Bruno Haible  <bruno@clisp.org>
3613
3614         * modules/gettext (configure.ac): Require gettext infrastructure
3615         from version 0.16.1.
3616
3617 2007-03-02  Bruno Haible  <bruno@clisp.org>
3618
3619         * modules/linkedhash-list-tests (Depends-on): Add progname.
3620         * tests/test-linkedhash_list.c: Include progname.h.
3621         (main): Call set_program_name.
3622
3623         * modules/carray-list-tests (Depends-on): Add progname.
3624         * tests/test-carray_list.c: Include progname.h.
3625         (main): Call set_program_name.
3626
3627         * modules/avltreehash-list-tests (Depends-on): Add progname.
3628         * tests/test-avltreehash_list.c: Include progname.h.
3629         (main): Call set_program_name.
3630
3631         * modules/avltree-oset-tests (Depends-on): Add progname.
3632         * tests/test-avltree_oset.c: Include progname.h.
3633         (main): Call set_program_name.
3634
3635         * modules/avltree-list-tests (Depends-on): Add progname.
3636         * tests/test-avltree_list.c: Include progname.h.
3637         (main): Call set_program_name.
3638
3639         * modules/array-oset-tests (Depends-on): Add progname.
3640         * tests/test-array_oset.c: Include progname.h.
3641         (main): Call set_program_name.
3642
3643         * modules/array-list-tests (Depends-on): Add progname.
3644         * tests/test-array_list.c: Include progname.h.
3645         (main): Call set_program_name.
3646
3647         * modules/argp-tests (Depends-on): Add progname.
3648         * tests/test-argp.c: Include argp.h first. Include progname.h.
3649         (main): Call set_program_name.
3650
3651 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
3652
3653         * doc/gnulib-tool.texi (Initial import): Reword description of
3654         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
3655         limited effect even if defined after the first system include.
3656
3657 2007-03-01  Bruno Haible  <bruno@clisp.org>
3658
3659         * build-aux/config.libpath: Update to libtool-1.5.22.
3660         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3661
3662 2007-03-01  Bruno Haible  <bruno@clisp.org>
3663
3664         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
3665         foo_CFLAGS.
3666         Reported by Ralf Wildenhues.
3667
3668 2007-03-01  Bruno Haible  <bruno@clisp.org>
3669
3670         * build-aux/install-reloc: Remove object files left over by some
3671         compilers.
3672         Reported by Ralf Wildenhues.
3673
3674 2007-03-01  Bruno Haible  <bruno@clisp.org>
3675
3676         * build-aux/install-reloc: Break long lines.
3677
3678 2007-03-01  Bruno Haible  <bruno@clisp.org>
3679
3680         * doc/relocatable.texi: Document that it may not work on OpenBSD.
3681         Reported by Ralf Wildenhues.
3682
3683 2007-03-01  Bruno Haible  <bruno@clisp.org>
3684
3685         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
3686         include ordering constraints.
3687
3688 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
3689
3690         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
3691         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
3692         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
3693         as another example.
3694         * lib/time_.h: Fix misspelling.
3695         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3696         Require gl_HEADER_TIME_H_DEFAULTS.
3697         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
3698         * m4/time_r.m4 (gl_TIME_R): Likewise.
3699         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
3700
3701 2007-03-01  Bruno Haible  <bruno@clisp.org>
3702
3703         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
3704         * m4/utimens.m4 (gl_UTIMENS): Likewise.
3705
3706 2007-03-01  Jim Meyering  <jim@meyering.net>
3707
3708         * modules/xreadlink (Maintainer): Add my name.
3709         * modules/xreadlink-with-size (Depends-on): Alphabetize.
3710
3711 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
3712             Bruno Haible  <bruno@clisp.org>
3713
3714         * build-aux/install-reloc: Compile also c-ctype.c.
3715         * build-aux/relocatable.sh.in: New file.
3716         * doc/relocatable.texi: New file.
3717         * doc/relocatable-maint.texi: New file.
3718         * doc/gnulib.texi: Include relocatable-maint.texi.
3719         * lib/progreloc.c: Include unistd.h unconditionally.
3720         * lib/relocwrapper.c: Include unistd.h unconditionally.
3721         Include c-ctype.h.
3722         (add_dotbin): Use c_tolower.
3723         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
3724         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
3725         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
3726         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
3727         to m4/relocatable-lib.m4.
3728         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
3729         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
3730         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
3731         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
3732         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
3733         * modules/relocatable: New file.
3734         * modules/relocatable-lib: New file.
3735         * modules/relocatable-script: New file.
3736
3737 2007-02-28  Bruno Haible  <bruno@clisp.org>
3738
3739         Import --enable-relocatable infrastructure.
3740         * build-aux/config.libpath: New file, from GNU gettext.
3741         * build-aux/install-reloc: New file, from GNU gettext.
3742         * build-aux/reloc-ldflags: New file, from GNU gettext.
3743         * lib/relocatable.h: New file, from GNU gettext.
3744         * lib/relocatable.c: New file, from GNU gettext.
3745         * lib/relocwrapper.c: New file, from GNU gettext.
3746         * m4/relocatable.m4: New file, from GNU gettext.
3747
3748 2007-02-28  Bruno Haible  <bruno@clisp.org>
3749
3750         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
3751
3752         * modules/xreadlink: New file, from GNU gettext with modifications.
3753         * lib/xreadlink.c: New file, from GNU gettext.
3754         * lib/xreadlink.h: Add comments.
3755         (xreadlink): New declaration.
3756
3757         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
3758         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
3759         lib/xreadlink-with-size.c.
3760         (configure.ac): Remove gl_XREADLINK invocation.
3761         (Makefile.am): Augment lib_SOURCES.
3762         * m4/xreadlink.m4: Remove file.
3763         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
3764         (xreadlink_with_size): Renamed from xreadink.
3765         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
3766         * modules/canonicalize (Depends-on): Replace xreadlink with
3767         xreadlink-with-size.
3768         * lib/canonicalize.c (canonicalize_filename_mode): Update.
3769
3770 2007-02-25  Jim Meyering  <jim@meyering.net>
3771
3772         * build-aux/announce-gen: When complaining about excess arguments,
3773         list them.
3774
3775 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
3776
3777         * README: Document signed integer overflow situation more
3778         accurately.
3779
3780 2007-02-25  Bruno Haible  <bruno@clisp.org>
3781
3782         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
3783         'a' or 'A' conversion.
3784
3785 2007-02-25  Bruno Haible  <bruno@clisp.org>
3786
3787         * modules/filename: Renamed from modules/pathname.
3788         (Files): Replace lib/pathname.h with lib/filename.h. Replace
3789         lib/concatpath.c with lib/concat-filename.c.
3790         (Makefile.am): Update.
3791         (Include): Replace pathname.h with filename.h.
3792         * lib/filename.h: Renamed from lib/pathname.h.
3793         (concatenated_filename): Renamed from concatenated_pathname.
3794         * lib/concat-filename.c: Renamed from lib/concatpath.c.
3795         (concatenated_filename): Renamed from concatenated_pathname.
3796         * lib/findprog.c: Include filename.h instead of pathname.h.
3797         (find_in_path): Update.
3798         * lib/javacomp.c: Include filename.h instead of pathname.h.
3799         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
3800         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
3801         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
3802         is_oldgcj_14_13_usable, is_javac_usable): Update.
3803         * lib/javaexec.c: Include filename.h instead of pathname.h.
3804         (execute_java_class): Update.
3805         * modules/findprog: Update.
3806         * modules/javacomp: Update.
3807         * modules/javaexec: Update.
3808         * MODULES.html.sh (File system functions): Add 'filename', remove
3809         'pathname'.
3810
3811 2007-02-25  Bruno Haible  <bruno@clisp.org>
3812
3813         * modules/printf-frexpl-tests: New file.
3814         * tests/test-printf-frexpl.c: New file.
3815
3816         * modules/printf-frexpl: New file.
3817         * lib/printf-frexpl.h: New file.
3818         * lib/printf-frexpl.c: New file.
3819         * m4/printf-frexpl.m4: New file.
3820
3821 2007-02-25  Bruno Haible  <bruno@clisp.org>
3822
3823         * modules/printf-frexp-tests: New file.
3824         * tests/test-printf-frexp.c: New file.
3825
3826         * modules/printf-frexp: New file.
3827         * lib/printf-frexp.h: New file.
3828         * lib/printf-frexp.c: New file.
3829         * m4/printf-frexp.m4: New file.
3830
3831 2007-02-25  Bruno Haible  <bruno@clisp.org>
3832
3833         Assume automake >= 1.10 for the tests.
3834         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
3835         * modules/arctwo-tests: Likewise.
3836         * modules/argp-tests: Likewise.
3837         * modules/avltree-list-tests: Likewise.
3838         * modules/avltree-oset-tests: Likewise.
3839         * modules/avltreehash-list-tests: Likewise.
3840         * modules/carray-list-tests: Likewise.
3841         * modules/crc-tests: Likewise.
3842         * modules/des-tests: Likewise.
3843         * modules/gc-arcfour-tests: Likewise.
3844         * modules/gc-arctwo-tests: Likewise.
3845         * modules/gc-des-tests: Likewise.
3846         * modules/gc-hmac-md5-tests: Likewise.
3847         * modules/gc-hmac-sha1-tests: Likewise.
3848         * modules/gc-md2-tests: Likewise.
3849         * modules/gc-md4-tests: Likewise.
3850         * modules/gc-md5-tests: Likewise.
3851         * modules/gc-pbkdf2-sha1-tests: Likewise.
3852         * modules/gc-rijndael-tests: Likewise.
3853         * modules/gc-sha1-tests: Likewise.
3854         * modules/gc-tests: Likewise.
3855         * modules/getaddrinfo-tests: Likewise.
3856         * modules/hmac-md5-tests: Likewise.
3857         * modules/hmac-sha1-tests: Likewise.
3858         * modules/linked-list-tests: Likewise.
3859         * modules/linkedhash-list-tests: Likewise.
3860         * modules/lock-tests: Likewise.
3861         * modules/md2-tests: Likewise.
3862         * modules/md4-tests: Likewise.
3863         * modules/md5-tests: Likewise.
3864         * modules/rbtree-list-tests: Likewise.
3865         * modules/rbtree-oset-tests: Likewise.
3866         * modules/rbtreehash-list-tests: Likewise.
3867         * modules/read-file-tests: Likewise.
3868         * modules/rijndael-tests: Likewise.
3869         * modules/stdint-tests: Likewise.
3870         * modules/tls-tests: Likewise.
3871
3872 2007-02-24  Bruno Haible  <bruno@clisp.org>
3873
3874         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
3875         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
3876         function; instead check whether isnan with a double argument links.
3877         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
3878         function; instead check whether isnan with a 'long double' argument
3879         links.
3880         Reported by Eric Blake <ebb9@byu.net>.
3881
3882 2007-02-24  Bruno Haible  <bruno@clisp.org>
3883
3884         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
3885         defined.
3886         * lib/isnanl.c: Remove all code. Just include isnan.c.
3887         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
3888
3889 2007-02-25  Jim Meyering  <jim@meyering.net>
3890
3891         Avoid conflicting types for 'unsetenv' on FreeBSD.
3892         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
3893         conflicting with FreeBSD's (5.0 and 6.1) function declaration
3894         in stdlib.h.
3895
3896 2007-02-24  Bruno Haible  <bruno@clisp.org>
3897
3898         * modules/isnanl-nolibm-tests: New file.
3899         * tests/test-isnanl.c: New file.
3900
3901         * modules/isnanl-nolibm: New file.
3902         * lib/isnanl.h: New file.
3903         * lib/isnanl.c: New file.
3904         * m4/isnanl.m4: New file.
3905
3906 2007-02-24  Bruno Haible  <bruno@clisp.org>
3907
3908         * modules/isnan-nolibm-tests: New file.
3909         * tests/test-isnan.c: New file.
3910
3911         * modules/isnan-nolibm: New file.
3912         * lib/isnan.h: New file.
3913         * lib/isnan.c: New file.
3914         * m4/isnan.m4: New file.
3915
3916 2007-02-24  Bruno Haible  <bruno@clisp.org>
3917
3918         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
3919         assume that an exponent fits in 20 bits.
3920
3921 2007-02-24  Jim Meyering  <jim@meyering.net>
3922
3923         * m4/regex.m4: Update the description of the configure-time option,
3924         --without-included-regex, to state accurately what the defaults are,
3925         and perhaps to give people an idea why using this option is risky.
3926
3927 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
3928
3929         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
3930         loops on small arguments.  This attempts to avoid the problem
3931         Bruno Haible reported for AIX 4.3.2 in
3932         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
3933
3934 2007-02-23  Bruno Haible  <bruno@clisp.org>
3935
3936         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
3937         Needed for help2man.
3938
3939 2007-02-23  Karl Berry  <karl@gnu.org>
3940
3941         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
3942         exists, foo.h should be cvs-ignored, not committed.
3943
3944 2007-02-23  Eric Blake  <ebb9@byu.net>
3945
3946         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
3947         * lib/stat-time.h (includes): Likewise.
3948         * lib/utimecmp.c (includes): Likewise.
3949         * lib/utimens.h (includes): Likewise.
3950         * lib/getdate.y (includes): Also include "timespec.h" for use
3951         internal to the module.
3952         * modules/utimens (Depends-on): Revert yesterday's patch.
3953         * modules/nanosleep (Depends-on): Add missing dependency.
3954
3955 2007-02-22  Bruno Haible  <bruno@clisp.org>
3956
3957         * lib/glob.c: Don't include getlogin_r.h.
3958
3959 2007-02-22  Jim Meyering  <jim@meyering.net>
3960
3961         * modules/utimens (Depends-on): Add timespec, required for
3962         utimens.h's inclusion of timespec.h.
3963
3964 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
3965
3966         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
3967         long unreadable paths in GNU/Linux.  Problem reported by Andreas
3968         Schwab in
3969         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
3970         I'll try to think of a better way to fix the Solaris problem.
3971
3972         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
3973         like glibc; on Solaris 10, it fails with errno == EINVAL.
3974         POSIX says the behavior is unspecified if the first argument is NULL,
3975         so play it safe and never pass NULL to the system getcwd.
3976
3977 2007-02-21  Jim Meyering  <jim@meyering.net>
3978
3979         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
3980         of gettimeofday.  It would conflict with the one now always
3981         provided via sys_time_.h.  Reported by Matthew Woehlke, as
3982         an IRIX 6.5 build failure.
3983
3984 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
3985
3986         Minor fixups to port to Solaris 10 with Sun C 5.8.
3987         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
3988         * modules/getcwd (Depends-on): Add dirfd.
3989         * lib/putenv.c (putenv): #undef it.
3990         (rpl_putenv): New decl.
3991         (malloc, free): Include <stdlib.h> rather than prototyping separately.
3992
3993 2007-02-20  Bruno Haible  <bruno@clisp.org>
3994
3995         * modules/stdio-tests: New file.
3996         * tests/test-stdio.c: New file.
3997
3998         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
3999         (Depends-on): Add stdio.
4000         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
4001         (Include): Use <stdio.h> instead of vsnprintf.h.
4002         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
4003         HAVE_DECL_VSNPRINTF.
4004         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
4005
4006         * modules/snprintf (Files): Remove lib/snprintf.h.
4007         (Depends-on): Add stdio.
4008         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
4009         (Include): Use <stdio.h> instead of snprintf.h.
4010         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
4011         HAVE_DECL_SNPRINTF.
4012         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
4013         * lib/getaddrinfo.c: Likewise.
4014
4015         * modules/stdio: New file.
4016         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
4017         * lib/snprintf.h: Remove file.
4018         * lib/vsnprintf.h: Remove file.
4019         * lib/.cppi-disable: Remove snprintf.h.
4020         * m4/stdio_h.m4: New file.
4021         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
4022
4023 2007-02-20  Jim Meyering  <jim@meyering.net>
4024
4025         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
4026         used by e.g., mingw.  From Bruno Haible.
4027
4028 2007-02-19  Bruno Haible  <bruno@clisp.org>
4029
4030         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
4031         warnings.
4032         Reported by Ben Pfaff <blp@cs.stanford.edu>.
4033
4034 2007-02-19  Bruno Haible  <bruno@clisp.org>
4035
4036         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
4037         from mingw users.
4038
4039 2007-02-19  Bruno Haible  <bruno@clisp.org>
4040
4041         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
4042         warnings.
4043         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
4044
4045 2007-02-19  Jim Meyering  <jim@meyering.net>
4046
4047         Don't use FD after a successful "fdopendir (fd)".
4048         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
4049         Reset it by calling dirfd on the just-obtained DIR*.
4050
4051         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
4052         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
4053
4054 2007-02-18  Bruno Haible  <bruno@clisp.org>
4055
4056         * lib/readlink.c: Include <unistd.h>.
4057         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
4058         HAVE_READLINK.
4059         * modules/readlink (Depends-on): Add unistd.
4060         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4061         (Include): Add <unistd.h>.
4062
4063         * lib/getlogin_r.h: Remove file.
4064         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
4065         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
4066         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
4067         HAVE_DECL_GETLOGIN_R.
4068         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
4069         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4070         (Include): Use <unistd.h> instead of getlogin_r.h.
4071
4072         * lib/getcwd.h: Remove file.
4073         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
4074         * lib/xgetcwd.c: Likewise.
4075         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
4076         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
4077         * modules/getcwd (Files): Remove lib/getcwd.h.
4078         (Depends-on): Add unistd.
4079         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4080         (Include): Use <unistd.h> instad of getcwd.h.
4081
4082         * lib/ftruncate.c: Include <unistd.h> first.
4083         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
4084         Set HAVE_FTRUNCATE.
4085         * modules/ftruncate (Depends-on): Add unistd.
4086         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4087
4088         * lib/fchdir.c: Include <unistd.h> first.
4089         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
4090         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
4091         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
4092         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4093         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
4094
4095         * lib/dup2.c: Include <unistd.h> first.
4096         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
4097         HAVE_DUP2.
4098         * modules/dup2 (Depends-on): Add unistd.
4099         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4100
4101         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
4102         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
4103         REPLACE_CHOWN. Don't define chown as a macro here.
4104         * modules/chown (Depends-on): Add unistd.
4105         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4106
4107         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
4108         Add definition for GL_LINK_WARNING.
4109         (chown, dup2): New declarations.
4110         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
4111         link warning.
4112         (ftruncate): New declaration.
4113         (getcwd): New declaration, taken from old getcwd.h.
4114         (getlogin_r): New declaration, taken from old getlogin_r.h.
4115         (readlink): New declaration.
4116         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
4117         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
4118         (gl_PREREQ_UNISTD): Remove macro.
4119         (gl_UNISTD_MODULE_INDICATOR): New macro.
4120         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
4121         many new variables. Don't set UNISTD_H.
4122         * modules/unistd (Description): Change.
4123         (Depends-on): Add link-warning.
4124         (configure.ac): Update.
4125         (Makefile.am): Create unistd.h always. Substitute many new variables
4126         into it.
4127
4128 2007-02-18  Bruno Haible  <bruno@clisp.org>
4129
4130         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
4131         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
4132         HAVE_GETSUBOPT.
4133         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
4134         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
4135         * lib/getsubopt.h: Remove file.
4136         * modules/getsubopt (Files): Remove lib/getsubopt.h.
4137         (Depends-on): Add stdlib.
4138         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4139         (Includes): Use <stdlib.h> instead of getsubopt.h.
4140         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
4141         Set HAVE_GETSUBOPT.
4142         * lib/getsubopt.c: Don't include getsubopt.h.
4143
4144 2007-02-18  Bruno Haible  <bruno@clisp.org>
4145
4146         * modules/fchdir (Depends-on): Add dup2.
4147
4148 2007-02-18  Bruno Haible  <bruno@clisp.org>
4149
4150         * lib/stdlib_.h: Handle glibc's special invocation convention
4151         specially.
4152
4153 2007-02-18  Bruno Haible  <bruno@clisp.org>
4154
4155         * modules/stdlib-tests: New file.
4156         * tests/test-stdlib.c: New file.
4157
4158         * modules/mkstemp (Files): Remove lib/mkstemp.h.
4159         (Depends-on): Add stdlib.
4160         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4161         (Includes): Use <stdlib.h> instead of mkstemp.h.
4162         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
4163         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
4164         * lib/mkstemp.c: Don't include mkstemp.h.
4165         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
4166         * lib/stdlib--.h: Don't include mkstemp.h.
4167
4168         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
4169         (Depends-on): Add stdlib.
4170         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4171         (Includes): Use <stdlib.h> instead of mkdtemp.h.
4172         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
4173         HAVE_MKDTEMP.
4174         * lib/mkdtemp.c: Don't include mkdtemp.h.
4175         * lib/clean-temp.c: Don't include mkdtemp.h.
4176
4177         * modules/exit (Files): Remove lib/exit.h.
4178         (Depends-on): Add stdlib.
4179         (Makefile.am): Remove lib_SOURCES.
4180         (Include): Use <stdlib.h> instead of exit.h.
4181         * lib/argmatch.c: Don't include exit.h.
4182         * lib/execute.c: Likewise.
4183         * lib/pagealign_alloc.c: Likewise.
4184         * lib/pipe.c: Likewise.
4185         * lib/wait-process.c: Likewise.
4186         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
4187         * lib/exitfail.c: Likewise.
4188         * lib/savewd.c: Likewise.
4189         * lib/xsetenv.c: Likewise.
4190
4191         * modules/stdlib: New file.
4192         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
4193         and extra comments about mkstemp().
4194         * lib/exit.h: Remove file.
4195         * lib/mkdtemp.h: Remove file.
4196         * lib/mkstemp.h: Remove file.
4197         * m4/stdlib_h.m4: New file.
4198         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
4199
4200 2007-02-18  Bruno Haible  <bruno@clisp.org>
4201
4202         * modules/math-tests: New file.
4203         * tests/test-math.c: New file.
4204
4205         * modules/math: New file.
4206         * modules/mathl (Files): Remove lib/mathl.h.
4207         (Depends-on): Add math.
4208         (Makefile.am): Don't mention mathl.h.
4209         (Include): Use <math.h> instead of mathl.h.
4210         * lib/math_.h: New file.
4211         * lib/mathl.h: Remove file.
4212         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
4213         mathl.h.
4214         * lib/asinl.c: Likewise.
4215         * lib/atanl.c: Likewise.
4216         * lib/ceill.c: Likewise.
4217         * lib/cosl.c: Likewise.
4218         * lib/expl.c: Likewise.
4219         * lib/floorl.c: Likewise.
4220         * lib/frexpl.c: Likewise.
4221         * lib/ldexpl.c: Likewise.
4222         * lib/logl.c: Likewise.
4223         * lib/sincosl.c: Likewise.
4224         * lib/sinl.c: Likewise.
4225         * lib/sqrtl.c: Likewise.
4226         * lib/tanl.c: Likewise.
4227         * lib/trigl.c: Likewise.
4228         * m4/math_h.m4: New file.
4229         * MODULES.html.sh (Mathematics): Add math.
4230
4231 2007-02-17  Bruno Haible  <bruno@clisp.org>
4232
4233         * modules/wctype-tests: New file.
4234         * tests/test-wctype.c: New file.
4235
4236         * modules/wchar-tests: New file.
4237         * tests/test-wchar.c: New file.
4238
4239         * modules/unistd-tests: New file.
4240         * tests/test-unistd.c: New file.
4241
4242         * modules/time-tests: New file.
4243         * tests/test-time.c: New file.
4244
4245         * modules/sysexits-tests: New file.
4246         * tests/test-sysexits.c: New file.
4247
4248         * modules/sys_time-tests: New file.
4249         * tests/test-sys_time.c: New file.
4250
4251         * modules/sys_stat-tests: New file.
4252         * tests/test-sys_stat.c: New file.
4253
4254         * modules/sys_socket-tests: New file.
4255         * tests/test-sys_socket.c: New file.
4256
4257         * modules/sys_select-tests: New file.
4258         * tests/test-sys_select.c: New file.
4259
4260         * modules/string-tests: New file.
4261         * tests/test-string.c: New file.
4262
4263         * modules/stdbool-tests: New file.
4264         * tests/test-stdbool.c: New file.
4265
4266         * modules/netinet_in-tests: New file.
4267         * tests/test-netinet_in.c: New file.
4268
4269         * modules/inttypes-tests: New file.
4270         * tests/test-inttypes.c: New file.
4271
4272         * modules/fcntl-tests: New file.
4273         * tests/test-fcntl.c: New file.
4274
4275         * modules/byteswap-tests: New file.
4276         * tests/test-byteswap.c: New file.
4277
4278         * modules/arpa_inet-tests: New file.
4279         * tests/test-arpa_inet.c: New file.
4280
4281 2007-02-17  Bruno Haible  <bruno@clisp.org>
4282
4283         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
4284         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
4285         if the corresponding module is not enabled. Emit link warnings if
4286         the function is used nevertheless.
4287         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
4288         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
4289         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
4290         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
4291         * modules/inttypes (Depends-on): Add link-warning.
4292         (Makefile.am): Copy the contents of build-aux/link-warning.h into
4293         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
4294         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
4295         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
4296         * modules/imaxdiv (configure.ac): Likewise.
4297         * modules/strtoimax (configure.ac): Likewise.
4298         * modules/strtoumax (configure.ac): Likewise.
4299
4300 2007-02-17  Bruno Haible  <bruno@clisp.org>
4301
4302         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
4303         gl_STRING_MODULE_INDICATOR_DEFAULTS.
4304         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
4305         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
4306
4307 2007-02-17  Bruno Haible  <bruno@clisp.org>
4308
4309         * modules/link-warning: New file.
4310         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
4311         * lib/string_.h (GL_LINK_WARNING): Remove definition.
4312         * modules/string (Depends-on): Add link-warning.
4313         (Makefile.am): Copy the contents of build-aux/link-warning.h into
4314         string.h.
4315         * MODULES.html.sh (Support for building libraries and executables): Add
4316         link-warning.
4317
4318 2007-02-17  Bruno Haible  <bruno@clisp.org>
4319
4320         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
4321         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
4322         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
4323         long lines.
4324
4325 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
4326             Bruno Haible  <bruno@clisp.org>
4327
4328         * modules/tmpfile: New file.
4329         * lib/tmpfile.c: New file.
4330         * m4/tmpfile.m4: New file.
4331         * MODULES.html.sh (func_all_modules): New section "Input/output".
4332
4333 2007-02-15  Bruno Haible  <bruno@clisp.org>
4334
4335         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
4336         (supports_delete_on_close): New function.
4337         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
4338
4339 2007-02-14  Bruno Haible  <bruno@clisp.org>
4340
4341         * modules/mbspcasecmp-tests: New file.
4342         * tests/test-mbspcasecmp.sh: New file.
4343         * tests/test-mbspcasecmp.c: New file.
4344
4345         New module mbspcasecmp.
4346         * modules/mbspcasecmp: New file.
4347         * lib/mbspcasecmp.c: New file.
4348         * lib/string_.h (strncasecmp): Change warning message.
4349         (mbspcasecmp): New declaration.
4350         * m4/mbspcasecmp.m4: New file.
4351         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4352         GNULIB_MBSPCASECMP.
4353         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
4354         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
4355
4356 2007-02-14  Bruno Haible  <bruno@clisp.org>
4357
4358         * modules/mbsncasecmp-tests: New file.
4359         * tests/test-mbsncasecmp.sh: New file.
4360         * tests/test-mbsncasecmp.c: New file.
4361
4362         New module mbsncasecmp.
4363         * modules/mbsncasecmp: New file.
4364         * lib/mbsncasecmp.c: New file.
4365         * lib/string_.h (mbsncasecmp): New declaration.
4366         * m4/mbsncasecmp.m4: New file.
4367         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4368         GNULIB_MBSNCASECMP.
4369         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
4370         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
4371
4372 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
4373
4374         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
4375         Verify that it doesn't overlap with our flags.
4376         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
4377         do not have the desired effect in multibyte locales; instead, use
4378         mbscasecmp.
4379         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
4380         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
4381         we don't require GNU fnmatch ourselves (if our users require it, they
4382         should do so explicitly).
4383
4384         Fix regex code so it doesn't rely on strcasecmp.
4385         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
4386         Otherwise, include gnulib's langinfo.h.
4387         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
4388         undesirable behavior in non-C locales.  Instead, rely on localecharset.
4389         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
4390         * modules/regex (FILES): Remove m4/codeset.m4.
4391         (Depends-on): Add localcharset.  Remove strcase.
4392
4393 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4394
4395         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
4396         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
4397
4398 2007-02-13  Bruno Haible  <bruno@clisp.org>
4399
4400         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
4401         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4402
4403 2007-02-12  Bruno Haible  <bruno@clisp.org>
4404
4405         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4406         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
4407         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
4408         time warning rather than a link error.
4409
4410 2007-02-12  Bruno Haible  <bruno@clisp.org>
4411
4412         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
4413         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
4414         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4415
4416 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4417
4418         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
4419         args, not 2.
4420
4421 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4422
4423         New module 'time', so that apps can include <time.h> as per
4424         POSIX and GNU instead of separate include files like time_r.h
4425         and timegm.h.  This implementation tries out a simpler approach
4426         for replacing decls in standard include files (as compared to
4427         the string module), somewhat as an experiment.
4428
4429         * config/srclist.txt: Comment out mktime.c for now.
4430         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
4431         since it doesn't apply any more.  Use generic wording instead.
4432         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
4433         'time'.
4434         * lib/time_.h, m4/time_h.m4, modules/time: New files.
4435         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
4436         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
4437         Don't include <sys/types.h>; no longer needed since we assume C89.
4438         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
4439         * lib/strftime.c: Likewise.
4440         * lib/time_r.c: Likewise.
4441         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
4442         * lib/nanosleep.c: Include <time.h> first, to check interface.
4443         * lib/strptime.c: Likewise.
4444         * lib/time_r.c: Likewise.
4445         * lib/timegm.c: Likewise.
4446         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
4447         needed.
4448         * lib/timegm.c: Don't include timegm.h; no longer needed.
4449         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
4450         time.h now handles any problems in that area.
4451         (struct timespec, nanosleep): Remove; time.h now arranges for these.
4452         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
4453         that time.h defines struct timespec.
4454         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
4455         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
4456         handles that.
4457         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
4458         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
4459         needed.  Set REPLACE_LOCALTIME.
4460         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
4461         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
4462         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
4463         nanosleep; time_h.m4 now does that.  Don't require
4464         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
4465         module handles this now.
4466         * modules/getdate (Depends-on): Remove timespec.  Add time.
4467         * modules/nanosleep (Depends-on): Likewise.
4468         * modules/stat-time (Depends-on): Likewise.
4469         * modules/nanosleep (Include): Include time.h, not timespec.h.
4470         * modules/strptime (Files): Remove lib/strptime.h.
4471         (Depends-on): Add extensions, time.
4472         (Include): Include time.h, not strptime.h.
4473         * modules/time_r (Files): Remove lib/time_r.h.
4474         (Depends-on): Add time.
4475         (Include): Include time.h, not time_r.h.
4476         * modules/timegm: Likewise.
4477         * modules/timespec (Description): Now does timespec-related decls
4478         of our own, instead of struct timespec itself.
4479         (Depends-on): Add time; remove extensions.
4480         (Maintainer): Add self.
4481         * modules/utimecmp (Depends-on): Add time; remove timespec.
4482         * modules/utimens (Depends-on): Likewise.
4483         * modules/xnanosleep (Depends-on): Likewise.
4484
4485 2007-02-11  Bruno Haible  <bruno@clisp.org>
4486
4487         * lib/c-strstr.c: Include allocsa.h.
4488         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4489         * lib/c-strcasestr.c: Include allocsa.h.
4490         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4491         * lib/strcasestr.c: Include allocsa.h.
4492         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4493         * lib/mbsstr.c: Include allocsa.h.
4494         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4495         allocsa/freesa instead of malloc/free.
4496         * lib/mbscasestr.c: Include allocsa.h.
4497         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4498         allocsa/freesa instead of malloc/free.
4499         * modules/c-strstr (Depends-on): Add allocsa.
4500         * modules/c-strcasestr (Depends-on): Likewise.
4501         * modules/strcasestr (Depends-on): Likewise.
4502         * modules/mbsstr (Depends-on): Likewise.
4503         * modules/mbscasestr (Depends-on): Likewise.
4504
4505 2007-02-11  Bruno Haible  <bruno@clisp.org>
4506
4507         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
4508
4509         * modules/mbsspn-tests: New file.
4510         * tests/test-mbsspn.sh: New file.
4511         * tests/test-mbsspn.c: New file.
4512
4513 2007-02-11  Bruno Haible  <bruno@clisp.org>
4514
4515         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
4516
4517         * modules/mbspbrk-tests: New file.
4518         * tests/test-mbspbrk.sh: New file.
4519         * tests/test-mbspbrk.c: New file.
4520
4521 2007-02-11  Bruno Haible  <bruno@clisp.org>
4522
4523         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
4524         unneeded cast.
4525
4526         * modules/mbscspn-tests: New file.
4527         * tests/test-mbscspn.sh: New file.
4528         * tests/test-mbscspn.c: New file.
4529
4530 2007-02-11  Bruno Haible  <bruno@clisp.org>
4531
4532         * modules/mbscasecmp-tests: New file.
4533         * tests/test-mbscasecmp.sh: New file.
4534         * tests/test-mbscasecmp.c: New file.
4535
4536 2007-02-11  Bruno Haible  <bruno@clisp.org>
4537
4538         Ensure O(n) worst-case complexity of mbscasestr.
4539         * lib/mbscasestr.c: Include stdbool.h.
4540         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4541         functions.
4542         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
4543         the bookkeeping indicates that it's worth it.
4544         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
4545
4546         * modules/mbscasestr-tests: New file.
4547         * tests/test-mbscasestr1.c: New file.
4548         * tests/test-mbscasestr2.sh: New file.
4549         * tests/test-mbscasestr2.c: New file.
4550         * tests/test-mbscasestr3.sh: New file.
4551         * tests/test-mbscasestr3.c: New file.
4552         * tests/test-mbscasestr4.sh: New file.
4553         * tests/test-mbscasestr4.c: New file.
4554         * m4/locale-tr.m4: New file.
4555
4556 2007-02-11  Bruno Haible  <bruno@clisp.org>
4557
4558         Ensure O(n) worst-case complexity of mbsstr.
4559         * lib/mbsstr.c: Include stdbool.h.
4560         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4561         functions.
4562         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
4563         bookkeeping indicates that it's worth it.
4564         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
4565
4566         * modules/mbsstr-tests: New file.
4567         * tests/test-mbsstr1.c: New file.
4568         * tests/test-mbsstr2.sh: New file.
4569         * tests/test-mbsstr2.c: New file.
4570         * tests/test-mbsstr3.sh: New file.
4571         * tests/test-mbsstr3.c: New file.
4572         * m4/locale-fr.m4: New file.
4573
4574 2007-02-11  Bruno Haible  <bruno@clisp.org>
4575
4576         * lib/mbsrchr.c (mbsrchr): Fix bug.
4577
4578         * modules/mbsrchr-tests: New file.
4579         * tests/test-mbsrchr.sh: New file.
4580         * tests/test-mbsrchr.c: New file.
4581
4582 2007-02-11  Bruno Haible  <bruno@clisp.org>
4583
4584         * lib/mbschr.c (mbschr): Fix bug.
4585
4586         * modules/mbschr-tests: New file.
4587         * tests/test-mbschr.sh: New file.
4588         * tests/test-mbschr.c: New file.
4589         * m4/locale-zh.m4: New file.
4590
4591 2007-02-11  Bruno Haible  <bruno@clisp.org>
4592
4593         Support for copying multibyte string iterators.
4594         * lib/mbiter.h: Include <string.h>.
4595         (mbiter_multi_copy): New function.
4596         (mbi_copy): New macro.
4597         * lib/mbuiter.h: Include <string.h>.
4598         (mbuiter_multi_copy): New function.
4599         (mbui_copy): New macro.
4600
4601 2007-02-11  Bruno Haible  <bruno@clisp.org>
4602
4603         New module mbslen.
4604         * modules/mbslen: New file.
4605         * lib/mbslen.c: New file.
4606         * lib/string_.h (mbslen): New declaration.
4607         * m4/mbslen.m4: New file.
4608         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4609         GNULIB_MBSLEN.
4610         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
4611         * MODULES.html.sh (Internationalization functions): Add mbslen.
4612
4613 2007-02-11  Bruno Haible  <bruno@clisp.org>
4614
4615         Ensure O(n) worst-case complexity of strcasestr substitute.
4616         * lib/strcasestr.c: Include stdbool.h.
4617         (knuth_morris_pratt): New function.
4618         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4619         bookkeeping indicates that it's worth it.
4620         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
4621
4622         * modules/strcasestr-tests: New file.
4623         * tests/test-strcasestr.c: New file.
4624
4625 2007-02-11  Bruno Haible  <bruno@clisp.org>
4626
4627         Ensure O(n) worst-case complexity of c_strcasestr.
4628         * lib/c-strcasestr.c: Include stdbool.h, string.h.
4629         (knuth_morris_pratt): New function.
4630         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
4631         the bookkeeping indicates that it's worth it.
4632         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
4633
4634         * modules/c-strcasestr-tests: New file.
4635         * tests/test-c-strcasestr.c: New file.
4636
4637 2007-02-11  Bruno Haible  <bruno@clisp.org>
4638
4639         Ensure O(n) worst-case complexity of c_strstr.
4640         * lib/c-strstr.c: Include stdbool.h, string.h.
4641         (knuth_morris_pratt): New function.
4642         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4643         bookkeeping indicates that it's worth it.
4644         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
4645
4646         * lib/c-strstr.c: Complete rewrite for maintainability.
4647
4648         * modules/c-strstr-tests: New file.
4649         * tests/test-c-strstr.c: New file.
4650
4651 2007-02-11  Bruno Haible  <bruno@clisp.org>
4652
4653         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
4654         5.2.1 and earlier, whereby \055 was treated just like the range
4655         delimiter '-'.
4656         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
4657
4658 2007-02-08  Bruno Haible  <bruno@clisp.org>
4659
4660         * modules/regex (Depends-on): Add stdbool.
4661         Reported by Dalibor Topic <robilad@kaffe.org>.
4662
4663 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
4664
4665         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
4666         Prefer returning from main to exiting from it.
4667         Remove unnecessary parens after sizeof.
4668
4669 2007-02-05  Bruno Haible  <bruno@clisp.org>
4670
4671         New module mbssep.
4672         * modules/mbssep: New file.
4673         * lib/mbssep.c: New file.
4674         * lib/string_.h (strsep): Add a conditional link warning.
4675         (mbssep): New declaration.
4676         * m4/mbssep.m4: New file.
4677         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4678         GNULIB_MBSSEP.
4679         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
4680         * MODULES.html.sh (Internationalization functions): Add mbssep.
4681
4682 2007-02-05  Bruno Haible  <bruno@clisp.org>
4683
4684         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
4685         Optimize search in case of 1 delimiter.
4686
4687 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4688
4689         * lib/acl.h: Include sys/types.h before sys/acl.h.
4690
4691 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4692
4693         Merge upstream fix for glibc bugzilla #3957:
4694
4695         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
4696
4697         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
4698         bit for RE_HAT_LISTS_NOT_NEWLINE.
4699         (build_charclass_op): Remove bogus comment.
4700
4701 2007-02-05  Simon Josefsson  <simon@josefsson.org>
4702
4703         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
4704
4705 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4706
4707         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
4708         * lib/memmem.c [!defined _LIBC]: Include config.h.
4709
4710 2007-02-04  Bruno Haible  <bruno@clisp.org>
4711
4712         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
4713         warning message.
4714
4715 2007-02-04  Bruno Haible  <bruno@clisp.org>
4716
4717         New module mbstok_r.
4718         * modules/mbstok_r: New file.
4719         * lib/mbstok_r.c: New file.
4720         * lib/string_.h (strtok_r): Change argument names to match the
4721         comments. Add a conditional link warning.
4722         (mbstok_r): New declaration.
4723         * m4/mbstok_r.m4: New file.
4724         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4725         GNULIB_MBSTOK_R.
4726         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
4727         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
4728
4729 2007-02-04  Bruno Haible  <bruno@clisp.org>
4730
4731         New module mbsspn.
4732         * modules/mbsspn: New file.
4733         * lib/mbsspn.c: New file.
4734         * lib/string_.h (strspn): Add a conditional link warning.
4735         (mbsspn): New declaration.
4736         * m4/mbsspn.m4: New file.
4737         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4738         GNULIB_MBSSPN.
4739         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
4740         * MODULES.html.sh (Internationalization functions): Add mbsspn.
4741
4742 2007-02-04  Bruno Haible  <bruno@clisp.org>
4743
4744         New module mbspbrk.
4745         * modules/mbspbrk: New file.
4746         * lib/mbspbrk.c: New file.
4747         * lib/string_.h (strpbrk): Add a conditional link warning.
4748         (mbspbrk): New declaration.
4749         * m4/mbspbrk.m4: New file.
4750         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4751         GNULIB_MBSPBRK.
4752         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
4753         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
4754
4755 2007-02-04  Bruno Haible  <bruno@clisp.org>
4756
4757         New module mbscspn.
4758         * modules/mbscspn: New file.
4759         * lib/mbscspn.c: New file.
4760         * lib/string_.h (strcspn): Add a conditional link warning.
4761         (mbscspn): New declaration.
4762         * m4/mbscspn.m4: New file.
4763         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4764         GNULIB_MBSCSPN.
4765         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
4766         * MODULES.html.sh (Internationalization functions): Add mbscspn.
4767
4768 2007-02-04  Bruno Haible  <bruno@clisp.org>
4769
4770         New module mbscasestr, reduced goal of strcasestr.
4771         * modules/mbscasestr: New file.
4772         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
4773         (mbscasestr): Renamed from strcasestr.
4774         * lib/strcasestr.c: Don't include mbuiter.h.
4775         (strcasestr): Remove support for multibyte locales.
4776         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
4777         Change the conditional link warning.
4778         (mbscasestr): New declaration.
4779         * m4/mbscasestr.m4: New file.
4780         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
4781         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
4782         REPLACE_STRCASESTR.
4783         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
4784         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4785         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4786         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
4787         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
4788         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4789         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
4790         (Depends-on): Remove mbuiter.
4791         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
4792
4793 2007-02-04  Bruno Haible  <bruno@clisp.org>
4794
4795         Simplify handling of strncasecmp.
4796         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
4797         the conditional link warning.
4798         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4799         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
4800         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
4801         * modules/strcase (configure.ac): Don't invoke
4802         gl_STRING_MODULE_INDICATOR.
4803         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
4804
4805 2007-02-04  Bruno Haible  <bruno@clisp.org>
4806
4807         New module mbscasecmp, reduced goal of strcasecmp.
4808         * modules/mbscasecmp: New file.
4809         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
4810         (mbscasecmp): Renamed from strcasecmp.
4811         * lib/strcasecmp.c: Don't include mbuiter.h.
4812         (strcasecmp): Remove support for multibyte locales.
4813         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
4814         Change the conditional link warning.
4815         (mbscasecmp): New declaration.
4816         * m4/mbscasecmp.m4: New file.
4817         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
4818         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
4819         REPLACE_STRCASECMP.
4820         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
4821         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4822         GNULIB_MBSCASECMP.
4823         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
4824         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
4825         * modules/strcase (Files): Remove m4/mbrtowc.m4.
4826         (Depends-on): Remove mbuiter.
4827         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
4828
4829 2007-02-04  Bruno Haible  <bruno@clisp.org>
4830
4831         New module mbsstr. Remove module strstr.
4832         * modules/mbsstr: New file.
4833         * modules/strstr: Remove file.
4834         * lib/mbsstr.c: Renamed from lib/strstr.c.
4835         (mbsstr): Renamed from strstr.
4836         * lib/string_.h (strstr): Remove declaration. Change the conditional
4837         link warning.
4838         (mbsstr): New declaration.
4839         * m4/mbsstr.m4: New file.
4840         * m4/strstr.m4: Remove file.
4841         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
4842         REPLACE_STRSTR.
4843         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
4844         Don't initialize GNULIB_STRSTR.
4845         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
4846         substitute GNULIB_STRSTR and REPLACE_STRSTR.
4847         * MODULES.html.sh (Internationalization functions): Add mbsstr.
4848         (Support for systems lacking ANSI C 89): Remove strstr.
4849
4850 2007-02-04  Bruno Haible  <bruno@clisp.org>
4851
4852         New module mbsrchr.
4853         * modules/mbsrchr: New file.
4854         * lib/mbsrchr.c: New file.
4855         * lib/string_.h (strrchr): Add a conditional link warning.
4856         (mbsrchr): New declaration.
4857         * m4/mbsrchr.m4: New file.
4858         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4859         GNULIB_MBSRCHR.
4860         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
4861         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
4862
4863 2007-02-04  Bruno Haible  <bruno@clisp.org>
4864
4865         New module mbschr.
4866         * modules/mbschr: New file.
4867         * lib/mbschr.c: New file.
4868         * lib/string_.h (strchr): Add a conditional link warning.
4869         (mbschr): New declaration.
4870         * m4/mbschr.m4: New file.
4871         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4872         GNULIB_MBSCHR.
4873         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
4874         * MODULES.html.sh (Internationalization functions): Add mbschr.
4875
4876 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4877
4878         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
4879
4880         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
4881
4882 2007-02-04  Bruno Haible  <bruno@clisp.org>
4883
4884         New module description section 'configure.ac-early'.
4885         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
4886         (func_get_autoconf_early_snippet): New function.
4887         (func_import, func_create_testdir): Use it. Remove special cases for
4888         modules 'extensions' and 'lock'.
4889         * modules/extensions (configure.ac-early): Require
4890         gl_USE_SYSTEM_EXTENSIONS.
4891         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
4892
4893 2007-02-04  Bruno Haible  <bruno@clisp.org>
4894
4895         Make use of gcj-4.3's -fsource and -ftarget option.
4896         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
4897         and if so try the options -fsource and -ftarget.
4898         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
4899         source_version, ftarget_option, target_version arguments.
4900         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
4901         (is_envjavac_oldgcj_14_14_usable): Renamed from
4902         is_envjavac_gcj_14_14_usable.
4903         (is_envjavac_oldgcj_14_13_usable): Renamed from
4904         is_envjavac_gcj_14_13_usable.
4905         (is_gcj_present): Update.
4906         (is_gcj_43, is_gcj43_usable): New functions.
4907         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
4908         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
4909         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
4910         try the options -fsource and -ftarget.
4911
4912 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
4913
4914         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
4915         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
4916         larger value.
4917
4918 2007-02-03  Jim Meyering  <jim@meyering.net>
4919
4920         Give tools a better chance to allocate space for very large buffers.
4921         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
4922
4923         Make pwd and readlink work also when run with an unreadable parent dir
4924         on systems with openat support.
4925         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
4926         provided getcwd function, even when we have openat support.
4927         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
4928
4929 2007-02-02  Bruno Haible  <bruno@clisp.org>
4930
4931         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4932         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
4933         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
4934         portability problems if one of these functions is only used on specific
4935         platforms.
4936         Reported by Paul Eggert.
4937
4938 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
4939
4940         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
4941         is causing more trouble than it's curing.
4942         * lib/regex_internal.h (__mempcpy): Remove.
4943         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
4944         (and make the code a tad smaller to boot).
4945         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
4946
4947 2007-02-02  Jim Meyering  <jim@meyering.net>
4948
4949         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
4950         section, not in the Makefile.am: one.
4951
4952 2007-02-02  Eric Blake  <ebb9@byu.net>
4953
4954         * lib/strchrnul.c: Always include config.h first.
4955
4956         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
4957         gnulib strstr is not necessary here.
4958
4959 2007-02-02  Simon Josefsson  <simon@josefsson.org>
4960
4961         * m4/socklen.m4: Fix typo.
4962
4963 2007-02-02  Eric Blake  <ebb9@byu.net>
4964
4965         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
4966         * modules/netinet_in (Makefile.am): Likewise.
4967
4968 2007-02-01  Bruno Haible  <bruno@clisp.org>
4969
4970         * lib/string_.h (GL_LINK_WARNING): New macro.
4971         (strcasecmp, strstr, strcasestr): If provided by the system,
4972         conditionally define as a macro that leads to a warning instead of to
4973         an error.
4974         (strncasecmp): Conditionally define as a macro that leads to a warning.
4975
4976 2007-02-01  Karl Berry  <karl@gnu.org>
4977
4978         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
4979
4980 2007-02-01  Bruno Haible  <bruno@clisp.org>
4981
4982         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
4983         renamings.
4984
4985 2007-02-01  Eric Blake  <ebb9@byu.net>
4986
4987         * modules/regex (Depends-on): Revert dependence on mempcpy.
4988         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
4989         module's definition of mempcpy.
4990         Reported by Paul Eggert.
4991
4992 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
4993
4994         * lib/string_.h: If the gnulib module XYZ is not present, undefine
4995         the symbol XYZ before redefining it.  This fixes a problem with
4996         programs that don't use XYZ, when compiled on systems that define
4997         XYZ to something else.
4998
4999 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
5000
5001         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
5002         occurs when "mkdir -m foo" creates a setgid directory that is (1)
5003         writeable to group or other and (2) is intended to have a special
5004         mode bit that is set or cleared.  In such a case, the directory
5005         should be neither group- nor other-writeable until the special
5006         mode bits are right.
5007
5008 2007-01-31  Eric Blake  <ebb9@byu.net>
5009
5010         * modules/mountlist (Depends-on): Add strstr.
5011
5012         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
5013         bug.
5014         * modules/string (Makefile.am): Remove redundant replacement.
5015         * modules/regex (Depends-on): Add mempcpy.
5016
5017 2007-01-31  Bruno Haible  <bruno@clisp.org>
5018
5019         New module description field 'Link'.
5020         * gnulib-tool (func_usage): Document --extract-link-directive.
5021         (sed_extract_prog): Recognize 'Link' directive.
5022         (func_get_link_directive): New function.
5023         (func_import): Show summary of link directives.
5024         Handle --extract-link-directive option.
5025         * modules/acl (Link): New section.
5026         * modules/clock-time (Link): New section.
5027         * modules/euidaccess (Link): New section.
5028         * modules/gettext (Link): New section.
5029         * modules/iconv (Link): New section.
5030         * modules/lock (Link): New section.
5031         * modules/nanosleep (Link): New section.
5032         * modules/readline (Link): New section.
5033
5034 2007-01-27  Bruno Haible  <bruno@clisp.org>
5035
5036         Enforce the use of gnulib modules for unportable <string.h> functions.
5037         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
5038         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
5039         (gl_HEADER_STRING_H_BODY): Require it.
5040         * lib/string_.h: If the gnulib module XYZ is not present, redefine
5041         the symbol XYZ to one that gives a link error.
5042         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
5043         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
5044         * modules/mempcpy (configure.ac): Likewise.
5045         * modules/memrchr (configure.ac): Likewise.
5046         * modules/stpcpy (configure.ac): Likewise.
5047         * modules/stpncpy (configure.ac): Likewise.
5048         * modules/strcase (configure.ac): Likewise.
5049         * modules/strcasestr (configure.ac): Likewise.
5050         * modules/strchrnul (configure.ac): Likewise.
5051         * modules/strdup (configure.ac): Likewise.
5052         * modules/strndup (configure.ac): Likewise.
5053         * modules/strnlen (configure.ac): Likewise.
5054         * modules/strpbrk (configure.ac): Likewise.
5055         * modules/strsep (configure.ac): Likewise.
5056         * modules/strstr (configure.ac): Likewise.
5057         * modules/strtok_r (configure.ac): Likewise.
5058
5059 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
5060
5061         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
5062
5063 2007-01-30  Jim Meyering  <jim@meyering.net>
5064
5065         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
5066
5067 2007-01-29  Bruno Haible  <bruno@clisp.org>
5068
5069         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
5070         * lib/execute.c: Likewise.
5071         * lib/pipe.c: Likewise.
5072         * lib/printf-args.h: Likewise.
5073         * lib/printf-args.c: Likewise.
5074         * lib/printf-parse.c: Likewise.
5075         * lib/vasnprintf.c: Likewise.
5076
5077 2007-01-29  Eric Blake  <ebb9@byu.net>
5078
5079         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
5080         declaration.
5081
5082 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
5083
5084         * lib/strptime.h (strptime): Use 'restrict' for args where
5085         POSIX requires this.
5086         * lib/strptime.c (strptime): Likewise.
5087         Change license notice from LGPL to GPL, since gnulib-tool will
5088         change this as needed.
5089         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
5090         defined.
5091         Include "strptime.h" first, to check interface.
5092         Do not #undef _LIBC and _NL_CURRENT.
5093         Do not include <stdlib.h>; no longer needed.
5094         Include "time_r.h" and declare ptime_locale_status
5095         only if _LIBC is not defined.
5096         (__P): Remove unused macro.
5097         (match_string): Bring back glibc version, but use it only if _LIBC
5098         is defined.
5099         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
5100         Remove unnecessary assertion and abort() call.
5101         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
5102         * m4/strptime.m4: Fix serial number comment.
5103         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
5104         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
5105         (Depends-on): Add time_r.
5106
5107 2007-01-29  Bruno Haible  <bruno@clisp.org>
5108
5109         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
5110         strptime.
5111         * modules/strptime (Depends-on): Add stdbool.
5112         * lib/strptime.h: Include <time.h> always. Add comments.
5113
5114 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
5115
5116         * modules/strptime: New file.
5117         * lib/strptime.h: New file.
5118         * lib/strptime.c: New file.
5119         * m4/strptime.m4: New file.
5120
5121 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
5122
5123         * MODULES.html.sh: New module mpsort.
5124         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
5125
5126         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
5127         a circularity problem with HP-UX ia64 reported by Bob Proulx in
5128         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
5129         All uses changed.
5130         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
5131         All uses changed.
5132         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
5133         to _Restrict_.
5134         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
5135         the parameter matches the prototype.
5136
5137 2007-01-28  Jim Meyering  <jim@meyering.net>
5138
5139         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
5140         sys/time.h here, reverting that part of the previous patch:
5141         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
5142
5143 2007-01-28  Bruno Haible  <bruno@clisp.org>
5144
5145         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
5146         value of $(SYS_TIME_H).
5147         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
5148         remove it conditionally, too. [added by Jim Meyering]
5149         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
5150         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
5151         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
5152         GETTIMEOFDAY_REPLACEMENT to 1.
5153
5154 2007-01-28  Bruno Haible  <bruno@clisp.org>
5155
5156         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
5157         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
5158         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
5159         Set UNISTD_H instead of UNISTD_H2.
5160         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
5161
5162 2007-01-28  Bruno Haible  <bruno@clisp.org>
5163
5164         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
5165         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
5166
5167 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5168
5169         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
5170         (func_create_testdir): Ensure C locale for `grep' and `tr'
5171         character ranges.
5172         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
5173         ACLOCAL_AMFLAGS parsing state machine.
5174
5175 2007-01-27  Bruno Haible  <bruno@clisp.org>
5176
5177         * modules/unistr/base: Update.
5178
5179 2007-01-27  Bruno Haible  <bruno@clisp.org>
5180
5181         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
5182         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
5183         * modules/unistr/u32-mbtouc-unsafe: Renamed from
5184         modules/unistr/u32-mbtouc.
5185         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
5186         * lib/unistr.h: Update.
5187         * lib/linebreak.c: Update.
5188         * modules/unistr/u32-mbtouc: Renamed from
5189         modules/unistr/u32-mbtouc-safe.
5190         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
5191         * lib/unistr.h: Update.
5192         * lib/unistr/u32-to-u8.c: Update.
5193         * lib/unistr/u32-to-u16.c: Update.
5194
5195 2007-01-27  Bruno Haible  <bruno@clisp.org>
5196
5197         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
5198         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
5199         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
5200         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
5201         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
5202         * modules/unistr/u16-mbtouc-unsafe: Renamed from
5203         modules/unistr/u16-mbtouc.
5204         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
5205         * lib/unistr.h: Update.
5206         * lib/linebreak.c: Update.
5207         * modules/linebreak: Update.
5208         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
5209         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
5210         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
5211         * modules/unistr/u16-mbtouc: Renamed from
5212         modules/unistr/u16-mbtouc-safe.
5213         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
5214         * lib/unistr.h: Update.
5215         * lib/unistr/u16-to-u8.c: Update.
5216         * modules/unistr/u16-to-u8: Update.
5217         * lib/unistr/u16-to-u32.c: Update.
5218         * modules/unistr/u16-to-u32: Update.
5219
5220 2007-01-27  Bruno Haible  <bruno@clisp.org>
5221
5222         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
5223         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
5224         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
5225         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
5226         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
5227         * modules/unistr/u8-mbtouc-unsafe: Renamed from
5228         modules/unistr/u8-mbtouc.
5229         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
5230         * lib/unistr.h: Update.
5231         * lib/striconveh.c: Update.
5232         * modules/striconveh: Update.
5233         * lib/linebreak.c: Update.
5234         * modules/linebreak: Update.
5235         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
5236         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
5237         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
5238         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
5239         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
5240         * lib/unistr.h: Update.
5241         * lib/striconveh.c: Update.
5242         * modules/striconveh: Update.
5243         * lib/unistr/u8-to-u16.c: Update.
5244         * modules/unistr/u8-to-u16: Update.
5245         * lib/unistr/u8-to-u32.c: Update.
5246         * modules/unistr/u8-to-u32: Update.
5247
5248 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5249
5250         Sync from Libtool.
5251         * lib/argz.c: Do not include strings.h nor memory.h, include
5252         string.h unconditionally.  Patch by Simon Josefsson.
5253
5254 2007-01-27  Bruno Haible  <bruno@clisp.org>
5255
5256         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
5257         from gl_HEADER_STRING_H_BODY.
5258         (gl_HEADER_STRING_H_BODY): Require it.
5259         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
5260         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
5261         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
5262         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
5263         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
5264         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
5265         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
5266         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
5267         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
5268         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
5269         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
5270         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
5271         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
5272         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
5273         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5274
5275 2007-01-27  Bruno Haible  <bruno@clisp.org>
5276
5277         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
5278         check_PROGRAMS into noinst_PROGRAMS.
5279         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
5280         check_PROGRAMS in this case.
5281         (func_import): Set for_test to false.
5282         (func_create_testdir): Set for_test to true.
5283
5284 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
5285             Bruno Haible  <bruno@clisp.org>
5286
5287         * modules/strcasestr (Files): Remove lib/strcasestr.h.
5288         (Depends-on): Add string.
5289         (Includes): Use <string.h> instead of strcasestr.h.
5290         * modules/string (Makefile.am): Also substitute the value of
5291         REPLACE_STRCASESTR.
5292         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
5293         assume strcasestr is declared in <string.h> not <strings.h>. Also
5294         set REPLACE_STRCASESTR.
5295         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
5296         REPLACE_STRCASESTR.
5297         * lib/strcasestr.h: Remove file.
5298         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
5299         * lib/string_.h (strcasestr): New declaration.
5300
5301 2007-01-27  Bruno Haible  <bruno@clisp.org>
5302
5303         * lib/string_.h: Use 'extern'.
5304
5305 2007-01-27  Jim Meyering  <jim@meyering.net>
5306
5307         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
5308         of set-but-not-used local, "q".
5309
5310         * lib/mempcpy.c: Include <config.h> before <string.h>.
5311         This fixes a compilation error on HP-UX, due to the system's
5312         "restrict"-using mempcpy prototype.
5313
5314 2007-01-26  Bruno Haible  <bruno@clisp.org>
5315
5316         Small optimization.
5317         * lib/javacomp.c: Include c-strstr.h.
5318          (is_envjavac_gcj): Use c_strstr instead of strstr.
5319         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
5320
5321 2007-01-26  Bruno Haible  <bruno@clisp.org>
5322
5323         * MODULES.html.sh (Unicode string functions): Add the new modules.
5324
5325         * modules/uniconv/u32-strconv-to-locale: New file.
5326         * lib/uniconv/u32-strconv-to-locale.c: New file.
5327
5328         * modules/uniconv/u16-strconv-to-locale: New file.
5329         * lib/uniconv/u16-strconv-to-locale.c: New file.
5330
5331         * modules/uniconv/u8-strconv-to-locale: New file.
5332         * lib/uniconv/u8-strconv-to-locale.c: New file.
5333
5334         * modules/uniconv/u32-strconv-from-locale: New file.
5335         * lib/uniconv/u32-strconv-from-locale.c: New file.
5336
5337         * modules/uniconv/u16-strconv-from-locale: New file.
5338         * lib/uniconv/u16-strconv-from-locale.c: New file.
5339
5340         * modules/uniconv/u8-strconv-from-locale: New file.
5341         * lib/uniconv/u8-strconv-from-locale.c: New file.
5342
5343         * modules/uniconv/u32-strconv-to-enc: New file.
5344         * lib/uniconv/u32-strconv-to-enc.c: New file.
5345         * modules/uniconv/u32-strconv-to-enc-tests: New file.
5346         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
5347
5348         * modules/uniconv/u16-strconv-to-enc: New file.
5349         * lib/uniconv/u16-strconv-to-enc.c: New file.
5350         * lib/uniconv/u-strconv-to-enc.h: New file.
5351         * modules/uniconv/u16-strconv-to-enc-tests: New file.
5352         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
5353
5354         * modules/uniconv/u8-strconv-to-enc: New file.
5355         * lib/uniconv/u8-strconv-to-enc.c: New file.
5356         * modules/uniconv/u8-strconv-to-enc-tests: New file.
5357         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
5358
5359         * modules/uniconv/u32-strconv-from-enc: New file.
5360         * lib/uniconv/u32-strconv-from-enc.c: New file.
5361         * modules/uniconv/u32-strconv-from-enc-tests: New file.
5362         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
5363
5364         * modules/uniconv/u16-strconv-from-enc: New file.
5365         * lib/uniconv/u16-strconv-from-enc.c: New file.
5366         * modules/uniconv/u16-strconv-from-enc-tests: New file.
5367         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
5368
5369         * modules/uniconv/u8-strconv-from-enc: New file.
5370         * lib/uniconv/u8-strconv-from-enc.c: New file.
5371         * lib/uniconv/u-strconv-from-enc.h: New file.
5372         * modules/uniconv/u8-strconv-from-enc-tests: New file.
5373         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
5374
5375         * modules/uniconv/u32-conv-from-enc: New file.
5376         * lib/uniconv/u32-conv-from-enc.c: New file.
5377         * modules/uniconv/u32-conv-from-enc-tests: New file.
5378         * tests/uniconv/test-u32-conv-from-enc.c: New file.
5379
5380         * modules/uniconv/u16-conv-from-enc: New file.
5381         * lib/uniconv/u16-conv-from-enc.c: New file.
5382         * lib/uniconv/u-conv-from-enc.h: New file.
5383         * modules/uniconv/u16-conv-from-enc-tests: New file.
5384         * tests/uniconv/test-u16-conv-from-enc.c: New file.
5385
5386         * modules/uniconv/u8-conv-from-enc: New file.
5387         * lib/uniconv/u8-conv-from-enc.c: New file.
5388         * modules/uniconv/u8-conv-from-enc-tests: New file.
5389         * tests/uniconv/test-u8-conv-from-enc.c: New file.
5390
5391         * modules/uniconv/base: New file.
5392         * lib/uniconv.h: New file.
5393
5394 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
5395
5396         * doc/gnulib-tool.texi (Initial import): Update to match current
5397         behavior with strdup module.
5398         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
5399         * lib/memmem.h: Remove; all uses removed.  This is now done
5400         by <string.h>.
5401         * lib/mempcpy.h: Likewise.
5402         * lib/memrchr.h: Likewise.
5403         * lib/stpcpy.h: Likewise.
5404         * lib/stpncpy.h: Likewise.
5405         * lib/strcase.h: Likewise.
5406         * lib/strchrnul.h: Likewise.
5407         * lib/strdup.h: Likewise.
5408         * lib/strndup.h: Likewise.
5409         * lib/strnlen.h: Likewise.
5410         * lib/strpbrk.h: Likewise.
5411         * lib/strsep.h: Likewise.
5412         * lib/strstr.h: Likewise.
5413         * lib/strtok_r.h: Likewise.
5414         * lib/string_.h: New file.
5415         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
5416         Rely on <string.h> instead.
5417         * lib/canon-host.c: Likewise.
5418         * lib/chdir-long.c: Likewise.
5419         * lib/concatpath.c: Likewise.
5420         * lib/exclude.c: Likewise.
5421         * lib/fchdir.c: Likewise.
5422         * lib/getaddrinfo.c: Likewise.
5423         * lib/getcwd.c: Likewise.
5424         * lib/getsubopt.c: Likewise.
5425         * lib/glob.c: Likewise.
5426         * lib/hard-locale.c: Likewise.
5427         * lib/iconvme.c: Likewise.
5428         * lib/javacomp.c: Likewise.
5429         * lib/mempcpy.c: Likewise.
5430         * lib/memrchr.c: Likewise.
5431         * lib/regex_internal.h: Likewise.
5432         * lib/stpncpy.c: Likewise.
5433         * lib/strcasecmp.c: Likewise.
5434         * lib/strchrnul.c: Likewise.
5435         * lib/strdup.c: Likewise.
5436         * lib/striconv.c: Likewise.
5437         * lib/striconveh.c: Likewise.
5438         * lib/striconveha.c: Likewise.
5439         * lib/strncasecmp.c: Likewise.
5440         * lib/strndup.c: Likewise.
5441         * lib/strnlen.c: Likewise.
5442         * lib/strsep.c: Likewise.
5443         * lib/strstr.c: Likewise.
5444         * lib/strtok_r.c: Likewise.
5445         * lib/userspec.c: Likewise.
5446         * lib/w32spawn.h: Likewise.
5447         * lib/xstrndup.c: Likewise.
5448         * lib/mountlist.c (strstr): Remove decl.
5449         * m4/string_h.m4: New file.
5450         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
5451         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
5452         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
5453         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
5454         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
5455         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
5456         Set REPLACE_STRCASECMP if necessary.
5457         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
5458         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
5459         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
5460         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
5461         HAVE_DECL_STRDUP if necessary.
5462         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
5463         since gl_FUNC_STRNDUP does that now.
5464         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
5465         Check for decl here...
5466         (gl_PREREQ_STRNLEN): ... not here.
5467         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
5468         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
5469         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
5470         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
5471         necessary.
5472         * modules/string: New file.
5473         * modules/memmem (Files): Remove special-purpose include file.
5474         (Depends-on): Add string.
5475         (Include): Include <string.h>, not the removed file.
5476         * modules/mempcpy: Likewise.
5477         * modules/memrchr: Likewise.
5478         * modules/stpcpy: Likewise.
5479         * modules/stpncpy: Likewise.
5480         * modules/strcase: Likewise.
5481         * modules/strchrnul: Likewise.
5482         * modules/strdup: Likewise.
5483         * modules/strndup: Likewise.
5484         * modules/strnlen: Likewise.
5485         * modules/strpbrk: Likewise.
5486         * modules/strsep: Likewise.
5487         * modules/strstr: Likewise.
5488         * modules/strtok_r: Likewise.
5489         * tests/test-dirname.c: Don't include "strdup.h", since
5490         <string.h> now suffices.
5491         * tests/test-memmem.c: Don't include "memmem.h", since
5492         <string.h> now suffices.
5493
5494 2007-01-25  Bruno Haible  <bruno@clisp.org>
5495
5496         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
5497         *resultp is 0.
5498
5499         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
5500         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
5501         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
5502         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
5503
5504         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
5505         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
5506         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
5507         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
5508         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
5509         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
5510
5511 2007-01-24  Bruno Haible  <bruno@clisp.org>
5512
5513         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
5514         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
5515         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
5516         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
5517         gl_FUNC_FTS_CORE.
5518         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
5519         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
5520         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
5521         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
5522         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
5523         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
5524         gl_FUNC_FCHOWNAT.
5525         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
5526         gl_FUNC_STRFTIME.
5527         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
5528         Reported by Ralf Wildenhues.
5529
5530 2007-01-24  Bruno Haible  <bruno@clisp.org>
5531
5532         Drop AC_REQUIRE calls that are redundant with the module dependencies.
5533         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
5534         gl_GETADDRINFO.
5535         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
5536         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
5537         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
5538
5539 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
5540
5541         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
5542         Don't use 'exit'; just return from 'main'.
5543         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
5544
5545         * lib/fnmatch_.h: Readjust white space and comments to match
5546         glibc, to avoid spurious diffs.
5547
5548 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5549
5550         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
5551         2004-12-01 change by Jakub Jelinek, since this code won't compile
5552         if !LIBC.  Problem reported by Bob Proulx.
5553
5554 2007-01-23  Bruno Haible  <bruno@clisp.org>
5555
5556         * lib/striconveh.c: Include c-strcaseeq.h.
5557         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
5558         * modules/striconveh (Depends-on): Add c-strcaseeq.
5559
5560 2007-01-23  Bruno Haible  <bruno@clisp.org>
5561
5562         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
5563
5564         * modules/c-strcaseeq: New file.
5565         * lib/c-strcaseeq.h: New file.
5566
5567         * modules/streq: New file.
5568         * lib/streq.h: New file.
5569
5570 2007-01-23  Bruno Haible  <bruno@clisp.org>
5571
5572         * modules/striconveha-tests: New file.
5573         * tests/test-striconveha.c: New file.
5574
5575         * lib/striconveha.h: Include <stdbool.h>.
5576         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
5577         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
5578         (mem_iconveha_notranslit): Renamed from mem_iconveha.
5579         (mem_iconveha): New function.
5580         (str_iconveha_notranslit): Renamed from str_iconveha.
5581         (str_iconveha): New function.
5582         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
5583         c-strcase.
5584
5585 2007-01-23  Bruno Haible  <bruno@clisp.org>
5586
5587         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
5588         encodings without forgiving before trying any encoding with handler.
5589         (str_iconveha): Try all encodings without forgiving before trying any
5590         encoding with handler.
5591
5592 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5593
5594         Import the following changes from libc.
5595
5596         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
5597
5598         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
5599
5600         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
5601
5602         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
5603         normal_bracket label.
5604
5605         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
5606
5607         [BZ #361]
5608         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
5609         to normal_bracket after fetching the next character.
5610
5611 2007-01-22  Bruno Haible  <bruno@clisp.org>
5612
5613         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
5614         argument.
5615         * lib/striconveh.c (iconv_carefully_1): New function.
5616         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
5617         argument.
5618         (str_cd_iconveh): Update.
5619         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
5620         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
5621         * tests/test-striconveh.c (MAGIC): New macro.
5622         (new_offsets): New function.
5623         (main): Test call with and without offsets.
5624
5625 2007-01-22  Bruno Haible  <bruno@clisp.org>
5626
5627         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
5628         * modules/sys_select (Makefile.am): Likewise.
5629         * modules/sys_socket (Makefile.am): Likewise.
5630         * modules/sys_time (Makefile.am): Likewise.
5631
5632 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
5633
5634         * modules/gettimeofday (License): Change from GPL to LGPL, since
5635         gettimeofday is a library function.
5636
5637 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5638
5639         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
5640
5641 2007-01-21  Bruno Haible  <bruno@clisp.org>
5642
5643         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
5644
5645 2007-01-21  Bruno Haible  <bruno@clisp.org>
5646
5647         * modules/striconveha: New file.
5648         * lib/striconveha.h: New file.
5649         * lib/striconveha.c: New file.
5650         * MODULES.html.sh (Internationalization functions): Add striconveha.
5651         * lib/striconv.c (str_iconv): Optimize the case of an empty input
5652         string.
5653         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
5654
5655 2007-01-21  Bruno Haible  <bruno@clisp.org>
5656
5657         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
5658         * lib/striconveh.c (str_iconveh): Likewise.
5659
5660 2007-01-21  Bruno Haible  <bruno@clisp.org>
5661
5662         * lib/striconveh.h (mem_iconveh): New declaration.
5663         * lib/striconveh.c (mem_iconveh): New function.
5664         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
5665
5666 2007-01-21  Bruno Haible  <bruno@clisp.org>
5667
5668         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
5669
5670         * lib/striconveh.h (mem_cd_iconveh): Change specification.
5671         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
5672         original result buffer.
5673         (str_cd_iconveh): Update.
5674         * tests/test-striconveh.c (main): Update.
5675
5676         * lib/striconv.h (mem_cd_iconv): Change specification.
5677         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
5678         result buffer.
5679         (str_cd_iconv): Update.
5680         * tests/test-striconv.c (main): Update.
5681
5682 2007-01-21  Bruno Haible  <bruno@clisp.org>
5683
5684         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
5685
5686 2007-01-20  Jim Meyering  <jim@meyering.net>
5687
5688         * lib/userspec.c (parse_with_separator): If a user or group string
5689         starts with "+", skip the corresponding name-to-ID look-up, since
5690         such a look-up must fail: user and group names may not include "+".
5691
5692 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
5693
5694         * lib/poll.c: Include sys/time.h and time.h unconditionally,
5695         since we now assume the sys_time module.
5696         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
5697         check for sys/time.h; no longer needed.
5698         * modules/poll (Depends-on): Depend on sys_time.
5699
5700 2007-01-18  Bruno Haible  <bruno@clisp.org>
5701
5702         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
5703         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5704
5705         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
5706         gettimeofday.
5707
5708         * tests/test-gettimeofday.c: Include <time.h>.
5709         (dummy): Remove variable.
5710
5711         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
5712         gl_HEADER_SYS_TIME_H.
5713         (gl_HEADER_SYS_TIME_H): New macro.
5714
5715         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
5716         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5717         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
5718         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
5719         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5720         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
5721         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
5722         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5723         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
5724         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
5725         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5726
5727         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
5728         last change; it caused a compilation error when cross-compiling to
5729         Cygwin.
5730
5731 2007-01-18  Jim Meyering  <jim@meyering.net>
5732
5733         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
5734         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
5735         than the race-prone "test -d sys || mkdir sys".
5736         (configure.ac): Use AC_PROG_MKDIR_P.
5737         * modules/sys_select: Likewise.
5738         * modules/sys_socket: Likewise.
5739         * modules/sys_time: Likewise.
5740
5741 2007-01-18  Eric Blake  <ebb9@byu.net>
5742
5743         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
5744         replace gettimeofday.
5745         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
5746         name, to avoid infinite recursion.
5747
5748 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
5749
5750         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
5751         module sys_time.
5752         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
5753         assume timespec.h defines struct timeval.
5754         * lib/settime.c: Likewise.
5755         * lib/utimens.c: Likewise.
5756         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
5757         since we now assume the gettimeofday module.
5758         * lib/tempname.c (__gen_tempname): Likewise.
5759         * lib/gettimeofday.h: Remove.
5760         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
5761         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
5762         Include <time.h>, for 'time()'.
5763         (localtime_buffer_addr): Also use this workaround if
5764         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
5765         to simplify the uses.  All uses changed.
5766         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
5767         that #undef is inside {}, and 'const' follows type name consistently.
5768         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
5769         (gettimeofday): Do not use the maximum possible value for
5770         tv->tv_usec, since that might break usages other than ls.c.
5771         Instead, we'll leave ls.c alone.  This undoes today's patch
5772         by Bruno.  Add a compile-time warning for 1s-clock resolution;
5773         we've never observed the problem but might as well keep the
5774         canary.
5775         * lib/nanosleep.c: Include timespec.h first, for interface check.
5776         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
5777         now assume the sys_time module.
5778         * lib/tempname.c: Likewise.
5779         * lib/timespec.h: Likewise.
5780         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
5781         needed.
5782         * lib/strftime.c: Likewise.
5783         * lib/timespec.h: Likewise.
5784         * lib/posixtm.c: Include posixtm.h first, for interface check.
5785         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
5786         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
5787         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
5788         * lib/sys_time_.h: New file.
5789         * lib/timespec.h (struct timespec): Use long int, not long.
5790         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
5791         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
5792         Remove obsolescent call to AC_HEADER_TIME.
5793         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
5794         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5795         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5796         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
5797         Likewise.
5798         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
5799         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
5800         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
5801         into the sys_time module.  Check for gettimeofday just once.
5802         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
5803         for gettimeofday signature to just check the signature.  Merely
5804         compile it, since linking doesn't test signature.  Improve test for
5805         whether gettimeofday.o is actually needed.
5806         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
5807         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
5808         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
5809         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5810         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
5811         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
5812         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
5813         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
5814         than worrying about sys/time.h.
5815         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5816         Don't bother worrying about TIME_WITH_SYS_TIME.
5817         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
5818         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
5819         * m4/sys_time_h.m4: New file.
5820         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
5821         Don't include sys/time.h.  Return from main rather than exiting.
5822         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
5823         all uses changed.
5824         * modules/gethrxtime (Depends-on): Add sys_time.
5825         * modules/gettime (Depends-on): Likewise.
5826         * modules/gettimeofday (Depends-on): Likewise.
5827         * modules/nanosleep (Depends-on): Likewise.
5828         * modules/settime (Depends-on): Likewise.
5829         * modules/tempname (Depends-on): Likewise.
5830         * modules/utimens (Depends-on): Likewise.
5831         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
5832         (Include:) Change back to <sys/time.h>.
5833         (Maintainer:) Add self.
5834         * modules/sys_time: New file.
5835         * modules/tempname (Depends-on): Add gettimeofday.
5836         * tests/test-gettimeofday.c: Include <sys/time.h>
5837         rather than gettimeofday.h.
5838
5839 2007-01-17  Bruno Haible  <bruno@clisp.org>
5840
5841         * gnulib-tool (func_get_license): Revert last patch. Instead, let
5842         the license default to GPL.
5843         (func_create_testdir): Don't complain if a module is LGPL and its
5844         tests module depends on GPLed modules.
5845
5846 2007-01-17  Bruno Haible  <bruno@clisp.org>
5847
5848         * lib/gettimeofday.c (gettimeofday): Add code for the case
5849         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
5850         maximum possible value for tv->tv_usec, rather than the minimum one.
5851
5852 2005-10-08  Martin Lambers  <marlam@marlam.de>
5853 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
5854 2007-01-16  Bruno Haible  <bruno@clisp.org>
5855
5856         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
5857         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
5858         gl_FUNC_GETTIMEOFDAY.
5859         (Include): Add gettimeofday.h.
5860         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
5861         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
5862         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
5863         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
5864         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
5865         * lib/gettimeofday.h: New file.
5866         * lib/gettimeofday.c: Include <sys/timeb.h>.
5867         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
5868         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5869         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
5870         fall back on time().
5871
5872         * tests/test-gettimeofday.c: New file.
5873         * modules/gettimeofday-tests: New file.
5874
5875 2007-01-16  Eric Blake  <ebb9@byu.net>
5876
5877         * modules/fnmatch (Depends-on): Depend on wchar.
5878         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
5879         * m4/fnmatch.m4: Likewise.
5880         * modules/mbchar (Makefile.am): Assume <wchar.h>.
5881         * m4/mbchar.m4: Likewise.
5882         * modules/mbswidth (Depends-on): Depend on wchar.
5883         * lib/mbswidth.c: Assume <wchar.h>.
5884         * m4/mbswidth.m4: Likewise.
5885         * modules/quotearg (Depends-on): Depend on wchar.
5886         * lib/quotearg.c: Assume <wchar.h>.
5887         * m4/quotearg.m4: Likewise.
5888         * modules/regex (Depends-on): Depend on wchar.
5889         * lib/regex_internal.h: Assume <wchar.h>.
5890         * m4/regex.m4: Likewise.
5891         * modules/stdint (Depends-on): Depend on wchar.
5892         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
5893         * m4/stdint.m4: Likewise.
5894         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
5895         * modules/strftime (Depends-on): Depend on wchar.
5896         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
5897         * modules/strtol (Depends-on): Depend on wchar.
5898         * lib/strtol.c: Assume <wchar.h>.
5899         * modules/wcwidth (Depends-on): Depend on wchar.
5900         * lib/wcwidth.h: Assume <wchar.h>.
5901         * m4/wcwidth.m4: Likewise.
5902
5903 2007-01-16  Bruno Haible  <bruno@clisp.org>
5904
5905         * modules/csharpexec-script: New, created from...
5906         * modules/csharpexec: ... this.
5907
5908 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
5909
5910         * modules/javaexec-script: New, created from...
5911         * modules/javaexec: ... this.
5912
5913 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5914
5915         * modules/poll (Dependencies): Add sys_select.
5916
5917 2007-01-15  Jim Meyering  <jim@meyering.net>
5918
5919         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
5920         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
5921         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
5922         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
5923
5924 2007-01-15  Bruno Haible  <bruno@clisp.org>
5925
5926         * modules/striconveh: New file.
5927         * lib/striconveh.h: New file.
5928         * lib/striconveh.c: New file.
5929         * MODULES.html.sh (Internationalization functions): Add striconveh.
5930
5931         * modules/striconveh-tests: New file.
5932         * tests/test-striconveh.c: New file.
5933
5934 2007-01-15  Bruno Haible  <bruno@clisp.org>
5935
5936         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
5937         not from GNU libiconv or GNU libc.
5938
5939 2007-01-15  Bruno Haible  <bruno@clisp.org>
5940
5941         * doc/gnulib-intro.texi (Copyright): Explain the different license
5942         terms for module descriptions, autoconf macros, tests, documentation.
5943
5944 2007-01-14  Bruno Haible  <bruno@clisp.org>
5945
5946         * modules/striconv-tests: New file.
5947         * tests/test-striconv.c: New file.
5948
5949 2007-01-14  Bruno Haible  <bruno@clisp.org>
5950
5951         * modules/iconv-tests: New file.
5952         * tests/test-iconv.c: New file.
5953
5954 2007-01-14  Bruno Haible  <bruno@clisp.org>
5955
5956         * gnulib-tool (func_get_license): For test modules, use the license of
5957         the main module.
5958
5959 2007-01-14  Bruno Haible  <bruno@clisp.org>
5960
5961         * modules/iconv (Include): Clarify that <iconv.h> can only be included
5962         if iconv is found to exist.
5963
5964 2007-01-14  Bruno Haible  <bruno@clisp.org>
5965
5966         * modules/c-ctype-tests: New file.
5967         * tests/test-c-ctype.c: New file.
5968
5969 2007-01-14  Bruno Haible  <bruno@clisp.org>
5970
5971         * modules/binary-io-tests: New file.
5972         * tests/test-binary-io.sh: New file.
5973         * tests/test-binary-io.c: New file.
5974
5975 2007-01-14  Bruno Haible  <bruno@clisp.org>
5976
5977         * modules/array-oset-tests: New file.
5978         * tests/test-array_oset.c: New file.
5979
5980 2007-01-14  Bruno Haible  <bruno@clisp.org>
5981
5982         * modules/array-list-tests: New file.
5983         * tests/test-array_list.c: New file.
5984
5985 2007-01-14  Bruno Haible  <bruno@clisp.org>
5986
5987         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
5988         and make.
5989         Reported by Simon Josefsson in
5990         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
5991
5992 2007-01-14  Bruno Haible  <bruno@clisp.org>
5993
5994         * modules/allocsa-tests: New file.
5995         * tests/test-allocsa.c: New file.
5996
5997 2007-01-14  Bruno Haible  <bruno@clisp.org>
5998
5999         * modules/fchdir (Depends-on): Add absolute-header.
6000         * modules/unistd (Depends-on): Likewise.
6001
6002 2006-12-30  Bruno Haible  <bruno@clisp.org>
6003
6004         * modules/fchdir: New file.
6005         * modules/unistd (Files): Add lib/unistd_.h.
6006         (Makefile.am): Generate unistd.h from unistd_.h.
6007         * lib/fchdir.c: New file.
6008         * lib/dirent_.h: New file.
6009         * lib/unistd_.h: New file.
6010         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
6011         * m4/fchdir.m4: New file.
6012         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
6013         (gl_HEADER_UNISTD): Invoke it.
6014         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
6015         function.
6016         * lib/backupfile.c (opendir, closedir): Undefine.
6017         * lib/chown.c (open, close): Undefine.
6018         * lib/clean-temp.c (open, close): Undefine.
6019         * lib/copy-file.c (open, close): Undefine.
6020         * lib/execute.c (open, close): Undefine.
6021         * lib/fsusage.c (open, close): Undefine.
6022         * lib/gc-gnulib.c (open, close): Undefine.
6023         * lib/getcwd.c (opendir, closedir): Undefine.
6024         * lib/glob.c (opendir, closedir): Undefine.
6025         * lib/javacomp.c (open, close): Undefine.
6026         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
6027         * lib/openat-proc.c (open, close): Undefine.
6028         * lib/pagealign_alloc.c (open, close): Undefine.
6029         * lib/pipe.c (open, close): Undefine.
6030         * lib/progreloc.c (open, close): Undefine.
6031         * lib/savedir.c (opendir, closedir): Undefine.
6032         * lib/utime.c (open, close): Undefine.
6033         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
6034
6035 2007-01-10  Bruno Haible  <bruno@clisp.org>
6036
6037         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
6038
6039 2007-01-12  Eric Blake  <ebb9@byu.net>
6040
6041         Provide a robust <wchar.h>.  Further simplifications are now
6042         possible in other modules, but not included here.
6043         * modules/wchar: New module.
6044         * m4/wchar.m4: New file.
6045         * lib/wchar_.h: Likewise.
6046         * modules/mbchar (Depends-on): Depend on wchar, as the first use
6047         of the new module.
6048         * MODULES.html.sh (Extended multibyte and wide character utilities):
6049         New section.
6050
6051 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
6052
6053         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
6054         to a reasonable default for memory allocation.
6055         (xreadlink): Don't allocate a huge buffer, to work around a buggy
6056         file system that reports garbage st_size values for symlinks.
6057         Problem reported by Liyang Hu.
6058
6059 2007-01-11  Simon Josefsson  <simon@josefsson.org>
6060
6061         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
6062         Emacs .#* auto-save files).
6063
6064 2007-01-11  Bruno Haible  <bruno@clisp.org>
6065
6066         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
6067         directory.
6068
6069 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6070
6071         Use @...@ consistently in lib/wctype_.h.
6072         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
6073         on it being set to 1 or 0.
6074         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
6075         go back to AC_SUBSTing it.
6076         * modules/wctype (Makefile.am): Undo previous change.
6077
6078 2007-01-10  Eric Blake  <ebb9@byu.net>
6079
6080         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
6081         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
6082         * modules/wctype (Makefile.am): Likewise.
6083         Reported by Chris McGuire.
6084
6085 2007-01-10  Jim Meyering  <jim@meyering.net>
6086
6087         fts.c: a small readability/maintainability improvement
6088         * lib/fts.c (fts_read): Make this code slightly more readable and
6089         maintainable by hoisting the "sp->fts_cur = p" assignments to
6090         immediately follow the statements that set P.  Derived from
6091         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
6092
6093 2007-01-10  Eric Blake  <ebb9@byu.net>
6094
6095         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
6096         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
6097         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6098         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
6099         Reported by Chris McGuire.
6100
6101 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6102
6103         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
6104         in sed script.
6105
6106 2007-01-09  Bruno Haible  <bruno@clisp.org>
6107
6108         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
6109         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
6110         variables.
6111         (func_module): Use them.
6112
6113 2007-01-09  Bruno Haible  <bruno@clisp.org>
6114
6115         * modules/unistr/base: New file.
6116         * lib/unistr.h: New file.
6117
6118         * modules/unistr/u8-to-u16: New file.
6119         * lib/unistr/u8-to-u16.c: New file.
6120
6121         * modules/unistr/u8-to-u32: New file.
6122         * lib/unistr/u8-to-u32.c: New file.
6123
6124         * modules/unistr/u16-to-u8: New file.
6125         * lib/unistr/u16-to-u8.c: New file.
6126
6127         * modules/unistr/u16-to-u32: New file.
6128         * lib/unistr/u16-to-u32.c: New file.
6129
6130         * modules/unistr/u32-to-u8: New file.
6131         * lib/unistr/u32-to-u8.c: New file.
6132
6133         * modules/unistr/u32-to-u16: New file.
6134         * lib/unistr/u32-to-u16.c: New file.
6135
6136         * modules/unistr/u8-check: New file.
6137         * modules/unistr/u16-check: New file.
6138         * modules/unistr/u32-check: New file.
6139         * lib/unistr/u8-check.c: New file.
6140         * lib/unistr/u16-check.c: New file.
6141         * lib/unistr/u32-check.c: New file.
6142
6143         * modules/unistr/u8-chr: New file.
6144         * modules/unistr/u16-chr: New file.
6145         * modules/unistr/u32-chr: New file.
6146         * lib/unistr/u8-chr.c: New file.
6147         * lib/unistr/u16-chr.c: New file.
6148         * lib/unistr/u32-chr.c: New file.
6149
6150         * modules/unistr/u8-cmp: New file.
6151         * modules/unistr/u16-cmp: New file.
6152         * modules/unistr/u32-cmp: New file.
6153         * lib/unistr/u8-cmp.c: New file.
6154         * lib/unistr/u16-cmp.c: New file.
6155         * lib/unistr/u32-cmp.c: New file.
6156
6157         * modules/unistr/u8-cpy: New file.
6158         * modules/unistr/u16-cpy: New file.
6159         * modules/unistr/u32-cpy: New file.
6160         * lib/unistr/u8-cpy.c: New file.
6161         * lib/unistr/u16-cpy.c: New file.
6162         * lib/unistr/u32-cpy.c: New file.
6163         * lib/unistr/u-cpy.h: New file.
6164
6165         * modules/unistr/u8-cpy-alloc: New file.
6166         * modules/unistr/u16-cpy-alloc: New file.
6167         * modules/unistr/u32-cpy-alloc: New file.
6168         * lib/unistr/u8-cpy-alloc.c: New file.
6169         * lib/unistr/u16-cpy-alloc.c: New file.
6170         * lib/unistr/u32-cpy-alloc.c: New file.
6171         * lib/unistr/u-cpy-alloc.h: New file.
6172
6173         * modules/unistr/u8-endswith: New file.
6174         * modules/unistr/u16-endswith: New file.
6175         * modules/unistr/u32-endswith: New file.
6176         * lib/unistr/u8-endswith.c: New file.
6177         * lib/unistr/u16-endswith.c: New file.
6178         * lib/unistr/u32-endswith.c: New file.
6179         * lib/unistr/u-endswith.h: New file.
6180
6181         * modules/unistr/u8-mblen: New file.
6182         * modules/unistr/u16-mblen: New file.
6183         * modules/unistr/u32-mblen: New file.
6184         * lib/unistr/u8-mblen.c: New file.
6185         * lib/unistr/u16-mblen.c: New file.
6186         * lib/unistr/u32-mblen.c: New file.
6187
6188         * modules/unistr/u8-mbtouc: New file.
6189         * modules/unistr/u16-mbtouc: New file.
6190         * modules/unistr/u32-mbtouc: New file.
6191         * lib/unistr/u8-mbtouc.c: New file.
6192         * lib/unistr/u16-mbtouc.c: New file.
6193         * lib/unistr/u32-mbtouc.c: New file.
6194
6195         * modules/unistr/u8-mbtouc-safe: New file.
6196         * modules/unistr/u16-mbtouc-safe: New file.
6197         * modules/unistr/u32-mbtouc-safe: New file.
6198         * lib/unistr/u8-mbtouc-safe.c: New file.
6199         * lib/unistr/u16-mbtouc-safe.c: New file.
6200         * lib/unistr/u32-mbtouc-safe.c: New file.
6201
6202         * modules/unistr/u8-move: New file.
6203         * modules/unistr/u16-move: New file.
6204         * modules/unistr/u32-move: New file.
6205         * lib/unistr/u8-move.c: New file.
6206         * lib/unistr/u16-move.c: New file.
6207         * lib/unistr/u32-move.c: New file.
6208         * lib/unistr/u-move.h: New file.
6209
6210         * modules/unistr/u8-next: New file.
6211         * modules/unistr/u16-next: New file.
6212         * modules/unistr/u32-next: New file.
6213         * lib/unistr/u8-next.c: New file.
6214         * lib/unistr/u16-next.c: New file.
6215         * lib/unistr/u32-next.c: New file.
6216
6217         * modules/unistr/u8-prev: New file.
6218         * modules/unistr/u16-prev: New file.
6219         * modules/unistr/u32-prev: New file.
6220         * lib/unistr/u8-prev.c: New file.
6221         * lib/unistr/u16-prev.c: New file.
6222         * lib/unistr/u32-prev.c: New file.
6223
6224         * modules/unistr/u8-set: New file.
6225         * modules/unistr/u16-set: New file.
6226         * modules/unistr/u32-set: New file.
6227         * lib/unistr/u8-set.c: New file.
6228         * lib/unistr/u16-set.c: New file.
6229         * lib/unistr/u32-set.c: New file.
6230         * lib/unistr/u-set.h: New file.
6231
6232         * modules/unistr/u8-startswith: New file.
6233         * modules/unistr/u16-startswith: New file.
6234         * modules/unistr/u32-startswith: New file.
6235         * lib/unistr/u8-startswith.c: New file.
6236         * lib/unistr/u16-startswith.c: New file.
6237         * lib/unistr/u32-startswith.c: New file.
6238         * lib/unistr/u-startswith.h: New file.
6239
6240         * modules/unistr/u8-stpcpy: New file.
6241         * modules/unistr/u16-stpcpy: New file.
6242         * modules/unistr/u32-stpcpy: New file.
6243         * lib/unistr/u8-stpcpy.c: New file.
6244         * lib/unistr/u16-stpcpy.c: New file.
6245         * lib/unistr/u32-stpcpy.c: New file.
6246         * lib/unistr/u-stpcpy.h: New file.
6247
6248         * modules/unistr/u8-stpncpy: New file.
6249         * modules/unistr/u16-stpncpy: New file.
6250         * modules/unistr/u32-stpncpy: New file.
6251         * lib/unistr/u8-stpncpy.c: New file.
6252         * lib/unistr/u16-stpncpy.c: New file.
6253         * lib/unistr/u32-stpncpy.c: New file.
6254         * lib/unistr/u-stpncpy.h: New file.
6255
6256         * modules/unistr/u8-strcat: New file.
6257         * modules/unistr/u16-strcat: New file.
6258         * modules/unistr/u32-strcat: New file.
6259         * lib/unistr/u8-strcat.c: New file.
6260         * lib/unistr/u16-strcat.c: New file.
6261         * lib/unistr/u32-strcat.c: New file.
6262         * lib/unistr/u-strcat.h: New file.
6263
6264         * modules/unistr/u8-strchr: New file.
6265         * modules/unistr/u16-strchr: New file.
6266         * modules/unistr/u32-strchr: New file.
6267         * lib/unistr/u8-strchr.c: New file.
6268         * lib/unistr/u16-strchr.c: New file.
6269         * lib/unistr/u32-strchr.c: New file.
6270
6271         * modules/unistr/u8-strcmp: New file.
6272         * modules/unistr/u16-strcmp: New file.
6273         * modules/unistr/u32-strcmp: New file.
6274         * lib/unistr/u8-strcmp.c: New file.
6275         * lib/unistr/u16-strcmp.c: New file.
6276         * lib/unistr/u32-strcmp.c: New file.
6277
6278         * modules/unistr/u8-strcpy: New file.
6279         * modules/unistr/u16-strcpy: New file.
6280         * modules/unistr/u32-strcpy: New file.
6281         * lib/unistr/u8-strcpy.c: New file.
6282         * lib/unistr/u16-strcpy.c: New file.
6283         * lib/unistr/u32-strcpy.c: New file.
6284         * lib/unistr/u-strcpy.h: New file.
6285
6286         * modules/unistr/u8-strcspn: New file.
6287         * modules/unistr/u16-strcspn: New file.
6288         * modules/unistr/u32-strcspn: New file.
6289         * lib/unistr/u8-strcspn.c: New file.
6290         * lib/unistr/u16-strcspn.c: New file.
6291         * lib/unistr/u32-strcspn.c: New file.
6292         * lib/unistr/u-strcspn.h: New file.
6293
6294         * modules/unistr/u8-strdup: New file.
6295         * modules/unistr/u16-strdup: New file.
6296         * modules/unistr/u32-strdup: New file.
6297         * lib/unistr/u8-strdup.c: New file.
6298         * lib/unistr/u16-strdup.c: New file.
6299         * lib/unistr/u32-strdup.c: New file.
6300         * lib/unistr/u-strdup.h: New file.
6301
6302         * modules/unistr/u8-strlen: New file.
6303         * modules/unistr/u16-strlen: New file.
6304         * modules/unistr/u32-strlen: New file.
6305         * lib/unistr/u8-strlen.c: New file.
6306         * lib/unistr/u16-strlen.c: New file.
6307         * lib/unistr/u32-strlen.c: New file.
6308         * lib/unistr/u-strlen.h: New file.
6309
6310         * modules/unistr/u8-strmblen: New file.
6311         * modules/unistr/u16-strmblen: New file.
6312         * modules/unistr/u32-strmblen: New file.
6313         * lib/unistr/u8-strmblen.c: New file.
6314         * lib/unistr/u16-strmblen.c: New file.
6315         * lib/unistr/u32-strmblen.c: New file.
6316
6317         * modules/unistr/u8-strmbtouc: New file.
6318         * modules/unistr/u16-strmbtouc: New file.
6319         * modules/unistr/u32-strmbtouc: New file.
6320         * lib/unistr/u8-strmbtouc.c: New file.
6321         * lib/unistr/u16-strmbtouc.c: New file.
6322         * lib/unistr/u32-strmbtouc.c: New file.
6323
6324         * modules/unistr/u8-strncat: New file.
6325         * modules/unistr/u16-strncat: New file.
6326         * modules/unistr/u32-strncat: New file.
6327         * lib/unistr/u8-strncat.c: New file.
6328         * lib/unistr/u16-strncat.c: New file.
6329         * lib/unistr/u32-strncat.c: New file.
6330         * lib/unistr/u-strncat.h: New file.
6331
6332         * modules/unistr/u8-strncmp: New file.
6333         * modules/unistr/u16-strncmp: New file.
6334         * modules/unistr/u32-strncmp: New file.
6335         * lib/unistr/u8-strncmp.c: New file.
6336         * lib/unistr/u16-strncmp.c: New file.
6337         * lib/unistr/u32-strncmp.c: New file.
6338
6339         * modules/unistr/u8-strncpy: New file.
6340         * modules/unistr/u16-strncpy: New file.
6341         * modules/unistr/u32-strncpy: New file.
6342         * lib/unistr/u8-strncpy.c: New file.
6343         * lib/unistr/u16-strncpy.c: New file.
6344         * lib/unistr/u32-strncpy.c: New file.
6345         * lib/unistr/u-strncpy.h: New file.
6346
6347         * modules/unistr/u8-strnlen: New file.
6348         * modules/unistr/u16-strnlen: New file.
6349         * modules/unistr/u32-strnlen: New file.
6350         * lib/unistr/u8-strnlen.c: New file.
6351         * lib/unistr/u16-strnlen.c: New file.
6352         * lib/unistr/u32-strnlen.c: New file.
6353         * lib/unistr/u-strnlen.h: New file.
6354
6355         * modules/unistr/u8-strpbrk: New file.
6356         * modules/unistr/u16-strpbrk: New file.
6357         * modules/unistr/u32-strpbrk: New file.
6358         * lib/unistr/u8-strpbrk.c: New file.
6359         * lib/unistr/u16-strpbrk.c: New file.
6360         * lib/unistr/u32-strpbrk.c: New file.
6361         * lib/unistr/u-strpbrk.h: New file.
6362
6363         * modules/unistr/u8-strrchr: New file.
6364         * modules/unistr/u16-strrchr: New file.
6365         * modules/unistr/u32-strrchr: New file.
6366         * lib/unistr/u8-strrchr.c: New file.
6367         * lib/unistr/u16-strrchr.c: New file.
6368         * lib/unistr/u32-strrchr.c: New file.
6369
6370         * modules/unistr/u8-strspn: New file.
6371         * modules/unistr/u16-strspn: New file.
6372         * modules/unistr/u32-strspn: New file.
6373         * lib/unistr/u8-strspn.c: New file.
6374         * lib/unistr/u16-strspn.c: New file.
6375         * lib/unistr/u32-strspn.c: New file.
6376         * lib/unistr/u-strspn.h: New file.
6377
6378         * modules/unistr/u8-strstr: New file.
6379         * modules/unistr/u16-strstr: New file.
6380         * modules/unistr/u32-strstr: New file.
6381         * lib/unistr/u8-strstr.c: New file.
6382         * lib/unistr/u16-strstr.c: New file.
6383         * lib/unistr/u32-strstr.c: New file.
6384         * lib/unistr/u-strstr.h: New file.
6385
6386         * modules/unistr/u8-strtok: New file.
6387         * modules/unistr/u16-strtok: New file.
6388         * modules/unistr/u32-strtok: New file.
6389         * lib/unistr/u8-strtok.c: New file.
6390         * lib/unistr/u16-strtok.c: New file.
6391         * lib/unistr/u32-strtok.c: New file.
6392         * lib/unistr/u-strtok.h: New file.
6393
6394         * modules/unistr/u8-uctomb: New file.
6395         * modules/unistr/u16-uctomb: New file.
6396         * modules/unistr/u32-uctomb: New file.
6397         * lib/unistr/u8-uctomb.c: New file.
6398         * lib/unistr/u16-uctomb.c: New file.
6399         * lib/unistr/u32-uctomb.c: New file.
6400
6401         * MODULES.html.sh (Unicode string functions): Add the new modules.
6402
6403 2007-01-08  Bruno Haible  <bruno@clisp.org>
6404
6405         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
6406         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
6407         subdirectories.
6408
6409 2007-01-08  Karl Berry  <karl@gnu.org>
6410
6411         * doc/error.texi: mention that main() fns must set program_name
6412         when progname is used.
6413
6414 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
6415
6416         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
6417         WCTYPE_H is empty, for the benefit of builds from non-distclean
6418         directories.  Problem reported by Eric Blake in
6419         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
6420
6421 2007-01-08  Bruno Haible  <bruno@clisp.org>
6422
6423         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
6424         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
6425         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
6426         PROVIDE_CANONICALIZE_FILENAME_MODE.
6427         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
6428
6429 2007-01-08  Bruno Haible  <bruno@clisp.org>
6430
6431         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
6432         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
6433         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
6434         * lib/fts.c: Likewise.
6435         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
6436
6437 2006-12-25  Bruno Haible  <bruno@clisp.org>
6438
6439         * modules/utf8-ucs4-safe: New file.
6440         * lib/utf8-ucs4-safe.h: New file.
6441         * lib/unistr/utf8-ucs4-safe.c: New file.
6442
6443         * modules/utf16-ucs4-safe: New file.
6444         * lib/utf16-ucs4-safe.h: New file.
6445         * lib/unistr/utf16-ucs4-safe.c: New file.
6446
6447         * MODULES.html.sh (Unicode string functions): Add the new modules.
6448
6449 2007-01-08  Bruno Haible  <bruno@clisp.org>
6450
6451         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
6452         (Depends-on): Add unitypes.
6453         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6454         (u8_mbtouc_aux): Move out to separate file.
6455         (u8_mbtouc): Use ucs4_t, uint8_t types.
6456         * lib/unistr/utf8-ucs4.c: New file.
6457
6458         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
6459         (Depends-on): Add unitypes.
6460         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6461         (u16_mbtouc_aux): Move out to separate file.
6462         (u16_mbtouc): Use ucs4_t, uint16_t types.
6463         * lib/unistr/utf16-ucs4.c: New file.
6464
6465         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
6466         (Depends-on): Add unitypes.
6467         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
6468         (u8_uctomb_aux): Move out to separate file.
6469         (u8_uctomb): Use ucs4_t, uint8_t types.
6470         * lib/unistr/ucs4-utf8.c: New file.
6471
6472         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
6473         (Depends-on): Add unitypes.
6474         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
6475         (u16_uctomb_aux): Move out to separate file.
6476         (u16_uctomb): Use ucs4_t, uint16_t types.
6477         * lib/unistr/ucs4-utf16.c: New file.
6478
6479 2006-12-25  Bruno Haible  <bruno@clisp.org>
6480
6481         * modules/unitypes: New file.
6482         * lib/unitypes.h: New file.
6483         * MODULES.html.sh (func_all_modules): New section "Unicode string
6484         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
6485         this section. Add unitypes.
6486
6487 2007-01-08  Bruno Haible  <bruno@clisp.org>
6488
6489         Avoid variable names that conflict with those from libtool.
6490         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
6491         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
6492         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
6493         library_names_spec to acl_library_names_spec, hardcode_* to
6494         acl_hardcode_*.
6495         Reported by Ralf Wildenhues.
6496
6497 2007-01-08  Bruno Haible  <bruno@clisp.org>
6498
6499         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
6500         definition.
6501         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
6502         definition.
6503         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
6504         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
6505         definition.
6506         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
6507         definition.
6508         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
6509         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
6510         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
6511         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
6512         definition.
6513         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
6514         definition.
6515         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
6516         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
6517         GC_USE_<algorithm>.
6518         * lib/gc-libgcrypt.c: Likewise.
6519         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
6520         * modules/gc-arctwo (configure.ac): Likewise.
6521         * modules/gc-des (configure.ac): Likewise.
6522         * modules/gc-hmac-md5 (configure.ac): Likewise.
6523         * modules/gc-hmac-sha1 (configure.ac): Likewise.
6524         * modules/gc-md2 (configure.ac): Likewise.
6525         * modules/gc-md4 (configure.ac): Likewise.
6526         * modules/gc-md5 (configure.ac): Likewise.
6527         * modules/gc-random (configure.ac): Likewise.
6528         * modules/gc-rijndael (configure.ac): Likewise.
6529         * modules/gc-sha1 (configure.ac): Likewise.
6530
6531 2007-01-08  Bruno Haible  <bruno@clisp.org>
6532
6533         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
6534         macro definition.
6535         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
6536         definition.
6537         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
6538         definition.
6539         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
6540         * modules/fcntl-safer (configure.ac): Likewise.
6541         * modules/fopen-safer (configure.ac): Likewise.
6542         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
6543         GNULIB_FWRITEERROR macro definition.
6544
6545 2007-01-08  Bruno Haible  <bruno@clisp.org>
6546
6547         * m4/gnulib-common.m4: New file.
6548         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
6549         (func_get_filelist): Add m4/gnulib-common.m4.
6550
6551 2007-01-08  Bruno Haible  <bruno@clisp.org>
6552
6553         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
6554         command.
6555
6556 2007-01-08  Jim Meyering  <jim@meyering.net>
6557
6558         Use a more robust test for a "can't happen" condition.
6559         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
6560         narrowed the st_size value.  Presuming the "can't happen" condition
6561         is true, that narrowing could conceivably convert an invalid st_size
6562         value into a valid one.  Instead, use a change based on Matthew
6563         Woehlke's original patch.
6564
6565         Slight readability improvement: use an assert-like macro
6566         in place of literal "abort ()" uses.
6567         * lib/fts.c (fts_assert): Define.
6568         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
6569         Use this macro instead of a bare 'abort'.
6570
6571 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6572
6573         Don't worry about using IRIX 5.3's wctype.h broken definitions;
6574         simply work around them.
6575         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
6576         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
6577         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
6578         declaring.
6579         Don't bother to define as macros, since the standard doesn't require it.
6580         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
6581         longer worry about IRIX 5.3.
6582         (HAVE_WCTYPE_CTMP_BUG): Remove.
6583
6584 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
6585
6586         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
6587         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
6588         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
6589         Problems reported by Georg Schwarz for IRIX 5.3.
6590
6591         * gnulib-tool (autoconf_minversion): Take the maximum version number
6592         found, not the minimum.  Problem reported by James Youngman.
6593
6594 2007-01-03  Karl Berry  <karl@gnu.org>
6595
6596         * doc/error.texi: new file, explaining interaction with progname.
6597         * doc/gnulib.texi: include it.  Update copyright.
6598
6599 2007-01-03  Simon Josefsson  <simon@josefsson.org>
6600
6601         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
6602         AC_CANONICAL_HOST, to improve autobuild outputs.
6603
6604 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
6605             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
6606
6607         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
6608         sockets, server sockets, and other file descriptors.  Count errors
6609         to compute the return value.  Reorder the code a bit to be easier
6610         to follow.  Don't set event bits that were not requested (except
6611         POLLERR and POLLHUP).
6612
6613 2007-01-01  Bruno Haible  <bruno@clisp.org>
6614
6615         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
6616
6617 2007-01-03  Jim Meyering  <jim@meyering.net>
6618
6619         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
6620
6621 2007-01-02  Bruno Haible  <bruno@clisp.org>
6622
6623         * modules/settime (Include): Require timespec.h.
6624         * modules/nanosleep (Include): Likewise.
6625
6626 2007-01-01  Bruno Haible  <bruno@clisp.org>
6627
6628         * gnulib-tool (func_emit_copyright_notice): Bump year.
6629         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
6630
6631 2007-01-01  Bruno Haible  <bruno@clisp.org>
6632
6633         Improve support for OpenBSD.
6634         * build-aux/config.rpath (libname_spec): Export.
6635         (library_names_spec): New variable. Export.
6636         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
6637         library_names_spec from the config.rpath output. Locate shared library
6638         through the name pattern in library_names_spec.
6639
6640 2007-01-01  Eric Blake  <ebb9@byu.net>
6641
6642         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
6643
6644 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
6645
6646         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
6647         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
6648         assume the C locale, and avoid an "eval" that could cause trouble.
6649         Problem with SORT reported by Bob Proulx.
6650
6651         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
6652         Define.  Trivial patch from Henning Nielsen Lund, originally
6653         sent to bug-grep@gnu.org today.
6654
6655 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6656
6657         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
6658         struct stat.  Problem reported by Henning Nielsen Lund.
6659         * lib/acl.c: Include acl.h first, to check interface.  Don't
6660         bother to include sys/types.h and sys/stat.h again.
6661
6662 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
6663
6664         Import the following change from libc; problem reported by
6665         Sven Verdoolaege.
6666
6667         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
6668
6669         [BZ #1373]
6670         * lib/argp.h: Remove __NTH for __argp_usage inline function.
6671
6672 2006-12-28  Jim Meyering  <jim@meyering.net>
6673
6674         * build-aux/announce-gen: Do not assume that the package
6675         builds any of tar.gz, tar.bz2, and .xdelta files.
6676         Suggestion from Simon Josefsson.
6677
6678 2006-12-28  Simon Josefsson  <simon@josefsson.org>
6679
6680         * modules/announce-gen: New file.
6681
6682 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
6683
6684         * lib/mbchar.h: Just include <wctype.h>; the wctype module
6685         handles its gotchas now.
6686         * lib/mbswidth.c: Likewise.
6687         * lib/wcwidth.h: Likewise.
6688         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
6689         and iswcntrl; the wctype module does this stuff now.
6690         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
6691         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6692         * modules/mbchar (Depends-on): Add wctype.
6693         * modules/mbswidth (Depends-on): Likewise.
6694         * modules/wcwidth (Depends-on): Likewise.
6695
6696 2006-12-27  Eric Blake  <ebb9@byu.net>
6697
6698         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
6699         module uses more than what <wctype.h> is required to provide.
6700
6701 2006-12-26  Eric Blake  <ebb9@byu.net>
6702
6703         * gnulib-tool (sed_extract_prog): Avoid space-tab.
6704
6705 2006-12-26  Eric Blake  <ebb9@byu.net>
6706
6707         * modules/absolute-header: New module.
6708         * modules/fcntl (Depends-on): Depend on it.
6709         * modules/inttypes (Depends-on): Likewise.
6710         * modules/stdint (Depends-on): Likewise.
6711         * modules/sys_stat (Depends-on): Likewise.
6712         * modules/wctype (Depends-on): Likewise.
6713         * MODULES.html.sh (Support for building libraries and
6714         executables): Document it.
6715
6716 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6717
6718         * gnulib-tool (SED): Remove, undoing previous change.
6719         The problem was that it broke coreutils on Solaris, because
6720         "sed --posix" leaked into a makefile.
6721         (sed): New alias, if 'alias' and GNU sed.
6722
6723 2006-12-24  Jim Meyering  <jim@meyering.net>
6724
6725         Work around an fchownat bug in glibc-2.4:
6726         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
6727         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
6728         in spite of the -P option.
6729         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
6730         New macros.
6731         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
6732         * modules/openat (Files): Add lib/fchownat.c.
6733         * lib/openat.c (fchownat): Don't define here.  Move to...
6734         * lib/fchownat.c: ...this new file.
6735
6736 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
6737
6738         Fix bug reported by Bruno Haible in
6739         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
6740         where quotearg.c didn't compile on Mac OS X 10.2 because it
6741         lacks <wchar.h> and wint_t.
6742         * lib/wctype_.h (__wctype_wint_t): New type.
6743         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
6744         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
6745         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
6746         Arg is now of type __wctype_wint_t, not wint_t.
6747         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
6748         substitute HAVE_WINT_T.
6749         * modules/wctype (Files): Add m4/wint_t.m4.
6750         (wctype.h): Substitute HAVE_WINT_T.
6751
6752 2006-12-23  Bruno Haible  <bruno@clisp.org>
6753
6754         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
6755
6756 2006-12-23  Bruno Haible  <bruno@clisp.org>
6757
6758         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
6759         S_ISLNK.
6760         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
6761         mingw.
6762
6763 2006-12-22  Bruno Haible  <bruno@clisp.org>
6764
6765         * lib/copy-file.c: Include acl.h.
6766         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
6767         Close the file descriptors only after being done with copy_acl.
6768         * modules/copy-file (Depends-on): Add acl.
6769
6770 2006-12-22  Bruno Haible  <bruno@clisp.org>
6771
6772         * gnulib-tool (SED): New variable.
6773         Use $SED instead of sed everywhere.
6774
6775 2006-12-22  Bruno Haible  <bruno@clisp.org>
6776
6777         * modules/no-c++: New file.
6778         * m4/no-c++.m4: New file.
6779         * MODULES.html.sh (Support for building libraries and executables):
6780         Add no-c++.
6781
6782 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
6783
6784         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
6785         Include <limits.h>, and use its INT_MAX to rewrite the
6786         j loop so that it does not overflow 'int'.  Problem reported by
6787         Ralf Wildenhues in
6788         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
6789         Play it safe by shifting left by 1 rather than multiplying by 2,
6790         as GCC is less likely to optimize this away when the value
6791         is signed (when it assumes overflow leads to undefined behavior).
6792         Also, don't assume time_t uses two's complement.
6793
6794 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
6795
6796         * MODULES.html.sh: New module wctype.
6797         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
6798         * lib/fnmatch.c: Don't bother to include <wchar.h> before
6799         <wctype.h>, since the new wctype module should fix this.
6800         * lib/quotearg.c: Include <wctype.h> unconditionally, since
6801         the wctype module should arrange for it.
6802         * lib/regex_internal.h: Likewise.
6803         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
6804         since the wctype module should handle this now.
6805         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
6806         * modules/fnmatch (Depends-on): Add wctype.
6807         * modules/quotearg (Depends-on): Likewise.
6808         * modules/regex (Depends-on): Likewise.
6809
6810 2006-12-19  Bruno Haible  <bruno@clisp.org>
6811
6812         * lib/strdup.h [C++]: Wrap definitions in extern "C".
6813         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
6814
6815 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6816
6817         * modules/savewd (Depends-on): Fix dependency on fcntl.
6818
6819 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6820
6821         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
6822         conforms to C99, rather than relying on the user's environment
6823         setting of STDINT_H.
6824
6825 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6826         and Eric Blake  <ebb9@byu.net>
6827
6828         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
6829         This is more consistent with the other defines here.
6830         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
6831         Port to z/OS.  Problem reported by Paul Gilmartin.
6832         Change local vars to use gl_ prefix rather than ac_.
6833         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
6834         with other defines.
6835         * modules/double-slash-root: New module.
6836         * modules/dirname (Files): Remove m4/double-slash-root.m4.
6837         (Depends-on): Add double-slash-root.
6838         * MODULES.html.sh (File system functions): Mention new module.
6839
6840 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
6841
6842         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
6843         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
6844         This is for the benefit of gzip, which doesn't do i18n.
6845
6846 2006-12-12  Jim Meyering  <jim@meyering.net>
6847
6848         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
6849         Reported by Andreas Schwab <schwab@suse.de>.
6850
6851 2006-12-12  Bruno Haible  <bruno@clisp.org>
6852
6853         Merge these changes.
6854         2006-09-05  Bruno Haible  <bruno@clisp.org>
6855         * lib/iconvme.c (iconv_string): No need to save and restore errno when
6856         iconv_alloc succeeded.
6857         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
6858         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
6859         test for " && dest " at the end - dest is always != NULL there. Call
6860         iconv with 4xNULL arguments initially, to reset the state. Call iconv
6861         with 2xNULL arguments, also to flush the state storage. Handle the
6862         IRIX iconv behaviour. Realloc the final result, to throw away unused
6863         memory.
6864
6865 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
6866
6867         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
6868         and fchmodat unconditionally, since glibc 2.4 has them.
6869         Problem reported by Arkadiusz Miskiewicz.
6870
6871 2006-12-10  Bruno Haible  <bruno@clisp.org>
6872
6873         * gnulib-tool (func_import): Show the include files only for those
6874         modules that are copied and specified.
6875         Reported by Karl Berry.
6876
6877 2006-12-08  Jim Meyering  <jim@meyering.net>
6878
6879         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
6880         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
6881
6882         * build-aux/announce-gen: Add two new options, both optional:
6883         --bootstrap-tools=TOOL_LIST
6884               a comma-separated list of tools, e.g.,
6885               autoconf,automake,bison,gnulib
6886         --gnulib-snapshot-date=DATE
6887               if gnulib is in the bootstrap tool list,
6888               then report this as the snapshot date.
6889               If not specified, use the current date/time.
6890               If you specify a date here, be sure it's UTC.
6891
6892 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6893
6894         * tests/test-argp-2.sh: Fix test to match actual output.
6895         (func_compare): Fix sed script to be portable.
6896
6897 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
6898
6899         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
6900         workaround for this case.  It is not autoconfigured now; offhand
6901         it's hard to see how to autoconfigure it.
6902
6903 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
6904
6905         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
6906         a directory that is about to be chowned.  Such a directory's
6907         initial file permissions should permit the owner only and this
6908         should not be changed until after the chown, since the group and
6909         other bits would be incorrect if they granted permission before
6910         the chown.
6911
6912         Fix porting problem for iswctype reported by Georg Schwarz in:
6913         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
6914         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
6915         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
6916         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
6917         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6918
6919 2006-12-03  Jim Meyering  <jim@meyering.net>
6920
6921         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
6922         p->fts_statp may not yet be defined.
6923         (fts_read): Instead, set it in the caller, once p->fts_statp is
6924         sure to be defined, and corresponds to a top-level directory.
6925         This bug made du -x fail.  Here's the coreutils test case:
6926         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
6927         Reported by Mike Frysinger.
6928
6929 2006-12-01  Jim Meyering  <jim@meyering.net>
6930
6931         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
6932         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
6933         Reported by Simon Josefsson.
6934
6935 2006-11-30  Jim Meyering  <jim@meyering.net>
6936
6937         * m4/warning.m4: Use the all-permissive copyright notice
6938         recommended by RMS (rather than LGPL).
6939         * m4/vararrays.m4: Likewise.
6940         * m4/flexmember.m4: Likewise.
6941
6942 2006-11-29  Bruno Haible  <bruno@clisp.org>
6943
6944         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6945         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
6946         using +=.
6947         Reported by Simon Josefsson <simon@josefsson.org>.
6948
6949 2006-11-28  James Youngman <jay@gnu.org>
6950
6951         * README: Advise users that they might find the bug-gnulib@gnu.org
6952         and autotools-announce@gnu.org mailing lists useful.
6953
6954 2006-11-28  Bruno Haible  <bruno@clisp.org>
6955
6956         * m4/ptrdiff_max.m4: Remove file.
6957
6958 2006-11-21  Bruno Haible  <bruno@clisp.org>
6959
6960         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
6961         _AC_COMPUTE_INT.
6962         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6963         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
6964         _AC_COMPUTE_INT.
6965         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6966         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
6967         _AC_COMPUTE_INT.
6968         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6969
6970 2006-11-28  Jim Meyering  <jim@meyering.net>
6971
6972         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
6973         warning from "gcc -Wshadow" about shadowing the builtin.
6974
6975 2006-11-27  Bruno Haible  <bruno@clisp.org>
6976
6977         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
6978         _AC_COMPUTE_INT.
6979         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6980
6981 2006-11-27  Bruno Haible  <bruno@clisp.org>
6982             Paul Eggert  <eggert@cs.ucla.edu>
6983
6984         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
6985
6986 2006-11-26  Bruno Haible  <bruno@clisp.org>
6987
6988         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6989         noinst_LTLIBRARIES.
6990
6991 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
6992             Bruno Haible  <bruno@clisp.org>
6993
6994         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
6995         if compiling with "gcc -ansi".
6996
6997 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6998
6999         Fix some incompatibilities with gcc -ansi -pedantic.
7000         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
7001         if compiling pedantically with GCC, unless it's C99 or later.
7002         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
7003         it mishandles gcc -ansi -pedantic as well.
7004         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
7005         if gcc -pedantic.
7006         * lib/regexec.c (check_node_accept_bytes): Don't use auto
7007         initializers for struct if -pedantic, unless it's C99 or later.
7008
7009 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
7010
7011         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
7012         Don't close an fd more than once. Identical atimes indicate
7013         success, not failure.
7014
7015 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
7016
7017         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
7018
7019 2006-11-23  Jim Meyering  <jim@meyering.net>
7020
7021         * build-aux/announce-gen: New file.  From coreutils.
7022
7023 2006-11-22  Jim Meyering  <jim@meyering.net>
7024
7025         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
7026         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
7027         (fts_read): Use a temporary to narrow the overused st_size member
7028         before using it in a switch statement.  Reported by Matthew Woehlke.
7029
7030         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
7031         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
7032
7033 2006-11-20  Bruno Haible  <bruno@clisp.org>
7034
7035         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
7036         changequote instead of pairs of brackets.
7037         Reported by Andreas Schwab <schwab@suse.de>.
7038
7039 2006-11-21  Jim Meyering  <jim@meyering.net>
7040
7041         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
7042         so as to remain compatible with older compilers.
7043         Patch from Michael Deutschmann.
7044
7045 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
7046
7047         * MODULES.html.sh (File system functions): Add openat.
7048
7049         * lib/openat.h (rpl_fstatat): New macro, if
7050         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
7051         (fstatat): Define to rpl_fstatat under the same conditions,
7052         unless COMPILING_FSTATAT.
7053         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
7054         seems to have the bug.
7055         * lib/fstatat.c: New file.
7056         * modules/openat (Files): Add it.
7057
7058 2006-11-20  Bruno Haible  <bruno@clisp.org>
7059
7060         * Makefile: New file.
7061
7062 2006-11-20  Jim Meyering  <jim@meyering.net>
7063
7064         The beginnings of syntax-related checks for gnulib.
7065         * lib/Makefile: New file.
7066         * lib/t-idcache: New script.  Ensure that the two halves of
7067         idcache.c stay in sync.
7068
7069         * lib/idcache.c: Adjust comments in user- and group- portions to
7070         be more accurate, and to be consistent with one another.
7071
7072 2006-11-20  Jim Meyering  <jim@meyering.net>
7073
7074         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
7075         continue using the flexible array member (thus, this module performs
7076         half as many malloc calls), with the addition that...
7077         (getgroup, getuser): Consistently record a non-match via an empty
7078         "name" string, and map an empty string match to a NULL return value.
7079         * modules/idcache (Depends-on): Re-add flexmember.
7080
7081         * lib/idcache.c (getuser): Remove all uses of the register keyword.
7082         (getuidbyname, getgroup, getgidbyname): Likewise.
7083
7084         Use cleaner syntax: NULL rather than 0.
7085         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
7086
7087 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
7088
7089         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
7090         It mishandled the case where the group was missing.
7091         Problem reported by Greg Schafer.
7092         * modules/idcache: Likewise.
7093
7094 2006-11-18  Jim Meyering  <jim@meyering.net>
7095
7096         * check-module (%exempt_header): Add exception for some
7097         conditionally-included headers.
7098
7099         * modules/i-ring (Depends-on): Add verify.
7100         (License): Change to LGPL.
7101
7102 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
7103
7104         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
7105         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
7106         and inttostr.h.  Use snprintf rather than uinttostr, so that
7107         LGPLed code doesn't depend on GPLed.
7108
7109 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
7110
7111         * modules/inline (License): Change from GPL to LGPL.
7112
7113 2006-11-17  Jim Meyering  <jim@meyering.net>
7114
7115         * modules/d-type (License): Switch to LGPL.
7116
7117 2006-11-15  Bruno Haible  <bruno@clisp.org>
7118
7119         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
7120
7121 2006-11-15  Eric Blake  <ebb9@byu.net>
7122
7123         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
7124         the module dependency.
7125
7126 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7127             Bruno Haible  <bruno@clisp.org>
7128
7129         * gnulib-tool (func_create_testdir): Add license consistency check.
7130
7131 2006-11-15  Eric Blake  <ebb9@byu.net>
7132
7133         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
7134         random "(cached)" in configure output.
7135
7136 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7137
7138         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
7139         test for conforming inttypes.h is both announced and cached.
7140
7141         * MODULES.html.sh (seen_modules, seen_files): New variables.
7142         (func_module): Rewrite to use a few less gnulib-tool and sed
7143         invocations.  Avoid a couple of quadratic algorithms for ...
7144         (missed_modules, missed_files): ... these, with ...
7145         (func_append, func_tmpdir): ... these new functions, from
7146         gnulib-tool.  Analogously, install traps for cleanup.
7147
7148         * tests/test-gc.c (main): Remove unused variables.
7149         * tests/test-read-file.c: Include stdlib.h, for 'free'.
7150
7151 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
7152
7153         * modules/inttostr (License): Change to LGPL.
7154
7155 2006-11-14  Eric Blake  <ebb9@byu.net>
7156
7157         * modules/tempname (License): Change to LGPL.
7158
7159 2006-11-14  Eric Blake  <ebb9@byu.net>
7160
7161         * doc/functions.texi (Function Portability): *printf functions on
7162         Cygwin now understand all POSIX size specifiers.
7163
7164 2006-11-14  Bruno Haible  <bruno@clisp.org>
7165
7166         * modules/c-ctype (License): Change to LGPL.
7167
7168 2006-11-12  Bruno Haible  <bruno@clisp.org>
7169
7170         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
7171         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
7172         for GNOME libraries, for which the include files are installed in
7173         subdirectories of $prefix/include.
7174
7175 2006-11-12  Bruno Haible  <bruno@clisp.org>
7176
7177         * m4/lib-link.m4: Require at least autoconf-2.54.
7178         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
7179         name to underscores for the --with option.
7180
7181 2006-11-13  Bruno Haible  <bruno@clisp.org>
7182
7183         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
7184         the tests directory.
7185         Reported by Ralf Wildenhues.
7186
7187 2006-11-13  Bruno Haible  <bruno@clisp.org>
7188
7189         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
7190         (func_emit_initmacro_end): Undo the override here.
7191         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
7192         Works around the famous automake error in coreutils.
7193
7194 2006-11-13  Eric Blake  <ebb9@byu.net>
7195
7196         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
7197         element, not its node.
7198
7199 2006-11-12  Bruno Haible  <bruno@clisp.org>
7200
7201         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
7202         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
7203
7204 2006-11-12  Bruno Haible  <bruno@clisp.org>
7205
7206         * gnulib-tool: New option --local-symlink.
7207         (func_usage): Document it.
7208         (lsymbolic): New variable.
7209         (func_import, func_create_testdir): If --symlink was not specified,
7210         test whether --local-symlink was specified and the file comes from
7211         the local_gnulib_dir.
7212
7213 2006-11-12  Bruno Haible  <bruno@clisp.org>
7214
7215         * gnulib-tool (func_ln): New function.
7216         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
7217
7218 2006-11-12  Bruno Haible  <bruno@clisp.org>
7219
7220         Finish support for source files in subdirectories.
7221         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
7222         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
7223         AUTOMAKE_OPTIONS.
7224         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
7225
7226 2006-11-12  Bruno Haible  <bruno@clisp.org>
7227
7228         * gnulib-tool (func_get_automake_snippet): Synthesize also an
7229         EXTRA_lib_SOURCES augmentation.
7230         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
7231
7232 2006-11-12  Jim Meyering  <jim@meyering.net>
7233
7234         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
7235         file descriptors.  This also averts a failure on systems with
7236         native openat support when a traversed directory lacks "x" access.
7237         * lib/fts_.h: Include "i-ring.h"
7238         (struct FTS) [fts_fd_ring]: New member.
7239         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
7240         (FCHDIR): Add parentheses.
7241         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
7242         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
7243         When descending, rather than simply closing the previous
7244         fts_cwd_fd value, push that file descriptor onto the ring.
7245         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
7246         (fts_open): Initialize the new fd_ring member.
7247         (fts_close): Clear the ring.
7248         (fts_safe_changedir): When possible, use our new fd_ring to skip
7249         the diropen and fstat and dev/ino comparison that would normally
7250         accompany a virtual `chdir ("..")'.
7251
7252         * modules/fts (Depends-on): Add i-ring.
7253         * modules/i-ring: New module.
7254         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
7255         * m4/i-ring.m4: New file.
7256
7257 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7258
7259         * gnulib-tool (func_create_testdir): Fix replacement of
7260         `build-aux' in configure.ac.  Run autotools in gltests
7261         subdirectory.
7262         (func_create_testdir, func_create_megatestdir, test): There is
7263         no need for '--force' in most autotool invocations in a new
7264         tree.  Actually fail the whole test if any of the tools, or the
7265         configure or make stages fail.
7266
7267         Sync from Automake.
7268         * build-aux/gnupload: Revert last change.  Add pointer to upload
7269         instructions of the GNU Maintenance Instructions.
7270         Suggestion by Karl Berry.
7271
7272 2006-11-10  Jim Meyering  <jim@meyering.net>
7273
7274         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
7275
7276 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
7277
7278         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
7279         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
7280         (bind_textdomain_codeset) [! ENABLE_NLS]:
7281         Evaluate all the arguments.  That way, callers get compatible behavior
7282         if the arguments have side effects.  Also, it avoids some GCC
7283         diagnostics in some cases; Joel E. Denny reported problems when Bison
7284         was configured with --enable-gcc-warnigs.
7285
7286 2006-11-10  Jim Meyering  <jim@meyering.net>
7287
7288         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
7289         relevant options in CFLAGS (like -O, -fno-inline) are taken into
7290         account.
7291
7292 2006-11-10  Jim Meyering  <jim@meyering.net>
7293
7294         * modules/inline: New file/module.
7295         * modules/xalloc (Files): Remove m4/inline.m4.
7296         (Depends-on): Add inline, instead.
7297         * modules/oset: Likewise.
7298         * modules/list: Likewise.
7299
7300 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
7301
7302         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
7303         Problem reported by Matthew Woehlke.
7304
7305 2006-11-09  Bruno Haible  <bruno@clisp.org>
7306
7307         * lib/tempname.c (gen_tempname): Remove variant that invokes
7308         __gen_tempname.
7309         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
7310         __gen_tempname.
7311
7312 2006-11-08  Bruno Haible  <bruno@clisp.org>
7313
7314         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
7315         to 'yes' instead of 'cross-compiling'.
7316
7317 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
7318
7319         * lib/quotearg.h (quotearg_free): New decl.
7320         * lib/quotearg.c (quotearg_free): New function.
7321         (slot0, nslots, slotvec0, slotvec):
7322         Now file-scope so that quotearg_free can get at them.
7323
7324 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7325
7326         Sync from Automake.
7327         * build-aux/gnupload: Add missing 'gnu' to example URL.
7328         Report by Karl Berry.
7329
7330 2006-11-08  Bruno Haible  <bruno@clisp.org>
7331
7332         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
7333         Suggested by Paul Eggert.
7334
7335 2006-11-08  Jim Meyering  <jim@meyering.net>
7336
7337         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
7338         It's already included if !_LIBC.
7339         (fts_safe_changedir): Add a comment.
7340
7341 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
7342
7343         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
7344         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
7345         Matthew Woehlke.
7346
7347         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
7348         definitions up, to avoid colliding with change below.
7349         (static_inline) [HAVE_INLINE]: New macro.
7350         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
7351         Provide extern decls when !HAVE_INLINE.  Do not define unless
7352         static_inline is defined, either by us or by xmalloc.c.  Use
7353         static_inline rather than static inline.
7354         (XCALLOC): Optimize sizeof(T) = 1 case.
7355         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
7356
7357 2006-11-07  Bruno Haible  <bruno@clisp.org>
7358
7359         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
7360         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
7361         AC_C_INLINE.
7362         * modules/xalloc (Files): Add m4/inline.m4.
7363
7364 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7365
7366         * README: Fix typo.
7367         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
7368         (Miscellanous Notes): ...from this.
7369
7370 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
7371
7372         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
7373         Mention that offsetof should be used instead of sizeof.
7374         From Bruno Haible.
7375
7376 2006-11-07  Bruno Haible  <bruno@clisp.org>
7377
7378         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
7379
7380 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7381
7382         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
7383         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
7384         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
7385         (gl_tree_add_before, gl_tree_add_after):
7386         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
7387         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
7388         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
7389         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
7390         (gl_linked_add_after, gl_linked_add_at): Likewise.
7391         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
7392         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
7393         (gl_tree_add_before, gl_tree_add_after): Likewise.
7394         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
7395         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
7396         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
7397
7398 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7399
7400         * lib/gl_oset.h: Use C comment style, not C++ comment style.
7401
7402 2006-11-06  Bruno Haible  <bruno@clisp.org>
7403
7404         * m4/inline.m4: New file.
7405         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
7406         * modules/list (Files): Add m4/inline.m4.
7407         * modules/oset (Files): Likewise.
7408
7409 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7410
7411         * lib/idcache.c: Include <stddef.h>, for offsetof.
7412         (struct userid.name): Change from char * to a flexible array member.
7413         All uses changed.
7414         * modules/idcache (Depends-on): Add flexmember.
7415
7416         * MODULES.html.sh (Core language properties): New module flexmember.
7417         * modules/flexmember, m4/flexmember.m4: New files.
7418
7419         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
7420         inline functions that are identical with the old xnmalloc_inline,
7421         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
7422         that we can avoid some unnecessary integer multiplications and
7423         divisions in the common case where the element size is known at
7424         compile time.
7425         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
7426         needed.
7427         (xnboundedmalloc): Remove.
7428         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
7429         arguments, for consistency with rest of this header.
7430         (xcharalloc): Rewrite using XNMALLOC.
7431         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
7432         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
7433         versions have been moved to lib/xalloc.h and renamed to be the
7434         non-*_inline versions.
7435         (xmalloc, xrealloc): Implement without reference to the xnmalloc
7436         and xnrealloc functions, since those functions are now inline and
7437         now call us.
7438         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
7439         renaming described above.
7440         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
7441         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
7442         captures the dependency in AC_C_INLINE.
7443
7444         New module canonicalize-lgpl, proposed by Charles Wilson in
7445         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
7446         with a few small changes afterwards.
7447         * MODULES.html.sh (File system functions): New module
7448         canonicalize-lgpl.
7449         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
7450         and canonicalize_file_name.
7451         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
7452         * modules/canonicalize-lgpl: New files.
7453
7454 2006-11-05  Bruno Haible  <bruno@clisp.org>
7455
7456         * gnulib-tool (func_import, func_create_testdir): Create directories
7457         also for files in subdirectories of lib/.
7458
7459 2006-11-05  Bruno Haible  <bruno@clisp.org>
7460
7461         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
7462         ANSI C compliant.
7463
7464 2006-11-03  Bruno Haible  <bruno@clisp.org>
7465
7466         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
7467         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
7468         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
7469         (xnboundedmalloc): New inline function.
7470         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
7471         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
7472         xmalloc.
7473         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
7474         xmalloc.
7475         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
7476         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
7477         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
7478         xmalloc.
7479         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7480         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
7481         xmalloc.
7482         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
7483         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7484         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
7485         xmalloc.
7486         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7487         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
7488         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7489         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
7490         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
7491         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
7492         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
7493
7494 2006-11-03  Bruno Haible  <bruno@clisp.org>
7495
7496         * lib/c-ctype.h [C++]: Define functions without name mangling.
7497         * lib/fwriteerror.h [C++]: Likewise.
7498         * lib/gcd.h [C++]: Likewise.
7499         * lib/linebreak.h [C++]: Likewise.
7500
7501 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
7502
7503         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
7504         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
7505         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
7506         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
7507         Check for functions and headers just once.
7508         Check for declaration of canonicalize_file_name.
7509         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
7510
7511 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7512
7513         * gnulib-tool (func_import): Fix typo in actioncmd.
7514
7515 2006-11-02  Bruno Haible  <bruno@clisp.org>
7516
7517         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
7518         newline sequence in the Makefile.am snippet as a space, like "make"
7519         does.
7520         Reported by Roger Persson <perrog@gmail.com>.
7521
7522 2006-11-01  Bruno Haible  <bruno@clisp.org>
7523
7524         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
7525         already declared in <string.h>.
7526         * lib/strcase.h (strncasecmp): Don't declare it if yes.
7527
7528 2006-11-01  Bruno Haible  <bruno@clisp.org>
7529
7530         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
7531         * lib/strcase.h: Include <string.h>.
7532         (strcasecmp): Define to rpl_strcasecmp here.
7533
7534 2006-11-01  Bruno Haible  <bruno@clisp.org>
7535
7536         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
7537
7538 2006-11-01  Eric Blake  <ebb9@byu.net>
7539
7540         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
7541
7542         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
7543
7544 2006-10-29  Bruno Haible  <bruno@clisp.org>
7545
7546         Make it compile in C++ mode.
7547         * lib/full-write.c (full_rw): Add a cast.
7548
7549 2006-11-01  Bruno Haible  <bruno@clisp.org>
7550
7551         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
7552         be POSIX compliant.
7553         Reported by Roger Persson <perrog@gmail.com>.
7554
7555 2006-11-01  Eric Blake  <ebb9@byu.net>
7556
7557         * lib/getopt_.h: Fix comments.
7558
7559 2006-10-31  Eric Blake  <ebb9@byu.net>
7560
7561         * modules/tmpdir (Depends-on): Add sys_stat.
7562         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
7563         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
7564         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
7565         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
7566         tempname.
7567
7568 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
7569
7570         Avoid some C++ diagnostics reported by Bruno Haible.
7571         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
7572         xmalloc.
7573         (quotearg_alloc): Use xcharalloc rather than xmalloc.
7574         (struct slotvec): Move to top level.
7575         (quotearg_n_options): Rewrite to avoid xmalloc.
7576         * lib/xalloc.h (xcharalloc): New function.
7577         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
7578         [defined __cplusplus]: Add function template that provides result
7579         type propagation.  This part of the change is from Bruno Haible.
7580
7581 2006-10-29  Bruno Haible  <bruno@clisp.org>
7582
7583         Make it compile in C++ mode.
7584         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
7585         * lib/strnlen1.c (strnlen1): Cast memchr result.
7586         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
7587         * lib/clean-temp.c (string_equals, string_hash): Add casts.
7588         (create_temp_dir): Rename local variable 'template'.
7589         (compile_csharp_using_sscli): Add cast.
7590         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
7591         * lib/findprog.c (find_in_path): Likewise.
7592         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
7593         * lib/wait-process.c (register_slave_subprocess): Likewise.
7594
7595 2006-10-22  Bruno Haible  <bruno@clisp.org>
7596
7597         * modules/tsearch: New file.
7598         * lib/tsearch.h: New file.
7599         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
7600         * m4/tsearch.m4: New file.
7601         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
7602
7603 2006-10-29  Eric Blake  <ebb9@byu.net>
7604
7605         * lib/arcfour.c: Assume config.h.
7606         * lib/arctwo.c: Likewise.
7607         * lib/base64.c: Likewise.
7608         * lib/check-version.c: Likewise.
7609         * lib/crc.c: Likewise.
7610         * lib/des.c: Likewise.
7611         * lib/gc-gnulib.c: Likewise.
7612         * lib/gc-libgcrypt.c: Likewise.
7613         * lib/gc-pbkdf2-sha1.c: Likewise.
7614         * lib/getaddrinfo.c: Likewise.
7615         * lib/getdelim.c: Likewise.
7616         * lib/getline.c: Likewise.
7617         * lib/hmac-md5.c: Likewise.
7618         * lib/hmac-sha1.c: Likewise.
7619         * lib/iconvme.c: Likewise.
7620         * lib/md2.c: Likewise.
7621         * lib/md4.c: Likewise.
7622         * lib/memxor.c: Likewise.
7623         * lib/read-file.c: Likewise.
7624         * lib/readline.c: Likewise.
7625         * lib/rijndael-alg-fst.c: Likewise.
7626         * lib/rijndael-api-fst.c: Likewise.
7627         * lib/xgetdomainname.c: Likewise.
7628
7629 2006-10-28  Eric Blake  <ebb9@byu.net>
7630
7631         * lib/xstrndup.c: Assume config.h.
7632
7633 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
7634
7635         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
7636         stat-macros.h is now for our own macros, whereas stat_h is for
7637         macros in the <sys/stat.h> name space.
7638         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
7639         (STAT_MACROS_H): Remove.
7640         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
7641         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
7642         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
7643         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
7644         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
7645         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
7646         Move these macros to ...
7647         * lib/stat_.h: here.  Don't include stat-macros.h.
7648         * lib/canonicalize.c: Don't include stat-macros.h.
7649         * lib/chown.c: Likewise.
7650         * lib/euidaccess.c: Likewise.
7651         * lib/file-type.c: Likewise.
7652         * lib/filemode.c: Likewise.
7653         * lib/glob.c: Likewise.
7654         * lib/isapipe.c: Likewise.
7655         * lib/lchown.c: Likewise.
7656         * lib/lstat.c: Likewise.
7657         * lib/mkdir-p.c: Likewise.
7658         * lib/rmdir.c: Likewise.
7659         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
7660         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
7661         unless mkdir isn't declared, to speed up 'configure'.
7662         Always create sys/stat.h, since it's unlikely any real sys/stat.h
7663         would define all the S_* symbols.
7664         * modules/canonicalize (Depends-on):
7665         Depend on sys_stat, not stat-macros.
7666         * modules/chown: Likewise.
7667         * modules/euidaccess: Likewise.
7668         * modules/filemode: Likewise.
7669         * modules/file-type: Likewise.
7670         * modules/glob: Likewise.
7671         * modules/isapipe: Likewise.
7672         * modules/lchown: Likewise.
7673         * modules/lstat: Likewise.
7674         * modules/mkancesdirs: Likewise.
7675         * modules/rmdir: Likewise.
7676         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
7677         * modules/modechange: Likewise.
7678         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
7679         (configure.ac): Remove gl_STAT_MACROS.
7680         * modules/sys_stat (Depends-on): Remove stat-macros.
7681
7682 2006-10-27  Bruno Haible  <bruno@clisp.org>
7683
7684         * m4/signed.m4: Remove file.
7685         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
7686         invocation.
7687         * modules/vasnprintf (Files): Remove m4/signed.m4.
7688
7689 2006-10-27  Bruno Haible  <bruno@clisp.org>
7690
7691         Update to GNU gettext 0.16.
7692         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
7693         m4/inttypes-h.m4, m4/signed.m4.
7694         * m4/gettext.m4: Update to GNU gettext 0.16.
7695         * m4/intl.m4: New file, from GNU gettext.
7696         * m4/intldir.m4: New file, from GNU gettext.
7697         * config/srclist.txt: Update
7698
7699 2006-10-27  Eric Blake  <ebb9@byu.net>
7700
7701         * MODULES.html.sh: Document tempname.
7702         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
7703         dependencies.
7704         (Files): Move lib/tempname.c...
7705         * modules/tempname: ...to this new module.
7706         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
7707         (gl_PREREQ_TEMPNAME): Move...
7708         * m4/tempname.m4: ...to this new file.
7709         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
7710         * modules/sys_stat (Depends-on): Add stat-macros.
7711         * lib/stat_.h (includes): Pick up stat macros.
7712         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
7713         if stat macros are broken.
7714         * lib/tempname.c (includes): No need to include "stat-macros.h".
7715         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
7716         (direxists, __path_search) [!_LIBC]: Don't compile these in
7717         gnulib; the tmpdir module covers that.
7718         * lib/tempname.h: New file.
7719
7720 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
7721
7722         * COPYING: Explain how gnulib-tool converts licence headers.
7723         Almost all wording by Eric Blake.
7724
7725 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
7726
7727         * lib/mbchar.h (is_basic_table): Make read-only.
7728         * lib/mbchar.c (is_basic_table): Likewise.
7729         Reported by John Darrington.
7730
7731 2006-10-25  Bruno Haible  <bruno@clisp.org>
7732
7733         * lib/progname.h (set_program_name): Undefine before defining.
7734
7735 2006-10-25  Bruno Haible  <bruno@clisp.org>
7736
7737         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
7738         false for non-gcc C++ compilers.
7739         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
7740
7741 2006-10-24  Bruno Haible  <bruno@clisp.org>
7742
7743         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
7744         iconv implementations like Irix iconv.
7745
7746 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7747
7748         * modules/vararrays: New file.
7749         * m4/vararrays.m4: New file, taken from diffutils.
7750         * MODULES.html.sh: New module vararrays.
7751
7752 2006-10-24  Karl Berry  <karl@gnu.org>
7753
7754         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
7755         Don't call GNU Unix.
7756
7757 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7758
7759         * users.txt: Add Libtool.
7760
7761         Sync from Libtool:
7762
7763         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7764
7765         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
7766         to gnulib's policy of including config.h unconditionally.
7767
7768 2006-10-24  Bruno Haible  <bruno@clisp.org>
7769
7770         * modules/wcwidth (Files): Add m4/wint_t.m4.
7771         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
7772         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
7773
7774 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7775
7776         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
7777         to pacify GCC with some -W flags enabled.  Problem reported by
7778         Bruno Haible.
7779
7780 2006-10-24  Jim Meyering  <jim@meyering.net>
7781
7782         * MODULES.html.sh: Remove uinttostr.  It's not a module.
7783         Reported by Karl Berry.
7784
7785 2006-10-23  Bruno Haible  <bruno@clisp.org>
7786
7787         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
7788
7789 2006-10-24  Bruno Haible  <bruno@clisp.org>
7790
7791         * lib/gl_list.h: Use C comment style, not C++ comment style.
7792
7793 2006-10-23  Eric Blake  <ebb9@byu.net>
7794
7795         * lib/getaddrinfo.c (includes): Add missing include.
7796
7797 2006-10-23  Bruno Haible  <bruno@clisp.org>
7798             Paul Eggert  <eggert@cs.ucla.edu>
7799
7800         Ability to rename obstack_free.
7801         * lib/obstack.h (__obstack_free): New macro. Declare instead of
7802         obstack_free.
7803         (obstack_free): Invoke the __obstack_free macro.
7804         * lib/obstack.c (obstack_free): Use __obstack_free macro.
7805
7806 2006-10-23  Bruno Haible  <bruno@clisp.org>
7807             Paul Eggert  <eggert@cs.ucla.edu>
7808
7809         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
7810         __argc, __argv from the declaration. (They are defined as macros on
7811         mingw.)
7812
7813 2006-10-22  Bruno Haible  <bruno@clisp.org>
7814
7815         * doc/gnulib-intro.texi: New file.
7816         * doc/gnulib.texi: Include it.
7817
7818 2006-10-21  Bruno Haible  <bruno@clisp.org>
7819
7820         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
7821         "Introduction", "Miscellanous Notes", "Particular Modules".
7822
7823 2006-10-21  Bruno Haible  <bruno@clisp.org>
7824
7825         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7826         Change mostlyclean-local rule to avoid sh syntax error from bash
7827         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
7828
7829 2006-10-23  Jim Meyering  <jim@meyering.net>
7830
7831         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
7832         in place of snprintf.
7833
7834         * modules/inttostr (Files): Add lib/uinttostr.c.
7835         * lib/uinttostr.c (inttostr): New file/function.
7836         * lib/inttostr.h (uinttostr): Declare.
7837         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
7838         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7839         Add uinttostr.
7840         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
7841
7842 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7843
7844         * lib/canonicalize.c (ELOOP): Define if not already defined.
7845         Problem reported by Bruno Haible in
7846         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
7847
7848 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7849
7850         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
7851         Problem reported by Perry Smith and Ville Laurikari.
7852
7853         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
7854         uses.
7855
7856 2006-10-19  Bruno Haible  <bruno@clisp.org>
7857
7858         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
7859         for mingw.
7860
7861 2006-10-19  Bruno Haible  <bruno@clisp.org>
7862
7863         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
7864         Needed for mingw.
7865
7866 2006-10-19  Bruno Haible  <bruno@clisp.org>
7867
7868         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
7869
7870 2006-10-19  Bruno Haible  <bruno@clisp.org>
7871
7872         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
7873         it.
7874
7875 2006-10-19  Bruno Haible  <bruno@clisp.org>
7876
7877         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
7878         invocation.
7879
7880 2006-10-19  Bruno Haible  <bruno@clisp.org>
7881
7882         * gnulib-tool (func_create_testdir): Don't include ftruncate and
7883         mountlist by default.
7884
7885 2006-10-16  Bruno Haible  <bruno@clisp.org>
7886
7887         * lib/c-strstr.c: Include c-strstr.h.
7888
7889 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7890
7891         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
7892         in a slash.
7893
7894 2006-10-18  Bruno Haible  <bruno@clisp.org>
7895
7896         * lib/lock.h [C++]: Wrap definitions in extern "C".
7897
7898 2006-10-18  Bruno Haible  <bruno@clisp.org>
7899
7900         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
7901         gl_LIBOBJS list.
7902
7903 2006-10-18  Bruno Haible  <bruno@clisp.org>
7904
7905         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
7906
7907 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
7908
7909         * lib/xstrtol.h: Include gettext.h.
7910         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
7911         Problem reported by Eric Blake.
7912         * modules/xstrtol (Depends-on): Add gettext-h.
7913
7914 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
7915
7916         * lib/strftime.c (advance): New macro.
7917         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
7918         incomplete type, so you can't add 0 to it.  Problem and patch
7919         reported by Eelco Dolstra for dietlibc.
7920
7921 2006-10-18  Jim Meyering  <jim@meyering.net>
7922
7923         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
7924         type for a local, and rename it: s/up/user_proc/.
7925
7926 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7927
7928         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
7929         READ_UTMP_USER_PROCESS.
7930         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
7931
7932 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
7933
7934         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
7935         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
7936
7937 2006-10-17  Eric Blake  <ebb9@byu.net>
7938
7939         * lib/sigprocmask.c (sigprocmask): Fix typo.
7940
7941         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
7942
7943         * modules/clean-temp (Makefile.am): Don't add to make output...
7944         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
7945         config.h.
7946
7947 2006-10-17  Bruno Haible  <bruno@clisp.org>
7948
7949         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
7950         differently if DEFAULT_TEXT_DOMAIN is set.
7951
7952 2006-10-16  Bruno Haible  <bruno@clisp.org>
7953
7954         * lib/clean-temp.c: Include fwriteerror.h.
7955
7956 2006-10-16  Bruno Haible  <bruno@clisp.org>
7957
7958         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
7959
7960 2006-10-16  Bruno Haible  <bruno@clisp.org>
7961
7962         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
7963         * lib/sigprocmask.h: Include <sys/types.h>.
7964         (sigset_t): Use the system's definition if present.
7965
7966 2006-10-17  Eric Blake  <ebb9@byu.net>
7967
7968         * lib/xvasprintf.c (includes): Assume config.h.
7969         * lib/xasprintf.c (includes): Likewise.
7970
7971 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
7972
7973         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
7974         at least as wide as intmax_t.
7975
7976 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
7977
7978         (Imported from Automake.)
7979         * build-aux/gnupload: Update to version 1.1 of directive file.
7980
7981 2006-10-16  Eric Blake  <ebb9@byu.net>
7982
7983         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
7984         match Automake 1.10a.
7985
7986 2006-10-14  Bruno Haible  <bruno@clisp.org>
7987
7988         * modules/sigprocmask: New file.
7989         * lib/sigprocmask.h: New file.
7990         * lib/sigprocmask.c: New file.
7991         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
7992         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
7993         request sigprocmask.o.
7994         (gl_PREREQ_SIGPROCMASK): New macro.
7995         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
7996         (Depends-on): Add sigprocmask.
7997         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
7998         gt_SIGNALBLOCKING. Test for 'raise' only once.
7999         * lib/fatal-signal.c: Include sigprocmask.h.
8000         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
8001         unblock_fatal_signals): Define always.
8002         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
8003         sigprocmask.
8004
8005 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8006
8007         Sync from Automake.
8008         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
8009         which incorrectly sets the mode of an existing destination
8010         directory.  In some cases the unpatched install-sh could do the
8011         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
8012         system.  We hope this is rare in practice, but it's clearly worth
8013         fixing.  Problem reported by Alex Unleashed in
8014         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
8015         Also, don't bother to check for -m bugs unless we're using -m;
8016         suggested by Stepan Kasal.
8017
8018 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8019
8020         Sync from Automake.
8021         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
8022         `-c' flag, so they appear at the same position as in %FASTDEP%
8023         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
8024         which ignores unknown options only after the first non-option.
8025         Bug report against M4 by Nelson H. F. Beebe.
8026
8027 2006-10-13  Jim Meyering  <jim@meyering.net>
8028
8029         Fix a bug in yesterday's change.
8030         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
8031         p->fts_statp->st_dev would be used uninitialized.
8032         Ensures that we always call fts_stat on the very first entry.
8033         Miklos Szeredi reported that find -xdev stopped working.
8034
8035 2006-10-12  Bruno Haible  <bruno@clisp.org>
8036
8037         * gnulib-tool (func_get_automake_snippet): Append an automatically
8038         computed EXTRA_DIST augmentation.
8039         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
8040         * modules/alloca-opt (Makefile.am): Likewise.
8041         * modules/allocsa (Makefile.am): Likewise.
8042         * modules/arcfour (Makefile.am): Likewise.
8043         * modules/arctwo (Makefile.am): Likewise.
8044         * modules/argmatch (Makefile.am): Likewise.
8045         * modules/argz (Makefile.am): Likewise.
8046         * modules/atexit (Makefile.am): Likewise.
8047         * modules/backupfile (Makefile.am): Likewise.
8048         * modules/byteswap (Makefile.am): Likewise.
8049         * modules/c-strtod (Makefile.am): Likewise.
8050         * modules/c-strtold (Makefile.am): Likewise.
8051         * modules/calloc (Makefile.am): Likewise.
8052         * modules/canon-host (Makefile.am): Likewise.
8053         * modules/canonicalize (Makefile.am): Likewise.
8054         * modules/chdir-long (Makefile.am): Likewise.
8055         * modules/chdir-safer (Makefile.am): Likewise.
8056         * modules/check-version (Makefile.am): Likewise.
8057         * modules/chown (Makefile.am): Likewise.
8058         * modules/cloexec (Makefile.am): Likewise.
8059         * modules/close-stream (Makefile.am): Likewise.
8060         * modules/closeout (Makefile.am): Likewise.
8061         * modules/crc (Makefile.am): Likewise.
8062         * modules/csharpexec (Makefile.am): Likewise.
8063         * modules/cycle-check (Makefile.am): Likewise.
8064         * modules/des (Makefile.am): Likewise.
8065         * modules/dev-ino (Makefile.am): Likewise.
8066         * modules/dirfd (Makefile.am): Likewise.
8067         * modules/dirname (Makefile.am): Likewise.
8068         * modules/dup2 (Makefile.am): Likewise.
8069         * modules/eealloc (Makefile.am): Likewise.
8070         * modules/error (Makefile.am): Likewise.
8071         * modules/euidaccess (Makefile.am): Likewise.
8072         * modules/exclude (Makefile.am): Likewise.
8073         * modules/exitfail (Makefile.am): Likewise.
8074         * modules/fcntl-safer (Makefile.am): Likewise.
8075         * modules/fcntl (Makefile.am): Likewise.
8076         * modules/file-type (Makefile.am): Likewise.
8077         * modules/fileblocks (Makefile.am): Likewise.
8078         * modules/filemode (Makefile.am): Likewise.
8079         * modules/filenamecat (Makefile.am): Likewise.
8080         * modules/fnmatch (Makefile.am): Likewise.
8081         * modules/fopen-safer (Makefile.am): Likewise.
8082         * modules/fpending (Makefile.am): Likewise.
8083         * modules/fprintftime (Makefile.am): Likewise.
8084         * modules/free (Makefile.am): Likewise.
8085         * modules/fsusage (Makefile.am): Likewise.
8086         * modules/ftruncate (Makefile.am): Likewise.
8087         * modules/fts (Makefile.am): Likewise.
8088         * modules/gc-arcfour (Makefile.am): Likewise.
8089         * modules/gc-des (Makefile.am): Likewise.
8090         * modules/gc-hmac-md5 (Makefile.am): Likewise.
8091         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
8092         * modules/gc-md4 (Makefile.am): Likewise.
8093         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
8094         * modules/gc-sha1 (Makefile.am): Likewise.
8095         * modules/gc (Makefile.am): Likewise.
8096         * modules/getaddrinfo (Makefile.am): Likewise.
8097         * modules/getcwd (Makefile.am): Likewise.
8098         * modules/getdelim (Makefile.am): Likewise.
8099         * modules/getdomainname (Makefile.am): Likewise.
8100         * modules/getgroups (Makefile.am): Likewise.
8101         * modules/gethostname (Makefile.am): Likewise.
8102         * modules/gethrxtime (Makefile.am): Likewise.
8103         * modules/getline (Makefile.am): Likewise.
8104         * modules/getloadavg (Makefile.am): Likewise.
8105         * modules/getlogin_r (Makefile.am): Likewise.
8106         * modules/getndelim2 (Makefile.am): Likewise.
8107         * modules/getopt (Makefile.am): Likewise.
8108         * modules/getpagesize (Makefile.am): Likewise.
8109         * modules/getpass-gnu (Makefile.am): Likewise.
8110         * modules/getpass (Makefile.am): Likewise.
8111         * modules/getsubopt (Makefile.am): Likewise.
8112         * modules/gettime (Makefile.am): Likewise.
8113         * modules/gettimeofday (Makefile.am): Likewise.
8114         * modules/getugroups (Makefile.am): Likewise.
8115         * modules/getusershell (Makefile.am): Likewise.
8116         * modules/glob (Makefile.am): Likewise.
8117         * modules/group-member (Makefile.am): Likewise.
8118         * modules/hard-locale (Makefile.am): Likewise.
8119         * modules/hash (Makefile.am): Likewise.
8120         * modules/hmac-md5 (Makefile.am): Likewise.
8121         * modules/hmac-sha1 (Makefile.am): Likewise.
8122         * modules/human (Makefile.am): Likewise.
8123         * modules/idcache (Makefile.am): Likewise.
8124         * modules/imaxabs (Makefile.am): Likewise.
8125         * modules/imaxdiv (Makefile.am): Likewise.
8126         * modules/inet_ntop (Makefile.am): Likewise.
8127         * modules/inet_pton (Makefile.am): Likewise.
8128         * modules/intprops (Makefile.am): Likewise.
8129         * modules/inttostr (Makefile.am): Likewise.
8130         * modules/inttypes (Makefile.am): Likewise.
8131         * modules/isapipe (Makefile.am): Likewise.
8132         * modules/javaversion (Makefile.am): Likewise.
8133         * modules/lchmod (Makefile.am): Likewise.
8134         * modules/lchown (Makefile.am): Likewise.
8135         * modules/localcharset (Makefile.am): Likewise.
8136         * modules/long-options (Makefile.am): Likewise.
8137         * modules/lstat (Makefile.am): Likewise.
8138         * modules/malloc (Makefile.am): Likewise.
8139         * modules/mathl (Makefile.am): Likewise.
8140         * modules/mbchar (Makefile.am): Likewise.
8141         * modules/md2 (Makefile.am): Likewise.
8142         * modules/md4 (Makefile.am): Likewise.
8143         * modules/md5 (Makefile.am): Likewise.
8144         * modules/memcasecmp (Makefile.am): Likewise.
8145         * modules/memchr (Makefile.am): Likewise.
8146         * modules/memcmp (Makefile.am): Likewise.
8147         * modules/memcoll (Makefile.am): Likewise.
8148         * modules/memcpy (Makefile.am): Likewise.
8149         * modules/memmem (Makefile.am): Likewise.
8150         * modules/memmove (Makefile.am): Likewise.
8151         * modules/mempcpy (Makefile.am): Likewise.
8152         * modules/memrchr (Makefile.am): Likewise.
8153         * modules/memset (Makefile.am): Likewise.
8154         * modules/memxor (Makefile.am): Likewise.
8155         * modules/mkancesdirs (Makefile.am): Likewise.
8156         * modules/mkdir-p (Makefile.am): Likewise.
8157         * modules/mkdir (Makefile.am): Likewise.
8158         * modules/mkdtemp (Makefile.am): Likewise.
8159         * modules/mkstemp (Makefile.am): Likewise.
8160         * modules/mktime (Makefile.am): Likewise.
8161         * modules/modechange (Makefile.am): Likewise.
8162         * modules/mountlist (Makefile.am): Likewise.
8163         * modules/nanosleep (Makefile.am): Likewise.
8164         * modules/obstack (Makefile.am): Likewise.
8165         * modules/openat (Makefile.am): Likewise.
8166         * modules/pagealign_alloc (Makefile.am): Likewise.
8167         * modules/pathmax (Makefile.am): Likewise.
8168         * modules/physmem (Makefile.am): Likewise.
8169         * modules/poll (Makefile.am): Likewise.
8170         * modules/posixtm (Makefile.am): Likewise.
8171         * modules/posixver (Makefile.am): Likewise.
8172         * modules/putenv (Makefile.am): Likewise.
8173         * modules/quote (Makefile.am): Likewise.
8174         * modules/quotearg (Makefile.am): Likewise.
8175         * modules/raise (Makefile.am): Likewise.
8176         * modules/read-file (Makefile.am): Likewise.
8177         * modules/readline (Makefile.am): Likewise.
8178         * modules/readlink (Makefile.am): Likewise.
8179         * modules/readtokens (Makefile.am): Likewise.
8180         * modules/readutmp (Makefile.am): Likewise.
8181         * modules/realloc (Makefile.am): Likewise.
8182         * modules/regex (Makefile.am): Likewise.
8183         * modules/rename-dest-slash (Makefile.am): Likewise.
8184         * modules/rename (Makefile.am): Likewise.
8185         * modules/rijndael (Makefile.am): Likewise.
8186         * modules/rmdir (Makefile.am): Likewise.
8187         * modules/rpmatch (Makefile.am): Likewise.
8188         * modules/safe-read (Makefile.am): Likewise.
8189         * modules/safe-write (Makefile.am): Likewise.
8190         * modules/same-inode (Makefile.am): Likewise.
8191         * modules/same (Makefile.am): Likewise.
8192         * modules/save-cwd (Makefile.am): Likewise.
8193         * modules/savedir (Makefile.am): Likewise.
8194         * modules/setenv (Makefile.am): Likewise.
8195         * modules/settime (Makefile.am): Likewise.
8196         * modules/sha1 (Makefile.am): Likewise.
8197         * modules/sig2str (Makefile.am): Likewise.
8198         * modules/snprintf (Makefile.am): Likewise.
8199         * modules/stat-macros (Makefile.am): Likewise.
8200         * modules/stat-time (Makefile.am): Likewise.
8201         * modules/stdbool (Makefile.am): Likewise.
8202         * modules/stdint (Makefile.am): Likewise.
8203         * modules/stdlib-safer (Makefile.am): Likewise.
8204         * modules/stpcpy (Makefile.am): Likewise.
8205         * modules/stpncpy (Makefile.am): Likewise.
8206         * modules/strcase (Makefile.am): Likewise.
8207         * modules/strcasestr (Makefile.am): Likewise.
8208         * modules/strchrnul (Makefile.am): Likewise.
8209         * modules/strcspn (Makefile.am): Likewise.
8210         * modules/strdup (Makefile.am): Likewise.
8211         * modules/strerror (Makefile.am): Likewise.
8212         * modules/strftime (Makefile.am): Likewise.
8213         * modules/strndup (Makefile.am): Likewise.
8214         * modules/strnlen (Makefile.am): Likewise.
8215         * modules/strpbrk (Makefile.am): Likewise.
8216         * modules/strsep (Makefile.am): Likewise.
8217         * modules/strstr (Makefile.am): Likewise.
8218         * modules/strtod (Makefile.am): Likewise.
8219         * modules/strtoimax (Makefile.am): Likewise.
8220         * modules/strtok_r (Makefile.am): Likewise.
8221         * modules/strtol (Makefile.am): Likewise.
8222         * modules/strtoll (Makefile.am): Likewise.
8223         * modules/strtoul (Makefile.am): Likewise.
8224         * modules/strtoull (Makefile.am): Likewise.
8225         * modules/strtoumax (Makefile.am): Likewise.
8226         * modules/strverscmp (Makefile.am): Likewise.
8227         * modules/sys_socket (Makefile.am): Likewise.
8228         * modules/sys_stat (Makefile.am): Likewise.
8229         * modules/sysexits (Makefile.am): Likewise.
8230         * modules/time_r (Makefile.am): Likewise.
8231         * modules/timegm (Makefile.am): Likewise.
8232         * modules/timespec (Makefile.am): Likewise.
8233         * modules/tmpfile-safer (Makefile.am): Likewise.
8234         * modules/trim (Makefile.am): Likewise.
8235         * modules/unistd-safer (Makefile.am): Likewise.
8236         * modules/unlinkdir (Makefile.am): Likewise.
8237         * modules/unlocked-io (Makefile.am): Likewise.
8238         * modules/userspec (Makefile.am): Likewise.
8239         * modules/utime (Makefile.am): Likewise.
8240         * modules/utimecmp (Makefile.am): Likewise.
8241         * modules/utimens (Makefile.am): Likewise.
8242         * modules/vasnprintf (Makefile.am): Likewise.
8243         * modules/vasprintf (Makefile.am): Likewise.
8244         * modules/vsnprintf (Makefile.am): Likewise.
8245         * modules/xalloc (Makefile.am): Likewise.
8246         * modules/xgetcwd (Makefile.am): Likewise.
8247         * modules/xnanosleep (Makefile.am): Likewise.
8248         * modules/xreadlink (Makefile.am): Likewise.
8249         * modules/xstrtod (Makefile.am): Likewise.
8250         * modules/xstrtol (Makefile.am): Likewise.
8251         * modules/xstrtold (Makefile.am): Likewise.
8252         * modules/yesno (Makefile.am): Likewise.
8253         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
8254
8255 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8256
8257         * modules/error (Makefile.am): Distribute files through
8258         EXTRA_DIST, not lib_SOURCES.
8259
8260 2006-10-12  Eric Blake  <ebb9@byu.net>
8261
8262         * modules/error (Makefile.am): Distribute files in /lib.
8263         * modules/obstack (Makefile.am): Likewise.
8264
8265 2006-10-12  Bruno Haible  <bruno@clisp.org>
8266
8267         * modules/acl (Makefile.am): Distribute all files in lib/ through
8268         EXTRA_DIST.
8269         * modules/arcfour (Makefile.am): Likewise.
8270         * modules/arctwo (Makefile.am): Likewise.
8271         * modules/argmatch (Makefile.am): Likewise.
8272         * modules/argz (Makefile.am): Likewise.
8273         * modules/atexit (Makefile.am): Likewise.
8274         * modules/backupfile (Makefile.am): Likewise.
8275         * modules/c-strtod (Makefile.am): Likewise.
8276         * modules/c-strtold (Makefile.am): Likewise.
8277         * modules/calloc (Makefile.am): Likewise.
8278         * modules/canon-host (Makefile.am): Likewise.
8279         * modules/canonicalize (Makefile.am): Likewise.
8280         * modules/chdir-long (Makefile.am): Likewise.
8281         * modules/chdir-safer (Makefile.am): Likewise.
8282         * modules/check-version (Makefile.am): Likewise.
8283         * modules/chown (Makefile.am): Likewise.
8284         * modules/cloexec (Makefile.am): Likewise.
8285         * modules/close-stream (Makefile.am): Likewise.
8286         * modules/closeout (Makefile.am): Likewise.
8287         * modules/crc (Makefile.am): Likewise.
8288         * modules/cycle-check (Makefile.am): Likewise.
8289         * modules/des (Makefile.am): Likewise.
8290         * modules/dirfd (Makefile.am): Likewise.
8291         * modules/dirname (Makefile.am): Likewise.
8292         * modules/dup2 (Makefile.am): Likewise.
8293         * modules/euidaccess (Makefile.am): Likewise.
8294         * modules/exclude (Makefile.am): Likewise.
8295         * modules/exitfail (Makefile.am): Likewise.
8296         * modules/fcntl-safer (Makefile.am): Likewise.
8297         * modules/file-type (Makefile.am): Likewise.
8298         * modules/fileblocks (Makefile.am): Likewise.
8299         * modules/filemode (Makefile.am): Likewise.
8300         * modules/filenamecat (Makefile.am): Likewise.
8301         * modules/fnmatch (Makefile.am): Likewise.
8302         * modules/fopen-safer (Makefile.am): Likewise.
8303         * modules/fpending (Makefile.am): Likewise.
8304         * modules/fprintftime (Makefile.am): Likewise.
8305         * modules/free (Makefile.am): Likewise.
8306         * modules/fsusage (Makefile.am): Likewise.
8307         * modules/ftruncate (Makefile.am): Likewise.
8308         * modules/fts (Makefile.am): Likewise.
8309         * modules/gc (Makefile.am): Likewise.
8310         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
8311         * modules/getaddrinfo (Makefile.am): Likewise.
8312         * modules/getcwd (Makefile.am): Likewise.
8313         * modules/getdelim (Makefile.am): Likewise.
8314         * modules/getdomainname (Makefile.am): Likewise.
8315         * modules/getgroups (Makefile.am): Likewise.
8316         * modules/gethostname (Makefile.am): Likewise.
8317         * modules/gethrxtime (Makefile.am): Likewise.
8318         * modules/getline (Makefile.am): Likewise.
8319         * modules/getloadavg (Makefile.am): Likewise.
8320         * modules/getlogin_r (Makefile.am): Likewise.
8321         * modules/getopt (Makefile.am): Likewise.
8322         * modules/getpass (Makefile.am): Likewise.
8323         * modules/getpass-gnu (Makefile.am): Likewise.
8324         * modules/getsubopt (Makefile.am): Likewise.
8325         * modules/gettime (Makefile.am): Likewise.
8326         * modules/gettimeofday (Makefile.am): Likewise.
8327         * modules/getugroups (Makefile.am): Likewise.
8328         * modules/getusershell (Makefile.am): Likewise.
8329         * modules/glob (Makefile.am): Likewise.
8330         * modules/group-member (Makefile.am): Likewise.
8331         * modules/hard-locale (Makefile.am): Likewise.
8332         * modules/hash (Makefile.am): Likewise.
8333         * modules/hmac-md5 (Makefile.am): Likewise.
8334         * modules/hmac-sha1 (Makefile.am): Likewise.
8335         * modules/human (Makefile.am): Likewise.
8336         * modules/idcache (Makefile.am): Likewise.
8337         * modules/imaxabs (Makefile.am): Likewise.
8338         * modules/imaxdiv (Makefile.am): Likewise.
8339         * modules/inet_ntop (Makefile.am): Likewise.
8340         * modules/inet_pton (Makefile.am): Likewise.
8341         * modules/inttostr (Makefile.am): Likewise.
8342         * modules/isapipe (Makefile.am): Likewise.
8343         * modules/lchown (Makefile.am): Likewise.
8344         * modules/long-options (Makefile.am): Likewise.
8345         * modules/lstat (Makefile.am): Likewise.
8346         * modules/malloc (Makefile.am): Likewise.
8347         * modules/mathl (Makefile.am): Likewise.
8348         * modules/mbchar (Makefile.am): Likewise.
8349         * modules/md2 (Makefile.am): Likewise.
8350         * modules/md4 (Makefile.am): Likewise.
8351         * modules/md5 (Makefile.am): Likewise.
8352         * modules/memcasecmp (Makefile.am): Likewise.
8353         * modules/memchr (Makefile.am): Likewise.
8354         * modules/memcmp (Makefile.am): Likewise.
8355         * modules/memcoll (Makefile.am): Likewise.
8356         * modules/memcpy (Makefile.am): Likewise.
8357         * modules/memmem (Makefile.am): Likewise.
8358         * modules/memmove (Makefile.am): Likewise.
8359         * modules/mempcpy (Makefile.am): Likewise.
8360         * modules/memrchr (Makefile.am): Likewise.
8361         * modules/memset (Makefile.am): Likewise.
8362         * modules/memxor (Makefile.am): Likewise.
8363         * modules/mkancesdirs (Makefile.am): Likewise.
8364         * modules/mkdir (Makefile.am): Likewise.
8365         * modules/mkdir-p (Makefile.am): Likewise.
8366         * modules/mkdtemp (Makefile.am): Likewise.
8367         * modules/mkstemp (Makefile.am): Likewise.
8368         * modules/mktime (Makefile.am): Likewise.
8369         * modules/modechange (Makefile.am): Likewise.
8370         * modules/mountlist (Makefile.am): Likewise.
8371         * modules/nanosleep (Makefile.am): Likewise.
8372         * modules/openat (Makefile.am): Likewise.
8373         * modules/pagealign_alloc (Makefile.am): Likewise.
8374         * modules/physmem (Makefile.am): Likewise.
8375         * modules/poll (Makefile.am): Likewise.
8376         * modules/posixtm (Makefile.am): Likewise.
8377         * modules/posixver (Makefile.am): Likewise.
8378         * modules/putenv (Makefile.am): Likewise.
8379         * modules/quote (Makefile.am): Likewise.
8380         * modules/quotearg (Makefile.am): Likewise.
8381         * modules/raise (Makefile.am): Likewise.
8382         * modules/read-file (Makefile.am): Likewise.
8383         * modules/readline (Makefile.am): Likewise.
8384         * modules/readlink (Makefile.am): Likewise.
8385         * modules/readtokens (Makefile.am): Likewise.
8386         * modules/readutmp (Makefile.am): Likewise.
8387         * modules/realloc (Makefile.am): Likewise.
8388         * modules/regex (Makefile.am): Likewise.
8389         * modules/rename (Makefile.am): Likewise.
8390         * modules/rename-dest-slash (Makefile.am): Likewise.
8391         * modules/rijndael (Makefile.am): Likewise.
8392         * modules/rmdir (Makefile.am): Likewise.
8393         * modules/rpmatch (Makefile.am): Likewise.
8394         * modules/safe-read (Makefile.am): Likewise.
8395         * modules/safe-write (Makefile.am): Likewise.
8396         * modules/same (Makefile.am): Likewise.
8397         * modules/save-cwd (Makefile.am): Likewise.
8398         * modules/savedir (Makefile.am): Likewise.
8399         * modules/setenv (Makefile.am): Likewise.
8400         * modules/settime (Makefile.am): Likewise.
8401         * modules/sha1 (Makefile.am): Likewise.
8402         * modules/sig2str (Makefile.am): Likewise.
8403         * modules/snprintf (Makefile.am): Likewise.
8404         * modules/stdlib-safer (Makefile.am): Likewise.
8405         * modules/stpcpy (Makefile.am): Likewise.
8406         * modules/stpncpy (Makefile.am): Likewise.
8407         * modules/strcase (Makefile.am): Likewise.
8408         * modules/strcasestr (Makefile.am): Likewise.
8409         * modules/strchrnul (Makefile.am): Likewise.
8410         * modules/strcspn (Makefile.am): Likewise.
8411         * modules/strdup (Makefile.am): Likewise.
8412         * modules/strerror (Makefile.am): Likewise.
8413         * modules/strftime (Makefile.am): Likewise.
8414         * modules/strndup (Makefile.am): Likewise.
8415         * modules/strnlen (Makefile.am): Likewise.
8416         * modules/strpbrk (Makefile.am): Likewise.
8417         * modules/strsep (Makefile.am): Likewise.
8418         * modules/strstr (Makefile.am): Likewise.
8419         * modules/strtod (Makefile.am): Likewise.
8420         * modules/strtoimax (Makefile.am): Likewise.
8421         * modules/strtok_r (Makefile.am): Likewise.
8422         * modules/strtol (Makefile.am): Likewise.
8423         * modules/strtoll (Makefile.am): Likewise.
8424         * modules/strtoul (Makefile.am): Likewise.
8425         * modules/strtoull (Makefile.am): Likewise.
8426         * modules/strtoumax (Makefile.am): Likewise.
8427         * modules/strverscmp (Makefile.am): Likewise.
8428         * modules/time_r (Makefile.am): Likewise.
8429         * modules/timegm (Makefile.am): Likewise.
8430         * modules/tmpfile-safer (Makefile.am): Likewise.
8431         * modules/unistd-safer (Makefile.am): Likewise.
8432         * modules/unlinkdir (Makefile.am): Likewise.
8433         * modules/userspec (Makefile.am): Likewise.
8434         * modules/utime (Makefile.am): Likewise.
8435         * modules/utimecmp (Makefile.am): Likewise.
8436         * modules/utimens (Makefile.am): Likewise.
8437         * modules/vasnprintf (Makefile.am): Likewise.
8438         * modules/vasprintf (Makefile.am): Likewise.
8439         * modules/vsnprintf (Makefile.am): Likewise.
8440         * modules/xalloc (Makefile.am): Likewise.
8441         * modules/xgetcwd (Makefile.am): Likewise.
8442         * modules/xnanosleep (Makefile.am): Likewise.
8443         * modules/xreadlink (Makefile.am): Likewise.
8444         * modules/xstrtod (Makefile.am): Likewise.
8445         * modules/xstrtol (Makefile.am): Likewise.
8446         * modules/xstrtold (Makefile.am): Likewise.
8447         * modules/yesno (Makefile.am): Likewise.
8448
8449 2006-10-12  Jim Meyering  <jim@meyering.net>
8450
8451         * m4/getloadavg.m4: Revert the change below.
8452
8453         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
8454         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
8455         fail with a symlink, which is what coreutils' ./bootstrap now
8456         creates by default.
8457
8458 2006-10-12  Bruno Haible  <bruno@clisp.org>
8459
8460         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
8461         mingw.
8462         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
8463         MSVC and mingw explicitly.
8464
8465 2006-10-11  Simon Josefsson  <jas@extundo.com>
8466             Bruno Haible  <bruno@clisp.org>
8467
8468         Add support for multiple gnulib-tool invocations in the scope of a
8469         single configure.ac file.
8470         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
8471         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
8472         with the same contents as the _LIBADD variable.
8473         (func_emit_initmacro_start, func_emit_initmacro_end,
8474         func_emit_initmacro_done): New functions.
8475         (func_import, func_create_testdir): Invoke them. Allow the identifiers
8476         gl_LIBOBJS and gl_LTLIBOBJS.
8477
8478 2006-10-11  Bruno Haible  <bruno@clisp.org>
8479
8480         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
8481         (func_create_testdir): Don't create po/Makefile.am, don't invoke
8482         autoreconf. Instead, invoke autopoint explicitly but move back the
8483         *.m4 files from gnulib.
8484
8485 2006-10-11  Bruno Haible  <bruno@clisp.org>
8486
8487         * gnulib-tool (func_usage): Make module names after --create-testdir
8488         optional.
8489         (func_create_testdir): If no module was specified, use nearly all
8490         modules.
8491
8492 2006-10-12  Jim Meyering  <jim@meyering.net>
8493
8494         Big performance improvement for fts-based tools that use FTS_NOSTAT.
8495         Avoid spurious inode-mismatch problems on non-POSIX file systems.
8496         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
8497         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
8498         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
8499         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
8500         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
8501         (fts_set_stat_required): New function.
8502         (fts_open): Defer the calls to fts_stat, if possible or requested.
8503         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
8504         into fts_stat itself.
8505         (fts_read): Perform any required (deferred) fts_stat call.
8506         (fts_build): Likewise, for the directory we're about to open and read.
8507         In the readdir loop, carefully decide whether each entry will require
8508         an eventual call to fts_stat, using dirent.d_type info if available.
8509         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
8510         a command line argument into this function.  Update all callers.
8511         Map a return value of FTS_DOT to FTS_D for a command line argument.
8512         * modules/fts (Depends-on): Add d-type.  Alphabetize.
8513         Thanks to Miklos Szeredi for his tenacity and for the initial
8514         bug report about "find" failing on a FUSE-based file system.
8515
8516         * lib/fts.c (fts_open): Use consistent indentation.
8517
8518 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8519
8520         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
8521         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
8522         reported by Jim Meyering.  All uses of cache variables renamed
8523         to match Autoconf's.
8524         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
8525         the other one.
8526
8527         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
8528         Fix misspelling in diagnostic.
8529
8530 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8531
8532         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
8533         defined.  Problem reported by Matthew Woehlke.
8534
8535         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
8536         Add support for Tandem NonStop R series.
8537         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
8538         Use new macro.
8539
8540         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
8541         (has_trailing_slash): Omit size arg; all callers changed.
8542         Omit 'inline', since it doesn't help performance and we'd
8543         need to configure it.
8544         Don't count //, ///, etc. as having a trailing slash.
8545         As a side effect, this removes a C99ism reported by Matthew Woehlke.
8546         (rpl_rename_dest_slash): On failure, use rename's errno rather
8547         than (in some cases) an incorrect or junk errno.
8548         Simplify code by removing need to compute length; this does
8549         cause it to make two passes instead of one over the file name,
8550         but it's worth it.
8551
8552         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
8553         change, since Autoconf's version may no longer be appropriate now
8554         that we are using CVS Autoconf's version.  Add support for Tandem.
8555
8556 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8557             Bruno Haible  <bruno@clisp.org>
8558
8559         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
8560         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
8561         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
8562         gl_AC_TYPE_LONG_LONG.
8563
8564         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
8565         instead of HAVE_LONG_LONG.
8566         * lib/printf-args.c (printf_fetchargs): Likewise.
8567         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
8568         * lib/vasnprintf.c (VASNPRINTF): Likewise.
8569         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
8570         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
8571         gl_AC_TYPE_LONG_LONG.
8572
8573 2006-10-11  Bruno Haible  <bruno@clisp.org>
8574
8575         * m4/longlong.m4: Add comments.
8576         * m4/ulonglong.m4: Likewise.
8577
8578 2006-10-10  Bruno Haible  <bruno@clisp.org>
8579
8580         Make it possible to #define stpcpy, strdup to aliases.
8581         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
8582         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
8583
8584 2006-10-10  Bruno Haible  <bruno@clisp.org>
8585
8586         Make it possible to #define gcd to an alias.
8587         * lib/gcd.c: Include config.h.
8588
8589 2006-10-10  Bruno Haible  <bruno@clisp.org>
8590
8591         Make it possible to #define c_isascii to an alias.
8592         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
8593         defined. Undefine the macros before defining them, to avoid gcc
8594         warnings.
8595         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
8596         define NO_C_CTYPE_MACROS early.
8597
8598 2006-10-10  Bruno Haible  <bruno@clisp.org>
8599
8600         Make it possible to #define set_program_name to an alias.
8601         * lib/progname.c: Don't undefine set_program_name; instead, undefine
8602         ENABLE_RELOCATABLE early.
8603
8604 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8605
8606         Port to Tandem NSK OSS, which has 64-bit signed int but at most
8607         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
8608         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
8609         More generally, don't assume that 64-bit signed int is available
8610         if unsigned int is, and vice versa.
8611         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
8612         unsigned symbols, not on their signed counterparts.
8613         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
8614         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
8615         (UINT64_C, UINTMAX_C):
8616         Likewise.
8617         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
8618         unsigned counterparts.
8619         (Have_long_long, Unsigned): New macros.
8620         (Int): Renamed from INT.
8621         (strtoimax): Use the new macros.
8622         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
8623         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
8624         * modules/inttypes (inttypes.h): Substitute
8625         HAVE_UNSIGNED_LONG_LONG_INT.
8626         * modules/stdint (stdint.h): Likewise.
8627         (Files): Add m4/ulonglong.m4.
8628
8629 2006-10-10  Bruno Haible  <bruno@clisp.org>
8630
8631         Fix a gcc -Wshadow warning.
8632         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
8633         to 'bucket'.
8634         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
8635         gl_linked_indexof_from_to): Likewise.
8636         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
8637         Likewise.
8638         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
8639         Likewise.
8640         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
8641         Reported by Eric Blake.
8642
8643 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
8644
8645         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
8646         for NetBSD.  Problem reported by Bruno Haible.
8647
8648 2006-10-09  Jim Meyering  <jim@meyering.net>
8649
8650         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
8651         Patch from Bruno Haible.
8652
8653 2006-10-09  Jim Meyering  <jim@meyering.net>
8654
8655         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
8656         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
8657         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
8658
8659 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
8660
8661         Don't include <config.h> twice; this doesn't work in some cases,
8662         e.g., when config.h has "#define intmax_t long long int" and
8663         we include <config.h>, <inttypes.h>, <config.h> in that order.
8664         Problem reported by Matthew Woehlke in:
8665         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
8666         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
8667         * lib/fts-cycle.c: Don't include config.h.
8668         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
8669         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
8670         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
8671         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
8672         inttypes.h.
8673         * lib/xstrtoumax.c: Likewise.
8674         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
8675         __strtol and the like, so that this module is more like its siblings.
8676         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
8677         Remove; no longer needed now that we assume gnulib inttypes.h.
8678
8679 2006-10-08  Bruno Haible  <bruno@clisp.org>
8680
8681         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
8682         option.
8683
8684 2006-10-07  Jim Meyering  <jim@meyering.net>
8685
8686         * modules/inttypes (inttypes.h): Revert what seems to have been
8687         an inadvertent part of today's change: use "|", not "/" in the
8688         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
8689
8690 2006-10-07  Bruno Haible  <bruno@clisp.org>
8691
8692         * modules/sublist: New file.
8693
8694 2006-10-07  Bruno Haible  <bruno@clisp.org>
8695
8696         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
8697         * modules/argz (argz.h): Likewise.
8698         * modules/arpa_inet (arpa/inet.h): Likewise.
8699         * modules/byteswap (byteswap.h): Likewise.
8700         * modules/configmake (configmake.h): Likewise.
8701         * modules/fcntl (fcntl.h): Likewise.
8702         * modules/fnmatch (fnmatch.h): Likewise.
8703         * modules/getopt (getopt.h): Likewise.
8704         * modules/glob (glob.h): Likewise.
8705         * modules/inttypes (inttypes.h): Likewise.
8706         * modules/netinet_in (netinet/in.h): Likewise.
8707         * modules/poll (poll.h): Likewise.
8708         * modules/stdbool (stdbool.h): Likewise.
8709         * modules/stdint (stdint.h): Likewise.
8710         * modules/sys_select (sys/select.h): Likewise.
8711         * modules/sys_socket (sys/socket.h): Likewise.
8712         * modules/sys_stat (sys/stat.h): Likewise.
8713         * modules/sysexits (sysexits.h): Likewise.
8714         * modules/unistd (unistd.h): Likewise.
8715         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8716         Add a "DO NOT EDIT" comment to the generated file.
8717         (func_import): Likewise for gnulib-comp.m4.
8718
8719 2006-10-07  Bruno Haible  <bruno@clisp.org>
8720
8721         * lib/gl_sublist.h: New file.
8722         * lib/gl_sublist.c: New file.
8723
8724 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8725
8726         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
8727         name (relative to the original working directory) and the file
8728         name component (relative to the temporary working directory).  All
8729         callers changed.
8730         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
8731         * lib/mkdir-p.c (make_dir_parents): Likewise.
8732         * lib/mkdir-p.h (make_dir_parents): Likewise.
8733
8734 2006-10-06  Eric Blake  <ebb9@byu.net>
8735
8736         Define several macros for use by the clean-temp module.
8737         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
8738         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
8739         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
8740
8741         * lib/clean-temp.h (close_stream_temp): New declaration.
8742         * lib/clean-temp.c (includes): Pull in headers according to what
8743         other modules are in use.
8744         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
8745
8746 2006-10-06  Bruno Haible  <bruno@clisp.org>
8747
8748         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
8749         instead of fopen, fwriteerror.
8750
8751 2006-10-06  Bruno Haible  <bruno@clisp.org>
8752
8753         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
8754         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
8755         int.
8756         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
8757         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
8758         Return an error indicator.
8759         Suggested by Eric Blake.
8760
8761 2006-10-06  Bruno Haible  <bruno@clisp.org>
8762
8763         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
8764         Reported by Eric Blake.
8765
8766 2006-10-06  Bruno Haible  <bruno@clisp.org>
8767
8768         * modules/closeout (Description): Mention stderr too.
8769
8770 2006-10-06  Bruno Haible  <bruno@clisp.org>
8771         and Paul Eggert  <eggert@cs.ucla.edu>
8772
8773         * lib/closeout.c (close_stdout): Also close stderr.
8774         * lib/closeout.h: Update comment.
8775
8776 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8777
8778         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
8779         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
8780         * lib/dirchownmod.c: Include lchown.h.
8781         * lib/lchown.c: Don't include files that lchown.h now includes.
8782         Don't declare chown, since lchown.h now does that.
8783         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
8784         (lchown): Define to rpl_chown if lchown is declared but
8785         does not exist.  Declare using a prototype if lchown is not
8786         declared.  Add a copyright notice.
8787         * lib/mkstemp.h: Include <unistd.h>.
8788         * lib/openat.c: Include lchown.h.
8789
8790         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
8791         we now test for that separately.
8792         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
8793         rather than O_NOFOLLOW, when testing whether it's possible to
8794         avoid a race condition reliably.
8795         * lib/savewd.c (savewd_chdir): Likewise.
8796
8797         Remove macros that are no longer needed now that stdint.h is
8798         reliable.
8799         * lib/fsusage.c (UINTMAX_MAX): Remove.
8800         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
8801         * lib/utimecmp.c (SIZE_MAX): Remove.
8802
8803         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
8804
8805         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
8806         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
8807         O_NOATIME works.
8808
8809 2006-10-05  Bruno Haible  <bruno@clisp.org>
8810
8811         * lib/gl_list.h (gl_sortedlist_search_from_to,
8812         gl_sortedlist_indexof_from_to): New declarations.
8813         (gl_list_implementation): New fields sortedlist_search_from_to,
8814         sortedlist_indexof_from_to.
8815         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
8816         inline functions.
8817         * lib/gl_list.c (gl_sortedlist_search_from_to,
8818         gl_sortedlist_indexof_from_to): New functions.
8819         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
8820         function.
8821         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
8822         (gl_array_sortedlist_search_from_to): New function.
8823         (gl_array_list_implementation): Update.
8824         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
8825         function.
8826         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
8827         (gl_carray_sortedlist_search_from_to): New function.
8828         (gl_carray_list_implementation): Update.
8829         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
8830         gl_linked_sortedlist_indexof_from_to): New functions.
8831         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8832         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8833         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
8834         gl_tree_sortedlist_indexof_from_to): New functions.
8835         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8836         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8837         Update.
8838         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8839         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
8840         Update.
8841
8842 2006-10-05  Bruno Haible  <bruno@clisp.org>
8843
8844         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
8845         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
8846         (struct gl_list_implementation): Add fields search_from_to,
8847         indexof_from_to. Remove fields search, indexof.
8848         (gl_list_search): Use the search_from_to method.
8849         (gl_list_search_from, gl_list_search_from_to): New functions.
8850         (gl_list_indexof): Use the indexof_from_to method.
8851         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8852         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
8853         (gl_list_search_from, gl_list_search_from_to): New functions.
8854         (gl_list_indexof): Use the indexof_from_to method.
8855         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8856         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
8857         gl_array_indexof. Add start_index, end_index arguments.
8858         (gl_array_search_from_to): Renamed from gl_array_search. Add
8859         start_index, end_index arguments.
8860         (gl_array_remove, gl_array_list_implementation): Update.
8861         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
8862         gl_carray_indexof. Add start_index, end_index arguments.
8863         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
8864         start_index, end_index arguments.
8865         (gl_carray_remove, gl_carray_list_implementation): Update.
8866         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
8867         gl_linked_search. Add start_index, end_index arguments.
8868         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
8869         start_index, end_index arguments.
8870         (gl_linked_remove): Update.
8871         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8872         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8873         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
8874         field to 'size_t'.
8875         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
8876         gl_tree_search. Add start_index, end_index arguments.
8877         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8878         start_index, end_index arguments.
8879         (gl_tree_remove): Update.
8880         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8881         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8882         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
8883         function.
8884         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
8885         gl_tree_search. Add start_index, end_index arguments.
8886         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8887         start_index, end_index arguments.
8888         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8889         Update.
8890         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
8891
8892 2006-10-05  Bruno Haible  <bruno@clisp.org>
8893
8894         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
8895
8896         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
8897         fwriteerror_temp): New declarations.
8898         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
8899         (descriptors): New variable.
8900         (cleanup): First, close the descriptors.
8901         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
8902         fclose_temp, fwriteerror_temp): New functions.
8903
8904 2006-10-04  Jim Meyering  <jim@meyering.net>
8905
8906         * lib/fts.c (fts_open): Tiny comment change.
8907
8908 2006-10-04  Bruno Haible  <bruno@clisp.org>
8909
8910         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
8911         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
8912         gl_LOCK_BODY.
8913         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
8914         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
8915         gl_LOCK_EARLY_BODY.
8916         (gl_LOCK): Require gl_LOCK_BODY.
8917
8918 2006-10-04  Bruno Haible  <bruno@clisp.org>
8919
8920         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
8921         (gl_oset_search_atleast): New declaration.
8922         (struct gl_oset_implementation): Add field 'search_atleast'.
8923         (gl_oset_search_atleast): New inline function.
8924         * lib/gl_oset.c (gl_oset_search_atleast): New function.
8925         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
8926         (gl_array_oset_implementation): Update.
8927         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
8928         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
8929         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
8930
8931 2006-10-04  Bruno Haible  <bruno@clisp.org>
8932
8933         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
8934
8935 2006-10-03  Bruno Haible  <bruno@clisp.org>
8936
8937         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
8938         from gl_avltreehash_list_implementation.
8939
8940 2006-10-03  Bruno Haible  <bruno@clisp.org>
8941
8942         * lib/gl_oset.c (gl_oset_add): Fix return type.
8943
8944 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
8945
8946         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
8947
8948 2006-10-02  Eric Blake  <ebb9@byu.net>
8949
8950         * modules/strnlen (Depends-on): Add extensions.
8951
8952 2006-10-02  Eric Blake  <ebb9@byu.net>
8953
8954         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
8955         definition in 2.60+.
8956
8957 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
8958
8959         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
8960         checks.
8961
8962 2006-10-02  Bruno Haible  <bruno@clisp.org>
8963
8964         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
8965         to the AUTOMAKE_OPTIONS.
8966         Reported by Jim Meyering.
8967
8968 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8969
8970         Work around bug in Solaris 10 /proc file system:
8971         /proc/self/fd/NNN/.. isn't the parent directory of
8972         the directory whose file descriptor is NNN.  This needs to
8973         be worked around at run time, not compile time, since a
8974         program might be built on Solaris 8, where things work, and
8975         run on Solaris 10.
8976         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
8977         to use the following interface instead:
8978         (OPENAT_BUFFER_SIZE): New macro.
8979         (openat_proc_name): New function.
8980         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
8981         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
8982         Likewise.
8983         * lib/openat-proc.c: New file.
8984         * modules/openat (Files): Add lib/openat-proc.c.
8985         (Depends-on): Add same-inode, stdbool.
8986         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
8987
8988 2006-09-29  Bruno Haible  <bruno@clisp.org>
8989
8990         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
8991         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
8992         argument. Set stdout_closed before testing for ferror, not after.
8993         (fwriteerror, fwriteerror_no_ebadf): New functions.
8994
8995 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8996
8997         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
8998
8999 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
9000
9001         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
9002         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
9003
9004 2006-09-28  Jim Meyering  <jim@meyering.net>
9005
9006         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
9007         Include <unistd.h>.
9008
9009 2006-09-28  Bruno Haible  <bruno@clisp.org>
9010
9011         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
9012         * modules/linkedhash-list (Depends-on): Likewise.
9013         * modules/rbtreehash-list (Depends-on): Likewise.
9014
9015 2006-09-28  Bruno Haible  <bruno@clisp.org>
9016
9017         * lib/strndup.h: Simplify the redefinition of strndup.
9018         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
9019         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
9020
9021 2006-09-28  Bruno Haible  <bruno@clisp.org>
9022
9023         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
9024         * lib/gl_linkedhash_list.c: Likewise.
9025         * lib/gl_rbtreehash_list.c: Likewise.
9026
9027 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9028
9029         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
9030         getaddrinfo.
9031
9032         * lib/__fpending.h: Don't include <stdio_ext.h> unless
9033         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
9034         it causes <stdio_ext.h> to cause a compile-time error.
9035         Problem reported by Nelson H. F. Beebe.
9036         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
9037         of HAVE_DECL___PENDING.
9038
9039         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
9040         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
9041         declaration.
9042
9043 2006-09-27  Jim Meyering  <jim@meyering.net>
9044
9045         This file could end up with a definition for a function
9046         named __strndup, rather than rpl_strndup on a system with
9047         incomplete weak_alias support.
9048         * lib/strndup.c (strndup): Rename from __strndup.
9049         Remove #defines that used to map __strndup to strndup.
9050         Don't use K&R prototypes.
9051         Remove LIBC-related code, since this file is not sync'd with glibc.
9052         * lib/strndup.h: Revamp, accordingly.
9053         * m4/strndup.m4: Modernize.
9054
9055 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9056
9057         * modules/savewd (Depends-on): Add 'raise'.
9058         * lib/savewd.c: Include <signal.h>, for 'raise'.
9059
9060 2006-09-26  Jim Meyering  <jim@meyering.net>
9061
9062         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
9063         when we detect Darwin 8.7.0's acl_get_file bug.
9064         Rearrange to perform the new (below) run-test while $LIBS
9065         contains any acl-related library.  Set USE_ACL at the end.
9066         (gl_ACL_GET_FILE): New function.
9067
9068 2006-09-26  Eric Blake  <ebb9@byu.net>
9069
9070         * lib/verror.c: Include <config.h> unconditionally.
9071
9072 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
9073
9074         * modules/clock-time (Maintainer): Add self.
9075         * modules/getlogin_r (Depends-on): Add extensions.
9076
9077 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9078
9079         * modules/clock-time: New module.
9080         * modules/nanosleep (Depends-on): Add clock-time.
9081         * modules/gethrxtime (Depends-on): Likewise.
9082         * modules/gettime (Depends-on): Likewise.
9083         * modules/settime (Depends-on): Likewise.
9084
9085         * modules/fts-lgpl: Depend on openat.
9086         * modules/mkancesdirs: Depend on savewd.
9087         * modules/mkdir-p: Likewise.
9088
9089 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9090
9091         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
9092
9093         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
9094         `gl_have_arbitrary_file_name_length_limit' to
9095         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
9096         actually works between configure runs.
9097
9098 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9099             Bruno Haible  <bruno@clisp.org>
9100
9101         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
9102
9103 2006-09-25  Jim Meyering  <jim@meyering.net>
9104
9105         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
9106         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
9107
9108 2006-09-25  Eric Blake  <ebb9@byu.net>
9109
9110         * gnulib-tool (func_import, func_create_testdir): Fix typos in
9111         exec's in 2006-09-18 patch when shuffling fds.
9112
9113 2006-09-25  Bruno Haible  <bruno@clisp.org>
9114
9115         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
9116         Reported by Jim Meyering.
9117
9118 2006-09-24  Jim Meyering  <jim@meyering.net>
9119
9120         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
9121         compare a pointer against a literal "0".  That caused failures with
9122         at least HP-UX's hpcc.
9123
9124 2006-09-22  Simon Josefsson  <jas@extundo.com>
9125
9126         * modules/gc-sha1:
9127         * modules/gc-md4:
9128         * modules/gc-hmac-sha1:
9129         * modules/gc-hmac-md5:
9130         * modules/gc-des:
9131         * modules/gc-arcfour: Distribute more files.
9132
9133 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9134
9135         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
9136         (gl_linked_iterator_from_to): Initialize struct completely.
9137         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
9138         (gl_tree_iterator_from_to): Likewise
9139         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
9140         * lib/gl_array_list.c [lint] (gl_array_iterator)
9141         (gl_array_iterator_from_to): Likewise.
9142         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
9143         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
9144         (gl_carray_iterator_from_to): Likewise.
9145
9146         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
9147         * lib/md4.c (md4_process_block): Remove unused variable.
9148         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
9149         parentheses for clarity.
9150
9151 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9152
9153         * modules/bison-i18n (Depends-on): Add gettext.
9154
9155 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9156
9157         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
9158         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
9159         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
9160         also add missing comma that caused broken test.
9161         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
9162         stdlib.h, for `abort'.
9163         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
9164         variables.
9165         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
9166         include unistd.h if present, for `rmdir'.
9167         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
9168         variables.
9169         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
9170         in the process include standard headers for prototypes.
9171         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
9172         gets declared on GNU/Linux.
9173         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
9174         unistd.h, for `rmdir'.
9175         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
9176
9177         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
9178         always true.
9179         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
9180
9181         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
9182
9183 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9184
9185         * gnulib-tool (func_version): Create output all at once.  This
9186         may help avoid triggering unnecessary SIGPIPEs, and at any
9187         rate it doesn't hurt.
9188
9189 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9190             Bruno Haible  <bruno@clisp.org>
9191
9192         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
9193         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
9194         * m4/signed.m4 (bh_C_SIGNED): Likewise.
9195
9196         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
9197         (gl_FUNC_VASPRINTF): Invoke it.
9198
9199 2006-09-22  Bruno Haible  <bruno@clisp.org>
9200
9201         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
9202         getloadavg.c as first argument.
9203
9204 2006-09-22  Bruno Haible  <bruno@clisp.org>
9205
9206         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
9207         at the beginning of the gl_INIT macro.
9208         * modules/getloadavg (configure.ac): Pass $gl_source_base to
9209         gl_GETLOADAVG.
9210
9211 2006-09-22  Bruno Haible  <bruno@clisp.org>
9212
9213         * gnulib-tool (func_create_megatestdir): Don't include the config-h
9214         module.
9215         Suggested by Ralf Wildenhues.
9216
9217 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
9218
9219         Import this patch from libc:
9220
9221         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
9222
9223         * lib/regex_internal.c (re_string_reconstruct): Handle
9224         offset < pstr->valid_raw_len && pstr->offsets_needed case.
9225         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
9226         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
9227         re_string_context_at.
9228
9229         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
9230         now requires it.
9231         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
9232         gl_REGEX now does it for us.
9233         (gl_REGEX): Add test taken from
9234         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
9235
9236         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
9237         Check that large offsets work.  Modernize Autoconf usages.
9238         Prefer "yes" to mean a good thing rather than a bad.
9239         Don't put "#define mkstemp" in config.h, as this might interfere
9240         with standard system headers that "#define mkstemp mkstemp64".
9241
9242         * modules/mkstemp (Depends-on): Add extensions, so that
9243         mkstemp is visible on some platforms.
9244         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
9245         (Include): Change to "mkstemp.h" from <stdlib.h>.
9246         (Files): Add mkstemp.h.
9247
9248         * lib/mkstemp.h: New file, since some standard headers
9249         #define mkstemp.
9250         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
9251         Include "mkstemp.h".
9252         Make the _LIBC code resemble glibc original more,
9253         e.g., use K&R style.
9254         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
9255         (mkstemp): Remove, since mkstemp.h does this for us.
9256         * lib/stdlib--.h: Include mkstemp.h.
9257
9258         Import this patch from libc:
9259
9260         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
9261
9262         * lib/tempname.c (__gen_tempname): Change attempts_min
9263         into a macro.  Use preprocessor to decide how to initialize
9264         attempts [Coverity CID 67].
9265
9266 2006-09-20  Bruno Haible  <bruno@clisp.org>
9267
9268         * lib/mkdtemp.c: Import from libc.
9269         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
9270                 * sysdeps/posix/tempname.c (__gen_tempname): Change
9271                 attempts_min into a macro.  Use preprocessor to decide how to
9272                 initialize attempts [Coverity CID 67].
9273         2001-11-27  Paul Eggert  <eggert@twinsun.com>
9274                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
9275                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
9276
9277 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9278
9279         * gnulib-tool (func_exit): New function, to allow to pass the
9280         exit status portably through the trap.  Use everywhere.
9281         (--help, --version): Signal a write error.
9282         (trap): catch SIGPIPE, for write errors.
9283         Exit at the end of the trap, with the correct exit status.
9284
9285 2006-09-19  Karl Berry  <karl@gnu.org>
9286
9287         * doc/gnulib.texi: note about the license texinfo files.
9288
9289 2006-09-19  Eric Blake  <ebb9@byu.net>
9290
9291         * gnulib-tool: Avoid space-tab.
9292
9293 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
9294
9295         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
9296         that prevented coreutils 6.1 from building.  Problem reported
9297         by Petter Reinholdtsen.
9298
9299 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
9300
9301         * gnulib-tool (avoidlist): Fix typo that broke options like
9302         --avoid=lock that are used by coreutils bootstrap.
9303
9304 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
9305
9306         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
9307         more systematically.
9308
9309 2006-09-18  Jim Meyering  <jim@meyering.net>
9310
9311         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
9312
9313 2006-09-18  Bruno Haible  <bruno@clisp.org>
9314
9315         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
9316
9317 2006-09-18  Bruno Haible  <bruno@clisp.org>
9318
9319         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
9320         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
9321         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
9322         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
9323         * m4/gettext.m4: Require autoconf >= 2.52.
9324         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
9325         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
9326         of gl_cv_header_inttypes_h.
9327
9328 2006-09-18  Bruno Haible  <bruno@clisp.org>
9329
9330         * lib/javaversion.c: Include configmake.h.
9331
9332 2006-09-18  Bruno Haible  <bruno@clisp.org>
9333
9334         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
9335         avoid that the while loops be executed in a subshell.
9336
9337 2006-09-18  Bruno Haible  <bruno@clisp.org>
9338
9339         * MODULES.html.sh (func_module): Break long lines.
9340         Suggested by Bruce Korb <bkorb@gnu.org>.
9341
9342 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9343
9344         Speed up by a factor of 1.12.
9345         * gnulib-tool (nl): New variable.
9346         (func_import): Rewrite include directive extraction to only read each
9347         directive once.
9348
9349 2006-09-17  Bruno Haible  <bruno@clisp.org>
9350
9351         * modules/javaversion (Makefile.am): Remove DEFS setting.
9352         (Depends-on): Add configmake, for PKGDATADIR definition.
9353
9354 2006-09-17  Bruno Haible  <bruno@clisp.org>
9355
9356         * gnulib-tool (func_create_testdir): Rewrite all files at once.
9357
9358 2006-09-17  Bruno Haible  <bruno@clisp.org>
9359
9360         * gnulib-tool (func_append): New function, stolen from libtool.m4.
9361         (func_modules_transitive_closure, func_modules_add_dummy,
9362         func_modules_to_filelist, func_import, func_create_testdir,
9363         func_create_megatestdir, ...): Use it wherever possible.
9364         Suggested by Ralf Wildenhues.
9365
9366 2006-09-16  Karl Berry  <karl@gnu.org>
9367
9368         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
9369         to avoid sectioning errors.
9370         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
9371         [ifinfo]: blank line after @center-ed titles.
9372         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
9373         Spell FSF address consistently with others.
9374         (These changes approved by rms.)
9375
9376 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9377
9378         Speed up by a factor of 1.61.
9379         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
9380         already checked module names again.
9381
9382 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9383
9384         Speed up by a factor of 1.13.
9385         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
9386         for new_files, and the input to func_add_or_update.
9387
9388 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9389
9390         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
9391         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
9392
9393 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9394
9395         * modules/mkancesdirs (Depends-on): Add fcntl.
9396         * modules/savewd: New file.
9397         * MODULES.html.sh (File system functions): Add savewd.
9398
9399         * modules/configmake (Makefile.am): Add support for the
9400         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
9401
9402 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9403
9404         * m4/savewd.m4: New file.
9405
9406 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9407
9408         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
9409         (dirchownmod): New arg FD.  All callers changed.
9410         Use FD rather than opening the directory ourself, as opening is
9411         now the caller's responsibility.
9412         * lib/dirchownmod.h: Likewise.
9413         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
9414         hosts that require <sys/types.h> before <sys/stat.h>.  Include
9415         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
9416         (test_dir): Remove.
9417         (mkancesdirs): Return length of prefix of FILE that has already
9418         been made, or -2 if there is a child doing the work.  Redo
9419         algorithm so that it is O(N) rather than O(N**2).  Optimize away
9420         ".", and treat ".." specially since it might stray back into
9421         already-created areas.  Use a subprocess if necessary.  New arg
9422         WD; all users changed.  MAKE_DIR function should now return 1
9423         if it creates a directory that is not readable.  Return -2 if
9424         a child process is spun off.
9425         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
9426         Adjust signature to match code.
9427         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
9428         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
9429         all users changed.
9430         * lib/savewd.c, lib/savewd.h: New files.
9431
9432 2006-09-15  Jim Meyering  <jim@meyering.net>
9433
9434         * modules/rename-dest-slash: New module.
9435         * MODULES.html.sh (posix_compat): Add it here.
9436
9437         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
9438
9439 2006-09-15  Jim Meyering  <jim@meyering.net>
9440
9441         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
9442         file.
9443
9444         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
9445
9446 2006-09-15  Jim Meyering  <jim@meyering.net>
9447
9448         * lib/rename-dest-slash.c (has_trailing_slash): Use
9449         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
9450         (rpl_rename_dest_slash): Perform the cheaper trailing slash
9451         test before testing whether SRC is a directory.
9452         Suggestions from Bruno Haible.
9453
9454         Avoid a warning about an unused variable.
9455         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
9456         into the #ifdef block where it's used.
9457
9458         * lib/rename-dest-slash.c: New file.
9459
9460 2006-09-14  Bruno Haible  <bruno@clisp.org>
9461
9462         * lib/allocsa.c: Include <config.h> unconditionally.
9463         * lib/asnprintf.c: Likewise.
9464         * lib/asprintf.c: Likewise.
9465         * lib/c-strcasecmp.c: Likewise.
9466         * lib/c-strcasestr.c: Likewise.
9467         * lib/c-strncasecmp.c: Likewise.
9468         * lib/c-strstr.c: Likewise.
9469         * lib/classpath.c: Likewise.
9470         * lib/clean-temp.c: Likewise.
9471         * lib/concatpath.c: Likewise.
9472         * lib/copy-file.c: Likewise.
9473         * lib/csharpcomp.c: Likewise.
9474         * lib/csharpexec.c: Likewise.
9475         * lib/execute.c: Likewise.
9476         * lib/fatal-signal.c: Likewise.
9477         * lib/findprog.c: Likewise.
9478         * lib/fwriteerror.c: Likewise.
9479         * lib/gl_array_list.c: Likewise.
9480         * lib/gl_array_oset.c: Likewise.
9481         * lib/gl_avltree_list.c: Likewise.
9482         * lib/gl_avltree_oset.c: Likewise.
9483         * lib/gl_avltreehash_list.c: Likewise.
9484         * lib/gl_carray_list.c: Likewise.
9485         * lib/gl_linked_list.c: Likewise.
9486         * lib/gl_linkedhash_list.c: Likewise.
9487         * lib/gl_list.c: Likewise.
9488         * lib/gl_oset.c: Likewise.
9489         * lib/gl_rbtree_list.c: Likewise.
9490         * lib/gl_rbtree_oset.c: Likewise.
9491         * lib/gl_rbtreehash_list.c: Likewise.
9492         * lib/imaxabs.c: Likewise.
9493         * lib/imaxdiv.c: Likewise.
9494         * lib/javacomp.c: Likewise.
9495         * lib/javaexec.c: Likewise.
9496         * lib/javaversion.c: Likewise.
9497         * lib/linebreak.c: Likewise.
9498         * lib/localcharset.c: Likewise.
9499         * lib/lock.c: Likewise.
9500         * lib/mbchar.c: Likewise.
9501         * lib/mbswidth.c: Likewise.
9502         * lib/mkdtemp.c: Likewise.
9503         * lib/pipe.c: Likewise.
9504         * lib/printf-args.c: Likewise.
9505         * lib/printf-parse.c: Likewise.
9506         * lib/progname.c: Likewise.
9507         * lib/progreloc.c: Likewise.
9508         * lib/readlink.c: Likewise.
9509         * lib/sh-quote.c: Likewise.
9510         * lib/stpcpy.c: Likewise.
9511         * lib/stpncpy.c: Likewise.
9512         * lib/strcasecmp.c: Likewise.
9513         * lib/strcasestr.c: Likewise.
9514         * lib/strcspn.c: Likewise.
9515         * lib/striconv.c: Likewise.
9516         * lib/strncasecmp.c: Likewise.
9517         * lib/strnlen1.c: Likewise.
9518         * lib/strstr.c: Likewise.
9519         * lib/strtok_r.c: Likewise.
9520         * lib/tls.c: Likewise.
9521         * lib/tmpdir.c: Likewise.
9522         * lib/unicodeio.c: Likewise.
9523         * lib/unsetenv.c: Likewise.
9524         * lib/vasnprintf.c: Likewise.
9525         * lib/vasprintf.c: Likewise.
9526         * lib/wait-process.c: Likewise.
9527         * lib/xallocsa.c: Likewise.
9528         * lib/xsetenv.c: Likewise.
9529         * lib/xstriconv.c: Likewise.
9530
9531 2006-09-13  Simon Josefsson  <jas@extundo.com>
9532
9533         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
9534         that internally, suggested by Ralf Wildenhues
9535         <Ralf.Wildenhues@gmx.de>.
9536
9537 2006-09-13  Simon Josefsson  <jas@extundo.com>
9538
9539         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
9540         @LIBOBJS@.
9541         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9542
9543 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
9544
9545         * lib/_fpending.c: Include <config.h> unconditionally, since we no
9546         longer worry about uses that don't define HAVE_CONFIG_H.
9547         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
9548         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
9549         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
9550         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
9551         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
9552         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
9553         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
9554         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
9555         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
9556         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
9557         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
9558         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
9559         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
9560         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
9561         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
9562         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
9563         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
9564         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
9565         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
9566         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
9567         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
9568         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
9569         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
9570         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
9571         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
9572         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
9573         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
9574         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
9575         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
9576         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
9577         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
9578         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
9579         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
9580         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
9581         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
9582         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
9583         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
9584         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
9585         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
9586         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
9587         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
9588         Likewise.
9589
9590 2006-09-13  Eric Blake  <ebb9@byu.net>
9591
9592         * lib/getopt.c: Fix typo in last commit.
9593
9594 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9595
9596         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
9597         dgettext.
9598
9599 2006-09-12  Jim Meyering  <jim@meyering.net>
9600
9601         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
9602         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
9603         Reported by Nelson H. F. Beebe.
9604
9605 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9606
9607         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
9608         program_invocation_name and program_invocation_short_name are
9609         initialized.
9610         * lib/argp-namefrob.h: Move declarations of program_invocation_name
9611         and program_invocation_short_name to argp.h, so they are visible
9612         to user programs.
9613         * lib/argp.h: Likewise
9614
9615 2006-09-10  Bruno Haible  <bruno@clisp.org>
9616
9617         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
9618         m4/inttypes_h.m4, m4/uintmax_t.m4.
9619
9620 2006-09-10  Bruno Haible  <bruno@clisp.org>
9621
9622         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
9623         gl_AC_TYPE_UINTMAX_T.
9624
9625 2006-09-10  Bruno Haible  <bruno@clisp.org>
9626
9627         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
9628
9629 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9630
9631         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
9632         convention.  Text proposed by Bruno Haible.
9633         (struct argp_option): Document the use of N_() wrappers.
9634
9635         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
9636         '\v', and translate the two parts separately, instead of feeding
9637         the whole string to gettext.  This allows to exclude
9638         '\v' from the strings visible to the translator by writing doc
9639         strings as N_("..") "\v" N_("..").
9640
9641 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
9642
9643         * config/srclist.txt: Undo latest change; the bug was fixed.
9644
9645 2006-09-09  Bruno Haible  <bruno@clisp.org>
9646
9647         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
9648         assignments if building a library without libtool.
9649         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
9650         in func_emit_lib_Makefile_am.
9651         (func_import): When building a static library libfoo.a, arrange to
9652         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
9653         (func_create_testdir): Likewise.
9654         * modules/gc (configure.ac, Makefile.am): If building statically,
9655         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
9656         * modules/iconvme (configure.ac, Makefile.am): Likewise.
9657         * modules/striconv (configure.ac, Makefile.am): Likewise.
9658         Based on a suggestion by Ralf Wildenhues.
9659
9660 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9661
9662         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
9663         Check for unistd.h too, since Autoconf doesn't assume POSIX.
9664         Also:
9665
9666         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9667         Add year_2050_test to catch glibc bug 2821
9668         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9669
9670         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9671         Prefer #ifdef to #if.
9672
9673         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
9674         Return from 'main' instead of calling 'exit'.
9675
9676 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9677
9678         * lib/mktime.c (guess_time_tm): Fix bug where mktime
9679         returned the maximum time_t value rather than (time_t) -1.
9680         Problem originally reported by William Bardwell
9681         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9682
9683         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9684         Moved to here ...
9685         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9686         ... from here.
9687
9688 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9689
9690         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
9691         2821 is fixed.
9692
9693 2006-09-08  Jim Meyering  <jim@meyering.net>
9694
9695         Don't make generated files read-only.  That would bother too many
9696         people.  However, do retain the ability to work when targets are
9697         read-only: remove the destination and temporary files before writing
9698         them (when generated via sed or echo), or by using the -f option for
9699         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
9700         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9701         * modules/byteswap, modules/configmake, modules/fcntl:
9702         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9703         * modules/localcharset, modules/netinet_in, modules/poll:
9704         * modules/stdbool, modules/stdint, modules/sys_select:
9705         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9706
9707 2006-09-08  Jim Meyering  <jim@meyering.net>
9708
9709         Avoid new build failure on FreeBSD 6.0.
9710         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
9711         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
9712         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
9713
9714 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9715
9716         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
9717
9718 2006-09-07  Jim Meyering  <jim@meyering.net>
9719
9720         Fix global typo in last change: use chmod u-w, not chmod u-x.
9721         Spotted by Paul Eggert and Bruce Korb.
9722         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9723         * modules/byteswap, modules/configmake, modules/fcntl:
9724         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9725         * modules/localcharset, modules/netinet_in, modules/poll:
9726         * modules/stdbool, modules/stdint, modules/sys_select:
9727         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9728
9729 2006-09-06  Jim Meyering  <jim@meyering.net>
9730
9731         Make generated files be read-only.
9732         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
9733         Ensure that each generated file is now read-only.
9734         * modules/argz: Likewise.
9735         * modules/arpa_inet: Likewise.
9736         * modules/byteswap: Likewise.
9737         * modules/configmake: Likewise.
9738         * modules/fcntl: Likewise.
9739         * modules/fnmatch: Likewise.
9740         * modules/getopt: Likewise.
9741         * modules/glob: Likewise.
9742         * modules/inttypes: Likewise.
9743         * modules/netinet_in: Likewise.
9744         * modules/poll: Likewise.
9745         * modules/stdbool: Likewise.
9746         * modules/stdint: Likewise.
9747         * modules/sys_select: Likewise.
9748         * modules/sys_socket: Likewise.
9749         * modules/sys_stat: Likewise.
9750         * modules/sysexits: Likewise.
9751         * modules/localcharset: Same as above, but continue using temporary
9752         file named "t-$@" (why different?) rather than the "$@-t" used
9753         everywhere else.
9754
9755         * modules/sysexits (Makefile.am): Replace literal occurrences
9756         of "sysexit.h" more readable, and more consistent, "$@".
9757
9758 2006-09-06  Bruno Haible  <bruno@clisp.org>
9759
9760         * modules/striconv: New file.
9761         * modules/xstriconv: New file.
9762         * MODULES.html.sh (Internationalization functions): Add striconv,
9763         xstriconv.
9764
9765 2006-09-06  Bruno Haible  <bruno@clisp.org>
9766
9767         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
9768         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
9769         not using libtool correctly.
9770
9771 2006-09-06  Bruno Haible  <bruno@clisp.org>
9772
9773         * lib/striconv.h: New file.
9774         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
9775         iconvstring.c.
9776         * lib/xstriconv.h: New file.
9777         * lib/xstriconv.c: New file.
9778
9779 2006-09-06  Bruno Haible  <bruno@clisp.org>
9780
9781         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
9782         lib_..._LDFLAGS.
9783
9784 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9785
9786         * lib/argz_.h: Sync from Libtool.
9787
9788         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
9789                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9790
9791         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
9792
9793 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9794
9795         * modules/trim: New file.
9796
9797 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9798
9799         * lib/trim.h: New file.
9800         * lib/trim.c: New file.
9801
9802 2006-09-05  Bruno Haible  <bruno@clisp.org>
9803
9804         * MODULES.html.sh (String handling): Add trim.
9805
9806 2006-09-04  Karl Berry  <karl@gnu.org>
9807
9808         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
9809         until next release.
9810
9811 2006-09-03  Bruno Haible  <bruno@clisp.org>
9812
9813         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
9814         correctly.
9815
9816 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9817
9818         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
9819         not gl_GETLOADAVG.  Omit unneeded semicolons.
9820         Problems reported by Ralf Wildenhues in
9821         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9822         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
9823         at the end, which is the usual gnulib style.
9824
9825         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
9826         of doing all the work ourselves.
9827         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
9828         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
9829
9830 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9831
9832         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
9833         Problem reported by Ralf Wildenhues in
9834         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9835
9836         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
9837         HAVE_STRUCT_STATFS_F_FSTYPENAME.
9838
9839 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9840
9841         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
9842         yesterday's patch by changing test -n to test -z.
9843
9844 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9845
9846         * modules/getloadavg (Files): Add m4/getloadavg.m4.
9847         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
9848         the former is now obsolescent.
9849
9850         * modules/chdir-long (Depends-on): Add fcntl.
9851
9852 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9853
9854         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
9855         obsolescent, and programs should use gnulib instead.
9856         * m4/getloadavg.m4: New file, with contents taken from Autoconf
9857         but with prefixes changed.
9858
9859 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9860
9861         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
9862         or stdbool.h, because they might not exist while configuring.
9863
9864         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
9865         Don't include unistd.h or limits.h; not needed, since chdir-long.h
9866         does that for us.
9867         (O_DIRECTORY): Remove.
9868
9869 2006-08-31  Eric Blake  <ebb9@byu.net>
9870
9871         * gnulib-tool: Don't let emacs change spaces to TAB.
9872
9873 2006-08-31  Bruno Haible  <bruno@clisp.org>
9874
9875         * gnulib-tool: When calling func_import more than once, do it in a
9876         subshell.
9877         Reported by Eric Blake <ebb9@byu.net>.
9878
9879 2006-08-31  Bruno Haible  <bruno@clisp.org>
9880
9881         * gnulib-tool (nl): Remove variable.
9882         (sed_transform_lib_file): Use more robust test for config-h module.
9883         (func_import): Fix typo in 2006-08-25 patch.
9884
9885 2006-08-31  Bruno Haible  <bruno@clisp.org>
9886
9887         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
9888         specified, augment Makefile.am variables instead of assigning them.
9889
9890 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9891
9892         Work around a bug in both the Linux and SunOS 64-bit kernels:
9893         nanosleep mishandles sleeps for longer than 2**31 seconds.
9894         Problem reported by Frank v Waveren in
9895         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9896         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
9897         Check for nanosleep bug.
9898         (LIB_NANOSLEEP): Append clock_gettime library if needed.
9899
9900 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9901
9902         Work around a bug in both the Linux and SunOS 64-bit kernels:
9903         nanosleep mishandles sleeps for longer than 2**31 seconds.
9904         Problem reported by Frank v Waveren in
9905         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9906         * lib/nanosleep.c (BILLION): New constant.
9907         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
9908         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
9909         implementation.
9910
9911 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9912
9913         * modules/nanosleep (Depends-on): Add gettime.
9914
9915 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9916         and Simon Josefsson  <jas@extundo.com>
9917         and Oskar Liljeblad  <oskar@osk.mine.nu>
9918
9919         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
9920         * gnulib-tool (func_import): New license type 'unmodifiable license
9921         text'.
9922         * modules/fdl: Use it.  Longer description.
9923         * module/gpl, module/lgpl: New files.
9924
9925 2006-08-30  Jim Meyering  <jim@meyering.net>
9926
9927         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
9928         shadowing the parameter.
9929
9930 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9931
9932         Sync from Libtool:
9933
9934         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9935
9936         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
9937         sharing with gnulib.  Report by Eric Blake.
9938
9939 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9940
9941         * modules/isapipe: New file.
9942         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
9943
9944 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9945
9946         * modules/configmake (Makefile.am): Add a comment, and omit
9947         the CONFIGMAKE_ prefix from generated macro names.  Suggested
9948         by Bruno Haible.
9949
9950 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9951
9952         * m4/isapipe.m4: New file.
9953
9954 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9955
9956         * lib/isapipe.c, lib/isapipe.h: New files.
9957
9958 2006-08-29  Jim Meyering  <jim@meyering.net>
9959
9960         * modules/configmake (Makefile.am): Make configmake.h depend on
9961         Makefile.  Otherwise, a stale configmake.h could hang around.
9962
9963 2006-08-29  Eric Blake  <ebb9@byu.net>
9964
9965         * lib/error.c (error_at_line, print_errno_message): Match libc, after
9966         resolution of upstream bug 3044.
9967
9968 2006-08-29  Bruno Haible  <bruno@clisp.org>
9969
9970         * modules/localcharset (Depends-on): Add configmake.
9971         (Makefile.am): Remove setting of LIBDIR through DEFS.
9972
9973 2006-08-29  Bruno Haible  <bruno@clisp.org>
9974
9975         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
9976         defined.
9977
9978 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9979
9980         * modules/fcntl: New file.
9981         * modules/chdir-safer (Depends-on): Add fcntl.
9982         * modules/fts: Likewise.
9983         * modules/mkdir-p: Likewise.
9984
9985         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
9986         This undoes the most recent change, since we're now addressing the
9987         problem in a different way.
9988
9989         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
9990         into output, since the output might be called Makefile.am even
9991         if $makefile_name is something different.
9992         (func_import): Use $makefile_am rather than
9993         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
9994         empty.
9995
9996         * modules/inttypes (Files): Add m4/inttypes-h.m4.
9997
9998 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9999
10000         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
10001         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
10002         recent change to stdint.m4, since we're now addressing the problem in a
10003         different way.
10004
10005 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10006
10007         * m4/fcntl_h.m4: New file.
10008
10009 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10010
10011         * lib/fcntl_.h: New file.
10012         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
10013         the fcntl module.
10014         * lib/dirchownmod.c: Likewise.
10015         * lib/fts.c: Likewise.
10016
10017         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
10018         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
10019         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
10020         just before including <inttypes.h>, to avoid circular inclusion.
10021
10022 2006-08-28  Jim Meyering  <jim@meyering.net>
10023
10024         * doc/visibility.texi: Actually read and correct the grammar of the
10025         sentence affected by yesterday's change.
10026
10027 2006-08-28  Eric Blake  <ebb9@byu.net>
10028
10029         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
10030         needs wrapper.
10031
10032 2006-08-28  Eric Blake  <ebb9@byu.net>
10033
10034         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
10035
10036 2006-08-28  Eric Blake  <ebb9@byu.net>
10037
10038         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
10039
10040 2006-08-28  Bruno Haible  <bruno@clisp.org>
10041
10042         * modules/c-strstr: New file, from GNU gettext.
10043         * MODULES.html.sh (String handling): Add c-strstr.
10044
10045 2006-08-28  Bruno Haible  <bruno@clisp.org>
10046
10047         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
10048         macros.
10049         Reported by Eric Blake.
10050
10051 2006-08-28  Bruno Haible  <bruno@clisp.org>
10052
10053         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
10054         (VASNPRINTF): Return a string of length > INT_MAX without failing.
10055         * lib/vasprintf.c: Include errno.h, limits.h.
10056         (EOVERFLOW): New fallback definition.
10057         (vasprintf): Test here whether the string length is > INT_MAX.
10058         * lib/vsnprintf.c: Include errno.h, limits.h.
10059         (EOVERFLOW): New fallback definition.
10060         (vsnprintf): Fix bug when generated string was too long for the buffer.
10061         Test here whether the string length is > INT_MAX.
10062
10063 2006-08-28  Bruno Haible  <bruno@clisp.org>
10064
10065         * lib/inttypes_.h (SCNX*): Remove definitions.
10066         Reported by Eric Blake.
10067
10068 2006-08-28  Bruno Haible  <bruno@clisp.org>
10069
10070         * lib/c-strstr.h: New file, from GNU gettext.
10071         * lib/c-strstr.c: New file, from GNU gettext.
10072
10073 2006-08-28  Bruno Haible  <bruno@clisp.org>
10074
10075         * gnulib-tool: Reorder some statements.
10076
10077 2006-08-28  Bruno Haible  <bruno@clisp.org>
10078
10079         * gnulib-tool: New option --makefile-name.
10080         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
10081         $makefile_name.
10082         (func_import): Write $makefile_name to the cache file, and read it from
10083         there unless explicitly specified. Use $makefile_name as file name
10084         instead of Makefile.am. Adjust the recommendations accordingly.
10085
10086 2006-08-28  Bruno Haible  <bruno@clisp.org>
10087
10088         * gnulib-tool (func_verify_module): Check against misapplying patch.
10089
10090 2006-08-28  Bruno Haible  <bruno@clisp.org>
10091
10092         * gnulib-tool (func_relativize, func_relconcat): New functions.
10093         Give an error if --local-dir is given with --update.
10094         Remove trailing slashes from $local_gnulib_dir.
10095         (func_import): Store the relativized $local_gnulib_dir in
10096         gnulib-cache.m4, and read it from there if not specified explicitly.
10097
10098 2006-08-28  Bruno Haible  <bruno@clisp.org>
10099
10100         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
10101         is the current directory. Respect also $local_gnulib_dir.
10102
10103 2006-08-28  Bruno Haible  <bruno@clisp.org>
10104             Simon Josefsson  <jas@extundo.com>
10105
10106         BeOS portability.
10107         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
10108
10109 2006-08-27  Jim Meyering  <jim@meyering.net>
10110
10111         * doc/visibility.texi: Remove duplicate word: "pointer".
10112
10113 2006-08-26  Bruno Haible  <bruno@clisp.org>
10114
10115         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
10116         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
10117         (Makefile.am): Create inttypes.h from inttypes_.h.
10118         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
10119
10120         * modules/imaxabs: New file.
10121
10122         * modules/imaxdiv: New file.
10123
10124 2006-08-26  Bruno Haible  <bruno@clisp.org>
10125
10126         * m4/inttypes.m4: New file.
10127         * m4/_inttypes_h.m4: Remove file.
10128         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
10129         PRI_MACROS_BROKEN.
10130         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
10131
10132         * m4/imaxabs.m4: New file.
10133
10134         * m4/imaxdiv.m4: New file.
10135
10136 2006-08-26  Bruno Haible  <bruno@clisp.org>
10137
10138         * lib/inttypes_.h: New file.
10139         * lib/inttypes.h: Remove file.
10140         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
10141
10142         * lib/imaxabs.c: New file.
10143
10144         * lib/imaxdiv.c: New file.
10145
10146 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10147
10148         New config-h module, so that "make" output needn't be cluttered
10149         by -DHAVE_CONFIG_H.
10150         * MODULES.html.sh (Support for building libraries and executables):
10151         Add config-h.
10152         * modules/config-h: New file.
10153         * gnulib-tool (nl, sed_transform_lib_file): New vars.
10154         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
10155         the config-h module is used.
10156
10157         New configmake module, so that "make" output needn't be cluttered
10158         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
10159         * MODULES.html.sh (Support for building libraries and executables):
10160         Add configmake.
10161         * modules/configmake: New file.
10162
10163 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10164
10165         * m4/config-h.m4: New file.
10166
10167 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10168
10169         * config/srclist.txt: Add elisp-comp.
10170
10171 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10172
10173         * MODULES.html.sh (Support for building libraries and executables):
10174         Add elisp-comp.
10175         * build-aux/elisp-comp: New file.
10176         * modules/elisp-comp: New file.
10177
10178 2006-08-24  Bruno Haible  <bruno@clisp.org>
10179
10180         * gnulib-tool (func_create_testdir): Use non-default values of
10181         sourcebase and m4base.
10182
10183 2006-08-24  Bruno Haible  <bruno@clisp.org>
10184
10185         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
10186         HTML structure.
10187
10188 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10189
10190         * modules/openat (Depends-on): Add lchown.
10191
10192 2006-08-23  Bruno Haible  <bruno@clisp.org>
10193
10194         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
10195         of gl_LOCK_EARLY instead of gl_LOCK.
10196
10197 2006-08-23  Bruno Haible  <bruno@clisp.org>
10198
10199         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
10200         on OSF/1 to no.
10201         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
10202
10203 2006-08-23  Bruno Haible  <bruno@clisp.org>
10204
10205         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
10206         as unusable.
10207
10208         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
10209         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
10210         (gl_LOCK): New macro.
10211
10212 2006-08-22  Simon Josefsson  <jas@extundo.com>
10213
10214         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
10215         to md5 module.
10216
10217 2006-08-22  Simon Josefsson  <jas@extundo.com>
10218
10219         * MODULES.html.sh: Add "Support for maintaining and release
10220         projects".
10221
10222         * build-aux/gnupload: New file, from coreutils.
10223
10224 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10225
10226         Avoid the need for AC_LIBSOURCES in m4 macros.
10227         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
10228         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
10229         * modules/check-version (EXTRA_DIST): Add check-version.h.
10230         * modules/crc (EXTRA_DIST): Add crc.h.
10231         * modules/des (EXTRA_DIST): Add des.h.
10232         * modules/gc (EXTRA_DIST): Add gc.h.
10233         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
10234         * modules/getline (EXTRA_DIST): Add getline.h.
10235         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
10236         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
10237         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
10238         * modules/md2 (EXTRA_DIST): Add md2.h.
10239         * modules/md4 (EXTRA_DIST): Add md4.h.
10240         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
10241         * modules/read-file (EXTRA_DIST): Add read-file.h.
10242         * modules/readline (EXTRA_DIST): Add readline.h.
10243         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
10244         rijndael-api-fst.h.
10245
10246 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10247
10248         * m4/rijndael.m4 (gl_ARCFOUR):
10249         * m4/arctwo.m4 (gl_ARCTWO):
10250         * m4/check-version.m4 (gl_CHECK_VERSION):
10251         * m4/crc.m4 (gl_CRC):
10252         * m4/des.m4 (gl_DES):
10253         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
10254         * m4/gc.m4 (gl_GC):
10255         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
10256         * m4/getline.m4 (gl_FUNC_GETLINE):
10257         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
10258         * m4/hmac-md5.m4 (gl_HMAC_MD5):
10259         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
10260         * m4/md2.m4 (gl_MD2):
10261         * m4/md4.m4 (gl_MD4):
10262         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
10263         * m4/read-file.m4 (gl_FUNC_READ_FILE):
10264         * m4/readline.m4 (gl_FUNC_READLINE):
10265         * m4/rijndael.m4 (gl_RIJNDAEL):
10266         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
10267         to get the necessary .h files and whatnot.
10268
10269 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10270
10271         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
10272         gnulib rather than the other way around.
10273         * config/srclistvars.sh (COREUTILS): Remove.
10274
10275 2006-08-22  Jim Meyering  <jim@meyering.net>
10276
10277         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
10278
10279         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
10280
10281 2006-08-22  Eric Blake  <ebb9@byu.net>
10282
10283         * modules/regexprops-generic: New file.
10284         * MODULES.html.sh (Support for building documentation): List it.
10285
10286 2006-08-22  Eric Blake  <ebb9@byu.net>
10287
10288         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
10289         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
10290         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
10291         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
10292
10293 2006-08-22  Bruno Haible  <bruno@clisp.org>
10294
10295         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
10296         and lib_LTLIBRARIES like the other lib_* variables.
10297
10298 2006-08-22  Bruno Haible  <bruno@clisp.org>
10299
10300         * build-aux/x-to-1.in: New file, from GNU gettext.
10301
10302 2006-08-22  Bruno Haible  <bruno@clisp.org>
10303
10304         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
10305         <utmpx.h> exists.
10306
10307 2006-08-22  Bruno Haible  <bruno@clisp.org>
10308
10309         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
10310         <utmpx.h> exists.
10311
10312 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10313
10314         BeOS portability.
10315         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
10316         exist.
10317         Problem reported by Bruno Haible.
10318
10319 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10320
10321         Avoid the need for AC_LIBSOURCES in m4 macros.
10322         * modules/acl (EXTRA_DIST): Add acl.h.
10323         * modules/argmatch (Files): Add m4/argmatch.m4.
10324         (configure.ac): Add gl_ARGMATCH.
10325         (EXTRA_DIST): Renamed from lib_SOURCES, for
10326         consistency with the other modules.  Remove argmatch.c.
10327         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
10328         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
10329         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
10330         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
10331         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
10332         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
10333         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
10334         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
10335         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
10336         * modules/closeout (EXTRA_DIST): Add closeout.h.
10337         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
10338         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
10339         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
10340         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
10341         dirname.h; remove basename.c and stripslash.c.
10342         * modules/exclude (EXTRA_DIST): Add exclude.h.
10343         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
10344         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
10345         * modules/file-type (EXTRA_DIST): Add file-type.h.
10346         * modules/filemode (EXTRA_DIST): Add filemode.h.
10347         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
10348         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
10349         * modules/fpending (EXTRA_DIST): Add __fpending.h.
10350         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
10351         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
10352         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
10353         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
10354         * modules/getdate (EXTRA_DIST): Add getdate.c.
10355         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
10356         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
10357         * modules/getpass (EXTRA_DIST): Add getpass.h.
10358         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
10359         * modules/group-member (EXTRA_DIST): Add group-member.h.
10360         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
10361         * modules/hash (EXTRA_DIST): Add hash.h.
10362         * modules/human (EXTRA_DIST): Add human.h.
10363         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
10364         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
10365         * modules/lchown (EXTRA_DIST): Add lchown.h.
10366         * modules/long-options (EXTRA_DIST): Add long-options.h.
10367         * modules/lstat (EXTRA_DIST): Add lstat.h.
10368         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
10369         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
10370         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
10371         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
10372         * modules/memxor (EXTRA_DIST): Add memxor.h.
10373         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
10374         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
10375         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
10376         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
10377         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
10378         * modules/physmem (EXTRA_DIST): Add physmem.h.
10379         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
10380         * modules/posixver (EXTRA_DIST): Add posixver.h.
10381         * modules/quote (EXTRA_DIST): Add quote.h.
10382         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
10383         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
10384         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
10385         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
10386         regex_internal.h regexec.c.
10387         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
10388         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
10389         * modules/same (EXTRA_DIST): Add same.h.
10390         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
10391         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
10392         * modules/savedir (EXTRA_DIST): Add savedir.h.
10393         * modules/sha1 (EXTRA_DIST): Add sha1.h.
10394         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
10395         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
10396         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
10397         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
10398         * modules/strdup (EXTRA_DIST): Add strdup.h.
10399         * modules/strftime (EXTRA_DIST): Add strftime.h.
10400         * modules/strndup (EXTRA_DIST): Add strndup.h.
10401         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
10402         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
10403         * modules/time_r (EXTRA_DIST): Add time_r.h.
10404         * modules/timespec (EXTRA_DIST): Add timespec.h.
10405         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
10406         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
10407         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
10408         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
10409         * modules/userspec (EXTRA_DIST): Add userspec.h.
10410         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
10411         * modules/utimens (EXTRA_DIST): Add utimens.h.
10412         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
10413         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
10414         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
10415         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
10416         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
10417         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
10418         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
10419         * modules/yesno (EXTRA_DIST): Add yesno.h.
10420
10421 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10422
10423         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
10424
10425         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
10426         * m4/dev-ino.m4, same-inode.m4: Remove.
10427
10428         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
10429         * m4/acl.m4 (AC_FUNC_ACL):
10430         * m4/backupfile.m4 (gl_BACKUPFILE):
10431         * m4/c-strtod.m4 (gl_C99_STRTOLD):
10432         * m4/canon-host.m4 (gl_CANON_HOST):
10433         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
10434         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
10435         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
10436         * m4/cloexec.m4 (gl_CLOEXEC):
10437         * m4/close-stream.m4 (gl_CLOSE_STREAM):
10438         * m4/closeout.m4 (gl_CLOSEOUT):
10439         * m4/dirfd.m4 (gl_FUNC_DIRFD):
10440         * m4/dirname.m4 (gl_DIRNAME):
10441         * m4/exclude.m4 (gl_EXCLUDE):
10442         * m4/exitfail.m4 (gl_EXITFAIL):
10443         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
10444         * m4/file-type.m4 (gl_FILE_TYPE):
10445         * m4/filemode.m4 (gl_FILEMODE):
10446         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
10447         * m4/fpending.m4 (gl_FUNC_FPENDING):
10448         * m4/fprintftime.m4 (gl_FPRINTFTIME):
10449         * m4/fts.m4 (gl_FUNC_FTS):
10450         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
10451         * m4/getdate.m4 (gl_GETDATE):
10452         * m4/gethrxtime.m4 (gl_GETHRXTIME):
10453         * m4/getpagesize.m4 (gl_GETPAGESIZE):
10454         * m4/getpass.m4 (gl_FUNC_GETPASS):
10455         * m4/gettime.m4 (gl_GETTIME):
10456         * m4/getugroups.m4 (gl_GETUGROUPS):
10457         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
10458         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
10459         * m4/hard-locale.m4 (gl_HARD_LOCALE):
10460         * m4/hash.m4 (gl_HASH):
10461         * m4/idcache.m4 (gl_IDCACHE):
10462         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
10463         * m4/lchown.m4 (gl_FUNC_LCHOWN):
10464         * m4/long-options.m4 (gl_LONG_OPTIONS):
10465         * m4/lstat.m4 (gl_FUNC_LSTAT):
10466         * m4/md5.m4 (gl_MD5):
10467         * m4/memcasecmp.m4 (gl_MEMCASECMP):
10468         * m4/memcoll.m4 (gl_MEMCOLL):
10469         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
10470         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
10471         * m4/memxor.m4 (gl_MEMXOR):
10472         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
10473         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
10474         * m4/modechange.m4 (gl_MODECHANGE):
10475         * m4/mountlist.m4 (gl_MOUNTLIST):
10476         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
10477         * m4/openat.m4 (gl_FUNC_OPENAT):
10478         * m4/pathmax.m4 (gl_PATHMAX):
10479         * m4/physmem.m4 (gl_PHYSMEM):
10480         * m4/posixtm.m4 (gl_POSIXTM):
10481         * m4/posixver.m4 (gl_POSIXVER):
10482         * m4/quote.m4 (gl_QUOTE):
10483         * m4/quotearg.m4 (gl_QUOTEARG):
10484         * m4/readtokens.m4 (gl_READTOKENS):
10485         * m4/readutmp.m4 (gl_READUTMP):
10486         * m4/regex.m4 (gl_REGEX):
10487         * m4/safe-read.m4 (gl_SAFE_READ):
10488         * m4/safe-write.m4 (gl_SAFE_WRITE):
10489         * m4/same.m4 (gl_SAME):
10490         * m4/save-cwd.m4 (gl_SAVE_CWD):
10491         * m4/savedir.m4 (gl_SAVEDIR):
10492         * m4/settime.m4 (gl_SETTIME):
10493         * m4/sha1.m4 (gl_SHA1):
10494         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
10495         * m4/stat-macros.m4 (gl_STAT_MACROS):
10496         * m4/stat-time.m4 (gl_STAT_TIME):
10497         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
10498         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
10499         * m4/strdup.m4 (gl_FUNC_STRDUP):
10500         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
10501         * m4/strndup.m4 (gl_FUNC_STRNDUP):
10502         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
10503         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
10504         * m4/time_r.m4 (gl_TIME_R):
10505         * m4/timespec.m4 (gl_TIMESPEC):
10506         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
10507         * m4/unlinkdir.m4 (gl_UNLINKDIR):
10508         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
10509         * m4/userspec.m4 (gl_USERSPEC):
10510         * m4/utimecmp.m4 (gl_UTIMECMP):
10511         * m4/utimens.m4 (gl_UTIMENS):
10512         * m4/xalloc.m4 (gl_XALLOC):
10513         * m4/xgetcwd.m4 (gl_XGETCWD):
10514         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
10515         * m4/xreadlink.m4 (gl_XREADLINK):
10516         * m4/xstrtod.m4 (gl_XSTRTOD):
10517         * m4/yesno.m4 (gl_YESNO):
10518         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
10519         to get the necessary .h files and whatnot.
10520
10521 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
10522             Bruno Haible  <bruno@clisp.org>
10523
10524         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
10525         /bin/sh understanding of '!' conditional negation.
10526
10527 2006-08-21  Jim Meyering  <jim@meyering.net>
10528
10529         * modules/openat (Depends-on): Really alphabetize.
10530
10531         * modules/acl (Depends-on): Add error and quote.
10532
10533         * check-module (find_included_lib_files): Add at-func.c to the
10534         ok-to-include-more-than-once white list.
10535
10536         * modules/openat (Depends-on): Add lstat.  Alphabetize.
10537
10538 2006-08-21  Bruno Haible  <bruno@clisp.org>
10539
10540         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10541         Emit a pkgdata_DATA variable only if some snippets add contents to it.
10542         Reported by Martin Lambers <marlam@marlam.de>.
10543
10544 2006-08-21  Bruno Haible  <bruno@clisp.org>
10545
10546         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
10547         specify an installation location, don't emit a noinst_LIBRARIES or
10548         noinst_LTLIBRARIES assignment.
10549
10550 2006-08-21  Bruno Haible  <bruno@clisp.org>
10551
10552         BeOS portability.
10553         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
10554         BeOS has mbrtowc() but no <wctype.h>.
10555
10556 2006-08-21  Bruno Haible  <bruno@clisp.org>
10557
10558         BeOS portability.
10559         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
10560         exist.
10561
10562 2006-08-21  Bruno Haible  <bruno@clisp.org>
10563
10564         BeOS portability.
10565         * lib/mbchar.h: Include <wctype.h> only if it exists.
10566
10567 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10568
10569         Remove files that are no longer needed by their respective modules.
10570         * m4/obstack.m4: Remove.
10571         * m4/strerror_r.m4: Remove.
10572         * m4/uint32_t.m4: Remove.
10573         * m4/uintptr_t.m4: Remove.
10574         * m4/ullong_max.m4: Remove.
10575         * m4/xstrtoimax.m4: Remove.
10576         * m4/xstrtoumax.m4: Remove.
10577
10578         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
10579         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
10580         dependencies now capture this.
10581
10582         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
10583         Do not use AC_LIBSOURCES, since gnulib modules now do this.
10584         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
10585         * m4/human.m4 (gl_HUMAN): Likewise.
10586         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
10587         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
10588
10589         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
10590
10591         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
10592         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
10593         stdint.
10594         * m4/human.m4 (gl_HUMAN): Likewise.
10595         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
10596         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
10597         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10598         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10599         * m4/xstrtol (gl_XSTRTOL): Likewise.
10600
10601         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
10602         AC_TYPE_LONG_LONG_INT.
10603         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10604         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
10605         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
10606         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10607
10608         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
10609         on stdbool.
10610
10611         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
10612         (gl_PREREQ_XSTRTOUL): Remove.
10613
10614         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
10615
10616         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
10617         mode.
10618
10619 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10620
10621         Add and change modules to make it easier for coreutils to use
10622         gnulib-tool.
10623         * modules/backupfile (Files): Remove m4/d-ino.m4.
10624         (Depends-on): Add d-ino.
10625         * modules/cycle-check (Depends-on): Add stdint.
10626         (lib_SOURCES): Add cycle-check.h.
10627         * modules/d-ino: New module.
10628         * modules/d-type: New module.
10629         * modules/error (Files): Remove m4/strerror_r.m4.
10630         * modules/filemode (Files): Add m4/st_dm_mode.m4.
10631         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
10632         m4/inttypes_h.m4, m4/uintmax_t.m4.
10633         (Depends-on): Add stdint.
10634         (lib_SOURCES): Add fsusage.h.
10635         * modules/getcwd (Files): Remove d-ino.m4.
10636         (Depends-on): Add d-ino.
10637         * modules/getndelim2 (Depends-on): Add stdint.
10638         * modules/glob (Files): Remove m4/d-type.m4.
10639         (Depends-on): Add d-type.
10640         * modules/host-os: New module.
10641         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
10642         m4/inttypes_h.m4, m4/uintmax_t.m4.
10643         * Depends-on: Add stdint.
10644         (lib_SOURCES): Add human.h.
10645         * modules/inttostr (Files): Remove m4/intmax_t.m4,
10646         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
10647         m4/uintmax_t.m4, m4/ulonglong.m4.
10648         (Depends-on): Add stdint.
10649         (EXTRA_DIST): Add inttostr.h.
10650         * modules/lchmod: New module.
10651         * modules/link-follow: New module.
10652         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
10653         (Depends-on): Add lchmod.
10654         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
10655         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
10656         (Depends-on): Add stdint.
10657         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
10658         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
10659         (Depends-on): Add stdint.
10660         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
10661         * modules/perl: New module.
10662         * modules/regex (Depends-on): Add stdint.
10663         * modules/rmdir-errno: New module.
10664         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10665         m4/intmax_t.m4.
10666         (Depends-on): Add stdint.
10667         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10668         m4/uintmax_t.m4.
10669         (Depends-on): Add stdint.
10670         * modules/unlink-busy: New module.
10671         * modules/utimecmp (Depends-on): Add stdint.
10672         * modules/uptime: New module.
10673         * modules/winsz-ioctl: New module.
10674         * modules/winsz-termios: New module.
10675         * modules/xnanosleep (Depends-on): Add nanosleep.
10676         * modules/ullong_max: Remove.
10677         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
10678         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
10679         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
10680         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
10681         (Depends-on): Add inttypes.
10682         (lib_SOURCES): Add xstrtol.h.
10683         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
10684         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
10685         * MODULES.html.sh: Move 'assert' into the assert section.
10686         Move 'dummy' into the linking section.
10687         Remove ullong_max.
10688         Add section for compatibility checks for POSIX:2001 functions,
10689         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
10690         winsz-ioctl, and winsz-termios into it.
10691         Add lchmod.
10692         Add top-level Misc section and put host-os, perl, and uptime
10693         into it.
10694
10695 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10696
10697         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
10698         now assume the stdint module.  Do not include inttypes.h.
10699         * lib/fsusage.h: Likewise.
10700         * lib/getndelim2.c: Likewise.
10701         * lib/human.h: Likewise.
10702         * lib/inttostr.h: Likewise.
10703         * lib/obstack.c: Likewise.
10704         * lib/regex_internal.h: Likewise.
10705         * lib/tempname.c: Likewise.
10706         * lib/utimecmp.c: Likewise.
10707         * lib/xstrtol.h: Likewise.
10708
10709         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
10710
10711         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
10712         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
10713         * lib/xtime.h: Likewise.
10714
10715 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10716
10717         * modules/openat (Files): Add lib/fchmodat.c.
10718         Fixes problem reported by Jay Youngman.
10719
10720 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10721
10722         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
10723         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
10724
10725 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
10726             Bruno Haible  <bruno@clisp.org>
10727
10728         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
10729         and is a script that invokes bison. Tighten the code. Add comments.
10730
10731 2006-08-18  Jim Meyering  <jim@meyering.net>
10732
10733         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
10734         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
10735         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
10736         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
10737
10738 2006-08-18  Bruno Haible  <bruno@clisp.org>
10739
10740         * modules/bison-i18n: New file.
10741         * MODULES.html.sh (Internationalization functions): Add it.
10742
10743 2006-08-18  Bruno Haible  <bruno@clisp.org>
10744
10745         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
10746         sys/statvfs.h. When getmntinfo was found, check its declaration and
10747         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
10748
10749 2006-08-18  Bruno Haible  <bruno@clisp.org>
10750
10751         * m4/bison-i18n.m4: New file, from bison.
10752
10753 2006-08-18  Bruno Haible  <bruno@clisp.org>
10754
10755         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
10756         (ME_DUMMY): Treat "kernfs" as a dummy.
10757         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
10758
10759 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10760
10761         Update from coreutils.
10762
10763         2006-08-15  Jim Meyering  <jim@meyering.net>
10764
10765         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
10766
10767         2006-01-17  Jim Meyering  <jim@meyering.net>
10768
10769         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
10770
10771         2006-01-11  Jim Meyering  <jim@meyering.net>
10772
10773         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
10774         Check for the lchmod function.
10775
10776 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10777
10778         Update from coreutils.
10779
10780         * lib/__fpending.h: Add copyright notice.
10781         * lib/fprintftime.h: Likewise.
10782         * lib/savedir.c: Use (C) in copyright notice.
10783         * lib/savedir.h: Likewise.
10784
10785         2006-08-15  Jim Meyering  <jim@meyering.net>
10786
10787         * lib/at-func.c: New file, with the logic of all emulated at-functions.
10788         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
10789         in support of the EXPECTED_ERRNO macro.
10790         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
10791         definitions.  Instead, define the appropriate symbols and include
10792         "at-func.c".
10793         * lib/mkdirat.c (mkdirat): Likewise.
10794         * lib/fchmodat.c (fchmodat): Likewise.
10795         (ENOSYS): Remove definition.
10796         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
10797         it.  Don't include "unistd--.h" -- it wasn't ever used.
10798
10799         2006-01-17  Jim Meyering  <jim@meyering.net>
10800
10801         Rewrite fts.c not to change the current working directory,
10802         by using openat, fstatat, fdopendir, etc..
10803
10804         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
10805         (HAVE_OPENAT_SUPPORT): Define.
10806         [_LIBC] (fchdir): Don't undef or define; no longer used.
10807         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
10808         Now, this `function' always succeeds, and consumes its file descriptor
10809         parameter -- so callers must not close such FDs.  Update callers.
10810         (diropen_fd, opendirat, cwd_advance_fd): New functions.
10811         (diropen): Add parameter, SP.  Adjust all callers.
10812         Implement using diropen_fd, rather than open.
10813         (fts_open): Initialize new member, fts_cwd_fd.
10814         Remove fts_rft-setting code.
10815         (fts_close): Close fts_cwd_fd, if necessary.
10816         (__opendir2): Define in terms of opendir or opendirat,
10817         depending on whether the FST_NOCHDIR flag is set.
10818         (fts_build): Since fts_safe_changedir consumes its FD, and since
10819         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
10820         and close the dup'd file descriptor upon failure.
10821         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
10822         (fts_safe_changedir): Tweak semantics to reflect that this function
10823         now calls cwd_advance_fd and hence consumes its FD argument.
10824         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
10825         [struct FTS] (fts_rft): Remove now-unused member.
10826         [struct FTS] (fts_cycle.state): Improve comment.
10827
10828         * lib/openat.c (openat_needs_fchdir): New function.
10829         * lib/openat.h (openat_needs_fchdir): Declare it.
10830
10831 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10832
10833         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
10834         Problem and fix reported by Pádraig Brady in
10835         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
10836
10837 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10838
10839         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
10840
10841 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10842
10843         * lib/memcoll.c (memcoll): Optimize for the common case where the
10844         arguments are bytewise equal.
10845
10846 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10847
10848         * doc/regexprops-generic.texi: Add a copyright notice.
10849
10850 2006-08-15  Bruno Haible  <bruno@clisp.org>
10851
10852         * modules/tmpdir (License): Change to LGPL.
10853
10854 2006-08-15  Bruno Haible  <bruno@clisp.org>
10855
10856         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
10857         module.
10858
10859 2006-08-14  Simon Josefsson  <jas@extundo.com>
10860
10861         * config/srclist.txt: Add gnupload.
10862
10863 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10864
10865         Change copyright notice from LGPL 2 to GPL 2, since that's the
10866         standard form used in the gnulib repository.
10867         * tests/test-lock.c: Likewise.
10868         * tests/test-stdint.c: Likewise.
10869         * tests/test-tls.c: Likewise.
10870
10871         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
10872         prelude-manager.  User shorter URLs for GNU projects, without '?'.
10873         Add copyright notice.
10874
10875         * check-module: Add copyright notice.  Output a copyright
10876         notice if "--version" is specified.
10877         * modules/COPYING: New file.
10878         * tests/test-getaddrinfo.c: Add copyright notice.
10879         * tests/test-verify.c: Likewise.
10880
10881 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10882
10883         Change copyright notice from LGPL 2 to GPL 2, since that's the
10884         standard form used in the gnulib repository.
10885         * lib/lock.c: LGPL -> GPL.
10886         * lib/lock.h: Likewise.
10887         * lib/strnlen1.c: Likewise.
10888         * lib/strnlen1.h: Likewise.
10889         * lib/tls.c: Likewise.
10890         * lib/tls.h: Likewise.
10891         * lib/tmpdir.c: Likewise.
10892
10893         * lib/TODO: Remove; this belongs only in coreutils.
10894
10895 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10896
10897         Add copyright notices to long-enough files that lack them, since
10898         otherwise the files aren't clearly free.  Use the same notice that
10899         getdate.texi already uses.
10900         * doc/alloca-opt.texi: Add copyright notice.
10901         * doc/alloca.texi: Likewise.
10902         * doc/ctime.texi: Likewise.
10903         * doc/functions.texi: Likewise.
10904         * doc/gcd.texi: Likewise.
10905         * doc/gnulib-tool.texi: Likewise.
10906         * doc/inet_ntoa.texi: Likewise.
10907         * doc/visibility.texi: Likewise.
10908
10909         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
10910         * doc/quote.texi: Add copyright notice.
10911
10912         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
10913         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
10914         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
10915         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
10916         is now obsolete, and give a pointer to the Sun list.
10917         Add copyright notice.
10918
10919 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10920
10921         * config/srclistvars.sh: Add copyright notice.
10922
10923 2006-08-14  Eric Blake  <ebb9@byu.net>
10924
10925         Import the following change from libc:
10926
10927         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10928
10929         Upstream bug 2997.
10930         * lib/misc/error.c: Add space between program name and message if file
10931         name is missing.
10932
10933 2006-08-12  Karl Berry  <karl@gnu.org>
10934
10935         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
10936         remove, these originate in gnulib now.
10937
10938 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10939
10940         * doc/Makefile (standards.info standards.html standards.dvi):
10941         Also depend on make-stds.texi.
10942
10943 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
10944
10945         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
10946         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
10947
10948         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
10949         in wchar_t.  Problem reported by Eric Blake.
10950
10951         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
10952         LEN is smaller than SIZE.  Suggested by Bruno Haible.
10953         Also, help the compiler to keep LEN in a register.
10954
10955 2006-08-11  Eric Blake  <ebb9@byu.net>
10956
10957         * users.txt: Sort.  Add tar.
10958
10959 2006-08-11  Bruno Haible  <bruno@clisp.org>
10960
10961         * users.txt: New file.
10962
10963 2006-08-11  Bruno Haible  <bruno@clisp.org>
10964
10965         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
10966         before <wchar.h>. Needed for OSF/1 and BSD/OS.
10967
10968 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10969
10970         * modules/snprintf (Depends-on): Remove minmax.
10971         (Maintainer): Add self and Bruno.
10972
10973 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10974
10975         * lib/.cppi-disable: Add snprintf.h, socket_.h.
10976         * lib/snprintf.c: Include <errno.h> and <limits.h>.
10977         (EOVERFLOW): Define if the system does not.
10978         Do not include "minmax.h"; it wasn't used.
10979         (snprintf): Don't assume size_t promotes to an unsigned type.
10980         Fix bug when generated string was too long for the buffer: the
10981         buffer's contents are supposed to be the initial prefix of the
10982         output.  Don't assume vasnprintf returns EOVERFLOW if the size
10983         exceeds INT_MAX; do the check ourselves.
10984
10985         Import the following changes from libc:
10986
10987         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10988
10989         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
10990         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
10991         set wc to the byte which couldn't be converted.
10992         (re_string_reconstruct): Don't clear valid_raw_len before calling
10993         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10994         tip_context using re_string_context_at.
10995
10996         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
10997
10998         * lib/posix/regex.h: g++ still cannot handled [restrict].
10999
11000         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
11001
11002         * lib/posix/regex.h: Remove special handling for VMS.
11003
11004 2006-08-10  Jim Meyering  <jim@meyering.net>
11005
11006         * modules/same-inode: New module.
11007         * modules/dev-ino: New module.
11008         * modules/cycle-check: Depend on these modules, rather than simply
11009         including their .h files.
11010         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
11011         required via m4/cycle-check.m4.
11012         * modules/same: Depend on new same-inode module, rather than
11013         including same-inode.h.
11014         * modules/chdir-safer: New file.
11015
11016         * modules/chown (Depends-on): Add stat-macros.
11017
11018 2006-08-10  Jim Meyering  <jim@meyering.net>
11019
11020         * m4/cycle-check.m4: New file.
11021         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
11022         * m4/dev-ino.m4, m4/same-inode.m4: New files.
11023
11024 2006-08-10  Eric Blake  <ebb9@byu.net>
11025
11026         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
11027         in from original proposal.
11028
11029 2006-08-10  Eric Blake  <ebb9@byu.net>
11030         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11031
11032         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
11033         namespace.
11034
11035 2006-08-10  Bruno Haible  <bruno@clisp.org>
11036
11037         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
11038         as well.
11039
11040 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11041
11042         Sync from coreutils.
11043
11044         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
11045
11046         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
11047         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
11048
11049 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11050
11051         * modules/restrict: Remove; no longer needed now that we assume
11052         Autoconf 2.59 or later.
11053         * MODULES.html.sh: Remove 'restrict'.
11054         * modules/argp (Depends-on): Remove 'restrict'.
11055         * modules/base64 (Depends-on): Likewise.
11056         * modules/gc (Depends-on): Likewise.
11057         * modules/getaddrinfo (Depends-on): Likewise.
11058         * modules/glob (Depends-on): Likewise.
11059         * modules/inet_ntop (Depends-on): Likewise.
11060         * modules/inet_pton (Depends-on): Likewise.
11061         * modules/memxor (Depends-on): Likewise.
11062         * modules/regex (Depends-on): Likewise.
11063         * modules/strtok_r (Depends-on): Likewise.
11064         * modules/time_r (Depends-on): Likewise.
11065
11066 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11067
11068         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
11069         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
11070         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
11071         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
11072         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
11073         * m4/memxor.m4 (gl_MEMXOR): Likewise.
11074         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
11075         gl_C_RESTRICT replaced by AC_C_RESTRICT.
11076
11077         Merge from coreutils.
11078         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
11079         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
11080         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
11081         * m4/time_r.m4 (gl_TIME_R): Likewise.
11082
11083 2006-08-09  Karl Berry  <karl@gnu.org>
11084
11085         * config/srclist.txt: no more gettext-tools, per Bruno.
11086
11087 2006-08-08  Eric Blake  <ebb9@byu.net>
11088
11089         * modules/verror: New module.
11090         * MODULES.html.sh: Document it.
11091
11092 2006-08-08  Eric Blake  <ebb9@byu.net>
11093
11094         * lib/verror.h, lib/verror.c: New files.
11095
11096 2006-08-08  Eric Blake  <ebb9@byu.net>
11097
11098         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
11099         verror_at_line output complies with GNU Coding Standards even when
11100         file is NULL.
11101
11102 2006-08-07  Bruno Haible  <bruno@clisp.org>
11103
11104         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
11105         versions of AIX.
11106         Reported by Ralf Wildenhues.
11107
11108 2006-08-07  Bruno Haible  <bruno@clisp.org>
11109
11110         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
11111         in an AC_DEFUN. Needed so that the autoconf snippets can use
11112         AC_REQUIRE.
11113
11114 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11115
11116         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11117         Initialize pkgdata_DATA.
11118         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
11119         overriding it.
11120
11121 2006-08-06  Eric Blake  <ebb9@byu.net>
11122
11123         * lib/error.h: Fold in some upstream changes from glibc.
11124         * lib/error.c: Likewise.
11125
11126 2006-08-04  Bruno Haible  <bruno@clisp.org>
11127
11128         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11129         Make the mostlyclean-local rule depend on mostlyclean-generic.
11130         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
11131
11132 2006-07-31  Bruno Haible  <bruno@clisp.org>
11133
11134         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
11135         <stdlib.h>, <string.h>.
11136
11137 2006-07-30  Bruno Haible  <bruno@clisp.org>
11138
11139         * modules/readlink (License): Change to LGPL.
11140
11141 2006-07-30  Bruno Haible  <bruno@clisp.org>
11142
11143         * modules/javaversion (Makefile.am): Distribute javaversion.java and
11144         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
11145         set PKGDATADIR to point to it.
11146
11147 2006-07-30  Bruno Haible  <bruno@clisp.org>
11148
11149         * modules/csharpexec (configure.ac): Comment out macro invocation.
11150         * modules/javaexec (configure.ac): Likewise.
11151         * modules/javacomp-script (configure.ac): Likewise.
11152
11153         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
11154
11155 2006-07-30  Bruno Haible  <bruno@clisp.org>
11156
11157         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
11158         linked-list.
11159
11160 2006-07-30  Bruno Haible  <bruno@clisp.org>
11161
11162         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
11163
11164 2006-07-30  Bruno Haible  <bruno@clisp.org>
11165
11166         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11167         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
11168         get removed.
11169
11170 2006-07-29  Bruno Haible  <bruno@clisp.org>
11171
11172         Make it possible for gnulib-tool to work with locally modified or
11173         augmented gnulib repositories.
11174         * gnulib-tool (func_usage): Document --local-dir option.
11175         (local_gnulib_dir): New variable.
11176         Handle --local-dir option.
11177         (func_lookup_file): New function.
11178         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
11179         (func_get_description, func_get_filelist, func_get_description,
11180         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
11181         func_get_automake_snippet, func_get_include_directive,
11182         func_get_license, func_get_maintainer): Use func_lookup_file.
11183         (func_import, func_create_testdir): Use func_lookup_file.
11184
11185 2006-07-29  Bruno Haible  <bruno@clisp.org>
11186
11187         * modules/setenv (Depends-on): Add unistd.
11188
11189 2006-07-29  Bruno Haible  <bruno@clisp.org>
11190
11191         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
11192
11193 2006-07-29  Bruno Haible  <bruno@clisp.org>
11194
11195         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
11196
11197 2006-07-29  Bruno Haible  <bruno@clisp.org>
11198
11199         * gnulib-tool (import, update): If there is no Makefile.am, look at
11200         aclocal.m4, instead of bailing out.
11201
11202 2006-07-29  Bruno Haible  <bruno@clisp.org>
11203
11204         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
11205         Categorize the options by when they are useful.
11206
11207 2006-07-29  Bruno Haible  <bruno@clisp.org>
11208
11209         * gnulib-tool (func_usage): Document option --no-libtool.
11210         Handle option --no-libtool.
11211         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
11212         for changed semantics of $libtool variable.
11213         (func_import): Likewise. If libtool is not used, show this through
11214         an option --no-libtool.
11215         (func_create_testdir): Update.
11216
11217 2006-07-29  Bruno Haible  <bruno@clisp.org>
11218
11219         * gnulib-tool (func_import): Extend error message about missing
11220         --doc-base.
11221
11222 2006-07-29  Bruno Haible  <bruno@clisp.org>
11223
11224         * gnulib-tool (func_import): Don't create the $docbase directory if
11225         there is no file to store there.
11226
11227 2006-07-29  Bruno Haible  <bruno@clisp.org>
11228
11229         * gnulib-tool (autoconf_minversion): If a --dir option is given and
11230         relevant, look for configure.ac there, not in the current directory.
11231         Also use a simple search for AC_PREREQ, not "autoconf --trace".
11232
11233 2006-07-29  Bruno Haible  <bruno@clisp.org>
11234
11235         * gnulib-tool (SORT): New variable.
11236         (func_usage): Undocument --assume-autoconf option.
11237         Remove --assume-autoconf option handling.
11238         (autoconf_minversion): Determine from the contents of configure.ac.
11239         (func_import): Remove autoconf_minversion handling.
11240         Suggested by Eric Blake.
11241
11242 2006-07-29  Bruno Haible  <bruno@clisp.org>
11243
11244         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
11245
11246 2006-07-29  Bruno Haible  <bruno@clisp.org>
11247
11248         * config/srclist.txt (*setenv.[ch]): Remove rules.
11249
11250 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11251
11252         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
11253
11254 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11255
11256         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
11257         arpa/inet.h.
11258
11259 2006-07-28  Simon Josefsson  <jas@extundo.com>
11260
11261         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
11262         * modules/inet_pton (Depends-on): Likewise.
11263
11264 2006-07-28  Simon Josefsson  <jas@extundo.com>
11265
11266         * m4/netinet_in_h.m4: New file.
11267
11268 2006-07-28  Simon Josefsson  <jas@extundo.com>
11269
11270         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
11271         #include's.
11272
11273 2006-07-28  Simon Josefsson  <jas@extundo.com>
11274
11275         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
11276         #include's.
11277
11278 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
11279
11280         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
11281         setgid on directories only if they set these bits.
11282         * lib/modechange.h: Remove obsolete comment about masks.
11283
11284 2006-07-28  Eric Blake  <ebb9@byu.net>
11285
11286         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
11287         macro expansion.
11288
11289 2006-07-28  Bruno Haible  <bruno@clisp.org>
11290
11291         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
11292
11293 2006-07-28  Bruno Haible  <bruno@clisp.org>
11294
11295         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
11296
11297 2006-07-28  Bruno Haible  <bruno@clisp.org>
11298
11299         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
11300         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
11301         Define fallbacks.
11302         Avoids link error on FreeBSD 4.x.
11303         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11304
11305         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
11306         encoding.
11307         * lib/mbswidth.c (iswcntrl): Likewise.
11308
11309 2006-07-27  Bruno Haible  <bruno@clisp.org>
11310
11311         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
11312         test.
11313
11314 2006-07-27  Bruno Haible  <bruno@clisp.org>
11315
11316         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
11317         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
11318         defined.
11319
11320 2006-07-26  Eric Blake  <ebb9@byu.net>
11321
11322         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
11323
11324 2006-07-26  Eric Blake  <ebb9@byu.net>
11325
11326         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
11327         like mingw that lack mkstemp.
11328         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
11329         avoid compilation warning on mingw.
11330
11331 2006-07-26  Bruno Haible  <bruno@clisp.org>
11332
11333         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
11334         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
11335         INT_FAST*_MIN, INTPTR_MIN.
11336
11337 2006-07-25  Bruno Haible  <bruno@clisp.org>
11338
11339         * modules/version-etc (Depends-on): Add stdarg.
11340
11341 2006-07-25  Bruno Haible  <bruno@clisp.org>
11342
11343         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
11344         complex commands.
11345
11346 2006-07-25  Bruno Haible  <bruno@clisp.org>
11347
11348         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
11349         defined in <stdarg.h> or config.h.
11350
11351 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
11352
11353         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
11354         (gl_STDIO_SAFER): Remove.
11355
11356 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
11357
11358         * MODULES.html.sh (File stream based Input/Output):
11359         Add fopen-safer, tmpfile-safer; remove stdio-safer.
11360         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
11361         * modules/fopen-safer, modules/tmpfile-safer: New files.
11362         * modules/stdio-safer: Remove.
11363
11364 2006-07-24  Bruno Haible  <bruno@clisp.org>
11365
11366         * modules/tmpdir: New file.
11367         * MODULES.html.sh (File system functions): Add it.
11368
11369 2006-07-24  Bruno Haible  <bruno@clisp.org>
11370
11371         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
11372         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
11373
11374 2006-07-24  Bruno Haible  <bruno@clisp.org>
11375
11376         * modules/clean-temp: New file.
11377
11378 2006-07-24  Bruno Haible  <bruno@clisp.org>
11379
11380         * m4/tmpdir.m4: New file, from GNU gettext.
11381
11382 2006-07-24  Bruno Haible  <bruno@clisp.org>
11383
11384         * lib/tmpdir.h: New file, from GNU gettext.
11385         * lib/tmpdir.c: New file, from GNU gettext.
11386
11387 2006-07-24  Bruno Haible  <bruno@clisp.org>
11388
11389         * lib/clean-temp.h: New file, from GNU gettext.
11390         * lib/clean-temp.c: New file, from GNU gettext.
11391
11392 2006-07-23  Eric Blake  <ebb9@byu.net>
11393
11394         * modules/stdio-safer (Files): Add tmpfile-safer.c.
11395         (Depends-on): Add binary-io.
11396
11397 2006-07-23  Eric Blake  <ebb9@byu.net>
11398
11399         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
11400
11401 2006-07-23  Eric Blake  <ebb9@byu.net>
11402
11403         * lib/tmpfile-safer.c: New file.
11404         * lib/stdio-safer.h (fopen_safer): Add prototype.
11405         * lib/stdio--.h (tmpfile): Make safer.
11406
11407 2006-07-23  Bruno Haible  <bruno@clisp.org>
11408
11409         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
11410         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
11411         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
11412         gl_linked_remove_at): Use it.
11413
11414 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11415         and Simon Josefsson <jas@extundo.com>
11416
11417         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
11418
11419         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
11420
11421 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11422
11423         * modules/close-stream: New file.
11424         * modules/closeout (Description): Make it clear that it exits
11425         with a diagnostic on error.
11426         (Depends-on): Add close-stream.  Remove fpending, stdbool.
11427         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
11428
11429 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11430
11431         * m4/close-stream.m4: New file.
11432
11433 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11434
11435         * lib/close-stream.c, lib/close-stream.h: New files.
11436
11437 2006-07-22  Bruno Haible  <bruno@clisp.org>
11438
11439         Merge from GNU gettext 0.15.
11440
11441         2006-05-01  Bruno Haible  <bruno@clisp.org>
11442
11443                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
11444
11445         2006-07-22  Bruno Haible  <bruno@clisp.org>
11446
11447                 * modules/javaversion: New file.
11448                 * MODULES.html.sh (Java): Add javaversion.
11449
11450         2006-03-12  Bruno Haible  <bruno@clisp.org>
11451
11452                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
11453
11454         2005-12-04  Bruno Haible  <bruno@clisp.org>
11455
11456                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
11457                 (untested).
11458
11459         2006-06-21  Bruno Haible  <bruno@clisp.org>
11460
11461                 Avoid warnings from recent versions of mcs.
11462                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
11463                 -o, -L, -r any more. Use options documented since mcs-1.0
11464                 instead. Similarly for -g.
11465
11466         2005-12-04  Bruno Haible  <bruno@clisp.org>
11467
11468                 * build-aux/csharpcomp.sh.in: Suffix for resources is
11469                 .resources, not .resource.
11470
11471         2005-07-09  Bruno Haible  <bruno@clisp.org>
11472
11473                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
11474                 add a .dll suffix.
11475                 Reported by Mark Junker <mjscod@gmx.de>.
11476
11477         2006-07-22  Bruno Haible  <bruno@clisp.org>
11478
11479                 * modules/gettext: Upgrade to gettext-0.15.
11480                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
11481                 m4/visibility.m4.
11482                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
11483
11484 2006-07-22  Bruno Haible  <bruno@clisp.org>
11485
11486         Merge from GNU gettext 0.15.
11487
11488         2006-03-25  Bruno Haible  <bruno@clisp.org>
11489
11490                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
11491
11492         2006-07-21  Bruno Haible  <bruno@clisp.org>
11493
11494                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
11495                 "1.1".
11496
11497         2006-05-09  Bruno Haible  <bruno@clisp.org>
11498
11499                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
11500                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
11501                 for the conftestver execution.
11502
11503         2006-05-01  Bruno Haible  <bruno@clisp.org>
11504
11505                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
11506                 optional target-version argument. Verify that the compiler
11507                 groks source of the specified source-version, or add -source
11508                 option as necessary. Verify that the compiler produces
11509                 bytecode in the specified target-version, or add -target and
11510                 -source options as necessary. Make the result of the test
11511                 available as variable CONF_JAVAC. Also log error output in
11512                 config.log.
11513
11514         2006-03-11  Bruno Haible  <bruno@clisp.org>
11515
11516                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
11517
11518         2006-05-09  Bruno Haible  <bruno@clisp.org>
11519
11520                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
11521                 CLASSPATH_SEPARATOR to a semicolon.
11522
11523         2006-03-12  Bruno Haible  <bruno@clisp.org>
11524
11525                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
11526                 available as variable CONF_JAVA, for subsequent autoconf
11527                 tests. Also log error output in config.log.
11528
11529         2006-07-19  Bruno Haible  <bruno@clisp.org>
11530
11531                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
11532                 that getline works on glibc2 systems. Needed to avoid trouble
11533                 in relocatable.c.
11534                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
11535
11536         2005-12-04  Bruno Haible  <bruno@clisp.org>
11537
11538                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
11539                 launcher (untested).
11540
11541         2005-12-04  Bruno Haible  <bruno@clisp.org>
11542
11543                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
11544
11545         2006-07-22  Bruno Haible  <bruno@clisp.org>
11546
11547                 * gettext.m4: Update from GNU gettext-0.15.
11548                 * nls.m4: Likewise.
11549                 * po.m4: Likewise.
11550                 * inttypes-pri.m4: Likewise.
11551                 * inttypes-h.m4: Renamed from inttypes.m4.
11552                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
11553
11554 2006-07-22  Bruno Haible  <bruno@clisp.org>
11555
11556         Merge from GNU gettext 0.15.
11557
11558         2005-07-05  Bruno Haible  <bruno@clisp.org>
11559
11560                 * printf-args.c (printf_fetchargs): Work around broken
11561                 definition of wint_t on mingw.
11562
11563         2005-02-12  Bruno Haible  <bruno@clisp.org>
11564
11565                 * xallocsa.h: Add extern "C" for C++.
11566
11567         2006-05-17  Bruno Haible  <bruno@clisp.org>
11568
11569                 Cygwin portability.
11570                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
11571
11572         2006-04-30  Bruno Haible  <bruno@clisp.org>
11573
11574                 * progreloc.c: Include <mach-o/dyld.h> if available.
11575                 (find_executable): Use _NSGetExecutablePath when possible.
11576
11577         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
11578
11579                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
11580                 function.
11581
11582         2005-12-29  Bruno Haible  <bruno@clisp.org>
11583
11584                 * progreloc.c (set_program_name_and_installdir): Fix
11585                 compilation error.
11586
11587         2005-12-04  Bruno Haible  <bruno@clisp.org>
11588
11589                 Cygwin portability.
11590                 * progreloc.c: Include <windows.h> also on Cygwin.
11591                 (find_executable): Add support for Cygwin.
11592                 (set_program_name_and_installdir): Handle also platforms with
11593                 nonempty EXEEXT.
11594
11595         2006-07-11  Bruno Haible  <bruno@clisp.org>
11596
11597                 * javacomp.c: Fix a comment.
11598                 Reported by Jim Meyering.
11599
11600         2006-04-30  Bruno Haible  <bruno@clisp.org>
11601
11602                 * javacomp.h (compile_java_class): Add source_version,
11603                 target_version arguments.
11604                 * javacomp.c: Rewritten to choose only a compiler that
11605                 respects the specified source_version and target_version.
11606
11607         2006-06-27  Bruno Haible  <bruno@clisp.org>
11608
11609                 Assume correct S_ISDIR macro.
11610                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
11611
11612         2006-07-22  Bruno Haible  <bruno@clisp.org>
11613
11614                 * javaversion.h: New file, from GNU gettext.
11615                 * javaversion.c: New file, from GNU gettext.
11616                 * javaversion.java: New file, from GNU gettext.
11617                 * javaversion.class: New file, from GNU gettext.
11618
11619         2006-05-17  Bruno Haible  <bruno@clisp.org>
11620
11621                 Cygwin portability.
11622                 * javaexec.c (execute_java_class): Test for jview program
11623                 also on Cygwin.
11624
11625         2006-04-09  Bruno Haible  <bruno@clisp.org>
11626
11627                 * fatal-signal.c: Don't include string.h.
11628                 (at_fatal_signal): Use a copying loop instead of memcpy.
11629
11630         2005-12-04  Bruno Haible  <bruno@clisp.org>
11631
11632                 * csharpexec.c: Add support for 'clix' launcher (untested).
11633                 (execute_csharp_using_sscli): New function.
11634                 (execute_csharp_program): Call it.
11635
11636         2006-06-21  Bruno Haible  <bruno@clisp.org>
11637
11638                 Avoid warnings from recent versions of mcs.
11639                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
11640                 -o, -L, -r any more. Use options documented since mcs-1.0
11641                 instead. Similarly for -g.
11642
11643         2005-07-09  Bruno Haible  <bruno@clisp.org>
11644
11645                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
11646                 add a .dll suffix.
11647                 Reported by Mark Junker <mjscod@gmx.de>.
11648
11649         2006-06-17  Bruno Haible  <bruno@clisp.org>
11650
11651                 * config.charset: Update for NetBSD 3.0.
11652
11653         2006-05-17  Bruno Haible  <bruno@clisp.org>
11654
11655                 Cygwin portability.
11656                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
11657
11658         2006-05-16  Bruno Haible  <bruno@clisp.org>
11659
11660                 * localcharset.c [CYGWIN]: Include <windows.h>.
11661                 (get_charset_aliases): For Cygwin, return the same CPxxx
11662                 aliases list as under WIN32.
11663                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
11664                 the environment variables. Fall back to GetACP().
11665
11666         2006-04-05  Bruno Haible  <bruno@clisp.org>
11667
11668                 * config.charset: Update Juan Manuel Guerrero's address.
11669
11670         2005-02-12  Bruno Haible  <bruno@clisp.org>
11671
11672                 * allocsa.h: Add extern "C" for C++.
11673
11674         2005-02-10  Bruno Haible  <bruno@clisp.org>
11675
11676                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
11677                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
11678
11679         2006-07-22  Bruno Haible  <bruno@clisp.org>
11680
11681                 * gettext.h: Update to GNU gettext-0.15.
11682
11683 2006-07-22  Bruno Haible  <bruno@clisp.org>
11684
11685         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
11686         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
11687         lib-prefix.m4, longdouble.m4, ssize_t.m4.
11688
11689 2006-07-21  Eric Blake  <ebb9@byu.net>
11690
11691         * modules/stdlib-safer: New file.
11692         * MODULES.html.sh (File stream based Input/Output): Add
11693         stdlib-safer.
11694
11695 2006-07-21  Eric Blake  <ebb9@byu.net>
11696
11697         * lib/stdlib-safer.h: New file from coreutils, required by
11698         stdlib--.h.
11699
11700 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
11701
11702         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
11703
11704 2006-07-20  Bruno Haible  <bruno@clisp.org>
11705
11706         * gnulib-tool: Recognize new option --assume-autoconf.
11707         (autoconf_minversion): New variable.
11708         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
11709
11710 2006-07-20  Bruno Haible  <bruno@clisp.org>
11711
11712         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
11713
11714 2006-07-19  Derek R. Price  <derek@ximbiot.com>
11715
11716         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
11717         Reindent and repaginate.
11718
11719 2006-07-19  Derek Price  <derek@ximbiot.com>
11720
11721         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
11722         Correct grammar.
11723
11724 2006-07-17  Bruno Haible  <bruno@clisp.org>
11725
11726         * modules/list: New file.
11727         * modules/array-list: New file.
11728         * modules/carray-list, modules/carray-list-tests: New files.
11729         * modules/linked-list, modules/linked-list-tests: New files.
11730         * modules/avltree-list, modules/avltree-list-tests: New files.
11731         * modules/rbtree-list, modules/rbtree-list-tests: New files.
11732         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
11733         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
11734         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
11735         * modules/oset: New file.
11736         * modules/array-oset: New file.
11737         * modules/avltree-oset, modules/avltree-oset-tests: New files.
11738         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
11739         * tests/test-carray_list.c: New file.
11740         * tests/test-linked_list.c: New file.
11741         * tests/test-avltree_list.c: New file.
11742         * tests/test-rbtree_list.c: New file.
11743         * tests/test-linkedhash_list.c: New file.
11744         * tests/test-avltreehash_list.c: New file.
11745         * tests/test-rbtreehash_list.c: New file.
11746         * tests/test-avltree_oset.c: New file.
11747         * tests/test-rbtree_oset.c: New file.
11748         * MODULES.html.sh (Container data structures): New section.
11749
11750 2006-07-17  Bruno Haible  <bruno@clisp.org>
11751
11752         * m4/gl_list.m4: New file.
11753
11754 2006-07-17  Bruno Haible  <bruno@clisp.org>
11755
11756         * lib/gl_list.h: New file.
11757         * lib/gl_list.c: New file.
11758         * lib/gl_array_list.h: New file.
11759         * lib/gl_array_list.c: New file.
11760         * lib/gl_carray_list.h: New file.
11761         * lib/gl_carray_list.c: New file.
11762         * lib/gl_linked_list.h: New file.
11763         * lib/gl_linked_list.c: New file.
11764         * lib/gl_anylinked_list1.h: New file.
11765         * lib/gl_anylinked_list2.h: New file.
11766         * lib/gl_avltree_list.h: New file.
11767         * lib/gl_avltree_list.c: New file.
11768         * lib/gl_anyavltree_list1.h: New file.
11769         * lib/gl_anyavltree_list2.h: New file.
11770         * lib/gl_rbtree_list.h: New file.
11771         * lib/gl_rbtree_list.c: New file.
11772         * lib/gl_anyrbtree_list1.h: New file.
11773         * lib/gl_anyrbtree_list2.h: New file.
11774         * lib/gl_anytree_list1.h: New file.
11775         * lib/gl_anytree_list2.h: New file.
11776         * lib/gl_linkedhash_list.h: New file.
11777         * lib/gl_linkedhash_list.c: New file.
11778         * lib/gl_anyhash_list1.h: New file.
11779         * lib/gl_anyhash_list2.h: New file.
11780         * lib/gl_avltreehash_list.h: New file.
11781         * lib/gl_avltreehash_list.c: New file.
11782         * lib/gl_rbtreehash_list.h: New file.
11783         * lib/gl_rbtreehash_list.c: New file.
11784         * lib/gl_anytreehash_list1.h: New file.
11785         * lib/gl_anytreehash_list2.h: New file.
11786
11787         * lib/gl_oset.h: New file.
11788         * lib/gl_oset.c: New file.
11789         * lib/gl_array_oset.h: New file.
11790         * lib/gl_array_oset.c: New file.
11791         * lib/gl_avltree_oset.h: New file.
11792         * lib/gl_avltree_oset.c: New file.
11793         * lib/gl_rbtree_oset.h: New file.
11794         * lib/gl_rbtree_oset.c: New file.
11795         * lib/gl_anytree_oset.h: New file.
11796
11797 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11798
11799         * m4/mkancesdirs.m4: New file.
11800         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
11801         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
11802         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
11803         it.
11804
11805 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11806
11807         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
11808         * lib/mkancesdirs.h: New files.
11809         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
11810         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
11811         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
11812         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
11813         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
11814         callers changed.  Revamp internals significantly, by not
11815         attempting to create directories that are temporarily more
11816         permissive than the final results.  Do not attempt to use
11817         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
11818         This removes some race conditions, fixes some bugs, and simplifies
11819         things.  Use new dirchownmod function to do owner and mode changes.
11820         * lib/mkdir-p.h: Likewise.
11821         * lib/modechange.c (octal_to_mode): New function.
11822         (struct mode_change): New member mentioned.
11823         (make_node_op_equals): New arg mentioned.  All callers changed.
11824         (mode_compile): Keep track of which mode bits the user has explicitly
11825         mentioned.
11826         (mode_adjust): New arg DIR, so that we implement the X op correctly.
11827         New arg PMODE_BITS, to keep track of which mode bits the user
11828         mentioned; it treats S_ISUID and S_ISGID speciall.
11829         All callers changed.
11830         * lib/modechange.h: Likewise.
11831
11832 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11833
11834         * MODULES.html.sh: Add mkancestors.
11835         * modules/mkancesdirs: New module.
11836         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
11837         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
11838         The chdir-safer and afs files are now orphans; I'll remove them
11839         unless someone speaks up.
11840         Add lib/dirchownmod.c, lib/dirchownmod.h.
11841         (Depends-on): Remove alloca, chown, save-cwd, dirname.
11842         Add lchown, mkancesdirs.
11843         (Maintainer): Add self.
11844
11845 2006-07-15  Karl Berry  <karl@gnu.org>
11846
11847         * gnulib-tool: help message wording/arrangement.
11848
11849 2006-07-14  Simon Josefsson  <jas@extundo.com>
11850
11851         * doc/gnulib.texi (Libtool and Windows): New section.
11852
11853 2006-07-12  Simon Josefsson  <jas@extundo.com>
11854
11855         * modules/gendocs (License): Fix license, approved by Karl.
11856
11857 2006-07-12  Eric Blake  <ebb9@byu.net>
11858
11859         * MODULES.html.sh: Add gendocs.
11860
11861 2006-07-11  Eric Blake  <ebb9@byu.net>
11862
11863         * modules/fdl: New module, to install doc/fdl.texi.
11864         * MODULES.html.sh: Add new section for documentation modules.
11865         * gnulib-tool: Avoid space-tab.
11866         (--doc-base): New option, to manage files from doc.
11867
11868 2006-07-11  Eric Blake  <ebb9@byu.net>
11869
11870         * m4/absolute-header.m4: Fix comments to match recent change.
11871
11872 2006-07-11  Eric Blake  <ebb9@byu.net>
11873
11874         * gnulib-tool: List --doc-base before --tests-base.
11875
11876 2006-07-11  Derek R. Price  <derek@ximbiot.com>
11877
11878         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
11879
11880 2006-07-11  Bruno Haible  <bruno@clisp.org>
11881
11882         * README: Mention where to put documentation.
11883
11884 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11885
11886         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
11887
11888 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11889
11890         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
11891         to stdint.m4.
11892
11893 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11894
11895         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
11896         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
11897         "no/such/file/stdint.h" when there is no such file, so that
11898         the resulting C code can be parsed by dodgy compilers.
11899         Problems reported by Bob Proulx.
11900
11901 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11902
11903         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
11904         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11905         macros into the GNU _D_EXACT_NAMLEN.
11906         * lib/savedir.c:  Likewise.
11907         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
11908
11909 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11910         and Paul Eggert  <eggert@cs.ucla.edu>
11911
11912         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
11913         * m4/savedir.m4:
11914         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11915         macros into the GNU _D_EXACT_NAMLEN.
11916
11917 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11918
11919         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
11920         around the absolute name, to work around a problem with the HP-UX
11921         11.23 native C compiler, reported by Bob Proulx.
11922
11923 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11924
11925         * doc/maintain.texi, make-stds.texi: Sync from
11926         <http://savannah.gnu.org/projects/gnustandards>.
11927
11928 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11929
11930         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
11931
11932 2006-07-09  Jim Meyering  <jim@meyering.net>
11933
11934         * m4/glob.m4: Remove a doubled word in a comment.
11935
11936 2006-07-09  Jim Meyering  <jim@meyering.net>
11937
11938         * lib/argp-pv.c: Remove a doubled word in a comment.
11939         * lib/check-version.c (check_version): Likewise.
11940         * lib/javacomp.c (compile_java_class): Likewise.
11941
11942 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11943
11944         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
11945         for the benefit of people using Autoconf 2.60.  If you want to
11946         support older Autoconf versions you can copy m4/onceonly_2_57.m4
11947         (or m4/onceonly.m4, if pre-2.57) manually.
11948
11949 2006-07-08  Jim Meyering  <jim@meyering.net>
11950
11951         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
11952         comment.
11953         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
11954         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
11955         comment.
11956
11957 2006-07-08  Jim Meyering  <jim@meyering.net>
11958
11959         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
11960
11961 2006-07-07  Simon Josefsson  <jas@extundo.com>
11962
11963         * tests/test-crc.c: Change expected crc value, the test vector
11964         were probably computed using the old broken crc.c?
11965
11966 2006-07-06  Simon Josefsson  <jas@extundo.com>
11967
11968         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
11969         now the canonical place for the M4 file).
11970
11971         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
11972         from the sys_socket dependency now.
11973
11974         * modules/inet_pton (Files): Ditto.
11975
11976         * modules/inet_ntop (Files): Ditto.
11977
11978 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11979
11980         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
11981         not gl_PREREQ_GETUSERSHELL.
11982
11983 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11984
11985         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
11986         with only one argument, for Autoconf 2.60.
11987         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
11988         expand to nothing, so add a shell command to avoid syntax error.
11989         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
11990
11991 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11992
11993         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
11994
11995 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11996
11997         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
11998         no longer needed.  Check for isblank decl.
11999         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
12000         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
12001         of existence.
12002
12003 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12004
12005         * lib/getloadavg.c: Use __VMS, not VMS.
12006         * lib/getopt.c: Likewise.
12007         * lib/getpagesize.h: Likewise.
12008         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
12009         and probably does not work.
12010
12011 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12012
12013         * lib/.cppi-disable: Add wcwidth.
12014         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
12015         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
12016         (ISGRAPH): Remove.  All uses changed to isgraph.
12017         (FOLD) [!defined _LIBC]: Remove special case.
12018         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
12019         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
12020         HAVE_ISBLANK.
12021         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
12022         case.
12023
12024 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
12025
12026         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
12027         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
12028         brackets.  Other minor changes to suppress some compiler
12029         warnings.
12030
12031 2006-07-06  Derek R. Price  <derek@ximbiot.com>
12032         and Paul Eggert  <eggert@cs.ucla.edu>
12033
12034         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
12035         of invoking obsolescent AC_HEADER_DIRENT macro.
12036         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
12037         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
12038         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
12039         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
12040         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
12041         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
12042         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
12043         * m4/readdir.m4: Remove; no longer needed.
12044
12045 2006-07-06  Derek R. Price  <derek@ximbiot.com>
12046         and Paul Eggert  <eggert@cs.ucla.edu>
12047
12048         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
12049         Don't worry about this obsolete case any more.
12050         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
12051         directories.
12052         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
12053         worry about this obsolete case any more.
12054         * lib/fts.c: Likewise.
12055         * lib/getcwd.c: Likewise.
12056         * lib/glob.h: Likewise.
12057         * lib/savedir.c: Likewise.
12058
12059 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12060
12061         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
12062         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
12063         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
12064         needed.
12065         All uses removed.
12066         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12067         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
12068         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
12069         needed.
12070         * m4/getdate.m4 (gl_GETDATE): Likewise.
12071         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
12072         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
12073         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
12074         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12075         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
12076         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
12077         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
12078         needed.
12079
12080 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12081
12082         * lib/memcasecmp.c: Include <limits.h>.
12083         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
12084         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
12085         Don't assume isdigit succeeds only on '0' through '9'.
12086
12087 2006-07-05  Eric Blake  <ebb9@byu.net>
12088
12089         * modules/getaddrinfo (Depends-on): Add snprintf.
12090
12091 2006-07-05  Eric Blake  <ebb9@byu.net>
12092
12093         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
12094         to avoid 'header present but could not be compiled' on cygwin.
12095
12096 2006-07-05  Eric Blake  <ebb9@byu.net>
12097
12098         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
12099         missing from netdb.h.
12100         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
12101
12102 2006-07-05  Derek R. Price  <derek@ximbiot.com>
12103
12104         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
12105         no longer needed.
12106         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
12107         * m4/getdate.m4 (gl_GETDATE): Likewise.
12108         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
12109         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
12110         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
12111         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12112         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
12113
12114 2006-07-05  Derek R. Price  <derek@ximbiot.com>
12115
12116         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
12117         All uses of is_space replaced by isspace.
12118         * lib/exit.h: Don't talk about STDC_HEADERS.
12119         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
12120         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
12121         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
12122         replaced by isprint etc.
12123         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
12124         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
12125         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
12126         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
12127         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
12128         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
12129
12130 2006-07-05  Bruno Haible  <bruno@clisp.org>
12131
12132         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
12133         the function exists, before testing against AIX.
12134         Reported by Martin Lambers <marlam@marlam.de>.
12135
12136 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
12137
12138         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
12139         From Mark D. Baushke.
12140
12141 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
12142
12143         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
12144         to the absolute name, not just one, to bypass Sun C 5.8's
12145         "warning: #include of /usr/include/... may be non-portable".
12146
12147 2006-07-04  Eric Blake  <ebb9@byu.net>
12148
12149         * modules/dirname-tests: New test module.
12150         * tests/test-dirname.c: New file, replacing dirname.c
12151         TEST_DIRNAME section that was recently deleted.
12152
12153 2006-07-04  Bruno Haible  <bruno@clisp.org>
12154
12155         Assume ANSI C header files and <ctype.h> functions.
12156         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
12157         (mbsnwidth): Use isprint, iscntrl instead.
12158
12159 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12160
12161         Merge from coreutils.
12162         * MODULES.html.sh: Add xstrtold.
12163         * modules/xstrtold: New file.
12164         * modules/cycle-check (Files): Add lib/same-inode.h.
12165         * modules/dirname (Files): Add m4/double-slash-root.m4.
12166         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
12167         * modules/mkdir-p (Files): Add lib/same-inode.h.
12168         * modules/same (Files): Add lib/same-inode.h.
12169
12170 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12171
12172         * m4/absolute-header.m4: Renamed from full-header-path.m4.
12173         This is to keep the terminology clean; POSIX talks about
12174         "absolute pathnames", not "full pathnames", but the GNU
12175         Coding Standards say to use "path" for something else;
12176         so use "absolute" to keep both sides happy.
12177         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
12178         Set gl_absolute_header, not gl_full_header_path.
12179         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
12180         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
12181         All uses changed.
12182
12183         Merge from coreutils.
12184
12185         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
12186
12187         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
12188         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
12189         want to require the building of c-strtod.o.
12190         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
12191         needs -lm directly.
12192         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
12193
12194         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
12195
12196         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
12197         --as-needed option if available.  Problem reported by Albert Chin in
12198         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
12199         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
12200         cc merely issues a bunch of annoying warnings for --as-needed
12201         (this problem was reported by Bob Proulx).  Also, try linking with
12202         -lm to detect a bug in binutils 2.16 (this problem was reported
12203         by Ralf Wildenhues).
12204
12205         2006-06-18  Jim Meyering  <jim@meyering.net>
12206
12207         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
12208         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
12209         macro.
12210         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
12211         also check for glibc-2.4's abort-inducing bug.
12212
12213         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
12214         Low-probability clean-up should be to use rmdir to get rid of
12215         the just-created directory, not unlink.
12216
12217         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
12218         configure fail, and request a bug report to inform us about it.
12219         Add a comment that, barring reports to the contrary, in 2007 we'll
12220         assume ftruncate is universally available.
12221
12222         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
12223
12224         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
12225
12226         2006-03-12  Jim Meyering  <jim@meyering.net>
12227
12228         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
12229         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
12230         * m4/same.m4 (gl_SAME): Likewise.
12231         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
12232
12233         2006-03-11  Eric Blake  <ebb9@byu.net>
12234
12235         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
12236         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
12237         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
12238         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
12239
12240 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12241
12242         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
12243         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
12244         reported by Mark D. Baushke, one in
12245         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
12246
12247         Merge from coreutils.
12248
12249         * lib/.cppi-disable: Add stdint_.h.
12250         * lib/.cvsignore: Add stdint.h.
12251
12252         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
12253
12254         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
12255         both double and long double versions.
12256         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
12257         * lib/xstrtold.c: New file.
12258         * lib/xstrtod.h (xstrtold): New decl.
12259
12260         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12261
12262         * lib/filemode.c (setst): Remove.
12263         (strmode): Rewrite to avoid setst.  This makes the code shorter,
12264         (arguably) clearer, and the generated code is a bit smaller on my
12265         Debian GNU/Linux stable x86 host.
12266
12267         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
12268
12269         * lib/filemode.c: Include "filemode.h" first, to test the interface.
12270         Assume that filemode.h includes sys/types.h and sys/stat.h.
12271         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
12272         (ftypelet): Reorder to put common cases first, for efficiency.
12273         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
12274         to do 'M'.
12275         (strmode): Renamed from mode_string, and now stores 12 bytes instead
12276         of 10, for compatibility with FreeBSD.  All callers changed.
12277         (filemodestring): Now stores 12 bytes instead of 10, and sets file
12278         types that can't be deduced solely from st_mode.  First arg is now a
12279         const pointer.
12280         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
12281         (strmode): Renamed from mode_string.
12282         (filemodestring): New decl.
12283         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
12284         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
12285         needed.
12286         (S_ISPORT, S_ISWHT): New macros, if not already defined.
12287
12288         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
12289
12290         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
12291         fsusage.h now does that.  Include fsusage.h first, to test interface.
12292         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
12293         at most one method (the old code could have generated decls that
12294         didn't conform to C89, not that this was ever exercised).
12295         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
12296
12297         2006-03-19  Jim Meyering  <jim@meyering.net>
12298
12299         Work even in a chroot where d_ino values for entries in "/"
12300         don't match the stat.st_ino values for the same names.
12301         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
12302         number, iterate through all entries again, using lstat instead.
12303         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
12304         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
12305
12306         * lib/getcwd.c (__getcwd): Clarify a comment.
12307         Use memcpy in place of a call to strcpy.
12308
12309         2006-03-12  Jim Meyering  <jim@meyering.net>
12310
12311         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
12312         matches that of the current directory (which we're about to chdir ".."
12313         out of), then save the dev-ino of the parent, instead.
12314
12315         * lib/same-inode.h (SAME_INODE): New file/macro.
12316         * lib/chdir-safer.c (SAME_INODE): Remove definition.
12317         Include "same-inode.h", instead.
12318         * lib/same.c: Likewise.
12319         * lib/cycle-check.h: Include "same-inode.h".
12320         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
12321         * lib/cycle-check.c (SAME_INODE): Remove definition.
12322         * lib/root-dev-ino.h: Include "same-inode.h".
12323
12324         2006-03-11  Eric Blake  <ebb9@byu.net>
12325
12326         * lib/same.c (same_name): s/base_name/last_component/
12327         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
12328         * lib/filenamecat.c (file_name_concat): Likewise.
12329
12330         2006-03-11  Eric Blake  <ebb9@byu.net>,
12331                     Paul Eggert  <eggert@cs.ucla.edu>
12332
12333         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
12334         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
12335         drive prefix.
12336         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
12337         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
12338         (last_component): New method.
12339         * lib/dirname.c (dir_len): Determine when drive letters need a
12340         subsequent slash.  Preserve // when it is special.
12341         (dir_name): Don't append dot when drive letter is absolute.
12342         [TEST_DIRNAME]: Move into a full-blown gnulib test.
12343         * lib/basename.c (base_name): New semantics - malloc the result.
12344         Preserve // when it is special.  Preserve relative files that look
12345         like drive letters.
12346         (base_len): Preserve // when it is special.
12347         (last_component): New method, similar to old base_name semantics.
12348         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
12349         base_name.  Strip redundant slashes from ///.
12350
12351 2006-07-03  Jim Meyering  <jim@meyering.net>
12352
12353         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
12354         macro is used before the first cycle_check call.
12355
12356 2006-07-03  Eric Blake  <ebb9@byu.net>
12357
12358         * modules/dirname (Depends-on): Add xstrndup.
12359
12360 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
12361
12362         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
12363         test cases, so that config.log is a bit easier to follow.
12364
12365 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
12366
12367         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
12368         both are 64 bits, since this seems to be the tradition, and this
12369         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
12370         we ever run into a host that prefers long long to long in this
12371         case, we'll need another configure-time test.  Problem reported by
12372         Jim Meyering.
12373
12374 2006-07-02  Eric Blake  <ebb9@byu.net>
12375
12376         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
12377
12378 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12379
12380         * modules/inttypes (Depends-on): No longer depends on stdint.
12381         * modules/stdint (Description): Say more about assumptions.
12382         Say that the fast types might differ.  Say macros are used.
12383         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
12384         (Makefile.am): Revise list of substituted symbols to match
12385         new stdint.m4.
12386         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
12387         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
12388         * tests/test-stdint.c (verify_same_types)
12389         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
12390         the code conforms to C99/C89.
12391         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
12392         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
12393
12394 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12395
12396         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
12397         but fix a bug, by requiring at least 64 bits.
12398         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
12399         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
12400         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
12401         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
12402
12403         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
12404         changes.  Make 2.59 a prerequisite.  Check and substitute for
12405         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
12406         inttypes.h.  Do not use special include files; just use the
12407         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
12408         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
12409         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
12410         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
12411         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
12412         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
12413         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
12414         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
12415         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
12416         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
12417         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
12418         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
12419         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
12420         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
12421         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
12422         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
12423         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
12424         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
12425         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
12426         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
12427         WINT_MAX.  Check for C99 conformance more strictly, by detecting
12428         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
12429         not check for things that C99 does not require, e.g., int8_t.  If
12430         a test isn't needed unless <stdint.h> isn't working, and is
12431         unlikely to be needed for any other reason, then don't do it
12432         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
12433         size_t, since we assume C89 freestanding at least.  Do not check
12434         for sig_atomic_t, wchar_t, or wint_t, since the code now does
12435         the right thing even if the types are not defined.  Instead use:
12436         (gl_STDINT_TYPE_PROPERTIES): New macro.
12437         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
12438         testing whether <sys/types.h> clashes, as Autoconf does this for
12439         us now.  All uses removed.
12440         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
12441         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
12442         (gl_CHECK_TYPE_SAME):
12443         Remove; no longer needed.
12444         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
12445         exists, since we'll return 0 anyway in that case.
12446         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
12447
12448 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12449
12450         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
12451         possible collision with system files.
12452         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
12453         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
12454         WCHAR_MIN and WCHAR_MAX in this case.
12455         (<stddef.h>): Do not include; no longer needed.
12456         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
12457         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
12458         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
12459         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
12460         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
12461         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
12462         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
12463         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
12464         !defined(__c99))]: Include in this case too, since it's harmless
12465         now.
12466         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
12467         dangerous to do so.
12468         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
12469         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
12470         (_STDINT_MIN, _STDINT_MAX): New macros.
12471         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
12472         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
12473         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
12474         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
12475         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
12476         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
12477         macros, not typedefs; this simplifies things quite a bit.
12478         Use long int for all types narrower than int64_t.
12479         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
12480         Define in terms of long long int or int64_t or long int,
12481         not int64_t or int32_t.  This saves some compile-time testing.
12482         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
12483         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
12484         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
12485         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
12486         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
12487         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
12488         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
12489         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
12490         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
12491         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
12492         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12493         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12494         undef any previous version and define our own version, for
12495         simplicity and consistency with the new macros for types.
12496         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12497         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12498         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
12499         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
12500         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
12501         @WINT_T_SUFFIX@ to keep things simple here.
12502         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
12503         Simplify by assuming typical 8/16/32/64 host, since we're
12504         already doing that elsewhere anyway.
12505         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
12506         and assume long long int is 64 bits if available.  This
12507         speeds up 'configure'.
12508
12509 2006-07-01  Eric Blake  <ebb9@byu.net>
12510
12511         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
12512         Reported by Andreas Buening.
12513
12514 2006-07-01  Eric Blake  <ebb9@byu.net>
12515
12516         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
12517
12518 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
12519
12520         * lib/getaddrinfo.c: fixed typo
12521
12522 2006-06-29  Jim Meyering  <jim@meyering.net>
12523
12524         * modules/strftime (Maintainer): Add my name, since with the
12525         FPRINTFTIME changes strftime.c has forked from glibc.
12526
12527 2006-06-29  Eric Blake  <ebb9@byu.net>
12528
12529         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
12530
12531 2006-06-29  Eric Blake  <ebb9@byu.net>
12532
12533         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
12534
12535 2006-06-29  Eric Blake  <ebb9@byu.net>
12536
12537         * lib/stat_.h: New file.
12538
12539 2006-06-29  Eric Blake  <ebb9@byu.net>
12540
12541         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
12542         unused static function.
12543
12544 2006-06-29  Eric Blake  <ebb9@byu.net>
12545
12546         * doc/functions.texi (Function Portability): Document missing lstat
12547         on mingw.
12548
12549 2006-06-29  Eric Blake  <ebb9@byu.net>
12550
12551         * MODULES.html.sh: Add sys_stat.
12552         * modules/sys_stat: New module.
12553         * modules/mkstemp (Depends-on): Add sys_stat.
12554
12555 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12556
12557         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
12558
12559 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12560
12561         * m4/c-bs-a.m4: Removed.
12562
12563 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12564
12565         * lib/strftime.c: Assume strftime() exists.
12566
12567 2006-06-29  Derek Price  <derek@ximbiot.com>
12568
12569         * modules/c-bs-a: Removed - \a is C89.
12570         * MODULES.html.sh: Remove c-bs-a.
12571
12572 2006-06-29  Bruno Haible  <bruno@clisp.org>
12573
12574         * modules/wcwidth (License): Change to LGPL.
12575
12576 2006-06-28  Simon Josefsson  <jas@extundo.com>
12577
12578         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
12579         on _WIN32.
12580
12581         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
12582         getnameinfo.
12583
12584 2006-06-28  Simon Josefsson  <jas@extundo.com>
12585
12586         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
12587
12588 2006-06-28  Simon Josefsson  <jas@extundo.com>
12589
12590         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
12591         functions there.  It will succeed on Windows XP, but on Windows
12592         2000 and (presumably) earlier, it will fail, and use the internal
12593         re-implementation.
12594         (use_win32_p): New function.
12595         (getaddrinfo): Use strtoul on servname, to support numeric ports.
12596         Support AI_NUMERICSERV to disable getservbyname.
12597         (getnameinfo): New function, only supports
12598         NI_NUMERICHOST|NI_NUMERICSERV for now.
12599
12600         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
12601         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
12602         getnameinfo.
12603
12604 2006-06-28  Eric Blake  <ebb9@byu.net>
12605
12606         * modules/wcwidth: New file.
12607         * modules/mbchar (Depends-on): Add wcwidth.
12608         * modules/mbswidth (Depends-on): Add wcwidth.
12609         * MODULES.html.sh: Add wcwidth.
12610
12611 2006-06-28  Eric Blake  <ebb9@byu.net>
12612
12613         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
12614         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
12615
12616 2006-06-28  Eric Blake  <ebb9@byu.net>
12617
12618         * lib/xvasprintf.h: Fix comments.
12619
12620 2006-06-28  Eric Blake  <ebb9@byu.net>
12621
12622         * lib/mbchar.h (wcwidth): Include wcwidth.h.
12623         * lib/mbswidth.c (wcwidth): Move from here...
12624         * lib/wcwidth.h: ...to this new file.
12625
12626 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12627
12628         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
12629
12630         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
12631         it's obsolete.
12632         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
12633
12634 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12635
12636         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
12637         Autoconf 2.60 says this stuff was obsolete.
12638
12639 2006-06-28  Bruno Haible  <bruno@clisp.org>
12640
12641         * modules/wcwidth (Files): Add m4/wchar_t.m4.
12642
12643 2006-06-28  Bruno Haible  <bruno@clisp.org>
12644
12645         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
12646         gt_TYPE_WCHAR_T.
12647
12648 2006-06-28  Bruno Haible  <bruno@clisp.org>
12649
12650         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
12651         declaration for wcwidth.
12652         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
12653
12654 2006-06-28  Bruno Haible  <bruno@clisp.org>
12655
12656         * lib/mkdtemp.c [MINGW]: Include <io.h>.
12657         (mkdir): Define using _mkdir.
12658
12659 2006-06-28  Bruno Haible  <bruno@clisp.org>
12660
12661         * lib/getaddrinfo.h: Fix POSIX URL.
12662         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
12663         _WIN32.
12664         (use_win32_p): Make static.
12665         (getaddrinfo): Reject service name if it is empty or does not consist
12666         solely of decimal digits, or if its value is > 65535.
12667         (getnameinfo): Remove useless casts.
12668
12669 2006-06-27  Simon Josefsson  <jas@extundo.com>
12670
12671         * modules/sys_select: New file, suggested by Bruno Haible, Paul
12672         Eggert and Martin Lambers.
12673
12674 2006-06-27  Simon Josefsson  <jas@extundo.com>
12675
12676         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
12677         Eggert and Martin Lambers.
12678
12679 2006-06-27  Bruno Haible  <bruno@clisp.org>
12680
12681         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
12682         result to 0, not to empty.
12683         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
12684
12685 2006-06-27  Bruno Haible  <bruno@clisp.org>
12686
12687         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
12688
12689 2006-06-26  Simon Josefsson  <jas@extundo.com>
12690
12691         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
12692         present.
12693
12694 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
12695
12696         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
12697         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
12698         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
12699
12700 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
12701
12702         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
12703
12704 2006-06-26  Bruno Haible  <bruno@clisp.org>
12705
12706         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
12707
12708 2006-06-26  Bruno Haible  <bruno@clisp.org>
12709
12710         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
12711
12712 2006-06-26  Bruno Haible  <bruno@clisp.org>
12713
12714         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
12715         SGI C compiler in pre-C99 mode.
12716         Suggested by Mark D. Baushke and Larry Jones.
12717
12718 2006-06-26  Bruno Haible  <bruno@clisp.org>
12719
12720         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
12721         WCHAR_MAX.
12722         Reported by Mark D. Baushke and Larry Jones.
12723
12724 2006-06-26  Bruno Haible  <bruno@clisp.org>
12725
12726         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
12727         in pre-C99 mode.
12728         Suggested by Mark D. Baushke and Larry Jones.
12729
12730 2006-06-23  Simon Josefsson  <jas@extundo.com>
12731             Bruno Haible  <bruno@clisp.org>
12732
12733         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
12734         Emit mostlyclean-local rule.
12735         (func_emit_tests_Makefile_am): Likewise.
12736         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
12737
12738 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
12739
12740         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
12741
12742 2006-06-23  Bruno Haible  <bruno@clisp.org>
12743
12744         * tests/test-stdint.c: Update to match ISO C 99 Technical
12745         Corrigendum 1.
12746
12747 2006-06-23  Bruno Haible  <bruno@clisp.org>
12748
12749         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
12750
12751 2006-06-23  Bruno Haible  <bruno@clisp.org>
12752
12753         * lib/stdint_.h: Treat IRIX like OpenBSD.
12754
12755 2006-06-23  Bruno Haible  <bruno@clisp.org>
12756
12757         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
12758         ISO C 99 Technical Corrigendum 1.
12759
12760 2006-06-22  Simon Josefsson  <jas@extundo.com>
12761
12762         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
12763         MinGW.
12764
12765 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12766
12767         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
12768         needed.  Some compiler complained about some of them.  Problem reported
12769         by Larry Jones in
12770         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
12771
12772 2006-06-21  Simon Josefsson  <jas@extundo.com>
12773
12774         * tests/test-getaddrinfo.c: New file.
12775
12776         * modules/getaddrinfo-tests: New file.
12777
12778         * MODULES.html.sh: Add inet_pton.
12779
12780         * modules/inet_pton: New file.
12781
12782 2006-06-21  Simon Josefsson  <jas@extundo.com>
12783
12784         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
12785         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
12786         of using the (limited) gnulib implementation on Windows XP.
12787
12788         * m4/inet_pton.m4: New file.
12789
12790 2006-06-21  Simon Josefsson  <jas@extundo.com>
12791
12792         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
12793         variable.
12794
12795         * lib/socket_.h: Don't define WINVER.
12796
12797         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
12798         slightly modified to work in gnulib.
12799
12800 2006-06-21  Simon Josefsson  <jas@extundo.com>
12801
12802         * doc/gnulib.texi (Windows sockets): Add.
12803
12804 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12805
12806         * lib/read-file.c (fread_file): Start with buffer allocation of
12807         0 bytes rather than 1 byte; this simplifies the code.
12808         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
12809         code to free buffer and save/restore errno.
12810         (internal_read_file): Remove unused local.
12811
12812 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12813
12814         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
12815         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
12816         Problem reported by Denis Excoffier in
12817         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
12818
12819 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12820
12821         * modules/sys_socket, modules/socklen: Include sys/types since
12822         FreeBSD 4.x's sys/socket.h needs it.
12823
12824 2006-06-19  Simon Josefsson  <jas@extundo.com>
12825
12826         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
12827
12828 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
12829
12830         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
12831
12832 2006-06-19  Bruno Haible  <bruno@clisp.org>
12833
12834         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
12835         and FULL_PATH_INTTYPES_H in angle brackets.
12836         Reported by Mark D. Baushke <mdb@gnu.org>.
12837
12838 2006-06-17  Eric Blake  <ebb9@byu.net>
12839
12840         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
12841         errno.
12842
12843 2006-06-17  Bruno Haible  <bruno@clisp.org>
12844
12845         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
12846         <sys/inttypes.h>.
12847
12848 2006-06-17  Bruno Haible  <bruno@clisp.org>
12849
12850         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
12851         whether errno is declared. Assume <errno.h> declares errno.
12852
12853 2006-06-17  Bruno Haible  <bruno@clisp.org>
12854
12855         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
12856
12857 2006-06-17  Bruno Haible  <bruno@clisp.org>
12858
12859         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
12860         problem on Solaris 2.5.1.
12861
12862 2006-06-16  Eric Blake  <ebb9@byu.net>
12863
12864         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
12865         * lib/unicodeio.c [!defined errno]: Likewise.
12866         * lib/strtol.c [!defined errno]: Likewise.
12867         * lib/strtod.c [!defined errno]: Likewise.
12868
12869 2006-06-15  Eric Blake  <ebb9@byu.net>
12870
12871         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
12872
12873 2006-06-15  Eric Blake  <ebb9@byu.net>
12874
12875         * config/srclist.txt (ssize_t.m4): Lose sync.
12876
12877 2006-06-15  Bruno Haible  <bruno@clisp.org>
12878
12879         * modules/stdint (Files): Include m4/full-header-path.m4,
12880         m4/size_max.m4, m4/wchar_t.m4.
12881         (Makefile.am): Many more substitutions.
12882         * modules/stdint-tests: New file.
12883         * tests/test-stdint.c: New file.
12884
12885 2006-06-15  Bruno Haible  <bruno@clisp.org>
12886
12887         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
12888         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
12889         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
12890         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
12891         gl_CHECK_TYPE_SAME): New macros.
12892
12893 2006-06-15  Bruno Haible  <bruno@clisp.org>
12894
12895         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
12896
12897 2006-06-15  Bruno Haible  <bruno@clisp.org>
12898
12899         * lib/stdint_.h: Rewritten to be fully auto-configured.
12900         Fixes bug on HP-UX/IA64.
12901
12902 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
12903
12904         * lib/getdate.y (__attribute__): Don't define if already defined.
12905         Problem reported by Larry Jones.
12906         * lib/utimens.c (__attribute__): Likewise.
12907
12908 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
12909
12910         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
12911         reported by Andreas Schwab.
12912
12913 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12914             Bruno Haible  <bruno@clisp.org>
12915
12916         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
12917         check for the declaration of strnlen and a run test that exposes the
12918         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
12919         rpl_strndup.
12920
12921 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12922             Bruno Haible  <bruno@clisp.org>
12923
12924         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
12925
12926 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12927
12928         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
12929         compile test, for Tru64 4.0D.
12930
12931 2006-05-28  Karl Berry  <karl@gnu.org>
12932
12933         * config/srclist.txt (printf-args.c): lose sync.
12934
12935 2006-05-26  Martin Lambers  <marlam@marlam.de>
12936
12937         * lib/getpass.c: Updates the test for the native W32 API, and adds
12938         missing includes, thus fixing compilation warnings.
12939
12940 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12941
12942         * lib/exclude.c (exclude_fnmatch): New function.
12943         (excluded_file_name): Call exclude_fnmatch.
12944         * lib/exclude.h (excluded_file_name): New prototype
12945
12946 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
12947
12948         * lib/tempname.c (small_open, large_open): New macros.
12949         (__open, __open64) [!_LIBC]: Remove.
12950         (__gen_tempname): Use small_open and large_open instead of __open
12951         and __open64.  This fixes a portability bug on HP-UX 11.11i
12952         reported by Simon Wing-Tang in
12953         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
12954
12955 2006-05-24  Bruno Haible  <bruno@clisp.org>
12956
12957         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
12958         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
12959         Reported by Thorsten Maerz <torte@netztorte.de> via
12960         Aaron Stone <aaron@serendipity.cx>.
12961
12962 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12963
12964         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
12965         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
12966         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
12967         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
12968         not really conditional on the cache.
12969         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
12970
12971 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12972
12973         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
12974         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
12975         (my_usleep): Don't mishandle maximum value.
12976
12977 2006-05-19  Jim Meyering  <jim@meyering.net>
12978
12979         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
12980
12981 2006-05-17  Bruno Haible  <bruno@clisp.org>
12982
12983         Cygwin portability.
12984         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
12985
12986 2006-05-17  Bruno Haible  <bruno@clisp.org>
12987
12988         * lib/stdint_.h: Fix recognition of Cygwin.
12989
12990 2006-05-15  Bruno Haible  <bruno@clisp.org>
12991
12992         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
12993         on libtool patch by Ralf Wildenhues.
12994
12995 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12996
12997         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
12998         test for C99 conformance; (bool) 0.5 is an integer constant
12999         expression, but (bool) -0.5 is not.  Problem reported by Fedor
13000         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
13001
13002 2006-05-11  Simon Josefsson  <jas@extundo.com>
13003
13004         * m4/xvasprintf.m4: Fix obvious typo.
13005
13006 2006-05-11  Jim Meyering  <jim@meyering.net>
13007
13008         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
13009         James Lemley.
13010
13011 2006-05-10  Simon Josefsson  <jas@extundo.com>
13012
13013         * lib/md4.c: Typo fix, update copyright years.
13014         (K1, K2): Don't use L because it turn computations into 64-bit on
13015         64-bit platforms.
13016
13017 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
13018
13019         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
13020         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
13021         unwanted sign propagation, e.g., on hosts with 64-bit int.
13022         There still are some problems with reeelly weird theoretical hosts
13023         (e.g., 33-bit int) but it's not worth worrying about now.
13024         * lib/sha1.c (rol): Likewise.
13025         (K1, K2, K3, K4): Remove unnecessary L suffix.
13026
13027 2006-05-10  Bruno Haible  <bruno@clisp.org>
13028
13029         * lib/des.c: Cast to avoid warnings.
13030
13031 2006-05-09  Bruno Haible  <bruno@clisp.org>
13032
13033         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
13034         (Depends-on): Depend also on xsize, stdarg.
13035         (configure.ac): Add gl_XVASPRINTF.
13036
13037 2006-05-09  Bruno Haible  <bruno@clisp.org>
13038
13039         * m4/xvasprintf.m4: New file.
13040
13041 2006-05-09  Bruno Haible  <bruno@clisp.org>
13042
13043         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
13044         (EOVERFLOW): Define fallback value.
13045         (xstrcat): New function.
13046         (xvasprintf): Recognize the special case of a string concatenation.
13047
13048 2006-05-08  Eric Blake  <ebb9@byu.net>
13049
13050         * gnulib-tool (func_version): Base copyright year on CVS date.
13051         (func_emit_copyright_notice): New function.
13052         (func_emit_lib_Makefile_am): Use it.
13053         (func_emit_tests_Makefile_am): Likewise.
13054         (func_import): Likewise.
13055
13056 2006-05-08  Bruno Haible  <bruno@clisp.org>
13057
13058         * modules/stdarg: New file.
13059         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
13060
13061 2006-05-08  Bruno Haible  <bruno@clisp.org>
13062
13063         * m4/stdarg.m4: New file, from GNU gettext.
13064
13065 2006-05-08  Bruno Haible  <bruno@clisp.org>
13066
13067         * config/srclist.txt (build-aux/config.rpath): different from latest
13068         release.
13069
13070 2006-05-08  Bruno Haible  <bruno@clisp.org>
13071
13072         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
13073
13074 2006-05-05  Jim Meyering  <jim@meyering.net>
13075
13076         * m4/warning.m4: New file, derived from bison's file by the same name.
13077
13078 2006-05-03  Bruno Haible  <bruno@clisp.org>
13079
13080         * lib/stdint_.h: Shorter URL.
13081         * lib/inttypes.h: Likewise.
13082
13083 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13084
13085         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
13086
13087 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13088
13089         * lib/verify.h: Document the internals better.  Most of this change
13090         was written by Bruno Haible.
13091
13092 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13093
13094         * doc/verify.texi: New file, partly based on a proposal by
13095         Bruno Haible.
13096
13097 2006-05-02  Bruno Haible  <bruno@clisp.org>
13098
13099         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
13100         test from here...
13101         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
13102
13103 2006-04-29  Bruno Haible  <bruno@clisp.org>
13104
13105         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
13106         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
13107
13108 2006-04-29  Bruno Haible  <bruno@clisp.org>
13109
13110         * gnulib-tool: Make --update option actually work.
13111
13112 2006-04-29  Bruno Haible  <bruno@clisp.org>
13113
13114         * doc/gcd.texi: New file.
13115         * doc/gnulib.texi: Include it.
13116
13117 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
13118
13119         * lib/getdate.y (get_date): When adding relative date, start with the
13120         initial time, not with the result of the first mktime call.
13121
13122 2006-04-25  Bruno Haible  <bruno@clisp.org>
13123
13124         * gnulib-tool (func_import): Output the include directives in three
13125         blocks, sorted separately.
13126         Reported by Ben Pfaff <blp@cs.stanford.edu>.
13127
13128 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
13129
13130         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
13131         to define main with arguments, for C++.  Reported by Eric Blake.
13132         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
13133         Prefer 'int main ()' to 'int main (void)', for C++.
13134         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
13135         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
13136         for 'main', for C99 and C++.
13137
13138 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
13139
13140         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
13141         Don't assume that exit status -1 is valid.
13142         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13143         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
13144         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
13145         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
13146         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
13147         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
13148         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
13149         functions can be used without declaring them, or that you can
13150         exit with status -1.
13151         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
13152
13153 2006-04-24  Karl Berry  <karl@gnu.org>
13154
13155         * config/srclist.txt (longdouble.m4): sync lost.
13156
13157 2006-04-24  Eric Blake  <ebb9@byu.net>
13158
13159         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
13160
13161 2006-04-24  Bruno Haible  <bruno@clisp.org>
13162
13163         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
13164         poll() implementation in AIX.
13165         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13166
13167 2006-04-24  Bruno Haible  <bruno@clisp.org>
13168
13169         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
13170         assigned exactly once.
13171
13172 2006-04-23  Claudio Fontana  <claudio@gnu.org>
13173             Bruno Haible  <bruno@clisp.org>
13174
13175         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
13176         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
13177         for AM_CPPFLAGS.
13178
13179 2006-04-23  Bruno Haible  <bruno@clisp.org>
13180
13181         * modules/copy-file: Depend on unistd.
13182         * modules/execute: Likewise.
13183         * modules/fatal-signal: Likewise.
13184         * modules/findprog: Likewise.
13185         * modules/mkdtemp : Likewise.
13186         * modules/pipe: Likewise.
13187         * modules/wait-process: Likewise.
13188
13189 2006-04-23  Bruno Haible  <bruno@clisp.org>
13190
13191         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
13192         condition was already detected.
13193         Reported by Ben Pfaff <blp@cs.stanford.edu>.
13194
13195 2006-04-23  Bruno Haible  <bruno@clisp.org>
13196
13197         * lib/copy-file.c: Include <unistd.h> unconditionally.
13198         * lib/execute.c: Likewise.
13199         * lib/fatal-signal.c: Likewise.
13200         * lib/findprog.c: Likewise.
13201         * lib/mkdtemp.c: Likewise.
13202         * lib/pipe.h: Likewise.
13203         * lib/pipe.c: Likewise.
13204         * lib/wait-process.h: Likewise.
13205
13206 2006-04-23  Bruno Haible  <bruno@clisp.org>
13207
13208         * gnulib-tool (func_usage): Fix --import description. Document
13209         --update.
13210         (func_import): Create temporary file in a temporary directory, if
13211         --dry-run is specified. Silence errors from 'grep' when there are no
13212         m4 files in $m4dir.
13213         (func_create_testdir): Silence errors from 'grep' when there are no
13214         m4 files in $m4dir.
13215         Reported by Karl Berry <karl@freefriends.org>.
13216
13217 2006-04-20  Bruno Haible  <bruno@clisp.org>
13218
13219         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
13220         one argument, so that the code will be portable to Autoconf 2.60.
13221         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
13222         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
13223         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
13224
13225 2006-04-19  Derek Price  <derek@ximbiot.com>
13226             Eric Blake  <ebb9@byu.net>
13227
13228         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
13229         rather than "/full/path.h".  Update comment to match.  Shorten &
13230         generalize m4_translit call via AS_TR_CPP.
13231
13232 2006-04-19  Derek Price  <derek@ximbiot.com>
13233             Eric Blake  <ebb9@byu.net>
13234
13235         * lib/inttypes.h: Correct grammar in comment.
13236
13237 2006-04-18  Derek Price  <derek@ximbiot.com>
13238             Paul Eggert  <eggert@cs.ucla.edu>
13239
13240         * modules/inttypes: New file.
13241         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
13242
13243 2006-04-18  Derek Price  <derek@ximbiot.com>
13244             Paul Eggert  <eggert@cs.ucla.edu>
13245
13246         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
13247         New files.
13248
13249 2006-04-18  Derek Price  <derek@ximbiot.com>
13250             Paul Eggert  <eggert@cs.ucla.edu>
13251
13252         * lib/inttypes.h: New file.
13253         * lib/strtoimax.c: Assume <inttypes.h>.
13254
13255 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
13256
13257         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
13258         isn't mounted.  Problem reported by Kir Kolyshkin.
13259
13260 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13261
13262         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
13263         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
13264         Derek R. Price.
13265         * lib/regex.h (RE_DUP_MAX): Update comment to match current
13266         implementation.
13267
13268 2006-04-12  Eric Blake  <ebb9@byu.net>
13269
13270         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
13271         is now done automatically by the corresponding Autoconf macro.
13272
13273 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
13274
13275         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
13276         time_r.h.
13277
13278 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13279
13280         Merge regex changes from libc, removing some of our
13281         POSIX-conformance changes that were rejected and redoing them in a
13282         less-intrusive way.
13283
13284         * lib/regcomp.c (re_compile_internal, init_dfa):
13285         Length arg is now size_t, not Idx.  All uses changed.
13286         (peek_token): Forward decl now says internal_function.
13287         (__re_error_msgid, __re_error_msgid_idx):
13288         Now static rather than extern with attribute_hidden.
13289         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
13290         For some reason libc prefers K&R style defns for external functions.
13291         (regerror) [!defined _LIBC]: Likewise.
13292         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
13293         (seek_collating_symbol_entry, lookup_collation_sequence_value):
13294         (build_range_exp, build_collating_symbol):
13295         Use K&R-style defn.
13296         (re_compile_fastmap): Use '\0' to memset, not 0.
13297         (utf8_sb_map): Make the calculations more obvious.
13298         (init_dfa, parse_bracket_exp, build_charclass_op):
13299         Call calloc and cast result, as glibc does.
13300         (init_word_char, fetch_token, peek_token, peek_token_bracket):
13301         (build_range_exp, build_collating_symbol):
13302         Now internal functions.
13303
13304         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
13305
13306         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
13307         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
13308         Don't depend on VMS; depend on __VMS instead, for POSIX
13309         namespace cleanness.
13310         (regoff_t): Define to ssize_t, not long int.
13311
13312         Remove the REG_ macros named below.  Instead, make the old names
13313         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
13314         __USE_GNU_REGEX.
13315         (REG_BACKSLASH_ESCAPE_IN_LISTS):
13316         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
13317         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
13318         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
13319         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
13320         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
13321         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
13322         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
13323         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
13324         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
13325         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
13326         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
13327         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
13328         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
13329         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
13330         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
13331         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
13332         (REG_NREGS):
13333         Remove.  All uses replaced by the old RE_* names.
13334         (RE_BACKSLASH_ESCAPE_IN_LISTS):
13335         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
13336         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
13337         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
13338         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
13339         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
13340         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
13341         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
13342         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
13343         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
13344         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
13345         Don't bother having these macros be independent of each others'
13346         values, since they no longer exist in the POSIX name space.
13347
13348         Rename the following member names back to their old names,
13349         unless !__USE_GNU_REGEX.  All uses changed back.
13350         (buffer): Renamed from re_buffer.
13351         (allocated): Renamed from re_allocated.
13352         (used): Renamed from re_used.
13353         (syntax): Renamed from re_syntax.
13354         (fastmap): Renamed from re_fastmap.
13355         (translate): Renamed from re_translate.
13356         (can_be_null): Renamed from re_can_be_null.
13357         (regs_allocated): Renamed from re_regs_allocated.
13358         (fastmap_accurate): Renamed from re_fastmap_accurate.
13359         (no_sub): Renamed from re_no_sub.
13360         (not_bol): Renamed from re_not_bol.
13361         (not_eol): Renamed from re_not_eol.
13362         (newline_anchor): Renamed from re_newline_anchor.
13363         (num_regs): Renamed from rm_num_regs.
13364         (start): Renamed from rm_start.
13365         (end): Renamed from rm_end.
13366
13367         (free_state): Move up a bit.
13368
13369         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
13370         #define to be empty.
13371         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
13372         when that is what is intended.
13373         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
13374         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
13375         (MAX): New macro.
13376         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
13377         All uses changed back to re_malloc, etc.  It's now the caller's
13378         responsibility to check for overflow; all callers changed.
13379         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
13380         (re_x2nrealloc): Remove.
13381         (free_state): Remove decl.
13382
13383         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
13384         (re_set_registers, re_exec):
13385         Use K&R-style defn.
13386
13387         2006-01-31  Roland McGrath  <roland@redhat.com>
13388
13389         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
13390         Reported by Mike Frysinger <vapier@gentoo.org>.
13391
13392         2006-01-15  Andreas Jaeger  <aj@suse.de>
13393
13394         [BZ #1950]
13395         * lib/regex_internal.c (re_string_reconstruct): Adjust for
13396         build_wcs_upper_buffer change.
13397         (build_wcs_upper_buffer): Change return type.
13398
13399         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
13400
13401         * lib/regex_internal.h: Include <stdint.h> if available.
13402
13403         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
13404
13405         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
13406
13407         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
13408
13409         * lib/regcomp.c: Adjust for changed secondary hash function.
13410
13411         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
13412
13413         * lib/regex.h: Pretty printing.
13414         Clean up namespace a bit.
13415
13416         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
13417
13418         * lib/regexec.c (update_cur_sifted_state, check_arrival,
13419         check_arrival_add_next_nodes): Avoid using uninitialized variable.
13420
13421         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
13422                     Ulrich Drepper  <drepper@redhat.com>
13423
13424         [BZ #1302]
13425         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
13426         changed.
13427         (bitset_word_t): Renamed from bitset_word.  All uses changed.
13428
13429         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
13430
13431         [BZ #281]
13432         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
13433         * lib/regcomp.c: Remove unnecessary uses of
13434         unsigned RE_TRANSLATE_TYPE.
13435         * lib/regex_internal.h: Likewise.
13436         * lib/regex_internal.c: Likewise.
13437         * lib/regexec.c: Likewise.
13438         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
13439
13440         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
13441
13442         * lib/regexec.c (find_recover_state): Remove unnecessary
13443         initialization.
13444         (transit_state_bkref): Make DFA a const pointer.
13445         (get_subexp): Likewise.
13446         (check_arrival): Likewise.
13447         (update_cur_sifted_state): Likewise.
13448         (re_search_internal): Likewise.
13449         (prune_impossible_nodes): Likewise.
13450         (acquire_init_state_context): Likewise.
13451         (proceed_next_node): Likewise.
13452         (set_regs): Likewise.
13453         (free_fail_stack_return): Likewise.
13454         (check_arrival_expand_ecl): Mark DFA parameter as const.
13455         (check_arrival_expand_ecl_sub): Likewise.
13456         (check_subexp_limits): Likewise.
13457         (sub_epsilon_src_nodes):  Likewise.
13458         (add_epsilon_src_nodes):  Likewise.
13459         (merge_state_array): Likewise.
13460         (update_regs): Likewise.
13461         (build_trtable): Likewise.
13462         (sift_states_backward): Mark MCTX parameter as const.
13463         (build_sifted_states): Likewise.
13464         (update_cur_sifted_state): Likewise.
13465         (sift_states_mkref): Likewise.
13466         (check_arrival_expand_ecl): Mark eclosure as const.
13467         (check_dst_limits_calc_pos_1): Likewise.
13468         * lib/regex_internal.h (re_match_context_t): Make dfa a const
13469         pointer.
13470
13471         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
13472
13473         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
13474         (transit_state_sb): Likewise.
13475         (transit_state_mb): Likewise.
13476         (sift_states_iter_mb): Likewise.
13477         (check_arrival_add_next_nodes): Likewise.
13478         (check_node_accept_bytes): Change first parameter to pointer-to-const.
13479         [_LIBC] (re_search_2_stub): Use mempcpy.
13480
13481         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
13482         mbrtowc for very simple UTF-8 case.
13483
13484         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
13485         a pointer-to-const.
13486         (re_acquire_state_context): Likewise.
13487         * lib/regex_internal.h: Adjust prototypes.
13488
13489         * lib/regex.c: Prevent using C++ compilers.
13490
13491         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
13492         (re_acquire_state_context): Likewise.
13493
13494 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13495
13496         * modules/regex (Depends-on): Add ssize_t.
13497
13498 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13499
13500         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
13501         translation table.
13502
13503 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13504
13505         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
13506
13507 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
13508             Bruno Haible  <bruno@clisp.org>
13509
13510         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
13511         <sys/types.h> and <inttypes.h>.
13512
13513 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13514
13515         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
13516         `__error_t_defined', so argp.h will not typedef the former.
13517
13518 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
13519
13520         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
13521         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
13522         glibc names.  Even if glibc is changed to conform to POSIX, the
13523         traditional names will be available anyway, since regex depends on
13524         the extensions module.  Also, fix a longstanding typo in the
13525         implementation of Spencer ERE test #75 from grep 2.3.  Problems
13526         reported by Emanuele Giaquinta.  Also, change sense of cached
13527         variable, so that the message makes sense.
13528
13529 2006-03-24  Simon Josefsson  <jas@extundo.com>
13530
13531         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
13532         including some doc fixes.
13533         (base64_encode_alloc): Fix +1 bug on allocation failures.
13534
13535 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13536
13537         * lib/base64.c (base64_encode): Do not read past end of array with
13538         unsanitized input on systems with CHAR_BIT > 8.
13539
13540 2006-03-24  Eric Blake  <ebb9@byu.net>
13541
13542         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
13543
13544 2006-03-22  Karl Berry  <karl@gnu.org>
13545
13546         * config/srclist.txt (*setenv.[ch]): get from coreutils.
13547         * config/srclistvars.sh (COREUTILS): new var.
13548
13549 2006-03-17  Jim Meyering  <jim@meyering.net>
13550
13551         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
13552         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
13553
13554 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13555
13556         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
13557         no longer needs it.  Instead, check that regoff_t is as least
13558         as wide as ptrdiff_t.
13559
13560         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
13561         so that our regex.h stays compatible with the installed regex.
13562         This is helpful for installers who configure --without-included-regex.
13563         Problem reported by Emanuele Giaquinta.
13564
13565 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13566
13567         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
13568         Typedef to long int, not to off_, as POSIX will likely change
13569         in that direction.
13570
13571 2006-03-15  Eric Blake  <ebb9@byu.net>
13572
13573         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
13574
13575 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13576
13577         * lib/argp-help.c (validate_uparams): Fix typo
13578         * lib/argp-parse.c (argp_default_options): Consistently begin help
13579         messages with a lowercase letter.
13580
13581 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
13582
13583         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
13584         overrun buffers and shouldn't be used (much as gets shouldn't be
13585         used).
13586         * lib/time_r.c (asctime_r, ctime_r): Likewise.
13587
13588 2006-03-08  Simon Josefsson  <jas@extundo.com>
13589
13590         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
13591         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13592
13593 2006-03-08  Simon Josefsson  <jas@extundo.com>
13594
13595         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
13596         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13597
13598 2006-03-08  Simon Josefsson  <jas@extundo.com>
13599
13600         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
13601         signal that configure disabled the device.
13602
13603 2006-03-08  Simon Josefsson  <jas@extundo.com>
13604
13605         * build-aux/maint.mk: Fix refresh-po, to handle no translated
13606         languages.
13607
13608 2006-03-07  Simon Josefsson  <jas@extundo.com>
13609
13610         * modules/getopt (Depends-on): Add unistd.
13611
13612         * modules/unistd: New file.
13613
13614 2006-03-07  Simon Josefsson  <jas@extundo.com>
13615
13616         * modules/gc-random: New file.
13617
13618 2006-03-07  Simon Josefsson  <jas@extundo.com>
13619
13620         * m4/unistd_h.m4: New file.
13621
13622 2006-03-07  Simon Josefsson  <jas@extundo.com>
13623
13624         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
13625         test to be side-effect free by storing the result in the cache
13626         variable gl_cv_lib_readline, and moving the assignment of
13627         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
13628         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13629
13630 2006-03-07  Simon Josefsson  <jas@extundo.com>
13631
13632         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
13633         error on missing devices (the functions will return an error).
13634
13635         * m4/gc.m4: Move random stuff to gc-random.m4
13636
13637 2006-03-07  Simon Josefsson  <jas@extundo.com>
13638
13639         * lib/unistd_.h: New file.
13640
13641 2006-03-07  Simon Josefsson  <jas@extundo.com>
13642
13643         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
13644
13645 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13646
13647         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
13648         Problem reported by Juan Manuel Guerrero.
13649
13650 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13651
13652         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
13653         the unistd module.
13654         * lib/getlogin_r.c: Likewise.
13655         * lib/getlogin_r.h: Likewise.
13656         * lib/glob.c: Likewise.
13657         * lib/pagealign_alloc.c: Likewise.
13658         * lib/unistd_.h: Remove; no longer needed.
13659
13660 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13661
13662         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13663         Add unistd.
13664         * modules/c-stack (Depends-on): Add unistd.
13665         * modules/getlogin_r: Likewise.
13666         * modules/glob: Likewise.
13667         * modules/pagealign_alloc: Likewise.
13668         * modules/unistd (Files): Remove lib/unistd_.h.
13669         (EXTRA_DIST): Remove.
13670         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
13671         need unistd_.h.
13672         (MOSTLYCLEANFILES): Remove unistd.h-t.
13673
13674 2006-03-03  Simon Josefsson  <jas@extundo.com>
13675
13676         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
13677
13678 2006-03-03  Simon Josefsson  <jas@extundo.com>
13679
13680         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
13681         libidn and bison.
13682
13683 2006-03-03  Simon Josefsson  <jas@extundo.com>
13684
13685         * build-aux/maint.mk: Add indent target.
13686
13687 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
13688
13689         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
13690         our replacement poll.h in any case, to avoid a differing
13691         declaration from a system header.  Seen on AIX.
13692
13693 2006-03-01  Simon Josefsson  <jas@extundo.com>
13694
13695         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
13696         <kasal@ucw.cz>.
13697
13698 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13699
13700         * modules/gettime (Depends-on): Add extensions module.
13701         * modules/nanosleep (Depends-on): Likewise.
13702         * modules/settime (Depends-on): Likewise.
13703
13704 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13705
13706         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
13707         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
13708         pedantically.
13709         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13710         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
13711
13712         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
13713         not "==".  Reported by Ralf Wildenhues.
13714
13715 2006-03-01  Karl Berry  <karl@gnu.org>
13716
13717         * doc/Copyright/request-*: new files, synced from gnuorg.
13718
13719 2006-03-01  Karl Berry  <karl@gnu.org>
13720
13721         * config/srclist.txt (Copyright/*): new entries.
13722
13723 2006-02-28  Simon Josefsson  <jas@extundo.com>
13724
13725         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
13726
13727 2006-02-27  Simon Josefsson  <jas@extundo.com>
13728
13729         * lib/base64.h: Indent #define's.  From Jim Meyering
13730         <jim@meyering.net>.
13731
13732 2006-02-27  Jim Meyering  <jim@meyering.net>
13733
13734         Revert the change of 2006-02-24, so these files can continue
13735         to be sync'd from gettext.
13736         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
13737         of `config.h'.
13738
13739 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13740
13741         * modules/intprops: New file.
13742         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
13743         Add intprops.
13744         * modules/getloadavg (Files): Remove lib/intprops.h.
13745         (Depends-on): Add intprops.
13746         * modules/human: Likewise.
13747         * modules/inttostr: Likewise.
13748         * modules/openat: Likewise.
13749         * modules/sig2str: Likewise.
13750         * modules/userspec: Likewise.
13751         * modules/utimecmp: Likewise.
13752         * modules/xnanosleep: Likewise.
13753         * modules/xstrtol: Likewise.
13754
13755 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
13756
13757         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
13758         * modules/lock-tests (TESTS): Use $(EXEEXT).
13759         * modules/tls-tests: Likewise.
13760         * modules/argp-tests: Likewise.
13761         (check_PROGRAMS): New var, replacing...
13762         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
13763
13764 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13765
13766         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
13767         `config.h'.
13768
13769 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
13770
13771         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
13772
13773 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13774
13775         Sync from coreutils.
13776         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
13777         gl_CHDIR_SAFER.
13778
13779 2006-02-22  Jim Meyering  <jim@meyering.net>
13780
13781         Sync from coreutils.
13782         * m4/chdir-safer.m4: New file.
13783
13784 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
13785
13786         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
13787         AT_FDCWD exceeds INT_MAX.
13788         * lib/openat.h (AT_FDCWD): Likewise.
13789
13790 2006-02-17  Eric Blake  <address@hidden>
13791
13792         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
13793
13794 2006-02-16  Simon Josefsson  <jas@extundo.com>
13795
13796         * modules/getaddrinfo (Depends-on): Add sys_socket.
13797
13798 2006-02-15  Simon Josefsson  <jas@extundo.com>
13799
13800         * build-aux/maint.mk: Add dsyntax-check rule.
13801
13802 2006-02-15  Eric Blake  <ebb9@byu.net>
13803
13804         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
13805         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
13806         'present but cannot compile' warnings on cygwin.
13807         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
13808         use ws2tcpip.h if sys/socket.h works.
13809         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
13810         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
13811
13812 2006-02-14  Simon Josefsson  <jas@extundo.com>
13813
13814         * modules/maintainer-makefile (Files): Rename.
13815
13816         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
13817         and (the local) Makefile.cfg to maint-cfg.mk.
13818
13819         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
13820         to the latter.
13821
13822         * modules/maintainer-makefile: New module.
13823
13824         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
13825         severaly stripped to make it possible to build it up from scratch
13826         with reliable tests.
13827
13828         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
13829         fixes to permit overriding the default actions when configure and
13830         makefile are not available.
13831
13832 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
13833
13834         Sync from coreutils.
13835         * modules/lstat (Depends-on): Don't depend on xalloc.
13836         (License): Change from GPL to LGPL, since this is now simply a
13837         replacement for a libc function.
13838
13839 2006-02-14  Jim Meyering  <jim@meyering.net>
13840
13841         Sync from coreutils.
13842
13843         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
13844         failure on deficient systems, and simplify gnulib lgpl dependencies.
13845         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
13846         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
13847
13848         * lib/xalloc-die.c: Remove unused definition of N_.
13849
13850 2006-02-14  Jim Meyering  <jim@meyering.net>
13851
13852         Sync from coreutils.
13853         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
13854         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
13855         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
13856         double-quote uses of that variable, to accommodate the rare case in
13857         which getmntent is available in none of the libraries checked.  This
13858         happens at least on FreeBSD 5.0.
13859
13860 2006-02-13  Simon Josefsson  <jas@extundo.com>
13861
13862         * gnulib-tool (Usage): Fix --import, from
13863         karl@freefriends.org (Karl Berry).
13864
13865 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13866
13867         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
13868
13869 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
13870
13871         * lib/argp-namefrob.h: Restore changes accidentally lost during the
13872         "autoupdate" on 2005-12-12.
13873
13874 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13875
13876         * modules/closeout (Depends-on): Remove atexit.
13877
13878 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13879
13880         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
13881         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
13882
13883 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13884
13885         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
13886         __EXTENSIONS__ if this causes compilation to fail.  Problem
13887         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
13888         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
13889
13890 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
13891
13892         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
13893         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
13894         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
13895         All uses changed.
13896
13897 2006-01-26  Simon Josefsson  <jas@extundo.com>
13898
13899         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
13900         prototype is visible on mingw32.
13901
13902         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
13903         for mingw32.
13904
13905         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
13906         mingw32).
13907
13908 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
13909
13910         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
13911         attempt to open for write; this always fails, at least on POSIX
13912         hosts.  This reinstates the 2006-01-09 change, which was
13913         inadvertently removed.
13914
13915 2006-01-26  Bruno Haible  <bruno@clisp.org>
13916
13917         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
13918         Reported by Paul Eggert.
13919
13920 2006-01-26  Bruno Haible  <bruno@clisp.org>
13921             Paul Eggert  <eggert@cs.ucla.edu>
13922
13923         * lib/stdbool_.h (_Bool)
13924         [(! (defined __cplusplus || defined __BEOS__)
13925           && !defined __GNUC__
13926           && !(defined __HP_cc || defined __xlc__
13927                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
13928                || defined __sgi))]:
13929         #define to signed char in these cases too; this simplifies
13930         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
13931         etc., separately) and makes it more conservative.
13932
13933 2006-01-25  Simon Josefsson  <jas@extundo.com>
13934
13935         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
13936         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
13937         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
13938
13939 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13940
13941         * lib/argp-namefrob.h: Bugfix. Remove stray #
13942
13943 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
13944
13945         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
13946         so that we test the test.
13947         Check for yet another HP-UX cc bug involving *bool |= bool.
13948
13949 2006-01-25  Karl Berry  <karl@gnu.org>
13950
13951         * config/srclist.txt (vasnprintf.c): sync lost.
13952
13953 2006-01-25  Jim Meyering  <jim@meyering.net>
13954
13955         Sync from the stable (b5) branch of coreutils:
13956
13957         * lib/fts.c (fts_children): Don't let close() clobber errno from
13958         failed fchdir().
13959
13960         * lib/fts.c (fts_stat): When following a symlink-to-directory,
13961         don't necessarily interpret stat-fails+lstat-succeeds as indicating
13962         a dangling symlink.  That can also happen at least for ELOOP.
13963         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
13964         FYI, this bug predates the inclusion of fts.c in coreutils.
13965
13966         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
13967         in their own block, so pre-c99 compilers don't object.
13968
13969         Avoid the double-free (first in fts_read, second in fts_close) that
13970         would occur when an `active' directory is made inaccessible (e.g.,
13971         via chmod a-x) during a traversal.
13972         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
13973         before returning.  Reproduce this failure by
13974         mkdir -p a/b; cd a; chmod a-x . b
13975         Reported by Stavros Passas.
13976
13977 2006-01-25  Jim Meyering  <jim@meyering.net>
13978
13979         * lib/fileblocks.c: Remove more useless parentheses.
13980         * lib/readutmp.h: Likewise.
13981
13982 2006-01-25  Bruno Haible  <bruno@clisp.org>
13983
13984         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
13985         warnings.
13986         Reported by Paul Eggert.
13987
13988 2006-01-25  Bruno Haible  <bruno@clisp.org>
13989
13990         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
13991         rid of a trap command. For Solaris sh.
13992         Reported by Mark D. Baushke <mdb@gnu.org>.
13993
13994 2006-01-24  Simon Josefsson  <jas@extundo.com>
13995
13996         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
13997         Bruno.
13998
13999 2006-01-24  Karl Berry  <karl@gnu.org>
14000
14001         * config/srclist.txt (argp-namefrob.h): sync lost.
14002
14003 2006-01-24  Jim Meyering  <jim@meyering.net>
14004
14005         * modules/openat (Files): Add lib/intprops.h.
14006         From Mark D. Baushke.
14007
14008 2006-01-24  Jim Meyering  <jim@meyering.net>
14009
14010         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
14011         Reported by Mark D. Baushke.
14012
14013 2006-01-24  Jim Meyering  <jim@meyering.net>
14014
14015         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
14016
14017 2006-01-24  Bruno Haible  <bruno@clisp.org>
14018
14019         * modules/strnlen (Maintainer): Change from glibc to all.
14020
14021 2006-01-24  Bruno Haible  <bruno@clisp.org>
14022
14023         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
14024         Patch by Paul Eggert.
14025
14026 2006-01-24  Bruno Haible  <bruno@clisp.org>
14027
14028         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
14029         already has it.
14030         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
14031         2005-11-26.
14032
14033         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
14034         'signed char' to avoid problems with the built-in _Bool type.
14035         Reported by Paul Eggert on 2005-11-26.
14036
14037 2006-01-24  Bruno Haible  <bruno@clisp.org>
14038
14039         * gnulib-tool (func_import): Avoid constructing complicated sed
14040         expressions inside backquote.
14041         Report and solution by Mark D. Baushke <mdb@gnu.org>.
14042
14043 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
14044
14045         These changes imported from libc.
14046         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
14047         test and two separate function calls.
14048         * lib/strndup.c (__strndup): Add libc_hidden_def.
14049
14050 2006-01-23  Simon Josefsson  <jas@extundo.com>
14051
14052         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
14053         Remove the test_*_SOURCES variable: automake infers it by default.
14054         * modules/tls-tests: Likewise.
14055
14056 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14057
14058         Work around porting bugs reported by Dieter in
14059         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
14060         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
14061         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
14062         Include "getopt.h" first, to check interface.
14063         (getenv): Declare only if defined HAVE_DECL_GETENV &&
14064         !HAVE_DECL_GETENV.
14065         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
14066         (__strndup): Revert to K&R-style function dfns, the glibc style.
14067         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
14068         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
14069         Include strnlen.h first, to get prototype properly.
14070         (strnlen): Renamed from __strnlen.
14071         Remove weak alias.
14072
14073 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14074
14075         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
14076
14077 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14078
14079         * config/srclist.txt: Adjust to reflect glibc reorganization.
14080         This affects only comments.
14081
14082 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
14083
14084          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
14085          Reported by Bruce Korb <bkorb@gnu.org>.
14086
14087 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
14088
14089         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
14090         to pacify gcc -Wswitch-default.
14091
14092 2006-01-22  Bruno Haible  <bruno@clisp.org>
14093
14094         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
14095         temporary buffer for sprintf, take into account the precision also
14096         for 'd', 'i', 'u', 'o', 'x', 'X'.
14097
14098 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
14099
14100         * modules/argp-tests: New module
14101         * tests/test-argp.c: New file
14102         * tests/test-argp-2.sh: New file
14103
14104 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
14105
14106         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
14107         (__argp_base_name): Removed
14108         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
14109         typo.
14110         (__argp_base_name): Provide macro definition or extern declaration
14111         depending on the configuration
14112
14113 2006-01-20  Simon Josefsson  <jas@extundo.com>
14114
14115         * modules/inet_ntop (Depends-on): Depend on sys_socket.
14116
14117 2006-01-20  Simon Josefsson  <jas@extundo.com>
14118
14119         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
14120
14121 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14122
14123         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
14124         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
14125         Suggested by Bruno Haible.
14126
14127 2006-01-20  Karl Berry  <karl@gnu.org>
14128
14129         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
14130         until changes propagate, I guess.
14131
14132 2006-01-19  Simon Josefsson  <jas@extundo.com>
14133
14134         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
14135
14136 2006-01-19  Simon Josefsson  <jas@extundo.com>
14137
14138         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
14139
14140 2006-01-19  Simon Josefsson  <jas@extundo.com>
14141
14142         * gnulib-tool: Set check_PROGRAMS.
14143
14144         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
14145         modules/des-tests, modules/gc-arcfour-tests,
14146         modules/gc-arctwo-tests, modules/gc-des-tests,
14147         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
14148         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
14149         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
14150         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
14151         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
14152         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
14153         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
14154         test_*_SOURCES.
14155
14156 2006-01-18  Simon Josefsson  <jas@extundo.com>
14157
14158         * modules/socklen (Depends-on): Depend on sys_socket.
14159
14160 2006-01-18  Simon Josefsson  <jas@extundo.com>
14161
14162         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
14163         modules/des-tests, modules/gc-arcfour-tests,
14164         modules/gc-arctwo-tests, modules/gc-des-tests,
14165         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
14166         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
14167         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
14168         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
14169         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
14170         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
14171         $(EXEEXT) to automake TESTS variable, for mingw32.
14172
14173 2006-01-17  Simon Josefsson  <jas@extundo.com>
14174
14175         * modules/socklen (Include): Need sys/socket.h.
14176
14177 2006-01-17  Bruno Haible  <bruno@clisp.org>
14178
14179         * modules/ssize_t (Include): Add <sys/types.h>.
14180
14181 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
14182
14183         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
14184         it's not portable and it doesn't work with cross-compiles.
14185         Problem reported by Bruno Haible.  Fix missing-$ typo in
14186         'test "gl_cv_ignore_unused_libraries" ...' that prevented
14187         -zignore from being used with Sun's C compiler.
14188
14189 2006-01-12  Simon Josefsson  <jas@extundo.com>
14190
14191         * lib/base64.c: Fix warning, reported by Bruno Haible
14192         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
14193
14194 2006-01-12  Bruno Haible  <bruno@clisp.org>
14195
14196         * modules/ldd: New file.
14197         * build-aux/ldd.sh.in: New file.
14198         * MODULES.html.sh (Support for building libraries and executables): Add
14199         ldd.
14200
14201 2006-01-12  Bruno Haible  <bruno@clisp.org>
14202
14203         * m4/ldd.m4: New file.
14204
14205 2006-01-12  Bruno Haible  <bruno@clisp.org>
14206
14207         * gnulib-tool (func_import, func_create_testdir): Don't go into an
14208         endless loop while replacing $auxdir with build-aux.
14209
14210 2006-01-11  Simon Josefsson  <jas@extundo.com>
14211
14212         * lib/stdint_.h (SIZE_MAX): Add missing (.
14213
14214 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
14215
14216         Sync from coreutils.
14217         * lib/md5.c: Fix commentary typos.
14218         (alignof, UNALIGNED_P): No need for a GCC-specific version.
14219         * lib/md5.h (__attribute__): Remove; unused.
14220         * lib/sha1.c: Fix commentary to match md5 better.
14221         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
14222         so that we don't need to worry about alignment.  All uses changed.
14223         This merges the 2005-10-28 md5 change into sha1.
14224
14225 2006-01-11  Jim Meyering  <jim@meyering.net>
14226
14227         Sync from coreutils.
14228         * lib/md5.c (OP): Fix spacing.
14229
14230 2006-01-11  Bruno Haible  <bruno@clisp.org>
14231
14232         Ensure automatic ordering between gl_LOCK and gl_ARGP.
14233         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
14234         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
14235
14236 2006-01-11  Bruno Haible  <bruno@clisp.org>
14237
14238         Ensure automatic ordering between gl_LOCK and gl_ARGP.
14239         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
14240         the "early" section as well.
14241
14242 2006-01-11  Bruno Haible  <bruno@clisp.org>
14243
14244         Avoid "ar: no archive members specified" error on MacOS X.
14245         * gnulib-tool (func_modules_add_dummy): New function.
14246         (func_import, func_create_testdir): Invoke it.
14247
14248 2006-01-11  Bruno Haible  <bruno@clisp.org>
14249
14250         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
14251         with $auxdir in AC_CONFIG_FILES statements.
14252
14253 2006-01-11  Bruno Haible  <bruno@clisp.org>
14254
14255         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14256         Initialize also noinst_HEADERS to empty.
14257
14258 2006-01-11  Bruno Haible  <bruno@clisp.org>
14259
14260         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
14261         variables.
14262         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
14263         autoreconf.
14264
14265 2006-01-11  Bruno Haible  <bruno@clisp.org>
14266
14267         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
14268         overridable by the user.
14269         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14270
14271 2006-01-10  Simon Josefsson  <jas@extundo.com>
14272
14273         * modules/sys_socket: New file.
14274
14275 2006-01-10  Simon Josefsson  <jas@extundo.com>
14276
14277         * m4/sys_socket_h.m4: New file.
14278
14279 2006-01-10  Simon Josefsson  <jas@extundo.com>
14280
14281         * lib/socket_.h: New file.
14282
14283 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14284
14285         * modules/readutmp (Maintainer): Add myself.
14286
14287 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14288
14289         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
14290         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
14291         People who are still concerned with buggy memcmp implementations
14292         can invoke gl_FUNC_MEMCMP themselves.
14293
14294 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14295
14296         * lib/regex_internal.h (BITSET_WORD_BITS):
14297         Work around a bug in 64-bit PGC (before version 6.1-2), where the
14298         preprocessor mishandles large unsigned values as if they were signed.
14299         Problem reported by Claudio Fontana in
14300         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
14301
14302 2006-01-10  Jim Meyering  <jim@meyering.net>
14303
14304         Avoid the double-free (first in fts_read, second in fts_close) that
14305         would occur when an `active' directory is made inaccessible (e.g.,
14306         via chmod a-x) during a traversal.
14307         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
14308         before returning.  Reproduce this failure by
14309         mkdir -p a/b; cd a; chmod a-x . b
14310         Reported by Stavros Passas.
14311
14312         Sync from coreutils.
14313         * lib/sha1.c: Tweak grammar in a comment.
14314
14315 2006-01-10  Jim Meyering  <jim@meyering.net>
14316
14317         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
14318         Patch by Joerg Sonnenberger.
14319
14320 2006-01-10  Bruno Haible  <bruno@clisp.org>
14321
14322         * modules/readutmp: Depend on module free.
14323         * modules/strtok_r: Depend on module restrict.
14324
14325 2006-01-10  Bruno Haible  <bruno@clisp.org>
14326
14327         * modules/gettext (configure.ac): Add an invocation of
14328         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
14329
14330 2006-01-10  Bruno Haible  <bruno@clisp.org>
14331
14332         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
14333         Reported by Werner Lemberg <wl@gnu.org>.
14334
14335 2006-01-10  Bruno Haible  <bruno@clisp.org>
14336
14337         * lib/localcharset.c: Update from GNU gettext.
14338
14339 2006-01-10  Bruno Haible  <bruno@clisp.org>
14340
14341         * lib/argp.h (__const): Remove macro. Use const instead.
14342         * lib/argp-fmtstream.h (__const): Likewise.
14343         * lib/glob_.h (__const): Remove macro.
14344         * lib/glob-libc.h: Use const instead of __const.
14345
14346 2006-01-10  Bruno Haible  <bruno@clisp.org>
14347
14348         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
14349         variable.
14350         Needed to avoid an automake error regarding the 'gettext' module.
14351
14352 2006-01-09  Simon Josefsson  <jas@extundo.com>
14353
14354         * modules/inet_ntop (Depends-on): Add restrict.
14355
14356 2006-01-09  Simon Josefsson  <jas@extundo.com>
14357
14358         * modules/gc-rijndael-tests (License): Put under LGPL.
14359
14360         * modules/gc-des-tests (License): Likewise.
14361
14362         * modules/gc-arcfour-tests (License): Likewise.
14363
14364         * modules/gc-arctwo-tests (License): Likewise.
14365
14366         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
14367
14368         * modules/gc-hmac-sha1-tests (Files): Likewise.
14369
14370         * modules/gc-hmac-md5-tests (License): Likewise.
14371
14372         * modules/gc-sha1-tests (License): Likewise.
14373
14374         * modules/gc-md5-tests (License): Likewise.
14375
14376         * modules/gc-md4-tests (License): Likewise.
14377
14378         * modules/gc-md2-tests (License): Likewise.
14379
14380         * modules/gc-tests (License): Likewise.
14381
14382         * modules/des-tests (License): Likewise.
14383
14384         * modules/md4-tests (License): Likewise.
14385
14386         * modules/md2-tests (License): Likewise.
14387
14388 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14389
14390         Sync from coreutils:
14391
14392         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
14393         * modules/lib-ignore: New file.
14394         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
14395         chdir-safer.m4, lchmod.m4.
14396         * modules/openat: Add mkdirat.c, openat-priv.h.
14397
14398 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14399
14400         Sync from coreutils.
14401         * m4/lib-ignore.m4: New file.
14402         * m4/lchmod.m4: New file.
14403
14404 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14405
14406         Sync from coreutils.
14407         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
14408         for write access: POSIX says that must fail.
14409         * lib/fts.c (diropen): Likewise.
14410         * lib/save-cwd.c (save_cwd): Likewise.
14411         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
14412         well, for minor improvements on hosts that lack O_DIRECTORY.
14413         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
14414         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
14415         Fall back on chown if open failed with EACCES.
14416
14417         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
14418         Report an error at compile-time if only a 1-second nominal clock
14419         resolution is found.
14420
14421         * lib/lchmod.h: New file.
14422         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
14423         (make_dir_parents): Use lchown rather than chown, and
14424         lchmod rather than chmod.
14425
14426         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
14427         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
14428         "proc" reported by n0dalus.
14429
14430         * lib/mountlist.c: Include <limits.h>.
14431         (dev_from_mount_options)
14432         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
14433         New function.  It no longer assumes "dev=" has the System V meaning
14434         on Linux (since it doesn't).  It also parses "dev=" more carefully.
14435         (read_file_system_list)
14436         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
14437         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
14438         dev= in that case.
14439
14440         * lib/posixtm.h (PDS_PRE_2000): New macro.
14441         * lib/posixtm.c (year): Arg is now syntax_bits rather than
14442         allow_century.  All usages changed.  Reject dates outside the range
14443         1969-1999 if PDS_PRE_2000 is used.
14444
14445 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14446
14447         Sync from coreutils.
14448         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
14449         (Time of day items): Mention the possibility of leap seconds.
14450         Problem reported by Dr. David Alan Gilbert.
14451
14452 2006-01-09  Jim Meyering  <jim@meyering.net>
14453
14454         Sync from coreutils.
14455
14456         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
14457
14458         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
14459
14460         * lib/modechange.c (mode_compile): Reject an invalid mode string
14461         that starts with an octal digit.  From Andreas Gruenbacher.
14462
14463         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
14464         and dup to open_safer and dup_safer, respectively.
14465         (openat_permissive): Fix typo in comment.
14466
14467         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
14468         "gettext.h"; either no longer needed or are guaranteed by openat.h.
14469         (_): Remove; no longer needed.
14470         (openat): Renamed from rpl_openat; no need for rpl_openat
14471         since openat.h renames openat for us.
14472         Replace most of the body with a call to openat_permissive,
14473         to avoid duplicate code.
14474         Port to (probably hypothetical) environments were mode_t is
14475         wider than int.
14476         (openat_permissive): Require mode arg, so that we can check
14477         types better.  Put it just after flags.  Change cwd failure
14478         indicator from pointer-to-bool to pointer-to-errno-value.
14479         All callers changed.
14480         Invoke openat_save_fail and/or openat_restore_fail if
14481         cwd_errno is null, so that openat can call us.
14482         (openat_permissive, fdopendir, fstatat, unlinkat):
14483         Simplify errno handling to avoid some duplicate code,
14484         as it's OK to set errno on success.
14485         * lib/openat.h: Revamp code so that function macros depend on
14486         __OPENAT_PREFIX only, not also on AT_FDCWD.
14487         (openat_ro): Remove.  Caller changed to use openat_permissive.
14488         (openat_permissive): Now a macro, if not a function.
14489         (openat_restore_fail, openat_save_fail): Now always functions,
14490         since mkdirat needs them even if __OPENAT_PREFIX is defined.
14491
14492         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
14493         and openat.c.
14494         * lib/mkdirat.c: Include openat-priv.h.
14495         Remove definitions of macros defined therein.
14496         * lib/openat.c: Likewise.
14497
14498         * lib/mkdirat.c (mkdirat): New file and function.
14499         * lib/openat.h (mkdirat): Declare.
14500
14501         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
14502
14503         * lib/openat.h (openat_permissive): Declare.
14504         (openat_ro): Define.
14505
14506         * lib/openat.c (EXPECTED_ERRNO): New macro.
14507         (openat_permissive): New function -- used in remove.c rewrite.
14508         (all functions): Set errno just before returning, only if there
14509         was an actual failure.
14510         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
14511
14512         Emulate openat-family functions using Linux's procfs, if possible.
14513         Idea and some code based on Ulrich Drepper's glibc changes.
14514
14515         * lib/openat.c: (BUILD_PROC_NAME): New macro.
14516         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
14517         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
14518         before falling back on save_cwd and restore_cwd.
14519         (fdopendir, fstatat, unlinkat): Likewise.
14520
14521         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
14522         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
14523
14524         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
14525         as second argument to va_arg.  Otherwise, some versions of gcc
14526         warn that `if this code is reached, the program will abort'.
14527
14528 2006-01-09  Jim Meyering  <jim@meyering.net>
14529
14530         Sync from coreutils.
14531         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
14532         Require openat-priv.h.
14533
14534 2006-01-09  Bruno Haible  <bruno@clisp.org>
14535
14536         * modules/strnlen (Include): Use strnlen.h.
14537
14538 2006-01-09  Bruno Haible  <bruno@clisp.org>
14539
14540         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
14541
14542 2006-01-09  Bruno Haible  <bruno@clisp.org>
14543
14544         * lib/sysexit_.h (EX_OK): New macro.
14545         Suggested by Martin Lambers <marlam@marlam.de>.
14546
14547 2006-01-09  Bruno Haible  <bruno@clisp.org>
14548
14549         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
14550         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
14551
14552 2006-01-09  Bruno Haible  <bruno@clisp.org>
14553
14554         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
14555         numbers.
14556
14557 2006-01-09  Bruno Haible  <bruno@clisp.org>
14558
14559         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
14560         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
14561         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
14562         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
14563
14564 2006-01-09  Bruno Haible  <bruno@clisp.org>
14565
14566         * build-aux/javacomp.sh.in: New file, moved from lib/.
14567         * modules/javacomp-script (Files): Update.
14568         (configure.ac): Add AC_CONFIG_FILES invocation.
14569         (EXTRA_DIST): Remove variable.
14570
14571         * build-aux/javaexec.sh.in: New file, moved from lib/.
14572         * modules/javaexec (Files): Update.
14573         (configure.ac): Add AC_CONFIG_FILES invocation.
14574         (EXTRA_DIST): Remove javaexec.sh.in.
14575
14576         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
14577         * modules/csharpcomp-script (Files): Update.
14578         (configure.ac): Add AC_CONFIG_FILES invocation.
14579         (EXTRA_DIST): Remove variable.
14580
14581         * build-aux/csharpexec.sh.in: New file, moved from lib/.
14582         * modules/csharpexec (Files): Update.
14583         (configure.ac): Add AC_CONFIG_FILES invocation.
14584         (EXTRA_DIST): Remove csharpexec.sh.in.
14585
14586 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14587
14588         Sync from coreutils.
14589
14590         Add POSIX ACL support
14591         * lib/acl.h (copy_acl, set_acl): Add declarations.
14592         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
14593         systems other than Linux.
14594         (chmod_or_fchmod): New function: use fchmod when possible,
14595         and chmod otherwise.
14596         (file_has_acl): Add a POSIX ACL implementation, with a
14597         Linux-specific subcase.
14598         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
14599         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
14600         acls are unsupported.
14601         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
14602         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
14603         are unsupported.
14604
14605 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14606
14607         Sync from coreutils.
14608         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
14609
14610 2006-01-07  Bruno Haible  <bruno@clisp.org>
14611
14612         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
14613         gl_EARLY.
14614
14615 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14616
14617         * lib/strftime.c (tzname): Don't declare if it is already #defined.
14618         Problem reported for Mingw by Mark Junker.
14619
14620 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14621
14622         * README: Gnulib normally doesn't generate a tarball.
14623
14624 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
14625
14626         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
14627         long int, not int, for nanosecond counts, so that people who are
14628         used to POSIX struct timespec won't be surprised.  Reported by Jim
14629         Meyering.
14630
14631 2005-12-28  Bruno Haible  <bruno@clisp.org>
14632
14633         * build-aux/config.rpath: Update from GNU gettext.
14634
14635 2005-12-16  Jim Meyering  <jim@meyering.net>
14636
14637         * modules/fprintftime: New module.
14638         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
14639
14640 2005-12-16  Jim Meyering  <jim@meyering.net>
14641
14642         * m4/fprintftime.m4: New file.
14643
14644 2005-12-16  Jim Meyering  <jim@meyering.net>
14645
14646         * lib/fprintftime.c, lib/fprintftime.h: New files.
14647
14648 2005-12-15  Simon Josefsson  <jas@extundo.com>
14649
14650         * modules/socklen (configure.ac): Fix M4 macro name, to align with
14651         new m4/socklen.m4.
14652
14653 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14654
14655         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
14656         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
14657
14658 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14659
14660         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
14661         * lib/argp-help.c (fill_in_uparams): Check if the constructed
14662         struct uparams is valid. Fall back to the default values if it is
14663         not.
14664
14665 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14666
14667         * modules/argp (Files): Add argp-pin.c
14668         (Depends-on): dirname
14669         (lib_SOURCES): Add argp-pin.c
14670
14671 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14672
14673         * m4/argp.m4:  Check if program_invocation_name and
14674         program_invocation_short_name are declared and define appropriate
14675         macros if they are not.
14676
14677 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14678
14679         * lib/argp-help.c (__argp_base_name): New function
14680         (__argp_short_program_name): Rewrite using __argp_base_name
14681         * lib/argp-namefrob.h: Define program_invocation_name and
14682         program_invocation_short_name if requested
14683         (__argp_base_name): Add prototype
14684         * lib/argp-parse.c (argp_def): Use gettext wrappers
14685         (argp_default_parser): Use __argp_base_name
14686         * lib/argp-pin.c: New file. Defines program_invocation_name and
14687         program_invocation_short_name on systems that lack them.
14688
14689 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14690
14691         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
14692         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14693         porting problem reported by Georg Schwarz in
14694         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14695
14696 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14697
14698         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
14699         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14700         porting problem reported by Georg Schwarz in
14701         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14702
14703 2005-12-05  Bruno Haible  <bruno@clisp.org>
14704
14705         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
14706         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
14707         Reported by Mark Junker <mjscod@gmx.de>.
14708
14709 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
14710
14711         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
14712         Use implementation from Albert Chin, with some
14713         comments/corrections by Stepan Kasal and myself.
14714
14715 2005-12-02  Bruno Haible  <bruno@clisp.org>
14716
14717         * gnulib-tool (func_import): Accept GPLed build tool modules when
14718         --lgpl is given.
14719         * modules/csharpcomp-script: New file.
14720         * modules/csharpcomp: Depend on it.
14721         * modules/javacomp-script: New file.
14722         * modules/javacomp: Depend on it.
14723         Suggested by Simon Josefsson.
14724
14725 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
14726
14727         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
14728         statement, to work around an HP-UX 10.20 compiler bug reported by
14729         Peter O'Gorman.
14730
14731 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14732
14733         * modules/savedir (Depends-on): Add openat.
14734
14735 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14736
14737         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
14738         (uintmax_t) [defined uintmax_t]: Do not declare.
14739         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
14740         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
14741         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
14742         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
14743         sake of portability to weird hosts that C allows (though we don't
14744         know of any practical examples).
14745
14746         * lib/savedir.h (fdsavedir): New decl.
14747         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
14748         contains most of the former guts of savedir.
14749         (savedir): Use savedirstream.
14750         Include "openat.h".
14751
14752 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14753
14754         * modules/obstack (Files): Add m4/ulonglong.m4.
14755         Problem reported by Davide Angelocola.
14756
14757 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
14758
14759         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
14760         coreutils no longer futzes with rounding modes.
14761
14762 2005-11-14  Jim Meyering  <jim@meyering.net>
14763
14764         * lib/mkstemp-safer.c: Include <config.h>, required for possible
14765         replacement of mkstemp.
14766
14767 2005-11-10  Simon Josefsson  <jas@extundo.com>
14768
14769         * lib/readline.c: Remove EOL.
14770
14771 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14772
14773         * modules/gethrxtime (Depends-on): Add gettime.
14774
14775 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14776
14777         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
14778         or gettimeofday; no longer needed.
14779
14780 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14781
14782         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
14783         time business.
14784         (gethrxtime) [! (HAVE_NANOUPTIME
14785         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
14786         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
14787         our own approximation.
14788
14789 2005-11-08  Eric Blake  <ebb9@byu.net>
14790
14791         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14792
14793 2005-11-08  Eric Blake  <ebb9@byu.net>
14794
14795         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14796
14797 2005-11-04  Bruno Haible  <bruno@clisp.org>
14798
14799         * gnulib-tool: Implement --update mode.
14800
14801 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14802
14803         Fix porting problem reported by Theodoros V. Kalamatianos.
14804         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
14805         Don't assume that futimes failing means we must fail.
14806
14807 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14808
14809         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
14810         variables to suggest the intended function of the PATH_MAX check.
14811
14812 2005-10-30  Kean Johnston  <jkj@sco.com>
14813
14814         Trivial changes to support SCO systems.
14815         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
14816         as PATH_MAX.
14817         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
14818         where __ptr is null when no I/O is pending.
14819
14820 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14821
14822         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
14823         leave errno alone.  Problem reported by Dmitry V. Levin.
14824
14825 2005-10-28  Simon Josefsson  <jas@extundo.com>
14826
14827         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
14828         Test more.
14829
14830         * tests/test-gc-md2.c, tests/test-md2.c: New files.
14831
14832         * modules/md2, modules/md2-tests: New files.
14833
14834 2005-10-28  Simon Josefsson  <jas@extundo.com>
14835
14836         * m4/inet_ntop.m4: More tests.
14837
14838         * m4/gc-md2.m4, md2.m4: New file.
14839
14840 2005-10-28  Simon Josefsson  <jas@extundo.com>
14841
14842         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
14843         "restrict" keywords, as per POSIX.  Protect the function
14844         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
14845         Don't use K&R prototypes.  Check the sprintf return values.
14846         Re-define EAFNOSUPPORT if not present.  Indent.
14847
14848         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
14849         suggested by Bruno Haible <bruno@clisp.org>.
14850
14851         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
14852
14853         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
14854
14855         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
14856         libgcrypt).
14857
14858         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
14859
14860         * lib/md2.h, lib/md2.c: New files.
14861
14862 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
14863
14864         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
14865         errno alone.  Problem reported by Frederic Jolliton.
14866
14867 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
14868
14869         * modules/verify (License): Change from GPL to LGPL.  This is a
14870         tiny module and there are apparently near-equivalents that are
14871         under the BSD license.
14872
14873 2005-10-24  Simon Josefsson  <jas@extundo.com>
14874
14875         * modules/sha1: Relicense to LGPL.
14876
14877 2005-10-24  Simon Josefsson  <jas@extundo.com>
14878
14879         * lib/md4.h: Shrink buffer size, now that we changed the type.
14880
14881 2005-10-23  Simon Josefsson  <jas@extundo.com>
14882
14883         * gnulib-tool (func_import): Fix --tests-base.
14884
14885 2005-10-22  Simon Josefsson  <jas@extundo.com>
14886
14887         * modules/arcfour (Depends-on): Need stdint.
14888
14889 2005-10-22  Simon Josefsson  <jas@extundo.com>
14890
14891         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
14892         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
14893
14894 2005-10-22  Simon Josefsson  <jas@extundo.com>
14895
14896         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
14897         suggested by Bruno Haible <bruno@clisp.org>.
14898
14899 2005-10-22  Simon Josefsson  <jas@extundo.com>
14900
14901         * lib/crc.h: Include stddef.h, for size_t.
14902
14903 2005-10-22  Simon Josefsson  <jas@extundo.com>
14904
14905         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
14906         arcfour_context struct (simplify test vector testing in GNU
14907         Shishi).
14908
14909 2005-10-21  Simon Josefsson  <jas@extundo.com>
14910
14911         * modules/des, modules/des-tests: New files.
14912
14913         * modules/gc-des, modules/gc-des-tests: New files.
14914
14915         * tests/test-des.c, tests/test-gc-des.c: New file.
14916
14917 2005-10-21  Simon Josefsson  <jas@extundo.com>
14918
14919         * modules/arctwo, modules/arctwo-tests: New files.
14920
14921         * tests/test-arctwo.c: New file.
14922
14923         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
14924
14925         * tests/test-gc-arctwo.c: New file.
14926
14927 2005-10-21  Simon Josefsson  <jas@extundo.com>
14928
14929         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
14930         Bruno Haible <bruno@clisp.org>.
14931
14932         * m4/gc-des.m4: New file.
14933
14934 2005-10-21  Simon Josefsson  <jas@extundo.com>
14935
14936         * m4/arctwo.m4: New file.
14937
14938         * m4/gc-arctwo.m4: New file.
14939
14940 2005-10-21  Simon Josefsson  <jas@extundo.com>
14941
14942         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
14943         block.
14944
14945 2005-10-21  Simon Josefsson  <jas@extundo.com>
14946
14947         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
14948         <bruno@clisp.org>.
14949
14950         * lib/hmac-sha1.c (hmac_sha1): Likewise.
14951
14952         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
14953         Bruno Haible <bruno@clisp.org>.
14954
14955         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
14956         <bruno@clisp.org>.
14957
14958 2005-10-21  Simon Josefsson  <jas@extundo.com>
14959
14960         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
14961
14962 2005-10-21  Simon Josefsson  <jas@extundo.com>
14963
14964         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
14965
14966 2005-10-21  Simon Josefsson  <jas@extundo.com>
14967
14968         * lib/des.h, lib/des.c: New files.
14969
14970         * lib/gc-gnulib.c: Support DES.c
14971
14972 2005-10-21  Simon Josefsson  <jas@extundo.com>
14973
14974         * lib/arctwo.h, lib/arctwo.c: New files.
14975
14976         * lib/gc-gnulib.c: Support ARCTWO.
14977
14978 2005-10-21  Simon Josefsson  <jas@extundo.com>
14979
14980         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
14981         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14982
14983 2005-10-21  Simon Josefsson  <jas@extundo.com>
14984
14985         * gnulib-tool (func_import, func_create_testdir): Define automake
14986         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
14987         Makefile.am snippet),
14988         suggested by Bruno Haible <bruno@clisp.org>.
14989
14990         * modules/gc (Makefile.am): Use it.
14991
14992 2005-10-21  Bruno Haible  <bruno@clisp.org>
14993
14994         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
14995         patch.
14996
14997 2005-10-19  Simon Josefsson  <jas@extundo.com>
14998
14999         * tests/test-gc-rijndael.c: New file.
15000
15001         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
15002
15003 2005-10-19  Simon Josefsson  <jas@extundo.com>
15004
15005         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
15006         interface too.
15007
15008 2005-10-19  Simon Josefsson  <jas@extundo.com>
15009
15010         * tests/test-gc-arcfour.c: New file.
15011
15012         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
15013
15014 2005-10-19  Simon Josefsson  <jas@extundo.com>
15015
15016         * modules/gc-md4, modules/gc-md4-tests: New file.
15017
15018         * tests/test-gc-md4.c: New file.
15019
15020 2005-10-19  Simon Josefsson  <jas@extundo.com>
15021
15022         * m4/gc-md4.m4: New file.
15023
15024 2005-10-19  Simon Josefsson  <jas@extundo.com>
15025
15026         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
15027         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
15028         <kasal@ucw.cz>.
15029
15030 2005-10-19  Simon Josefsson  <jas@extundo.com>
15031
15032         * m4/gc-arcfour.m4: New file.
15033
15034         * m4/gc-rijndael.m4: New file.
15035
15036 2005-10-19  Simon Josefsson  <jas@extundo.com>
15037
15038         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
15039
15040 2005-10-19  Simon Josefsson  <jas@extundo.com>
15041
15042         * lib/gc-gnulib.c: Support ARCFOUR.
15043
15044 2005-10-19  Simon Josefsson  <jas@extundo.com>
15045
15046         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
15047         support.
15048
15049         * lib/gc.h: Add ECB enum type.
15050
15051         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
15052
15053 2005-10-18  Simon Josefsson  <jas@extundo.com>
15054
15055         * tests/test-md5.c: New file.
15056
15057         * modules/md5-tests: New file.
15058
15059 2005-10-18  Simon Josefsson  <jas@extundo.com>
15060
15061         * tests/test-md4.c: New file.
15062
15063         * modules/md4, modules/md4-tests: New files.
15064
15065 2005-10-18  Simon Josefsson  <jas@extundo.com>
15066
15067         * m4/md4.m4: New file.
15068
15069 2005-10-18  Simon Josefsson  <jas@extundo.com>
15070
15071         * lib/md4.h, lib/md4.c: New files, based on md5.?.
15072
15073 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
15074
15075         * gnulib-tool (func_create_testdir): Omit the second check whether
15076         BUILT_SOURCES in nonempty.
15077
15078 2005-10-17  Simon Josefsson  <jas@extundo.com>
15079
15080         * tests/test-rijndael.c: New file.
15081
15082 2005-10-17  Simon Josefsson  <jas@extundo.com>
15083
15084         * modules/sha1: Depend on stdint instead of md5.
15085
15086         * modules/md5: Depend on stdint, remove uint32_t.
15087
15088 2005-10-17  Simon Josefsson  <jas@extundo.com>
15089
15090         * modules/gc-sha1-tests: New file.
15091
15092         * tests/test-gc-sha1.c: New file.
15093
15094 2005-10-17  Simon Josefsson  <jas@extundo.com>
15095
15096         * m4/md5.m4: Remove call to uint32_t.m4.
15097
15098 2005-10-17  Simon Josefsson  <jas@extundo.com>
15099
15100         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
15101
15102         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
15103         md5.h.
15104
15105         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
15106
15107         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
15108
15109 2005-10-17  Simon Josefsson  <jas@extundo.com>
15110
15111         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
15112
15113 2005-10-17  Simon Josefsson  <jas@extundo.com>
15114
15115         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
15116
15117 2005-10-17  Simon Josefsson  <jas@extundo.com>
15118
15119         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
15120
15121         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
15122
15123 2005-10-17  Bruno Haible  <bruno@clisp.org>
15124
15125         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
15126         that it can also be used in a test.
15127
15128 2005-10-16  Bruno Haible  <bruno@clisp.org>
15129
15130         * gnulib-tool (func_emit_tests_Makefile_am): Also define
15131         TESTS_ENVIRONMENT, so that individual tests can augment it.
15132
15133         * gnulib-tool (func_create_testdir): Use an intermediate target for
15134         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
15135         macros, like $(ALLOCA_H), which cannot be passed through the command
15136         line.
15137
15138 2005-10-15  Simon Josefsson  <jas@extundo.com>
15139
15140         * modules/rijndael-tests: New file.
15141
15142         * modules/rijndael: New file.
15143
15144 2005-10-15  Simon Josefsson  <jas@extundo.com>
15145
15146         * m4/rijndael.m4: New file.
15147
15148 2005-10-15  Simon Josefsson  <jas@extundo.com>
15149
15150         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
15151
15152         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
15153
15154 2005-10-14  Simon Josefsson  <jas@extundo.com>
15155
15156         * tests/test-arcfour.c: New file.
15157
15158         * modules/arcfour, modules/arcfour-tests: New files.
15159
15160 2005-10-14  Simon Josefsson  <jas@extundo.com>
15161
15162         * m4/arcfour.m4: New file.
15163
15164 2005-10-14  Simon Josefsson  <jas@extundo.com>
15165
15166         * lib/arcfour.h, lib/arcfour.c: New files.
15167
15168 2005-10-14  Roland McGrath  <roland@redhat.com>
15169
15170         Import from libc.  [BZ #1331]
15171         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
15172         macro argument.
15173         Reported by Matej Vela <vela@debian.org>.
15174
15175 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
15176
15177         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
15178         include <wchar.h>; no longer needed.
15179
15180 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
15181
15182         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
15183
15184 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
15185         and  Ulrich Drepper  <drepper@redhat.com>
15186
15187         Import from libc.
15188         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
15189         instead of inline stream orientation test and two separate
15190         function calls.  Pay no attention to USE_IN_LIBIO.
15191
15192 2005-10-13  Simon Josefsson  <jas@extundo.com>
15193
15194         * modules/gc-hmac-md5-tests: New file.
15195
15196         * tests/test-gc-hmac-sha1.c: New file.
15197
15198         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
15199
15200         * modules/gc-hmac-md5-tests: New file.
15201
15202         * tests/test-gc-md5.c: New file.
15203
15204         * modules/gc-md5-tests: New file.
15205
15206 2005-10-13  Simon Josefsson  <jas@extundo.com>
15207
15208         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
15209         Move memory allocation outside of loop.
15210
15211 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
15212
15213         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
15214         intermediate directory is in a read-only file system.  Problem
15215         reported by Eric Blake.
15216
15217 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
15218
15219         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
15220
15221 2005-10-12  Simon Josefsson  <jas@extundo.com>
15222
15223         * tests/test-hmac-sha1.c: New file.
15224
15225         * modules/hmac-sha1-tests: New file.
15226
15227         * modules/hmac-sha1: New file.
15228
15229 2005-10-12  Simon Josefsson  <jas@extundo.com>
15230
15231         * modules/gc-sha1: New file.
15232
15233 2005-10-12  Simon Josefsson  <jas@extundo.com>
15234
15235         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
15236
15237         * tests/test-gc-pbkdf2-sha1.c: New file.
15238
15239 2005-10-12  Simon Josefsson  <jas@extundo.com>
15240
15241         * modules/gc-md5, modules/gc-hmac-md5: New files.
15242
15243         * modules/gc (Files): Remove md5, memxor and hmac files.
15244
15245 2005-10-12  Simon Josefsson  <jas@extundo.com>
15246
15247         * m4/gc-pbkdf2-sha1.m4: New file.
15248
15249         * m4/gc-hmac-sha1.m4: New file.
15250
15251         * m4/gc-sha1: New file.
15252
15253         * m4/hmac-sha1.m4: New file.
15254
15255 2005-10-12  Simon Josefsson  <jas@extundo.com>
15256
15257         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
15258
15259         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
15260
15261 2005-10-12  Simon Josefsson  <jas@extundo.com>
15262
15263         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
15264         suggested by Bruno Haible <bruno@clisp.org>.
15265
15266 2005-10-12  Simon Josefsson  <jas@extundo.com>
15267
15268         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
15269
15270 2005-10-12  Simon Josefsson  <jas@extundo.com>
15271
15272         * lib/gc-pbkdf2-sha1.c: New file.
15273
15274         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
15275
15276 2005-10-12  Simon Josefsson  <jas@extundo.com>
15277
15278         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
15279
15280         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
15281
15282 2005-10-12  Simon Josefsson  <jas@extundo.com>
15283
15284         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
15285         GC_USE_HMAC_MD5, respectively.
15286
15287         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
15288         (gc_md5): Fix typo.
15289
15290         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
15291
15292         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
15293
15294         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
15295
15296 2005-10-12  Bruno Haible  <bruno@clisp.org>
15297
15298         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
15299         Reported by Stepan Kasal <kasal@ucw.cz>.
15300
15301 2005-10-11  Simon Josefsson  <jas@extundo.com>
15302
15303         * tests/test-crc.c: New file.
15304
15305         * modules/crc, modules/crc-tests: New files.
15306
15307 2005-10-11  Simon Josefsson  <jas@extundo.com>
15308
15309         * m4/crc.m4: New file.
15310
15311 2005-10-11  Simon Josefsson  <jas@extundo.com>
15312
15313         * lib/gc.h: Add gc_hash and gc_hash_buffer.
15314
15315         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
15316
15317         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
15318
15319 2005-10-11  Simon Josefsson  <jas@extundo.com>
15320
15321         * lib/crc.h, lib/crc.c: New files.
15322
15323         * lib/gc.h (gc_hash_buffer): Add doc.
15324
15325 2005-10-11  Bruno Haible  <bruno@clisp.org>
15326
15327         * modules/c-strcasestr: New file.
15328         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
15329
15330 2005-10-11  Bruno Haible  <bruno@clisp.org>
15331
15332         * modules/c-strcase: New file.
15333         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
15334
15335 2005-10-11  Bruno Haible  <bruno@clisp.org>
15336
15337         * lib/strcasecmp.c: Include limits.h.
15338         (strcasecmp): Avoid integer overflow on exotic platforms.
15339         * lib/strncasecmp.c: Include limits.h.
15340         (strncasecmp): Avoid integer overflow on exotic platforms.
15341         Reported by Paul Eggert.
15342
15343 2005-10-11  Bruno Haible  <bruno@clisp.org>
15344
15345         * lib/c-strcasestr.h: New file, from GNU gettext.
15346         * lib/c-strcasestr.c: New file, from GNU gettext.
15347
15348 2005-10-11  Bruno Haible  <bruno@clisp.org>
15349
15350         * lib/c-strcase.h: New file, from GNU gettext.
15351         * lib/c-strcasecmp.c: New file, from GNU gettext.
15352         * lib/c-strncasecmp.c: New file, from GNU gettext.
15353
15354 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15355
15356         * modules/mempcpy (License): GPL -> LGPL.
15357         * modules/strchrnul (License): Likewise.
15358         * modules/sysexits (License): Likewise.
15359
15360 2005-10-08  Simon Josefsson  <jas@extundo.com>
15361
15362         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
15363
15364 2005-10-07  Simon Josefsson  <jas@extundo.com>
15365
15366         * m4/memxor.m4: Remove gl_C_RESTRICT call.
15367
15368 2005-10-06  Simon Josefsson  <jas@extundo.com>
15369
15370         * tests/test-hmac-md5.c: New file.
15371
15372         * modules/hmac-md5-tests: New file.
15373
15374         * modules/hmac-md5: New file.
15375
15376 2005-10-06  Simon Josefsson  <jas@extundo.com>
15377
15378         * m4/hmac-md5.m4: New file.
15379
15380         * m4/memxor.m4: Require gl_C_RESTRICT.
15381
15382 2005-10-06  Simon Josefsson  <jas@extundo.com>
15383
15384         * lib/memxor.c (memxor): Avoid casts and warnings.
15385
15386 2005-10-06  Simon Josefsson  <jas@extundo.com>
15387
15388         * lib/hmac-md5.c: New file.
15389
15390         * lib/hmac.h: New file.
15391
15392 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15393
15394         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
15395         promotes to int, not unsigned int, to catch the AIX 5.3
15396         compiler bug.
15397
15398 2005-10-05  Simon Josefsson  <jas@extundo.com>
15399
15400         * modules/memxor: New file.
15401
15402         * modules/iconv (Files): Move config.rpath to havelib, it is used
15403         there.
15404
15405         * modules/havelib (Files): Add config.rpath.
15406
15407 2005-10-05  Simon Josefsson  <jas@extundo.com>
15408
15409         * m4/memxor.m4: New file.
15410
15411 2005-10-05  Simon Josefsson  <jas@extundo.com>
15412
15413         * lib/memxor.c (memxor): Fix compiler error.
15414
15415         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
15416         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
15417
15418         * lib/memxor.h, lib/memxor.c: New files.
15419
15420         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
15421         we assume all systems have it, suggested by Jim Meyering
15422         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
15423         any systems lack sys/socket.h; mingw32 is known to lack it, but we
15424         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
15425         same reasons.
15426
15427 2005-10-05  Simon Josefsson  <jas@extundo.com>
15428
15429         * config/srclist.txt: Add glibc bug 1423 for md5.h.
15430
15431 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
15432
15433         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
15434         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
15435         needed, since the source code now assumes these .h files.
15436
15437 2005-10-05  Derek Price  <derek@ximbiot.com>
15438
15439         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
15440
15441 2005-10-05  Bruno Haible  <bruno@clisp.org>
15442
15443         * modules/stdint (License): Change to LGPL.
15444
15445 2005-10-04  Simon Josefsson  <jas@extundo.com>
15446
15447         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
15448         D. Baushke" <mdb@gnu.org>.
15449
15450 2005-10-04  Bruno Haible  <bruno@clisp.org>
15451
15452         * lib/verify.h (verify_true): Provide alternative definition for C++.
15453
15454 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
15455
15456         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
15457         (SSIZE_MAX): New macro, if not already defined.
15458         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
15459         than 2 GiB.
15460
15461 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15462
15463         Sync from coreutils.
15464         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
15465         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
15466         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
15467         ULLONG_MAX doesn't work with 2.7.2.1.
15468
15469 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15470
15471         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
15472         From Ben Pfaff.
15473
15474         * modules/exclude (Depends-on): Depend on verify.
15475         * modules/strtoimax (Depends-on): Likewise.
15476         * modules/utimecmp (Depends-on): Likewise.
15477
15478 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15479
15480         * lib/exclude.c: Include verify.h.
15481         (verify): Remove.  All callers changed to use verify.h's version.
15482         * lib/strtoimax.c: Likewise.
15483         * lib/utimecmp.c: Likewis.e
15484
15485         Sync from coreutils.
15486         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
15487         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
15488         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
15489         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
15490         bother returning ENOSYS if settimeofday or stime fails; just let
15491         them return whatever errno they want to return.
15492         * lib/utimens.c: Include unistd.h, for dup2.
15493         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
15494         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
15495
15496 2005-10-02  Jim Meyering  <jim@meyering.net>
15497
15498         Sync from coreutils.
15499         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
15500         from glibc-2.2.5 that fails for read-only files.
15501
15502 2005-10-02  Jim Meyering  <jim@meyering.net>
15503
15504         Sync from coreutils.
15505         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
15506         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
15507         `#if HAVE_CONFIG_H'.
15508         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
15509         Remove AT_FDCWD test.
15510         Do not consume the fd unless successful.
15511         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
15512         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
15513         block, so that we don't even try to compile it if settimeofday is
15514         available.  This works around a compilation failure on OSF1 V5.1,
15515         due to stime requiring a `long int*' while tv_sec is `int'.
15516
15517 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
15518
15519         Sync from coreutils.
15520         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
15521         against `yes', rather than just testing for nonempty.
15522
15523 2005-10-01  Simon Josefsson  <jas@extundo.com>
15524
15525         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
15526         and Darwin.
15527
15528         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
15529         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
15530         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
15531         freeaddrinfo and gai_strerror are declared by the POSIX headers.
15532         Check if struct addrinfo is declared.
15533
15534 2005-10-01  Simon Josefsson  <jas@extundo.com>
15535
15536         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
15537         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
15538         AI_* and EAI_* definitions.  Protect function declarations.
15539
15540 2005-10-01  Jim Meyering  <jim@meyering.net>
15541
15542         Sync from coreutils.
15543
15544         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
15545         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
15546         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
15547         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15548         in the inet and nsl libraries.  Required on Solaris 5.7.
15549
15550 2005-10-01  Jim Meyering  <jim@meyering.net>
15551
15552         Sync from coreutils.
15553         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15554         in the inet and nsl libraries.  Required on Solaris 5.7.
15555
15556 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
15557
15558         * lib/getdelim.c (getdelim): Remove unused variables.
15559
15560 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
15561
15562         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
15563         so that the code works even with ancient cpp.  Portability problem
15564         with GCC 2.7.2.1 reported by Thomas M.Ott.
15565
15566 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
15567
15568         * modules/regex (Depends-on): Add strcase.
15569
15570         * modules/gethostname (Licence): Change from GPL to LGPL, since
15571         gethostname.c is a trivial implementation of a standard library
15572         function.
15573         * modules/poll (License): Change from GPL to LGPL, since it's
15574         derived from LGPL code.
15575
15576 2005-09-27  Jim Meyering  <jim@meyering.net>
15577
15578         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
15579         HAVE_CONFIG_H.
15580
15581         * lib/intprops.h (signed_type_or_expr__): Define.
15582         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
15583         for unsigned types.
15584
15585 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
15586
15587         * lib/verify.h (verify_expr): Remove, replacing with:
15588         (verify_true): New macro that returns true instead of void.
15589         (verify_type__): Remove.
15590         (verify): Use verify_true rather than verify_type__.
15591
15592 2005-09-26  Bruno Haible  <bruno@clisp.org>
15593
15594         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
15595         is necessary.
15596         (lib_SOURCES): Remove mbchar.c.
15597         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
15598         (Files): Add m4/mbrtowc.m4.
15599         * modules/mbiter: Likewise.
15600         * modules/mbuiter: Likewise.
15601
15602 2005-09-26  Bruno Haible  <bruno@clisp.org>
15603
15604         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
15605         compile mbchar.c if they are not both present.
15606         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
15607         * m4/mbiter.m4 (gl_MBITER): Likewise.
15608         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
15609         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
15610         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
15611
15612 2005-09-25  Jim Meyering  <jim@meyering.net>
15613
15614         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
15615         also uses socklen_t.
15616
15617 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
15618
15619         * lib/utimens.c (ENOSYS): Define if not already defined.
15620         (futimens): Support having a null PATH if the file descriptor
15621         is nonnegative.
15622
15623         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
15624         Remove.
15625         (__attribute): Define to empty unless GCC 3.1 or later.
15626         This works around a core dump on OpenBSD 3.4, which has GCC
15627         2.95.3, which dumps core when given __attribute__(()).  It also
15628         simplifies other tests, since we really don't want to bother with
15629         worrying about which ancient version of GCC supported what.
15630         Original problem reported by Yoann Vandoorselaere, with part of
15631         the fix suggested by Derek Price.
15632
15633 2005-09-24  Jim Meyering  <jim@meyering.net>
15634
15635         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
15636         so we can once again use a positive bitfield width of 1 -- now we
15637         don't have to explain why we were using a bitfield width of 2.
15638
15639 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15640
15641         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
15642         and similarly for the other external symbols.  Problem reported
15643         by James Gallager.
15644
15645         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
15646         bug reported by Jim Meyering.
15647
15648         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
15649         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
15650         not needed, since socklen is a prerequisite module.
15651
15652 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15653
15654         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
15655         Problem reported by Eric Blake.
15656         (getaddrinfo): Initialize se so that it's not garbage.
15657         Redo internal storage allocation so that it doesn't make unportable
15658         assumptions about alignment.
15659         Fix a memory leak.
15660
15661         * lib/utimens.c (futimens): Use futimesat if available.
15662         Prefer it to futimes since it doesn't have the futimes bug.
15663
15664         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
15665         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
15666         Instead, declare a function that returns a pointer to an array,
15667         and use verify_type__ to declare the size of the array.
15668         Problem and germ of a solution reported by Bruno Haible.
15669         (verify_type__): Use 2, not 1, for bitfield size, to avoid
15670         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
15671
15672 2005-09-23  Jim Meyering  <jim@meyering.net>
15673
15674         Sync from coreutils.
15675         Correct build failure (socklen_t not defined) on at least
15676         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
15677         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
15678
15679 2005-09-23  Jim Meyering  <jim@meyering.net>
15680
15681         * modules/getaddrinfo (Depends-on): Add socklen.
15682
15683 2005-09-23  Bruno Haible  <bruno@clisp.org>
15684
15685         * tests/test-verify.c: New file.
15686
15687 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15688
15689         Sync from coreutils.
15690
15691         * modules/argmatch (Depends-on): Add verify.
15692         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
15693         unistd-safer.
15694         * modules/save-cwd (Depends-on): Likewise.
15695
15696         * modules/openat (Files): Add lib/openat-die.c.
15697         (Depends-on): Remove error, exitfail.
15698         Add dirname.
15699
15700         * modules/verify: New file.
15701         * MODULES.html.sh (Diagnostics <assert.h>): New section,
15702         with "verify" module.
15703
15704 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15705
15706         Sync from coreutils.
15707
15708         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
15709         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
15710         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
15711         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
15712         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
15713         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
15714         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
15715         Don't bother checking for string.h, stdlib.h, unistd.h.
15716         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
15717         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
15718         module's job.
15719         * m4/jm-macros.m4 (gl_MACROS): Likewise.
15720         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
15721
15722         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
15723         (gl_GETDATE): Use it.
15724
15725         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
15726
15727 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15728
15729         Sync from coreutils.
15730
15731         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
15732         stat-time.h.
15733         * lib/argmatch.h: Include verify.h
15734         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
15735         (ARGMATCH_ASSERT): Remove; unused.
15736         * lib/canonicalize.c: Assume STDC_HEADERS.
15737         * lib/exclude.c: Include "strcase.h".
15738         * lib/regex_internal.h [!defined _LIBC]: Likewise.
15739         * lib/getusershell.c: Include stdio--.h rather than stdio.h
15740         and stdio-safer.h.
15741         (getusershell): Call fopen, not fopen_safer.
15742         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
15743         Do not include unistd-safer.h.
15744         (save_cwd): Don't call fd_safer; no longer needed
15745         now that we include fcntl--.h.
15746
15747         * lib/getdate.y (relative_time): New type.
15748         (RELATIVE_TIME_0): New constant.
15749         (parser_control): Use relative_time instead of doing it ourselves.
15750         (%union): Add new relative_time rel member.
15751         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
15752         Now typeless.
15753         (relunit, relunit_snumber): Now of type rel.
15754         (zone, rel, relunit, get_date): Adjust to above changes.
15755
15756         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
15757         Do not include unistd-safer.h.
15758         (getloadavg): Don't call fd_safer; no longer needed
15759         now that we include fcntl--.h.
15760
15761         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
15762         (make_dir_parents): Treat ENOSYS like EEXIST.
15763
15764         Improve quality of diagnostics on restore_cwd failure.
15765         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
15766         (make_dir_parents): Last arg is now int * (for errno), not bool *.
15767         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
15768         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
15769         each time through the loop.  Do not diagnose restore_cwd failure;
15770         that is the caller's job (and perhaps the caller does not care).
15771
15772         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
15773         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
15774         If the file already exists but is not a directory, don't bother
15775         to try to make its parents.
15776         Close potential file descriptor leak if we can't chdir("/") (!).
15777         Don't always return true if chdir($PWD) fails; return true only
15778         if the requested action was done successfully (except for the
15779         chdir($PWD)).
15780         Don't log final directory unless we actually made it.
15781         Refactor to avoid duplicate code to fix up permissions.
15782         Don't attempt to fix up parent permissions if chdir($PWD) fails.
15783
15784         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
15785         to make it a bit faster and (I hope) clearer.
15786         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
15787         Fix bug in formats like %2N.
15788
15789         * lib/verify.h: New file.
15790
15791 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15792
15793         Sync from coreutils.
15794         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
15795
15796 2005-09-22  Jim Meyering  <jim@meyering.net>
15797
15798         Sync from coreutils.
15799
15800         * m4/lstat.m4 (gl_FUNC_LSTAT):
15801         Use AC_LIBSOURCES to require lstat.c and lstat.h.
15802         Remove obsolete comment.
15803         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
15804         * m4/xstrtod.m4: Likewise.
15805
15806         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
15807
15808 2005-09-22  Jim Meyering  <jim@meyering.net>
15809
15810         Sync from coreutils.
15811
15812         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
15813
15814         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
15815         the .tm_year member, since otherwise gcc-4.0 would now warn about
15816         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
15817
15818         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
15819         order to avoid an unsuppressible warning from gcc on 64-bit systems.
15820
15821         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
15822         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
15823         when run in a time zone for which daylight savings time is in effect
15824         for the starting date.
15825
15826         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
15827         stop us from restricting permissions of just-created absolute-named
15828         directories.
15829         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
15830         to restore initial working directory.
15831         * lib/mkdir-p.c (make_dir_parents): New parameter:
15832         different_working_dir, to tell caller if/when we change the working
15833         directory and are unable to return to the initial one.
15834         * lib/mkdir-p.h (make_dir_parents): Update prototype.
15835         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
15836         `return false'.  This fixes a bug introduced on 2004-07-30.
15837
15838         * lib/openat.c (fdopendir): Be sure to close the supplied
15839         file descriptor before returning.  This makes our replacement
15840         implementation a little closer to Solaris's, where fdopendir
15841         ties the file descriptor to the returned DIR* pointer.
15842         * lib/openat.c (unlinkat): New function.
15843         * lib/openat.h (unlinkat): Add prototype.
15844         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
15845         (openat_restore_fail): Rename from openat_restore_die.
15846         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
15847
15848         Provide an alternative to exiting immediately upon save_cwd or
15849         restore_cwd failure.  Now, an application can arrange e.g.,
15850         to perform a longjump in that case.
15851         * lib/openat.c: Include dirname.h.
15852         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
15853         (rpl_openat, fdopendir, fstatat): Call openat_save_die
15854         and openat_restore_die rather than calling error directly.
15855         Don't include "error.h" or "exitfail.h"; they're no longer needed.
15856
15857         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
15858         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
15859         define.
15860
15861         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
15862         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
15863                             int utc, int nanoseconds);
15864         Background:
15865         date should not have to allocate a megabyte of virtual memory to
15866         handle a format argument like +%1048575T.  When implemented with
15867         strftime, it must allocate such a buffer, use strftime to fill it
15868         in, print it, then free it.
15869         With fprintftime, it simply prints everything and exits.
15870         With no need for memory allocation, that's one fewer way to fail.
15871         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
15872         optional field width, not before, so we accept %9:z, not %:9z.
15873         (my_strftime): Be sure to use L_('x') for literals.
15874
15875         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
15876         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
15877         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
15878         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
15879         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
15880         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
15881         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
15882         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
15883         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
15884         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
15885         * lib/xgethostname.c, lib/xreadlink.c:
15886         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
15887
15888         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
15889         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
15890         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
15891         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
15892         and don't include <sys/file.h>).
15893
15894 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
15895
15896         Sync from coreutils.
15897
15898         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
15899         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
15900         [!LDAV_DONE]: Avoid unused variable warning.
15901
15902 2005-09-21  Bruno Haible  <bruno@clisp.org>
15903
15904         * lib/unicodeio.h (unicode_to_mb): New declaration.
15905
15906 2005-09-20  Derek Price  <derek@ximbiot.com>
15907
15908         * lib/getaddrinfo.c: Don't include <netdb.h> included from
15909         getaddrinfo.h.
15910
15911 2005-09-20  Bruno Haible  <bruno@clisp.org>
15912
15913         * gnulib-tool: Remove trailing slashes from the values specified for
15914         --source-base, --m4-base, --tests-base, --aux-dir.
15915         Suggested by Simon Josefsson <jas@extundo.com>.
15916
15917 2005-09-20  Bruno Haible  <bruno@clisp.org>
15918
15919         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
15920         func_modules_to_filelist, func_import, func_create_testdir): Make all
15921         sorting results locale-independent, so that gnulib-cache.m4 doesn't
15922         change when gnulib-tool is invoked in a different locale.
15923
15924 2005-09-19  Simon Josefsson  <jas@extundo.com>
15925
15926         * m4/socklen.m4: Fix typo.
15927
15928 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15929
15930         Use a consistent style for including <config.h>.
15931         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
15932         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
15933         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
15934         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
15935         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
15936         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
15937         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
15938         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
15939         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
15940         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
15941         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
15942         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
15943         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
15944         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
15945         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
15946         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
15947         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
15948         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
15949         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
15950         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
15951         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
15952         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
15953         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
15954         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
15955         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
15956         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
15957         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
15958         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
15959         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
15960         lib/xstrtoumax.c, lib/yesno.c:
15961         Standardize inclusion of config.h.
15962         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
15963         lib/inttostr.h:  Removed inclusion of config.h from header files.
15964         * lib/inttostr.c:  Adjusted in-tree users.
15965         * lib/timespec.h: Remove superfluous warning to include config.h.
15966         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
15967         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
15968         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
15969         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
15970         config.h with HAVE_CONFIG_H.
15971
15972 2005-09-19  Jim Meyering  <jim@meyering.net>
15973
15974         * modules/pathmax (License): Change to LGPL.
15975
15976 2005-09-19  Derek Price  <derek@ximbiot.com>
15977
15978         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
15979
15980 2005-09-19  Bruno Haible  <bruno@clisp.org>
15981
15982         * gnulib-tool (import): Provide default for --tests-base.
15983
15984 2005-09-19  Bruno Haible  <bruno@clisp.org>
15985
15986         * doc/quote.texi: New file, extracted from gnulib.texi.
15987         * doc/ctime.texi: New file, extracted from gnulib.texi.
15988         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
15989         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
15990         * doc/gnulib.texi: Include them.
15991
15992 2005-09-18  Bruno Haible  <bruno@clisp.org>
15993
15994         Portability fix.
15995         * gnulib-tool (func_readlink): New function.
15996         (func_ln_if_changed): Use it.
15997
15998 2005-09-18  Bruno Haible  <bruno@clisp.org>
15999
16000         * gnulib-tool: Support --with-tests also with --import.
16001         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
16002         (func_import): Use variables $testsbase and $inctests. Emit a
16003         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
16004         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
16005         SUBDIRS += $testsdir.
16006         (func_create_testdir): Update.
16007
16008 2005-09-18  Bruno Haible  <bruno@clisp.org>
16009
16010         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
16011         instead of $dry_run.
16012         (func_cp_if_changed, func_mv_if_changed): Remove functions.
16013         (func_ln_if_changed): Don't handle dry-run here.
16014         (func_import): In dry-run mode, detect more precisely which actions
16015         would be performed, and don't use "...ing" verbs.
16016
16017 2005-09-18  Bruno Haible  <bruno@clisp.org>
16018
16019         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
16020         (func_import): Use join on two temporary files instead of three nested
16021         loops, in order to determine which files are new or old.
16022
16023 2005-09-18  Bruno Haible  <bruno@clisp.org>
16024
16025         * gnulib-tool (func_import): Comment out code that spits out the
16026         new files with --dry-run.
16027
16028 2005-09-18  Bruno Haible  <bruno@clisp.org>
16029
16030         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
16031
16032 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16033
16034         * lib/stat-time.h: New file.
16035         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
16036         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
16037         in a different way.
16038         (timespec_cmp): New function.
16039         * lib/utimecmp.c: Include stat-time.h.
16040         (SYSCALL_RESOLUTION): Depend on whether various struct stat
16041         members exist, not on the obsolescent ST_MTIM_NSEC.
16042         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
16043
16044 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16045
16046         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
16047
16048 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16049
16050         * MODULES.html.sh (File system functions): Add stat-time.
16051         * modules/stat-time: New file.
16052         * modules/timespec (Files): Remove m4/st_mtim.m4; this
16053         is now done in a different way, by the stat-time module.
16054         * modules/utimecmp (Depends-on): Add stat-time.
16055
16056 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16057
16058         * m4/st_mtim.m4: Remove.  Superseded by...
16059         * m4/stat-time.m4: New file.
16060         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
16061         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
16062
16063 2005-09-15  Derek Price  <derek@ximbiot.com>
16064
16065         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
16066
16067 2005-09-15  Derek Price  <derek@ximbiot.com>
16068
16069         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
16070         * lib/regex_internal.c: Ditto, using this...
16071         (__GNUC_PREREQ): ...new macro.
16072         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
16073         using...
16074         (__GNUC_PREREQ): ...this new macro.
16075
16076         * lib/strstr.h: Include string.h. Define strstr as a macro here.
16077
16078 2005-09-15  Derek Price  <derek@ximbiot.com>
16079             Paul Eggert  <eggert@cs.ucla.edu>
16080
16081         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
16082         changes, consolidating in...
16083         * lib/regex_internal.h: ...this file.
16084
16085 2005-09-13  Jim Meyering  <jim@meyering.net>
16086
16087         * lib/canon-host.c: Filter through gnu indent and reword comments
16088         slightly.
16089         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
16090
16091 2005-09-13  Derek Price  <derek@ximbiot.com>
16092
16093         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
16094         failure.
16095         Reported by Jim Meyering  <jim@meyering.net>.
16096
16097 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
16098
16099         * lib/base64.c: Typo.
16100         (base64_encode): Put b64str in initialized data section.
16101
16102 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
16103
16104         Merge glibc and coreutils changes into gnulib, plus a few
16105         extra fixes.
16106         * lib/md5.c: Use #error rather than a string.
16107         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
16108         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
16109         (__attribute__): Define to empty for non recent-GCC.
16110         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
16111         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
16112         Renamed from their non-__ counterparts, with new macros replacing
16113         them if not _LIBC.  Add __THROW attribute.
16114         (rol): Remove.
16115         (struct md5_ctx): Align buffer if using GCC.
16116         * lib/sha1.h (struct sha1_ctx): Likewise.
16117         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
16118         The old name was backwards.
16119         (NOTSWAP): Remove; not used.
16120         (rol): New macro, moved here from md5.h.
16121         (sha1_process_block): Remove a FIXME that doesn't make sense.
16122
16123 2005-09-12  Derek Price  <derek@ximbiot.com>
16124
16125         Return usable errors from canon-host.
16126         * lib/canon-host.h: New file.
16127         * lib/canon-host.c (canon_host): Wrap...
16128         (canon_host_r): ...this new function, which now relies exclusively on
16129         getaddrinfo.
16130         (ch_strerror): New function.
16131         (last_cherror): New global.
16132         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
16133         interface.
16134         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
16135         void *.
16136         (freeaddrinfo): Free ai->ai_canonname when set.
16137
16138 2005-09-12  Derek Price  <derek@ximbiot.com>
16139
16140         Make canon-host require getaddrinfo.
16141         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
16142         AC_LIBSOURCE canon-host.h.  Call...
16143         (gl_PREREQ_CANON_HOST): ...this new function, which requires
16144         gl_GETADDRINFO.
16145         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
16146
16147 2005-09-12  Derek Price  <derek@ximbiot.com>
16148
16149         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
16150         LGPL.
16151         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
16152
16153 2005-09-12  Derek Price  <derek@ximbiot.com>
16154
16155         * lib/gai_strerror.c: Include config.h when available.  Include
16156         getaddrinfo.h before other headers to test interface.
16157         Reported by Larry Jones <lawrence.jones@ugs.com>.
16158
16159 2005-09-12  Derek Price  <derek@ximbiot.com>
16160             Paul Eggert  <eggert@cs.ucla.edu>
16161
16162         * modules/glob (Files): Add glob-libc.h.
16163
16164 2005-09-12  Derek Price  <derek@ximbiot.com>
16165             Paul Eggert  <eggert@cs.ucla.edu>
16166
16167         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
16168         glob_.h, glob-libc.h.
16169         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
16170
16171 2005-09-12  Derek Price  <derek@ximbiot.com>
16172             Paul Eggert  <eggert@cs.ucla.edu>
16173
16174         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
16175         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
16176         protecting things that should be done only in gnulib contexts.
16177         * lib/glob_.h: New file, containing only the glob things needed for
16178         gnulib.
16179         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
16180         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
16181         (glob, globfree, glob_pattern_p): Now defined simply in terms of
16182         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
16183         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
16184         and to respect the namespace rules better.
16185
16186 2005-09-08  Simon Josefsson  <jas@extundo.com>
16187
16188         * modules/socklen: New file.
16189
16190 2005-09-08  Simon Josefsson  <jas@extundo.com>
16191
16192         * m4/socklen.m4: New file.
16193
16194 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16195
16196         * modules/utimens (Files): Add m4/utimbuf.m4, since
16197         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
16198         Reported by Sergey Poznyakoff.
16199
16200 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16201
16202         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
16203         definitions, since that's the preferred style in glibc.
16204         Fix a minor spacing issue, and update copyright notice to match
16205         glibc's.
16206
16207 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16208
16209         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
16210
16211 2005-09-06  Simon Josefsson  <jas@extundo.com>
16212
16213         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
16214         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
16215
16216 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
16217
16218         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
16219         warning.
16220
16221 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
16222
16223         * config/srclist.txt: Add glibc bug 1302.
16224
16225 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
16226
16227         Change bitset word type from unsigned int to unsigned long int,
16228         as this has better performance on typical 64-bit hosts.
16229         Port bitset code to hosts with unusual word sizes.
16230         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
16231         (build_collating_symbol):
16232         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
16233         argument is a bitset.  This is merely a style issue, but it makes
16234         it clearer that an entire array is expected.
16235         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
16236         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
16237         Port to the case where bitset_word is not the same as unsigned int.
16238         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
16239         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
16240         Likewise.
16241         * lib/regexec.c (check_dst_limits_calc_pos_1,
16242         check_subexp_matching_top):
16243         (build_trtable, group_nodes_into_DFAstates):
16244         Likewise.
16245         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
16246         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
16247         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
16248         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
16249         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
16250         * lib/regcomp.c (optimize_subexps, lower_subexp):
16251         Work even if bitset_word has holes in its bitwise representation.
16252         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
16253         * lib/regexec.c (check_dst_limits_calc_pos_1,
16254         check_subexp_matching_top):
16255         Likewise.
16256         * lib/regex_internal.c (re_string_reconstruct):
16257         Don't assume UCHAR_MAX == 255.
16258         * lib/regex_internal.h (bitset_set_all): Likewise.
16259         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
16260         All uses changed.
16261         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
16262         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
16263         All uses changed.
16264         (BITSET_WORD_MAX): New macro.
16265         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
16266         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
16267         (bitset_empty, bitset_copy):
16268         Prefer sizeof (bitset) to multiplying it out ourselves.
16269         (bitset_not_merge): Remove; unused.
16270         (bitset_contain): Return bool, not unsigned int with one bit on.
16271         All callers changed.
16272         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
16273         alignment than re_node_set; do this by defining a new internal
16274         type struct dests_alloc and using it to allocate memory.
16275
16276 2005-09-05  Bruno Haible  <bruno@clisp.org>
16277
16278         * gnulib-tool (func_import): Fix comparison in handling of symbolic
16279         links.
16280
16281 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
16282
16283         * modules/size_max (Makefile.am): Add size_max.h
16284
16285 2005-09-04  Derek Price  <derek@ximbiot.com>
16286
16287         * gnulib-tool (func_import): Fix reversed $symbolic logic.
16288
16289 2005-09-03  Simon Josefsson  <jas@extundo.com>
16290
16291         * gnulib-tool: Fix typo.
16292
16293 2005-09-03  Simon Josefsson  <jas@extundo.com>
16294
16295         * config/srclist.txt: Add glibc bug 1293.
16296
16297 2005-09-03  Derek Price  <derek@ximbiot.com>
16298
16299         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
16300         From Larry Jones <lawrence.jones@ugs.com>.
16301
16302 2005-09-02  Simon Josefsson  <jas@extundo.com>
16303
16304         * modules/socklen: New file.
16305
16306 2005-09-02  Simon Josefsson  <jas@extundo.com>
16307
16308         * modules/havelib: New module.
16309
16310         * modules/gettext, modules/iconv, modules/lock, modules/readline:
16311         Use havelib.
16312
16313 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
16314
16315         Check for arithmetic overflow when calculating sizes, to prevent
16316         some buffer-overflow issues.  These patches are conservative, in the
16317         sense that when I couldn't determine whether an overflow was possible,
16318         I inserted a run-time check.
16319         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
16320         macros.
16321         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
16322         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
16323         (re_xnrealloc, re_x2nrealloc): New inline functions.
16324         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
16325         parse_bracket_exp):
16326         (build_equiv_class, build_charclass): Check for arithmetic overflow
16327         in size expression calculations.
16328         * lib/regex_internal.c (re_string_realloc_buffers):
16329         (build_wcs_upper_buffer, re_node_set_add_intersect):
16330         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
16331         (re_dfa_add_node, register_state): Likewise.
16332         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
16333         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
16334         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
16335         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
16336
16337 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
16338
16339         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16340         m4/ulonglong.m4.  Problem reported by Martin Lambers.
16341
16342 2005-09-02  Bruno Haible  <bruno@clisp.org>
16343
16344         Support for lib vs. lib64 distinction on biarch platforms.
16345         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
16346         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
16347         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
16348
16349 2005-09-02  Bruno Haible  <bruno@clisp.org>
16350
16351         * gnulib-tool (import): In the other first-use case, provide defaults
16352         as well.
16353
16354 2005-09-02  Bruno Haible  <bruno@clisp.org>
16355
16356         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
16357         patches not yet found in the latest gettext release.
16358
16359 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16360
16361         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
16362         to avoid a collision with bits/local_lim.h in glibc.
16363         All uses changed.  Problem reported by Dmitry V. Levin in
16364         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
16365
16366         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
16367         bugs in int versus size_t comparisons.
16368         (re_string_context_at): Fix bug where the code assumed that
16369         Idx is signed.
16370
16371         Use bool where appropriate.
16372         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
16373         All callers changed.
16374         (calc_eclosure_iter): Likewise, for ROOT arg.
16375         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
16376         (build_charclass_op): Likewise, for NON_MATCH arg.
16377         * lib/regex_internal.c (re_string_allocate, re_string_construct):
16378         (re_string_construct_common): Likewise, for ICASE arg.
16379         * lib/regexec.c (re_search_2_stub, re_search_stub):
16380         Likewise, for RET_LEN arg.
16381         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
16382         (set_regs): Likewise, for FL_BACKTRACK arg.
16383         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
16384         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
16385         (calc_eclosure_iter, parse_bracket_exp):
16386         Use bool for internal variables that are booleans.
16387         * lib/regexec.c (re_search_internal, check_matching,
16388         proceed_next_node):
16389         (set_regs, build_sifted_states, sift_states_bkref):
16390         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
16391         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
16392         (find_collation_sequence_value):
16393         Likewise.
16394         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
16395         (re_node_set_compare):
16396         Return bool, not int. All callers changed.
16397         * lib/regexec.c (check_halt_node_context, check_dst_limits):
16398         (build_trtable, check_node_accept): Likewise.
16399         * lib/regex_internal.h: Include stdbool.h.
16400
16401         Fix bugs uncovered when converting to bool.
16402         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
16403         failure instead of charging ahead blindly.
16404         * lib/regex_internal.c (register_state): Likewise.
16405         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
16406         for freeing internal storage.
16407         (group_nodes_into_DFA_states): Use unsigned int, not int, for
16408         bitset pieces used as boolean, to avoid undefined behavior
16409         on hosts that do int overflow checking.
16410
16411 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16412
16413         * config/srclist.txt: Add glibc bugs 1285-1287.
16414
16415 2005-09-01  Jim Meyering  <jim@meyering.net>
16416
16417         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
16418         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
16419         Require gl_STAT_MACROS, too.
16420
16421 2005-09-01  Bruno Haible  <bruno@clisp.org>
16422
16423         * gnulib-tool (import): In the first-use case, provide defaults.
16424
16425 2005-09-01  Bruno Haible  <bruno@clisp.org>
16426
16427         * gnulib-tool (func_import): Remove the .tmp files.
16428
16429 2005-09-01  Bruno Haible  <bruno@clisp.org>
16430
16431         * gnulib-tool (func_import): Fix handling of symbolic links.
16432
16433 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16434
16435         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
16436         old glibc regex code mishandles strings longer than 2**31 bytes.
16437         This patch fixes this when the regex code is used in gnulib
16438         (i.e., outside glibc).
16439
16440         This patch should not affect the use of the regex code inside
16441         glibc.  No doubt this problem also needs to be handled for glibc
16442         as well, but the result will be an incompatible change to the
16443         glibc ABI, and the old ABI will have to be supported too.  That
16444         can be the the subject for another patch.
16445
16446         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
16447         governing whether the rest of this patch is active.  By default,
16448         the macro is disabled and the patch has no effect.
16449         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
16450         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
16451         (struct re_pattern_buffer, re_search, re_search_2, re_match):
16452         (re_match_2, re_set_registers): Use the new types.
16453         * lib/regex_internal.h (Idx, re_hashval_t): New types.
16454         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
16455         New macros.
16456         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
16457         (re_string_context_at, bin_tree_t, re_dfastate_t):
16458         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
16459         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
16460         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
16461         (re_string_char_size_at, re_string_wchar_at):
16462         (re_string_elem_size_at):
16463         Use the new types and macros to port to 64-bit hosts.
16464         Use unsigned types for internal values, so that the code
16465         mostly works even for arrays larger than SSIZE_MAX.
16466         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
16467         (search_duplicated_node, calc_eclosure_iter, fetch_number):
16468         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
16469         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
16470         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
16471         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
16472         (calc_inveclosure, parse_dup_op, build_range_exp):
16473         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
16474         (fetch_number, create_token_tree, mark_opt_subexp):
16475         Likewise.
16476         * lib/regex_internal.c (re_string_construct_common,
16477         create_ci_newstate):
16478         (create_cd_newstate, re_string_allocate, re_string_construct):
16479         (re_string_realloc_buffers, build_wcs_upper_buffer):
16480         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
16481         (re_string_reconstruct, re_string_peek_byte_case):
16482         (re_string_fetch_byte_case, re_string_context_at):
16483         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
16484         (re_node_set_init_copy, re_node_set_add_intersect):
16485         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16486         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16487         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
16488         (re_acquire_state, re_acquire_state_context, register_state):
16489         Likewise.
16490         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
16491         search_cur_bkref_entry):
16492         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
16493         (re_search_internal, re_search_2_stub, re_search_stub)
16494         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
16495         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
16496         (update_cur_sifted_state, check_dst_limits):
16497         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16498         (check_subexp_limits, sift_states_bkref, merge_state_array):
16499         (check_subexp_matching_top, get_subexp, get_subexp_sub):
16500         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
16501         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
16502         (expand_bkref_cache, check_node_accept_bytes):
16503         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
16504         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
16505         (acquire_init_state_context, check_halt_node_context):
16506         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
16507         (sift_states_backward, clean_state_log_if_needed):
16508         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
16509         (find_recover_state, transit_state_sb, transit_state_mb):
16510         (transit_state_bkref, build_trtable, match_ctx_clean):
16511         Likewise.
16512         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
16513         to work around an assumption that REG_MISSING is negative.
16514
16515         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
16516         (seek_collating_symbol_entry) [defined _LIBC]:
16517         (lookup_collation_sequence_value) [defined _LIBC]:
16518         (build_range_exp, build_collating_symbol) [defined _LIBC]:
16519         Use prototypes rather than old-style function definitions.
16520         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
16521         (transit_state_sb) [0]:
16522         (find_collation_sequence_value) [defined _LIBC]: Likewise.
16523
16524         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
16525         rm_eo.
16526
16527         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
16528         (optimize_subexps, lower_subexp):
16529         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
16530         since the signed shift might overflow.  Use 1u<<31 instead.
16531         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
16532         Likewise.
16533         * lib/regexec.c (check_dst_limits_calc_pos_1,
16534         check_subexp_matching_top): Likewise.
16535
16536         * lib/regcomp.c (optimize_subexps, lower_subexp):
16537         Use CHAR_BIT rather than 8, for clarity.
16538         * lib/regexec.c (check_dst_limits_calc_pos_1):
16539         (check_subexp_matching_top): Likewise.
16540         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
16541         have to worry about portability issues when shifting it left.
16542         Remove no-longer-needed test for table_size > 0.
16543         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
16544         in a word, as the resulting behavior is undefined.
16545         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
16546         in one case, a <= should have been an <, and in another case the
16547         whole test was missing.
16548         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
16549         the standard name CHAR_BIT.
16550         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
16551         this is not true on one's complement and signed-magnitude hosts.
16552
16553         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
16554         next_last_offset.
16555         (struct re_dfa_t): Remove unused member states_alloc.
16556         * lib/regcomp.c (init_dfa): Don't initialize unused members.
16557
16558 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16559
16560         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
16561         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
16562         and large-file glibc and in 32-bit large-file Solaris.
16563
16564 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16565
16566         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
16567         lengths fit in regoff_t; this isn't true if regoff_t is the same
16568         width as size_t.
16569         * lib/regex.c (re_search_internal): 5th arg is LAST_START
16570         (= START + RANGE) instead of RANGE.  This avoids overflow
16571         problems when regoff_t is the same width as size_t.
16572         All callers changed.
16573         (re_search_2_stub): Check for overflow when adding the
16574         sizes of the two strings.
16575         (re_search_stub): Check for overflow when adding START
16576         to RANGE; if it occurs, substitute the extreme value.
16577
16578 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16579
16580         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
16581
16582 2005-08-31  Jim Meyering  <jim@meyering.net>
16583
16584         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
16585         a pointer-to-const.
16586         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
16587         (register_state): Likewise.
16588         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
16589         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16590         (group_nodes_into_DFAstates): Likewise.
16591
16592 2005-08-31  Jim Meyering  <jim@meyering.net>
16593
16594         * check-module: Add a FIXME comment.
16595
16596 2005-08-31  Eric Blake  <ebb9@byu.net>
16597
16598         * modules/unistd-safer (Files): Add unistd--.h.
16599         * modules/stdio-safer (Files): Add stdio--.h.
16600
16601 2005-08-31  Derek Price  <derek@ximbiot.com>
16602
16603         * lib/getdelim.c (getdelim): Return EOF on EOF.
16604         Reported by Larry Jones <lawrence.jones@ugs.com>.
16605
16606 2005-08-31  Bruno Haible  <bruno@clisp.org>
16607
16608         Avoid unnecessary diffs in the generated lib/Makefile.am.
16609         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
16610         the generated files.
16611         (func_import): Don't set cmd.
16612
16613 2005-08-31  Bruno Haible  <bruno@clisp.org>
16614
16615         * lib/strstr.c: Include <stddef.h>, for NULL.
16616         * lib/strcasestr.c: Likewise.
16617         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
16618
16619 2005-08-31  Bruno Haible  <bruno@clisp.org>
16620
16621         * gnulib-tool: New option --macro-prefix.
16622         (func_import): Use macro_prefix.
16623         (import): Handle option --macro-prefix.
16624
16625 2005-08-31  Bruno Haible  <bruno@clisp.org>
16626
16627         * gnulib-tool (import): Rename most ac_* variables to cached_*.
16628         Also use new variables cached_lgpl, cached_libtool.
16629
16630 2005-08-31  Bruno Haible  <bruno@clisp.org>
16631
16632         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
16633         always instantiating them.
16634
16635 2005-08-31  Bruno Haible  <bruno@clisp.org>
16636
16637         * gnulib-tool (func_import): Read the previous cached settings
16638         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
16639         earlier added by gnulib but are now dropped. Warn when a gnulib file
16640         overwrites a non-gnulib file.
16641
16642 2005-08-31  Bruno Haible  <bruno@clisp.org>
16643
16644         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
16645         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
16646         projects that don't keep autogenerated files in CVS. Put into
16647         actioncmd only the specified modules, not the transitive closure.
16648
16649 2005-08-31  Bruno Haible  <bruno@clisp.org>
16650
16651         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
16652         Create directories that shall be filled.
16653         (import): Don't look for gl_* macros in configure.ac. Recurse across
16654         all directories containing a gnulib-cache.m4 files, if meaningful.
16655
16656 2005-08-31  Bruno Haible  <bruno@clisp.org>
16657
16658         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
16659         (import): Set seen_libtool when we see gl_LIBTOOL.
16660
16661 2005-08-31  Bruno Haible  <bruno@clisp.org>
16662
16663         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
16664         declaration macro definitions from generated gnulib.m4.
16665
16666 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
16667
16668         * lib/iconvme.h: Add prototype for iconv_alloc.
16669
16670 2005-08-29  Simon Josefsson  <jas@extundo.com>
16671
16672         * lib/iconvme.c: Fix errno.
16673
16674 2005-08-29  Bruno Haible  <bruno@clisp.org>
16675
16676         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
16677         that it works when the directory contains spaces.
16678
16679 2005-08-29  Bruno Haible  <bruno@clisp.org>
16680
16681         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
16682
16683 2005-08-29  Bruno Haible  <bruno@clisp.org>
16684
16685         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
16686         Emit more advice.
16687
16688 2005-08-29  Bruno Haible  <bruno@clisp.org>
16689         and Stepan Kasal  <kasal@ucw.cz>
16690
16691         * check-module: If more parameters are given, check each of them
16692         separately; add more exceptions, as noted by Jim Meyering.
16693         (check_module): New procedure.
16694         (%exempt_header): Now contains all exceptions.
16695
16696 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
16697
16698         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
16699
16700 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16701
16702         * lib/iconvme.c: Split iconv_string into iconv_alloc.
16703
16704 2005-08-28  Bruno Haible  <bruno@clisp.org>
16705
16706         * m4/gnulib-tool.m4: New file.
16707
16708 2005-08-27  Jim Meyering  <jim@meyering.net>
16709
16710         * modules/unistd-safer (Files): Add pipe-safer.c.
16711         * modules/fcntl-safer (Files): Add creat-safer.c.
16712
16713 2005-08-27  Jim Meyering  <jim@meyering.net>
16714
16715         * m4/stdlib-safer.m4: New file.  From coreutils.
16716         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
16717         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
16718         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
16719         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
16720         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
16721
16722 2005-08-27  Jim Meyering  <jim@meyering.net>
16723
16724         * lib/fopen-safer.c: Merge minor changes from coreutils.
16725         * lib/dup-safer.c: Likewise.
16726         * lib/fd-safer.c: Likewise.
16727
16728         Merge from coreutils.
16729         * lib/stdio--.h: New file.
16730         * lib/stdlib--.h: New file.
16731         * lib/mkstemp-safer.c: New file.
16732
16733         GNU tar needs these.
16734         * lib/pipe-safer.c: New file.
16735         * lib/creat-safer.c: New file.
16736         * lib/fcntl--.h (creat): Define to creat_safer.
16737         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
16738         * lib/unistd--.h (pipe): Define to pipe_safer.
16739         * lib/unistd-safer.h: Declare pipe_safer.
16740
16741 2005-08-26  Simon Josefsson  <jas@extundo.com>
16742
16743         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
16744         Haible <bruno@clisp.org>.
16745
16746 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
16747
16748         * lib/regex_internal.h: Remove all references to
16749         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
16750         or better.
16751         (bitset_not, bitset_merge, bitset_not_merge):
16752         (bitset_mask, re_string_allocate, re_string_construct):
16753         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
16754         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
16755         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
16756         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
16757         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16758         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16759         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
16760         (re_acquire_state_context):
16761         Remove unnecessary forward decls.
16762         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
16763         Put __attribute at function definition,
16764         now that the function decl has been removed.
16765         * lib/regex_internal.c (re_string_peek_byte_case):
16766         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
16767         Likewise.
16768
16769 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
16770
16771         * m4/regex.m4: Add AC_PREREQ(2.50).
16772         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
16773
16774 2005-08-25  Simon Josefsson  <jas@extundo.com>
16775
16776         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
16777         __fsetlocking.
16778
16779 2005-08-25  Simon Josefsson  <jas@extundo.com>
16780
16781         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
16782         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
16783         GLIBC specific code.
16784
16785 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16786
16787         Make regex safe for g++.  This fixes one real bug (an "err"
16788         that should have been "*err").  g++ problem reported by
16789         Sam Steingold.
16790         * lib/regex_internal.h (re_calloc): New macro, consistent with
16791         re_malloc etc.  All callers of calloc changed to use re_calloc.
16792         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
16793         not int.  All callers changed.
16794         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
16795         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
16796         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
16797         (find_recover_state): Change "err" to "*err"; this fixes what
16798         appears to be a real bug.
16799         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
16800         versus int.
16801
16802 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16803
16804         * modules/regex (Depends-on): Add malloc, since the code
16805         assumes that !malloc(0) means failure.
16806
16807 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16808
16809         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
16810
16811         alloca modernization/simplification for regex.
16812         * lib/regex.c: Remove portability cruft for alloca.  This no longer
16813         needs to be at the start of the file, and can be moved into
16814         regex_internal.h and simplified.
16815         * lib/regex_internal.h: Include <alloca.h>.
16816         (__libc_use_alloca) [!defined _LIBC]: New macro.
16817         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
16818         now works outside glibc.
16819
16820 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16821
16822         * config/srclist.txt: Add glibc bugs 1241, 1245.
16823
16824 2005-08-25  Jim Meyering  <jim@meyering.net>
16825
16826         * lib/open-safer.c: Include <config.h>.
16827         Otherwise, we'd lose LARGEFILE support in any file using
16828         e.g. "fcntl--.h"
16829
16830 2005-08-25  Bruno Haible  <bruno@clisp.org>
16831
16832         * m4/minmax.m4: Require autoconf 2.52.
16833         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
16834         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
16835         alternatives of translit over the alphabet.
16836         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
16837
16838 2005-08-24  Simon Josefsson  <jas@extundo.com>
16839
16840         * tests/test-getpass.c: New file.
16841
16842 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16843
16844         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
16845         for GNU regex features.
16846
16847 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16848
16849         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
16850         * lib/regex.h (regerror): Likewise.
16851
16852         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
16853         requires this.  (The code never needed it.)
16854
16855         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
16856         All uses of recently-renamed identifiers changed to use the new,
16857         POSIX-compliant names.  The code will build and run just fine
16858         without these changes, but it's better to eat our own dog food
16859         and use the standard-conforming names.
16860
16861         * lib/regex.h: Fix a multitude of POSIX name space violations.
16862         These changes have an effect only for programs that define
16863         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
16864         do not change anything for programs compiled in the normal way.
16865         Also, there is no effect on the ABI.
16866
16867         (_REGEX_SOURCE): New macro.
16868         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
16869         defined and _GNU_SOURCE is not; this fixes a name space violation.
16870
16871         Rename the following macros to obey POSIX requirements.
16872         The old names are still visible as macros if _REGEX_SOURCE is defined.
16873         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
16874         RE_BACKSLASH_ESCAPE_IN_LISTS.
16875         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
16876         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
16877         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
16878         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
16879         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
16880         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
16881         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
16882         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
16883         (REG_INTERVALS): renamed from RE_INTERVALS.
16884         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
16885         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
16886         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
16887         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
16888         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
16889         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
16890         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
16891         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
16892         RE_UNMATCHED_RIGHT_PAREN_ORD.
16893         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
16894         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
16895         (REG_DEBUG): renamed from RE_DEBUG.
16896         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
16897         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
16898         unusual, since we can't clash with the POSIX REG_ICASE.
16899         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
16900         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
16901         (REG_NO_SUB): renamed from RE_NO_SUB.
16902         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
16903         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
16904         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
16905         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
16906         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
16907         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
16908         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
16909         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
16910         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
16911         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
16912         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
16913         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
16914         RE_SYNTAX_POSIX_MINIMAL_BASIC.
16915         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
16916         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
16917         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
16918         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
16919         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
16920         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
16921         (REG_FIXED): Renamed from REGS_FIXED.
16922         (REG_NREGS): Renamed from RE_NREGS.
16923
16924         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
16925         of other REG_* macros, since POSIX says the user is allowed to
16926         #undef these macros selectively.
16927
16928         (reg_errcode_t): Update comment stating what other tables need
16929         to be consistent.
16930
16931         Rename the following enum values to obey POSIX requirements.
16932         The old names are still visible as macros.
16933         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
16934         is not defined, since GNU is supposed to be a superset of POSIX as
16935         much as possible, and since we want reg_errcode_t to be a signed
16936         type for implementation consistency.
16937         (_REG_NOERROR): Renamed from REG_NOERROR.
16938         (_REG_NOMATCH): Renamed from REG_NOMATCH.
16939         (_REG_BADPAT): Renamed from REG_BADPAT.
16940         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
16941         (_REG_ECTYPE): Renamed from REG_ECTYPE.
16942         (_REG_EESCAPE): Renamed from REG_EESCAPE.
16943         (_REG_ESUBREG): Renamed from REG_ESUBREG.
16944         (_REG_EBRACK): Renamed from REG_EBRACK.
16945         (_REG_EPAREN): Renamed from REG_EPAREN.
16946         (_REG_EBRACE): Renamed from REG_EBRACE.
16947         (_REG_BADBR): Renamed from REG_BADBR.
16948         (_REG_ERANGE): Renamed from REG_ERANGE.
16949         (_REG_ESPACE): Renamed from REG_ESPACE.
16950         (_REG_BADRPT): Renamed from REG_BADRPT.
16951         (_REG_EEND): Renamed from REG_EEND.
16952         (_REG_ESIZE): Renamed from REG_ESIZE.
16953         (_REG_ERPAREN): Renamed from REG_ERPAREN.
16954         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
16955         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
16956         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
16957         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
16958
16959         (_REG_RE_NAME, _REG_RM_NAME): New macros.
16960         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
16961         changed.  But support the old name if the new one is not defined
16962         and if _REGEX_SOURCE.
16963
16964         Change the following member names in struct re_pattern_buffer.
16965         The old names are still supported if !_REGEX_SOURCE.
16966         The new names are always supported, regardless of _REGEX_SOURCE.
16967         (re_buffer): Renamed from buffer.
16968         (re_allocated): Renamed from allocated.
16969         (re_used): Renamed from used.
16970         (re_syntax): Renamed from syntax.
16971         (re_fastmap): Renamed from fastmap.
16972         (re_translate): Renamed from translate.
16973         (re_can_be_null): Renamed from can_be_null.
16974         (re_regs_allocated): Renamed from regs_allocated.
16975         (re_fastmap_accurate): Renamed from fastmap_accurate.
16976         (re_no_sub): Renamed from no_sub.
16977         (re_not_bol): Renamed from not_bol.
16978         (re_not_eol): Renamed from not_eol.
16979         (re_newline_anchor): Renamed from newline_anchor.
16980
16981         Change the following member names in struct re_registers.
16982         The old names are still supported if !_REGEX_SOURCE.
16983         The new names are always supported, regardless of _REGEX_SOURCE.
16984         (rm_num_regs): Renamed from num_regs.
16985         (rm_start): Renamed from start.
16986         (rm_end): Renamed from end.
16987
16988         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
16989         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
16990         Prepend __ to parameter names.
16991
16992         Undo yesterday's changes.
16993
16994 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16995
16996         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
16997         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
16998         lib/regex.c.
16999
17000 2005-08-24  Jim Meyering  <jim@meyering.net>
17001
17002         Sync from coreutils.
17003         * m4/fcntl-safer.m4: New file.
17004
17005         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
17006         and object files for this module.
17007
17008 2005-08-24  Jim Meyering  <jim@meyering.net>
17009
17010         Sync from coreutils.
17011         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
17012
17013 2005-08-24  Jim Meyering  <jim@meyering.net>
17014
17015         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
17016         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
17017
17018 2005-08-24  Jim Meyering  <jim@meyering.net>
17019
17020         * modules/fcntl-safer: New module.
17021         * modules/fts (Depends-on): Add fcntl-safer.
17022         * MODULES.html.sh (File descriptor based Input/Output):
17023         Add fcntl-safer.
17024
17025 2005-08-24  Bruno Haible  <bruno@clisp.org>
17026
17027         Support for unit test modules.
17028         * modules/README: Mention tests modules.
17029         * modules/TEMPLATE-TESTS: New file.
17030         * gnulib-tool: New options --extract-tests-module, --with-tests and
17031         --tests-base (unused for the moment).
17032         (testsbase, inctests): New variables.
17033         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
17034         (func_verify_module): Exclude TEMPLATE-TESTS.
17035         (func_verify_nontests_module, func_verify_tests_module): New functions.
17036         (func_get_dependencies): Add implicit dependency for tests modules.
17037         (func_get_tests_module): New function.
17038         (func_modules_transitive_closure): When --with-tests was specified,
17039         include the unit tests as well, unless explicitly avoided.
17040         (func_emit_lib_Makefile_am): Ignore the tests modules here.
17041         (func_emit_tests_Makefile_am): New function.
17042         (func_create_testdir): When --with-tests was specified, emit a
17043         tests/ directory.
17044         * MODULES.html.sh (Future developments): Update.
17045
17046 2005-08-24  Bruno Haible  <bruno@clisp.org>
17047
17048         * modules/tls-tests: New file.
17049         * tests/test-tls.c: New file, from GNU gettext.
17050
17051 2005-08-24  Bruno Haible  <bruno@clisp.org>
17052
17053         * modules/lock-tests: New file.
17054         * tests/test-lock.c: New file, from GNU gettext.
17055
17056 2005-08-24  Bruno Haible  <bruno@clisp.org>
17057
17058         * lib/lock.h: Add multiple inclusion guard.
17059         * lib/tls.h: Add multiple inclusion guard.
17060
17061 2005-08-24  Bruno Haible  <bruno@clisp.org>
17062
17063         * gnulib-tool: Add support for the --aux-dir option to
17064         --create-testdir, --create-megatestdir, --test, --megatest.
17065         (func_create_testdir, func_create_megatestdir): Optionally emit a
17066         AC_CONFIG_AUX_DIR directive.
17067         (create-testdir, create-megatestdir, test, megatest): Provide a
17068         default value for $auxdir.
17069
17070 2005-08-24  Bruno Haible  <bruno@clisp.org>
17071
17072         * gnulib-tool (import): Use compound statement instead of subshell
17073         where possible.
17074
17075 2005-08-24  Bruno Haible  <bruno@clisp.org>
17076
17077         * gnulib-tool (import): Change --aux-dir default to "build-aux".
17078
17079 2005-08-24  Bruno Haible  <bruno@clisp.org>
17080
17081         * gnulib-tool (func_version): Update.
17082
17083 2005-08-24  Bruno Haible  <bruno@clisp.org>
17084
17085         * gnulib-tool (func_import, func_create_testdir,
17086         func_create_megatestdir): Quote all autoconf macro arguments.
17087
17088 2005-08-24  Bruno Haible  <bruno@clisp.org>
17089
17090         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
17091         option --force, because --force causes the aclocal.m4 of each
17092         subdirectory to be newer than the corresponding config.h.in.
17093
17094 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17095
17096         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
17097         All contents moved to gl_REGEX.
17098         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
17099         assume that it does.
17100
17101 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17102
17103         * lib/regex.h (REG_NOSYS)
17104         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
17105         Define, since POSIX requires it as of 2001.
17106         (_REG_ENOSYS)
17107         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
17108         New private symbol, used to keep the enum signed in all cases.
17109         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
17110         Youngman in
17111         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
17112
17113         * lib/regex_internal.c (re_string_skip_chars, register_state):
17114         (calc_state_hash):
17115         Remove forward decls; no longer needed now that we use prototypes.
17116         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
17117         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
17118         (clean_state_log_if_needed): Likewise.
17119
17120 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17121
17122         * config/srclist.txt: Add glibc bugs 1231-1233.
17123
17124 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17125
17126         Fix problems reported by Sam Steingold in
17127         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
17128         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
17129         assumed that reg_errcode_t is a signed type, which is not
17130         necessarily true if _XOPEN_SOURCE is not defined.
17131         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
17132         since some compilers warn about it otherwise.
17133
17134 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17135
17136         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
17137         (init_word_char, create_initial_state, duplicate_node_closure):
17138         (fetch_token, peek_token_bracket, build_range_exp):
17139         (build_collating_symbol): Remove forward decls; no longer needed
17140         now that we use prototypes.
17141
17142         * lib/regcomp.c:
17143         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
17144         (re_compile_fastmap_iter, regcomp, regerror, regfree):
17145         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
17146         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
17147         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
17148         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
17149         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
17150         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
17151         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
17152         (build_range_exp, build_collating_symbol, parse_bracket_exp):
17153         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
17154         (build_charclass, build_charclass_op, fetch_number, create_tree):
17155         (create_token_tree, mark_opt_subexp, duplicate_tree):
17156         Use prototypes rather than old-style definitions.
17157
17158         * lib/regex_internal.c:
17159         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
17160         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
17161         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
17162         (re_string_reconstruct, re_string_peek_byte_case):
17163         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
17164         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
17165         (re_node_set_init_copy, re_node_set_add_intersect):
17166         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
17167         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
17168         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
17169         (re_acquire_state, re_acquire_state_context, register_state):
17170         (create_ci_newstate, create_cd_newstate, free_state):
17171         Likewise.
17172         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
17173         re_search_2):
17174         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
17175         (re_search_internal, prune_impossible_nodes):
17176         (acquire_init_state_context, check_matching, static):
17177         (check_halt_node_context, check_halt_state_context, proceed_next_node):
17178         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
17179         (update_regs, sift_states_backward, build_sifted_states):
17180         (clean_state_log_if_needed, merge_state_array):
17181         (update_cur_sifted_state, add_epsilon_src_nodes):
17182         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
17183         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
17184         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
17185         (find_recover_state, check_subexp_matching_top, transit_state_mb):
17186         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
17187         (check_arrival, check_arrival_add_next_nodes):
17188         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
17189         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
17190         (check_node_accept_bytes, check_node_accept, extend_buffers):
17191         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
17192         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
17193         (sift_ctx_init):
17194         Likewise.
17195
17196         * lib/regex_internal.h:
17197         (re_string_allocate, re_string_construct, re_string_reconstruct):
17198         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
17199         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
17200         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
17201         (re_string_context_at, re_string_peek_byte_case):
17202         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
17203         is defined, since we now use prototypes always.
17204
17205         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
17206         C89 or better.  All uses removed.
17207
17208 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17209
17210         * config/srclist.txt: Add glibc bugs 1220-1227.
17211
17212 2005-08-20  Jim Meyering  <jim@meyering.net>
17213
17214         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
17215         of unused local, dfa.
17216
17217 2005-08-20  Bruno Haible  <bruno@clisp.org>
17218
17219         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
17220
17221 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17222
17223         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
17224         (re_node_set_insert_last, re_dfa_add_node):
17225         Rename local variables to avoid GCC shadowing warnings.
17226
17227 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17228
17229         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
17230         [defined lint]: Suppress bogus uninitialized-variable warnings.
17231
17232         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
17233         and let the caller return REG_ESPACE if out of space.  This
17234         removes an uninitialied-variable warning with GCC 4.0.1, and also
17235         avoids taking the address of a local variable.  All callers
17236         changed.
17237
17238 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17239
17240         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
17241         $LIBCSRC/posix/regexec.c.
17242         Add glibc bug 1217 for regcomp.c.
17243
17244 2005-08-19  Jim Meyering  <jim@meyering.net>
17245
17246         * lib/regexec.c (proceed_next_node): Redo local variables to
17247         avoid GCC shadowing warnings.
17248
17249 2005-08-18  Bruno Haible  <bruno@clisp.org>
17250
17251         * lib/strstr.c (strstr): Fix return value in multibyte case.
17252         * lib/strcasestr.c (strcasestr): Likewise.
17253
17254 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
17255
17256         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
17257
17258 2005-08-17  Jim Meyering  <jim@meyering.net>
17259
17260         Make the %s format (seconds since the epoch) work for a negative
17261         number and when used with a zero-padded field width, e.g. %015s.
17262
17263         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
17264         label so that it precedes the code to set `digits'.  Otherwise,
17265         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
17266         print `00-22'.  Now, it prints `-0022', as it should.
17267
17268 2005-08-17  Bruno Haible  <bruno@clisp.org>
17269
17270         * modules/strstr (Files): Add m4/mbrtowc.m4.
17271         (Depends-on): Add mbuiter.
17272
17273 2005-08-17  Bruno Haible  <bruno@clisp.org>
17274
17275         * modules/strcasestr: New file.
17276         * MODULES.html.sh (String handling, based on ANSI C 89): Add
17277         strcasestr.
17278
17279 2005-08-17  Bruno Haible  <bruno@clisp.org>
17280
17281         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
17282
17283 2005-08-17  Bruno Haible  <bruno@clisp.org>
17284
17285         * modules/mbuiter: New file.
17286         * MODULES.html.sh (Extended multibyte and wide character utilities):
17287         Add mbuiter.
17288
17289 2005-08-17  Bruno Haible  <bruno@clisp.org>
17290
17291         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
17292         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
17293
17294 2005-08-17  Bruno Haible  <bruno@clisp.org>
17295
17296         * m4/strcasestr.m4: New file.
17297
17298 2005-08-17  Bruno Haible  <bruno@clisp.org>
17299
17300         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
17301         * lib/strstr.c: Completely rewritten, with multibyte locale support.
17302
17303 2005-08-17  Bruno Haible  <bruno@clisp.org>
17304
17305         * lib/strcasestr.h: New file.
17306         * lib/strcasestr.c: New file.
17307
17308 2005-08-17  Bruno Haible  <bruno@clisp.org>
17309
17310         * lib/strcasecmp.c: Use mbuiter.h.
17311
17312 2005-08-17  Bruno Haible  <bruno@clisp.org>
17313
17314         * lib/mbuiter.h: New file.
17315
17316 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
17317
17318         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
17319         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
17320         and gl_GETOPT are both invoked via different paths (as happens
17321         with GNU tar CVS because it uses both argp and getopt), the former
17322         wins.
17323
17324 2005-08-16  Bruno Haible  <bruno@clisp.org>
17325
17326         * modules/tls: New file.
17327         * MODULES.html.sh (Multithreading): Add tls.
17328
17329 2005-08-16  Bruno Haible  <bruno@clisp.org>
17330
17331         * modules/strnlen1: New file.
17332         * MODULES.html.sh (String handling): Add strnlen1.
17333
17334 2005-08-16  Bruno Haible  <bruno@clisp.org>
17335
17336         * modules/strcase (Files): Add m4/mbrtowc.m4.
17337         (Depends-on): Add strnlen1, mbchar.
17338
17339 2005-08-16  Bruno Haible  <bruno@clisp.org>
17340
17341         * modules/mbiter: New file.
17342         * MODULES.html.sh (Extended multibyte and wide character utilities):
17343         Add mbiter.
17344
17345 2005-08-16  Bruno Haible  <bruno@clisp.org>
17346
17347         * modules/mbfile: New file.
17348         * MODULES.html.sh (Extended multibyte and wide character utilities):
17349         Add mbfile.
17350
17351 2005-08-16  Bruno Haible  <bruno@clisp.org>
17352
17353         * modules/mbchar: New file.
17354         * MODULES.html.sh (Extended multibyte and wide character utilities):
17355         New section.
17356
17357 2005-08-16  Bruno Haible  <bruno@clisp.org>
17358
17359         * m4/tls.m4: New file, from GNU gettext.
17360
17361 2005-08-16  Bruno Haible  <bruno@clisp.org>
17362
17363         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
17364         always.
17365         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
17366
17367 2005-08-16  Bruno Haible  <bruno@clisp.org>
17368
17369         * m4/mbiter.m4: New file.
17370
17371 2005-08-16  Bruno Haible  <bruno@clisp.org>
17372
17373         * m4/mbfile.m4: New file.
17374
17375 2005-08-16  Bruno Haible  <bruno@clisp.org>
17376
17377         * m4/mbchar.m4: New file.
17378
17379 2005-08-16  Bruno Haible  <bruno@clisp.org>
17380
17381         * lib/tls.h: New file, from GNU gettext.
17382         * lib/tls.c: New file, from GNU gettext.
17383
17384 2005-08-16  Bruno Haible  <bruno@clisp.org>
17385
17386         * lib/strnlen1.h: New file.
17387         * lib/strnlen1.c: New file.
17388
17389 2005-08-16  Bruno Haible  <bruno@clisp.org>
17390
17391         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
17392         (mbi_init): Update.
17393         (mbi_avail, mbi_advance): Let the iteration end before the terminating
17394         NUL byte, not after it.
17395
17396 2005-08-16  Bruno Haible  <bruno@clisp.org>
17397
17398         * lib/strcase.h (strcasecmp): Add note in comments.
17399         * lib/strncasecmp.c: Use code from strcasecmp.c.
17400         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
17401         (strcasecmp): Work correctly in multibyte locales.
17402
17403 2005-08-16  Bruno Haible  <bruno@clisp.org>
17404
17405         * lib/mbiter.h: New file.
17406
17407 2005-08-16  Bruno Haible  <bruno@clisp.org>
17408
17409         * lib/mbfile.h: New file.
17410
17411 2005-08-16  Bruno Haible  <bruno@clisp.org>
17412
17413         * lib/mbchar.h: New file.
17414         * lib/mbchar.c: New file.
17415
17416 2005-08-16  Bruno Haible  <bruno@clisp.org>
17417
17418         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
17419         the valid ones. Makes the comparison operations transitive:
17420         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
17421         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
17422
17423 2005-08-15  Simon Josefsson  <jas@extundo.com>
17424
17425         * modules/ssize_t (License): Change to 'unlimited'.
17426
17427         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
17428
17429 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17430
17431         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
17432         Add comments for each pending glibc patch.
17433
17434 2005-08-15  Bruno Haible  <bruno@clisp.org>
17435
17436         * lib/regex.h (__restrict_arr): Don't define to __restrict if
17437         __cplusplus is defined.
17438
17439 2005-08-14  Jim Meyering  <jim@meyering.net>
17440
17441         Sync from coreutils.
17442
17443         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
17444         Use the hash-table-based cycle-detection code not just when
17445         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
17446         Reported by James Youngman in
17447         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
17448         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
17449         FTS_TIGHT_CYCLE_CHECK.
17450         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
17451         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
17452         once again.
17453         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
17454         * lib/fts.c (fd_safer): Remove decl.
17455         Include fcntl--.h rather than unistd-safer.h
17456         (fts_safe_changedir): Don't call fd_safer; no longer needed
17457         now that we include fcntl--.h.
17458
17459 2005-08-12  Simon Josefsson  <jas@extundo.com>
17460
17461         * modules/getndelim2: Use ssize_t module.
17462         * modules/getnline: Likewise.
17463         * modules/safe-read: Likewise.
17464         * modules/xreadlink: Likewise.
17465
17466         * modules/ssize_t: New file.
17467
17468 2005-08-12  Simon Josefsson  <jas@extundo.com>
17469
17470         * m4/readline.m4: Look for termcap, curses or ncurses if required.
17471
17472 2005-08-12  Simon Josefsson  <jas@extundo.com>
17473
17474         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17475         ssize_t.
17476
17477 2005-08-12  Simon Josefsson  <jas@extundo.com>
17478
17479         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
17480         readline, getdelim and check_version.
17481         (Support for systems lacking ISO C 99: Sizes of integer types):
17482         Add size_max.
17483
17484 2005-08-12  Bruno Haible  <bruno@clisp.org>
17485
17486         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
17487
17488 2005-08-11  Simon Josefsson  <jas@extundo.com>
17489
17490         * modules/readline: New file.
17491
17492         * modules/strnlen (Files): Add strnlen.h.
17493
17494 2005-08-11  Simon Josefsson  <jas@extundo.com>
17495
17496         * m4/readline.m4: New file.
17497
17498 2005-08-11  Simon Josefsson  <jas@extundo.com>
17499
17500         * lib/readline.h, readline.c: New file.
17501
17502 2005-08-11  Simon Josefsson  <jas@extundo.com>
17503
17504         * doc/gnulib.texi (Initial import, Finishing touches): Mention
17505         gl_AVOID.
17506
17507 2005-08-11  Bruno Haible  <bruno@clisp.org>
17508
17509         * lib/strnlen.h (strnlen): Change parameter name to match comment.
17510
17511 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
17512
17513         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
17514
17515 2005-08-10  Simon Josefsson  <jas@extundo.com>
17516
17517         * tests/test-iconvme.c: New file.
17518
17519 2005-08-10  Simon Josefsson  <jas@extundo.com>
17520
17521         * m4/strnlen.m4: New file.
17522
17523         * m4/strndup.m4: Don't check for strnlen declaration, done in
17524         strnlen.m4.
17525
17526 2005-08-10  Simon Josefsson  <jas@extundo.com>
17527
17528         * lib/strndup.c: Use strnlen.h.
17529
17530         * lib/strnlen.h: New file.
17531
17532 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17533
17534         * README: Typos.
17535
17536 2005-08-02  Simon Josefsson  <jas@extundo.com>
17537
17538         * modules/readline: New file.
17539
17540 2005-08-02  Simon Josefsson  <jas@extundo.com>
17541
17542         * modules/getdelim: New file.
17543
17544         * modules/getline: Rewrite, don't use getndelim2.
17545
17546 2005-08-02  Simon Josefsson  <jas@extundo.com>
17547
17548         * m4/getline.m4: Separate out getdelim stuff into separate module.
17549
17550         * m4/getdelim.m4: New file.
17551
17552 2005-08-02  Simon Josefsson  <jas@extundo.com>
17553
17554         * lib/getline.h, getline.c: Rewrite.
17555
17556         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
17557
17558 2005-07-31  Bruno Haible  <bruno@clisp.org>
17559
17560         * lib/lock.h (gl_lock_initializer): New macro.
17561         (gl_lock_define_initialized): Use it.
17562         (gl_rwlock_initializer): New macro.
17563         (gl_rwlock_define_initialized): Use it.
17564         (gl_recursive_lock_initializer): New macro.
17565         (gl_recursive_lock_define_initialized): Use it.
17566
17567 2005-07-30  Karl Berry  <karl@gnu.org>
17568
17569         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
17570         Report from Ben Pfaff, regarding getopt.
17571
17572 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
17573
17574         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
17575         normal way.
17576         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
17577         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
17578         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
17579         (gl_GETOPT): Use the new macros.  Most of the implementation
17580         is moved to the new macros.  This is for programs like Emacs
17581         that don't want all the functionality of gl_GETOPT.
17582
17583 2005-07-26  Bruno Haible  <bruno@clisp.org>
17584
17585         * m4/lock.m4: Update from GNU gettext.
17586
17587 2005-07-26  Bruno Haible  <bruno@clisp.org>
17588
17589         * lib/lock.h: Update from GNU gettext.
17590         * lib/lock.c: Update from GNU gettext.
17591
17592 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
17593
17594         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
17595         obsolescent AC_TRY_RUN.  Include the default includes files, for
17596         'exit'.
17597
17598 2005-07-24  Bruno Haible  <bruno@clisp.org>
17599
17600         * modules/visibility: New file.
17601         * MODULES.html.sh (Misc): Add visibility.
17602
17603 2005-07-24  Bruno Haible  <bruno@clisp.org>
17604
17605         * m4/visibility.m4: New file.
17606
17607 2005-07-24  Bruno Haible  <bruno@clisp.org>
17608
17609         * doc/visibility.texi: New file.
17610
17611 2005-07-22  Bruno Haible  <bruno@clisp.org>
17612
17613         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
17614         $(ALLOCA_H), redundant through BUILT_SOURCES.
17615         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
17616         redundant through BUILT_SOURCES.
17617         * modules/byteswap (Makefile.am): Remove explicit dependency on
17618         $(BYTESWAP_H), redundant through BUILT_SOURCES.
17619         * modules/fnmatch (Makefile.am): Remove explicit dependency on
17620         $(FNMATCH_H), redundant through BUILT_SOURCES.
17621         * modules/getopt (Makefile.am): Remove explicit dependency on
17622         $(GETOPT_H), redundant through BUILT_SOURCES.
17623         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
17624         redundant through BUILT_SOURCES.
17625         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
17626         redundant through BUILT_SOURCES.
17627         * modules/stdbool (Makefile.am): Remove explicit dependency on
17628         $(STDBOOL_H), redundant through BUILT_SOURCES.
17629         * modules/stdint (Makefile.am): Remove explicit dependency on
17630         $(STDINT_H), redundant through BUILT_SOURCES.
17631         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
17632         Remove explicit dependency on $(SYSEXITS_H).
17633         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
17634
17635 2005-07-18  Simon Josefsson  <jas@extundo.com>
17636
17637         * lib/check-version.c (check_version): Accept identical versions too.
17638
17639 2005-07-18  Bruno Haible  <bruno@clisp.org>
17640
17641         * modules/lock: New file.
17642         * MODULES.html.sh (Multithreading): New section.
17643
17644 2005-07-18  Bruno Haible  <bruno@clisp.org>
17645
17646         * m4/lock.m4: New file, from GNU gettext.
17647
17648 2005-07-18  Bruno Haible  <bruno@clisp.org>
17649
17650         * lib/lock.h: New file, from GNU gettext.
17651         * lib/lock.c: New file, from GNU gettext.
17652
17653 2005-07-18  Bruno Haible  <bruno@clisp.org>
17654
17655         * lib/lock.h (gl_once_t): New type.
17656         (gl_once_define, gl_once): New macros.
17657         * lib/lock.c (fresh_once): New variable.
17658         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
17659         functions.
17660
17661 2005-07-16  Simon Josefsson  <jas@extundo.com>
17662
17663         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
17664         workaround, suggested by Bruno.
17665
17666 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17667
17668         * modules/xalloc (Depends-on): Add xalloc-die.
17669         * modules/xvasprintf (Depends-on): Add xalloc-die.
17670
17671 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17672
17673         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
17674         with a minor change.
17675
17676 2005-07-15  Bruno Haible  <bruno@clisp.org>
17677
17678         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
17679         When using lib/poll.c, define poll as rpl_poll.
17680
17681 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
17682
17683         * modules/argp (Depends-on): Remove unlocked-io.
17684
17685 2005-07-14  Derek Price  <derek@ximbiot.com>
17686
17687         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
17688         for glob symlink bug.
17689
17690 2005-07-14  Bruno Haible  <bruno@clisp.org>
17691
17692         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
17693         Instead, test for *_unlocked function declarations directly.
17694
17695 2005-07-11  Simon Josefsson  <jas@extundo.com>
17696
17697         * modules/size_max: New file.
17698
17699         * modules/xsize: Depend on size_max module for size_max.m4.
17700
17701 2005-07-11  Simon Josefsson  <jas@extundo.com>
17702
17703         * lib/size_max.h: New file.
17704
17705 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
17706
17707         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
17708         copyright symbol and the year.
17709         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
17710         (version_etc_va): Use parameterized copyright notice.
17711         Reword to conform to the current GNU coding standards.
17712
17713 2005-07-11  Karl Berry  <karl@gnu.org>
17714
17715         * doc/gnulib.texi (Quoting): new node.
17716         (Initial import): more info, from Patrice.
17717
17718 2005-07-11  Bruno Haible  <bruno@clisp.org>
17719
17720         * gnulib-tool (func_usage): Document option --avoid.
17721         (Command line options): Handle --avoid.
17722         (func_acceptable): New function.
17723         (func_modules_transitive_closure): Use it.
17724
17725 2005-07-11  Bruno Haible  <bruno@clisp.org>
17726
17727         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
17728         Reported by Jim Meyering.
17729
17730 2005-07-10  Bruno Haible  <bruno@clisp.org>
17731
17732         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
17733         Needed when size_t is smaller than 'unsigned int'.
17734         Reported by Paul Eggert.
17735
17736 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17737
17738         * modules/argp (Depends-on): Add unlocked-io
17739
17740 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17741
17742         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
17743         block of defines.
17744
17745 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
17746
17747         * config/srclist.txt: Comment out regcomp.c, since we have a porting
17748         fix now.
17749
17750 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
17751         and Paul Eggert  <eggert@cs.ucla.edu>
17752
17753         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
17754         in wint_t, not wchar_t.  Remove now-unnecessary cast.
17755
17756 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17757
17758         * modules/regex (Files): Add lib/regex_internal.c,
17759         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
17760         (Depends-on): Add extensions.
17761         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
17762
17763 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17764
17765         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
17766         pathconf.
17767         * m4/same.m4 (gl_SAME): Likewise.
17768         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
17769
17770         * m4/regex.m4: Adjust to new libc regex implementation.
17771         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
17772         all the .c and .h parts of (the new) regex.
17773         Quote the m4 stuff better.
17774         Check for RE_ICASE bug of old gnulib.
17775         Check for REG_STARTEND of recent libc.
17776         Rename local variables from jm_* to gl_*.
17777         Quote operand of "test -f".
17778         Say "recent enough" version of libc, not "version 2".
17779         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
17780         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
17781         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
17782         Remove check for btowc, isascii.
17783         Require AM_LANGINFO_CODESET.
17784
17785 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17786
17787         * lib/regex.c, regex.h: Sync from libc.
17788         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
17789         * lib/regexec.c:
17790         New files, synced from libc, except that regex_internal.h
17791         currently has a small porting fix.
17792
17793 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17794
17795         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
17796         regex_internal.c, regexec.c.
17797         Add regex_internal.h too, but as a comment, since the libc version
17798         is currently broken in gnulib mode.
17799
17800 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17801
17802         Support programs like Emacs that use gnulib but not gettext.
17803         * MODULES.html.sh (Internationalization functions): Add gettext-h.
17804         * modules/gettext-h: New file.
17805         * modules/gettext (Files): Remove lib/gettext.h.
17806         (Depends-on): Add gettext-h.
17807         (Makefile.am): Remove lib_SOURCES.
17808         * modules/argmatch, modules/c-stack, modules/closeout:
17809         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
17810         * modules/execute, modules/file-type, modules/getaddrinfo:
17811         * modules/getopt, modules/human, modules/javacomp:
17812         * modules/javaexec, modules/mkdir-p, modules/obstack:
17813         * modules/openat, modules/pagealign_alloc, modules/pipe:
17814         * modules/quotearg, modules/regex, modules/rpmatch:
17815         * modules/unicodeio, modules/userspec, modules/version-etc:
17816         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
17817         * modules/xsetenv:
17818         Depend on gettext-h, not gettext.
17819
17820 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
17821
17822         * gnulib-tool (func_import): Add support for 'public domain' license.
17823         * modules/alloca, modules/atexit, modules/memmove:
17824         Now public domain, not GPL.
17825         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
17826         * modules/realloc, modules/strerror, modules/strtod:
17827         Now LGPL, not GPL.
17828
17829 2005-07-05  Bruno Haible  <bruno@clisp.org>
17830
17831         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
17832         autoconf CVS. Needed for mingw.
17833
17834 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17835
17836         Remove the dependency of the strftime module on the tzset module.
17837         * modules/strftime (Depends-on): Remove dependency on tzset.
17838
17839 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17840
17841         Remove the dependency of the strftime module on the tzset module.
17842         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
17843         gl_FUNC_TZSET_CLOBBER.
17844
17845 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17846
17847         Remove the dependency of the strftime module on the tzset module.
17848         * lib/strftime.c (my_strftime)
17849         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
17850         Copy the input structure, to work around some of the bug with
17851         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
17852         Solaris releases, you should also use the tzset module, but we won't
17853         require it as a dependency any more since we don't want LGPLed code
17854         to depend on GPLed code.
17855
17856 2005-07-02  Jim Meyering  <jim@meyering.net>
17857
17858         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
17859         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
17860         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
17861         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
17862
17863 2005-07-02  Jim Meyering  <jim@meyering.net>
17864
17865         * lib/backupfile.c (backup_args): Change a `0' to NULL.
17866
17867 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
17868
17869         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
17870         declares only 'struct timespec;' (!).
17871
17872 2005-07-01  Jim Meyering  <jim@meyering.net>
17873
17874         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
17875         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
17876         * lib/save-cwd.c, tempname.c:
17877         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
17878         and don't include <sys/file.h>).
17879
17880 2005-06-29  Jim Meyering  <jim@meyering.net>
17881
17882         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
17883         type name.  Use the variable name instead.
17884         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
17885         Likewise.
17886
17887 2005-06-28  Simon Josefsson  <jas@extundo.com>
17888
17889         * modules/check-version (Files): Add check-version.m4.
17890
17891 2005-06-28  Simon Josefsson  <jas@extundo.com>
17892
17893         * m4/check-version.m4: New file, suggested by Jim Meyering
17894         <jim@meyering.net>.
17895
17896 2005-06-28  Simon Josefsson  <jas@extundo.com>
17897
17898         * lib/check-version.h, lib/check-version.c: New files.
17899
17900 2005-06-28  Simon Josefsson  <jas@extundo.com>
17901
17902         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
17903         collision with global variable.  Better indentation.  Don't
17904         increment buffer pointer beyond buffer end.  Based on comments
17905         from Paul Eggert <eggert@cs.ucla.edu>.
17906
17907         * lib/base64.h: Indent.
17908
17909 2005-06-28  Simon Josefsson  <jas@extundo.com>
17910
17911         * doc/gnulib.texi (Library version handling): New section.
17912
17913 2005-06-28  Jim Meyering  <jim@meyering.net>
17914
17915         * check-module (find_included_lib_files): Hard-code another
17916         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
17917         but modules/fts-lgpl (correctly) does not list those files.
17918
17919         * modules/canonicalize (Files): Add lib/pathmax.h.
17920
17921 2005-06-25  Simon Josefsson  <jas@extundo.com>
17922
17923         * modules/check-version: New file.
17924
17925 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
17926
17927         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
17928         initializer of struct addrinfo, as an indication that we don't
17929         care how many members the structure has.
17930
17931 2005-06-24  Derek Price  <derek@ximbiot.com>
17932         and Bruno Haible  <bruno@clisp.org>
17933
17934         Remove stat module & update lstat.
17935         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
17936         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
17937         * m4/stat.m4: Remove this file.
17938
17939 2005-06-24  Derek Price  <derek@ximbiot.com>
17940         and Bruno Haible  <bruno@clisp.org>
17941
17942         Remove stat module & update lstat.
17943         * lib/stat.c: Remove this file...
17944         (slash_aware_lstat): ...moving this content and its support...
17945         * lib/lstat.c (rpl_lstat): ...into here.
17946         * lib/lstat.h: New file.
17947
17948 2005-06-24  Derek Price  <derek@ximbiot.com>
17949         and Bruno Haible  <bruno@clisp.org>
17950
17951         Remove stat module & update lstat.
17952         * config/srclist.txt (libc sources): Remove stat.
17953
17954 2005-06-24  Derek Price  <derek@ximbiot.com>
17955         and Bruno Haible  <bruno@clisp.org>
17956
17957         Remove stat module & update lstat.
17958         * MODULES.html.sh (stat): Remove.
17959         * MODULES.html: Regenerated.
17960         * modules/lstat (Description): Correct function name.
17961         (Files): Add "lstat.h".
17962         (Depends-on): Remove stat, add xalloc, stat-macros.
17963         * modules/stat: Remove this file.
17964         (Include): Add "lstat.h", remove <sys/stat.h>.
17965
17966 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
17967
17968         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
17969         (ranged_convert): Don't save conversion in a temporary struct.
17970         This causes a warning with GCC 4.0.0, and anyway in the typical
17971         case it's not worth the extra 100 bytes or so of code.
17972         (ranged_convert, __mktime_internal): When calling a function via a
17973         pointer P, use P () rather than (*P) (), as we now assume C89 or
17974         better.
17975
17976 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17977
17978         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
17979         "who -r" failed to give output.  Problem reported by Tim Waugh.
17980
17981         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
17982         (xcalloc): Use it to avoid needless tests.
17983         Problem reported by Jim Meyering.
17984
17985 2005-06-20  Derek Price  <derek@ximbiot.com>
17986
17987         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
17988         unnecessary for Autoconfs > 2.59c.
17989
17990 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
17991
17992         * lib/argp.h (__option_is_short): Check upper limit of
17993         __key. Isprint() requires its argument to have the value
17994         of an unsigned char or EOF.
17995
17996 2005-06-16  Jim Meyering  <jim@meyering.net>
17997
17998         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
17999         when either N or S is zero.
18000
18001 2005-06-16  Derek Price  <derek@ximbiot.com>
18002
18003         * m4/bison.m4: Declare YACC & YFLAGS precious.
18004
18005 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
18006
18007         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
18008         multibyte string or pattern, fall back on unibyte matching.
18009         Problem reported by James Youngman.
18010
18011 2005-06-08  Bruno Haible  <bruno@clisp.org>
18012
18013         * modules/csharpcomp: New file.
18014         * MODULES.html.sh (C#): Add csharpcomp.
18015
18016 2005-06-08  Bruno Haible  <bruno@clisp.org>
18017
18018         * m4/csharpcomp.m4: New file, from GNU gettext.
18019
18020 2005-06-08  Bruno Haible  <bruno@clisp.org>
18021
18022         * lib/csharpcomp.h: New file, from GNU gettext.
18023         * lib/csharpcomp.c: New file, from GNU gettext.
18024         * lib/csharpcomp.sh.in: New file, from GNU gettext.
18025
18026 2005-06-08  Bruno Haible  <bruno@clisp.org>
18027
18028         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
18029         warning on mingw.
18030
18031 2005-06-07  Derek Price  <derek@ximbiot.com>
18032
18033         Sync from CVS.
18034         * lib/glob_.h: Indent nested #ifdef.
18035
18036 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18037
18038         Sync from coreutils.
18039         Use "file name" when talking about file names, instead of "filename"
18040         or "path", as per the GNU coding standards.
18041         * lib/mkdir-p.c: Renamed from makepath.c.
18042         (make_dir_parents): Renamed from make_path.  All callers changed.
18043         * lib/mkdir-p.h: Likewise.  All includers changed.
18044         * lib/filenamecat.c: Renamed from path-concat.c.
18045         (file_name_concat): Renamed from path_concat.  All callers changed.
18046         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
18047         * lib/filenamecat.h: Likewise.  All includers changed.
18048         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
18049         in comments or local variable names.
18050         * lib/basename.c: Likewise.
18051         * lib/canonicalize.c, canonicalize.h: Likewise.
18052         * lib/dirname.c, dirname.h: Likewise.
18053         * lib/euidaccess.c: Likewise.
18054         * lib/exclude.c: Likewise
18055         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
18056         * lib/fsusage.c, fsuage.h: Likewise.
18057         * lib/fts.c, fts_.h: Likewise.
18058         * lib/getcwd.c: Likewise.
18059         * lib/getloadavg.c: Likewise.
18060         * lib/mkstemp.c: Likewise.
18061         * lib/mountlist.c, mountlist.h: Likewise.
18062         * lib/openat.c, openat.h: Likewise.
18063         * lib/readlink-stub.c: Likewise.
18064         * lib/readutmp.c, readutmp.h: Likewise.
18065         * lib/rename.c: Likewise.
18066         * lib/rmdir.c: Likewise.
18067         * lib/same.c: Likewise.
18068         * lib/savedir.c: Likewise.
18069         * lib/stripslash.c: Likewise.
18070         * lib/tempname.c: Likewise.
18071         * lib/xreadlink.c: Likewise.
18072         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
18073         All uses changed.
18074         * lib/exclude.h: Likewise.
18075
18076         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
18077         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18078         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
18079         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18080         * lib/pathmax.h: Include <limits.h> unconditionally, since other
18081         files have been getting away with it for years (MORE/BSD 4.3
18082         is extinct now).
18083         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
18084         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18085
18086         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
18087         Define to 256, not 255, as per modern POSIX.
18088
18089 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18090
18091         Sync from coreutils.
18092         Use "file name" when talking about file names, instead of "filename"
18093         or "path", as per the GNU coding standards.
18094         * MODULES.html.sh: mkdir-p renamed from makepath.
18095         filenamecat renamed from path-concat.
18096         * modules/filenamecat: Renamed from modules/path-concat.
18097         (Files): filenamecat.h and filenamecat.c renamed from
18098         path-concat.h and path-concat.c.
18099         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
18100         (Include): filenamecat.h, not path-concat.h.
18101         * modules/mkdir-p: Renamed from modules/makepath.
18102         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
18103         makepath.c.
18104         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
18105         (Include): mkdir-p.h, not makepath.h.
18106
18107 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18108
18109         Sync from coreutils.
18110         * m4/mkdir-p.m4: Renamed from makepath.m4.
18111         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
18112         Rename files from makepath.c to mkdir-p.c, and from
18113         makepath.h to mkdir-p.h.
18114         * m4/filenamecat.m4: Renamed from path-concat.m4.
18115         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
18116         Rename files from path-concat.c to filenamecat.c,
18117         and from path-concat.h to filenamecat.h.
18118         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
18119         "file name" in local variables or comments.
18120         * m4/rename.m4: Likewise.
18121
18122 2005-06-01  Bruno Haible  <bruno@clisp.org>
18123
18124         * modules/csharpexec: New file.
18125         * MODULES.html.sh (C#): New section.
18126
18127 2005-06-01  Bruno Haible  <bruno@clisp.org>
18128
18129         * m4/csharp.m4: New file, from GNU gettext.
18130         * m4/csharpexec.m4: New file, from GNU gettext.
18131
18132 2005-06-01  Bruno Haible  <bruno@clisp.org>
18133
18134         * lib/csharpexec.h: New file, from GNU gettext.
18135         * lib/csharpexec.c: New file, from GNU gettext.
18136         * lib/csharpexec.sh.in: New file, from GNU gettext.
18137
18138 2005-05-31  Derek Price  <derek@ximbiot.com>
18139             Paul Eggert  <eggert@cs.ucla.edu>
18140
18141         Sync from cvs.
18142         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
18143
18144 2005-05-31  Derek Price  <derek@ximbiot.com>
18145             Paul Eggert  <eggert@cs.ucla.edu>
18146
18147         Sync from cvs.
18148         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
18149
18150 2005-05-29  Derek Price  <derek@ximbiot.com>
18151
18152         * config/srclist.txt (glob_.h, glob.c): Add these files.
18153
18154 2005-05-29  Derek Price  <derek@ximbiot.com>
18155
18156         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
18157         * modules/glob: New file.
18158         * modules/getlogin_r: Add link to POSIX spec in description.
18159
18160 2005-05-29  Derek Price  <derek@ximbiot.com>
18161             Paul Eggert  <eggert@cs.ucla.edu>
18162
18163         * m4/glob.m4: New file.
18164
18165 2005-05-29  Derek Price  <derek@ximbiot.com>
18166             Paul Eggert  <eggert@cs.ucla.edu>
18167
18168         * lib/glob_.h, lib/glob.c: New files.
18169
18170 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18171
18172         * modules/fts (Files): Remove m4/inttypes-pri.m4.
18173         * modules/fts-lgpl (Depends-on): Remove gettext.
18174
18175 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18176
18177         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
18178         and don't require gt_INTTYPES_PRI.
18179
18180 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18181
18182         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
18183
18184         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
18185         the configuration hassle isn't worth it.
18186         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
18187         (LONGEST_MODIFIER, PRIuMAX): Remove.
18188
18189 2005-05-27  Bruno Haible  <bruno@clisp.org>
18190
18191         * lib/getlogin_r.h: Remove second include of <stddef.h>.
18192
18193 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
18194
18195         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
18196         _POSIX_PTHREAD_SEMANTICS for Solaris.
18197
18198 2005-05-25  Derek Price  <derek@ximbiot.com>
18199
18200         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
18201
18202 2005-05-25  Derek Price  <derek@ximbiot.com>
18203             Paul Eggert  <eggert@cs.ucla.edu>
18204
18205         * modules/getlogin_r, m4/getlogin_r.m4: New files.
18206         * lib/getlogin_r.c, getlogin_r.h: New files.
18207
18208 2005-05-25  Bruno Haible  <bruno@clisp.org>
18209             Derek Price  <derek@ximbiot.com>
18210
18211         * lib/getlogin_r.h: Simplify API documentation.
18212
18213 2005-05-23  Derek Price  <derek@ximbiot.com>
18214
18215         * modules/minmax (Files): Add m4/minmax.m4.
18216         (configure.ac): Add gl_MINMAX.
18217
18218 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
18219
18220         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
18221         so that unistd-safer.h (GPL'ed code) need not be included.
18222
18223 2005-05-22  Bruno Haible  <bruno@clisp.org>
18224
18225         * m4/minmax.m4: New file.
18226         Based on a patch by Derek Price <derek@ximbiot.com>.
18227
18228 2005-05-22  Bruno Haible  <bruno@clisp.org>
18229
18230         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
18231         (INT64_MIN): Fix definition.
18232         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
18233
18234         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
18235         NEED_SIGNED_INT_TYPES.
18236
18237         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
18238         HAVE_SYSTEM_INTTYPES.
18239
18240 2005-05-22  Bruno Haible  <bruno@clisp.org>
18241
18242         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
18243         Also include <sys/param.h> if it defines MIN, MAX.
18244         Based on a patch by Derek Price <derek@ximbiot.com>.
18245
18246 2005-05-21  Jim Meyering  <jim@meyering.net>
18247
18248         * modules/fts (Files): Add m4/inttypes-pri.m4.
18249         (Depends-on): Add lstat and remove gettext.  Alphabetize.
18250
18251 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18252
18253         New fts module.
18254         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
18255         (setup_dir, free_dir): New functions.
18256         (enter_dir, leave_dir): Define trivial
18257         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
18258         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
18259         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
18260         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
18261         Move to fts-cycle.c.
18262         (fts_open): Use setup_dir.
18263         (fts_close): Use free_dir.
18264         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
18265         This adds a label and some gotos, but the alternatives were messier.
18266         Check for memory allocation failure when entering a dir.
18267         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
18268         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
18269         (FTS): New member fts_cycle, that is a union that contains the
18270         old active_dir_ht and cycle_state.  All uses changed to mention
18271         fts_cycle.ht and fts_cycle.state.
18272         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
18273         fts.c, with the following changes:
18274         (setup_dir, free_dir): New functions.
18275         (enter_dir): Now returns bool.  Return true if successful, false
18276         if memory exhausted.  All callers changed.
18277         Do not bother partly cleaning up on
18278         memory allocation failure; that is free_dir's job.
18279         However, free ad if hash_insert fails, to avoid memory leak.
18280         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
18281         fts->fts_options to see which union member to use.
18282
18283 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18284
18285         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
18286         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
18287
18288 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18289
18290         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
18291
18292 2005-05-20  Jim Meyering  <jim@meyering.net>
18293
18294         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
18295         Now a macro, to pacify GCC.
18296
18297 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
18298
18299         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
18300         of -1.
18301
18302 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
18303
18304         * lib/chown.c (rpl_chown): Return -1 on failure.
18305
18306 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
18307
18308         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
18309         Don't check for stddef.h.
18310         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
18311         don't use its results.
18312         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
18313         since we include them unconditionally.  Don't require
18314         AM_STDBOOL_H, since stdbool is a prerequisite.
18315         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
18316         since we assume C89 or better.
18317         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
18318         as we don't use their results.
18319         Don't check for fchdir, memmove, memset, strrchr, as we use
18320         them unconditionally.
18321         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
18322         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
18323
18324 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
18325
18326         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
18327         Include <stddef.h> unconditionally, since we assume C89 now.
18328         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
18329         * lib/fts.c: Include fts_.h first, to check interface.
18330         Do not include intprops.h; no longer needed.
18331         Include cycle-check.h and hash.h, since fts_.h no longer does.
18332         Remove unnecessary casts of closedir to void.
18333         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
18334         decide whether to decrement nlinks.
18335         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
18336         (FTS): Use struct hash_table * instead of Hash_table, so that
18337         we no longer need to include hash.h here.
18338
18339 2005-05-18  Jim Meyering  <jim@meyering.net>
18340
18341         * modules/dirfd (License): Change to LGPL.  Most of the code
18342         is already in the public domain.
18343
18344 2005-05-18  Jim Meyering  <jim@meyering.net>
18345
18346         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
18347         Reported by Yoann Vandoorselaere.
18348
18349 2005-05-17  Jim Meyering  <jim@meyering.net>
18350
18351         * m4/fts.m4: New file, from coreutils.
18352
18353 2005-05-17  Jim Meyering  <jim@meyering.net>
18354
18355         * lib/fts.c, lib/fts_.h: New files, from coreutils.
18356
18357 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18358
18359         Sync from coreutils.
18360         * m4/unlinkdir.m4: New file.
18361
18362 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18363
18364         Sync from coreutils.
18365         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
18366         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
18367         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
18368         White space changes only.
18369         * lib/makepath.c (make_path): Port to hosts where leading "//" is
18370         special.
18371         * lib/yesno.c: Include getline.h, not ctype.h.
18372         (yesno): Don't remove leading white space; POSIX doesn't allow it.
18373         Use getline to remove arbitrary restriction on response length.
18374
18375 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18376
18377         * config/srclist-update: Spell out "Street" in FSF postal
18378         mail address; this is the style the FSF seems to prefer.
18379
18380         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
18381         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
18382         this updates FSF postal mail address.
18383
18384         Sync from coreutils.
18385         * modules/unlinkdir: New file.
18386         * modules/yesno (Depends-on): Add getline.
18387         * MODULES.html.sh (File system functions): Add unlinkdir.
18388
18389 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
18390
18391         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
18392         lib/strsep.h:
18393         Change the initial comment to refer to GPL, not LGPL.
18394         gnulib-tool will change it to LGPL as needed.
18395
18396         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
18397         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
18398         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
18399         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
18400         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
18401         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
18402         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
18403         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
18404         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
18405         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
18406         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
18407         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
18408         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
18409         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
18410         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
18411         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
18412         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
18413         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
18414         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
18415         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
18416         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
18417         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
18418         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
18419         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
18420         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
18421         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
18422         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
18423         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
18424         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
18425         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
18426         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
18427         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
18428         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
18429         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
18430         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
18431         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
18432         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
18433         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
18434         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
18435         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
18436         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
18437         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
18438         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
18439         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
18440         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
18441         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
18442         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
18443         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
18444         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
18445         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
18446         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
18447         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
18448         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
18449         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
18450         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
18451         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
18452         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
18453         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
18454         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
18455         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
18456         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
18457         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
18458         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
18459         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
18460         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
18461         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
18462         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
18463         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
18464         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
18465         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
18466         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
18467         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
18468         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
18469         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
18470         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
18471         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
18472         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
18473         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
18474         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
18475         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
18476         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
18477         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
18478         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
18479         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
18480         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
18481         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
18482         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
18483         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
18484         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
18485         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
18486         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
18487         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
18488         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
18489         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
18490         lib/yesno.c, lib/yesno.h:
18491         Update FSF postal mail address.
18492
18493 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
18494
18495         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
18496         tests/test-memmem.c, tests/test-stpncpy.c:
18497         Update FSF postal mail address.
18498
18499 2005-05-13  Bruno Haible  <bruno@clisp.org>
18500
18501         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
18502         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
18503         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
18504         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
18505         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
18506         Add support for 64-bit integers in the MSVC compiler.
18507
18508 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18509
18510         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
18511
18512 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
18513
18514         * gnulib-tool (func_import): Sort and uniquify recommended includes.
18515
18516 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
18517
18518         * doc/getdate.texi (General date syntax): Don't say that date
18519         date --iso-8601=ns generates acceptable dates; it doesn't yet.
18520         Problem reported by Nic Ferrier.
18521
18522 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18523
18524         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
18525         specified in ai_socktype. Fix invalid ai_protocol
18526         check. ai_protocol is usually set to 0 or depending on
18527         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
18528         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
18529         ai_socktype / ai_protocol in the returned addrinfo structure.
18530
18531 2005-05-10  Simon Josefsson  <jas@extundo.com>
18532
18533         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
18534         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18535
18536 2005-05-10  Karl Berry  <karl@gnu.org>
18537
18538         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
18539         (from http://www.gnu.org/licenses).
18540         * doc/COPYING.LIB: also rename to COPYING.LESSER.
18541         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
18542         fdl.texi suffices.
18543
18544 2005-05-10  Karl Berry  <karl@gnu.org>
18545
18546         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
18547         (COPYING.DOC): remove.
18548
18549         * config/srclist-update: new FSF address.
18550
18551 2005-05-10  Derek Price  <derek@ximbiot.com>
18552
18553         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
18554         possible.
18555
18556 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18557             Bruno Haible  <bruno@clisp.org>
18558
18559         * modules/inet_ntop: New file.
18560         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18561         inet_ntop.
18562
18563 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18564             Bruno Haible  <bruno@clisp.org>
18565
18566         * m4/inet_ntop.m4: New file.
18567
18568 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18569             Bruno Haible  <bruno@clisp.org>
18570
18571         * lib/inet_ntop.h: New file.
18572         * lib/inet_ntop.c: New file, from glibc with modifications.
18573
18574 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
18575
18576         * modules/time_r (License): Change to LGPL.
18577         * modules/extensions (License): Change to LGPL.  Actually,
18578         the license is more permissive than that, but currently gnulib-tool
18579         doesn't know how to handle more-permissive licenses.
18580
18581         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
18582         Problem reported by Dave Love.
18583
18584 2005-05-08  Jim Meyering  <jim@meyering.net>
18585
18586         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
18587         blank.
18588
18589 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
18590
18591         * modules/argmatch (Depends-on): Add stdbool.
18592         * modules/backupfile (Depends-on): Likewise.
18593         * modules/chdir-long (Depends-on): Likewise.
18594         * modules/closeout (Depends-on): Likewise.
18595         * modules/cycle-check (Depends-on): Likewise.
18596         * modules/dirname (Depends-on): Likewise.
18597         * modules/fnmatch (Depends-on): Likewise.
18598         * modules/fsusage (Depends-on): Likewise.
18599         * modules/fwriteerror (Depends-on): Likewise.
18600         * modules/getcwd (Depends-on): Likewise.
18601         * modules/getloadavg (Depends-on): Likewise.
18602         * modules/hard-locale (Depends-on): Likewise.
18603         * modules/makepath (Depends-on): Likewise.
18604         * modules/mountlist (Depends-on): Likewise.
18605         * modules/nanosleep (Depends-on): Likewise.
18606         * modules/posixtm (Depends-on): Likewise.
18607         * modules/quotearg (Depends-on): Likewise.
18608         * modules/readtokens (Depends-on): Likewise.
18609         * modules/readtokens0 (Depends-on): Likewise.
18610         * modules/readutmp (Depends-on): Likewise.
18611         * modules/save-cwd (Depends-on): Likewise.
18612         * modules/strftime (Depends-on): Likewise.
18613         * modules/userspec (Depends-on): Likewise.
18614         * modules/utimecmp (Depends-on): Likewise.
18615         * modules/xgetcwd (Depends-on): Likewise.
18616         * modules/xnanosleep (Depends-on): Likewise.
18617         * modules/xstrtod (Depends-on): Likewise.
18618         * modules/yesno (Depends-on): Likewise.
18619
18620 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
18621
18622         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
18623         needless checks.
18624
18625 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18626
18627         Merge from coreutils.  Among other things,
18628         add bulletproofing for cases where stdin, stdout, or stderr are closed.
18629         * lib/fd-safer.c: New file.
18630         * lib/fcntl-safer.h, open-safer.c: Remove.
18631         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
18632         * lib/dup-safer.c: Include unistd-safer.h first.
18633         Don't include errno.h.
18634         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
18635         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
18636         * lib/file-type.c: Rely on file-type.h change.
18637         * lib/getloadavg.c: Include unistd-safer.h.
18638         (getloadavg): Use safer open.
18639         * lib/getusershell.c: Include "stdio-safer.h".
18640         (getusershell): Use safer fopen.
18641         * lib/long-options.c (long_options): Use NULL rather than 0.
18642         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
18643         'free'.
18644         * lib/modechange.c: Likewise.
18645         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
18646         (MODE_DONE): New constant.
18647         (struct mode_change): Remove 'next' member.
18648         (make_node_op_equals): New function; like the old one of the
18649         same name, except it allocates an array.
18650         (mode_compile, mode_create_from_ref): Use it.
18651         (mode_compile): Allocate result as an array, not a linked list.
18652         Parse octal string ourself, so that we catch mistakes like "+0".
18653         (mode_adjust): Arg is an array, not a linked list.
18654         * lib/modechange.c: Include stat-macros.h, xalloc.h.
18655         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
18656         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
18657         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
18658         Remove.  This is now stat-macros.h's job.
18659         (talloc): Remove.  All callers replaced by xalloc, so that
18660         our invokers don't have to worry about reporting memory failures.
18661         (make_node_op_equals): Remove.
18662         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18663         New constants.
18664         (struct mode_change): Moved here from modechange.h.
18665         (mode_append_entry): Remove.
18666         (mode_compile): Remove MASKED_OPS arg, since it encouraged
18667         apps to have incorrect behavior.  Use simpler algorithm for head
18668         and tail.  Don't futz with umask; that's now the job of mode_adjust.
18669         Detect more invalid usages rather than having somewhat-random behavior.
18670         Don't insert an "a=" action, as that leads to incorrect behavior.
18671         (mode_compile, mode_create_from_ref): Return NULL on error instead
18672         of an enum, since now there's only one way to have an error.  All
18673         callers changed.
18674         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
18675         at the correct time.  Simplify calculation of "+u" and its ilk.
18676         Don't mishandle "+X".
18677         (mode_free): Remove "register" and localize decls.
18678         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18679         (struct mode_change): Move to modechange.c; callers don't
18680         need to see this stuff.
18681         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
18682         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
18683         (mode_change, mode_adjust): Reflect the new signatures noted above.
18684         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
18685         that might redefine system include files.
18686         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
18687         (my_usleep): Use NULL rather than (void *) 0.
18688         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
18689         Use siginterrupt to specify that system calls should be interrupted.
18690         (rpl_nanosleep): Move initialization of suspended closer to call of
18691         my_usleep.
18692         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
18693         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
18694         (desirable_utmp_entry): New function.
18695         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
18696         using x2nrealloc, to simplify logic.
18697         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
18698         size calculation.  Do not assume utmp file is a regular file.
18699         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
18700         (READ_UTMP_CHECK_PIDS): New constant.
18701         * lib/save-cwd.c: Include unistd-safer.h.
18702         (save_cwd): Use fd_safer.
18703         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
18704         [!_LIBC] Include "stat-macros.h" instead.
18705         * lib/unistd-safer.h (fd_safer): New decl.
18706
18707 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18708
18709         * modules/getloadavg (Depends-on): Add unistd-safer.
18710         * modules/getusershell (Depends-on): Add stdio-safer.
18711         * modules/lstat (Depends-on): Remove xalloc.
18712         * modules/mkstemp (Depends-on): Add stat-macros.
18713         * modules/modechange (Depends-on): Remove xstrtol.
18714         Add stat-macros, xalloc.
18715         * modules/save-cwd (Depends-on): Add unistd-safer.
18716         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
18717         * modules/unistd-safer (Files): Add lib/fd-safer.c
18718         (Makefile.am): Remove lib_SOURCES.
18719
18720         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
18721         Remove fcntl-safer; unistd-safer supersedes it.
18722
18723 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18724
18725         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
18726         AC_HEADER_STAT.
18727         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
18728         (gl_PREREQ_CHOWN): Remove.
18729         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
18730         it.  Don't require AC_HEADER_STAT.
18731         (gl_PREREQ_LSTAT): Remove.
18732         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
18733         Don't require AC_HEADER_STAT.
18734         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
18735         (gl_PREREQ_RMDIR): Remove.
18736         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
18737         mention stat-macros.h or AC_HEADER_STAT, since we'll make
18738         the stat-macros module a prerequisite.
18739         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
18740         * m4/filemode.m4 (gl_FILEMODE): Likewise.
18741         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
18742         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
18743         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
18744         variable names.
18745         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
18746         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
18747         variable prefixes.
18748         * m4/fcntl-safer.m4: Remove.
18749         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
18750         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
18751         Invoke gl_PREREQ_FD_SAFER.
18752         (gl_PREREQ_FD_SAFER): New macro.
18753         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
18754         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
18755         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
18756         Remove duplicate call to AC_LIBOBJ(readutmp).
18757         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
18758
18759         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
18760         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
18761
18762 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18763
18764         * MODULES.html.sh (Misc): Add byteswap.
18765
18766 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18767
18768         * modules/getcwd (Depends-on): Add extensions.
18769         * modules/openat (Depends-on): Likewise.
18770
18771 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18772
18773         * modules/byteswap: New file.
18774
18775 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18776
18777         * m4/byteswap.m4: New file.
18778
18779 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18780
18781         * lib/byteswap_.h: New file.
18782
18783 2005-04-25  Karl Berry  <karl@gnu.org>
18784
18785         * m4/gettext.m4: Update from GNU gettext 0.14.4.
18786
18787 2005-04-25  Albert Chin  <china@thewrittenword.com>
18788
18789         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
18790         Toolkit C bug.
18791
18792 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
18793
18794         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
18795         (func_ln_if_changed) Remove forcibly for no error message
18796         in case file does not exist.
18797
18798 2005-04-19  Simon Josefsson  <jas@extundo.com>
18799
18800         * gnulib-tool (Options): Make --symlink mean --symbolic.
18801
18802 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
18803
18804         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
18805
18806 2005-04-16  Simon Josefsson  <jas@extundo.com>
18807
18808         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
18809
18810 2005-04-15  Simon Josefsson  <jas@extundo.com>
18811
18812         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
18813
18814 2005-04-15  Simon Josefsson  <jas@extundo.com>
18815
18816         * gnulib-tool: Rename --symlink to --symbolic.
18817
18818 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
18819
18820         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
18821         symbolic links to files instead of copying/moving.  Add --aux-dir,
18822         specifying directory relative --dir where auxiliary build tools
18823         are placed.
18824
18825 2005-04-14  Bruno Haible  <bruno@clisp.org>
18826
18827         * modules/allocsa (License): Change to LGPL.
18828         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
18829
18830 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
18831
18832         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
18833         that "UTC +1 second" continues to work.  Problem reported
18834         by Dmitry V. Levin.
18835         (relunit_snumber): New rule.
18836         (relunit): Use it.
18837
18838 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
18839
18840         * lib/getdate.y (universal_time_zone_table): New constant.
18841         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
18842         universal_time_zone_table.
18843         (lookup_zone): Prefer universal_time_zone_table to
18844         local_time_zone_table, so that "GMT" time stamps are allowed in
18845         London during the summer.  Problem reported by Ian Abbott.
18846
18847 2005-04-12  Jim Meyering  <jim@meyering.net>
18848
18849         * lib/human.c (humblock): Set *options even when returning due to
18850         xstrtoumax conversion failure.  Thanks to a used-uninitialized
18851         warning from gcc-4.
18852
18853 2005-04-09  Jim Meyering  <jim@meyering.net>
18854
18855         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
18856         -Wuninitialized: initialize tm0.tm_year.
18857
18858 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
18859
18860         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
18861         count, since there's no maximum.  All uses changed.
18862         Add member dsts_seen.
18863         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
18864         not being INT_MAX.
18865         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
18866         Use pc_rels_seen to decide whther a date is absolute.
18867
18868         * lib/getdate.y (number): Don't overwrite year.
18869         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
18870         check.
18871
18872 2005-04-02  Simon Josefsson  <jas@extundo.com>
18873
18874         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
18875         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
18876
18877 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
18878
18879         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
18880         where no absolute path name can be longer than PATH_MAX.
18881
18882 2005-03-27  Jim Meyering  <jim@meyering.net>
18883
18884         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
18885
18886 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
18887
18888         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
18889         "one's complement" -> "ones' complement" in comment, as per Knuth.
18890         "value of type" -> "type or expression" in comment.
18891         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
18892
18893 2005-03-26  Jim Meyering  <jim@meyering.net>
18894
18895         Comment nits.
18896         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
18897         Correct typos: s/or/of/.
18898
18899 2005-03-26  Jim Meyering  <jim@meyering.net>
18900
18901         * modules/check-include-files: Move to ../ and rename to...
18902         * check-module: ...this.
18903
18904 2005-03-25  Jim Meyering  <jim@meyering.net>
18905
18906         * modules/xvasprintf (Files): Add xalloc.h.
18907
18908 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
18909
18910         * modules/gettext (Files): config/config.rpath ->
18911         build-aux/config.rpath
18912         * modules/iconv (Files): Likewise.
18913         Problem reported by Oskar Liljeblad.
18914
18915 2005-03-23  Jim Meyering  <jim@meyering.net>
18916
18917         * modules/check-include-files: New script to check for
18918         missing dependencies, multiple includes, etc.
18919
18920         * modules/c-strtold (Depends-on): Add xalloc.
18921         * modules/c-strtod (Depends-on): Add xalloc.
18922         * modules/hash (Depends-on): Add xalloc.
18923         (Files): Remove lib/xalloc.h.
18924
18925         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
18926         * modules/userspec (Files): Add lib/inttostr.h.
18927
18928 2005-03-23  Jim Meyering  <jim@meyering.net>
18929
18930         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
18931
18932 2005-03-22  Jim Meyering  <jim@meyering.net>
18933
18934         * modules/stat-macros: New module.
18935         * modules/canonicalize, modules/euidaccess, modules/file-type,
18936         * modules/filemode, modules/lchown, modules/makepath,
18937         * modules/rmdir, modules/stat: Depend on new stat-macros module
18938         rather than listing lib/stat-macros.h manually.
18939         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
18940
18941 2005-03-22  Jim Meyering  <jim@meyering.net>
18942
18943         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
18944
18945 2005-03-22  Bruno Haible  <bruno@clisp.org>
18946
18947         * config/srclist.txt: Replace target directory 'config' with
18948         'build-aux'.
18949         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
18950         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
18951         ../build-aux/.
18952
18953 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
18954
18955         * modules/chdir-long (Depends-on): Add mempcpy.
18956
18957         * modules/acl, modules/backupfile, modules/c-strtod,
18958         modules/c-strtold, modules/canon-host, modules/canonicalize,
18959         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
18960         modules/exclude, modules/exitfail, modules/file-type,
18961         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
18962         modules/getdate, modules/getline, modules/getpagesize,
18963         modules/getpass, modules/getugroups, modules/group-member,
18964         modules/hard-locale, modules/hash, modules/human, modules/idcache,
18965         modules/inttostr, modules/long-options, modules/makepath,
18966         modules/md5, modules/memcasecmp, modules/memcoll,
18967         modules/modechange, modules/mountlist, modules/path-concat,
18968         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
18969         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
18970         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
18971         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
18972         modules/strftime, modules/strndup, modules/strverscmp,
18973         modules/timespec, modules/unlocked-io, modules/userspec,
18974         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
18975         modules/yesno:
18976         Remove lib_SOURCES line from Makefile.am section, as this is now
18977         done automatically by the corresponding Autoconf macro.
18978
18979 2005-03-21  Jim Meyering  <jim@meyering.net>
18980
18981         Changes imported from coreutils.
18982
18983         * lib/cycle-check.c: Don't include xalloc.h.
18984
18985         * lib/path-concat.c: Don't include assert.h.
18986         (path_concat): Remove assertion that would have triggered
18987         for ABASE starting with more than one slash.
18988         Reported by Andreas Schwab.
18989
18990         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
18991         properly when ABASE is an absolute file name.
18992         Correct the description of this function.
18993         Include <assert.h>.
18994         Add an assertion and a test driver.
18995         This fixes a bug introduced on 2004-07-02.
18996         Andreas Schwab reported the resulting failure of cp --parents:
18997         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
18998
18999 2005-03-21  Jim Meyering  <jim@meyering.net>
19000
19001         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
19002         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
19003
19004 2005-03-21  Jim Meyering  <jim@meyering.net>
19005         and  Paul Eggert  <eggert@cs.ucla.edu>
19006
19007         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
19008         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
19009         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
19010         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
19011         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
19012         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
19013         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
19014         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
19015         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
19016         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
19017         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
19018         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
19019         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
19020         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
19021         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
19022         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
19023         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
19024         for these modules.
19025
19026 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
19027
19028         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
19029         (which shouldn't happen), generate nothing instead of returning 0
19030         immediately, so that nstrftime (NULL, ...) doesn't return 0.
19031
19032 2005-03-16  Bruno Haible  <bruno@clisp.org>
19033
19034         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
19035         HAVE_LONGLONG_64BIT.
19036
19037 2005-03-16  Bruno Haible  <bruno@clisp.org>
19038
19039         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
19040         HAVE_LONGLONG_64BIT.
19041
19042 2005-03-16  Bruno Haible  <bruno@clisp.org>
19043
19044         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
19045         HAVE_LONGLONG_64BIT.
19046
19047 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
19048
19049         * lib/strftime.c (my_strftime): Prepend space to format so that we can
19050         reliably distinguish strftime failure from empty output on POSIX
19051         hosts.
19052
19053 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
19054
19055         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
19056         (iconv_string): Don't guess a size-zero buffer, as that might cause
19057         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
19058         result would be 'too large', where 'too large' is (heuristically)
19059         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
19060         overflow concerns.  This will prevent some unwanted malloc failures
19061         when the inputs are very large.
19062
19063 2005-03-15  Karl Berry  <karl@gnu.org>
19064
19065         * config/srclist.txt (config.rpath): from gettext.
19066         * config/config.rpath: update.
19067
19068 2005-03-15  Bruno Haible  <bruno@clisp.org>
19069
19070         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
19071         to 'negate'.
19072
19073         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
19074         variable.
19075
19076         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
19077         results.
19078
19079 2005-03-14  Simon Josefsson  <jas@extundo.com>
19080
19081         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
19082         <fx@gnu.org>.
19083
19084 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
19085
19086         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
19087         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
19088         intprops.h.
19089         * lib/strtol.c: Likewise.
19090
19091 2005-03-14  Jim Meyering  <jim@meyering.net>
19092
19093         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
19094         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
19095         to be nonzero so that we (and caller) can detect the difference
19096         between a valid zero-length expansion and an error return, even
19097         when the underlying strftime fails before writing anything into
19098         that location.
19099
19100 2005-03-14  Bruno Haible  <bruno@clisp.org>
19101
19102         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
19103         Update from GNU gettext 0.14.3.
19104
19105 2005-03-10  Jim Meyering  <jim@meyering.net>
19106
19107         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
19108
19109 2005-03-10  Jim Meyering  <jim@meyering.net>
19110
19111         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
19112         so that this module works on systems without fchdir.
19113
19114 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
19115
19116         Factor int-properties macros into a single file, except for
19117         glibc-related files.
19118         * lib/intprops.h: New file.
19119         * lib/getloadavg.c: Include it instead of limits.h.
19120         (INT_STRLEN_BOUND): Remove.
19121         * lib/human.c: Include intprops.h.
19122         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
19123         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
19124         302/1000.
19125         * lib/inttostr.h: Include intprops.h instead of limits.h.
19126         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
19127         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
19128         for consistency with intprops.h.
19129         (time_t_is_integer, twos_complement_arithmetic): Use them.
19130         * lib/sig2str.h: Include <signal.h>, intprops.h.
19131         (INT_STRLEN_BOUND): Remove.
19132         * lib/strftime.c (TYPE_SIGNED): Remove.
19133         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
19134         * lib/strtol.c: Adjust comments to match intprops.h.
19135         * lib/userspec.c: Include intprops.h.
19136         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
19137         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
19138         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
19139         instead of rolling our own expressions.
19140         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
19141
19142         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
19143         instead of int.
19144         (my_strftime): Do not mishandle years close to INT_MAX, by doing
19145         the right thing even if adding 1900 would overflow.  Similarly
19146         for tm_mon + 1 and tm_yday + 1.
19147         Make %Y always equivalent to %C%y, and similarly for %G and %g.
19148         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
19149         (DO_SIGNED_NUMBER): New macro.
19150         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
19151
19152 2005-03-07  Bruno Haible  <bruno@clisp.org>
19153
19154         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
19155
19156 2005-03-07  Bruno Haible  <bruno@clisp.org>
19157
19158         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
19159
19160 2005-03-04  Derek R. Price  <derek@ximbiot.com>
19161
19162         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
19163         (func_import): Only replace files via --import when they have actually
19164         changed.
19165
19166 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19167
19168         * m4/mmap-anon.m4: New file.
19169         * m4/pagealign_alloc.m4: New file.
19170
19171 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19172             Bruno Haible  <bruno@clisp.org>
19173
19174         * modules/pagealign_alloc: New file.
19175         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
19176
19177 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19178             Bruno Haible  <bruno@clisp.org>
19179
19180         * lib/pagealign_alloc.h: New file.
19181         * lib/pagealign_alloc.c: New file.
19182
19183 2005-03-03  Bruno Haible  <bruno@clisp.org>
19184
19185         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
19186         Use an all-permissive copyright notice, recommended by RMS.
19187
19188 2005-03-02  Bruno Haible  <bruno@clisp.org>
19189
19190         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
19191         of AIX, the replacement has to be done only after <string.h> is
19192         included, therefore not in config.h. stpncpy.h does the replacement,
19193         and stpncpy.c uses it.
19194
19195 2005-03-02  Bruno Haible  <bruno@clisp.org>
19196
19197         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
19198         stpncpy.c uses it.
19199
19200 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19201
19202         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
19203         The workaround isn't strictly needed for POSIX conformance, and
19204         it's too much of a pain to configure and maintain.  We'll ask
19205         people to fix their kernels instead.
19206         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
19207         (NANOSLEEP_BUG_WORKAROUND): Remove.
19208         (xnanosleep): Remove the workaround.
19209
19210 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19211
19212         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
19213         Reported by Derek Price.
19214         (Include): Add "timespec.h".
19215
19216         * modules/xnanosleep (Depends-on): Remove gethrxtime.
19217
19218 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19219
19220         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
19221         to detect nanosleep bug.
19222
19223 2005-03-01  Bruno Haible  <bruno@clisp.org>
19224
19225         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
19226
19227 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
19228
19229         * modules/gethrxtime: New file.
19230         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
19231         (Depends-on): Add gethrxtime.
19232         (configure.ac): Add gl_XNANOSLEEP.
19233         (Makefile.am): Remove lib_SOURCES line.
19234
19235 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
19236
19237         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
19238         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
19239
19240 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
19241
19242         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
19243         * lib/timespec.h (gettime): Return void, since it always
19244         succeeds now.  All uses changed.
19245         * lib/gettime.c (gettime) Likewise.
19246         [HAVE_NANOTIME]: Prefer nanotime.
19247         Assume gettimeofday succeeds, as POSIX requires.
19248         Assime time () succeeds, since other code already does.
19249         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
19250         (timespec_subtract): Remove.
19251         (NANOSLEEP_BUG_WORKAROUND): New constant.
19252         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
19253         things considerably.  Use it only on GNU/Linux hosts, since the
19254         workaround shouldn't be needed elsewhere.
19255
19256 2005-02-24  Bruno Haible  <bruno@clisp.org>
19257
19258         * modules/gettext (Files): Add m4/glibc2.m4.
19259
19260 2005-02-24  Bruno Haible  <bruno@clisp.org>
19261
19262         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
19263         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
19264         * m4/progtest.m4:
19265         Update from GNU gettext 0.14.2.
19266         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
19267
19268 2005-02-24  Bruno Haible  <bruno@clisp.org>
19269
19270         * lib/localcharset.c: Update from GNU gettext 0.14.2.
19271         * lib/config.charset: Update from GNU gettext 0.14.2.
19272
19273 2005-02-24  Bruno Haible  <bruno@clisp.org>
19274
19275         * lib/gettext.h: Update from GNU gettext 0.14.2.
19276
19277 2005-02-23  Simon Josefsson  <jas@extundo.com>
19278
19279         * m4/iconvme.m4: New file.
19280
19281 2005-02-23  Jim Meyering  <jim@meyering.net>
19282
19283         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
19284         change.
19285         Thanks to Bruno Haible for catching it.
19286
19287 2005-02-22  Simon Josefsson  <jas@extundo.com>
19288
19289         * modules/iconvme: New file.
19290
19291         * MODULES.html.sh: Add iconvme.
19292
19293 2005-02-22  Simon Josefsson  <jas@extundo.com>
19294
19295         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
19296
19297 2005-02-22  Simon Josefsson  <jas@extundo.com>
19298
19299         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
19300
19301 2005-02-22  Jim Meyering  <jim@meyering.net>
19302
19303         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
19304         s/ifndef/ifdef/.
19305
19306 2005-02-20  Neil Conway  <neilc@samurai.com>
19307
19308         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
19309         returned by OSX/Darwin if the specified buffer is not large
19310         enough for the hostname.
19311
19312 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19313
19314         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
19315         pass it to _help, otherwise the latter coredumps trying to
19316         dereference state.root_argp.
19317
19318 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19319
19320         * modules/chdir-long (Depends-on): Add memrchr.
19321         * modules/memrchr (Files): Add lib/memrchr.h.
19322         (Include): "memrchr.h".
19323
19324 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19325
19326         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
19327
19328 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19329
19330         * lib/memrchr.h: New file.
19331         * lib/chdir-long.c: Include it.
19332         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
19333         Don't bother including stddef.h.
19334
19335 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
19336
19337         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
19338         inclusion.
19339         Include <sys/types.h>, for dev_t.
19340         (ME_DUMMY, ME_REMOTE): Move from here....
19341         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
19342         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
19343         Dmitry V. Levin.
19344         Include mountlist.h first, to test the interface.
19345
19346 2005-01-29  Bruno Haible  <bruno@clisp.org>
19347
19348         * lib/progname.c (program_name): Initialize.
19349         Needed when linking statically on MacOS X.
19350
19351 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
19352
19353         Sync from coreutils.
19354         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
19355         (Depends-on): Add c-strtod.
19356         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
19357
19358 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
19359
19360         Sync from coreutils.
19361         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
19362
19363         Remove files that are specific to coreutils.
19364         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
19365
19366 2005-01-28  Bruno Haible  <bruno@clisp.org>
19367
19368         * modules/javacomp: New file.
19369         * MODULES.html.sh (Java): Add javacomp.
19370
19371 2005-01-28  Bruno Haible  <bruno@clisp.org>
19372
19373         * m4/javacomp.m4: New file, from GNU gettext.
19374
19375 2005-01-28  Bruno Haible  <bruno@clisp.org>
19376
19377         * lib/javacomp.sh.in: New file, from GNU gettext.
19378         * lib/javacomp.h: New file, from GNU gettext.
19379         * lib/javacomp.c: New file, from GNU gettext.
19380
19381 2005-01-26  Simon Josefsson  <jas@extundo.com>
19382
19383         * lib/gai_strerror.c: Use GPL in header.
19384
19385 2005-01-26  Bruno Haible  <bruno@clisp.org>
19386
19387         * modules/javaexec: New file.
19388         * MODULES.html.sh (Java): Add javaexec.
19389
19390 2005-01-26  Bruno Haible  <bruno@clisp.org>
19391
19392         * m4/javaexec.m4: New file, from GNU gettext.
19393
19394 2005-01-26  Bruno Haible  <bruno@clisp.org>
19395
19396         * lib/javaexec.sh.in: New file, from GNU gettext.
19397         * lib/javaexec.h: New file, from GNU gettext.
19398         * lib/javaexec.c: New file, from GNU gettext.
19399
19400 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19401
19402         * modules/lchown (Depends-on): Remove lchown.h
19403
19404 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19405
19406         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
19407         must be defined if the header file was not found, in order
19408         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
19409
19410 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19411
19412         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
19413         initializers for struct pentry_state.
19414         (__argp_error): Check return value of __asprintf
19415         (__argp_failure): Translate error message
19416
19417         * lib/argp-parse.c: Removed braces around the expansion of N_()
19418
19419 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19420
19421         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
19422         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
19423         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
19424         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
19425         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
19426         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
19427         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
19428         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
19429         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
19430         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
19431         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
19432         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
19433         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
19434         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
19435         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
19436         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
19437         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
19438         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
19439         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
19440         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
19441         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
19442         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
19443         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
19444         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
19445         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
19446         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
19447         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
19448         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
19449         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
19450         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
19451         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
19452         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
19453         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
19454         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
19455         xstrtol.m4, xstrtoumax.m4, yesno.m4:
19456         Use an all-permissive copyright notice, recommended by RMS.
19457
19458 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
19459
19460         * modules/chdir-long (Depends-on): Remove mempcpy.
19461
19462 2005-01-21  Jim Meyering  <jim@meyering.net>
19463
19464         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
19465         same value as for Solaris 9.
19466
19467         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
19468         component length.  This included changing the parameter to be
19469         of type `char *' rather than `char const *'.
19470         * lib/chdir-long.h (chdir_long): Update prototype.
19471
19472         * lib/openat.c (fdopendir, fstatat): New functions.
19473         * lib/openat.h: Include headers required for use of DIR and struct
19474         stat.
19475         [AT_SYMLINK_NOFOLLOW]: Define.
19476         (fdopendir, fstatat): Add prototypes.
19477
19478 2005-01-21  Bruno Haible  <bruno@clisp.org>
19479
19480         * modules/classpath: New file.
19481         * MODULES.html.sh (Java): Add classpath.
19482
19483 2005-01-21  Bruno Haible  <bruno@clisp.org>
19484
19485         * lib/classpath.h: New file, from GNU gettext.
19486         * lib/classpath.c: New file, from GNU gettext.
19487
19488 2005-01-20  Simon Josefsson  <jas@extundo.com>
19489
19490         * modules/version-etc-fsf: New file.
19491
19492 2005-01-20  Simon Josefsson  <jas@extundo.com>
19493
19494         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
19495         * lib/version-etc.c: Remove version_etc_copyright.
19496         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
19497         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
19498
19499 2005-01-20  Simon Josefsson  <jas@extundo.com>
19500
19501         * lib/base64.h (isbase64): Add.
19502
19503         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
19504         using a unsigned prototype, don't inline.
19505         (base64_decode): Use it.
19506
19507 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19508
19509         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
19510         it.
19511
19512 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19513
19514         * lib/save-cwd.c (save_cwd): Remove code to support the case
19515         where fchdir is missing or flaky.
19516
19517 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19518
19519         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
19520
19521 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
19522
19523         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
19524         AC_LIBSOURCES now does this.
19525         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
19526         with new ullong_max module.
19527
19528 2005-01-19  Bruno Haible  <bruno@clisp.org>
19529
19530         * modules/sh-quote: New file.
19531         * MODULES.html.sh (Executing programs): Add sh-quote.
19532
19533 2005-01-19  Bruno Haible  <bruno@clisp.org>
19534
19535         * lib/sh-quote.h: New file, from GNU gettext.
19536         * lib/sh-quote.c: New file, from GNU gettext.
19537
19538 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19539
19540         Merge from coreutils.
19541         * m4/ullong_max.m4: New file.
19542         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
19543         (gl_MACROS): Assume localeconv exists.
19544
19545 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19546
19547         Merge changes from coreutils, as described below in several
19548         changelogs dated today.
19549
19550         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
19551         (O_DIRECTORY): Remove; not needed here, since "." must be
19552         a directory.  All uses removed.
19553         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
19554         universal on Suns, and we also need to test for IRIX.
19555         Revamp code to use 'if' rather than '#if'.
19556         Avoid unnecessary comparison of cwd->desc to 0.
19557
19558         * lib/utimens.c (futimens): Robustify the previous patch, by checking
19559         for known valid error numbers rather than observed invalid ones.
19560
19561 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19562
19563         * modules/ullong_max: New file.
19564
19565         * modules/chdir-long, modules/openat: New files.
19566         * modules/save-cwd (Depends-on): Depend on chdir-long.
19567         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
19568
19569 2005-01-18  Jim Meyering  <jim@meyering.net>
19570
19571         Merge from coreutils.
19572         * m4/chdir-long.m4, m4/openat.m4: New files.
19573         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
19574         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
19575         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
19576         is sane and DOES follow symlinks.  Besides, testing 20 different
19577         systems found no broken chown implementations.
19578         Prompted by a change in rsync's copy of this macro.
19579         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
19580
19581         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
19582
19583         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
19584         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
19585         NULL-means-set-to-current-time semantics.
19586         Remove temporary file immediately, rather than waiting
19587         for configure's at-exit trap code to do it.
19588
19589 2005-01-18  Jim Meyering  <jim@meyering.net>
19590
19591         * lib/version-etc.c (version_etc_copyright): Update copyright date.
19592
19593         * lib/utimens.c (futimens): Account for the fact that futimes
19594         can also fail with errno == ENOSYS or errno == ENOENT.
19595         Patch from Dmitry V. Levin.
19596
19597         Change the name of the robust chdir function from chdir to chdir_long.
19598         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
19599         (restore_cwd): Use chdir_long, not chdir.
19600         * lib/chdir-long.c: Renamed from chdir.c.
19601         * lib/chdir-long.h: Renamed from chdir.h.
19602         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
19603         Hurd.
19604
19605 2005-01-18  Bruno Haible  <bruno@clisp.org>
19606
19607         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
19608         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
19609         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
19610         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
19611         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
19612         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
19613         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
19614         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
19615         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
19616         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
19617         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
19618         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
19619         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
19620         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
19621         Use an all-permissive copyright notice, recommended by RMS.
19622
19623 2005-01-18  Bob Proulx  <bob@proulx.com>
19624
19625         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
19626         simplify offsetof() macro construct to avoid compile failure with
19627         native HP-UX 11.0 ANSI C compiler.
19628
19629 2005-01-17  Bruno Haible  <bruno@clisp.org>
19630
19631         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
19632         redundant because stpncpy.m4 takes care of it.
19633
19634 2005-01-17  Bruno Haible  <bruno@clisp.org>
19635
19636         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
19637
19638 2005-01-17  Bruno Haible  <bruno@clisp.org>
19639
19640         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
19641         used.
19642
19643 2005-01-17  Bruno Haible  <bruno@clisp.org>
19644
19645         * lib/fwriteerror.h (fwriteerror): Change specification to include
19646         fclose.
19647         * lib/fwriteerror.c: Include <stdbool.h>.
19648         (fwriteerror): At the end, close the file stream. Record whether
19649         stdout was already closed.
19650
19651 2005-01-17  Bruno Haible  <bruno@clisp.org>
19652
19653         * lib/execute.c (environ): Declare if needed.
19654         * lib/pipe.c (environ): Likewise.
19655         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
19656
19657 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19658
19659         * modules/argp: Depend on vsnprintf
19660
19661 2005-01-10  Jim Meyering  <jim@meyering.net>
19662
19663         * modules/closeout (Depends-on): Add atexit.
19664
19665 2005-01-06  Bruno Haible  <bruno@clisp.org>
19666
19667         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
19668
19669 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19670
19671         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
19672         definitions to be after all include files, to avoid collisions.
19673         Problem reported by Bob Proulx.
19674
19675 2005-01-04  Jim Meyering  <jim@meyering.net>
19676
19677         Changes imported from coreutils.
19678         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
19679         as the mkstemp template, use a temporary directory and an
19680         8.3-friendly template to avoid trouble on systems like DJGPP.
19681         Reported by Juan M. Guerrero via Stepan Kasal.
19682         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
19683         close. Remove the temporary directory right away, rather than waiting
19684         for configure's at-exit trap code to do it.
19685         Suggestion from Stepan Kasal.
19686
19687 2005-01-01  Simon Josefsson  <jas@extundo.com>
19688
19689         * gnulib-tool: Print #include directives when --import'ing.
19690
19691 2004-12-28  Simon Josefsson  <jas@extundo.com>
19692
19693         * tests/test-base64.c: Include required header files.  Remove
19694         unused variables.
19695
19696 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19697
19698         * modules/error (Depends-on): Remove gettext.
19699
19700 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19701
19702         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
19703         not needed.  This removes a dependency on the gettext module.
19704         [defined _LIBC]: Do not include <libintl.h>; not needed.
19705
19706 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19707
19708         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
19709         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
19710
19711 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19712
19713         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
19714         HAVE_DECL_STRTOLD.
19715
19716 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19717
19718         * modules/getdate (Depends-on): Remove alloca-opt.
19719
19720 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19721
19722         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
19723
19724 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19725
19726         * lib/argp-parse.c: Include <stddef.h>.
19727         (alignof, alignto): New macros.
19728         (parser_init): Don't assume that void * is aligned sufficiently
19729         for struct option.
19730
19731         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
19732         need to extend the stack.
19733         (YYINITDEPTH): New macro, so that the initial stack isn't overly
19734         large.
19735
19736 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19737
19738         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
19739
19740 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19741
19742         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
19743         (2004-10-24) change.  Apparently this was a false alarm.
19744
19745         * modules/getdate: Depend on alloca-opt, not alloca.
19746
19747 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19748
19749         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
19750         Remove now-obsolete comment about AIX.
19751         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
19752         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
19753         (YYMAXDEPTH): New macro.
19754
19755 2004-12-18  Simon Josefsson  <jas@extundo.com>
19756
19757         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
19758
19759 2004-12-18  Bruno Haible  <bruno@clisp.org>
19760
19761         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
19762
19763 2004-12-18  Bruno Haible  <bruno@clisp.org>
19764
19765         * lib/fatal-signal.c (fatal_signals): Make non-const.
19766         (init_fatal_signals): New function.
19767         (uninstall_handlers, install_handlers): Ignore signals that were set to
19768         SIG_IGN.
19769         (at_fatal_signal): Call init_fatal_signals.
19770         (init_fatal_signal_set): Likewise. Ignore signals that were set to
19771         SIG_IGN.
19772         Reported by Paul Eggert.
19773
19774 2004-12-18  Bruno Haible  <bruno@clisp.org>
19775
19776         * doc/alloca.texi: New file.
19777         * doc/alloca-opt.texi: New file.
19778
19779 2004-12-17  Jim Meyering  <jim@meyering.net>
19780
19781         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
19782         Otherwise, install-sh could exit with improper exit status when
19783         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
19784
19785 2004-12-16  Simon Josefsson  <jas@extundo.com>
19786
19787         * tests/test-base64.c: Add license.
19788
19789 2004-12-15  Stepan Kasal  <address@hidden>
19790
19791         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
19792
19793 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
19794
19795         * modules/getcwd (Files): Add m4/d-ino.m4.
19796         Suggested by Mark D. Baushke.
19797
19798 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19799
19800         * lib/getdate.y (textint): New member "negative".
19801         (time_zone_hhmm): New function.
19802         Expect 14 shift-reduce conflicts, not 13.
19803         (o_colon_minutes): New rule.
19804         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
19805         (yylex): Set the "negative" member of signed numbers.
19806
19807 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19808
19809         * doc/getdate.texi (Time of day items, Time zone items):
19810         Describe new formats +00:00, UTC+00:00.
19811
19812 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
19813
19814         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
19815         spurious "-l"s.  Problem reported by Stepan Kasal.
19816
19817 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
19818
19819         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
19820         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
19821
19822 2004-12-04  Simon Josefsson  <jas@extundo.com>
19823
19824         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
19825         Vandoorselaere <yoann@prelude-ids.org>.
19826
19827 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19828
19829         Changes imported from coreutils.
19830         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
19831         exist.
19832         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
19833
19834 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19835
19836         Changes imported from coreutils.
19837         * lib/hard-locale.c: Assume <locale.h> exists.
19838         Include "strdup.h".
19839         (GLIBC_VERSION): New macro.
19840         (hard_locale): Assume setlocale exists.
19841         Rewrite to avoid #ifdef.
19842         Use strdup rather than malloc + strcpy.
19843         * lib/human.c: Assume <locale.h> exists.
19844         (human_readable): Assume localeconv exists.
19845
19846 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19847
19848         * modules/hard-locale (Depends-on): Add strdup.
19849
19850 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
19851
19852         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
19853         convert T2, not T.  (Imported from libc.)
19854
19855 2004-11-30  Simon Josefsson  <jas@extundo.com>
19856
19857         * modules/restrict (License): Change to LGPL.
19858
19859 2004-11-30  Simon Josefsson  <jas@extundo.com>
19860
19861         * m4/restrict.m4: Add copyright and copying conditions.
19862
19863 2004-11-30  Simon Josefsson  <jas@extundo.com>
19864
19865         * m4/base64.m4: New file.
19866
19867 2004-11-30  Simon Josefsson  <jas@extundo.com>
19868
19869         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
19870         base64.
19871
19872         * tests/test-base64.c: New file.
19873
19874         * modules/base64: New file.
19875
19876 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19877
19878         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
19879         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
19880
19881         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
19882
19883 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19884
19885         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
19886         (__getcwd.c): Don't restore errno; glibc doesn't.
19887         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
19888         first, falling back to our code only if its results look suspicious.
19889         Ensure that the resulting buffer is only as large as necessary.
19890
19891         * lib/readutmp.c: Include readutmp.h first.
19892         Include <errno.h>, since readutmp.h no longer does that.
19893         * lib/readutmp.h: Don't include <errno.h>,
19894         <sys/param.h>, <time.h>; not needed to establish interface.
19895         (errno): Remove decl.
19896         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
19897         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
19898         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
19899
19900 2004-11-28  Simon Josefsson  <jas@extundo.com>
19901
19902         * lib/base64.h, base64.c: New file.
19903
19904 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19905
19906         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
19907
19908 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19909
19910         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
19911         (Depends-on): Remove pathmax, same.  Add mempcpy.
19912         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
19913         (Makefile.am): Append getcwd.h to lib_SOURCES.
19914         (Include): Add getcwd.h.
19915         (Maintainer): Change from Jim Meyering to "all, glibc",
19916         since getdate now uses intended-for-glibc code.
19917         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
19918         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
19919
19920 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19921
19922         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
19923         HP's ANSI C compiler.
19924         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
19925         Declaring int functions causes warnings on some modern systems and
19926         shouldn't be needed to compile on ancient ones.
19927         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
19928         defined.
19929
19930         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
19931         with the following changes.
19932         (__set_errno): Parenthesize properly.
19933         Include <stdbool.h>.
19934         (MIN, MAX, MATCHING_INO): New macros.
19935         (__getcwd): Define with prototype, not K&R form.
19936         Use heuristics to allocate default buffer on stack if possible.
19937         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
19938         behavior, and to avoid the PATH_MAX limit when computing
19939         ../../../../...
19940         Use MATCHING_INO to compare inode number to file.
19941         Check for arithmetic overflow in size calculations.
19942         Fix bug in reallocation of dot array that caused getcwd to fail
19943         on directories nested deeper than 75.
19944         Be more careful about saving errno on error.
19945         Do not use realloc; use only free+malloc, as this is a bit
19946         more flexible and avoids a needless copy operation.
19947         Do not inspect st_dev and st_ino for symbolic links; POSIX
19948         doesn't specify the latter.
19949         Check for closedir errors.
19950         Avoid needless casts.
19951         Use "#ifdef weak_alias" around weak_alias, to be like other
19952         glibc code.
19953         The following changes to getcwd.c have effect only when used in
19954         gnulib; they have no effect inside glibc proper.
19955         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
19956         as alloca isn't used.
19957         (alloca, __alloca): Likewise.
19958         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
19959         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19960         unconditionally, as gnulib assumes C89 or better.
19961         Do not include <sys/param.h>.
19962         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
19963         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
19964         better.
19965         (NULL) [!defined NULL]: Remove; we assume C89 or better.
19966         Include <dirent.h> in a way that is compatible with modern Autoconf.
19967         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
19968         New macros, if not already defined.
19969         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
19970         Use "_LIBC", not "defined _LIBC", for consistency.
19971         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
19972         a mempcpy module.
19973         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
19974         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
19975         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
19976         credit only to Jim Meyering and adjust the copyright dates.
19977         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
19978         <stdlib.h>, <unistd.h>, "pathmax.h".
19979         Instead, include "xgetcwd.h" (first) and "getcwd.h".
19980         (INITIAL_BUFFER_SIZE): Remove.
19981         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
19982
19983 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19984
19985         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
19986         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
19987         Use the _ONCE methods, for efficiency.
19988         Check for fcntl.h.  In test program, include <errno.h>
19989         and <fcntl.h> if available.  Remove old K&R cruft from
19990         test program.  Check for common errors in GNU/Linux,
19991         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
19992         don't do AC_LIBOBJ, as that's getcwd.m4's job.
19993         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
19994         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
19995         name accordingly.
19996         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
19997         accommodate new getcwd.c.
19998         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
19999         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
20000         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
20001         that's all we need now.
20002
20003 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20004
20005         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
20006         argp-parse.c depends on getopt internals, that means we should
20007         always use our getopt, to be on the safe side.
20008         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
20009         order not to spoil the result of an eventual previous invocation
20010         of gl_GETOPT_SUBSTITUTE.
20011
20012 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20013
20014         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
20015         redefinition warnings. To avoid them, include the defines
20016         in `#if !defined __need_getopt ... #endif'. The only place
20017         where __getopt_argv_const is used is in definitions
20018         of getopt_long and getopt_long_only below, which are as well
20019         protected by `#ifndef __need_getopt'.
20020         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
20021         __need_getopt after including <stdio.h> and <unistd.h> These
20022         headers might have defined it.
20023
20024 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
20025
20026         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
20027
20028 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
20029
20030         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
20031         (futimens): New function, which uses futimes if available.
20032         (futimens, utimens): Support timespec==NULL, with same semantics
20033         as utime and utimens.
20034         * lib/utimens.h (futimens): New decl.
20035
20036 2004-11-23  Jim Meyering  <jim@meyering.net>
20037
20038         * lib/getopt_.h: Remove trailing blanks.
20039
20040 2004-11-23  Jim Meyering  <jim@meyering.net>
20041
20042         * lib/__fpending.c: Add comment.
20043
20044 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
20045
20046         * modules/canonicalize (Depends-on): Add xreadlink.
20047         Problem reported by James Youngman.
20048
20049 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
20050
20051         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
20052         New macros.
20053         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
20054         optopt): Use them instead of invoking ## directly; otherwise, the
20055         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
20056
20057 2004-11-19  Bruno Haible  <bruno@clisp.org>
20058
20059         * lib/strtok_r.c: Move comments from here...
20060         * lib/strtok_r.h: ... to here.
20061
20062 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
20063
20064         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
20065         implementations that mishandle size_t overflow.
20066
20067 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
20068
20069         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
20070         might fail.  Problem reported by Yoann Vandoorselaere.
20071         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
20072         implementations that mishandle size_t overflow.
20073
20074 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20075
20076         * modules/canon-host (Depends-on): Add strdup.
20077
20078 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20079
20080         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
20081
20082 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20083
20084         * lib/canon-host.c: Include "strdup.h".
20085         (canon_host): Use getaddrinfo if available, so that IPv6 works.
20086         Use strdup instead of malloc/strcpy to duplicate strings.
20087
20088         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
20089         (human_space_before_unit): New constant.
20090         * lib/human.c (human_readable): Support it.
20091
20092         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
20093         (xgetcwd): Set errno correctly when failing.
20094         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
20095         the failure is actually due to a PATH_MAX problem.
20096
20097         Further getopt changes to make it more likely that glibc will
20098         buy the changes back.
20099         * lib/getopt.c (POSIXLY_CORRECT): New constant.
20100         (getopt): Use it, so to preserve glibc semantic
20101         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
20102         when compiling for libc.
20103         * lib/getopt_.h (__getopt_argv_const): Bring it back.
20104         (getopt_long, getopt_long_only): Use it.
20105
20106         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
20107         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
20108         (getopt): Argv is now char * const *, as per standard.
20109         (_getopt_internal_r, _getopt_internal): Argv is now char **,
20110         not char *__getopt_argv_const *.
20111         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
20112         _getopt_long_only_r): Likewise.
20113         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
20114         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
20115         _getopt_long_r, _getopt_long_only_r): Likewise.
20116         * lib/getopt_.h (__getopt_argv_const): Remove.
20117         (getopt): Argv is now char * const *, as per standard.
20118
20119         * lib/getdate.y (tORDINAL): New token.
20120         (day, relunit): Allow it for relative times.
20121         (relative_time_table): Use tORDINAL for ordinals.
20122
20123 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20124
20125         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
20126         Document that "second" isn't allowed as an ordinal number.
20127
20128 2004-11-16  Jim Meyering  <jim@meyering.net>
20129
20130         * modules/closeout (Depends-on): Add fpending.
20131
20132 2004-11-15  Jim Meyering  <jim@meyering.net>
20133
20134         * lib/closeout.c: Include "__fpending.h" once again.
20135         Include <stdbool.h>.
20136         (close_stdout): Don't fail just because stdout was closed initially,
20137         since some programs don't write to stdout in the normal course of
20138         operation (other than --version and --help), and we don't want this
20139         function to make e.g. `touch file >&-' fail.
20140         But do fail if it was closed and someone has tried to write to it.
20141         E.g., `printf foo >&-' must fail.
20142
20143 2004-11-13  Jim Meyering  <jim@meyering.net>
20144
20145         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
20146
20147 2004-11-12  Simon Josefsson  <jas@extundo.com>
20148
20149         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
20150         small doc fix is still pending.
20151
20152 2004-11-11  Simon Josefsson  <jas@extundo.com>
20153
20154         * modules/strtok_r: New file.
20155
20156         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20157         strtok_r.
20158
20159 2004-11-11  Simon Josefsson  <jas@extundo.com>
20160
20161         * m4/strtok_r.m4: New file.
20162
20163         * m4/getopt.m4: Replace opterr.
20164
20165 2004-11-11  Simon Josefsson  <jas@extundo.com>
20166
20167         * lib/strtok_r.h, strtok_r.c: New file.
20168
20169 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
20170
20171         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
20172         of replacing opterr, getopt, etc.  This should handle the
20173         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
20174
20175 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
20176
20177         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
20178         we can stop lying to compilers about the constness of argv when we
20179         are compiled outside glibc.
20180         (getopt, getopt_long, getopt_long_only): Use it.
20181         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
20182         _getopt_internal, getopt): Likewise.
20183         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
20184         _getopt_long_only_r): Likewise.
20185         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
20186         _getopt_long_r, _getopt_long_only_r): Likewise.
20187
20188         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
20189         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
20190         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
20191         the other external symbols.
20192         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
20193         declaration, since the above renaming now works around collisions.
20194
20195 2004-11-11  Jim Meyering  <jim@meyering.net>
20196
20197         * lib/linebreak.c: Remove trailing blanks.
20198         * lib/alloca_.h: Likewise.
20199         * lib/acosl.c: Likewise.
20200         * lib/euidaccess.c: Likewise.
20201         * lib/allocsa.h: Likewise.
20202
20203 2004-11-10  Simon Josefsson  <jas@extundo.com>
20204
20205         * m4/getaddrinfo.m4: New file.
20206
20207 2004-11-10  Simon Josefsson  <jas@extundo.com>
20208
20209         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
20210
20211 2004-11-10  Simon Josefsson  <jas@extundo.com>
20212
20213         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20214         getaddrinfo.
20215
20216         * modules/getaddrinfo: New file.
20217
20218 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20219
20220         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
20221
20222 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20223
20224         * lib/mktime.c (SHR): New macro, which is a portable
20225         substitute for >> that should work even on Crays.
20226         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
20227         Problem reported by Mark D. Baushke in
20228         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
20229         * lib/getdate.y (SHR): Likewise.
20230         (tm_diff): Use it.
20231         * lib/strftime.c (SHR): Likewise.
20232         (tm_diff): Use it.
20233         * lib/quotearg.c (struct quoting_options): Use unsigned int for
20234         quote_these_too, so that right shifts are well defined.  All uses
20235         changed.
20236
20237 2004-11-10  Jim Meyering  <jim@meyering.net>
20238
20239         Ensure that no close failure goes unreported.
20240         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
20241         return early when it seems there's nothing to flush.
20242         Don't include __fpending.h.
20243
20244 2004-11-10  Jim Meyering  <jim@meyering.net>
20245
20246         * modules/closeout (Depends-on): Remove fpending.
20247
20248 2004-11-10  Jim Meyering  <jim@meyering.net>
20249
20250         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
20251
20252 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
20253
20254         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
20255         gl_FUNC_STRFTIME.
20256         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
20257         and AC_REQUIRE when possible, to avoid duplicate checks.
20258         Check for <wchar.h>.
20259
20260 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
20261
20262         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
20263
20264 2004-11-09  Bruno Haible  <bruno@clisp.org>
20265
20266         * m4/sockpfaf.m4: New file.
20267
20268 2004-11-05  Bruno Haible  <bruno@clisp.org>
20269
20270         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
20271         Reported by Mark D. Baushke <mdb@cvshome.org>.
20272
20273 2004-11-04  Bruno Haible  <bruno@clisp.org>
20274
20275         2004-09-11  Bruno Haible  <bruno@clisp.org>
20276                 * allocsa.valgrind: New file.
20277         2004-02-06  Bruno Haible  <bruno@clisp.org>
20278                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
20279                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
20280                 Reported by Christopher Seip <chris.seip@hp.com>.
20281
20282 2004-11-04  Bruno Haible  <bruno@clisp.org>
20283
20284         * modules/allocsa (Files): Add lib/allocsa.valgrind.
20285         (Makefile.am): Distribute it.
20286
20287 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
20288
20289         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
20290         with errno == ERANGE if the buffer is too small.
20291         Problem reported by Mark D. Baushke.
20292
20293 2004-11-03  Albert Chin  <china@thewrittenword.com>
20294             Paul Eggert  <eggert@cs.ucla.edu>
20295
20296         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
20297         equivalent, substitute $ac_type for equivalent type rather than
20298         blindly using uint32_t *always* which won't work if uint32_t is not
20299         available.  Define _UINT32_T to work around typedef of uint32_t if
20300         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
20301         2.5.1.
20302
20303 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20304
20305         * m4/jm-macros.m4: Sync from coreutils.
20306         (gl_MACROS): Check for mbrlen, for pathchk.
20307         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
20308
20309 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20310
20311         * lib/xreadlink.c (MAXSIZE): New macro.
20312         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
20313         size does not exceed MAXSIZE.  Avoid cast.
20314         As suggested by Mark D. Baushke in
20315         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
20316         if readlink fails with buffer size just under MAXSIZE, try again
20317         with MAXSIZE.
20318
20319 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20320
20321         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
20322
20323 2004-11-02  Derek R. Price  <derek@ximbiot.com>
20324         and  Paul Eggert  <eggert@cs.ucla.edu>
20325
20326         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
20327         (get_date): Overparenthesize to avoid GCC warning.
20328
20329 2004-11-02  Bruno Haible  <bruno@clisp.org>
20330
20331         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
20332         returns void.
20333
20334 2004-11-02  Bruno Haible  <bruno@clisp.org>
20335
20336         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
20337         function returns void.
20338
20339 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
20340
20341         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
20342         fflush_unlocked, flockfile, funlockfile, funlockfile,
20343         fputs_unlocked, putc_unlocked.
20344
20345 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
20346
20347         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
20348         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
20349         already declared.
20350
20351 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20352
20353         * modules/getdate (Files): Add doc/getdate.texi.
20354         (Depends-on): Add setenv, xalloc.
20355
20356 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20357
20358         * lib/getdate.y: Add support for TZ="foo" within a date string.
20359         Fix some bugs near time_t boundaries.  Reject dates with
20360         out-of-range components, e.g., "Sept 31".
20361         Include <stdlib.h>, "setenv.h", "xalloc.h".
20362         (ISDIGIT_LOCALE): Remove; unused.
20363         Note that the TZ and time functions used here are not reentrant.
20364         (mktime_ok, get_tz): New functions.
20365         (TZBUFSIZE): New constant.
20366         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
20367         This requires that we sometimes generate our own TZ="XXX..." setting.
20368
20369 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20370
20371         * doc/getdate.texi: New file, from coreutils with modifications for
20372         the new TZ parsing.
20373
20374 2004-10-27  Derek R. Price  <derek@ximbiot.com>
20375
20376         * lib/mktime.c (not_equal_tm): Remove redundant check.
20377
20378 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20379
20380         * modules/regex (lib_SOURCES): Add regex.c.
20381         Reported by James Youngman in
20382         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
20383
20384 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20385
20386         * lib/getdate.y: Use Bison 1.875 features, and some minor
20387         code cleanups.  This change does not affect semantics.
20388         Don't include <stdlib.h>; no longer needed.
20389         Don't include unlocked-io.h; only the "#if TEST" code uses
20390         stdio, and performance isn't crucial there.
20391         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
20392         Bison 1.875 features as described below.
20393         All uses of "PC." replaced by "pc->".
20394         (YYSTYPE): Add a forward declaration.
20395         (yylex, yyerror): Use full prototypes in forward decls.
20396         Use "%pure-parser" rather than obsolescent "%pure_parser".
20397         Use %parse-param and %lex-param instead of obsolescent
20398         YYPARSE_PARAM and YYLEX_PARAM.
20399         (meridian_table, month_and_day_table, time_units_table,
20400         relative_time_table, time_zone_table, military_table,
20401         lookup_zone, lookup_word, get_date):
20402         Use NULL instead of 0 where appropriate.
20403         (to_hour): Avoid abort (), to avoid a dependency on
20404         stdlib.h.
20405         (yyerror, yylex): Now accepts parser_control * arg.
20406         (main) [TEST]: Use '\0' rather than 0 for char.
20407
20408 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20409
20410         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
20411
20412 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20413
20414         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
20415         It's now the caller's responsibility to handle the case where
20416         !HAVE_GETPAGESIZE && !defined getpagesize.
20417
20418         * lib/mktime.c (leapyear): Arg is long int, not int.
20419
20420 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
20421
20422         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
20423
20424 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20425
20426         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
20427         missing.  Problem reported by James Youngman.
20428
20429 2004-10-16  Simon Josefsson  <jas@extundo.com>
20430
20431         * gnulib-tool: Fix comments.  Fix parse problem.
20432         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
20433
20434 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
20435
20436         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
20437         implementation of getopt_long.  Problem reported by Alexander Taler in:
20438         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
20439
20440 2004-10-15  Bruno Haible  <bruno@clisp.org>
20441
20442         * gnulib-tool: Untabify. Initialize supplied_libname.
20443         (func_usage): More homogenous output.
20444         (func_modules_transitive_closure, func_modules_to_filelist,
20445         func_emit_lib_Makefile_am): New functions.
20446         (func_import): New function, extracted from big case statement. Use
20447         func_get_license, func_modules_transitive_closure,
20448         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
20449         opt_lgpl. Don't use test -a, as it's not portable.
20450         (func_create_testdir): Use func_modules_transitive_closure,
20451         func_modules_to_filelist, func_emit_lib_Makefile_am.
20452
20453 2004-10-15  Bruno Haible  <bruno@clisp.org>
20454
20455         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
20456
20457 2004-10-15  Bruno Haible  <bruno@clisp.org>
20458
20459         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
20460         the portions belonging to each module.
20461         Suggested by Derek Robert Price <derek@ximbiot.com>.
20462
20463 2004-10-12  Simon Josefsson  <jas@extundo.com>
20464
20465         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
20466         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
20467         to real functions.
20468
20469 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20470
20471         * modules/vsnprintf: New file.
20472
20473 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20474
20475         * m4/vsnprintf.m4: New file.
20476
20477 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20478
20479         * lib/vsnprintf.h: New file.
20480         * lib/vsnprintf.c: New file.
20481
20482 2004-10-11  Bruno Haible  <bruno@clisp.org>
20483
20484         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
20485         vsnprintf.
20486
20487 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
20488
20489         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
20490
20491 2004-10-07  Bruno Haible  <bruno@clisp.org>
20492
20493         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
20494         fits into the provided buffer.
20495
20496 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
20497
20498         * lib/diacrit.c, diacrit.h: Add GPL notice.
20499
20500         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
20501         notice.
20502         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
20503         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
20504         This avoids a potential constant-folding bug.
20505
20506 2004-10-05  Bruno Haible  <bruno@clisp.org>
20507
20508         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
20509         for the declaration of strsep.
20510
20511 2004-10-05  Bruno Haible  <bruno@clisp.org>
20512
20513         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
20514
20515 2004-10-04  Simon Josefsson  <jas@extundo.com>
20516
20517         * modules/memmem: New file.
20518         * tests/test-memmem.c: New file.
20519         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
20520
20521 2004-10-04  Simon Josefsson  <jas@extundo.com>
20522
20523         * m4/memmem.m4: New file.
20524
20525 2004-10-04  Simon Josefsson  <jas@extundo.com>
20526
20527         * lib/memmem.h: New file.
20528         * lib/memmem.c: New file, taken from glibc.
20529
20530 2004-10-04  Simon Josefsson  <jas@extundo.com>
20531
20532         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
20533         '#ifdef USE_UNLOCKED_IO'.
20534
20535 2004-10-04  Simon Josefsson  <jas@extundo.com>
20536
20537         * config/srclist.txt: Add memmem from glibc.
20538
20539 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20540
20541         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
20542
20543         * modules/argmatch, modules/argp, modules/closeout, modules/error,
20544         modules/exclude, modules/getdate, modules/getline,
20545         modules/getndelim2, modules/getpass, modules/getpass-gnu,
20546         modules/getusershell, modules/linebuffer, modules/md5,
20547         modules/mountlist, modules/posixtm, modules/readtokens,
20548         modules/readutmp, modules/regex, modules/sha1,
20549         modules/version-etc, modules/yesno:
20550         Remove dependency on unlocked-io.
20551
20552 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20553
20554         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
20555
20556         * m4/unlocked-io.m4: Add copyright notice.
20557         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
20558
20559 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20560
20561         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
20562         * lib/xmalloc.c (xmemdup): Likewise.
20563         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
20564         XFREE): Remove these long-obsolescent macros.
20565         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
20566         * lib/xstrdup.c: Remove.
20567
20568         * lib/regex.c (re_comp): Cast gettext return value to char *,
20569         Problem reported by Martin Neitzel via Mark D. Baushke.
20570
20571 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20572
20573         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
20574         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
20575         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
20576         regex.c, sha1.c, version-etc.c, yesno.c:
20577         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
20578         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
20579         the includer's responsibility.
20580
20581         Sync from coreutils.
20582
20583         * lib/modechange.c (mode_compile): Don't decrement a pointer that
20584         points to the start of a string, as the C Standard says the
20585         resulting behavior is undefined.
20586
20587         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
20588         simple -> simple_backups, numbered_existing ->
20589         numbered_existing_backups, numbered -> numbered_backups
20590         to avoid shadowing problems.  All uses changed.
20591         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
20592         * lib/backupfile.c (check_extension, numbered_backup):
20593         Rename locals to avoid shadowing 'basename'.
20594         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
20595         once.
20596
20597         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
20598         * lib/.cvsignore: Add getopt.h.
20599
20600 2004-10-04  Bruno Haible  <bruno@clisp.org>
20601
20602         * modules/README: New file.
20603         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
20604         not a module.
20605
20606 2004-10-02  Jim Meyering  <jim@meyering.net>
20607
20608         * lib/dirfd.h, getpagesize.h: Add copyright notice.
20609
20610 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20611
20612         * modules/strsep: New file.
20613
20614 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20615
20616         * m4/strsep.m4: New file.
20617
20618 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20619
20620         * lib/strsep.h: New file.
20621         * lib/strsep.c: New file.
20622
20623 2004-10-01  Simon Josefsson  <jas@extundo.com>
20624
20625         * lib/snprintf.c (snprintf): Handle size==0.
20626
20627 2004-10-01  Simon Josefsson  <jas@extundo.com>
20628             Bruno Haible  <bruno@clisp.org>
20629
20630         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
20631         (snprintf): Declare 'args'.
20632
20633 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
20634
20635         * lib/snprintf.c: Remove comments as to why each header is needed.
20636
20637 2004-10-01  Bruno Haible  <bruno@clisp.org>
20638
20639         * MODULES.html.sh: Add strsep.
20640
20641 2004-09-30  Simon Josefsson  <jas@extundo.com>
20642
20643         * modules/snprintf: New file.
20644
20645 2004-09-30  Simon Josefsson  <jas@extundo.com>
20646
20647         * m4/snprintf.m4: New file.
20648
20649 2004-09-30  Simon Josefsson  <jas@extundo.com>
20650
20651         * lib/snprintf.h, lib/snprintf.c: New files.
20652
20653 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20654
20655         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
20656         (hol_entry_help): Never translate an empty string.
20657         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
20658         * lib/argp.h (OPTION_NO_TRANS): New option.
20659
20660 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20661
20662         * modules/argp (Maintainer): Replace Simon Josefsson
20663         by Sergey Poznyakoff.
20664
20665 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20666
20667         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
20668         changes merged back into glibc.
20669
20670 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20671
20672         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
20673
20674 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
20675
20676         * lib/xvasprintf.c: Include xalloc.h.
20677         (xvasprintf): Use xalloc_die, not xmalloc_die.
20678
20679 2004-09-29  Bruno Haible  <bruno@clisp.org>
20680
20681         * modules/alloca-opt: New file, derived from modules/alloca.
20682         * modules/allocsa: Depend on alloca-opt instead of alloca.
20683         * modules/setenv: Likewise.
20684         * modules/vasnprintf: Likewise.
20685         * MODULES.html.sh: Add alloca-opt.
20686
20687 2004-09-28  Simon Josefsson  <jas@extundo.com>
20688
20689         * gnulib-tool: New parameter --lgpl, to asseert that modules are
20690         LGPL, and to replace license template from GPL to LGPL.
20691
20692 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20693
20694         * modules/dummy: Change license to LGPL.
20695
20696 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20697
20698         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
20699
20700 2004-09-24  Simon Josefsson  <jas@extundo.com>
20701
20702         * modules/minmax (License): Change from GPL to LGPL.
20703
20704 2004-09-23  Simon Josefsson  <jas@extundo.com>
20705
20706         * gnulib-tool (--import): Typo.
20707
20708 2004-09-23  Simon Josefsson  <jas@extundo.com>
20709
20710         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
20711
20712 2004-09-22  Bruno Haible  <bruno@clisp.org>
20713
20714         * modules/*: Add 'License' field.
20715         * gnulib-tool: Accept --extract-license option.
20716         (func_get_license): New function.
20717
20718 2004-09-21  Bruno Haible  <bruno@clisp.org>
20719
20720         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
20721         Reported by Simon Josefsson.
20722
20723 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20724
20725         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
20726         gl_AC_TYPE_LONG_LONG.
20727
20728 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20729
20730         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
20731
20732 2004-09-18  Simon Josefsson  <jas@extundo.com>
20733         and  Paul Eggert  <eggert@cs.ucla.edu>
20734
20735         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
20736         calls with autoreconf.  Define GL_LIB.
20737
20738 2004-09-14  Karl Berry  <karl@gnu.org>
20739
20740         * config/srclist.txt: unsync setenv.c, sigh.
20741
20742 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20743
20744         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
20745         Problem reported by Bruno Haible in:
20746         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
20747
20748 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20749
20750         * config/srclist.txt: Comment out argp-pvh.c.
20751
20752 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
20753
20754         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
20755         in case some system header has #define'd it.  Problem reported by
20756         Soeren D. Schulze in
20757         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
20758
20759 2004-09-09  Karl Berry  <karl@gnu.org>
20760
20761         * regex.[ch]: delete from the root.  These were supposed to be
20762                 synced with emacs cvs, but this has not happened for about
20763                 a year, and anyway nothing else uses emacs regex.[ch].
20764                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
20765                 lib/regex[.ch] is untouched.
20766
20767 2004-09-09  Bruno Haible  <bruno@clisp.org>
20768
20769         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
20770
20771 2004-09-09  Bruno Haible  <bruno@clisp.org>
20772
20773         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
20774         modifications.
20775         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
20776
20777 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20778
20779         * modules/xvasprintf: New file.
20780         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
20781
20782 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20783
20784         * lib/xvasprintf.h: New file.
20785         * lib/xvasprintf.c: New file.
20786         * lib/xasprintf.c: New file.
20787
20788 2004-09-08  Bruno Haible  <bruno@clisp.org>
20789
20790         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
20791
20792 2004-09-08  Bruno Haible  <bruno@clisp.org>
20793
20794         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
20795         length is > INT_MAX.
20796         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
20797         more.
20798
20799 2004-09-08  Bruno Haible  <bruno@clisp.org>
20800
20801         * lib/stdint_.h: New file, taken from GNU clisp.
20802
20803 2004-09-08  Bruno Haible  <bruno@clisp.org>
20804             Oskar Liljeblad  <oskar@osk.mine.nu>
20805
20806         * modules/stdint: New file.
20807         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
20808
20809 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20810
20811         Import from coreutils.
20812         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
20813         strings on unbounded length.  alloca's performance benefits aren't
20814         that important here.
20815         (V_STRDUP): Remove.
20816         (parse_with_separator): New function, with most of the internals
20817         of the old parse_user_spec.  Allow user to omit both user and group,
20818         for compatibility with FreeBSD.
20819         Clone only the user name, not the entire spec.
20820         Do not set *uid, *gid unless entirely successful.
20821         Avoid memory leak in some failing cases.
20822         Fix regression for USER.GROUP reported by Dmitry V. Levin in
20823         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
20824         (parse_user_spec): Rewrite to use parse_with_separator.
20825
20826 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20827
20828         * modules/userspec: Don't depend on alloca.
20829
20830 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20831
20832         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
20833
20834 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
20835
20836         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
20837         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
20838         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
20839
20840 2004-08-16  Simon Josefsson  <jas@extundo.com>
20841
20842         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
20843         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
20844         Add --dry-run for --import.
20845         Let user provided command line parameters override configure.ac
20846         settings.
20847
20848 2004-08-12  Simon Josefsson  <jas@extundo.com>
20849
20850         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
20851         as discussed with Paul Eggert in threads rooted at
20852         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
20853         and
20854         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
20855         Before, the test was empty, and relied on ELIDE_CODE in source
20856         code.)
20857         (gl_PREREQ_GETOPT): New macro.
20858         (gl_GETOPT): Use them.
20859
20860 2004-08-12  Simon Josefsson  <jas@extundo.com>
20861
20862         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
20863         * lib/getopt_.h: Renamed from getopt.h.
20864
20865 2004-08-12  Simon Josefsson  <jas@extundo.com>
20866
20867         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
20868         Change default library name from libfoo to libgnu.
20869         Now, if you have a configure.ac that says:
20870                 gl_SOURCE_BASE(gl)
20871                 gl_M4_BASE(gl/m4)
20872                 gl_MODULES(error getopt etcetera)
20873                 gl_INIT
20874         you can import all you need by running:
20875                 ../gnulib/gnulib-tool --import
20876
20877         * modules/getopt (Files): Rename getopt.h to getopt_.h.
20878         (Makefile.am): Rewrite, use logic from argz.
20879         (Include): Use <getopt.h> instead of "getopt.h".
20880
20881 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20882
20883         * modules/argp (Files): Add m4/unlocked-io.m4.
20884         (Depends-on): Add extensions.
20885
20886 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20887
20888         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
20889         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
20890         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
20891         Check for program_invocation_name, program_invocation_short_name,
20892         flockfile, funlockfile, features.h, _getopt_long_only_r.
20893
20894 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20895
20896         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
20897         its complicated substitute.
20898         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
20899         and program_invocation_name.
20900         (__argp_basename) [!_LIBC]: Remove; the only use was
20901         replaced by its body.
20902         (__argp_short_program_name): Change condition from
20903         !defined __argp_short_program_name to
20904         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
20905         to match argp-namefrob.h.
20906         (__argp_failure): Don't assume strerror_r returns char *.
20907         * lib/argp-parse.c (N_): Define unconditionally.
20908         (argp_default_options): Fill out initializers with 0 to avoid
20909         gcc warnings.
20910
20911 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20912
20913         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
20914         getopt1.c.
20915
20916 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20917
20918         Merge from coreutils.
20919
20920         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
20921
20922         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
20923         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
20924
20925 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20926
20927         Merge from coreutils.
20928
20929         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
20930         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
20931         for Reliant Unix 5.43.
20932
20933         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
20934         (union fooround): Use uintmax_t, not long int.
20935         The rest is a merge from libc:
20936         [defined _LIBC]: Include <shlib-compat.h>.
20937         (_obstack) [defined _LIBC]: Remove after 2.3.4.
20938
20939         * lib/settime.c (settime): Recode to avoid warning with
20940         Sun Forte C 6U2.
20941
20942         * lib/strverscmp.c: Convert to UTF-8.
20943
20944 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20945
20946         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
20947         m4/uintmax_t.m4.
20948
20949 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20950
20951         * modules/xalloc-die: New file.
20952         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
20953
20954         * modules/md5 (Files): Add m4/uint32_t.m4.
20955         * modules/sha1: Renamed from modules/sha.
20956         (Files):
20957         Rename lib/sha.h to lib/sha1.h.
20958         Rename lib/sha.c to lib/sha1.c.
20959         Rename m4/sha.m4 to m4/sha1.m4.
20960         (lib_SOURCES): Likewise.
20961         (configure.ac): Rename gl_SHA to gl_SHA1.
20962         (Include): sha.h -> sha1.h.
20963
20964 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20965
20966         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
20967         * m4/sha1.m4: Renamed from sha.m4.
20968         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
20969
20970 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20971
20972         * lib/obstack.h (obstack_empty_p):
20973         Don't assume that chunk->contents is suitably aligned.
20974         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
20975         Likewise. Problem reported by Benno in
20976         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
20977
20978         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
20979         readable.  This could be improved further but it'd take some work.
20980
20981 2004-08-08  Simon Josefsson  <jas@extundo.com>
20982
20983         * modules/xgethostname (Depends-on): Remove exit and error (not
20984         used).
20985
20986         * modules/getpass-gnu: Add getpass.h.
20987         (Depends-on): Add stdbool.
20988         * modules/getpass: Add getpass.h.
20989
20990 2004-08-08  Simon Josefsson  <jas@extundo.com>
20991
20992         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
20993         Check getpass declaration.
20994
20995 2004-08-08  Simon Josefsson  <jas@extundo.com>
20996
20997         * lib/xgethostname.c: Don't include error.h (not used).
20998
20999         * lib/getpass.h: Add.
21000         * lib/getpass.c: Include getpass.h first.
21001
21002 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
21003
21004         * lib/xalloc-die.c: New file.
21005         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
21006         All uses removed.
21007         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
21008         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
21009         xalloc-die.c.
21010         (_, N_, xalloc_die): Move to xalloc-die.c.
21011         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
21012         so that we needn't mess with xalloc_msg_memory_exhausted.
21013
21014         * lib/sha1.h: Renamed from sha.h.
21015         (SHA1_H): Renamed from _SHA_H.
21016         (sha1_ctx): Renamed from sha_ctx.
21017         (sha1_init_ctx): Renamed from sha_init_ctx.
21018         (sha1_process_block): Renamed from sha_process_block.
21019         (sha1_process_bytes): Renamed from sha_process_bytes.
21020         (sha1_finish_ctx): Renamed from sha_finish_ctx.
21021         (sha1_read_ctx): Renamed from sha_read_ctx.
21022         (sha1_stream): Renamed from sha_stream.
21023         (sha1_buffer): Renamed from sha_buffer.
21024         * lib/sha1.c: Likewise; renamed from sha.c.
21025         Do not include <sys/types.h>.
21026         Include <stddef.h> rather than <stdlib.h>.
21027
21028 2004-08-08  Bruno Haible  <bruno@clisp.org>
21029
21030         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
21031         FILESYSTEM_PREFIX_LEN.
21032         * lib/progreloc.c: Likewise.
21033         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
21034
21035 2004-08-06  Simon Josefsson  <jas@extundo.com>
21036
21037         * modules/progname (Depends-on): Don't depend on stdbool.
21038
21039 2004-08-06  Simon Josefsson  <jas@extundo.com>
21040
21041         * modules/getsubopt: New file.
21042         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21043         getsubopt.
21044
21045 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21046
21047         More merge from coreutils.
21048
21049         * m4/utimens.m4, m4/utimecmp.m4: New files.
21050         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
21051         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
21052         prereq.m4, sha.m4: Import changes from coreutils.
21053
21054 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21055
21056         More merge from coreutils.
21057         * modules/raise, modules/readtokens0, modules/utimens:
21058         * modules/utimecmp, module/xnanosleep: New files.
21059         * modules/strftime: Add lib/strftime.h.
21060         Change include from <time.h> to "strftime.h".
21061         * modules/yesno: Add lib/yesno.h.
21062         * modules/backupfile: Remove lib/addext.c.
21063         * modules/euidaccess: Add stat-macros.h.
21064         * modules/canonicalize, modules/euidaccess,
21065         modules/filemode, modules/lchown, modules/makepath,
21066         modules/rmdir, modules/stat: Likewise.
21067
21068 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21069
21070         Merge from tar.
21071         * lib/argp-help.c (make_hol, hol_append): Don't assume that
21072         SIZE_MAX is a valid preprocessor constant.
21073         (__argp_basename): Change from "#ifndef _LIBC"
21074         to "#ifndef __argp_short_program_name", so that
21075         we don't compile these functions for tar.
21076
21077         More merges from coreutils.
21078         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
21079         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
21080         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
21081         * lib/addext.c: Remove; no longer needed.
21082         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
21083         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
21084         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
21085         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
21086         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
21087         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
21088         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
21089         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
21090         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
21091         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
21092         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
21093         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
21094         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
21095         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
21096         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
21097         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
21098         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
21099         Import changes from coreutils.
21100
21101 2004-08-05  Simon Josefsson  <jas@extundo.com>
21102
21103         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
21104
21105 2004-08-05  Simon Josefsson  <jas@extundo.com>
21106
21107         * m4/getsubopt.m4: New file.
21108
21109 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21110
21111         Merge from coreutils.
21112
21113         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
21114         * m4/getcwd-path-max.m4: New files.
21115
21116         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
21117         FILESYSTEM_PREFIX_LEN ->
21118         FILE_SYSTEM_PREFIX_LEN.
21119         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
21120         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
21121         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
21122         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
21123
21124         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
21125         prerequisite modules now handle the DOS stuff.
21126         Don't check for unistd.h.
21127
21128 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21129
21130         Merge from coreutils.
21131
21132         * lib/.gdb-history: Remove; this doesn't belong here.
21133
21134         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
21135         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
21136         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
21137         * lib/getcwd.c: New files.
21138
21139         * lib/dirname.h: Include <stdbool.h>.
21140         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
21141         for consistency with POSIX terminology.  All uses changed.
21142         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
21143         (strip_trailing_slashes): Use bool for booleans.
21144         * lib/stripslash.c (strip_trailing_slashes): Likewise.
21145
21146         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
21147         sometimes returns a positive errno value even when it succeeds.
21148         (print_errno_message) [!LIBC]: Fall back on strerror if
21149         __strerror_r fails.
21150
21151         * lib/path-concat.c (mempcpy): Don't define if a system header defines
21152         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
21153         (longest_relative_suffix): New function.
21154         (path_concat): Use it.  Assume first argument is not NULL.
21155         Port to DOS.  Omit redundant separators.
21156         Report an error instead of returning NULL.
21157         Use mempcpy instead of memcpy.
21158         (xpath_concat): Remove: not declared or used.
21159
21160         * lib/same.h: Include <stdbool.h>
21161         (same_name): Return bool, not int.
21162         * lib/same.c (same_name): Likewise.
21163         (errno): Don't declare; we assume C89 or better now.
21164
21165         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
21166         if not already defined.
21167
21168         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
21169         * lib/dup-safer.c (errno): Likewise.
21170
21171 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21172
21173         Merge from coreutils.
21174         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
21175         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
21176         * modules/path-concat: Don't depend on strdup.
21177
21178 2004-08-03  Simon Josefsson  <jas@extundo.com>
21179
21180         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
21181         * lib/progname.h: Don't include stdbool.h.
21182
21183 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21184
21185         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
21186         * MODULES.html.sh (func_all_modules): Remove fatal.
21187
21188 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21189
21190         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
21191
21192 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21193
21194         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
21195         working.
21196
21197 2004-08-02  Simon Josefsson  <jas@extundo.com>
21198
21199         * lib/getsubopt.h: New file, with comments from Bruno Haible.
21200         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
21201         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
21202
21203 2004-08-01  Simon Josefsson  <jas@extundo.com>
21204
21205         * lib/xgetdomainname.c: Include stdlib.h, for free().
21206
21207 2004-07-19  Bruno Haible  <bruno@clisp.org>
21208
21209         * MODULES.html.sh (func_all_modules): Add dummy.
21210
21211 2004-07-16  Simon Josefsson  <jas@extundo.com>
21212
21213         * modules/dummy: New file.
21214
21215 2004-07-16  Simon Josefsson  <jas@extundo.com>
21216
21217         * lib/dummy.c: New file.
21218
21219 2004-07-16  Bruno Haible  <bruno@clisp.org>
21220
21221         * lib/backupfile.h: Add extern "C" for C++.
21222         * lib/closeout.h: Likewise.
21223         * lib/copy-file.h: Likewise.
21224         * lib/findprog.h: Likewise.
21225         * lib/full-write.h: Likewise.
21226         * lib/pathname.h: Likewise.
21227         * lib/progname.h: Likewise.
21228         * lib/stpcpy.h: Likewise.
21229         * lib/stpncpy.h: Likewise.
21230         * lib/strcase.h: Likewise.
21231         * lib/strstr.h: Likewise.
21232         * lib/xalloc.h: Likewise.
21233
21234         * lib/mbswidth.h: Add extern "C" for C++.
21235         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
21236
21237 2004-07-13  Robert Millan  <robertmh@gnu.org>
21238
21239         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
21240
21241 2004-07-09  Simon Josefsson  <jas@extundo.com>
21242
21243         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
21244         failed without this.)
21245
21246 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21247
21248         * modules/chown (Files): Add lib/fchown-stub.c, since
21249         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
21250
21251 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21252
21253         * lib/fchown-stub.c: New file.
21254
21255 2004-06-24  Jim Meyering  <jim@meyering.net>
21256
21257         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
21258
21259 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21260
21261         * modules/argz: Omit "#include".
21262
21263         * MODULES.html.sh (func_all_modules): Add calloc, to match
21264         2004-06-01 addition of calloc module.
21265
21266 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21267
21268         * m4/argz.m4: New file, which is autoupdated from libtool.
21269
21270 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21271
21272         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
21273         libtool.
21274
21275 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21276
21277         * config/srclist-update: Don't insist on "USA." before the
21278         close-comment, as libtool omits the period and puts the */ on a
21279         separate line.
21280         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
21281         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
21282
21283 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
21284
21285         * modules/argz: New file.
21286         * MODULES.html.sh (func_all_modules): Add argz.
21287
21288 2004-06-12  Jim Meyering  <jim@meyering.net>
21289         and  Paul Eggert  <eggert@cs.ucla.edu>
21290
21291         * modules/hash (Files): Add lib/xalloc.h.
21292         * modules/pipe (Depends-on): Add wait-process.
21293         * modules/stat (Depends-on): Add xalloc.
21294         * modules/userspec (Files): Add lib/userspec.h.
21295         * modules/xstrto
21296
21297         Upgrade from gettext-0.13.
21298         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
21299         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
21300         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
21301
21302 2004-06-10  Jim Meyering  <jim@meyering.net>
21303
21304         * lib/calloc.c: New file.
21305
21306 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
21307
21308         * lib/getdate.y (yylex): Allow space between sign and number.
21309         Problem reported by Dan Jacobson.
21310
21311 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
21312
21313         Merge from coreutils CVS.
21314
21315         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
21316         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
21317         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
21318         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
21319         xstrtol.m4: Fix copyright date and/or serial number.
21320
21321         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
21322         See if we need an fchown replacement.
21323         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
21324         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
21325         and use the replacement function if we detect either defect.
21326
21327         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
21328         gl_UTIMECMP.
21329
21330 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
21331         and  Jim Meyering  <jim@meyering.net>
21332
21333         Merge from coreutils CVS.
21334
21335         * lib/stat-macros.h: New file, with contents from file-type.h
21336         and coreutils' system.h.
21337         * lib/file-type.c: Include "stat-macros.h".
21338         * lib/file-type.h (file_type): Move all macro definitions to new file,
21339         stat-macros.h.
21340
21341         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
21342         Wrap old code with this conditional.
21343         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
21344         function that does not dereference symlinks.
21345         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
21346
21347         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
21348         dependency problems.
21349         (xreadlink): Accept new arg SIZE, for efficiency.
21350         All decls and uses changed.
21351         * lib/xreadlink.h: Include <stddef.h>, for size_t.
21352
21353         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
21354         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
21355
21356         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
21357         sysexits.h.
21358
21359 2004-06-01  Jim Meyering  <jim@meyering.net>
21360
21361         * m4/calloc.m4: New file.
21362
21363 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
21364
21365         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
21366         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
21367         Also, fix a typo in a diagnostic.
21368
21369 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
21370
21371         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
21372         or AC_FUNC_REALLOC.
21373
21374 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
21375
21376         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
21377         macros to be defined.
21378         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
21379         the allocator returns NULL because the requested size is zero.
21380
21381 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
21382
21383         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
21384         var.  Add comment explaining why libc still defines it.  This
21385         merges the following patch from glibc:
21386         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
21387
21388 2004-05-20  Andreas Schwab  <schwab@suse.de>
21389
21390         * m4/free.m4: Replace free if it not known to work, not the other
21391         way round.
21392
21393 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21394
21395         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
21396         present in glibc since revision 1.1 of this file.
21397         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
21398         obstack_alignment_mask, obstack_alloc, obstack_base,
21399         obstack_blank, obstack_blank_fast, obstack_chunk_size,
21400         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
21401         obstack_grow0, obstack_init, obstack_int_grow,
21402         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
21403         obstack_next_free, obstack_object_size, obstack_ptr_grow,
21404         obstack_ptr_grow_fast, obstack_room): Remove declarations of
21405         nonexistent functions.
21406
21407 2004-05-18  Karl Berry  <karl@gnu.org>
21408
21409         * config/srclist.txt: break link for vasnprintf.c.
21410
21411 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21412
21413         Port obstack to the AS/400, where pointers are 16 bytes wide and
21414         you cannot cast an integer to a valid pointer.  This patch is
21415         currently waiting to be integrated into glibc; see
21416         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
21417
21418         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
21419         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
21420         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
21421         (struct obstack): temp member is now a union of a pointer and
21422         an integer, instead of an integer.  All integer uses changed.
21423         This does not affect the physical layout of struct obstack,
21424         except on hosts (like the AS/400) where the size or alignment of
21425         void * is greater than that of ptrdiff_t.
21426         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
21427         __STDC__)]: Store temporary in pointer member of union, not
21428         integer member.
21429         * lib/obstack.c: Include <stddef.h>, for offsetof.
21430         (struct fooalign): Remove; it doesn't need a name.
21431         (union fooround): Change double to long double, and add void *.
21432         (DEFAULT_ALIGNMENT): Use offsetof to compute.
21433         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
21434         not a macro.  Hence the values are always int; so remove all
21435         casts-to-int in uses.
21436
21437 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21438
21439         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
21440         we can get this patch merged into glibc.
21441
21442 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21443             Paul Eggert  <eggert@cs.ucla.edu>
21444
21445         * m4/argp: Depend on alloca.
21446
21447 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21448             Paul Eggert  <eggert@cs.ucla.edu>
21449
21450         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
21451         freecoding.
21452
21453 2004-05-17  Bruno Haible  <bruno@clisp.org>
21454
21455         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
21456         precision that consists of a '.' followed by an empty digit string.
21457         Patch by Tor Lillqvist <tml@iki.fi>.
21458
21459 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21460
21461         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
21462         for backward compatibility with older code.  We need our own
21463         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
21464         it under some other name, and our alloca.h will define it.
21465
21466 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21467             Derek Price  <derek@ximbiot.com>
21468
21469         * lib/alloca.c: Include <alloca.h>, to get our interface.
21470         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
21471         include <alloca.h> first.  Use C89 prototype for alloca; this
21472         requires including <stddef.h> for size_t.  Use extern "C" if C++.
21473         Use #elif for simplicity, since we can assume C89 now.
21474         Don't try to source the system alloca.h since it will not be found
21475         and to prevent recursively including its replacement.
21476         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
21477         * lib/regex.c: Likewise.
21478
21479 2004-05-16  Derek Price  <derek@ximbiot.com>
21480             Paul Eggert  <eggert@cs.ucla.edu>
21481
21482         getline cleanup.  This changes the getndelim2 API: both order of
21483         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
21484         no delimiter).
21485
21486         * lib/getline.c: Don't include stddef.h or stdio.h, since our
21487         interface does that.
21488         (getline): Always use getdelim, so that we don't have two
21489         copies of this code.
21490         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
21491         if available.
21492         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
21493         (GETNDELIM2_MAXIMUM): New macro.
21494         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
21495         instead of the old practice of delim2==0.  All callers changed.
21496         Return -1 on overflow, instead of returning junk.
21497         Do not set *linesize unless allocation succeeds.
21498         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
21499         that we include sys/types.h.
21500         * lib/getnline.h: Likewise.
21501         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
21502         (getndelim2): Reorder arguments.
21503         * lib/getnline.c (getnline, getndelim):
21504         Don't discard the NMAX argument.
21505         (getnline): Invoke getndelim, to avoid code duplication.
21506         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
21507         of (size_t) -1 by callers of the getnline family.
21508
21509 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21510
21511         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
21512         Check for gettimeofday.
21513         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
21514         Check for settimeofday, stime.
21515
21516 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21517
21518         * lib/nanosleep.c (suspended): Change its type from int to
21519         sig_atomic_t volatile.
21520         (first_call): Make it private to rpl_nanosleep, and have it
21521         be zero initially as that's a bit faster.
21522         (my_usleep): Round up fractional times instead of truncating them,
21523         as this is the usual meaning for 'sleep'.
21524
21525         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
21526         doesn't work.
21527         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
21528         (ENOSYS): Define if not defined.
21529         (settime): Fall back on stime if it exists and settimeofday fails.
21530         But don't bother with fallbacks if a method fails with errno == EPERM.
21531
21532 2004-05-11  Jim Meyering  <jim@meyering.net>
21533
21534         Prior to this change, the save_cwd caller required read access to the
21535         current directory on most systems (ones with the fchdir function).
21536
21537         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
21538         fails, try write-only, and finally, resort to using xgetcwd.
21539
21540 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
21541
21542         * lib/obstack.c, obstack.h: Import changes from libc.
21543
21544 2004-04-28  Bruno Haible  <bruno@clisp.org>
21545
21546         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
21547         also implicitly appends .exe to executables.
21548         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
21549         accepts Windows pathnames.
21550         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21551         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21552         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21553         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21554         Reported by Derek Robert Price <derek@ximbiot.com>.
21555
21556 2004-04-21  Karl Berry  <karl@gnu.org>
21557
21558         * config/srclist.txt (localcharset.c): break sync.
21559
21560 2004-04-20  Paul Eggert  <eggert@twinsun.com>
21561
21562         * m4/host-os.m4: Add a copyright notice.
21563
21564 2004-04-20  Jim Meyering  <jim@meyering.net>
21565
21566         Change UTILS_ to gl_ in AC_DEFINE'd names.
21567         Change utils_- and jm_-prefixed variables, too.
21568         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
21569         UTILS_FUNC_MKDIR_TRAILING_SLASH.
21570         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
21571
21572         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
21573         Don't emit trailing blanks.
21574         Also rename jm_-prefixed variables to have gl_ prefix.
21575
21576         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
21577         Also rename jm_-prefixed variables to have gl_ prefix.
21578
21579         * m4/jm-macros.m4: Reflect the renamings.
21580         * m4/prereq.m4: Likewise.
21581
21582 2004-04-20  Jim Meyering  <jim@meyering.net>
21583
21584         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
21585         memory.
21586
21587 2004-04-20  Jim Meyering  <jim@meyering.net>
21588             Bruno Haible  <bruno@clisp.org>
21589
21590         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
21591         memory when realloc fails.
21592
21593 2004-04-19  Jim Meyering  <jim@meyering.net>
21594
21595         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
21596         now that readutmp.c may call `free (0)'.
21597
21598 2004-04-19  Bruno Haible  <bruno@clisp.org>
21599
21600         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
21601         * m4/inttypes_h.m4: Likewise.
21602         * m4/stdint_h.m4: Likewise.
21603         * m4/intmax_t.m4: Likewise.
21604         * m4/uintmax_t.m4: Likewise.
21605
21606 2004-04-18  Jim Meyering  <jim@meyering.net>
21607
21608         * m4/prereq.m4: Don't forbid jm_ prefix.
21609
21610         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
21611         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
21612         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
21613         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
21614         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
21615         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
21616         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
21617         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
21618         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
21619         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
21620         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
21621         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
21622         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
21623         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
21624         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
21625         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
21626         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
21627         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
21628         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
21629
21630 2004-04-18  Jim Meyering  <jim@meyering.net>
21631
21632         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
21633         failure, don't leak memory and do call END_UTMP_ENT.
21634
21635 2004-04-16  Jim Meyering  <jim@meyering.net>
21636
21637         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
21638         coreutils' stat program.
21639         (gl_PREREQ): Don't require jm_PREREQ_STAT.
21640
21641 2004-04-11  Paul Eggert  <eggert@twinsun.com>
21642
21643         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
21644         C89.
21645         (CHAR_BIT): Remove, since we assume C89.
21646         Include <stdint.h> if available, as per current Autoconf CVS advice.
21647
21648 2004-03-31  Jim Meyering  <jim@meyering.net>
21649
21650         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
21651         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
21652         * m4/xalloc.m4: Likewise.
21653
21654 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21655
21656         Merge from coreutils.
21657
21658         * m4/inttostr.m4: New file.
21659         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
21660         Require AM_STDBOOL_H and gl_TIMESPEC instead.
21661         Require gl_CLOCK_TIME.
21662         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
21663
21664 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21665
21666         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
21667         not bool, to be more consistent with Unix conventions.
21668         Suggested by Bruno Haible.
21669
21670         Merge from coreutils.
21671
21672         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
21673         * lib/umaxtostr.c: New files.
21674
21675         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
21676         the usual <time.h> dance.
21677         (get_date): Change signature to support fractional time stamps.
21678         All callers changed.
21679         * lib/getdate.y: Include "getdate.h" first, as we can now
21680         assume C89 and don't need to worry about 'const'.
21681         Similarly, include "unlocked-io.h" near start, not in middle.
21682         Include <limits.h>.
21683         (textint.value): Use long int rather than int.
21684         (textint.digits): Use size_t rather than int.
21685         (BILLION, LOG10_BILLION): New constants.
21686         (parser_control): New member rel_ns.  Members day_ordinal,
21687         time_zone, month, day, hour, minutes, rel_year, rel_month,
21688         rel_day, rel_hour, rel_minutes, rel_seconds
21689         are now long int, not int.  Member seconds is now struct timespec,
21690         not int.  New member timespec_seen.  Members dates_seen, days_seen,
21691         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
21692         not int.
21693         (%union.intval): Now long int, not int.
21694         New member timespec.
21695         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
21696         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
21697         (spec): Now is a timespec or an item list.
21698         (timespec, items): New nonterminals.
21699         (time, rel, relunit, number, get_date):
21700         Add support for fractional seconds.
21701         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
21702         (gmtime, localtime, mktime): Remove decls; not needed with C89.
21703         (to_hour): First arg is now long int, not int.
21704         (to_year): Returns long int, not int.
21705         Don't treat year -70 like 70.
21706         (tm_diff): Returns long int, not int.
21707         (lookup_word): Use bool instead of int when appropriate.
21708         (yylex): Use size_t for count, not int.
21709         Detect overflow when parsing large integer constants.
21710         Add support for fractions.
21711         (get_date): Make pointers 'const' if possible.
21712         Use more-portable code to detect integer overflow.
21713         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
21714         Don't use ctime; it's not reliable if the year has >4 digits.
21715
21716         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
21717         This is for compatibility with BSD.
21718
21719         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
21720         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
21721         From coreutils' system.h.
21722
21723         * lib/userspec.c: Don't include "posixver.h".
21724         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
21725         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
21726         compatible extension.  Simplify code by removing a boolean int
21727         that was always nonzero if a string was nonnull.
21728
21729 2004-03-30  Jim Meyering  <jim@meyering.net>
21730
21731         Merge from coreutils.
21732
21733         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
21734         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
21735         on some systems one must include <grp.h> before it.
21736         Reported by Christian Krackowizer.
21737
21738 2004-03-30  Jim Meyering  <jim@meyering.net>
21739
21740         Merge from coreutils.
21741
21742         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
21743
21744         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
21745         an empty input stream.
21746
21747         * lib/readtokens.c: Include <stdbool.h>.
21748         (readtoken): Use `size_t' rather than int/long.
21749         All callers adjusted.
21750         Use `bool' rather than `int' where appropriate.
21751         Use memset rather than an explicit loop.
21752         Use x2nrealloc rather than xrealloc.
21753         Allow the use of `\0' as a delimiter.
21754         (readtokens): Likewise.
21755         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
21756
21757 2004-03-30  Jim Meyering  <jim@meyering.net>
21758
21759         * m4/realloc.m4: Remove file, since now it does no more than
21760         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
21761         the `configure.ac' section of module/realloc.
21762         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
21763
21764 2004-03-30  Bruno Haible  <bruno@clisp.org>
21765
21766         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
21767         nonnull.
21768
21769 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21770
21771         Merge changes to getloadavg.c from coreutils and Emacs.
21772
21773         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
21774         Define to an expression, not to the empty string.
21775         Include cloexec.h and xalloc.h.
21776         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
21777         Use set_cloexec_flag rather than rolling our own.
21778         * lib/cloexec.c, lib/cloexec.h: New files.
21779
21780 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21781
21782         * m4/cloexec.m4: New file.
21783
21784 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21785
21786         * lib/getopt.h: Sync with libc CVS.
21787
21788 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21789             Bruno Haible  <bruno@clisp.org>
21790
21791         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
21792         mbswidth.
21793
21794 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21795             Bruno Haible  <bruno@clisp.org>
21796
21797         * lib/mbswidth.h: Include <wchar.h> only if
21798         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
21799         <wchar.h>.
21800         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
21801
21802 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21803
21804         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
21805         Sync with libc CVS.
21806         * lib/getopt_int.h: New file, also synced from libc.
21807
21808 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21809
21810         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
21811         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
21812         Bring back getopt.c, getopt.h, getopt1.c.
21813
21814 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21815
21816         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
21817         All uses changed.  Check for sa_sigaction member; this fixes
21818         a bug first reported by Jason Andrade in
21819         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21820
21821 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21822
21823         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
21824         '#if' expressions.  Unlike the code it replaces, it does not
21825         depend on (defined _SC_PAGESIZE).  However, it does depend on
21826         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
21827         first reported by Jason Andrade in
21828         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21829
21830 2004-02-25  Simon Josefsson  <jas@extundo.com>
21831
21832         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
21833
21834 2004-02-25  Simon Josefsson  <jas@extundo.com>
21835
21836         * lib/strdup.h: New file.
21837         * lib/strdup.c: Include it.
21838         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
21839         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
21840
21841 2004-02-23  Karl Berry  <karl@gnu.org>
21842
21843         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
21844         (from fencepost.gnu.org:/gd/gnuorg).
21845
21846 2004-02-23  Karl Berry  <karl@gnu.org>
21847
21848         * config/srclistvars.sh (GNUORG) [karl]: redefine.
21849         * config/srclist.txt: add maintain/standards documents.
21850
21851 2004-02-18  Bruno Haible  <bruno@clisp.org>
21852
21853         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
21854         Reported by Derek Robert Price <derek@ximbiot.com>.
21855
21856 2004-02-16  Karl Berry  <karl@gnu.org>
21857
21858         * config/mkinstalldirs, install-sh: update from automake.
21859
21860 2004-02-06  Karl Berry  <karl@gnu.org>
21861
21862         * m4/po.m4: update from gettext 0.14.1.
21863
21864 2004-02-06  Karl Berry  <karl@gnu.org>
21865
21866         * lib/config.charset: update from gettext 0.14.1.
21867
21868 2004-02-05  Paul Eggert  <eggert@twinsun.com>
21869
21870         Add comments and code, prompted by suggestions from Bruno Haible
21871         for sh-quote.
21872         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
21873         describing the enum quoting_style values.
21874         * lib/quotearg.c (quotearg_alloc): New function.
21875         (quotearg_buffer_restyled): Treat lone { and } as special.
21876         Treat = as special.  Work around bug with older shells
21877         that "see" a '\' that is really the 2nd byte of a multibyte char.
21878         Quote empty string with shell_quoting_style.
21879
21880 2004-02-03  Bruno Haible  <bruno@clisp.org>
21881
21882         * m4/pipe.m4: New file, from GNU gettext.
21883
21884 2004-02-03  Bruno Haible  <bruno@clisp.org>
21885
21886         * lib/pipe.h: New file, from GNU gettext.
21887         * lib/pipe.c: New file, from GNU gettext.
21888
21889 2004-01-27  Bruno Haible  <bruno@clisp.org>
21890
21891         * m4/execute.m4: New file, from GNU gettext.
21892
21893 2004-01-27  Bruno Haible  <bruno@clisp.org>
21894
21895         * lib/execute.h: New file, from GNU gettext.
21896         * lib/execute.c: New file, from GNU gettext.
21897         * lib/w32spawn.h: New file, from GNU gettext.
21898
21899 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21900
21901         Merge from diffutils.
21902
21903         * lib/file-type.c (file_type): Add typed memory objects.
21904         * lib/file-type.h (S_TYPEISTMO): New macro.
21905
21906         * lib/c-stack.h (c_stack_action): Remove argv argument.
21907         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
21908         (die): Don't calculate message unless segv_action returns.
21909         (get_stack_location, min_address_from_argv, max_address_from_argv,
21910         volatile stack_base, volatile_stack_size): Remove.
21911         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
21912         that every segmentation violation is a stack overflow.  (Ouch!)
21913         See Debian bug 136249 (still outstanding) for more info about why
21914         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
21915
21916 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21917
21918         Exit-status fix from coreutils.
21919
21920         Use exit_failure consistently in place of EXIT_FAILURE,
21921         so that program exit statuses are consistent on failure.
21922
21923         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
21924         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
21925         * lib/argmatch.h: Comment fix to match the above.
21926         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
21927         Now a macro referring to exit_failure, instead of a separate
21928         variable.  Include "exitfail.h" to get it.
21929         * lib/xstrtol.h: Include "exitfail.h".
21930         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
21931
21932         * lib/long-options.c (parse_long_options): Use prototype
21933         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
21934         for clarity.
21935
21936 2004-01-21  Jim Meyering  <jim@meyering.net>
21937
21938         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
21939         so as not to conflict with a different-sized __mktime_internal
21940         function in GNU libc.
21941         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
21942         Problem building statically-linked `ls' reported by Michael Brunnbauer.
21943
21944 2004-01-20  Karl Berry  <karl@gnu.org>
21945
21946         * config/config.guess: update from config.
21947
21948         * config/srclistvars.sh: GNUWWWLICENSES for karl.
21949
21950 2004-01-20  Bruno Haible  <bruno@clisp.org>
21951
21952         Safer stack allocation.
21953         * lib/setenv.c: Include allocsa.h.
21954         (alloca): Remove fallback definition.
21955         (freea): Remove macro.
21956         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
21957         instead of freea.
21958
21959 2004-01-20  Bruno Haible  <bruno@clisp.org>
21960
21961         * m4/eealloc.m4: New file, from GNU gettext.
21962
21963 2004-01-20  Bruno Haible  <bruno@clisp.org>
21964
21965         * m4/allocsa.m4: New file, from GNU gettext.
21966
21967 2004-01-20  Bruno Haible  <bruno@clisp.org>
21968
21969         * lib/xallocsa.h: New file, from GNU gettext.
21970         * lib/xallocsa.c: New file, from GNU gettext.
21971
21972 2004-01-20  Bruno Haible  <bruno@clisp.org>
21973
21974         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
21975
21976 2004-01-20  Bruno Haible  <bruno@clisp.org>
21977
21978         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
21979         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
21980         specially.
21981
21982 2004-01-20  Bruno Haible  <bruno@clisp.org>
21983
21984         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
21985         patch.
21986
21987 2004-01-20  Bruno Haible  <bruno@clisp.org>
21988
21989         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
21990
21991 2004-01-20  Bruno Haible  <bruno@clisp.org>
21992
21993         * lib/eealloc.h: New file.
21994
21995 2004-01-20  Bruno Haible  <bruno@clisp.org>
21996
21997         * lib/binary-io.h: Avoid warnings on Cygwin.
21998
21999 2004-01-20  Bruno Haible  <bruno@clisp.org>
22000
22001         * lib/allocsa.h: New file, from GNU gettext.
22002         * lib/allocsa.c: New file, from GNU gettext.
22003
22004 2004-01-18  Karl Berry  <karl@gnu.org>
22005
22006         * doc/gpl.texi, doc/lgpl.texi: new files.
22007
22008 2004-01-18  Karl Berry  <karl@gnu.org>
22009
22010         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
22011         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
22012
22013 2004-01-15  Paul Eggert  <eggert@twinsun.com>
22014
22015         Merge from coreutils.
22016
22017         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
22018         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
22019         (gl_DEFAULT_POSIX2_VERSION): Move
22020         the documentation from 'configure' into 'config.hin',
22021         so that 'configure --help' isn't burdened by it and
22022         we don't have to worry about its formatting there.
22023         Reword the documentation so that it's more succinct
22024         and can be run together into a single paragraph.
22025         * m4/same.m4 (gl_SAME): Check for pathconf.
22026
22027 2004-01-15  Paul Eggert  <eggert@twinsun.com>
22028
22029         Merge from coreutils.
22030
22031         * lib/posixver.c: Include posixver.h.
22032
22033         * lib/same.c: Include <stdbool.h>, <limits.h>.
22034         (_POSIX_NAME_MAX): Define if not defined.
22035         (MIN): New macro.
22036         (same_name): If file names are silently truncated, report
22037         that the file names are the same if they are the same after
22038         the silent truncation.
22039
22040         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
22041         conversion function.
22042         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
22043         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
22044         longer needed.
22045
22046 2004-01-15  Jim Meyering  <jim@meyering.net>
22047
22048         Merge from coreutils.
22049
22050         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
22051         if no library is required.
22052         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
22053         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
22054         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
22055         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
22056         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
22057         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
22058         value, $ac_cv_search_crypt, if it's "none required".
22059         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
22060         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
22061         not gl_FUNC_GETLOADAVG.
22062         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
22063         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
22064
22065 2004-01-15  Jim Meyering  <jim@meyering.net>
22066
22067         Merge from coreutils.
22068
22069         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
22070         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
22071         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
22072
22073         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
22074         optional configure-time default.
22075
22076         * lib/version-etc.c (version_etc_copyright): Update copyright date.
22077
22078         * lib/xreadlink.c (xreadlink): Correct outdated comment.
22079
22080 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
22081
22082         Merge from coreutils.
22083
22084         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
22085         value, $ac_cv_search_nanosleep, if it's "none required".
22086
22087 2004-01-14  Paul Eggert  <eggert@twinsun.com>
22088
22089         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
22090         with like-named macro in fnmatch.c.
22091         (EXT): Use an internal constant instead.
22092
22093         Merge fnmatch patches from glibc.
22094         * lib/fnmatch.c (mbsinit): Remove define.
22095         Add libc_hidden_ver (__fnmatch, fnmatch).
22096         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
22097         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
22098
22099 2004-01-14  Karl Berry  <karl@gnu.org>
22100
22101         * config/install-sh: update from automake.
22102
22103 2004-01-13  Karl Berry  <karl@gnu.org>
22104
22105         * config/install-sh: update from automake.
22106
22107 2004-01-09  Karl Berry  <karl@gnu.org>
22108
22109         * config/install-sh: update from automake.
22110
22111 2004-01-05  Karl Berry  <karl@gnu.org>
22112
22113         * config/config.{sub,guess}: update from config.
22114
22115 2003-12-31  Karl Berry  <karl@gnu.org>
22116
22117         * config/depcomp: update from automake.
22118
22119 2003-12-14  Karl Berry  <karl@gnu.org>
22120
22121         * lib/config.charset: update from gettext-runtime.
22122
22123 2003-12-03  Paul Eggert  <eggert@twinsun.com>
22124
22125         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
22126         Bug reported by Alfred M. Szmidt.
22127
22128 2003-12-03  Bruno Haible  <bruno@clisp.org>
22129
22130         * m4/gettext.m4: Upgrade from gettext-0.13.
22131         * m4/po.m4: Upgrade from gettext-0.13.
22132         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
22133         * m4/intmax.m4: New file, from gettext-0.13.
22134         * m4/printf-posix.m4: New file, from gettext-0.13.
22135
22136 2003-11-29  Karl Berry  <karl@gnu.org>
22137
22138         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
22139
22140 2003-11-25  Paul Eggert  <eggert@twinsun.com>
22141             Bruno Haible  <bruno@clisp.org>
22142
22143         * lib/printf-parse.h: Don't include sys/types.h.
22144         (ARG_NONE): New macro.
22145         (char_directive): Change type of *arg_index fields to size_t.
22146         * lib/printf-parse.c: Don't include sys/types.h.
22147         (SSIZE_MAX): Remove macro.
22148         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
22149         Remove unnecessary overflow check.
22150         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
22151         fields.
22152
22153 2003-11-25  Bruno Haible  <bruno@clisp.org>
22154
22155         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
22156
22157 2003-11-25  Bruno Haible  <bruno@clisp.org>
22158
22159         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
22160         gt_TYPE_SSIZE_T.
22161
22162 2003-11-24  Paul Eggert  <eggert@twinsun.com>
22163
22164         * modules/alloca: Remove dependency on xalloc.
22165
22166 2003-11-24  Paul Eggert  <eggert@twinsun.com>
22167
22168         * lib/alloca.c: Remove dependency on xalloc module.
22169         (xalloc_die): Remove.
22170         (memory_full) [!defined emacs]: New macro.
22171         [!defined emacs]: Don't include xalloc.h.
22172         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
22173         address arithmetic overflows.  Change datatypes a bit to avoid
22174         unnecessary casts.
22175
22176 2003-11-22  Jim Meyering  <jim@meyering.net>
22177
22178         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
22179         s/size/size_t/.
22180
22181 2003-11-21  Karl Berry  <karl@gnu.org>
22182
22183         * config/config.{sub,guess}: update from config.
22184
22185 2003-11-18  Karl Berry  <karl@gnu.org>
22186
22187         * config/config.{sub,guess}: update from config.
22188
22189         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
22190
22191 2003-11-17  Paul Eggert  <eggert@twinsun.com>
22192
22193         * README: Mention that S+T cannot overflow if S is the size of
22194         an existing object and T is sufficiently small.
22195
22196 2003-11-17  Jim Meyering  <jim@meyering.net>
22197
22198         On systems without utime and without a utimes function capable of
22199         dealing with a NULL struct utimbuf* argument, this utime replacement
22200         could -- in unusual circumstances -- leak a file descriptor.
22201         * lib/utime.c: Include <unistd.h> and <errno.h>.
22202         (utime_null): Be sure to close `fd' and to preserve errno.
22203         Reported by Geoff Collyer via Arnold Robbins.
22204
22205 2003-11-17  Bruno Haible  <bruno@clisp.org>
22206
22207         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
22208         (Depends-on): Add xsize.
22209
22210 2003-11-17  Bruno Haible  <bruno@clisp.org>
22211
22212         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
22213
22214 2003-11-17  Bruno Haible  <bruno@clisp.org>
22215
22216         * lib/vasnprintf.c (alloca): Remove fallback definition.
22217         (freea): Remove definition.
22218         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
22219         Reported by Paul Eggert.
22220
22221 2003-11-16  Paul Eggert  <eggert@twinsun.com>
22222             Bruno Haible  <bruno@clisp.org>
22223
22224         Protect against address arithmetic overflow.
22225         * lib/printf-args.h: Include stddef.h.
22226         (arguments): Change type of field 'count' to size_t.
22227         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
22228         'unsigned int' where appropriate.
22229         * lib/printf-parse.h: Include sys/types.h.
22230         (char_directive): Change type of *arg_index fields to ssize_t.
22231         (char_directives): Change type of fields 'count', max_*_length to
22232         size_t.
22233         * lib/printf-parse.c: Include sys/types.h and xsize.h.
22234         (SSIZE_MAX): Define fallback value.
22235         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
22236         instead of 'int' where appropriate. Check a_allocated, d_allocated
22237         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
22238         * lib/vasnprintf.c: Include xsize.h.
22239         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
22240         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
22241         overflow. Avoid wraparound when converting a width or precision from
22242         decimal to binary.
22243
22244 2003-11-16  Bruno Haible  <bruno@clisp.org>
22245
22246         Update from GNU gettext.
22247         * lib/printf-parse.c: Generalize to it can be compiled for wide
22248         strings.
22249         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
22250         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
22251         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
22252         SNPRINTF): New macros.
22253         Don't include <alloca.h> if the file is used inside libintl.
22254         (local_wcslen): New function, for Solaris 2.5.1.
22255         (VASNPRINTF): Use it instead of wcslen.
22256
22257 2003-11-16  Bruno Haible  <bruno@clisp.org>
22258
22259         * lib/xsize.h (xmax): New function.
22260         (xsum, xsum3, xsum4): Declare as "pure" functions.
22261
22262 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22263
22264         * modules/xalloc (Files): Undo latest change, since xalloc.h
22265         no longer needs SIZE_MAX or PTRDIFF_MAX.
22266
22267 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22268
22269         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
22270         gl_PTRDIFF_MAX.
22271
22272 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22273
22274         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
22275         "return", to pacify some unknown compiler.  Problem reported
22276         by Joerg Schilling.
22277
22278 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22279
22280         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
22281         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
22282         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
22283         heuristic is just as accurate as far as we know, and it removes a
22284         dependency on size_max.m4 and ptrdiff_max.m4.
22285
22286 2003-11-11  Bruno Haible  <bruno@clisp.org>
22287
22288         * modules/xsize (Files): Add m4/size_max.m4.
22289         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
22290
22291 2003-11-11  Bruno Haible  <bruno@clisp.org>
22292
22293         * m4/size_max.m4: New file.
22294         * m4/ptrdiff_max.m4: New file.
22295         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
22296         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
22297         (gl_XALLOC): Invoke it.
22298
22299 2003-11-11  Bruno Haible  <bruno@clisp.org>
22300
22301         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
22302         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
22303         defined.
22304
22305 2003-11-10  Paul Eggert  <eggert@twinsun.com>
22306
22307         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
22308         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
22309         rejected some allocations of exactly SIZE_MAX - 2 bytes.
22310         From Bruno Haible.
22311         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
22312         not (size_t) -1, since it's defined here.
22313
22314 2003-11-09  Karl Berry  <karl@gnu.org>
22315
22316         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
22317
22318 2003-11-06  Paul Eggert  <eggert@twinsun.com>
22319
22320         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
22321         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
22322         Reject sizes of exactly SIZE_MAX bytes.
22323         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
22324         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
22325
22326 2003-11-05  Bruno Haible  <bruno@clisp.org>
22327
22328         * lib/xsize.h: Include limits.h, to avoid a possible collision with
22329         SIZE_MAX defined in <limits.h> on Solaris.
22330
22331 2003-11-04  Jim Meyering  <jim@meyering.net>
22332
22333         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
22334         variable names, rather than @VAR@.
22335         * modules/poll: Likewise.
22336
22337 2003-11-04  Bruno Haible  <bruno@clisp.org>
22338
22339         * modules/xsize: New file.
22340         * modules/linebreak: Depend on xsize.
22341         * MODULES.html.sh (func_all_modules): Add xsize.
22342
22343 2003-11-04  Bruno Haible  <bruno@clisp.org>
22344
22345         * m4/xsize.m4: New file.
22346
22347 2003-11-04  Bruno Haible  <bruno@clisp.org>
22348
22349         * lib/xsize.h: New file.
22350         * lib/linebreak.c: Include xsize.h.
22351         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
22352         argument for overflow.
22353         Suggested by Paul Eggert.
22354
22355 2003-11-03  Karl Berry  <karl@gnu.org>
22356
22357         * config/config.{guess,sub}: update from config.
22358
22359 2003-11-03  Jim Meyering  <jim@meyering.net>
22360
22361         * modules/userspec (lib_SOURCES): Add userspec.h.
22362         (Include): Add "userspec.h".
22363         Improve description.
22364
22365 2003-11-03  Jim Meyering  <jim@meyering.net>
22366
22367         * lib/userspec.c: Include "userspec.h".
22368         * lib/userspec.h: New file.
22369
22370 2003-11-03  Bruno Haible  <bruno@clisp.org>
22371
22372         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
22373
22374 2003-11-03  Bruno Haible  <bruno@clisp.org>
22375
22376         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
22377         available, to avoid (extremely rare) race condition.
22378         Suggested by Paul Eggert.
22379
22380 2003-11-02  Karl Berry  <karl@gnu.org>
22381
22382         * config/srclist.txt (vasprintf.c): sync broken, sigh.
22383
22384 2003-10-31  Paul Eggert  <eggert@twinsun.com>
22385
22386         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
22387         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
22388         (read_filesystem_list): Set and use me_type_malloced.
22389         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
22390         whatever the type happens to be), for brevity and consistency.
22391         Check for size calculation overflow on Alphas running OSF/1.
22392
22393 2003-10-31  Jim Meyering  <jim@meyering.net>
22394
22395         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
22396
22397         * lib/linebuffer.c: Include <string.h> for declaration of memset.
22398
22399 2003-10-30  Paul Eggert  <eggert@twinsun.com>
22400             Bruno Haible  <bruno@clisp.org>
22401
22402         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
22403         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
22404
22405 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
22406
22407         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
22408         netbsd*-gnu*.  Suggested by Robert Millan.
22409
22410 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22411
22412         * modules/group-member: Depend on stdbool.
22413
22414 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22415
22416         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
22417
22418 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22419
22420         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
22421         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
22422         after the 'gnu' in these cases.  This fixes some bugs in the
22423         previous change, and is based on suggestions by Robert Millan.
22424
22425 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22426
22427         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
22428         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
22429         no longer needed.
22430         * lib/quotearg.c (quotearg_n_options): Use it.
22431         * lib/group-member.c: Include <stdbool.h>.
22432         (free_group_info): Arg is now const *; don't free arg.
22433         (get_group_info): Now returns bool and accepts struct group_info *,
22434         rather than returning a malloc'ed struct group_info *.
22435         All uses changed.  Check for overflow in internal size calculation.
22436
22437         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
22438         rather than xmalloc/xrealloc.
22439         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
22440         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
22441         conformance bug: the old code used a pointer after freeing the
22442         storage that it addressed.
22443         * lib/hash.c (hash_initialize): Simplify the code by using
22444         xalloc_oversized rather than doing it by hand.
22445         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
22446         the buffer preserved.  Use free and xmalloc instead.
22447         * lib/quotearg.c (quotearg_n_options): Likewise.
22448         Use a simpler test for size overflow.  Don't use xalloc_oversized
22449         because unsigned int might be wider than size_t (!); this suggests
22450         that we should switch from unsigned int to size_t for slot numbers.
22451
22452 2003-10-28  Paul Eggert  <eggert@twinsun.com>
22453
22454         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
22455         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
22456         NetBSD kernels.  Requested by Richard Stallman.
22457
22458 2003-10-27  Paul Eggert  <eggert@twinsun.com>
22459
22460         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
22461         to allocate the returned structure.  Do not allocate a subarray,
22462         as x2nrealloc will do that.
22463         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
22464         instead of xnrealloc.
22465         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
22466
22467 2003-10-27  Bruno Haible  <bruno@clisp.org>
22468
22469         * lib/stdbool_.h: Better support for BeOS.
22470
22471 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22472
22473         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
22474         now uses inline.
22475
22476 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22477
22478         * lib/xalloc.h (xalloc_oversized): New static inline function, for
22479         callers that want to do their own size-overflow checking.  Include
22480         <stdbool.h>, since xalloc_oversized returns bool.
22481         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
22482         to use xalloc_oversized.
22483
22484         Add two functions x2realloc, x2nrealloc, for programs that grow
22485         arrays dynamically by doubling their sizes.
22486         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
22487         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
22488         New functions.
22489
22490         Port to C99 semantics for 'inline' of external functions.
22491         Bug reported by Bruno Haible.
22492         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
22493         with the old contents of xnmalloc.
22494         (xnmalloc, xmalloc): Use it.
22495         (xnrealloc_inline): New static inline function,
22496         with the old contents of xnrealloc.
22497         (xnrealloc, xrealloc): Use it.
22498
22499         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
22500         that.
22501
22502 2003-10-26  Karl Berry  <karl@gnu.org>
22503
22504         * config/srclist.txt (COPYING.DOC): no longer available from
22505         /gd/gnuorg; don't know where the ultimate source is.
22506
22507 2003-10-25  Paul Eggert  <eggert@twinsun.com>
22508
22509         Fix several address-calculation bugs in the hash modules,
22510         plus some minor code cleanup.
22511
22512         * lib/hash.h: Include <stdbool.h>, for bool.
22513         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
22514         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
22515         hash_get_n_entries, hash_get_max_bucket_length,
22516         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
22517         hash_rehash): Use size_t rather than unsigned.
22518         * lib/hash.c (struct hash_table, hash_get_n_buckets,
22519         hash_get_n_buckets_used, hash_get_n_entries,
22520         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
22521         hash_get_entries, hash_do_for_each, hash_string, is_prime,
22522         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
22523         Likewise.
22524         (SIZE_MAX): Define if not defined.
22525         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
22526         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
22527         hash_print):
22528         Use const * when possible.
22529         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
22530         (check_tuning): Fix bug: if tuning parameters were very close to
22531         0 or 1, rounding errors could have caused subscript violations.
22532         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
22533         (hash_initialize): Add 'fail:' label
22534         to free table and return NULL, and use it to simplify code.
22535         Use calloc rather than clearing the storage ourself.
22536         (hash_initialize, hash_rehash): Check for arithmetic overflow in
22537         buffer size calculations.
22538         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
22539         Include <stddef.h>, for size_t.
22540         * lib/hash-pjw.c (hash_pjw): Likewise.
22541         Switch to method described by Bruno Haible.
22542         Include <limits.h>, for CHAR_BIT.
22543         (SIZE_BITS): New macro.
22544
22545 2003-10-23  Paul Eggert  <eggert@twinsun.com>
22546
22547         * m4/getline.m4 (AM_FUNC_GETLINE):
22548         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
22549         hosts.  Problem reported by Derek Robert Price in
22550         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
22551         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
22552         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
22553
22554 2003-10-21  Paul Eggert  <eggert@twinsun.com>
22555
22556         * lib/getndelim2.c (getndelim2): When size calculation overflows,
22557         ceiling the allocation at NMAX bytes rather than silently
22558         discarding input bytes before NMAX is reached.  This makes
22559         a difference only if NMAX exceeds SIZE_MAX / 2.
22560
22561         * lib/obstack.c: Merge from glibc.
22562         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
22563         Add libc_hidden_def (_obstack_newchunk).
22564         (_obstack_free) [! defined _LIBC]: Remove.
22565         [defined _LIBC]: Make a strong alias from obstack_free, rather than
22566         a clone of the function body.
22567         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
22568         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
22569
22570         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
22571         glibc.
22572         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
22573         arg to memcpy.
22574
22575         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
22576         (obstack_ptr_grow_fast, obstack_int_grow_fast):
22577         Don't use lvalue casts, as GCC plans to remove support for them
22578         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
22579         was also present in the non-GCC version, indicating that this
22580         code had always been buggy and had never been widely used.
22581         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
22582         Use the fast variant of each macro, rather than copying the
22583         definiens of the fast variant; that way, we'll be more likely to
22584         catch future bugs in the fast variants.
22585
22586 2003-10-20  Bruno Haible  <bruno@clisp.org>
22587
22588         * modules/wait-process: New file.
22589         * MODULES.html.sh (func_all_modules): Add wait-process.
22590
22591 2003-10-20  Bruno Haible  <bruno@clisp.org>
22592
22593         * m4/wait-process.m4: New file.
22594
22595 2003-10-20  Bruno Haible  <bruno@clisp.org>
22596
22597         * lib/wait-process.h: New file, from GNU gettext.
22598         * lib/wait-process.c: New file, from GNU gettext.
22599
22600 2003-10-19  Jim Meyering  <jim@meyering.net>
22601
22602         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
22603         HPUX 10.20.
22604
22605 2003-10-18  Karl Berry  <karl@gnu.org>
22606
22607         * config/config.guess: update from config.
22608
22609 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22610
22611         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
22612         (getgroups): First arg is int, not size_t.
22613         Don't let 'free' mangle errno.
22614
22615 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22616
22617         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
22618
22619 2003-10-16  Karl Berry  <karl@gnu.org>
22620
22621         * config/config.{guess,sub}: update from config.
22622
22623 2003-10-16  Jim Meyering  <jim@meyering.net>
22624
22625         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
22626         memcpy.
22627
22628 2003-10-15  Paul Eggert  <eggert@twinsun.com>
22629
22630         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
22631         (SIZE_MAX): Remove.
22632         (new_exclude, add_exclude_file): Initial size no longer needs to
22633         be a power of 2.
22634         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
22635         our own address arithmetic overflow checking.
22636
22637         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
22638         (fnmatch): Do not alloca more than 2000 wide characters;
22639         instead, use malloc for large buffers.
22640         Check for address arithmetic overflow, and return -1
22641         with errno set to ENOMEM in that case.
22642         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
22643         (NEW_PATTERN): Do not alloca more than 8000 bytes;
22644         instead, return -1.  Check for address arithmetic overflow.
22645
22646 2003-10-14  Paul Eggert  <eggert@twinsun.com>
22647
22648         Handle invalid suffixes and overflow independently, so that
22649         callers can treat them independently as needed.  Fix some bugs in
22650         suffix handling, e.g., "100k@" was not diagnosed as an invalid
22651         suffix for a human-readable blocksize.  The major caller-visible
22652         change is the addition of a new
22653         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
22654         that both overflow and suffix chars were found.
22655
22656         * lib/human.c (humblock): Don't check separately for invalid suffix
22657         char; that is xstrtoumax's job (now that its bug is fixed).
22658         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
22659         INTMAX_MAX]: New macros.
22660         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
22661         TYPE_MAXIMUM): New macros.
22662         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
22663         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
22664         if overflow occurs, as it's what __strtol does and it's more useful
22665         in practice.
22666         (__xstrtol): If __strtol reports some error other than ERANGE,
22667         reflect it to the caller as LONGINT_INVALID.  If it reports
22668         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
22669         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
22670         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
22671         value.
22672         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
22673         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
22674         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
22675         [defined UINTMAX_MAX]: New macros.
22676
22677 2003-10-14  Bruno Haible  <bruno@clisp.org>
22678
22679         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
22680
22681 2003-10-14  Bruno Haible  <bruno@clisp.org>
22682
22683         * m4/sig_atomic_t: New file, from GNU gettext.
22684         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
22685
22686 2003-10-14  Bruno Haible  <bruno@clisp.org>
22687
22688         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
22689         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
22690         Also use volatile where needed.
22691
22692 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22693
22694         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
22695         Change maintainer from Bruno Haible to 'all'.
22696
22697 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22698
22699         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
22700
22701 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22702
22703         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
22704         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
22705         and define in terms of the other primitives.
22706         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
22707         (SIZE_MAX): Define if not already defined.
22708         (array_size_overflow): New function.
22709         (xalloc_die): Abort instead of exiting if 'error' returns.
22710         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
22711         (xmalloc, xrealloc): Use them.
22712         (xcalloc): Check for address arithmetic overflow.
22713         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
22714         a bit faster than strcpy.
22715
22716 2003-10-10  Simon Josefsson  <jas@extundo.com>
22717
22718         * modules/argp (Depends-on): Add restrict and strcase.
22719
22720 2003-10-10  Simon Josefsson  <jas@extundo.com>
22721
22722         * m4/argp.m4: Add AC_C_INLINE.
22723
22724 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22725
22726         Merge getpass from libc, plus a few fixes.
22727
22728         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
22729         Include <stdbool.h>.
22730         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
22731         __fsetlocking to empty.
22732         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
22733         do include <bits/libc-lock.h>.
22734         Do not include <fcntl.h>; not needed.
22735         [_LIBC]: Include <wchar.h>.
22736         (NOTCANCEL_MODE): New macro.
22737         (flockfile, funlockfile) [_LIBC]: New macros.
22738         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
22739         [!_LIBC]: New macros.
22740         (call_fclose): New function.
22741         (getpass): Use it.  Save tty stream separately; this simplifies the
22742         code and makes it more reliable if stdin happens to equal stdout.
22743         Invoke __fsetlocking on tty.
22744         Handle thread cancellation if needed.
22745         Namespace cleanup (use __tcgetattr, __getline).
22746         Use bool for Booleans.
22747         [USE_IN_LIBIO]: Handle wide streams.
22748         [!_LIBC]: Unconditionally do the fseek, since we don't know what
22749         stream might go where.
22750
22751         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
22752         doesn't have to include <stdio.h> before us.
22753         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
22754         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
22755         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
22756         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
22757         if not declared, so that we can use getpass.c code from libc without
22758         rewriting it.
22759         (flockfile, ftrylockfile, funlockfile): New macros.
22760
22761 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22762
22763         * modules/getpass: Depend on stdbool.
22764
22765 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22766
22767         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
22768
22769 2003-10-07  Karl Berry  <karl@gnu.org>
22770
22771         * config/config.{guess,sub}: update from config.
22772
22773 2003-10-06  Jim Meyering  <jim@meyering.net>
22774             Bruno Haible  <bruno@clisp.org>
22775
22776         This lets translators provide better translations for the
22777         "Written by ..." part of --version output.
22778         * lib/version-etc.h: Include stdarg.h.
22779         (version_etc_copyright): Declare as readonly.
22780         (version_etc): Make this function variadic with a NULL-terminated list
22781         of author name strings.
22782         (version_etc_va): New declaration.
22783         * lib/version-etc.c: Include stdarg.h, stdlib.h.
22784         (version_etc_copyright): Declare as readonly.
22785         (version_etc_va): New function. Provide a different translatable string
22786         for each possible number of authors < 10. Abbreviate when there are 10
22787         authors or more.
22788         (version_etc): Make this function variadic. Call version_etc_va.
22789         Suggestion from Gary V. Vaughan.
22790
22791         * lib/long-options.h (parse_long_options): Change prototype: the
22792         authors string is moved to the end and becomes variadic.
22793         * lib/long-options.c: Include stdarg.h.
22794         (parse_long_options): Make this function variadic, too.
22795         Call version_etc_va, not version_etc.
22796
22797 2003-10-06  Bruno Haible  <bruno@clisp.org>
22798
22799         * modules/version-etc-2: Remove file.
22800         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
22801
22802 2003-10-06  Bruno Haible  <bruno@clisp.org>
22803
22804         * modules/fatal-signal: New file.
22805         * MODULES.html.sh (func_all_modules): Add fatal-signal.
22806
22807 2003-10-06  Bruno Haible  <bruno@clisp.org>
22808
22809         * m4/fatal-signal.m4: New file.
22810         * m4/signalblocking.m4: New file, from GNU gettext.
22811
22812 2003-10-06  Bruno Haible  <bruno@clisp.org>
22813
22814         * lib/version-etc-2.h: Remove file.
22815         * lib/version-etc-2.c: Remove file.
22816
22817 2003-10-06  Bruno Haible  <bruno@clisp.org>
22818
22819         * lib/fatal-signal.h: New file, from GNU gettext.
22820         * lib/fatal-signal.c: New file, from GNU gettext.
22821
22822 2003-10-05  Paul Eggert  <eggert@twinsun.com>
22823
22824         * README: Rework advice for preventing empty .o files.
22825         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
22826         not <sys/types.h>.
22827
22828 2003-10-04  Karl Berry  <karl@gnu.org>
22829
22830         * lib/argp*: update from libc.
22831
22832 2003-10-04  Karl Berry  <karl@gnu.org>
22833
22834         * config/config.{guess,sub}: update from config.
22835
22836 2003-10-02  Bruno Haible  <bruno@clisp.org>
22837
22838         * modules/lchown (Include): Add lchown.h.
22839         * modules/time_r (Include): Use "..." syntax.
22840         * modules/xgetdomainname (Include): Add xgetdomainname.h.
22841
22842 2003-10-01  Simon Josefsson  <jas@extundo.com>
22843
22844         * MODULES.html.sh (func_all_modules): Move gethostname from section
22845         'based on' to section 'lacking' POSIX:2001.
22846
22847 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
22848
22849         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
22850         to output mode on the same stream.
22851
22852 2003-09-29  Paul Eggert  <eggert@twinsun.com>
22853
22854         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
22855         Fix arg typo in previous patch.
22856
22857 2003-09-28  Jim Meyering  <jim@meyering.net>
22858
22859         * lib/error.c: Correct cpp indentation.
22860
22861 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22862
22863         * modules/free: New file.
22864
22865 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22866
22867         * m4/free.m4: New file.
22868
22869 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22870
22871         * lib/minmax.h (MIN, MAX)
22872         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
22873         Omit the special code that used __typeof__, since we worry that
22874         it could be more trouble than it's worth.  See:
22875         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
22876         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
22877
22878         * lib/free.c: New file.
22879
22880 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
22881
22882         Trivial fixes to Makefile.am parts of module listings.
22883         * modules/strstr: Append strstr.h to lib_SOURCES.
22884         * modules/strcase: Likewise, for strcase.h.
22885
22886 2003-09-27  Karl Berry  <karl@gnu.org>
22887
22888         * config/mkinstalldirs: update from automake.
22889
22890 2003-09-26  Paul Eggert  <eggert@twinsun.com>
22891
22892         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
22893         (error_tail): Do not loop, reallocating temporary buffer, since
22894         the output cannot contain more wide characters than the input
22895         contains bytes, the size must be big enough already.  This avoids
22896         one potential size overflow calculation.  Check for size overflow
22897         when calculating temporary buffer size.  Free temporary buffer
22898         when done, if it was allocated with malloc; this plugs a memory
22899         leak.  Remove casts from void * to pointers, that are no longer
22900         needed now that we're assuming C89 or better.
22901
22902         Merge error changes from glibc.
22903
22904         * lib/error.c, error.h: Update copyright notice header to match glibc.
22905         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
22906         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
22907         Disable cancellation while printing error.
22908         * lib/error.h: Prepend __ to parameter names.
22909
22910 2003-09-26  Jim Meyering  <jim@meyering.net>
22911
22912         * lib/error.c (error_tail): Move some declarations
22913         into inner scope where the local variables are used.
22914
22915 2003-09-26  Bruno Haible  <bruno@clisp.org>
22916
22917         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
22918         stpncpy().
22919         Don't define stpncpy through config.h; it's now done through stpncpy.h.
22920
22921 2003-09-26  Bruno Haible  <bruno@clisp.org>
22922
22923         * lib/stpncpy.h (gnu_stpncpy): New declaration.
22924         (stpncpy): Define as alias for gnu_stpncpy.
22925         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
22926
22927 2003-09-25  Simon Josefsson  <jas@extundo.com>
22928
22929         * lib/xgetdomainname.h: New file.
22930         * lib/xgetdomainname.c: New file.
22931
22932 2003-09-25  Simon Josefsson  <jas@extundo.com>
22933             Bruno Haible  <bruno@clisp.org>
22934
22935         * modules/getdomainname: New file.
22936         * modules/xgetdomainname: New file.
22937         * MODULES.html.sh (func_all_modules): Add getdomainname,
22938         xgetdomainname.
22939
22940 2003-09-25  Simon Josefsson  <jas@extundo.com>
22941             Bruno Haible  <bruno@clisp.org>
22942
22943         * m4/getdomainname.m4: New file.
22944
22945 2003-09-25  Simon Josefsson  <jas@extundo.com>
22946             Bruno Haible  <bruno@clisp.org>
22947
22948         * lib/getdomainname.h: New file.
22949         * lib/getdomainname.c: New file.
22950
22951 2003-09-25  Karl Berry  <karl@gnu.org>
22952
22953         * lib/argp-fmtstream.c, argp-help.c: update from libc.
22954
22955 2003-09-25  Karl Berry  <karl@gnu.org>
22956
22957         * config/install-sh: update from automake.
22958
22959 2003-09-25  Bruno Haible  <bruno@clisp.org>
22960
22961         * modules/version-etc-2: New file, from modules/version-etc with
22962         modifications.
22963         * MODULES.html.sh (func_all_modules): Add version-etc-2.
22964
22965 2003-09-25  Bruno Haible  <bruno@clisp.org>
22966
22967         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
22968         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
22969
22970 2003-09-24  Simon Josefsson  <jas@extundo.com>
22971
22972         * modules/xgethostname: Add xgethostname.h.
22973
22974 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22975
22976         * lib/linebuffer.c (freebuffer): Don't free the argument, just
22977         the buffer associated with the argument.  Bug reported by
22978         Simon Josefsson.
22979
22980 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22981
22982         * README: Document assumptions that 'int' is at least 32 bits
22983         wide, that integer arithmetic is 2's complement without overflow,
22984         that there are no holes in integer values, that adding sizes of
22985         two nonoverlapping objects can't overflow, and that all-bits-zero
22986         yields scalar zero.  Fix spelling and capitalization typos.
22987
22988 2003-09-19  Karl Berry  <karl@gnu.org>
22989
22990         * lib/argp.h: update from libc.
22991
22992 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22993
22994         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
22995         to avoid spurious warnings like "AC_RUN_IFELSE was called before
22996         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
22997
22998 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22999
23000         * gnulib-tool: Use "test -h", not "test -L", for portability
23001         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
23002         (tags_regexp): Remove, since \| doesn't conform to POSIX.
23003         (sed_extract_prog): Issue s commands one-by-one, rather than
23004         using \| in one s command.
23005
23006 2003-09-16  Paul Eggert  <eggert@twinsun.com>
23007
23008         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
23009         input error, instead of returning NULL the next time we are called
23010         (and therefore losing track of errno).
23011
23012 2003-09-16  Bruno Haible  <bruno@clisp.org>
23013
23014         * gnulib-tool (func_create_testdir): Warn about duplicated
23015         dependencies.
23016
23017 2003-09-15  Paul Eggert  <eggert@twinsun.com>
23018
23019         * modules/argmatch, modules/fatal, modules/obstack,
23020         modules/xalloc, modules/xgethostname: Sort dependencies by
23021         importance, not alphabetically.
23022
23023 2003-09-15  Paul Eggert  <eggert@twinsun.com>
23024
23025         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
23026         fails, so that the caller gets the proper errno.
23027
23028         * lib/readutmp.c (read_utmp): Likewise.
23029         Check for fstat error.  Close stream and free storage
23030         when failing.
23031
23032 2003-09-14  Karl Berry  <karl@gnu.org>
23033
23034         * config/srclist.txt (strdup.c): disable for c89 changes.
23035
23036 2003-09-14  Jim Meyering  <jim@meyering.net>
23037
23038         * lib/getloadavg.c: Correct cpp indentation.
23039         * lib/strdup.c: Likewise.
23040         * lib/vasnprintf.c: Likewise.
23041
23042 2003-09-14  Bruno Haible  <bruno@clisp.org>
23043
23044         * modules/fwriteerror: New file.
23045         * MODULES.html.sh (func_all_modules): Add fwriteerror.
23046
23047 2003-09-14  Bruno Haible  <bruno@clisp.org>
23048
23049         * lib/fwriteerror.h: New file.
23050         * lib/fwriteerror.c: New file.
23051
23052 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23053
23054         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
23055         modules/xgethostname, modules/xalloc: Depend on exit.
23056
23057 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23058
23059         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
23060
23061         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
23062         and AC_MINIX, too, so that their extensions are available.
23063
23064         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
23065         This macro has been superseded by gl_BACKUPFILE.
23066
23067         More patches to assume C89 or better.
23068
23069         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
23070
23071         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
23072         unconditionally.
23073         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
23074         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
23075         Include <string.h>, <stdlib.h> unconditionally.
23076         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
23077         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
23078         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
23079         headers or for string.h.
23080         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
23081         or strtoul.
23082
23083         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
23084         headers.
23085         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
23086         * m4/userspec.m4 (gl_USERSPEC): Likewise.
23087         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
23088         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
23089         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
23090         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
23091         memcpy, memset.
23092         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
23093         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
23094         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
23095         strtol.
23096         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
23097         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
23098         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
23099         strtoul.
23100
23101 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23102
23103         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
23104         * lib/obstack.c [!defined _LIBC]: Likewise.
23105         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
23106         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
23107         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
23108
23109         More changes to assume C89 or better.
23110
23111         * lib/error.c (error_tail): Assume vprintf.
23112
23113         * lib/argmatch.c (getenv): Remove decl.
23114         * lib/progreloc.c (get_full_program_name): Define via prototype.
23115         * lib/setenv.c (clearenv): Likewise.
23116         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
23117         needed.
23118         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
23119         (malloc, memcpy): Remove decls.
23120         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
23121         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
23122         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
23123         (memcpy): Remove macro.
23124         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
23125         (__P): Remove.  All uses removed.
23126         (PTR): Remove.  All uses changed to void *.
23127         (CHAR_BIT, NULL): Remove.
23128         (spaces, zeros, memset_space, memset_zero)
23129         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
23130         Remove.
23131         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
23132         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
23133         Define with prototype.
23134         Remove now-unnecessary prototype decl.
23135         (extra_args_spec): Assume ANSI C.  All uses changed.
23136         (extra_args_spec_iso): Remove.
23137         (my_strftime, emacs_strftimeu): Define via prototype.
23138         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
23139         unconditionally.
23140         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
23141         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
23142         (strtoul, strtol): Remove decls.
23143         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
23144         LONG_MAX): Remove.
23145         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
23146         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
23147         (LOCALE_PARAM_PROTO): New macro.
23148         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
23149         (INTERNAL (strtol), strtol): Define with a prototype.
23150         (PARAMS): Remove.  All uses removed.
23151         * lib/tempname.c: Include <string.h> unconditionally.
23152         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
23153         * lib/xgethostname.c (main): Define with a prototype.
23154         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
23155         Include <stdlib.h> unconditionally.
23156         (calloc, malloc, realloc, free): Remove decls.
23157         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
23158         Include <stdlib.h> unconditionally.  Sort include file names.
23159         (strtod): Remove.
23160         (xstrtod): Define with a prototype.
23161         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
23162         (strtol, strtoul): Remove decls.
23163
23164 2003-09-11  Paul Eggert  <eggert@twinsun.com>
23165
23166         More patches to assume C89 or better.
23167         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
23168         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
23169         string.h, memchr, STDC_HEADERS.
23170
23171 2003-09-11  Paul Eggert  <eggert@twinsun.com>
23172
23173         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
23174         Include <stdlib.h>, <string.h> unconditionally.
23175         Remove now-unnecessary cast to char *.
23176         * lib/strnlen.c: Include <string.h> unconditionally.
23177         * lib/yesno.c (yesno): Define with a prototype.
23178
23179 2003-09-11  Bruno Haible  <bruno@clisp.org>
23180
23181         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
23182
23183 2003-09-10  Jim Meyering  <jim@meyering.net>
23184
23185         * lib/error.c: Correct indentation of cpp directives.
23186
23187 2003-09-10  Bruno Haible  <bruno@clisp.org>
23188
23189         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
23190         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
23191         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
23192         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
23193         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
23194         <stdlib.h> and <string.h> checks.
23195         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
23196         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
23197
23198 2003-09-10  Bruno Haible  <bruno@clisp.org>
23199
23200         * lib/strcspn.c: Include <string.h> unconditionally.
23201         * lib/strpbrk.c: Include <string.h> unconditionally.
23202         * lib/strstr.c: Include <string.h> unconditionally.
23203         * lib/unicodeio.c: Include <string.h> unconditionally.
23204         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
23205         * lib/unsetenv.c: Likewise.
23206         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
23207         * lib/yesno.c: Include <stdlib.h> unconditionally.
23208         (rpmatch): Add prototype.
23209
23210 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23211
23212         More patches to assume C89 or better.
23213         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
23214         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
23215         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
23216         or for string.h.
23217         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
23218         stdlib.h.
23219         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
23220         C headers.
23221         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
23222         string.h.
23223         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
23224         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
23225         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
23226         or for string.h.
23227         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
23228         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
23229         C headers.
23230         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
23231         memcpy.
23232         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
23233         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
23234         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
23235         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
23236         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
23237         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
23238         string.h, free.
23239         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
23240         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
23241         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
23242         C headers, or for string.h.
23243         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
23244         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
23245         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
23246         headers, memory.h, stdlib.h, string.h, strings.h.
23247         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
23248         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
23249         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
23250         strchr.
23251         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
23252         headers, memory.h, string.h.
23253         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
23254         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
23255         free.
23256         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
23257         headers.
23258         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
23259         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
23260         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
23261         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
23262         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
23263
23264 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23265
23266         More K&R removal.
23267
23268         * lib/acosl.c (main): Use a prototype.
23269         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
23270         tanl.c: Likewise.
23271
23272         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
23273
23274         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
23275         (getopt, etopt_long, getopt_long_only, _getopt_internal)
23276         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
23277         with a prototype.
23278         * lib/getopt.c (const): Remove macro.
23279         Include <string.h> unconditionally.
23280         (my_index): Remove; all uses changed to strchr.
23281         (strlen): Remove decl.
23282         (exchange): Remove forward decl; no longer needed.
23283         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
23284         Define with prototype.
23285         * lib/getopt1.c (const): Remove macro.
23286         (getopt_long, getopt_long_only, main): Define with prototype.
23287
23288         * lib/getugroups.c: Include <string.h> unconditionally.
23289
23290         * lib/getusershell.c: Include <stdlib.h> unconditionally.
23291         (getusershell, setusershell, endusershell, readname, main):
23292         Define with prototypes.
23293
23294         * lib/group-member.c: Include group-member.h first.
23295         Include <stdlib.h> unconditionally.
23296
23297         * lib/hard-locale.c: Include hard-locale.h first.
23298         Include <stdlib.h>, <string.h> unconditionally.
23299
23300         * lib/hash.c (free, malloc): Remove decls.
23301         Include <stdlib.h> unconditionally.
23302
23303         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
23304         (getenv): Do not declare.
23305
23306         * lib/idcache.c: Include <string.h> unconditionally.
23307
23308         * lib/long-options.c: Include long-options.h first, to test interface.
23309         Include <stdlib.h> unconditionally.
23310
23311         * lib/makepath.c: Include makepath.h first, to test interface.
23312         Include <stdlib.h> and <string.h> unconditionally.
23313
23314         * lib/linebuffer.c: Include <stdlib.h>.
23315         (free): Remove decl.
23316
23317         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
23318         stddef.h. rpl_malloc returns void *, not char *.
23319         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
23320         prototype.
23321
23322         * lib/md5.h: Include <limits.h> unconditionally.
23323         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
23324         (__P): Remove; all uses removed.
23325         * lib/md5.c: Include "md5.h" first.
23326         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
23327         md5_buffer, md5_process_bytes, md5_process_block):
23328         Define with prototypes.
23329         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
23330         * lib/sha.c: Include "sha.h" first.
23331         Include <stdlib.h>, <string.h> unconditionally.
23332
23333         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
23334         * lib/memcmp.c (__ptr_t): Likewise.
23335         * lib/memrchr.c (__ptr_t): Likewise.
23336         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
23337         Include <string.h> unconditionally.
23338         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
23339         * lib/memchr.c: Include <stdlib.h> unconditionally.
23340         * lib/memchr.c (LONG_MAX): Remove.
23341         * lib/memrchr.c (LONG_MAX): Likewise.
23342         * lib/memchr.c (__memchr): Define via a prototype.
23343         * lib/memrchr.c (__memrchr): Likewise.
23344         * lib/memcmp.c (__P): Remove, and remove all uses.
23345         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
23346         Remove forward decls; no longer needed.
23347         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
23348         Use types required by C89 in prototype.
23349
23350         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
23351         * lib/savedir.c: Likewise.
23352         * lib/mkdir.c (free): Remove decl.
23353         * lib/rmdir.c (rmdir): Define with a prototype.
23354         * lib/savedir.c: Include savedir.h first, to test interface.
23355
23356         * lib/mktime.c (STDC_HEADERS): Remove.
23357         Include <stdlib.h>, <string.h> unconditionally.
23358
23359         * lib/modechange.c: Include <stdlib.h> unconditionally.
23360         (malloc): Remove decl.
23361
23362         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
23363         (free): Remove decl.
23364
23365         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
23366         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
23367         (This type really should be intptr_t, but that's a C99ism.)
23368         (_obstack_memcpy): Remove: all uses changed to memcpy.
23369         Include <string.h> unconditionally.
23370         (struct obstack): Assume __STDC__ for types of members
23371         chunkfun, freefun, extra_arg.
23372         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
23373         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
23374         obstack_begin, obstack_specify_allocation,
23375         obstack_specify_allocation_with_arg, obstack_chunkfun,
23376         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
23377         Remove unprototyped decls and the macros that use them.
23378         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
23379         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
23380         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
23381         (defined __STDC__ && __STDC__)]:
23382         Remove nonprototyped code.
23383         Include <stdlib.h> unconditionally.
23384         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
23385         _obstack_allocated_p, _obstack_free, obstack_free,
23386         _obstack_memory_used, print_and_abort):
23387         Define using prototypes.
23388         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
23389         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
23390         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
23391         obstack_next_free, obstack_object_size, obstack_room) [0]:
23392         Remove unused, unprototyped code.
23393
23394         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
23395
23396         * lib/physmem.c (physmem_total, physmem_available, main): Define
23397         with prototypes.
23398
23399         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
23400         (main): Define with a prototype.
23401
23402         * lib/posixver.c (getenv): Remove decl.
23403
23404         * lib/putenv.c (malloc): Returns void *, not char *.
23405         Include <string.h> unconditionally.
23406         (strchr, memcpy, NULL): Do not define.
23407
23408         * lib/readtokens.c: Include readtokens.h first, to test interface.
23409         Include <stdlib.h>, <string.h> unconditionally.
23410         (init_tokenbuffer): Define with a prototype.
23411
23412         * lib/regex.c (PARAMS): Remove.  All uses removed.
23413         All uses of _RE_ARGS removed, too.
23414         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
23415         unconditionally.
23416         (bzero): Assume memset exists.
23417         (memcmp, memcpy, NULL): Remove.
23418         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
23419         char, or assignments to local vars of type signed char.
23420         (init_syntax_once, PREFIX(extract_number_and_incr),
23421         PREFIX(print_partial_compiled_pattern),
23422         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
23423         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
23424         PREFIX(regex_grow_registers), PREFIX(regex_compile),
23425         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
23426         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
23427         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
23428         wcs_compile_range, byte_compile_range, truncate_wchar,
23429         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
23430         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
23431         count_mbs_length, wcs_re_match_2_internal,
23432         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
23433         PREFIX(alt_match_null_string_p),
23434         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
23435         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
23436         regfree, PREFIX(extract_number)): Define with prototype.  Remove
23437         now-unnecessary declaration, if any.
23438         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
23439         regcomp, regexec):
23440         Remove now-unnecessary casts among pointer types.
23441         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
23442
23443         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
23444         (free): Remove decl.
23445
23446         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
23447
23448         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
23449         (free): Remove decl.
23450
23451         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
23452         * lib/xgetcwd.c: Likewise.
23453
23454         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
23455         (free): Remove decl.
23456
23457         * lib/strchrnul.c (strchrnul): Define with a prototype.
23458         Fix bug: c_in was not converted to char before searching.
23459
23460         The following changes are not K&R related:
23461
23462         * lib/group-member.h: Include <sys/types.h>, so that this file is
23463         self-contained.
23464         * lib/makepath.h: Likewise.
23465
23466         * lib/getusershell.c (readname, default_index, line_size, readname):
23467         Use size_t, not int, for sizes.
23468         (readname): If the size overflows, report an error instead of
23469         looping forever.
23470
23471 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23472
23473         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
23474         libc.
23475
23476 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23477
23478         * README: New section: portability guidelines.
23479
23480 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23481
23482         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
23483         C89 spec.
23484
23485 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23486
23487         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
23488
23489 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23490
23491         Assume C89 or better; remove K&R cruft.
23492         A few of these changes were first proposed by Derek Robert Price
23493         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
23494
23495         * lib/addext.c: Include <string.h> unconditionally.
23496         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
23497         Don't declare getenv or malloc.
23498
23499         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
23500         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
23501         (NULL): Remove.
23502         (find_stack_direction, alloca): Use prototypes.
23503
23504         * lib/atexit.c (atexit): Define using a prototype.
23505
23506         * lib/basename.c, dirname.c, stripslash.c:
23507         Include <string.h> unconditionally.
23508
23509         * lib/bcopy.c: Include <stddef.h>.
23510         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
23511
23512         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
23513
23514         * lib/error.h (error, error_at_line, error_print_progname)
23515         [! (defined (__STDC__) && __STDC__)]: Remove decls.
23516         * lib/error.c: Include error.h first, to check interface.
23517         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23518         (VA_START): Remove; all uses changeed to va_start.
23519         (exit, strerror): Remove decls.
23520         (error_print_progname): Prototype uncondionally.
23521         Don't include <errno.h>; no longer needed.
23522         (private_strerror): Remove.
23523         (error_tail): Always define.
23524         (error, error_at_line): Assume C89 or better; always use prototypes.
23525         * lib/fatal.c: Include "fatal.h" first, to test interface.
23526         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23527         (VA_START): Remove; all uses changed to va_start.
23528         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
23529         this case.
23530         (exit): Remove decl.
23531         (fatal): Prototype unconditionally.  Assume va_start works.
23532         Abort at end, to pacify gcc.
23533
23534         * lib/euidaccess.c (main): Define with a prototype.
23535
23536         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
23537
23538         * lib/exitfail.c: Include <stdlib.h> unconditionally.
23539
23540         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
23541         prototypes.
23542         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
23543         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
23544         (getenv): Remove decl.
23545         (fnmatch): Define using a prototype.
23546         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
23547         (FCT): Define using a prototype.
23548
23549         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
23550
23551         * lib/gethostname.c: Include <stddef.h>.
23552         (gethostname): Define with prototype.  Length is size_t, not int.
23553
23554 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23555
23556         Assume C89 or better; remove K&R cruft.
23557         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
23558         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
23559         string.h, getenv, malloc.
23560         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
23561         headers.
23562         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
23563         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
23564         do not check for strerror.
23565         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
23566         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
23567         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
23568         do not check for doprnt or vprintf.
23569         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
23570         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
23571
23572 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23573
23574         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
23575         getversion.c should have been removed then, but was accidentally
23576         preserved.
23577
23578         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
23579         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
23580
23581 2003-09-08  Karl Berry  <karl@gnu.org>
23582
23583         * config/config.sub, config.guess, srclistvars.sh: update from savannah
23584                 config, forget about prep.
23585
23586         * config/depcomp, missing: update from automake.
23587
23588 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23589
23590         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
23591         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23592
23593 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23594
23595         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
23596         copy_tm_result.  Bug reported by Simon Josefsson in
23597         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23598
23599 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23600
23601         * m4/time_r.m4: New file.
23602         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
23603         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
23604         is. Check for timegm declaration.
23605         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
23606         Do not check for gmtime_r.
23607         Replace mktime if __mktime_internal does not exist and if mktime
23608         hasn't been replaced already.
23609
23610 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23611
23612         * lib/time_r.c, lib/time_r.h: New files.
23613
23614         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
23615         __localtime_r.
23616         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
23617         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
23618
23619         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
23620         __gmtime_r.
23621         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
23622         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
23623         Include <time_r.h>.
23624
23625         * lib/timegm.c: Switch to glibc implementation, with the following
23626         changes:
23627         [defined HAVE_CONFIG_H]: Include <config.h>.
23628         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
23629         (__mktime_internal) [!defined _LIBC]: New decl.
23630         (__gmtime_r) [!defined _LIBC]: New macro and function.
23631         (timegm): Use a prototype, since gnulib assumes C89.
23632         Do not bother declaring tmp to be const, as it's not really usefu.
23633         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
23634         (timegm): Declare only if HAVE_DECL_TIMEGM.
23635
23636 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23637
23638         * MODULES.html.sh (func_all_modules): Add time_r.
23639         * modules/time_r: New file.
23640         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
23641         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
23642
23643 2003-09-03  Paul Eggert  <eggert@twinsun.com>
23644
23645         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
23646         Bug reported by Lute Kamstra in
23647         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
23648
23649         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
23650         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
23651         course with correspondingly smaller numbers for tomorrow and
23652         yesterday.  From Tadayoshi Funaba.  Originally installed into
23653         sh-utils on 1999-08-07, but the patch got lost (I guess during the
23654         coreutils merge?).
23655
23656 2003-08-31  Simon Josefsson  <jas@extundo.com>
23657
23658         * modules/timegm: New file.
23659         * MODULES.html.sh (func_all_modules): Add timegm.
23660
23661 2003-08-31  Simon Josefsson  <jas@extundo.com>
23662
23663         * m4/timegm.m4: New file.
23664
23665 2003-08-31  Simon Josefsson  <jas@extundo.com>
23666
23667         * lib/timegm.h: New file.
23668         * lib/timegm.c: New file.  Based on
23669         wget-1.8.2/src/http.c:mktime_from_utc.
23670
23671 2003-08-31  Karl Berry  <karl@gnu.org>
23672
23673         * lib/argp.h: update from libc.
23674
23675 2003-08-28  Bruno Haible  <bruno@clisp.org>
23676
23677         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
23678         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
23679         followed by '#define fnmatch fnmatch_posix' gives an error.
23680
23681 2003-08-28  Bruno Haible  <bruno@clisp.org>
23682
23683         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
23684         warning on QNX, which defines O_BINARY to 000000.
23685
23686 2003-08-27  Jim Meyering  <jim@meyering.net>
23687
23688         * m4/mkstemp.m4: Require that the system mkstemp be able to create
23689         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
23690         would fail after 32.  Reported by Danny Levinson.  Details here:
23691         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
23692
23693 2003-08-24  Bruno Haible  <bruno@clisp.org>
23694
23695         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
23696         MSVC7 <stdio.h> is included later.
23697
23698 2003-08-22  Simon Josefsson  <jas@extundo.com>
23699
23700         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
23701
23702 2003-08-20  Karl Berry  <karl@gnu.org>
23703
23704         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
23705
23706 2003-08-20  Bruno Haible  <bruno@clisp.org>
23707
23708         * modules/progname: New file.
23709         * MODULES.html.sh (func_all_modules): Add progname.
23710
23711 2003-08-20  Bruno Haible  <bruno@clisp.org>
23712
23713         * lib/progname.h: New file, from GNU gettext.
23714         * lib/progname.c: New file, from GNU gettext.
23715         * lib/progreloc.c: New file, from GNU gettext.
23716
23717 2003-08-19  Jim Meyering  <jim@meyering.net>
23718
23719         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
23720         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
23721
23722 2003-08-19  Bruno Haible  <bruno@clisp.org>
23723
23724         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
23725         more.
23726
23727 2003-08-19  Bruno Haible  <bruno@clisp.org>
23728
23729         * lib/xstrdup.c: Assume <string.h> exists.
23730
23731 2003-08-18  Paul Eggert  <eggert@twinsun.com>
23732
23733         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
23734         in makefile rules.
23735
23736 2003-08-18  Jim Meyering  <jim@meyering.net>
23737
23738         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
23739         * m4/lib-ld.m4: Likewise.
23740
23741 2003-08-18  Jim Meyering  <jim@meyering.net>
23742
23743         * lib/setenv.h: Indent nested cpp directive.
23744         * lib/vasnprintf.c: Remove trailing blanks.
23745
23746 2003-08-17  Simon Josefsson  <jas@extundo.com>
23747
23748         * modules/xstrndup: New file.
23749         * MODULES.html.sh (func_all_modules): Add xstrndup.
23750
23751 2003-08-17  Simon Josefsson  <jas@extundo.com>
23752
23753         * modules/argp: Fix autoconf macro name. Add more dependencies.
23754
23755 2003-08-17  Simon Josefsson  <jas@extundo.com>
23756
23757         * m4/xstrndup.m4: New file.
23758
23759 2003-08-17  Simon Josefsson  <jas@extundo.com>
23760
23761         * m4/argp.m4: New file.
23762
23763 2003-08-17  Simon Josefsson  <jas@extundo.com>
23764             Bruno Haible  <bruno@clisp.org>
23765
23766         * lib/xstrndup.h: New file.
23767         * lib/xstrndup.c: New file.
23768
23769 2003-08-17  Bruno Haible  <bruno@clisp.org>
23770
23771         * modules/strndup (Files, Include): Add lib/strndup.h.
23772
23773 2003-08-17  Bruno Haible  <bruno@clisp.org>
23774
23775         * modules/euidaccess (Files): Add lib/euidaccess.h.
23776
23777 2003-08-17  Bruno Haible  <bruno@clisp.org>
23778
23779         * lib/strndup.h: New file.
23780
23781 2003-08-17  Bruno Haible  <bruno@clisp.org>
23782
23783         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
23784         like AC_GNU_SOURCE.
23785         * modules/extensions (configure.ac): Comment out the invocation of
23786         gl_USE_SYSTEM_EXTENSIONS.
23787
23788 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23789
23790         Merges from coreutils, etc.
23791         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
23792         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
23793         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
23794         fixing a typo.
23795         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
23796         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
23797
23798 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23799
23800         Document merge from coreutils.
23801         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
23802         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
23803         * modules/utime: Add m4/utimes-null.m4.
23804
23805 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23806
23807         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
23808         space, undoing this 2003-08-12 change:
23809         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23810
23811 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23812
23813         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
23814         strtoul.c from libc, undoing this 2003-08-12 change:
23815         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23816
23817 2003-08-16  Jim Meyering  <jim@meyering.net>
23818
23819         Merges from coreutils.
23820         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
23821         prefix.  Adjust cache variables similarly.  Create 500 rather than
23822         just 300 files, to exercise bug on Darwin6.5, too.
23823         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
23824         $missing_dir.
23825         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
23826         AM_SYS_POSIX_TERMIOS.
23827         Reported by mkc@mathdogs.com.
23828         Also change use of $am_cv_sys_posix_termios
23829         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
23830         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
23831         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
23832         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
23833         in /proc/mounts until it finds one with matching device number.  This
23834         is unnecessary when the FILE argument *is* a mount point.  No stat call
23835         is necessary in that case.  So, disable the statvfs-testing code on
23836         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
23837         as RedHat bug# 84846.
23838         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23839         to 1MB, so as not to render systems with no stack size limit (e.g.,
23840         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23841         Include <unistd.h>.  On some systems,
23842         it is required for the definition of _SC_PAGESIZE.
23843
23844 2003-08-16  Jim Meyering  <jim@meyering.net>
23845
23846         Merge from coreutils.
23847         * lib/xstrtoimax.c: #else #if -> #elif.
23848         * lib/xstrtoumax.c: Likewise.
23849
23850 2003-08-16  Jim Meyering  <jim@meyering.net>
23851
23852         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
23853         * m4/utimes.m4: Removed.
23854         * m4/utimes-null.m4: Renamed from utimes.m4.
23855
23856         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23857         to 1MB, so as not to render systems with no stack size limit (e.g.,
23858         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23859         Include <unistd.h>.  On some systems,
23860         it is required for the definition of _SC_PAGESIZE.
23861
23862 2003-08-16  Jim Meyering  <jim@meyering.net>
23863         and Paul Eggert  <eggert@cs.ucla.edu>
23864
23865         Merges from coreutils, etc.
23866
23867         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
23868         using the latest version from cvs.  This avoids problems with #line
23869         directives using a vendor (Sun) compiler.
23870         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
23871         Don't set GETGROUPS_LIB here; now it's
23872         done via getgroups.m4's wrapper function.
23873         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
23874         rather than just in sh-util/configure.in, so that the
23875         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
23876         same.
23877         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
23878         AC_FUNC_GETLOADAVG where to find getloadavg.c.
23879         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
23880         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
23881         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
23882         Remove code that is now done by the newly-required macros.
23883         Append $(EXEEXT) to DF_PROG.
23884         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
23885         Do not invoke or require the following here,
23886         since prereq.m4 or some gnulib .m4 now does this for us:
23887         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
23888         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
23889         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
23890         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
23891         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
23892         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
23893         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
23894         AC_FUNC_OBSTACK.
23895         Do not replace the following functions, as this is now the job
23896         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
23897         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
23898         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
23899         atexit getpass, strdup, getpagesize.
23900         Replace 'raise'.
23901         Do not check for the following functions, as this is now the job
23902         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
23903         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
23904         setregid.
23905         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
23906         Check for sys/sysctl.h.
23907         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
23908         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
23909         of checking for ssize_t ourselves.
23910
23911         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
23912         Require every macro that gnulib/modules/* suggests for us.
23913         (jm_PREREQ_ADDEXT): New macro.
23914         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
23915         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
23916
23917         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
23918         (gl_PHYSMEM): Use it.
23919         Also check for `table' function.
23920         Check for new headers and functions.
23921         Add check for sys/sysmp.h.
23922         With suggestions from Kaveh Ghazi.
23923         Ignore headers that are present but cannot be compiled.  This
23924         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
23925         C 5.4.
23926
23927 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23928
23929         Document merge from coreutils.
23930         * modules/userspec: Depend on posixver.
23931         * modules/strftime: Depend on tzset.
23932
23933 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23934
23935         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
23936         rather than tab, after '#' in shell-script copyright notices.
23937         Suggested by Bruno Haible.
23938
23939 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23940
23941         * config/srclist-update: Use three spaces, rather than tab, after '#'
23942         in shell-script copyright notices.  Suggested by Bruno Haible.
23943         Remove unnecessary parenthesization in regular expression.
23944
23945 2003-08-15  Jim Meyering  <jim@meyering.net>
23946
23947         Merge from coreutils.
23948         * lib/xgethostname.c: Include <stdlib.h>.
23949         (xghostname): Don't exit for anything other than memory-related
23950         failure; just return NULL.
23951         * lib/userspec.c: Include "posixver.h".
23952         (parse_user_spec): Accept `.' as a separator only
23953         in pre-POSIX-200112 mode.
23954         * lib/strtoimax.c: Use #elif rather than #else #if.
23955         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
23956         Remove function, now that we can rely on a working tzset function.
23957         [!_LIBC]: Ensure that the required autoconf test has been run.
23958         [!defined _NL_CURRENT && HAVE_STRFTIME]:
23959         Use underlying_strftime for %r.
23960         * lib/sha.c: Merge in some clean-up and optimization changes from
23961         glibc.
23962         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
23963         Ensure that it is a multiple of 64.
23964         Rearrange loop exit tests so as to avoid performing an
23965         additional fread after encountering an error or EOF.
23966         * lib/realloc.c: Update copyright date.
23967
23968 2003-08-15  Jim Meyering  <jim@meyering.net>
23969         and Paul Eggert  <eggert@twinsun.com>
23970
23971         Merge from coreutils.
23972         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
23973         member but strut utmpx does not.  Needed for AIX 4.3.3.
23974         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
23975
23976 2003-08-15  Jim Meyering  <jim@meyering.net>
23977         and Paul Eggert  <eggert@cs.ucla.edu>
23978
23979         Merges from coreutils, etc.
23980         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
23981         Require gl_FUNC_TZSET_CLOBBER.
23982         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
23983         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
23984         members.
23985
23986 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23987
23988         Help the merge from coreutils.
23989         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
23990         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
23991         * m4/tzset.m4: Use it too.
23992
23993 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23994
23995         * modules/tzset: New file.
23996
23997 2003-08-14  Jim Meyering  <jim@meyering.net>
23998
23999         Merges from coreutils.
24000         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
24001         variable names, rather than @FNMATCH_H@.
24002         * modules/alloca: Likewise for $(ALLOCA_H).
24003
24004         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
24005         the three copies of the literal target, `fnmatch.h'.
24006         * modules/alloca (alloca.h): Likewise.
24007
24008 2003-08-14  Jim Meyering  <jim@meyering.net>
24009
24010         Merge from coreutils.
24011         * m4/tzset.m4: New file.
24012         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
24013         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
24014         otherwise, AIX 5.1 systems would end up using the latter.
24015         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
24016         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
24017         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
24018         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
24019
24020 2003-08-14  Jim Meyering  <jim@meyering.net>
24021
24022         Merge from coreutils.
24023         * lib/obstack.h: Whitespace changes.
24024         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
24025         and xcalloc return values.
24026         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
24027         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
24028         hang on OSF/1 5.1 for DIR on both local and remote file systems.
24029         Reported by (and fix confirmed by) Nelson H. F. Beebe.
24030         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
24031         error from mntctl.
24032         Use mntctl's return value to drive the entry-processing loop, since
24033         we can't rely on the value of the vmt_length member in the last
24034         entry.  On some systems doing so could result in exhausting
24035         virtual memory.  Based in part on a patch from Mike Jetzer.
24036
24037 2003-08-14  Jim Meyering  <jim@meyering.net>
24038         and Paul Eggert  <eggert@twinsun.com>
24039
24040         Merges from coreutils, plus other fixes.
24041         * lib/physmem.c: Merge in portability changes from gcc/libiberty
24042         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
24043         for credits and details.  Thanks to Kaveh Ghazi for helping
24044         to keep these files in sync.
24045         (ARRAY_SIZE): Define it.
24046         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
24047         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
24048         (memcasecmp): Don't assume size_t fits in unsigned int.
24049         Remove casts and duplicate code.
24050         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
24051         (memcpy): Remove definition.
24052         Merge in some clean-up and optimization changes from glibc.
24053         [BLOCKSIZE]: Move definition to top of file.
24054         Ensure that it is a multiple of 64.
24055         Rearrange loop exit tests so as to avoid performing an
24056         additional fread after encountering an error or EOF.
24057         * lib/md5.h (md5_uintptr): Define.
24058         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
24059         return to the initial working directory.  Preserve errno
24060         for caller.
24061         * lib/idcache.c: Include "xalloc.h".
24062         (xmalloc, xrealloc): Remove decls.
24063         (getuser): Remove casts no longer required in C89.
24064         * lib/human.c: Include stdio.h, for sprintf.
24065         * lib/group-member.c: Include "xalloc.h".
24066         (xmalloc, xrealloc): Remove decls.
24067         (get_group_info): Remove casts no longer required in C89.
24068         * lib/getusershell.c (readname): Remove casts no longer required in
24069         C89.
24070         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
24071         * lib/getline.c: Whitespace fix, from coreutils.
24072
24073 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24074
24075         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
24076         Check for isascii.
24077
24078         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
24079         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
24080         Undo previous (whitespace-only) change.
24081
24082 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24083
24084         * lib/exclude.c: Include <ctype.h>
24085         (IN_CTYPE_DOMAIN): New macro.
24086         (is_space): New fn.
24087         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
24088         and empty lines.
24089
24090         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
24091         Undo previous (whitespace-only) change.
24092
24093 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24094
24095         * config/srclist-update: Change update back to the old behavior,
24096         leaving whitespace alone.  Use one 'sed' command rather than a
24097         pipeline.
24098         (fixlicense): Now a variable, not a function.
24099         (remove_trailing_blanks): Remove.
24100         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
24101         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
24102         Undo previous (whitespace-only) change.
24103
24104 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24105
24106         Merge from coreutils.
24107         * modules/euidaccess: Add lib_SOURCES, include for new
24108         file euidaccess.h
24109
24110 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24111
24112         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
24113         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
24114         Normalize leading white space and remove trailing white space.
24115
24116         Merge from coreutils
24117         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
24118
24119         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
24120         0.12.1.  These files are now being upgraded automatically by
24121         ../config/srclist-update.
24122
24123 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24124
24125         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
24126         Normalize leading white space and remove trailing white space.
24127         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
24128         notice, as per ../config/srclist-update.
24129
24130         Merge from coreutils.
24131         * lib/euidaccess.h: New file.
24132         * lib/euidaccess.c: Include it.
24133         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
24134         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
24135         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
24136
24137 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24138
24139         * config/srclist-update: Add copyright notice.
24140         (remove_id_lines, remove_trailing_blanks): New constants.
24141         (fixfile): Use them to normalize spacing a bit in copied files.
24142         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
24143         Normalize leading white space and remove trailing white space.
24144
24145         * config/texinfo.tex: Sync with texinfo.
24146
24147         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
24148         strtoul.c from libc, to merge coreutils whitespace changes.
24149
24150         * config/srclist.txt: Get the following m4 files from gettext:
24151         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
24152         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
24153         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
24154         wint_t.m4.
24155
24156 2003-08-12  Karl Berry  <karl@gnu.org>
24157
24158         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
24159         been made.
24160
24161 2003-08-11  Paul Eggert  <eggert@twinsun.com>
24162
24163         * modules/gnu-source, m4/gnu-source.m4:
24164         Remove; we're assuming Autoconf 2.54 or later now.
24165         Suggested by Bruno Haible.
24166         * MODULES.html.sh (func_all_modules): Remove gnu-source.
24167
24168 2003-08-11  Bruno Haible  <bruno@clisp.org>
24169
24170         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
24171
24172 2003-08-11  Bruno Haible  <bruno@clisp.org>
24173
24174         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
24175         (vasnprintf): Use it instead of wcslen.
24176
24177 2003-08-11  Bruno Haible  <bruno@clisp.org>
24178
24179         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
24180         value to ensure that _Bool promotes to int. Use #define for _Bool when
24181         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
24182
24183 2003-08-10  Karl Berry  <karl@gnu.org>
24184
24185         * lib/regex.h: update from libc (whitespace fix).
24186
24187 2003-08-09  Paul Eggert  <eggert@twinsun.com>
24188
24189         Merge some files from coreutils.  These changes were
24190         originally made by Jim Meyering.
24191         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
24192         many older Unixes require this.
24193         * lib/alloca.c (alloca): Remove cast to argument of free;
24194         no longer needed in C89.
24195         * lib/alloca_.h, regex.h: Fix white space to match
24196         what GNU indent does.
24197
24198 2003-08-09  Paul Eggert  <eggert@twinsun.com>
24199
24200         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
24201         apparently Emacs's Unicode mode got confused before my 2003-08-05
24202         checkin.
24203
24204 2003-08-08  Paul Eggert  <eggert@twinsun.com>
24205
24206         * m4/extensions.m4: New file.
24207         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
24208         Require gl_USE_SYSTEM_EXTENSIONS.
24209         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
24210         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
24211
24212 2003-08-08  Paul Eggert  <eggert@twinsun.com>
24213
24214         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
24215         * modules/extensions, modules/gnu-source: New files.
24216         * modules/timespec, modules/unlocked-io: Depend on extensions.
24217
24218 2003-08-07  Paul Eggert  <eggert@twinsun.com>
24219
24220         * modules/restrict: New file.
24221         * MODULES.html.sh (func_all_modules): Add restrict.
24222         * modules/regex: Depend on restrict.
24223
24224 2003-08-07  Paul Eggert  <eggert@twinsun.com>
24225
24226         * m4/restrict.m4: New file.
24227         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
24228
24229 2003-08-07  Bruno Haible  <bruno@clisp.org>
24230
24231         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
24232         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
24233
24234 2003-08-07  Bruno Haible  <bruno@clisp.org>
24235
24236         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
24237         makes the module 'getndelim2' compatible with the module 'getline'.
24238
24239 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24240
24241         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
24242         byte with "\201" to avoid glitches when editing that source file
24243         with multi-gnome-terminal.
24244
24245 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24246
24247         * lib/bumpalloc.h: Remove.
24248
24249 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24250
24251         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
24252         * modules/bumpalloc: Remove.
24253
24254 2003-08-04  Paul Eggert  <eggert@twinsun.com>
24255
24256         * lib/getloadavg.c: Change copyright notice and spacing to conform to
24257         GNU coding style.
24258
24259         Merge from coreutils.
24260         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
24261         1. From glibc.
24262         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
24263         from Karl Berry, implemented by Jim Meyering.
24264         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
24265         from Dmitry V. Levin.
24266         Remove anachronistic cast of xrealloc.
24267         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
24268         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
24269         type. Otherwise, it wouldn't compile with at least /bin/cc on
24270         ymp-cray-unicos9.0.2.X.
24271         Combine two mostly-identical uses of alloca into one.
24272         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
24273
24274 2003-08-04  Dave Love  <d.love@dl.ac.uk>
24275
24276         [From Emacs.]
24277
24278         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
24279         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
24280         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
24281         obsolete NLIST_NAME_UNION.
24282         [__GNU__]: Undef BSD and FSCALE.
24283         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
24284
24285 2003-08-03  Paul Eggert  <eggert@twinsun.com>
24286
24287         * lib/stdbool_.h (_Bool): Make it signed char, instead of
24288         an enum type, so that it's guaranteed to promote to int.  See:
24289         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
24290
24291 2003-08-03  Karl Berry  <karl@gnu.org>
24292
24293         * config/depcomp: update from automake.
24294
24295 2003-07-31  Paul Eggert  <eggert@twinsun.com>
24296
24297         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
24298         (strerror): Don't assume that a printable int fits in 14 bytes.
24299
24300 2003-07-31  Bruno Haible  <bruno@clisp.org>
24301
24302         * modules/getpass-gnu: New file.
24303         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
24304
24305 2003-07-31  Bruno Haible  <bruno@clisp.org>
24306
24307         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
24308
24309 2003-07-24  Karl Berry  <karl@gnu.org>
24310
24311         * config/missing: update from automake.
24312
24313 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
24314             Bruno Haible  <bruno@clisp.org>
24315
24316         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
24317         * lib/getline.c (getline, getdelim): Likewise.
24318         Remove _GNU_SOURCE define; now it's defined in config.h through
24319         m4/getline.m4.
24320
24321 2003-07-23  Karl Berry  <karl@gnu.org>
24322
24323         * config/config.sub: update from prep.
24324
24325 2003-07-22  Paul Eggert  <eggert@twinsun.com>
24326
24327         * modules/xalloc (Depends-on): Add exitfail.
24328         * modules/xmemcoll: Likewise.
24329
24330 2003-07-22  Paul Eggert  <eggert@twinsun.com>
24331
24332         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
24333         over-parenthesization in macros.
24334
24335         Sync with coreutils.
24336
24337         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
24338         required by C99.
24339
24340         Use `exit_failure' for xalloc and xmemcoll instead of their own
24341         private exit-failure variables.
24342         * lib/xalloc.h (xalloc_exit_failure): Remove.
24343         * lib/xmalloc.c: Likewise.  Include exitfail.h.
24344         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
24345         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
24346         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
24347         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
24348
24349 2003-07-20  Jim Meyering  <jim@meyering.net>
24350
24351         * modules/closeout (Depends-on): Add exitfail.
24352         Suggestion from Bruno Haible.
24353
24354 2003-07-19  Karl Berry  <karl@gnu.org>
24355
24356         * config/config.sub: update from prep.
24357
24358 2003-07-18  Paul Eggert  <eggert@twinsun.com>
24359
24360         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
24361         Remove.
24362         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
24363         to test that it can stand by itself.  Include "exitfail.h".
24364         Clients should set exit_failure instead.
24365         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
24366
24367 2003-07-18  Bruno Haible  <bruno@clisp.org>
24368
24369         * modules/getndelim2: New file.
24370         * modules/getline: Share files with module getndelim2.
24371         * modules/getnline: Depend on getndelim2 instead of sharing files with
24372         it. Add getnline.c to lib_SOURCES.
24373         * MODULES.html.sh (func_all_modules): Add getndelim2.
24374
24375 2003-07-18  Bruno Haible  <bruno@clisp.org>
24376
24377         * m4/getndelim2.m4: New file.
24378         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
24379         invoke gl_PREREQ_GETNDELIM2.
24380         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
24381         gl_PREREQ_GETNDELIM2.
24382         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
24383         gl_GETNDELIM2.
24384
24385 2003-07-18  Bruno Haible  <bruno@clisp.org>
24386
24387         * lib/getndelim2.h: New file.
24388         * lib/getndelim2.c: Make into a module of its own. Include config.h,
24389         getndelim2.h.
24390         (getndelim2): Make non-static. Change return type to ssize_t.
24391         * lib/getline.h: Change argument names.
24392         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
24393         * lib/getnline.c: Include getndelim2.h.
24394
24395 2003-07-18  Andreas Schwab  <schwab@suse.de>
24396
24397         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
24398
24399 2003-07-17  Karl Berry  <karl@gnu.org>
24400
24401         * config/config.sub: update from prep.
24402
24403 2003-07-17  Bruno Haible  <bruno@clisp.org>
24404
24405         * modules/getnline: New file.
24406         * modules/getline: Add lib/getndelim2.c to source file list.
24407         * MODULES.html.sh (func_all_modules): Add getnline.
24408
24409 2003-07-17  Bruno Haible  <bruno@clisp.org>
24410
24411         * m4/getnline.m4: New file.
24412
24413 2003-07-17  Bruno Haible  <bruno@clisp.org>
24414
24415         * m4/Makefile.am.in: Remove file.
24416         * m4/Makefile.am: Remove file.
24417         * m4/Makefile.in: Remove file.
24418
24419 2003-07-17  Bruno Haible  <bruno@clisp.org>
24420
24421         * lib/getnline.h: New file.
24422         * lib/getnline.c: New file.
24423         * lib/getndelim2.c: New file, extracted from getline.c.
24424         (getndelim2): Renamed from getdelim2, with added nmax argument.
24425         * lib/getline.c: Include getndelim2.c.
24426         (getdelim2): Moved out to getndelim2.c.
24427         (getline, getdelim): Update.
24428
24429 2003-07-17  Bruno Haible  <bruno@clisp.org>
24430
24431         * lib/Makefile.am: Remove file.
24432         * lib/Makefile.in: Remove file.
24433
24434 2003-07-17  Bruno Haible  <bruno@clisp.org>
24435
24436         * configure.in: Remove file.
24437         * Makefile.in: Remove file.
24438
24439 2003-07-17  Bruno Haible  <bruno@clisp.org>
24440
24441         * MODULES.html.sh: Put the </BODY> right before </HTML>.
24442
24443 2003-07-16  Karl Berry  <karl@gnu.org>
24444
24445         * config/srclist-update: was running fixlicense twice, which caused
24446                 texinfo.tex to be nullified for some reason.  Simplify,
24447                 $gplsrc is no longer needed as far as I can see?
24448
24449 2003-07-16  Jim Meyering  <jim@meyering.net>
24450
24451         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
24452
24453 2003-07-15  Paul Eggert  <eggert@twinsun.com>
24454
24455         * config/srclist.txt: Get the following files from gettext-runtime/intl
24456         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
24457         ref-del.sin.  From Bruno Haible.
24458         * config/srclist-update (fixfile): Change grep pattern again, since the
24459         previous fix didn't work (there was another trailing $).  Use
24460         '[$]' to escape the $s.
24461
24462 2003-07-15  Karl Berry  <karl@gnu.org>
24463
24464         * lib/vasnprintf.c: update from gettext.
24465
24466 2003-07-15  Karl Berry  <karl@gnu.org>
24467
24468         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
24469         gets expanded when surrounded by '$'.
24470
24471 2003-07-15  Jim Meyering  <jim@meyering.net>
24472
24473         * modules/save-cwd: Don't depend on error.  From Derek Price.
24474
24475 2003-07-15  Jim Meyering  <jim@meyering.net>
24476
24477         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
24478
24479 2003-07-14  Simon Josefsson  <jas@extundo.com>
24480
24481         * modules/mempcpy: New file.
24482         * MODULES.html.sh (func_all_modules): Add mempcpy.
24483
24484 2003-07-14  Simon Josefsson  <jas@extundo.com>
24485
24486         * m4/mempcpy.m4: New file.
24487
24488 2003-07-14  Simon Josefsson  <jas@extundo.com>
24489
24490         * lib/mempcpy.h: New file.
24491         * lib/mempcpy.c: New file.
24492
24493 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24494
24495         * modules/getdate, modules/posixtm: Depend on mktime.
24496
24497 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24498
24499         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
24500         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
24501         unicodeio.c, unicodeio.h, unlocked-io.h:
24502         Switch from LGPL to GPL.
24503
24504 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24505
24506         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
24507         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
24508         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
24509         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
24510         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
24511         updated automatically by ../config/srclist-update.  This changes
24512         their license from LPGL to GPL.
24513
24514 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24515
24516         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
24517         assumed to refer to the root of the most recent stable gettext version.
24518         * config/srclistvars.sh: Add defaults for eggert.
24519         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
24520         Match "This program" as well as "The program".  This is needed
24521         for gettext.
24522
24523 2003-07-14  Jim Meyering  <jim@meyering.net>
24524
24525         Don't emit diagnostics.  Let callers do that.
24526         * lib/save-cwd.c: Don't include "error.h".
24527         (save_cwd): Don't call error.  Ensure that errno is valid
24528         when returning nonzero.
24529
24530         * lib/save-cwd.h (restore_cwd): Update prototype.
24531         * lib/save-cwd.c (restore_cwd): Remove two parameters.
24532         Simplify.  Don't call error upon failure.  Let callers do that.
24533         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
24534         when auditing is enabled.  But don't bother updating the #if.
24535
24536 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
24537
24538         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
24539         it breaks C++ compilation.
24540         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
24541
24542 2003-07-10  Simon Josefsson  <jas@extundo.com>
24543
24544         * modules/strchrnul (Makefile.am): Add strchrnul.h.
24545
24546 2003-07-10  Jim Meyering  <jim@meyering.net>
24547
24548         * m4/clock_time.m4: Remove trailing blank.
24549         * m4/intmax_t.m4: Likewise.
24550
24551 2003-07-10  Jim Meyering  <jim@meyering.net>
24552
24553         * lib/vasnprintf.c: Remove trailing blanks.
24554         Make cpp indentation consistent.
24555
24556 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24557
24558         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
24559         posixver.c, strftime.c, strnlen.c, strverscmp.c:
24560         Switch from LGPL to GPL.
24561
24562 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24563
24564         * config/srclist.txt: Sort sublists.  Add
24565         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
24566         that differ from gnulib for one reason or another; we'd like this list
24567         to be smaller but for now let's document what we have.
24568
24569 2003-07-08  Paul Eggert  <eggert@twinsun.com>
24570
24571         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
24572         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
24573         and sweeter "eval x=$x".
24574         * config/srclist.txt: Get lib/argp* from glibc.
24575
24576 2003-07-07  Paul Eggert  <eggert@twinsun.com>
24577
24578         * lib/mktime.c: Fix some boundary cases and remove need for floating
24579         point.
24580
24581         Issue a compile-time diagnostic if time_t is floating point, or if
24582         two's complement arithmetic is not in effect, or if arithmetic
24583         right shift does not propagate the sign.  These assumptions were
24584         all in the original code but they weren't checked.
24585
24586         (TIME_T_MIDPOINT, verify): New macros.
24587         (__isleap): Remove; it has integer overflow problems.
24588         (leapyear): New function, without those problems.
24589         (ydhms_tm_diff): Remove; splitting into two parts.
24590         (ydhms_diff): New function, containing the arithmetic part of
24591         the old ydhms_tm_diff function.  Issue a compile-time
24592         diagnostic if we are not using C99 integer division.
24593         Avoid casts when possible.
24594         (guess_time_tm): New function, containing the checking part of
24595         the old ydhms_tm_diff function.  Return the new value, rather than
24596         the difference between it and the old.  Accept a new argument T
24597         so that *T specifies the old value.  Check for overflow in the result.
24598
24599         (__mktime_internal): Use a time_t offset, not a long int offset.
24600         This undoes the 2003-06-04 change, which is no longer needed now
24601         that we have better overflow checking.
24602         (localtime_offset): Likewise.
24603
24604         (__mktime_internal): Avoid harmful overflow on hosts where time_t
24605         and long are 64-bit but int is only 32-bit.
24606         (ydhms_diff): Use long int to store year1 and yday1.
24607         Issue a compile-time diagnostic if long int is not wide enough.
24608
24609         (__mktime_internal): Use long int to store adjusted year and yday.
24610         Use plain C rather than preprocessor commands, if that doesn't
24611         affect efficiency.
24612         Check for overflow (and try to repair) after each probe
24613         rather than checking only at the very end.  This avoids some bugs
24614         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
24615         does not equal GMT offset at maximum time).
24616         Use integer to check for overflow rather than floating point; this
24617         is more portable to non-IEEE hosts, and is a tad faster.
24618         When we detect that we are oscillating between two values,
24619         don't check whether tm_isdst has the requested value, since
24620         we already know the answer.  When tm_isdst has the wrong value,
24621         use a different heuristic to find the right one, based on the
24622         extreme values actually observed in practice in tz2003a,
24623         rather than the (overly optimistic) "previous 3 calendar quarters".
24624
24625         (not_equal_tm, print_tm, check_result): Use "const T" rather than
24626         "T const" to accommodate glibc style.
24627         (check_result): Use less-confusing report format.  "long" -> "long int.
24628         (main): Likewise.
24629         Don't loop if the iteration overflows time_t.
24630         Allow a negative step in the iteration.
24631
24632 2003-07-06  Karl Berry  <karl@gnu.org>
24633
24634         * config/depcomp: update from automake.
24635         * config/config.sub: update from prep.
24636
24637 2003-07-03  Karl Berry  <karl@gnu.org>
24638
24639         * config/config.guess: update from prep.
24640
24641 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24642
24643         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
24644         xreadlink.c now includes it unconditionally.
24645
24646 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24647
24648         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
24649         having it depend on HAVE_SYS_TYPES_H.
24650
24651 2003-07-01  Bruno Haible  <bruno@clisp.org>
24652
24653         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
24654         <sys/types.h> should be sufficient.
24655         Reported by Paul Eggert.
24656
24657 2003-06-26  Karl Berry  <karl@gnu.org>
24658
24659         * config/depcomp: update from automake.
24660
24661 2003-06-26  Bruno Haible  <bruno@clisp.org>
24662
24663         * modules/human: Depend on module stdbool.
24664
24665 2003-06-25  Bruno Haible  <bruno@clisp.org>
24666
24667         * modules/readlink: New file.
24668         * modules/xreadlink: Depend on it.
24669         * MODULES.html.sh (func_all_modules): Add readlink.
24670
24671 2003-06-25  Bruno Haible  <bruno@clisp.org>
24672
24673         * m4/readlink.m4: New file.
24674
24675 2003-06-25  Bruno Haible  <bruno@clisp.org>
24676
24677         * lib/readlink.c: New file.
24678
24679 2003-06-22  Karl Berry  <karl@gnu.org>
24680
24681         * config/srclist.txt: update mkinstalldirs from automake.
24682         * config/mkinstalldirs: update.
24683
24684 2003-06-22  Bruno Haible  <bruno@clisp.org>
24685
24686         Portability to mingw32.
24687         * m4/ssize_t.m4: New file, from GNU gettext.
24688         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
24689         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
24690
24691 2003-06-22  Bruno Haible  <bruno@clisp.org>
24692
24693         * modules/safe-read: Add m4/ssize_t.m4.
24694         * modules/xreadlink: Add m4/ssize_t.m4.
24695
24696 2003-06-20  Bruno Haible  <bruno@clisp.org>
24697
24698         Assume C89, so PARAMS isn't needed.
24699         * lib/unicodeio.h (PARAMS): Remove.
24700         * lib/unicodeio.c: Don't use PARAMS.
24701
24702 2003-06-18  Karl Berry  <karl@gnu.org>
24703
24704         * config/config.{guess,sub}: update from prep.
24705
24706 2003-06-18  Jim Meyering  <jim@meyering.net>
24707
24708         Merge changes from coreutils.
24709         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
24710         Remove explicit declarations of xmalloc and realloc.
24711         Include xalloc.h.
24712         (read_utmp): Remove anachronistic cast of xmalloc.
24713
24714 2003-06-17  Paul Eggert  <eggert@twinsun.com>
24715
24716         Assume C89, so PARAMS isn't needed.
24717         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
24718         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
24719         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
24720         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
24721         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
24722         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
24723         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
24724         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
24725         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
24726         lib/xstrtod.h, lib/xstrtol.h: Likewise.
24727         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
24728         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
24729         no longer needed. Anyway, config.h should always be included before any
24730         other file.
24731
24732 2003-06-11  Simon Josefsson  <jas@extundo.com>
24733
24734         * modules/sysexits: New file.
24735         * MODULES.html.sh (func_all_modules): Add sysexits.
24736
24737 2003-06-11  Simon Josefsson  <jas@extundo.com>
24738
24739         * lib/sysexit_.h: New file.
24740
24741 2003-06-11  Derek Price  <derek@ximbiot.com>
24742
24743         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
24744         necessary.
24745
24746 2003-06-11  Bruno Haible  <bruno@clisp.org>
24747
24748         * m4/sysexits.m4: New file.
24749
24750 2003-06-10  Simon Josefsson  <jas@extundo.com>
24751
24752         * lib/argp.h: New file, from glibc.
24753         * lib/argp-ba.c: New file, from glibc.
24754         * lib/argp-eexst.c: New file, from glibc.
24755         * lib/argp-fmtstream.c: New file, from glibc.
24756         * lib/argp-fmtstream.h: New file, from glibc.
24757         * lib/argp-fs-xinl.c: New file, from glibc.
24758         * lib/argp-help.c: New file, from glibc.
24759         * lib/argp-namefrob.h: New file, from glibc.
24760         * lib/argp-parse.c: New file, from glibc.
24761         * lib/argp-pv.c: New file, from glibc.
24762         * lib/argp-pvh.c: New file, from glibc.
24763         * lib/argp-xinl.c: New file, from glibc.
24764
24765 2003-06-10  Simon Josefsson  <jas@extundo.com>
24766
24767         * modules/strchrnul: New file.
24768
24769 2003-06-10  Simon Josefsson  <jas@extundo.com>
24770
24771         * modules/argp: New file.
24772
24773 2003-06-10  Simon Josefsson  <jas@extundo.com>
24774
24775         * m4/strchrnul.m4: New file.
24776
24777 2003-06-10  Simon Josefsson  <jas@extundo.com>
24778
24779         * lib/strchrnul.h: New file.
24780         * lib/strchrnul.c: New file.
24781
24782 2003-06-10  Bruno Haible  <bruno@clisp.org>
24783
24784         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
24785
24786 2003-06-07  Karl Berry  <karl@gnu.org>
24787
24788         * config/config.{guess,sub}: update from prep.
24789
24790 2003-06-07  Jim Meyering  <jim@meyering.net>
24791
24792         * modules/strtod: Use $(...) notation, not @...@ for
24793         AC_REPLACE'd variables.
24794         * modules/localcharset: Likewise.
24795
24796 2003-06-07  Jim Meyering  <jim@meyering.net>
24797
24798         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
24799         in place of my name in the copyright comment.
24800         Remove definition and uses of __P.
24801
24802         From coreutils.
24803         * lib/stat.c: Don't declare xmalloc explicitly.
24804         Instead, include "xalloc.h".
24805         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
24806         xrealloc, and xcalloc return values.
24807         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
24808         Improve comment.
24809         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
24810
24811 2003-06-07  Bruno Haible  <bruno@clisp.org>
24812
24813         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
24814         avoid AC_CONFIG_LINKS.
24815         * modules/fnmatch (Makefile.am): Use explicit creation rule for
24816         fnmatch.h, to avoid AC_CONFIG_LINKS.
24817         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
24818
24819 2003-06-07  Bruno Haible  <bruno@clisp.org>
24820
24821         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
24822         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
24823         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24824         directory.
24825         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
24826         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24827         directory.
24828
24829 2003-06-06  Jim Meyering  <jim@meyering.net>
24830
24831         Merge from coreutils.
24832         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
24833         Consolidate declarations and initializations of *_base* locals.
24834
24835         Merge from coreutils.
24836         This avoids a core dump on systems without GNU putenv,
24837         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
24838         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
24839         (unsetenv): New static function, from GNU libc.
24840         (rpl_putenv): Use it.
24841
24842         * lib/modechange.c: Remove trailing blanks.
24843
24844         Merge from coreutils.
24845         * lib/fsusage.c: Remove declaration of statfs.
24846         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
24847
24848         * lib/posixtm.c: Include <stdbool.h> unconditionally.
24849
24850 2003-06-06  Jim Meyering  <jim@meyering.net>
24851
24852         * lib/stdbool_.h: Renamed from stdbool.h.in.
24853
24854 2003-06-06  Jim Meyering  <jim@meyering.net>
24855             Bruno Haible  <bruno@clisp.org>
24856
24857         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
24858         Adjust Makefile.am snippet not to redirect directly to target.
24859         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
24860
24861 2003-06-05  Paul Eggert  <eggert@twinsun.com>
24862
24863         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
24864         mismatch, look in future quarters as well as past.  This fixes a
24865         bug when processing fall-backwards gaps immediately after a long
24866         period of daylight-saving time.
24867
24868         * lib/mktime.c: Assume freestanding C89 or better.
24869         (HAVE_LIMITS_H): Remove.  Assume it's 1.
24870         (__P): Remove; not used.
24871         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
24872         (mktime, not_equal_tm, print_tm, check_result,
24873         main): Use prototypes.  Use const * where appropriate.
24874         (main): Fix typo in testing code that uncovered by above changes.
24875         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
24876
24877 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24878
24879         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
24880         locale.h, localeconv.  This merges changes from coreutils.
24881
24882         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
24883         It can be removed after the next Autoconf is released.
24884         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
24885         needed.
24886
24887 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24888
24889         * lib/mktime.c: Fix Debian bug 177940
24890         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
24891         (localtime_offset): Now long int, not time_t, because we want it
24892         to be guaranteed to be signed.  All uses changed.
24893         (__mktime_internal): If overflow would occur when adding offset,
24894         don't add it.
24895
24896         Merge 'human' changes from coreutils.  Rewrite to support
24897         locale-specific notations like thousands separators.
24898         * lib/human.c: Simplify authorship notice.
24899         Include human.h immediately after config.h.
24900         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
24901         <limits.h>: Do not include, since human.h does.
24902         (SIZE_MAX, UINTMAX_MAX): New macros.
24903         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
24904         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
24905         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
24906         (power_letter): Renamed from suffixes.
24907         (generate_suffix_backwards): Remove.
24908         (adjust_value): Now takes int style (because of human.h changes)
24909         and long double value (for greater precision on some platforms).
24910         (group_number): New function.
24911         (human_readable): Use it.  Use integer options, not enum.
24912         Put the options before the sizes in the arg list.
24913         Support all the new options.
24914         The old human_readable function has been removed;
24915         use inttostr.h instead.
24916         (human_readable, default_block_size, humblock):
24917         Use uintmax_t, not int, for block sizes.
24918         (human_readable_inexact, block_size_types): Remove.
24919         (block_size_opts): New constant.
24920         (human_options): Renamed from human_block_size, with new signature
24921         that allows block sizes up to UINTMAX_MAX.  All callers changed.
24922         * lib/human.h: Add copyright and authorship notice.
24923         Include <limits.h> and <stdbool.h> unconditionally.
24924         (PARAMS): Remove.  All uses removed.
24925         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
24926         (enum human_inexact_style): Remove tag; now a nameless enum.
24927         (human_floor, human_ceiling, human_round_to_even): Now have
24928         values 2, 0, 1 rather than -1, 1, 0.
24929         (human_group_digits, human_suppress_point_zero, human_autoscale,
24930         human_base_1024, human_SI, human_B): New constants.
24931         (human_readable_inexact, human_block_size): Remove.
24932         (human_readable): Size args are now uintmax_t, not int.
24933         (human_options): New decl.
24934
24935         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
24936         unnecessary now that we assume C89 or better.  This change
24937         imported from coreutils.
24938
24939         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
24940         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
24941         in the 2003-05-30 sync from glibc.
24942
24943         .h files should stand alone, but we shouldn't include <sys/types.h>
24944         if we can get away with just <stddef.h>.
24945
24946         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
24947         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
24948         rather than <sys/types.h>, as we merely need size_t.
24949         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
24950         to get size_t.
24951         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
24952         Include <stdio.h>, to get FILE.
24953         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
24954         memcasecmp.h has included <stddef.h> and all we need is size_t.
24955         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
24956         our interface, instead of including <sys/types.h>
24957
24958 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24959
24960         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
24961         now, as glibc mktime is buggy on non-glibc systems.
24962
24963 2003-06-03  Karl Berry  <karl@gnu.org>
24964
24965         * config/config.sub: update from prep.
24966
24967 2003-06-02  Paul Eggert  <eggert@twinsun.com>
24968
24969         [from coreutils]
24970         Fix some minor time-related bugs with POSIX time arguments.
24971         Some valid time stamps were being rejected (notably -1, and
24972         time stamps before 1900 on 64-bit hosts).  And some invalid
24973         time stamps were being accepted, e.g. September 31.
24974
24975         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
24976         that we can return (time_t) -1 successfully.
24977         * lib/posixtm.c: Likewise.
24978         [HAVE_STDBOOL_H]: Include <stdbool.h>.
24979         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
24980         (t): Remove static var.
24981         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
24982         of static var.  All uses changed.
24983         (year): Do not reject years before 1900; they can occur with
24984         64-bit time_t.
24985         (posix_time_parse): Do not check for out-of-range components;
24986         that is now the caller's responsibility, since our checks were
24987         only approximations.
24988         (posixtime): Use mktime to check for out-of-range components,
24989         since it knows them exactly.
24990         If mktime returns (time_t) -1, check whether an error actually occurred
24991         by invoking localtime on -1.
24992         (main) [TEST_POSIXTIME]: Check for input data errors, and report
24993         posixtime failures better.
24994         Improve the test data (in comments only).
24995
24996 2003-06-02  Karl Berry  <karl@gnu.org>
24997
24998         * config/mkinstalldirs (version): new variable.
24999         (--version): new option.
25000         (usage): improve message.
25001
25002 2003-05-30  Karl Berry  <karl@gnu.org>
25003
25004         * lib/mktime.c: update from libc.
25005
25006 2003-05-30  Bruno Haible  <bruno@clisp.org>
25007
25008         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
25009         * config/config.rpath: Upgrade to gettext-0.12.1.
25010
25011 2003-05-30  Bruno Haible  <bruno@clisp.org>
25012
25013         * m4/gettext.m4: Upgrade to gettext-0.12.1.
25014         * m4/nls.m4: New file, from gettext-0.12.1.
25015         * m4/po.m4: New file, from gettext-0.12.1.
25016         * m4/progtest.m4: Upgrade to gettext-0.12.1.
25017
25018 2003-05-30  Bruno Haible  <bruno@clisp.org>
25019
25020         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
25021         * lib/localcharset.h: Likewise.
25022         * lib/localcharset.c: Likewise.
25023
25024 2003-05-29  Karl Berry  <karl@gnu.org>
25025
25026         * config/config.rpath: update from gettext.
25027
25028 2003-05-28  Paul Eggert  <eggert@twinsun.com>
25029
25030         Assume the headers required for C89 freestanding compilers.
25031         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
25032         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
25033         * m4/human.m4 (gl_HUMAN): Likewise.
25034         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
25035         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
25036         * m4/userspec.m4 (gl_USERSPEC): Likewise.
25037         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
25038         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
25039         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
25040
25041 2003-05-28  Paul Eggert  <eggert@twinsun.com>
25042
25043         Assume the headers required for C89 freestanding compilers.
25044         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
25045         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
25046         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
25047         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
25048         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
25049         define, since <limits.h> is guaranteed to do that.
25050         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
25051         * lib/exclude.c: Include <stdbool.h> unconditionally.
25052         * lib/tempname.c: Include <stddef.h> unconditionally.
25053         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
25054         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
25055         <stddef.h> does that.
25056         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
25057         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
25058         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
25059         needed.
25060         * lib/xstrtol.c: Likewise.
25061         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
25062         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
25063
25064         * lib/addext.c (addext): Use assignment rather than cast, to avoid
25065         warnings on some platforms.
25066
25067         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
25068         arbitrarily.
25069
25070 2003-05-26  Jim Meyering  <jim@meyering.net>
25071
25072         Merge in a change from coreutils:
25073         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
25074         that is guaranteed to be `no'.  Use `no_such_member' to indicate
25075         that condition, rather than `-1' which is slightly misleading.
25076         Change the name of the cache variable to have the gl_ prefix.
25077         Prompted by a patch from Richard Dawe for DJGPP.
25078
25079 2003-05-24  Karl Berry  <karl@gnu.org>
25080
25081         * config/config.guess: update from prep.
25082
25083 2003-05-22  Karl Berry  <karl@gnu.org>
25084
25085         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
25086
25087 2003-05-20  Karl Berry  <karl@gnu.org>
25088
25089         * config/config.guess: update from prep.
25090
25091 2003-05-18  Karl Berry  <karl@gnu.org>
25092
25093         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
25094         might actually be set by the user.
25095
25096         * config/depcomp, install-sh, mdate-sh: update from automake.
25097
25098 2003-05-17  Bruno Haible  <bruno@clisp.org>
25099
25100         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
25101         invalid expansion for AC_EGREP_CPP.
25102         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
25103         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
25104         Suggested by Akim Demaille <akim@epita.fr> in
25105         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
25106
25107 2003-05-12  Jim Meyering  <jim@meyering.net>
25108
25109         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
25110         the space-padded-by-default conversion specifiers, %e, %k, %l.
25111
25112 2003-05-12  Bruno Haible  <bruno@clisp.org>
25113
25114         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
25115         the string is longer than 4 KB.
25116
25117 2003-05-11  Karl Berry  <karl@gnu.org>
25118
25119         * config/config.{guess,sub}: update from prep.
25120
25121 2003-05-09  Bruno Haible  <bruno@clisp.org>
25122
25123         * modules/error: Add m4/strerror_r.m4 to file list.
25124
25125 2003-05-03  Bruno Haible  <bruno@clisp.org>
25126
25127         Upgrade to Unicode-4.0.
25128         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
25129         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
25130         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
25131         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
25132         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
25133         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
25134         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
25135         Change width of U+E0100..U+E01EF from 1 to 0.
25136
25137 2003-04-25  Jim Meyering  <jim@meyering.net>
25138
25139         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
25140         of type size_t, not int.
25141
25142 2003-04-25  Bruno Haible  <bruno@clisp.org>
25143
25144         * lib/copy-file.c: Include <stddef.h>, for size_t.
25145
25146 2003-04-21  Paul Eggert  <eggert@twinsun.com>
25147
25148         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
25149         code which expansion is under static control.  Patch imported from
25150         Akim Demaille's patch to Bison; see
25151         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
25152
25153 2003-04-14  Bruno Haible  <bruno@clisp.org>
25154
25155         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
25156
25157 2003-04-11  Jim Meyering  <jim@meyering.net>
25158
25159         Merge changes from Coreutils.
25160
25161         2003-03-22  Jim Meyering  <jim@meyering.net>
25162
25163         * lib/strftime.c (widen): Cast alloca return value to proper type.
25164
25165         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
25166
25167         From GNU libc.
25168         * lib/strftime.c (my_strftime): Handle very large width
25169         specifications for numeric values correctly.  Improve checks for
25170         overflow.
25171
25172         2003-01-19  Jim Meyering  <jim@meyering.net>
25173
25174         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
25175         definitions.
25176         (nl_get_alt_digit) [! defined my_strftime]: Define.
25177         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
25178         _nl_get_alt_digit and _nl_get_walt_digit.
25179
25180         * lib/strftime.c (my_strftime): Merge in locale-related changes from
25181         libc. These changes have no effect outside of _LIBC.
25182
25183 2003-04-10  Bruno Haible  <bruno@clisp.org>
25184
25185         * modules/findprog: New file.
25186         * MODULES.html.sh (func_all_modules): Add it.
25187
25188 2003-04-10  Bruno Haible  <bruno@clisp.org>
25189
25190         * m4/findprog.m4: New file.
25191         * m4/eaccess.m4: New file.
25192
25193 2003-04-10  Bruno Haible  <bruno@clisp.org>
25194
25195         * lib/findprog.h: New file, from GNU gettext.
25196         * lib/findprog.c: New file, from GNU gettext.
25197
25198 2003-04-05  Jim Meyering  <jim@meyering.net>
25199
25200         Merge changes from Coreutils.
25201
25202         * lib/exclude.h (PARAMS): Remove definition and uses.
25203         * lib/exclude.c: Remove uses of `PARAMS'.
25204
25205         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
25206         Add test-cases for DOS filenames. Declare program_name.
25207         (main): Set up program_name.  Patch by Rich Dawe.
25208
25209         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
25210         error from mntctl.
25211         Use mntctl's return value to drive the entry-processing loop, since
25212         we can't rely on the value of the vmt_length member in the last
25213         entry.  On some systems doing so could result in exhausting
25214         virtual memory.  Based in part on a patch from Mike Jetzer.
25215
25216 2003-04-04  Bruno Haible  <bruno@clisp.org>
25217
25218         * modules/linebreak: New file.
25219         * MODULES.html.sh (func_all_modules): Add it.
25220
25221 2003-04-04  Bruno Haible  <bruno@clisp.org>
25222
25223         * m4/linebreak.m4: New file.
25224
25225 2003-04-04  Bruno Haible  <bruno@clisp.org>
25226
25227         * lib/linebreak.h: New file, from GNU gettext.
25228         * lib/linebreak.c: New file, from GNU gettext with slight
25229         modifications.
25230         * lib/lbrkprop.h: New file, from GNU gettext.
25231
25232 2003-04-03  Bruno Haible  <bruno@clisp.org>
25233
25234         * modules/utf8-ucs4: New file.
25235         * modules/utf16-ucs4: New file.
25236         * modules/ucs4-utf8: New file.
25237         * modules/ucs4-utf16: New file.
25238         * MODULES.html.sh (func_all_modules): Add them.
25239
25240 2003-04-03  Bruno Haible  <bruno@clisp.org>
25241
25242         * m4/utf-ucs4.m4: New file.
25243         * m4/ucs4-utf.m4: New file.
25244
25245 2003-04-03  Bruno Haible  <bruno@clisp.org>
25246
25247         * lib/utf8-ucs4.h: New file, from GNU gettext.
25248         * lib/utf16-ucs4.h: New file, from GNU gettext.
25249         * lib/ucs4-utf8.h: New file, from GNU gettext.
25250         * lib/ucs4-utf16.h: New file, from GNU gettext.
25251
25252 2003-04-02  Bruno Haible  <bruno@clisp.org>
25253
25254         * modules/binary-io: New file.
25255         * MODULES.html.sh (func_all_modules): Add it.
25256
25257 2003-04-02  Bruno Haible  <bruno@clisp.org>
25258
25259         * lib/binary-io.h: New file, from GNU gettext.
25260
25261 2003-04-01  Bruno Haible  <bruno@clisp.org>
25262
25263         * modules/pathname: New file.
25264         * MODULES.html.sh (func_all_modules): Add it.
25265
25266 2003-04-01  Bruno Haible  <bruno@clisp.org>
25267
25268         * lib/pathname.h: New file, from GNU gettext.
25269         * lib/concatpath.c: New file, from GNU gettext.
25270
25271 2003-03-30  Bruno Haible  <bruno@clisp.org>
25272
25273         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
25274
25275 2003-03-30  Bruno Haible  <bruno@clisp.org>
25276
25277         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
25278         function chown() doesn't exist.
25279
25280 2003-03-28  Bruno Haible  <bruno@clisp.org>
25281
25282         * modules/copy-file: New file.
25283         * MODULES.html.sh (func_all_modules): Add it.
25284
25285 2003-03-28  Bruno Haible  <bruno@clisp.org>
25286
25287         * m4/copy-file.m4: New file.
25288
25289 2003-03-28  Bruno Haible  <bruno@clisp.org>
25290
25291         * lib/copy-file.h: New file, from GNU gettext.
25292         * lib/copy-file.c: New file, from GNU gettext.
25293
25294 2003-03-18  Jim Meyering  <jim@meyering.net>
25295
25296         * lib/quote.c (quote_n): Fix typo in comment.
25297
25298 2003-03-18  Bruno Haible  <bruno@clisp.org>
25299
25300         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
25301         checking.
25302         * m4/onceonly_2_57.m4: Likewise.
25303
25304 2003-03-17  Bruno Haible  <bruno@clisp.org>
25305
25306         * m4/onceonly.m4: Require autoconf 2.54 or newer.
25307         (m4_quote): Remove macro.
25308         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
25309
25310 2003-03-14  Jim Meyering  <jim@meyering.net>
25311
25312         Merge changes from Coreutils.
25313         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
25314         to be const, in order to avoid warnings.
25315         (obstack_room): Likewise.
25316         (obstack_empty_p): Likewise.
25317
25318 2003-03-14  Bruno Haible  <bruno@clisp.org>
25319
25320         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
25321         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
25322
25323 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25324
25325         Merge changes from Bison.
25326         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
25327         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
25328         when compiling Bison 1.875's `bitset bset = obstack_alloc
25329         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
25330         * lib/hash.c: Include <stdbool.h> unconditionally.
25331
25332 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25333
25334         * m4/onceonly.m4 (m4_quote): New macro.
25335         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
25336         Quote AC_FOREACH variable-expansions properly.
25337
25338 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25339
25340         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
25341
25342 2003-03-09  Paul Eggert  <eggert@twinsun.com>
25343
25344         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
25345         Reported by Bruce Becker; see:
25346         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
25347
25348 2003-03-03  Paul Eggert  <eggert@twinsun.com>
25349             Bruno Haible  <bruno@clisp.org>
25350
25351         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
25352         Reported by John Hughes, see
25353         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
25354
25355 2003-02-20  Bruno Haible  <bruno@clisp.org>
25356
25357         * MODULES.html.sh (func_all_modules): Add poll.
25358
25359 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25360
25361         * modules/poll: New file.
25362
25363 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25364
25365         * lib/poll_.h: New file.
25366         * lib/poll.c: New file.
25367
25368 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25369
25370         * m4/poll.m4: New file.
25371
25372 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25373
25374         * modules/mathl: New file.
25375
25376 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25377
25378         * lib/mathl.h: New file.
25379         * lib/acosl.c: New file.
25380         * lib/asinl.c: New file.
25381         * lib/atanl.c: New file.
25382         * lib/ceill.c: New file.
25383         * lib/cosl.c: New file.
25384         * lib/expl.c: New file.
25385         * lib/floorl.c: New file.
25386         * lib/frexpl.c: New file.
25387         * lib/ldexpl.c: New file.
25388         * lib/logl.c: New file.
25389         * lib/sincosl.c: New file.
25390         * lib/sinl.c: New file.
25391         * lib/sqrtl.c: New file.
25392         * lib/tanl.c: New file.
25393         * lib/trigl.c: New file.
25394         * lib/trigl.h: New file.
25395
25396 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25397
25398         * m4/mathl.m4: New file.
25399
25400 2003-02-18  Bruno Haible  <bruno@clisp.org>
25401
25402         * MODULES.html.sh (func_all_modules): Add mathl.
25403
25404 2003-02-17  Bruno Haible  <bruno@clisp.org>
25405
25406         * modules/mkdtemp: New module.
25407         * MODULES.html.sh (func_all_modules): Add it.
25408
25409 2003-02-17  Bruno Haible  <bruno@clisp.org>
25410
25411         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
25412
25413 2003-02-17  Bruno Haible  <bruno@clisp.org>
25414
25415         * lib/mkdtemp.h: New file, from GNU gettext.
25416         * lib/mkdtemp.c: New file, from GNU gettext.
25417
25418 2003-02-02  Jim Meyering  <jim@meyering.net>
25419
25420         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
25421         e.g. glibc-2.2.93.
25422
25423 2003-01-31  Bruno Haible  <bruno@clisp.org>
25424
25425         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
25426         'rpl_rename'.
25427         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
25428         'rpl_strnlen'.
25429         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
25430         'rpl_strtod'.
25431         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
25432         'rpl_utime'.
25433
25434 2003-01-31  Bruno Haible  <bruno@clisp.org>
25435
25436         * lib/rename.c: #undef rename before defining rpl_rename.
25437         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
25438
25439 2003-01-30  Bruno Haible  <bruno@clisp.org>
25440
25441         * modules/vasnprintf, modules/vasprintf: New modules.
25442         * MODULES.html.sh (func_all_modules): Add them.
25443
25444 2003-01-30  Bruno Haible  <bruno@clisp.org>
25445
25446         * m4/signed.m4: New file, from GNU gettext.
25447         * m4/longdouble.m4: New file, from GNU gettext.
25448         * m4/wchar_t.m4: New file, from GNU gettext.
25449         * m4/wint_t.m4: New file, from GNU gettext.
25450         * m4/vasnprintf.m4: New file.
25451         * m4/vasprintf.m4: New file.
25452
25453 2003-01-30  Bruno Haible  <bruno@clisp.org>
25454
25455         * lib/printf-args.h: New file, from GNU gettext.
25456         * lib/printf-args.c: New file, from GNU gettext.
25457         * lib/printf-parse.h: New file, from GNU gettext.
25458         * lib/printf-parse.c: New file, from GNU gettext.
25459         * lib/vasnprintf.h: New file, from GNU gettext.
25460         * lib/vasnprintf.c: New file, from GNU gettext.
25461         * lib/asnprintf.c: New file, from GNU gettext.
25462         * lib/vasprintf.h: New file, from GNU gettext with modifications.
25463         * lib/vasprintf.c: New file, from GNU gettext.
25464         * lib/asprintf.c: New file, from GNU gettext.
25465
25466 2003-01-29  Bruno Haible  <bruno@clisp.org>
25467
25468         * modules/stpncpy: New module.
25469         * MODULES.html.sh (func_all_modules): Add it.
25470
25471 2003-01-29  Bruno Haible  <bruno@clisp.org>
25472
25473         * m4/stpncpy.m4: New file.
25474
25475 2003-01-29  Bruno Haible  <bruno@clisp.org>
25476
25477         * lib/stpncpy.h: New file, from GNU gettext with modifications.
25478         * lib/stpncpy.c: New file, from GNU gettext with modifications.
25479
25480 2003-01-28  Bruno Haible  <bruno@clisp.org>
25481
25482         * modules/c-ctype: New module.
25483         * MODULES.html.sh (func_all_modules): Add it.
25484
25485 2003-01-28  Bruno Haible  <bruno@clisp.org>
25486
25487         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
25488         Paul Eggert.
25489         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
25490         Paul Eggert.
25491
25492 2003-01-27  Bruno Haible  <bruno@clisp.org>
25493
25494         * modules/xsetenv: New module.
25495         * MODULES.html.sh (func_all_modules): Add it.
25496
25497 2003-01-27  Bruno Haible  <bruno@clisp.org>
25498
25499         * lib/xsetenv.h: New file, from GNU gettext.
25500         * lib/xsetenv.c: New file, from GNU gettext.
25501
25502 2003-01-23  Jim Meyering  <jim@meyering.net>
25503
25504         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
25505         from working on systems without dirfd (at least Irix and OSF1/Tru64).
25506
25507 2003-01-23  Bruno Haible  <bruno@clisp.org>
25508
25509         * modules/minmax: New module.
25510         * MODULES.html.sh (func_all_modules): Add it.
25511
25512 2003-01-23  Bruno Haible  <bruno@clisp.org>
25513
25514         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
25515         Eggert.
25516
25517 2003-01-22  Bruno Haible  <bruno@clisp.org>
25518
25519         * modules/exit: New module.
25520         * MODULES.html.sh (func_all_modules): Add it.
25521
25522 2003-01-22  Bruno Haible  <bruno@clisp.org>
25523
25524         * lib/exit.h: New file, from GNU gettext.
25525
25526 2003-01-19  Bruno Haible  <bruno@clisp.org>
25527
25528         * gnulib-tool: Recognize option --extract-maintainer.
25529         (func_get_maintainer): New function.
25530         * modules/*: Add Maintainer entry.
25531
25532 2003-01-16  Jim Meyering  <jim@meyering.net>
25533
25534         * m4/regex.m4: The `regex' struct is both input and output.
25535         Initialize it before each use.  Patch by Tim Waugh.
25536
25537 2003-01-16  Bruno Haible  <bruno@clisp.org>
25538
25539         * MODULES.html.sh: Add a table of contents. Add the module name as
25540         leftmost column. Add hyperlinks.
25541
25542 2003-01-15  Bruno Haible  <bruno@clisp.org>
25543
25544         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
25545
25546 2003-01-15  Bruno Haible  <bruno@clisp.org>
25547
25548         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
25549         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
25550         suffix.
25551
25552 2003-01-15  Bruno Haible  <bruno@clisp.org>
25553
25554         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
25555
25556 2003-01-15  Bruno Haible  <bruno@clisp.org>
25557
25558         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
25559         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
25560
25561 2003-01-14  Jim Meyering  <jim@meyering.net>
25562
25563         * lib/same.c (same_name): Tweak a comment.
25564
25565 2003-01-14  Bruno Haible  <bruno@clisp.org>
25566
25567         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
25568         when a string comparison is sufficient.
25569
25570 2003-01-14  Bruno Haible  <bruno@clisp.org>
25571
25572         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
25573         'unsigned int'.
25574
25575 2003-01-14  Bruno Haible  <bruno@clisp.org>
25576
25577         * lib/hash-pjw.c: Add comment about low quality of this function.
25578
25579 2003-01-13  Bruno Haible  <bruno@clisp.org>
25580
25581         * modules/stpcpy: Distribute lib/stpcpy.h.
25582         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
25583
25584 2003-01-13  Bruno Haible  <bruno@clisp.org>
25585
25586         * modules/*: Add a description.
25587         * modules/strpbrk: Fix Makefile.am snippet.
25588         * modules/strtoimax: Fix dependencies.
25589         * modules/strtoumax: Likewise.
25590
25591 2003-01-13  Bruno Haible  <bruno@clisp.org>
25592
25593         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
25594         * modules/alloca (Makefile.am): All object files depend on alloca.h.
25595         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
25596
25597 2003-01-13  Bruno Haible  <bruno@clisp.org>
25598
25599         * gnulib-tool (func_create_testdir): Store config/* files in the main
25600         directory.
25601         * config.rpath: Move to ...
25602         * config/config.rpath: ... here.
25603         * modules/gettext: Contains config/config.rpath, not config.rpath.
25604         * modules/iconv: Likewise.
25605
25606 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25607
25608         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25609         to avoid collisions with libcurses and libreadline.
25610
25611         * m4/getstr.m4: Remove.
25612         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
25613
25614 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25615
25616         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25617         to avoid collisions with libcurses and libreadline.
25618
25619         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
25620         * lib/getstr.h, getstr.c: Remove.
25621         * lib/getline.c: Include "getline.h", to check interface.
25622         Move body of old getstr.c here: this defines MIN_CHUNK and
25623         declares getdelim2, which is renamed from getstr.
25624         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
25625
25626         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
25627         All uses changed.
25628         * lib/linebuffer.h: Likewise.
25629         (readline): Remove backward-compatibility macro.
25630
25631 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25632
25633         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25634         to avoid collisions with libcurses and libreadline.
25635         * getstr: Remove.
25636         * MODULES.html.sh: Remove getstr.
25637         * modules/getline: Depend on unlocked-io, not getstr.
25638
25639 2003-01-12  Jim Meyering  <jim@meyering.net>
25640
25641         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
25642
25643 2003-01-10  Bruno Haible  <bruno@clisp.org>
25644
25645         * modules/alloca: Change Makefile.am requirements. Simplify Include
25646         requirements. Add lib/alloca_.h to file list.
25647
25648 2003-01-10  Bruno Haible  <bruno@clisp.org>
25649
25650         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
25651
25652 2003-01-10  Bruno Haible  <bruno@clisp.org>
25653
25654         * lib/alloca_.h: New file.
25655         * lib/getdate.y: Unconditionally include alloca.h.
25656         * lib/makepath.c: Likewise.
25657         * lib/setenv.c: Likewise.
25658         * lib/userspec.c: Likewise.
25659
25660 2003-01-09  Karl Berry  <karl@gnu.org>
25661
25662         * MODULES.html.sh: include `dirname $0` in PATH, to find
25663         gnulib-tool.
25664
25665 2003-01-09  Bruno Haible  <bruno@clisp.org>
25666
25667         * modules/stdbool: Change configure.ac, Makefile.am requirements.
25668         Simplify Include requirements. Add lib/stdbool.h.in to file list.
25669
25670 2003-01-09  Bruno Haible  <bruno@clisp.org>
25671
25672         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
25673
25674 2003-01-09  Bruno Haible  <bruno@clisp.org>
25675
25676         * lib/stdbool.h.in: New file.
25677
25678 2003-01-09  Bruno Haible  <bruno@clisp.org>
25679
25680         * gnulib-tool (func_all_modules): Ignore files ending in ~.
25681         * MODULES.html.sh: Likewise.
25682
25683 2003-01-08  Jim Meyering  <jim@meyering.net>
25684
25685         * lib/full-write.c: Undefine and define-away `const' after inclusion
25686         of errno.h, not before.  Suggestion from Bruno Haible.
25687
25688 2003-01-08  Bruno Haible  <bruno@clisp.org>
25689
25690         * modules/full-read: Depend on full-write.
25691
25692 2003-01-08  Bruno Haible  <bruno@clisp.org>
25693
25694         * lib/safe-read.c: Include specification header first, to ensure its
25695         selfcontainedness.
25696         * lib/full-write.c: Likewise.
25697
25698 2003-01-07  Jim Meyering  <jim@meyering.net>
25699
25700         * lib/full-write.c: Rework so that it may serve to define full_read,
25701         too.
25702         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
25703
25704 2003-01-07  Bruno Haible  <bruno@clisp.org>
25705
25706         * lib/strtoimax.c: Include <stdint.h> as an alternative to
25707         <inttypes.h>.
25708         * lib/xstrtol.h: Likewise.
25709         * lib/xstrtoimax.c: Likewise.
25710         * lib/xstrtoumax.c: Likewise.
25711         * lib/human.h: Likewise.
25712
25713         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
25714         on systems that have <inttypes.h> but not <stdint.h>.
25715
25716 2003-01-07  Bruno Haible  <bruno@clisp.org>
25717
25718         * MODULES.html.sh: Add copyright notice.
25719         (missed_files): Omit CVS directory entries.
25720         (func_module): Make it work with sed-3.02.
25721         * MODULES.txt: Remove file.
25722
25723 2003-01-06  Jim Meyering  <jim@meyering.net>
25724
25725         * lib/version-etc.c: Update year in translatable copyright string.
25726
25727 2003-01-03  Karl Berry  <karl@gnu.org>
25728
25729         * config/config.{guess,sub}: update from prep.
25730
25731 2003-01-02  Karl Berry  <karl@gnu.org>
25732
25733         * doc/COPYING.DOC: belatedly updated to 1.2.
25734
25735 2003-01-01  Karl Berry  <karl@gnu.org>
25736
25737         * gnulib-tool (func_verify_module): report module name $module in
25738         error message, not $1.
25739         * gnulib-tool (create-testdir): don't complain if destdir couldn't
25740         be created, only if it doesn't exist.
25741         * gnulib-tool (last_checkin_date): don't expand the $Date here.
25742
25743 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25744
25745         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
25746
25747 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25748
25749         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
25750         memcmp if strcoll doesn't work.
25751
25752 2002-12-31  Bruno Haible  <bruno@clisp.org>
25753
25754         * lib/utime.c (utime_null): No need to call ftruncate if the file was
25755         nonempty.
25756
25757 2002-12-31  Bruno Haible  <bruno@clisp.org>
25758
25759         * lib/memcoll.c (STRCOLL): New macro.
25760         (memcoll): Use it.
25761
25762 2002-12-31  Bruno Haible  <bruno@clisp.org>
25763
25764         * lib/localcharset.h: New file.
25765         * lib/localcharset.c: Include it.
25766         * lib/unicodeio.c: Likewise.
25767
25768 2002-12-31  Bruno Haible  <bruno@clisp.org>
25769
25770         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
25771         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
25772
25773 2002-12-31  Bruno Haible  <bruno@clisp.org>
25774
25775         * lib/getline.h: Include <stddef.h>, for size_t.
25776
25777         * lib/unicodeio.h: Include <stddef.h>, for size_t.
25778         * lib/unicodeio.c: Don't include <stddef.h>.
25779
25780 2002-12-31  Bruno Haible  <bruno@clisp.org>
25781
25782         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
25783         HAVE_TM_ZONE.
25784
25785 2002-12-24  Karl Berry  <karl@gnu.org>
25786
25787         * config/config.guess: update from prep.
25788
25789 2002-12-24  Bruno Haible  <bruno@clisp.org>
25790
25791         General infrasructure.
25792         * m4/README: Rewritten.
25793         * m4/onceonly.m4: New file.
25794         * m4/onceonly_2_57.m4: New file.
25795
25796         Module atexit.
25797         * m4/atexit.m4: New file.
25798
25799         Module strtod.
25800         * m4/strtod.m4: New file.
25801
25802         Module strtol.
25803         * m4/strtol.m4: New file.
25804
25805         Module strtoul.
25806         * m4/strtoul.m4: New file.
25807
25808         Module memchr.
25809         * m4/memchr.m4: New file.
25810
25811         Module memcmp.
25812         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
25813         (jm_FUNC_MEMCMP): Invoke it.
25814
25815         Module memcpy.
25816         * m4/memcpy.m4: New file.
25817
25818         Module memmove.
25819         * m4/memmove.m4: New file.
25820
25821         Module memset.
25822         * m4/memset.m4: New file.
25823
25824         Module strcspn.
25825         * m4/strcspn.m4: New file.
25826
25827         Module strpbrk.
25828         * m4/strpbrk.m4: New file.
25829
25830         Module strstr.
25831         * m4/strstr.m4: New file.
25832
25833         Module strerror.
25834         * m4/strerror.m4: New file.
25835
25836         Module mktime.
25837         * m4/mktime.m4: Renamed from jm-mktime.m4.
25838         (gl_PREREQ_MKTIME): New macro.
25839         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
25840
25841         Module malloc.
25842         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
25843         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
25844         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
25845
25846         Module realloc.
25847         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
25848         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
25849         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
25850
25851         Module strftime.
25852         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
25853         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
25854         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
25855         gl_TM_GMTOFF.
25856         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
25857
25858         Module xalloc.
25859         * m4/xalloc.m4: New file.
25860
25861         Module alloca.
25862         * m4/alloca.m4: New file.
25863
25864         Module putenv.
25865         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
25866         (jm_FUNC_PUTENV): Invoke it.
25867
25868         Module setenv.
25869         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
25870         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
25871         when invoked twice.
25872         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
25873         gt_FUNC_SETENV.
25874
25875         Module memrchr.
25876         * m4/memrchr.m4: New file.
25877
25878         Module stpcpy.
25879         * m4/stpcpy.m4: New file.
25880
25881         Module strcase.
25882         * m4/strcase.m4: New file.
25883
25884         Module strdup.
25885         * m4/strdup.m4: New file.
25886
25887         Module strnlen.
25888         * m4/strnlen.m4: New file.
25889
25890         Module strndup.
25891         * m4/strndup.m4: New file.
25892
25893         Module xstrtod.
25894         * m4/xstrtod.m4: New file.
25895
25896         Module xstrtol.
25897         * m4/xstrtol.m4: New file.
25898
25899         Module getdate.
25900         * m4/getdate.m4: New file.
25901
25902         Module unlocked-io.
25903         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
25904         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
25905         * m4/jm-glibc-io.m4n: Remove file.
25906
25907         Module long-options.
25908         * m4/long-options.m4: New file.
25909
25910         Module md5.
25911         * m4/md5.m4: New file.
25912
25913         Module sha.
25914         * m4/sha.m4: New file.
25915
25916         Module getstr.
25917         * m4/getstr.m4: New file.
25918
25919         Module getline.
25920         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
25921         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
25922         <sys/types.h>, for size_t. Use the function name gnu_getline, not
25923         simply getline. Infoke gl_PREREQ_GETLINE.
25924
25925         Module obstack.
25926         * m4/obstack.m4: New file.
25927
25928         Module hash.
25929         * m4/hash.m4: New file.
25930
25931         Module readtokens.
25932         * m4/readtokens.m4: New file.
25933
25934         Module strverscmp.
25935         * m4/strverscmp.m4: New file.
25936
25937         Module stdbool.
25938         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
25939         OSF/1.
25940
25941         Module strtoll.
25942         * m4/strtoll.m4: New file.
25943
25944         Module strtoull.
25945         * m4/strtoull.m4: New file.
25946
25947         Module strtoimax.
25948         * m4/strtoimax.m4: New file.
25949
25950         Module strtoumax.
25951         * m4/strtoumax.m4: New file.
25952
25953         Module xstrtoimax.
25954         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
25955         jm_AC_PREREQ_XSTRTOIMAX.
25956         Moved the strtol prerequisites to strtol.m4.
25957         Moved the strtoll prerequisites to strtoll.m4.
25958         Moved the strtoimax prerequisites to strtoimax.m4.
25959
25960         Module xstrtoumax.
25961         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
25962         jm_AC_PREREQ_XSTRTOUMAX.
25963         Moved the strtoul prerequisites to strtoul.m4.
25964         Moved the strtoull prerequisites to strtoull.m4.
25965         Moved the strtoumax prerequisites to strtoumax.m4.
25966
25967         Module chown.
25968         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
25969         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
25970
25971         Module dup2.
25972         * m4/dup2.m4: New file.
25973
25974         Module ftruncate.
25975         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
25976         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
25977
25978         Module getgroups.
25979         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
25980         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
25981
25982         Module gettimeofday.
25983         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
25984         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
25985         gl_PREREQ_GETTIMEOFDAY.
25986
25987         Module mkdir.
25988         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
25989         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
25990
25991         Module mkstemp.
25992         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
25993         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
25994         jm_AC_TYPE_UINTMAX_T.
25995         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
25996
25997         Module stat.
25998         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
25999         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
26000
26001         Module lstat.
26002         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
26003         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
26004
26005         Module timespec.
26006         * m4/timespec.m4 (gl_TIMESPEC): New macro.
26007         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
26008         * m4/st_mtim.m4: Indentation.
26009
26010         Module nanosleep.
26011         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
26012         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
26013         gl_PREREQ_NANOSLEEP.
26014
26015         Module regex.
26016         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
26017         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
26018         (gl_REGEX): New macro.
26019
26020         Module rename.
26021         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
26022         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
26023
26024         Module rmdir.
26025         * m4/rmdir.m4: New file.
26026
26027         Module utime.
26028         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
26029         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
26030         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
26031
26032         Module dirname.
26033         * m4/dirname.m4: New file.
26034
26035         Module getopt.
26036         * m4/getopt.m4: New file.
26037
26038         Module unistd-safer.
26039         * m4/unistd-safer.m4: New file.
26040
26041         Module fnmatch.
26042         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
26043         declaration.
26044         (gl_PREREQ_FNMATCH_EXTRA): New macro.
26045         (gl_FUNC_FNMATCH_POSIX): New macro.
26046         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
26047         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
26048         simply fnmatch.
26049
26050         Module exclude.
26051         * m4/exclude.m4: New file.
26052
26053         Module human.
26054         * m4/human.m4: New file.
26055
26056         Module acl.
26057         * m4/acl.m4: Nop.
26058
26059         Module backupfile.
26060         * m4/backupfile.m4: New file.
26061         * m4/d-ino.m4: Indentation.
26062
26063         Module fsusage.
26064         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
26065         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
26066         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
26067
26068         Module dirfd.
26069         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
26070         requirements.
26071
26072         Module euidaccess.
26073         * m4/euidaccess.m4: New file.
26074
26075         Module file-type.
26076         * m4/file-type.m4: New file.
26077
26078         Module fileblocks.
26079         * m4/fileblocks.m4: New file.
26080
26081         Module filemode.
26082         * m4/filemode.m4: New file.
26083
26084         Module isdir.
26085         * m4/isdir.m4: New file.
26086
26087         Module lchown.
26088         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
26089         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
26090
26091         Module makepath.
26092         * m4/makepath.m4: New file.
26093
26094         Module modechange.
26095         * m4/modechange.m4: New file.
26096
26097         Module mountlist.
26098         * m4/mountlist.m4: New file.
26099         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
26100         Indentation.
26101
26102         Module path-concat.
26103         * m4/path-concat.m4: New file.
26104
26105         Module pathmax.
26106         * m4/pathmax.m4: New file.
26107
26108         Module same.
26109         * m4/same.m4: New file.
26110
26111         Module save-cwd.
26112         * m4/save-cwd.m4: New file.
26113
26114         Module savedir.
26115         * m4/savedir.m4: New file.
26116
26117         Module xgetcwd.
26118         * m4/xgetcwd.m4: New file.
26119         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
26120
26121         Module xreadlink.
26122         * m4/xreadlink.m4: New file.
26123
26124         Module safe-read.
26125         * m4/safe-read.m4: New file.
26126
26127         Module safe-write.
26128         * m4/safe-write.m4: New file.
26129
26130         Module closeout.
26131         * m4/closeout.m4: New file.
26132
26133         Module stdio-safer.
26134         * m4/stdio-safer.m4: New file.
26135
26136         Module getpass.
26137         * m4/getpass.m4: New file.
26138
26139         Module getugroups.
26140         * m4/getugroups.m4: New file.
26141
26142         Module group-member.
26143         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
26144         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
26145
26146         Module idcache.
26147         * m4/idcache.m4: New file.
26148
26149         Module userspec.
26150         * m4/userspec.m4: New file.
26151
26152         Module gettime.
26153         * m4/clock_time.m4: New file.
26154         * m4/gettime.m4: New file.
26155
26156         Module settime.
26157         * m4/settime.m4: New file.
26158
26159         Module posixtm.
26160         * m4/posixtm.m4: New file.
26161
26162         Module gethostname.
26163         * m4/gethostname.m4: New file.
26164
26165         Module canon-host.
26166         * m4/canon-host.m4: New file.
26167
26168         Module gettext.
26169         * m4/codeset.m4: New file, from gettext-0.11.5.
26170         * m4/gettext.m4: New file, from gettext-0.11.5.
26171         * m4/glibc21.m4: New file, from gettext-0.11.5.
26172         * m4/iconv.m4: New file, from gettext-0.11.5.
26173         * m4/intdiv0.m4: New file, from gettext-0.11.5.
26174         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
26175         * m4/inttypes.m4: New file, from gettext-0.11.5.
26176         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
26177         * m4/isc-posix.m4: New file, from gettext-0.11.5.
26178         * m4/lcmessage.m4: New file, from gettext-0.11.5.
26179         * m4/lib-ld.m4: New file, from gettext-0.11.5.
26180         * m4/lib-link.m4: New file, from gettext-0.11.5.
26181         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
26182         * m4/progtest.m4: New file, from gettext-0.11.5.
26183         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
26184         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
26185         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
26186
26187         Module localcharset.
26188         * m4/localcharset.m4: New file.
26189
26190         Module hard-locale.
26191         * m4/hard-locale.m4: New file.
26192
26193         Module mbswidth.
26194         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
26195         onceonly macros.
26196         * m4/mbrtowc.m4: Add comment.
26197
26198         Module memcasecmp.
26199         * m4/memcasecmp.m4: New file.
26200
26201         Module memcoll.
26202         * m4/memcoll.m4: New file.
26203
26204         Module unicodeio.
26205         * m4/unicodeio.m4: New file.
26206
26207         Module rpmatch.
26208         * m4/rpmatch.m4: New file.
26209
26210         Module yesno.
26211         * m4/yesno.m4: New file.
26212
26213         Module exitfail.
26214         * m4/exitfail.m4: New file.
26215
26216         Module c-stack.
26217         * m4/c-stack.m4 (gl_C_STACK): New macro.
26218         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
26219
26220         Module error.
26221         * m4/error.m4 (gl_ERROR): New macro.
26222         (jm_PREREQ_ERROR): Use onceonly macros.
26223
26224         Module fatal.
26225         * m4/fatal.m4: New file.
26226
26227         Module getloadavg.
26228         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
26229         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
26230
26231         Module getpagesize.
26232         * m4/getpagesize.m4: New file.
26233
26234         Module getusershell.
26235         * m4/getusershell.m4: New file.
26236
26237         Module physmem.
26238         * m4/physmem.m4: New file.
26239
26240         Module posixver.
26241         * m4/posixver.m4: New file.
26242
26243         Module quotearg.
26244         * m4/quotearg.m4: New file.
26245
26246         Module quote.
26247         * m4/quote.m4: New file.
26248
26249         Module readutmp.
26250         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
26251
26252         Module sig2str.
26253         * m4/sig2str.m4: New file.
26254
26255         Other.
26256         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
26257         ulonglong.m4.
26258         * m4/intmax_t.m4: New file.
26259         * m4/d-type.m4: Indentation.
26260         * m4/jm-macros.m4: Update.
26261         * m4/prereq.m4 (jm_PREREQ): Update.
26262         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
26263         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
26264         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
26265         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
26266         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
26267         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
26268         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
26269         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
26270         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
26271         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
26272         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
26273         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
26274         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
26275         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
26276         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
26277         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
26278         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
26279         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
26280         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
26281
26282 2002-12-24  Bruno Haible  <bruno@clisp.org>
26283
26284         * MODULES.txt: Update according to m4/ changes.
26285
26286         Module gettext.
26287         * config.rpath: New file, from gettext-0.11.5.
26288
26289         * modules/*: New module descriptions.
26290         * gnulib-tool: New file.
26291         * MODULES.html.sh: New file.
26292
26293 2002-12-21  Karl Berry  <karl@gnu.org>
26294
26295         * doc/fdl.texi: update to version 1.2.
26296
26297 2002-12-19  Karl Berry  <karl@gnu.org>
26298
26299         * config/config.guess: update from prep.
26300
26301 2002-12-18  Bruno Haible  <bruno@clisp.org>
26302
26303         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
26304         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
26305
26306 2002-12-17  Bruno Haible  <bruno@clisp.org>
26307
26308         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
26309         stdlib.h, string.h.
26310
26311 2002-12-17  Bruno Haible  <bruno@clisp.org>
26312
26313         * lib/canon-host.c (strdup): Remove unused declaration.
26314
26315         * lib/fsusage.c: Include full_read.h.
26316         (get_fs_usage): Use full_read instead of safe_read.
26317
26318         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
26319
26320 2002-12-12  Karl Berry  <karl@gnu.org>
26321
26322         * config/config.guess: update from prep.
26323
26324 2002-12-11  Bruno Haible  <bruno@clisp.org>
26325
26326         * m4/setenv.m4: New file, from gettext-0.11.5.
26327
26328 2002-12-11  Bruno Haible  <bruno@clisp.org>
26329
26330         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
26331         not unsetenv().
26332         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
26333         modifications:
26334
26335         2002-12-11  Bruno Haible  <bruno@clisp.org>
26336
26337                 * setenv.c (alloca): Fall back to malloc.
26338                 (freea): New macro.
26339                 (setenv): Use freea() to free memory allocated with alloca().
26340
26341         2002-11-13  Bruno Haible  <bruno@clisp.org>
26342
26343                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
26344                 function declarations.
26345                 * unsetenv.c (unsetenv): Likewise.
26346
26347         2002-03-04  Bruno Haible  <bruno@clisp.org>
26348
26349                 Portability to AIX 4.3.3.
26350                 * unsetenv.c: New file, extracted from setenv.c.
26351                 * setenv.c: Move the unsetenv() function to unsetenv.c.
26352
26353         2001-12-20  Bruno Haible  <bruno@clisp.org>
26354
26355                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
26356                 use malloc instead. For SunOS 4.
26357
26358         2001-12-11  Bruno Haible  <bruno@clisp.org>
26359
26360                 * setenv.c: Declare alloca.
26361                 (compar_fn_t): New typedef.
26362                 (KNOWN_VALUE, STORE_VALUE): Use it.
26363
26364         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
26365         setenv.h.
26366
26367 2002-12-10  Paul Eggert  <eggert@twinsun.com>
26368
26369         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
26370         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
26371         Choose values that are less likely to collide with system fnmatch
26372         options.
26373         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
26374         defined (e.g., a pure POSIX system).
26375         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
26376         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
26377
26378 2002-12-06  Paul Eggert  <eggert@twinsun.com>
26379
26380         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
26381         a pain in practice to deal with generated m4 files.  This change
26382         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
26383
26384         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
26385         and jm-glibc-io.m4, as they are no longer a special case.
26386         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
26387         kludge and the auto-generation stuff.  Check only whether the
26388         functions are declared, not whether they exist, since older hosts
26389         that don't declare the functions can't use the optimization anyway.
26390
26391 2002-12-06  Jim Meyering  <jim@meyering.net>
26392
26393         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
26394
26395         Merge in changes from libc's misc/error.c, in preparation
26396         for the merge of gnulib's changes back into libc.
26397
26398         * lib/error.c (_): Define only if not already defined.
26399         Move definition to follow all #include directives.
26400         Include unlocked-io.h only if !_LIBC.
26401         [_LIBC]: Include <libio/libioP.h>.
26402         [USE_IN_LIBIO]: Include <libio/iolibio.h>
26403         (fflush): Tweak definition to use INTUSE.
26404         (putc): Define.
26405
26406 2002-12-05  Paul Eggert  <eggert@twinsun.com>
26407
26408         * lib/alloca.c [defined emacs]: Include "lisp.h".
26409         (xalloc_die) [defined emacs]: New macro.
26410         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
26411         [! defined emacs]: Include <xalloc.h>.
26412         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
26413         (pointer): Typedef to POINTER_TYPE *.
26414         (malloc): Remove decl; we now always use xmalloc.
26415         (alloca): Use old-style definition, since Emacs needs this.
26416         Check for arithmetic overflow when computing combined size.
26417
26418 2002-12-04  Paul Eggert  <eggert@twinsun.com>
26419
26420         Do not generate unlocked-io.h automatically, since it's easier to
26421         maintain it by hand.
26422
26423         * lib/unlocked-io.h: New file, from GNU diffutils,
26424         but with proper copyright notice and attribution.
26425         * lib/gen-uio: Remove.
26426         * lib/Makefile.am: Add copyright notice.
26427         (libfetish_a_SOURCES): Add unlocked-io.h.
26428         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
26429         (DISTCLEANFILES, io_functions): Remove macros.
26430         (EXTRA_DIST): Remove gen_uio.
26431         (unlocked-io.h): Remove rule.
26432
26433 2002-12-04  Jim Meyering  <jim@meyering.net>
26434
26435         Reflect the fact that stat.c and lstat.c are no longer generated.
26436         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
26437         (DISTCLEANFILES): Likewise.
26438         (EXTRA_DIST): Likewise.
26439         (all_local): Don't depend on stat.c or lstat.c.
26440         (stat.c, lstat.c): Remove rules.
26441         (EXTRA_DIST): Remove xstat.in.
26442
26443         * lib/xstat.in: Remove file.  Contents moved into stat.c.
26444         * lib/stat.c: New file.  Contents mostly from xstat.in.
26445         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
26446         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
26447
26448         * lib/safe-read.c: Rework so that it may serve to define safe_write,
26449         too.
26450         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
26451
26452 2002-12-03  Jim Meyering  <jim@meyering.net>
26453
26454         * lib/safe-read.c, safe-write.c: Change variable names and comments,
26455         but not semantics, to minimize the differences between these two files.
26456         (safe_read): Change comment to mention SAFE_READ_ERROR.
26457
26458         * lib/safe-read.c (IS_EINTR): Define.
26459         (safe_read): Use IS_EINTR in place of in-function cpp directives.
26460
26461 2002-12-02  Jim Meyering  <jim@meyering.net>
26462
26463         * lib/safe-read.c (EINTR): Define.
26464         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
26465         (INT_MAX): Provide fallback.
26466         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
26467
26468         * lib/safe-read.h (SAFE_READ_ERROR): Define.
26469
26470 2002-12-02  Bruno Haible  <bruno@clisp.org>
26471
26472         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
26473         Define, taken from safe-read.c.
26474         (INT_MAX): Provide fallback.
26475         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
26476         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
26477
26478         * lib/safe-read.c (EINTR): Remove definition.
26479         (safe_read): Don't use EINTR if it is absent.
26480
26481 2002-12-01  Jim Meyering  <jim@meyering.net>
26482
26483         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
26484         zero.
26485         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
26486
26487 2002-11-27  Paul Eggert  <eggert@twinsun.com>
26488
26489         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
26490         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
26491         with `if (! (value < limit)) abort ();', for readability.
26492
26493 2002-11-26  Karl Berry  <karl@gnu.org>
26494
26495         * lib/strdup.c: copy from libc again, with jim's ok.
26496         * lib/.cppi-disable: re-add strdup.c
26497
26498 2002-11-25  Karl Berry  <karl@gnu.org>
26499
26500         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
26501         instead of "strtol.c".
26502
26503 2002-11-25  Karl Berry  <karl@gnu.org>
26504
26505         * config/install-sh: update from automake for variable quoting, $0 in
26506         error msgs, etc.
26507
26508         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
26509         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
26510         entry.
26511
26512 2002-11-25  Jim Meyering  <jim@meyering.net>
26513
26514         * lib/mktime.c: Sync from libc, now that it has the latest fix.
26515
26516 2002-11-24  Karl Berry  <karl@gnu.org>
26517
26518         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
26519         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
26520
26521 2002-11-24  Jim Meyering  <jim@meyering.net>
26522
26523         Update from coreutils:
26524
26525         * lib/mktime.c: Merge in changes from libc.
26526
26527         Avoid a link-time failure on some Linux systems.
26528         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
26529         (otherwise).
26530         (__mon_yday): Declare with the STATIC attribute.
26531         (__mktime_internal): Likewise.
26532         Based on a report from Greg Schafer.
26533
26534 2002-11-23  Jim Meyering  <jim@meyering.net>
26535
26536         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
26537         Use `unsigned', not `int', as type of index.
26538
26539         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
26540
26541         * lib/fsusage.c: Remove unneeded parentheses around operands of
26542         `defined'.
26543
26544 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26545
26546         * lib/quotearg.h: Allow multiple inclusion by surrounding with
26547         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
26548         so that we can be included first.
26549         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
26550         * lib/quotearg.c: Include quotearg.h immediately after config.h.
26551         No need to include stddef.h or sys/types.h any more.
26552         Surround local include files with "", not "<>".
26553         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
26554         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
26555         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
26556         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
26557         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
26558         (ISPRINT): Remove; no longer needed now that we assume C89.
26559
26560         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
26561         Preserve errno.
26562
26563         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
26564         quotearg_char): Use SIZE_MAX rather than
26565         (size_t) -1 when we are talking about "infinity".
26566
26567         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
26568
26569 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26570
26571         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
26572         hint that one should use `if (! x) abort ();' rather than `assert
26573         (x);', and anyway it's one less thing to worry about configuring.
26574         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
26575         hash_rehash, hash_insert): Use abort rather than assert.
26576
26577 2002-11-22  Bruno Haible  <bruno@clisp.org>
26578
26579         * lib/safe-read.h: Assume C89. Add comments.
26580         (safe_read): Change return type to size_t.
26581         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
26582         byte counts > SSIZE_MAX correctly.
26583         * lib/safe-write.h: New file.
26584         * lib/safe-write.c: New file.
26585         * lib/full-read.h: New file.
26586         * lib/full-read.c: New file.
26587         * lib/full-write.h: Assume C89. Add comments.
26588         * lib/full-write.c: Include safe-write.h.
26589         (full_write): Rewritten to use safe_write.
26590         Suggested by Jim Meyering and Paul Eggert.
26591
26592 2002-11-21  Jim Meyering  <jim@meyering.net>
26593
26594         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
26595
26596         Merge in changes from the coreutils.
26597
26598         2002-09-25  Paul Eggert  <eggert@twinsun.com>
26599         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
26600         <stdint.h>.
26601         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
26602         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
26603         int.  Work more efficiently if X is the same width as uintmax_t.
26604         Do not compare X to -1, to avoid bogus compiler warning.
26605         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
26606         Don't assume that f_frsize and f_bsize are the same type.
26607
26608         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
26609         warning on FreeBSD.
26610
26611         * lib/makepath.c (make_path): Restore umask *before* creating the final
26612         component.
26613         (make_path): Minor reformatting.
26614
26615         * lib/xmalloc.c: Adjust to work with new autoconf macros,
26616         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
26617         HAVE_MALLOC/HAVE_REALLOC.
26618
26619         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
26620         dummy ones.  At least on GNU/Linux systems, `auto' means something
26621         else.
26622         From Michael Stone.
26623
26624 2002-11-21  Bruno Haible  <bruno@clisp.org>
26625
26626         Remove case insensitive option matching.
26627         * lib/argmatch.h (argcasematch): Remove declaration.
26628         (ARGCASEMATCH): Remove macro.
26629         (__xargmatch_internal): Remove case_sensitive argument.
26630         (XARGMATCH): Update.
26631         (XARGCASEMATCH): Remove macro.
26632         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
26633         case_sensitive argument.
26634         (argcasematch): Remove function.
26635         (__xargmatch_internal): Remove case_sensitive argument.
26636         (main): Use XARGMATCH instead of XARGCASEMATCH.
26637
26638         * lib/xmalloc.c: Change compile-time error message. Add comment about
26639         required autoconf version.
26640
26641 2002-11-20  Paul Eggert  <eggert@twinsun.com>
26642
26643         Merge argmatch cleanups from Bison.  Assume C89.
26644
26645         * lib/argmatch.c: Include config.h here, not in argmatch.h.
26646         Include stdlib.h, for EXIT_FAILURE.
26647         Always include <string.h>, since we assume C89.
26648         (EXIT_FAILURE): Remove pre-C89 bug workaround.
26649         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
26650         Include <stddef.h> instead, since it's all we need for size_t.
26651         (PARAMS): Remove.  All uses removed.
26652         (ARRAY_CARDINALITY): Do not bother to #undef.
26653         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
26654         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26655         Remove unnecessary parentheses.
26656         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26657         Insert necessary parentheses.
26658         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
26659         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
26660
26661 2002-11-19  Bruno Haible  <bruno@clisp.org>
26662
26663         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
26664         * lib/mbswidth.h: Include <stddef.h>, for size_t.
26665
26666         * lib/mbswidth.h (PARAMS): Remove macro.
26667         (mbswidth, mbsnwidth): Use ANSI C function declarations.
26668         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
26669
26670         * lib/gcd.h (PARAMS): Remove macro.
26671         (gcd): Use ANSI C function declarations.
26672         * lib/gcd.c (gcd): Likewise.
26673
26674 2002-11-15  Bruno Haible  <bruno@clisp.org>
26675
26676         * lib/strcspn.c: Include <stddef.h>.
26677         (strcspn): Use ANSI C function declaration. Change return type to
26678         size_t. Use NULL.
26679         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
26680         (strpbrk): Use NULL.
26681         * lib/strpbrk.h (PARAMS): Remove macro.
26682         (strpbrk): Use ANSI C function declaration.
26683         * lib/strstr.c: Don't include <sys/types.h>.
26684         * lib/strstr.h (PARAMS): Remove macro.
26685         (strstr): Use ANSI C function declarations.
26686
26687 2002-11-14  Karl Berry  <karl@gnu.org>
26688
26689         * config/mkinstalldirs: `do' on separate line, instead of
26690         `for var; do'.
26691
26692 2002-11-06  Bruno Haible  <bruno@clisp.org>
26693
26694         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
26695         * lib/gcd.c (gcd): Likewise.
26696
26697 2002-11-05  Bruno Haible  <bruno@clisp.org>
26698
26699         * lib/gcd.h: New file, from gettext-0.11.5.
26700         * lib/gcd.c: New file, from gettext-0.11.5.
26701
26702 2002-11-05  Bruno Haible  <bruno@clisp.org>
26703
26704         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26705         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26706         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26707         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26708
26709         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
26710         <libintl.h>.
26711         * lib/makepath.c: Include gettext.h instead of <locale.h> and
26712         <libintl.h>.
26713
26714         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
26715         * lib/human.c: Include gettext.h instead of <libintl.h>.
26716         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
26717         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
26718         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
26719         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
26720         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
26721         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
26722         (textdomain): Remove definition.
26723         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
26724
26725         * lib/long-options.c: Remove include of <libintl.h> and definition of
26726         _.
26727         * lib/same.c: Remove include of <libintl.h> and definition of _.
26728
26729 2002-11-04  Owen Taylor  <otaylor@redhat.com>
26730
26731         * lib/config.charset: A few additions for Solaris.
26732
26733 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26734
26735         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
26736         * lib/localcharset.c (locale_charset): Declare as extern "C".
26737
26738 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26739
26740         * lib/config.charset: msdos in uk_UA uses CP1125.
26741
26742 2002-11-04  Bruno Haible  <bruno@clisp.org>
26743
26744         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
26745         * lib/strcase.h: New file, from GNU gettext-0.11.5.
26746         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
26747         * lib/strstr.h: New file, from GNU gettext-0.11.5.
26748         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
26749
26750 2002-11-04  Bruno Haible  <bruno@clisp.org>
26751
26752         * lib/localcharset.c (locale_charset): Don't return an empty string.
26753
26754 2002-11-04  Bruno Haible  <bruno@clisp.org>
26755
26756         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
26757         aliases.
26758
26759 2002-11-04  Bruno Haible  <bruno@clisp.org>
26760
26761         * lib/config.charset: Update for newest glibc. Add canonical names
26762         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
26763
26764 2002-11-04  Bruno Haible  <bruno@clisp.org>
26765
26766         * lib/config.charset: Add support for NetBSD.
26767
26768 2002-11-04  Bruno Haible  <bruno@clisp.org>
26769
26770         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
26771
26772 2002-11-01  Bruno Haible  <bruno@clisp.org>
26773
26774         * configure.in: Add AC_CONFIG_AUX_DIR call.
26775         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
26776         test/Makefile.
26777         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
26778
26779 2002-09-28  Karl Berry  <karl@gnu.org>
26780
26781         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
26782         installed automake until the next release, since changes have been
26783         made.
26784
26785 2002-09-25  Karl Berry  <karl@gnu.org>
26786
26787         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
26788         * lib/getopt*: copy from libc/posix.
26789         * lib/gettext.h: copy from gettext.
26790         * lib/.cppi-disable: add strdup.c, gettext.h.
26791
26792 2002-09-25  Karl Berry  <karl@gnu.org>
26793
26794         * config/srclist.txt: enable gettext.h check.
26795         * config/config.{guess,sub}: update from prep.
26796         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
26797                 from automake 1.6.3.
26798         See srclist*.
26799
26800 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
26801
26802         * regex.c (PATFETCH): Remove the translating fetch.
26803         (PATFETCH_RAW): Rename to PATFETCH.
26804         (set_image_of_range): New fun.
26805         (SET_RANGE_TABLE_WORK_AREA): Use it.
26806         (regex_compile): Don't translate the pattern chars so eagerly.
26807         Only do it when inserting an `exactn' bytecode or when handling
26808         a char-range.
26809         (mutually_exclusive_p): Avoid empty statement.
26810
26811 2002-07-06  Jim Meyering  <meyering@lucent.com>
26812
26813         * m4/README: Don't mention Makefile.am.in.
26814         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
26815
26816 2002-07-01  Jim Meyering  <meyering@lucent.com>
26817
26818         * lib/c-stack.c: Include sys/time.h.
26819         From Volker Borchert.
26820
26821 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26822
26823         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
26824
26825 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26826
26827         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
26828         New macro.  Use it uniformly instead of
26829         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
26830         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
26831         reported by Vin Shelton.
26832
26833 2002-06-22  Paul Eggert  <eggert@twinsun.com>
26834
26835         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
26836         Do not assume SA_SIGINFO behavior.
26837         Bug reported by Jim Meyering on NetBSD 1.5.2.
26838
26839 2002-06-22  Jim Meyering  <meyering@lucent.com>
26840
26841         * m4/c-stack.m4: New file, from diffutils-2.8.2.
26842         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
26843
26844         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
26845         now that configure.ac uses AC_GNU_SOURCE.
26846         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
26847         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
26848
26849         Update to latest tools.  Suggestions from Paul Eggert.
26850         * m4/stdbool.m4: New file, from diffutils-2.8.2.
26851         * m4/gnu-source.m4: Update from diffutils-2.8.2.
26852         * m4/fnmatch.m4: Likewise.
26853         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
26854         to AC_HEADER_STDBOOL
26855
26856 2002-06-22  Jim Meyering  <meyering@lucent.com>
26857
26858         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
26859         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
26860
26861 2002-06-22  Jim Meyering  <meyering@lucent.com>
26862
26863         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
26864
26865         * lib/exitfail.c, exitfail.h: Likewise.
26866         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
26867
26868         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
26869         of fnmatch.h.
26870         (EXTRA_DIST): Add fnmatch_loop.c.
26871         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
26872
26873         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
26874         * lib/fnmatch.c: Update from diffutils-2.8.2.
26875         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
26876         * lib/fnmatch.h: Remove file.
26877
26878 2002-06-21  Jim Meyering  <meyering@lucent.com>
26879
26880         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
26881         * m4/mbrtowc.m4: Likewise.
26882
26883         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
26884         * m4/mbswidth.m4: Reflect name change:
26885         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
26886         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
26887
26888         * m4/lib-link.m4: Update from gettext-0.11.2.
26889         * m4/gettext.m4: Likewise.
26890
26891         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
26892         From Alfred M. Szmidt.
26893
26894 2002-06-18  Paul Eggert  <eggert@twinsun.com>
26895
26896         * lib/file-type.h: Report an error if neither S_ISREG nor
26897         S_IFREG is defined, instead of using a test specific to glibc
26898         2.2.  This should be safe, since POSIX requires S_ISREG and
26899         Unix Version 7 had S_IFREG.  We don't need to check for
26900         <sys/types.h> since we don't use any symbols that it defines.
26901
26902 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
26903
26904         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
26905         $@-t, so that each temporary file name is unique and valid in the first
26906         8 characters, for operation under DOS.
26907
26908 2002-06-15  Paul Eggert  <eggert@twinsun.com>
26909
26910         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
26911
26912 2002-06-15  Jim Meyering  <meyering@lucent.com>
26913
26914         Work even with DJGPP 2.03, which lacks support for symlinks.
26915         From Richard Dawe.
26916         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
26917         is defined.
26918         * lib/lchown.c (S_ISLNK): Likewise.
26919
26920 2002-06-15  Jim Meyering  <meyering@lucent.com>
26921
26922         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
26923         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
26924         have been included before this file.
26925
26926 2002-06-14  Jim Meyering  <meyering@lucent.com>
26927
26928         * lib/file-type.h: Use the version from diffutils-2.8.2.
26929         * lib/file-type.c: Likewise.
26930
26931 2002-06-07  Jim Meyering  <meyering@lucent.com>
26932
26933         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
26934         They're needed at least for NetBSD 1.5.2.
26935         ($statxfs_includes): Include those same headers.
26936         ($statxfs_includes): Include sys/vfs.h if available.
26937         ($statxfs_includes): Likewise for sys/statvfs.h.
26938         Check for the following members in both structs statfs and statvfs:
26939         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
26940
26941 2002-06-01  Jim Meyering  <meyering@lucent.com>
26942
26943         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
26944         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
26945
26946 2002-05-28  Jim Meyering  <meyering@lucent.com>
26947
26948         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
26949         Reported by Volker Borchert.
26950
26951 2002-05-27  Jim Meyering  <meyering@lucent.com>
26952
26953         Fix a problem seen only on nonconforming systems whereby ls.c's
26954         use of localtime, and then of gettimeofday would cause trouble:
26955         the localtime call used to initialize rpl_gettimeofday's save
26956         mechanism would clobber ls's current local time information so
26957         that in any long listing the first file would always be listed
26958         with date 1970-01-01.  Analysis by Volker Borchert.
26959
26960         * lib/gettimeofday.c (localtime): Undefine.
26961         (rpl_localtime): New function.
26962
26963 2002-05-27  Jim Meyering  <meyering@lucent.com>
26964
26965         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
26966         localtime.
26967
26968         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
26969         use the replacement function; it wouldn't resolve at link time.
26970         Reported by Volker Borchert.
26971
26972 2002-05-22  Jim Meyering  <meyering@lucent.com>
26973
26974         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
26975         file-type.h.
26976         * lib/file-type.h: New file.
26977         * lib/file-type.c (file_type): New file/function.  Extracted from
26978         diffutils.
26979
26980 2002-04-30  Jim Meyering  <meyering@lucent.com>
26981
26982         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
26983
26984 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26985
26986         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
26987
26988 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26989
26990         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
26991         Do not check for alloca.h (no longer used) or stdbool.h (was never
26992         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
26993
26994 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26995
26996         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
26997
26998 2002-04-29  Jim Meyering  <meyering@lucent.com>
26999
27000         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
27001         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
27002         Use AC_FUNC_STRNLEN here instead.
27003
27004         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
27005         With autoconf-2.53a, it's part of AC_PROG_CC.
27006
27007 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27008
27009         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
27010         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
27011
27012 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27013
27014         * lib/sig2str.h, lib/sig2str.c: New files.
27015         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
27016
27017 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27018
27019         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
27020         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
27021         of 127, since 64 is the largest conceivable number for ancient
27022         nonstandard hosts.
27023         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
27024
27025 2002-04-28  Jim Meyering  <meyering@lucent.com>
27026
27027         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
27028
27029 2002-04-24  Jim Meyering  <meyering@lucent.com>
27030
27031         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
27032         (jm_PREREQ): Use it.
27033
27034         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
27035         mach/mach.h fcntl.h.
27036         Check for this function: setlocale.
27037
27038 2002-04-24  Jim Meyering  <meyering@lucent.com>
27039
27040         * lib/gettext.h: New file, from Gettext.
27041         * lib/Makefile.am (INCLUDES): Remove -I../intl.
27042         (libfetish_a_SOURCES): Add gettext.h.
27043
27044 2002-04-16  Jim Meyering  <meyering@lucent.com>
27045
27046         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
27047         ut_pid, ut_id, ut_exit.
27048
27049 2002-04-16  Jim Meyering  <meyering@lucent.com>
27050
27051         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
27052         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
27053         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
27054
27055 2002-04-12  Jim Meyering  <meyering@lucent.com>
27056
27057         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
27058         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
27059         existence of the getmntinfo function.  Needed for Darwin 5.3.
27060
27061         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
27062         This is necessary at least on Darwin 5.3.
27063
27064         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
27065         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
27066         strnlen.o in the library, and that makes some versions of ranlib
27067         object.
27068
27069 2002-04-12  Jim Meyering  <meyering@lucent.com>
27070
27071         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
27072
27073 2002-04-09  Jim Meyering  <meyering@lucent.com>
27074
27075         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
27076         to be more precise.  Rather than saying we're checking whether the
27077         function `works', say what we're testing.
27078         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
27079         Reported by Bruno Haible.
27080
27081 2002-03-10  Jim Meyering  <meyering@lucent.com>
27082
27083         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
27084         Suggestion from Santiago Vila.
27085
27086 2002-03-08  Jim Meyering  <meyering@lucent.com>
27087
27088         * lib/rename.c: Mention that this wrapper is needed also on
27089         mips-dec-ultrix4.4 systems.
27090
27091 2002-03-02  Jim Meyering  <meyering@lucent.com>
27092
27093         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
27094         not HAVE_CLOCK_SETTIME.
27095
27096 2002-02-27  Paul Eggert  <eggert@twinsun.com>
27097
27098         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
27099         Check for clock_settime.
27100
27101 2002-02-27  Paul Eggert  <eggert@twinsun.com>
27102
27103         * lib/nanosleep.h: Rename to....
27104         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
27105
27106         * lib/gettime.c: New file.
27107         * lib/settime.c: New file.
27108         * lib/stime.c: Remove.
27109
27110         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
27111         timespec.h.  Remove nanosleep.h.
27112
27113 2002-02-25  Paul Eggert  <eggert@twinsun.com>
27114
27115         * m4/acl.m4: New file.
27116         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
27117         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
27118
27119 2002-02-25  Paul Eggert  <eggert@twinsun.com>
27120
27121         * lib/acl.c, lib/acl.h: New files.
27122         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
27123
27124 2002-02-24  Jim Meyering  <meyering@lucent.com>
27125
27126         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
27127         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
27128         cause trouble.  Reported by Nelson Beebe.
27129
27130 2002-02-23  Paul Eggert  <eggert@twinsun.com>
27131
27132         * lib/path-concat.c (xpath_concat): Reorder code to pacify
27133         compilers that don't know that xalloc_die never returns.
27134
27135 2002-02-20  Jim Meyering  <meyering@lucent.com>
27136
27137         * lib/getdate.c: Regenerate using bison-1.33.
27138
27139 2002-02-17  Jim Meyering  <meyering@lucent.com>
27140
27141         * config/config.guess (main): Don't use `head -1'; it's no longer
27142         portable. Use `sed 1q' instead.
27143
27144 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
27145
27146         * m4/codeset.m4: Upgrade to gettext-0.11.
27147         * m4/gettext.m4: Upgrade to gettext-0.11.
27148         * m4/glibc21.m4: Upgrade to gettext-0.11.
27149         * m4/iconv.m4: Upgrade to gettext-0.11.
27150         * m4/isc-posix.m4: Upgrade to gettext-0.11.
27151         * m4/lcmessage.m4: Upgrade to gettext-0.11.
27152         * m4/lib-ld.m4: New file, from gettext-0.11.
27153         * m4/lib-link.m4: New file, from gettext-0.11.
27154         * m4/lib-prefix.m4: New file, from gettext-0.11.
27155         * m4/progtest.m4: Upgrade to gettext-0.11.
27156
27157 2002-02-15  Paul Eggert  <eggert@twinsun.com>
27158
27159         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
27160         (jm_PREREQ): Use it.
27161
27162 2002-02-15  Paul Eggert  <eggert@twinsun.com>
27163
27164         * lib/posixver.c, lib/posixver.h: New files.
27165         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
27166
27167 2002-02-02  Paul Eggert  <eggert@twinsun.com>
27168             Bruno Haible  <bruno@clisp.org>
27169
27170         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
27171         (fwrite_success_callback): New declaration.
27172         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
27173         print_unicode_char. Call failure callback instead of error.
27174         (fwrite_success_callback): New function.
27175         (exit_failure_callback): New function.
27176         (fallback_failure_callback): New function.
27177         (print_unicode_char): Call unicode_to_mb.
27178
27179 2002-01-26  Jim Meyering  <meyering@lucent.com>
27180
27181         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
27182         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
27183
27184 2002-01-26  Jim Meyering  <meyering@lucent.com>
27185
27186         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
27187
27188 2002-01-22  Paul Eggert  <eggert@twinsun.com>
27189
27190         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
27191
27192 2002-01-22  Jim Meyering  <meyering@lucent.com>
27193
27194         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
27195         Otherwise, some versions of automake would omit the rule that makes
27196         Makefile from Makefile.in.
27197
27198 2002-01-21  Paul Eggert  <eggert@twinsun.com>
27199
27200         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
27201         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
27202         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
27203         (memcoll): Set errno to zero if there is no error.
27204
27205         * lib/quotearg.c (quotearg_buffer_restyled):
27206         Fix bug with quoting buffers containing NUL when backslashing escapes.
27207         This bug was exposed by the other changes in this patch.
27208         (quotearg_n_options): New arg ARGSIZE.
27209         All callers changed.
27210         (quoting_options_from_style): New function.
27211         (quotearg_n_style): Use it.
27212         (quotearg_n_style_mem): New function.
27213
27214         * lib/quotearg.h (quotearg_n_style_mem): New function.
27215
27216 2002-01-19  Jim Meyering  <meyering@lucent.com>
27217
27218         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
27219         Remove useless quotes: DF_PROG="df".
27220         * m4/strnlen.m4: New file.
27221
27222 2002-01-16  Paul Eggert  <eggert@twinsun.com>
27223
27224         * lib/backupfile.c (ISDIGIT): Comment fix.
27225         * lib/getdate.y (ISDIGIT): Likewise.
27226         * lib/posixtm.c (ISDIGIT, year): Likewise.
27227         * lib/strverscmp.c (ISDIGIT): Likewise.
27228         * lib/userspec.c (ISDIGIT): Likewise.
27229
27230 2002-01-16  Jim Meyering  <meyering@lucent.com>
27231
27232         * lib/getdate.y: Add three semicolons, each just before a closing
27233         brace. Bison (as of version 1.31) no longer papers over that mistake.
27234
27235 2002-01-05  Jim Meyering  <meyering@lucent.com>
27236
27237         * lib/version-etc.c (version_etc_copyright): Update copyright year.
27238
27239 2001-12-19  Paul Eggert  <eggert@twinsun.com>
27240
27241         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
27242         not silently exit merely because the output buffer happens to
27243         have nothing pending.
27244
27245 2001-12-18  Paul Eggert  <eggert@twinsun.com>
27246
27247         See the big note in ../ChangeLog.
27248         * lib/human.c (suffixes): Prefer K to k for 1024.
27249         (generate_suffix_backwards): New function.
27250         (human_readable_inexact): Use it.
27251         * lib/xstrtol.c (__xstrtol): If there is no number but there
27252         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
27253         Accept 'K' as well as 'k'.
27254
27255 2001-12-15  Jim Meyering  <meyering@lucent.com>
27256
27257         * lib/regex.h (__restrict_arr): Update from libc.
27258
27259         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
27260         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
27261         (STREQ): Define.
27262
27263 2001-12-14  Jim Meyering  <meyering@lucent.com>
27264
27265         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
27266         Suggestion from Bruno Haible.
27267
27268 2001-12-10  Jim Meyering  <meyering@lucent.com>
27269
27270         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
27271         xrealloc, Instead, include "xalloc.h".
27272         (initbuffer): Don't cast xmalloc return value to char*.
27273         (readline): Reword comment.
27274         Don't cast xrealloc return value to char*
27275         Return NULL, not 0.
27276
27277 2001-12-09  Jim Meyering  <meyering@lucent.com>
27278
27279         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
27280         about `signed and unsigned type in conditional expression'.
27281         * lib/posixtm.c (posix_time_parse): Likewise.
27282
27283         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
27284
27285         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
27286         to avoid a pedantic warning.
27287
27288         * lib/getstr.c: Don't include assert.h.
27289         (getstr): Remove warning-evoking assertions.
27290         Return -1 if offset parameter is out of bounds.
27291         Change the type of a local from int to size_t.
27292
27293         * lib/strftime.c (my_strftime_localtime_r): Include this function
27294         definition in the `#if ! HAVE_TM_GMTOFF' block.
27295
27296         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
27297         Include xalloc.h instead.
27298
27299 2001-12-02  Jim Meyering  <meyering@lucent.com>
27300
27301         * lib/tempname.c: Don't declare getenv, thus reverting the change of
27302         2001-11-18.  It's no longer necessary, now that stdlib.h is always
27303         included.
27304
27305         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
27306         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
27307
27308 2001-11-30  Akim Demaille  <akim@epita.fr>
27309
27310         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
27311         before being defined.
27312
27313 2001-11-27  Paul Eggert  <eggert@twinsun.com>
27314
27315         * lib/quotearg.h (quotearg_n, quotearg_n_style):
27316         First arg is int, not unsigned.
27317         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
27318         (SIZE_MAX, UINT_MAX): New macros.
27319         (quotearg_n_options): Abort if N is negative.
27320         Avoid overflow check on hosts where size_t is 64 bits and int
27321         is 32 bits, as overflow is impossible there.
27322         Fix off-by-one typo that caused unnecessary reallocation.
27323
27324 2001-11-27  Jim Meyering  <meyering@lucent.com>
27325
27326         * lib/tempname.c: Merge with version from libc.
27327         * lib/regex.c: Likewise.
27328
27329         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
27330         systems for which STDC_HEADERS is 0, it was not included, resulting in
27331         a warning about an integer-to-pointer conversion problem with getenv.
27332         Reported by Volker Borchert.
27333
27334 2001-11-26  Jim Meyering  <meyering@lucent.com>
27335
27336         * lib/gtod.h: Remove file.
27337         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
27338         * lib/gettimeofday.c: Don't include gtod.h.
27339         (GTOD_init): Remove function.
27340         (rpl_gettimeofday): Do its job here instead, rather than aborting.
27341         Suggestion from Volker Borchert.
27342
27343 2001-11-23  Jim Meyering  <meyering@lucent.com>
27344
27345         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
27346         it.
27347         * lib/hash.c (struct hash_table): Define it here instead.
27348
27349 2001-11-22  Jim Meyering  <meyering@lucent.com>
27350
27351         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
27352
27353 2001-11-20  Jim Meyering  <meyering@lucent.com>
27354
27355         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
27356         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
27357
27358 2001-11-19  Jim Meyering  <meyering@lucent.com>
27359
27360         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
27361         directory.  Use "conftestXXXXXX" as the template.
27362         Suggestion from Paul Eggert.
27363
27364         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
27365         immediately, so the test doesn't mistakenly hit the max-open-files
27366         limit.
27367
27368 2001-11-18  Paul Eggert  <eggert@twinsun.com>
27369
27370         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
27371         (TEMPORARIES): New macro.
27372         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
27373         removes an artificial limitation (e.g. HP-UX 10.20, where
27374         TMP_MAX is 17576).
27375
27376 2001-11-18  Jim Meyering  <meyering@lucent.com>
27377
27378         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
27379
27380 2001-11-18  Jim Meyering  <meyering@lucent.com>
27381
27382         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
27383         on SunOS 4.
27384
27385         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
27386         files will be created before anything else.
27387
27388 2001-11-17  Paul Eggert  <eggert@twinsun.com>
27389
27390         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
27391         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
27392
27393 2001-11-17  Jim Meyering  <meyering@lucent.com>
27394
27395         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
27396         Prompted by a report from Bob Proulx.
27397
27398         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
27399         Instead, require UTILS_FUNC_MKSTEMP.
27400
27401 2001-11-17  Jim Meyering  <meyering@lucent.com>
27402
27403         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
27404         Now, that's done as part of AC_FUNC_STRTOD.
27405
27406 2001-11-17  Jim Meyering  <meyering@lucent.com>
27407
27408         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
27409         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
27410         rather than group writable.  Patch by Juan F. Codagnone.
27411
27412         * lib/readtokens.c: Remove explicit declarations of xmalloc and
27413         xrealloc, Instead, include "xalloc.h".
27414
27415         * lib/mountlist.c: Include unlocked-io.h after all system headers.
27416         Remove explicit declarations of xmalloc, xrealloc,
27417         and xstrdup.  Instead, include "xalloc.h".
27418
27419         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
27420         unlocked-io.h.
27421         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
27422         Likewise.
27423         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
27424
27425         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
27426         Reported by Padraig Brady.
27427
27428         * lib/mkstemp.c: #undef mkstemp.
27429         Include config.h.
27430         (rpl_mkstemp): Rename from mkstemp.
27431         Protoize.
27432
27433 2001-11-16  Jim Meyering  <meyering@lucent.com>
27434
27435         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
27436         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
27437         determine the amount of total physical memory, use pstat_getstatic.
27438         HPUX-11 doesn't define _SC_PHYS_PAGES.
27439         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
27440         If sysconf couldn't be used to determine the amount of available
27441         physical memory, use both pstat_getstatic and pstat_getdynamic.
27442         Based on a patch from Bob Proulx.
27443
27444 2001-11-10  Jim Meyering  <meyering@lucent.com>
27445
27446         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
27447         (jm_PREREQ): Use it.
27448
27449 2001-11-09  Jim Meyering  <meyering@lucent.com>
27450
27451         * m4/jm-macros.m4: Require autoconf-2.52f.
27452         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
27453         Use these AC_-prefixed names, not the AM_-prefixed ones.
27454
27455         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
27456
27457 2001-11-05  Jim Meyering  <meyering@lucent.com>
27458
27459         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
27460
27461 2001-11-04  Jim Meyering  <meyering@lucent.com>
27462
27463         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
27464         $DEFS.
27465
27466 2001-11-03  Jim Meyering  <meyering@lucent.com>
27467
27468         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
27469         of AC_DEFUN.
27470
27471         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
27472         know the name of the variable in the macro definition.
27473
27474 2001-11-03  Jim Meyering  <meyering@lucent.com>
27475
27476         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
27477         in argmatch_to_argument call.
27478
27479         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
27480         argument.
27481
27482         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
27483         e.g., a fault due to an attempt to free a NULL pointer.
27484
27485 2001-11-01  Jim Meyering  <meyering@lucent.com>
27486
27487         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
27488         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
27489
27490 2001-11-01  Jim Meyering  <meyering@lucent.com>
27491
27492         * lib/dirfd.c, lib/dirfd.h: New files.
27493         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
27494
27495         * lib/hash.c (hash_print) [TESTING]: Clean up.
27496
27497 2001-10-22  Paul Eggert  <eggert@twinsun.com>
27498
27499         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
27500         to avoid a warning if -Wall.
27501
27502 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
27503
27504         * README: New file
27505         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
27506         (per RMS's instructions, this is now the canonical source)
27507         * lgpl/, gpl/: New directories.
27508
27509 2001-10-21  Paul Eggert  <eggert@twinsun.com>
27510
27511         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
27512
27513 2001-10-21  Jim Meyering  <meyering@lucent.com>
27514
27515         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
27516         this code would end up calling gettext even in packages built
27517         with --disable-nls.
27518         * lib/getopt.c (_): Likewise.
27519         * lib/regex.c (_): Likewise.
27520
27521 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27522
27523         * m4/error.m4 (jm_PREREQ_ERROR):
27524         Do not invoke AC_CHECK_FUNCS with strerror_r, as
27525         AC_FUNC_STRERROR_R does that.
27526         Check for strerror declaration.
27527
27528         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
27529         are supposed to have them these days.
27530         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
27531         Merge changes from latest Autoconf CVS.
27532         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
27533         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
27534         POSIX decided to standardize on the int flavor of strerror_r.
27535
27536 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27537
27538         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
27539         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
27540         Use strerror_r that is only a macro, even if it is not a function.
27541         (strerror): Check for HAVE_DECL_STRERROR before declaring.
27542         (private_strerror): Use prototypes, not old-style function definition.
27543         (print_errno_message): New function.
27544         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
27545         char*-flavored one.
27546         (error_tail, error, error_at_line): Use it.
27547
27548 2001-10-11  Jim Meyering  <meyering@lucent.com>
27549
27550         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
27551         and quote_n (1, ... to avoid clobbering a buffer.
27552
27553 2001-10-05  Jim Meyering  <meyering@lucent.com>
27554
27555         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
27556         hash-pjw.h.
27557         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
27558         * lib/hash-pjw.h: New file.
27559
27560 2001-09-30  Jim Meyering  <meyering@lucent.com>
27561
27562         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
27563         `struct fsstat' has the `f_fstypename' member.
27564         Use that to define FS_TYPE, which is now used to make
27565         the getfsstat link test tighter.
27566
27567 2001-09-30  Jim Meyering  <meyering@lucent.com>
27568
27569         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
27570         Include <sys/ucred.h>, for Apple Darwin.
27571         Include sys/mount.h and sys/fs_types.h only if available.
27572         (FS_TYPE): Define.
27573         (read_filesystem_list): Use FS_TYPE.
27574
27575 2001-09-29  Paul Eggert  <eggert@twinsun.com>
27576
27577         * lib/exclude.c (excluded_filename): 0 -> false, since it's
27578         a boolean context.
27579
27580 2001-09-29  Jim Meyering  <meyering@lucent.com>
27581
27582         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27583         [one-argument getmntent function]): Include stdio.h before mntent.h.
27584         SunOS 4.1.x needs it for the declaration of `FILE'.
27585         Patch by Volker Borchert.
27586
27587         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27588         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
27589         sys/fs_types.h, and make the link-test for getfsstat guard #include
27590         directives with appropriate #if HAVE_*_H tests so that we can
27591         detect getfsstat on Apple Darwin1.3.7 systems.
27592         Reported by Nelson Beebe.
27593         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
27594
27595 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27596
27597         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27598         #defines strtoimax.  Also treat the other strto* functions
27599         like strtoimax.
27600
27601         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27602         Check for strtoul and strtoumax,
27603         as those declarations are made even in the signed case.
27604         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
27605         Likewise, for strtol and strtoimax.
27606
27607 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27608
27609         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27610         #defines strtoimax.  Also treat the other strto* functions
27611         like strtoimax.
27612
27613         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
27614         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
27615         (strtoimax, strtoumax): Do not declare if already defined as a macro.
27616
27617 2001-09-26  Jim Meyering  <meyering@lucent.com>
27618
27619         Most macros in unlocked-io.h had the wrong number of arguments.
27620         * lib/gen-uio: New script.
27621         (USE_UNLOCKED_IO): Define to 1 if not already defined.
27622         * lib/unlocked-io.hin: Remove file.
27623         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
27624         rather than trying to embed it here.
27625         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
27626         Reported by Padraig Brady.
27627
27628 2001-09-25  Volker Borchert  <bt@teknon.de>
27629
27630         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
27631         `result'.
27632
27633 2001-09-24  Jim Meyering  <meyering@lucent.com>
27634
27635         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
27636
27637 2001-09-23  Jim Meyering  <meyering@lucent.com>
27638
27639         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
27640         instead of the mere test for existence of mntent.h.  The latter
27641         would get a false-positive on AIX 3.4 systems.
27642         In the outer getmntent if-block, don't die if neither of the getmntent
27643         tests succeeds.  Instead, just fall through and continue with the
27644         remaining tests.
27645
27646 2001-09-23  Jim Meyering  <meyering@lucent.com>
27647
27648         * lib/mountlist.c: Remove useless parentheses in #if directives.
27649         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
27650         the deprecated MOUNTED symbol is no longer defined in mntent.h.
27651
27652 2001-09-22  Jim Meyering  <meyering@lucent.com>
27653
27654         * m4/gettext.m4: New file.  From gettext.
27655         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
27656         * m4/progtest.m4: Likewise
27657         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
27658         * m4/glibc21.m4: Likewise.
27659
27660         * m4/libintl.m4: Remove.  No longer used.
27661
27662 2001-09-22  Jim Meyering  <meyering@lucent.com>
27663
27664         * lib/localcharset.c: Update from latest gettext.
27665         * lib/config.charset: Likewise.
27666
27667 2001-09-20  Jim Meyering  <meyering@lucent.com>
27668
27669         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
27670         strtoimax.
27671         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
27672         strtoumax.
27673
27674 2001-09-20  Jim Meyering  <meyering@lucent.com>
27675
27676         * lib/xstrtol.c (strtoimax): Guard declaration with
27677         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
27678         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
27679         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
27680         (strtoumax): Likewise, for completeness (it wasn't necessary).
27681
27682 2001-09-17  Paul Eggert  <eggert@twinsun.com>
27683
27684         * lib/strtoimax.c (HAVE_LONG_LONG):
27685         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
27686         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
27687         to work around bug in IBM C compiler.
27688
27689 2001-09-17  Jim Meyering  <meyering@lucent.com>
27690
27691         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
27692         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
27693         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
27694         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
27695         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
27696         whenever the right hand side need not be expanded by the shell.
27697
27698 2001-09-16  Paul Eggert  <eggert@twinsun.com>
27699
27700         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
27701         library.  It's not correct, as some older glibcs are buggy.
27702         fnmatch wasn't fixed until glibc 2.2.
27703
27704         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
27705         special shell magic here.
27706
27707 2001-09-16  Jim Meyering  <meyering@lucent.com>
27708
27709         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
27710         * m4/jm-macros.m4: Require it.
27711
27712 2001-09-16  Jim Meyering  <meyering@lucent.com>
27713
27714         * lib/mkdir.c: New file.
27715
27716 2001-09-15  Jim Meyering  <meyering@lucent.com>
27717
27718         * m4/jm-macros.m4: Check for help2man.
27719
27720 2001-09-11  Jim Meyering  <meyering@lucent.com>
27721
27722         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
27723         The body, by Paul Eggert, was moved here from configure.in.
27724         * m4/jm-macros.m4: Require UTILS_HOST_OS.
27725
27726 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27727
27728         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
27729         (jm_PREREQ): Use it.
27730
27731 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27732
27733         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
27734         Use ssize_t, not int, to store result of readlink.
27735         Check for ssize_t overflow as well as size_t overflow,
27736         as POSIX says the result of readlink is implementation-defined
27737         when ssize_t overflows.
27738         Remove unnecessary cast to char*.
27739         Use free+malloc instead of realloc, as the storage doesn't need
27740         to be preserved and it's clearer and can be more efficient that way.
27741         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
27742         * lib/xreadlink.h (xreadlink): Update prototype.
27743
27744 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27745
27746         * lib/xgetcwd.c: Revert some of the previous change; intead,
27747         fix the HAVE_GETCWD_NULL code to behave more like the
27748         !HAVE_GETCWD_NULL code used to.
27749
27750         Include "xalloc.h".
27751         (xgetcwd): Do not return NULL when memory is exhausted; instead,
27752         invoke xalloc_die.
27753
27754 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27755
27756         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
27757         sys/param.h, as pathmax.h includes them.
27758
27759 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27760
27761         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
27762         (jm_PREREQ_XGETCWD): New macro.
27763
27764         * m4/getcwd.m4: New file.
27765
27766 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27767
27768         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
27769         like the HAVE_GETCWD_NULL code.
27770         Include pathmax.h if not HAVE_GETCWD.
27771         Do not include xalloc.h.
27772         (INITIAL_BUFFER_SIZE): New symbol.
27773         Do not use xmalloc / xrealloc, since the caller is responsible for
27774         handling errors.  Preserve errno around `free' during failure.
27775         Do not overrun buffer when using getwd.
27776
27777 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27778
27779         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
27780         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
27781         getcwd (NULL, 0).
27782
27783 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27784
27785         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
27786         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
27787         spotted by Jim Meyering.
27788
27789 2001-09-03  Jim Meyering  <meyering@lucent.com>
27790
27791         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
27792         failure.
27793
27794 2001-09-02  Jim Meyering  <meyering@lucent.com>
27795
27796         * lib/error.c: Update from GNU libc.
27797
27798 2001-09-01  Jim Meyering  <meyering@lucent.com>
27799
27800         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
27801         Used by df.
27802
27803 2001-09-01  Jim Meyering  <meyering@lucent.com>
27804
27805         * lib/xreadlink.c: New file.
27806         * lib/xreadlink.h: New file.
27807         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
27808         xreadlink.h.
27809
27810         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
27811         doesn't conflict with sparc Solaris 7's definition in
27812         /usr/include/sys/int_types.h.
27813
27814         * lib/exclude.c: Use `""', not `<>' to #include non-system header
27815         files.
27816         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
27817         and strncasecmp as r-values.  Unixware didn't have declarations.
27818
27819 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27820
27821         * lib/xstrtol.h: Add copyright notice.
27822         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
27823         LONGINT_INVALID_SUFFIX_CHAR.
27824
27825 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27826
27827         * lib/xstrtol.c (strtoimax): New decl.
27828
27829 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27830
27831         * lib/xgetcwd.c: Don't include pathmax.h.
27832         Include stdlib.h and unistd.h if available.
27833         Include xalloc.h.
27834         (xmalloc, xstrdup, free): Remove decls.
27835         (xgetcwd): Don't assume sizes fit in unsigned.
27836         Check for overflow when computing sizes.
27837         Simplify reallocation code.
27838
27839 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27840
27841         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
27842         a directory's st_size can have an arbitrary value, so the old
27843         usage could waste an arbitrary amount of memory.  All uses
27844         changed.
27845         * lib/savedir.h: Update prototype.
27846
27847 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27848
27849         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
27850
27851         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
27852         old strtoimax.c.
27853
27854         Also, make the following further changes to make this file's
27855         configuration more similar to that of strtol.c:
27856         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
27857         (strtoumax, uintmax_t, strtoull, strtol): Remove.
27858         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
27859         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
27860         changed to signed values.
27861
27862         And make the following changes as well:
27863         Fix copyright notice, as 1999 was missing.
27864         (verify): New macro.
27865         (strtoimax): Check sizes at compile-time, not run-time.
27866         Prefer strtol to strtoll if both work.
27867         (main): Remove; it was not that useful and was a pain to maintain.
27868
27869         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
27870
27871 2001-08-31  Jim Meyering  <meyering@lucent.com>
27872
27873         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
27874         Use an initial, malloc'd, buffer of length 128 rather than
27875         a statically allocated one of length 1024.
27876
27877 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27878
27879         Simplify code, partly by assuming autoconf 2.52 semantics.
27880
27881         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
27882
27883         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
27884         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
27885         All uses removed.
27886         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
27887         Move AC_REQUIRE to next-to-top level, to avoid confusion.
27888         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
27889         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
27890         jm_AC_HEADER_INTTYPES_H.
27891         * m4/jm-macros.m4 (jm_MACROS): Likewise.
27892
27893         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
27894
27895         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27896         Quote first arg of AC_DEFUN.
27897         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
27898         since they are needed to parse the include file even if we need
27899         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
27900         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
27901         but with opposite signedness.
27902
27903 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27904
27905         Merge 'exclude' changes from tar 1.13.22.
27906         This fixes one or two unlikely storage allocation overflow bugs,
27907         but doesn't change user-visible behavior otherwise.
27908
27909 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27910
27911         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
27912         (jm_PREREQ_EXCLUDE): New macro.
27913
27914 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27915
27916         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
27917         tm to be declared.
27918
27919 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27920
27921         * lib/hash.c: Remove '2001' from copyright notice.
27922
27923 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27924
27925         * lib/full-write.h: New file.
27926         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
27927         * lib/full-write.c: Correct credits, as cccp.c no longer
27928         exists and anyway it was so heavily changed from the old cccp
27929         code as to be unrecognizable.  Include full-write.h.
27930         (full_write) Return size_t, with short writes meaning failure.
27931         All callers changed.  This fixes a bug with large buffers
27932         on 64-bit hosts.
27933         * lib/utime.c: Include full-write.h.
27934
27935 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27936
27937         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
27938         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
27939         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
27940         Include if available.
27941         (<xalloc.h>): Include
27942         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
27943         (verify): New macro.  Use it to verify that EXCLUDE macros do not
27944         collide with FNM macros.
27945         (struct patopts): New struct.
27946         (struct exclude): Use it, as exclude patterns now come with options.
27947         (new_exclude): Support above changes.
27948         (new_exclude, add_exclude_file):
27949         Initial size must now be a power of two to simplify overflow checking.
27950         (free_exclude, fnmatch_no_wildcards): New function.
27951         (excluded_filename): No longer requires options arg, as the options
27952         are determined by add_exclude.  Now returns bool, not int.
27953         (excluded_filename, add_exclude):
27954         Add support for the fancy new exclusion options.
27955         (add_exclude, add_exclude_file): Now takes int options arg.
27956         Check for arithmetic overflow when computing sizes.
27957         (add_exclude_file): xrealloc might modify errno, so don't
27958         realloc until after errno might be used.
27959
27960         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
27961         New macros.
27962         (free_exclude): New decl.
27963         (add_exclude, add_exclude_file): Now takes int options arg.
27964         (excluded_filename): No longer requires options arg, as the options
27965         are determined by add_exclude.  Now returns bool, not int.
27966
27967 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27968
27969         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
27970
27971 2001-08-27  Jim Meyering  <meyering@lucent.com>
27972
27973         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
27974
27975         * lib/version-etc.c (N_): Remove definition.
27976         Revert most of last change.
27977         Instead, simply don't mark the `Copyright...' string for translation.
27978         Based on advice from Paul Eggert.
27979
27980         * lib/strtoxmax.c: Tweak comment.
27981
27982 2001-08-26  Jim Meyering  <meyering@lucent.com>
27983
27984         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
27985
27986         * m4/xstrtoimax.m4: New file.
27987         * m4/xstrtoumax.m4: Add comments explaining why we
27988         AC_REPLACE_FUNCS(strtol).
27989
27990 2001-08-26  Jim Meyering  <meyering@lucent.com>
27991
27992         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
27993         of copyright with `%s' so translators don't get an untranslated
27994         message in 2002.
27995         (COPYRIGHT_YEAR): Define.
27996         (version_etc): Use fprintf rather than fputs.
27997         Suggestion from Ulrich Drepper.
27998
27999         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
28000
28001         * lib/strtoll.c: New file, from GNU libc.
28002         * lib/xstrtoimax.c: New file.
28003
28004         * lib/xstrtol.h: Add xstrtoimax.
28005         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
28006         * lib/strtoimax.c: New file.  Likewise, but first define
28007         STRTOUXMAX_SIGNED.
28008
28009         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
28010         ...
28011         * lib/strtoxmax.c: ... then renamed to this.
28012
28013 2001-08-18  Paul Eggert  <eggert@twinsun.com>
28014
28015         * m4/inttypes.m4: Add AC_PREREQ(2.13).
28016         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
28017         (jm_AC_TYPE_INTMAX_T): New macro.
28018         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
28019
28020         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
28021
28022         * m4/longlong.m4: Renamed from ulonglong.m4.
28023         * m4/inttypes.m4: Renamed from inttypes_h.m4.
28024         * m4/uintmax_t.m4: Removed.
28025
28026 2001-08-13  Paul Eggert  <eggert@twinsun.com>
28027
28028         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
28029         Port to Solaris 8, where 'sed' requires a space after the 'r'
28030         command, and where sh dislikes "$/".  Clean up the spacing a bit.
28031         Redirect output to $tmp just once.
28032
28033 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
28034
28035         * lib/addext.c (<errno.h>): Include.
28036         (errno): Declare if not defined.
28037         (addext): Work correctly when pathconf returns -1 and leaves
28038         errno alone because there is no limit.  Also, work even if
28039         pathconf returns a value greater than SIZE_MAX.
28040
28041 2001-08-12  Jim Meyering  <meyering@lucent.com>
28042
28043         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
28044         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
28045         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
28046         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
28047         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
28048         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
28049         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
28050         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
28051         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
28052         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
28053         utime.m4, utimes.m4, xstrtoumax.m4:
28054         Quote the first argument in each use of AC_DEFUN.
28055
28056 2001-08-12  Jim Meyering  <meyering@lucent.com>
28057
28058         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
28059         Simply `return getcwd (NULL, 0);'.
28060         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
28061         Use 1300 as initial value for length, not PATH_MAX.
28062
28063         * lib/pathmax.h: Clean up cpp syntax.
28064
28065 2001-08-12  Jim Meyering  <meyering@lucent.com>
28066
28067         * lib/gettimeofday.c: New file.
28068         * lib/gtod.h: New file.
28069         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
28070
28071 2001-08-05  Jim Meyering  <meyering@lucent.com>
28072
28073         * m4/jm-macros.m4: Require autoconf-2.52.
28074
28075 2001-08-04  Jim Meyering  <meyering@lucent.com>
28076
28077         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
28078         stmt, to get in sync with glibc.
28079
28080 2001-08-03  Paul Eggert  <eggert@twinsun.com>
28081
28082         The following changes are from gettext 0.10.39 as maintained by
28083         Bruno Haible.
28084
28085         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
28086         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
28087         with inverted sense.  All uses changed.
28088
28089         * lib/mbswidth.c: Don't include <limits.h>.
28090         Include <stdlib.h> and <string.h> unconditionally.
28091         (iswcntrl, mbsinit, ISCNTRL): New macros.
28092         (mbsnwidth): Use K&R style function declarations.
28093         Don't bother checking for MB_LEN_MAX == 1, since the compiler
28094         can optimize it when MB_CUR_MAX == 1.
28095         The width of control characters is zero, not 1.
28096
28097 2001-08-03  Paul Eggert  <eggert@twinsun.com>
28098
28099         The following changes are from gettext 0.10.39 as maintained by
28100         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
28101
28102         * m4/codeset.m4: Upgrade to serial AM1.
28103         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
28104         all uses changed.  Quote first arg of AC_DEFUN.
28105         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
28106
28107         * m4/iconv.m4: Upgrade to serial AM2.
28108         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
28109         Add --with-libconv-prefix.
28110         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
28111         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
28112         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
28113         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
28114         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
28115
28116         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
28117         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
28118         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
28119         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
28120         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
28121         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
28122         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
28123         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
28124         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
28125
28126         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
28127         string.h any more.
28128
28129         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
28130         not the default value.
28131
28132         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
28133         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
28134         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
28135         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
28136         Also check for iswcntrl, used for wcwidth fallback.
28137         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
28138         to Autoconf 2.13.
28139
28140 2001-08-03  Jim Meyering  <meyering@lucent.com>
28141
28142         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
28143         as it was in the original.  Reported by Paul Eggert.
28144
28145 2001-07-16  Jim Meyering  <meyering@lucent.com>
28146
28147         * m4/gettimeofday.m4: New file.
28148         Prompted by a report from Bernhard Baehr.
28149
28150 2001-07-15  Jim Meyering  <meyering@lucent.com>
28151
28152         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
28153         stuff. Now it's in ../Makefile.cfg.
28154
28155 2001-07-15  Jim Meyering  <meyering@lucent.com>
28156
28157         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
28158         (BUILT_SOURCES): Add unlocked-io.h.
28159         (io_functions): Define.
28160         (unlocked-io.h): New rule.
28161         (DISTCLEANFILES): Add unlocked-io.h.
28162         (all-local): Depend on unlocked-io.h, to ensure it is created.
28163
28164         * lib/unlocked-io.hin: New file
28165
28166         * lib/regex.c: Update from glibc.
28167
28168 2001-07-05  Jim Meyering  <meyering@lucent.com>
28169
28170         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
28171         recommendation.
28172         (libfetish_a_SOURCES): Put all .h files here instead.
28173         Remove a thus-exposed (better checks in automake) duplicate and
28174         two unnecessary .h files.
28175
28176 2001-07-04  Jim Meyering  <meyering@lucent.com>
28177
28178         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
28179         that generates jm-glibc-io.m4 so that it doesn't trigger any make
28180         distcheck failure.
28181
28182 2001-07-02  Jim Meyering  <meyering@lucent.com>
28183
28184         The following changes were prompted by suggestions from Bruno Haible.
28185
28186         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
28187         is now generated.
28188         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
28189         definition of EXTRA_DIST.
28190         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
28191         ensure that the generated file is created/updated whenever the list
28192         of $(unlocked_functions) is changed.
28193         (jm-glibc-io.m4): New rule.
28194         (unlocked-io.h): New rule -- currently unused.
28195
28196 2001-06-24  Jim Meyering  <meyering@lucent.com>
28197
28198         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
28199         unmatched right bracket, rather than kludging it with an extra,
28200         falsely-matching quote in a comment.  Patch by Akim Demaille.
28201
28202 2001-06-11  Jim Meyering  <meyering@lucent.com>
28203
28204         * lib/regex.c: Update from GNU libc.
28205
28206 2001-05-27  Jim Meyering  <meyering@lucent.com>
28207
28208         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
28209         Check for ut_type in struct utmp.
28210
28211 2001-05-27  Jim Meyering  <meyering@lucent.com>
28212
28213         * lib/readutmp.h (UT_TYPE): Define.
28214
28215 2001-05-24  Jim Meyering  <meyering@lucent.com>
28216
28217         * lib/argmatch.c: Include "quote.h".
28218         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
28219         quote function.  Reported by Göran Uddeborg.
28220
28221 2001-05-22  Jim Meyering  <meyering@lucent.com>
28222
28223         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
28224         now that we use the package-supplied version unconditionally.
28225         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
28226
28227 2001-05-21  Jim Meyering  <meyering@lucent.com>
28228
28229         * m4/regex.m4: Change a couple backticks to single quotes to avoid
28230         shell syntax errors.
28231
28232 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
28233
28234         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
28235
28236 2001-05-20  Paul Eggert  <eggert@twinsun.com>
28237
28238         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
28239         Don't bother to check library strftime, since
28240         we'll be using our own my_strftime function anyway.
28241         Define my_strftime instead of strftime.
28242
28243 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
28244
28245         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
28246         which is not yet declared.
28247
28248 2001-05-15  Jim Meyering  <meyering@lucent.com>
28249
28250         * m4/regex.m4: Use proper quoting so brackets appear in the test
28251         program.
28252         Reported by, and with help from, Bruno Haible.
28253
28254 2001-05-13  Jim Meyering  <meyering@lucent.com>
28255
28256         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
28257         undefined.
28258
28259 2001-05-11  Paul Eggert  <eggert@twinsun.com>
28260
28261         dirname code cleanup.  base_name now behaves more compatibly
28262         with POSIX basename when given file names that have trailing
28263         slashes, and similarly for dir_name.  Add new primitives
28264         base_len and dir_len.  Put the directory-name-related decls
28265         into dirname.h.
28266
28267         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
28268         * lib/backupfile.c (base_name): Likewise.
28269         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
28270         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
28271         * lib/makepath.c (strip_trailing_slashes): Likewise.
28272         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
28273         ISSLASH): Likewise.
28274         * lib/rename.c (strip_trailing_slashes): Likewise.
28275         * lib/same.c (base_name): Likewise.
28276         * lib/stripslash.c (ISSLASH): Likewise.
28277
28278         * lib/addext.c: Include <dirname.h> after size_t is defined.
28279         * lib/backupfile.c: Likewise.
28280
28281         * lib/addext.c (addext): Use base_len to trim redundant
28282         trailing slashes instead of doing it ourselves.
28283         But do not trim the last slash if it is not redundant.
28284
28285         * lib/backupfile.c (find_backup_file_name,
28286         max_backup_version): Use base_len instead of rolling it ourselves.
28287         Handle the case of "" and (on DOS) "C:" correctly.
28288
28289         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
28290         needed. Include <string.h>, <dirname.h>.
28291         (base_name): Allow file names ending in slashes, other than names
28292         that are all slashes.  In this case, return the basename followed
28293         by the slashes.  This is more general, and can be used in places
28294         where the original base_name purposely had an assertion failure.
28295         (base_len): New function.
28296
28297         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
28298         Do not include <assert.h>; no longer needed.
28299         Include xalloc.h.
28300         (memrchr): Remove decl.
28301         (dir_name_r): Remove.
28302         (dir_len): Renamed from dirlen.  All callers changed.
28303         Rewrite in terms of base_name, for simplicity and consistency.
28304         (dir_name): Never return NULL.  All callers changed.
28305         Do not include <stdlib.h> in test program; no longer needed.
28306         return 0; is fine for test program.
28307
28308         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
28309         New macros.
28310         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
28311
28312         * lib/path-concat.c (path_concat): Use base_len to compute
28313         base length, not strlen; this means we cannot rely on memcpy
28314         to null-terminate.
28315
28316         * lib/same.c (STREQ): Remove.
28317         (same_name): Handle the case where the basename ends in trailing '/'.
28318
28319         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
28320         a slash was stripped.  Do not strip the last slash after a
28321         file system prefix.
28322
28323 2001-05-11  Paul Eggert  <eggert@twinsun.com>
28324
28325         * lib/Makefile.am (libfetish_a_SOURCES):
28326         Add strftime.c, since we now compile it on all hosts.
28327
28328         * lib/strftime.c (my_strftime):
28329         Define to nstrftime if emacs, but only if my_strftime is not defined.
28330         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
28331         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
28332         Add one more extra argument: a nanoseconds value.
28333         All uses changed.
28334         (ns): New macro.
28335         (my_strftime function): Add %N format.
28336         (emacs_strftimeu): Renamed from emacs_strftime,
28337         with extra ut argument.
28338
28339 2001-05-09  Paul Eggert  <eggert@twinsun.com>
28340
28341         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
28342
28343 2001-04-21  Jim Meyering  <meyering@lucent.com>
28344
28345         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
28346         doesn't interfere.
28347
28348 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
28349
28350         * m4/ftruncate.m4: Check for chsize.
28351         Link with ftruncate.o unconditionally if ftruncate is missing.
28352         This was required when cross-compiling to i586-mingw32msvc.
28353
28354 2001-04-08  Jim Meyering  <meyering@lucent.com>
28355
28356         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
28357         recomputed; that's necessary when the offset spans a DST transition.
28358         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
28359
28360 2001-04-02  Jim Meyering  <meyering@lucent.com>
28361
28362         * lib/regex.h, regex.c: Update from GNU libc.
28363
28364 2001-03-24  Jim Meyering  <meyering@lucent.com>
28365
28366         * m4/jm-macros.m4: Require autoconf-2.49d.
28367
28368 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
28369
28370         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
28371
28372 2001-03-19  Paul Eggert  <eggert@twinsun.com>
28373
28374         * lib/version-etc.c (version_etc_copyright): Update to 2001.
28375
28376 2001-03-17  Jim Meyering  <meyering@lucent.com>
28377
28378         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
28379         now that the version in autoconf is equivalent.
28380         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
28381
28382         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
28383         Suggestion from Akim Demaille.
28384
28385         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
28386         (jm_PREREQ_TEMPNAME): New function.
28387
28388 2001-03-16  Paul Eggert  <eggert@twinsun.com>
28389
28390         * lib/tempname.c (uint64_t): Define to uintmax_t if
28391         not defined, and if UINT64_MAX is not defined.
28392         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
28393         Reported by John David Anglin.
28394
28395 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
28396
28397         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
28398         resolve alias if codeset is empty.
28399         * lib/config.charset (BeOS): Use wildcard syntax.
28400
28401 2001-03-13  Jim Meyering  <meyering@lucent.com>
28402
28403         * lib/path-concat.c (path_concat)
28404         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
28405         concatenating e.g., `C:' and `foo'.
28406         From Bruno Haible.
28407
28408 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28409
28410         * lib/localcharset.c (locale_charset): Don't use
28411         setlocale(LC_CTYPE,NULL). Don't return NULL.
28412         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
28413
28414 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28415
28416         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
28417         support for DOS/DJGPP.
28418
28419 2001-03-01  Paul Eggert  <eggert@twinsun.com>
28420
28421         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
28422         lacks mkstemp.  Compile our own tempname.c if we compile our own
28423         mkstemp.c, as mkstemp relies on tempname.
28424
28425 2001-03-01  Jim Meyering  <meyering@lucent.com>
28426
28427         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
28428         AH_VERBATIM really does output its argument verbatim.
28429
28430 2001-02-28  Paul Eggert  <eggert@twinsun.com>
28431
28432         * lib/Makefile.am (libfetish_a_SOURCES):
28433         Add dup-safer.c, fopen-safer.c.
28434         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
28435
28436         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
28437         * lib/unistd-safer.h: New files.
28438
28439 2001-02-25  Paul Eggert  <eggert@twinsun.com>
28440
28441         The mkstemp replacement is taken from glibc 2.2.2, with some
28442         portability fixes for use outside glibc, as follows:
28443
28444         * lib/tempname.c (struct_stat64): New macro.
28445         (direxists, __gen_tempname): Use it.
28446         This avoids a portability problem with Solaris 8.
28447
28448         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
28449         (<stddef.h>, <stdint.h>, <string.h>):
28450         Include only if STDC_HEADERS || _LIBC.
28451         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
28452         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
28453         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
28454         (__set_errno): Define this macro if <errno.h> doesn't.
28455         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
28456         Define these macros if <stdio.h> doesn't.
28457         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
28458         Define these macros if <sys/stat.h>
28459         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
28460         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
28461         __xstat64): Define if not _LIBC.
28462         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
28463         (__gen_tempname): Invoke gettimeofday only if
28464         HAVE_GETTIMEOFDAY || _LIBC;
28465         otherwise, fall back on plain "time".
28466         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
28467
28468         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
28469
28470         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
28471
28472 2001-02-18  Paul Eggert  <eggert@twinsun.com>
28473
28474         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
28475
28476 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28477
28478         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
28479         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
28480         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
28481         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
28482
28483 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28484
28485         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
28486         Remove workaround macros for hosts that have mbrtowc but not
28487         mbstate_t, as we now insist on proper declarations for both
28488         before using mbrtowc.
28489
28490 2001-02-17  Jim Meyering  <meyering@lucent.com>
28491
28492         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
28493         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
28494         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
28495         UnixWare 7.1.1.
28496
28497         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
28498         rather than AC_CACHE_VAL.
28499
28500 2001-02-17  Jim Meyering  <meyering@lucent.com>
28501
28502         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
28503         around included file name.
28504
28505         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
28506
28507         * lib/strftime.c: Update from GNU libc (the only changes were to
28508         comments).
28509
28510 2001-02-17  Jim Meyering  <meyering@lucent.com>
28511
28512         * lib/regex.c: Update from libc.
28513
28514 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
28515
28516         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
28517         clash.
28518
28519 2001-02-16  Paul Eggert  <eggert@twinsun.com>
28520
28521         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
28522         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
28523         Reported by Mark Hounschell via Paul Eggert.
28524
28525 2001-02-07  Jim Meyering  <meyering@lucent.com>
28526
28527         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
28528
28529 2001-02-05  Jim Meyering  <meyering@lucent.com>
28530
28531         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
28532         it includes the patch required for `large file' support with at least
28533         HP-UX's 10.20 /bin/cc.
28534
28535 2001-02-03  Jim Meyering  <meyering@lucent.com>
28536
28537         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
28538         AS_IF, now that it works once again (mysteriously).
28539         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28540
28541 2001-01-30  Jim Meyering  <meyering@lucent.com>
28542
28543         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
28544         * m4/chown.m4: Rename conftestchown to conftest.chown.
28545         * m4/rename.m4: s/conftestdir/conftest.d1/ and
28546         s/conftestdir2/conftest.d2/.
28547         * m4/utimes.m4: s/conftestdata/conftest.data/
28548         Inspired by Pavel Roskin's change in autoconf.
28549
28550 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
28551
28552         * lib/config.charset: Update for FreeBSD 4.2.
28553
28554 2001-01-27  Jim Meyering  <meyering@lucent.com>
28555
28556         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
28557         a use of AS_IF.
28558         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28559
28560 2001-01-26  Jim Meyering  <meyering@lucent.com>
28561
28562         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
28563         quotearg.c includes it.
28564
28565 2001-01-26  Jim Meyering  <meyering@lucent.com>
28566
28567         * lib/quotearg.c: Include stddef.h.
28568         * lib/quote.c: Include stddef.h.
28569         Reported by Axel Kittenberger.
28570
28571         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
28572         line in double quotes so that it evokes a better diagnostic.
28573         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
28574         Reported by Axel Kittenberger.
28575
28576 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
28577
28578         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
28579         as if it was a `charset'.
28580
28581 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28582
28583         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
28584         has const.
28585
28586 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28587
28588         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
28589         to avoid a warning.  Add back 'const' to inptr.
28590
28591 2001-01-20  Jim Meyering  <meyering@lucent.com>
28592
28593         Be sure that headers are checked before used in code compiled
28594         for the type checks.
28595         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
28596         In place of that, invoke jm_CHECK_ALL_TYPES.
28597         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
28598         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
28599         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
28600         The check for ssize_t was mistakenly run before the test for unistd.h.
28601
28602         The configure-time check for stdbool.h was missing.
28603         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
28604         (jm_PREREQ_HASH): New function.
28605
28606 2001-01-17  Jim Meyering  <meyering@lucent.com>
28607
28608         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
28609         for autoconf-2.49c.
28610         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
28611
28612 2001-01-16  Jim Meyering  <meyering@lucent.com>
28613
28614         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
28615         From Bruno Haible.
28616
28617 2001-01-14  Jim Meyering  <meyering@lucent.com>
28618
28619         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
28620         foo and bar.  Create conftestdir/ in the script, not in the C code.
28621         Remove directories in the script, not in the C code.
28622         Remove conftestdir{,2} before trying to create the directory.
28623         Make the entire configure script fail if the mkdir fails.
28624
28625 2001-01-14  Jim Meyering  <meyering@lucent.com>
28626
28627         * lib/rename.c: New file.  From Volker Borchert.
28628         Include stdlib.h, string.h or strings.h, and xalloc.h.
28629         Use strip_trailing_slashes rather than open-coding it.
28630
28631 2001-01-03  Paul Eggert  <eggert@twinsun.com>
28632
28633         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
28634
28635 2001-01-03  Jim Meyering  <meyering@lucent.com>
28636
28637         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
28638         of local `inptr' to avoid warning with some system declarations of
28639         iconv.
28640
28641 2001-01-02  Volker Borchert  <bt@teknon.de>
28642
28643         * m4/rename.m4: New file.
28644         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
28645
28646 2001-01-01  Jim Meyering  <meyering@lucent.com>
28647
28648         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
28649         even on systems with utmpx.h.  It's necessary for the declaration of
28650         utmp's ut_user member.  Reported by Andreas Jaeger.
28651
28652         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
28653         available. They are required for the declarations of getgrgid and
28654         getpwuid resp.
28655         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
28656         Reported by Andreas Jaeger.
28657
28658 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
28659
28660         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
28661         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
28662         so `make install' also works in VPATH builds.
28663
28664 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
28665
28666         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
28667         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
28668         can be used in subdirectories.
28669
28670 2000-12-29  Paul Eggert  <eggert@twinsun.com>
28671
28672         * lib/modechange.c: Do not assume that mode_t uses the
28673         traditional octal encoding.  E.g. "chmod 1 FOO" should set
28674         the other-execute bit of FOO even if S_IXOTH != 1.
28675
28676         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
28677         WOTH, XOTH, ALLM): New macros.
28678         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
28679          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
28680         Use them.
28681         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
28682         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
28683         (mode_compile):
28684         No need to use uintmax_t; unsigned long is long enough.
28685         Don't bother to get suffix since we don't use it.
28686
28687 2000-12-26  Jim Meyering  <meyering@lucent.com>
28688
28689         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
28690         better with autoheader.
28691
28692 2000-12-24  Jim Meyering  <meyering@lucent.com>
28693
28694         * lib/hash.c (is_prime): Return explicit boolean values.
28695         (hash_get_first): Return NULL to appease Irix5.6's 89.
28696         Reported by Nelson Beebe.
28697
28698 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
28699
28700         * lib/localcharset.c (locale_charset): Add support for Win32.
28701
28702 2000-12-18  Paul Eggert  <eggert@twinsun.com>
28703
28704         * lib/physmem.h, lib/physmem.c: New files.
28705
28706         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
28707         (noinst_HEADERS): Add physmem.h.
28708
28709         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
28710         't' for compatibility with Solaris 8 sort.
28711
28712 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
28713
28714         * lib/config.charset: Add support for BeOS.
28715
28716 2000-12-17  Jim Meyering  <meyering@lucent.com>
28717
28718         * m4/dos.m4 (jm_AC_DOS): New file and macro.
28719         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
28720
28721 2000-12-16  Jim Meyering  <meyering@lucent.com>
28722
28723         This bug had a serious impact on chown: `chown N:M FILE' (for integer
28724         N and M) would have treated it like `chown N:N FILE'.
28725
28726         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
28727
28728 2000-12-16  Jim Meyering  <meyering@lucent.com>
28729
28730         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
28731         SHELLS_FILE to a file name that's useful on djgpp systems.
28732         Include stdlib.h.
28733         (ADDITIONAL_DEFAULT_SHELLS): Define.
28734         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
28735         Based mostly on a patch from Prashant TR.
28736
28737 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
28738
28739         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
28740         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
28741         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
28742
28743 2000-12-08  Andreas Schwab  <schwab@suse.de>
28744
28745         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
28746         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
28747
28748 2000-12-07  Jim Meyering  <meyering@lucent.com>
28749
28750         * lib/stripslash.c (ISSLASH): Define.
28751         (strip_trailing_slashes): Use ISSLASH rather than comparing against
28752         `/'.
28753         From Prashant TR.
28754
28755         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
28756         (dir_name_r): Declare this function as static.
28757         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
28758         manifest itself on a name containing a mix of slashes and
28759         backslashes.
28760         Make this function work with names starting with a DOS-style
28761         drive letter and colon prefix.
28762         (dir_name): Append `.' if necessary.
28763         Based mostly on patches from Prashant TR and Eli Zaretskii.
28764
28765         * lib/dirname.h (dir_name_r): Remove prototype.
28766
28767 2000-12-06  Paul Eggert  <eggert@twinsun.com>
28768
28769         * m4/off_t-format.m4: Remove this file.
28770         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
28771
28772 2000-12-06  Jim Meyering  <meyering@lucent.com>
28773
28774         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
28775         replacement strtoull, we may well need the replacement strtoul, too.
28776         Check for declarations of strtoul and strtoull.
28777         Check for strtol.  Mainly as a cue to cause automake to include
28778         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
28779         Check for limits.h -- strtol.c needs it.
28780
28781 2000-12-05  Jim Meyering  <meyering@lucent.com>
28782
28783         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
28784
28785 2000-12-04  Jim Meyering  <meyering@lucent.com>
28786
28787         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
28788         Also include memory.h, stdlib.h, unistd.h if appropriate.
28789         Reported by Andreas Jaeger (conflicting declaration of malloc).
28790
28791 2000-12-02  Jim Meyering  <meyering@lucent.com>
28792
28793         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
28794         * m4/jm-macros.m4 (jm_MACROS): require it.
28795
28796 2000-12-02  Jim Meyering  <meyering@lucent.com>
28797
28798         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
28799
28800 2000-12-01  Paul Eggert  <eggert@twinsun.com>
28801
28802         * lib/memrchr.c: Include <config.h> before any system include file.
28803
28804 2000-11-30  Jim Meyering  <meyering@lucent.com>
28805
28806         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
28807
28808 2000-11-30  Jim Meyering  <meyering@lucent.com>
28809
28810         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
28811
28812 2000-11-29  Paul Eggert  <eggert@twinsun.com>
28813
28814         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
28815
28816 2000-11-26  Jim Meyering  <meyering@lucent.com>
28817
28818         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
28819
28820 2000-11-22  Paul Eggert  <eggert@twinsun.com>
28821
28822         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
28823         size of (size_t) -1; it's not portable.
28824
28825 2000-11-17  Jim Meyering  <meyering@lucent.com>
28826
28827         * lib/strstr.c: Update from GNU libc.
28828
28829 2000-11-17  Akim Demaille  <akim@epita.fr>
28830
28831         * lib/obstack.h: Formatting changes.
28832         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
28833         prevent type checking.
28834         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
28835         cast the value to (void *): assigning a `foo *' to a `void *'
28836         variable is valid.
28837         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
28838
28839 2000-11-16  Jim Meyering  <meyering@lucent.com>
28840
28841         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
28842
28843 2000-11-11  Jim Meyering  <meyering@lucent.com>
28844
28845         * lib/error.c: Add a couple #includes, merging from GNU libc version.
28846
28847 2000-11-10  Jim Meyering  <meyering@lucent.com>
28848
28849         * lib/obstack.h: Update from GNU libc.
28850         * lib/obstack.c: Likewise.
28851
28852 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
28853
28854         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
28855
28856 2000-11-06  Paul Eggert  <eggert@twinsun.com>
28857
28858         * lib/getusershell.c (setusershell): Use rewind rather than
28859         fseek/fseeko, to avoid configuration hassles with fseeko.
28860         Don't bother opening SHELLS_FILE if shellstream is NULL;
28861         it's not necessary.
28862
28863 2000-11-05  Jim Meyering  <meyering@lucent.com>
28864
28865         * lib/makepath.h (make_dir): Declare.
28866         * lib/makepath.c (make_dir): Remove `static' attribute.
28867         Tweak a comment.
28868
28869 2000-11-04  Jim Meyering  <meyering@lucent.com>
28870
28871         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
28872
28873 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
28874
28875         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
28876         last one in a bucket, advance to the next bucket.
28877
28878 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
28879
28880         * lib/fnmatch.c: Do not comment out all the code if we are using
28881         the GNU C library, because in some cases we are replacing buggy
28882         code in the GNU C library itself.
28883
28884 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
28885
28886         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
28887         (regex_compile): Catch bogus \(\1\).
28888
28889 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28890
28891         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
28892         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
28893         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
28894
28895 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28896
28897         * lib/error.h, getline.h, modechange.h:
28898         Remove "2000" from Copyright line, as the file hasn't been
28899         changed this year other than in the copyright notice.
28900
28901         * lib/xalloc.h: Add "2000" to Copyright line, as this file
28902         was changed this year.
28903
28904 2000-10-29  Jim Meyering  <meyering@lucent.com>
28905
28906         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
28907         renaming.
28908         * m4/ls-mntd-fs.m4: Likewise
28909
28910 2000-10-29  Jim Meyering  <meyering@lucent.com>
28911
28912         * lib/xstat.in: Fix grammar in comment.
28913
28914 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
28915
28916         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
28917         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
28918         doesn't define __restrict_arr.
28919
28920 2000-10-28  Jim Meyering  <meyering@lucent.com>
28921
28922         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
28923         (jm_PREREQ_MEMCHR): New function.
28924
28925 2000-10-28  Jim Meyering  <meyering@lucent.com>
28926
28927         * lib/memchr.c: Update from libc.
28928         Adjust for portability:
28929         [HAVE_STDLIB_H]: Include stdlib.h.
28930         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
28931         Undef __memchr, too.
28932         [!weak_alias]: Define __memchr to memchr.
28933
28934         * lib/regex.c: Update from libc.
28935         * lib/regex.h: Likewise.
28936         * lib/getopt1.c: Likewise.
28937         * lib/memcmp.c: Likewise.
28938
28939         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
28940         Avoid using fseek, when possible -- it's broken by design.
28941         Patch by Ulrich Drepper.
28942
28943 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
28944
28945         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
28946         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
28947         Giving in to popular pressure to shut up the compiler with casts.
28948
28949 2000-10-26  Jim Meyering  <meyering@lucent.com>
28950
28951         * lib/strftime.c: Update from libc.
28952
28953 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
28954
28955         * regex.c: More `unsigned char' -> `re_char' changes.
28956         Also change several `int' into `re_wchar_t'.
28957         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
28958         (PUSH_FAILURE_POINTER): Don't cast any more.
28959         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
28960         We want GCC to complain, since this piece of code makes
28961         re_match non-reentrant, which *should* be fixed.
28962         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
28963         (EXTEND_BUFFER): Use RETALLOC.
28964         (SET_LIST_BIT): Don't cast.
28965         (re_wchar_t): New type.
28966         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
28967         that those two functions will always properly return.
28968         (IMMEDIATE_QUIT_CHECK): Cast to void.
28969         (analyse_first): Use recursion rather than an explicit stack.
28970         (re_compile_fastmap): Can't fail anymore.
28971         (re_search_2): Don't check re_compile_fastmap for failure.
28972         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
28973         Now also sets the new value (passed in a new argument).
28974         (re_match_2_internal): Use it.
28975         Also, use a new var `reg' of type size_t when looping through regs
28976         rather than reuse the inappropriate `mcnt'.
28977
28978 2000-10-25  Jim Meyering  <meyering@lucent.com>
28979
28980         * lib/obstack.c: Update from libc.
28981
28982 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
28983
28984         * regex.c (regex_compile): Change the way of handling a range from
28985         a char less than 256 to a char not less than 256.
28986
28987 2000-10-24  Andrew Innes  <andrewi@gnu.org>
28988
28989         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
28990         NT-Emacs only.
28991         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
28992         so that re_search functions only quit when callers expect them to.
28993
28994 2000-10-23  Jim Meyering  <meyering@lucent.com>
28995
28996         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
28997         wrong.  That set_locale call must not have any side effects.
28998         From Paul Eggert.
28999
29000 2000-10-22  Jim Meyering  <meyering@lucent.com>
29001
29002         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
29003         [CYCLIC]: Remove now-unused definition.
29004
29005         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
29006         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
29007         Suggestion from Ulrich Drepper.
29008
29009 2000-10-21  Jim Meyering  <meyering@lucent.com>
29010
29011         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
29012         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
29013         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
29014
29015 2000-10-21  Jim Meyering  <meyering@lucent.com>
29016
29017         * lib/dirname.c (memrchr): Declare if necessary.
29018         (dir_name): Remove the restriction that there be no
29019         trailing slashes.  Now, this code skips past them, effectively
29020         ignoring them.
29021         [TEST_DIRNAME] (main): New unit tests.
29022
29023         * lib/memrchr.c: New file from GNU libc.
29024         Undef __memrchr, too.
29025         [!weak_alias]: Define __memrchr to memrchr.
29026         Guard weak_alias use with `#ifdef weak_alias'.
29027
29028 2000-10-21  Jim Meyering  <meyering@lucent.com>
29029
29030         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
29031         (dir_name): Use dir_name_r.
29032         * lib/dirname.h (dir_name_r): Declare it.
29033
29034 2000-10-17  Jim Meyering  <meyering@lucent.com>
29035
29036         * lib/quote.h (PARAMS): Define and use.
29037         Reported by Akim Demaille.
29038
29039         * lib/getopt.c: Update from libc.
29040
29041 2000-10-16  Jim Meyering  <meyering@lucent.com>
29042
29043         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
29044         setlocale.
29045         From Jan Fedak.
29046
29047 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
29048
29049         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
29050
29051 2000-09-25  Jim Meyering  <meyering@lucent.com>
29052
29053         * lib/md5.h (rol): Define (from GnuPG).
29054
29055         * lib/sha.c: Give credit (GnuPG) where due.
29056         (M): Use rol rather than open-coding it.
29057         Add a FIXME comment.
29058
29059 2000-09-21  Jim Meyering  <meyering@lucent.com>
29060
29061         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
29062         Reported by Michael Stone.
29063
29064 2000-09-20  Jim Meyering  <meyering@lucent.com>
29065
29066         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
29067         (noinst_HEADERS): Add sha.h.
29068         Based on code from Scott G. Miller and from GnuPG.
29069
29070 2000-09-18  Jim Meyering  <meyering@lucent.com>
29071
29072         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
29073         LIBS. Otherwise, everyone ends up linking with -lelf for some
29074         configurations.
29075         Reported by Mike Stone.
29076
29077 2000-09-15  Jim Meyering  <meyering@lucent.com>
29078
29079         * lib/regex.c: Update from libc.
29080
29081 2000-09-10  Jim Meyering  <meyering@lucent.com>
29082
29083         * lib/getopt.c (_getopt_internal): Update from glibc.
29084
29085 2000-09-09  Jim Meyering  <meyering@lucent.com>
29086
29087         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
29088         think it should be used as a general replacement for isascii.
29089         * lib/fnmatch.c: Likewise.
29090         * lib/mbswidth.c: Likewise
29091         * lib/regex.c: Likewise.
29092
29093         Don't use atoi.
29094         * lib/userspec.c: Include sys/param.h and limits.h.
29095         Include xstrtol.h.
29096         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
29097         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
29098         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
29099         UID, GID.  Check range.
29100
29101 2000-09-06  Jim Meyering  <meyering@lucent.com>
29102
29103         * lib/getopt.c (_getopt_internal): Update from glibc.
29104
29105 2000-08-30  Jim Meyering  <meyering@lucent.com>
29106
29107         * lib/strftime.c: Merge in changes from GNU libc.
29108
29109 2000-08-26  Jim Meyering  <meyering@lucent.com>
29110
29111         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
29112         * m4/fpending.m4: New file.
29113
29114 2000-08-26  Jim Meyering  <meyering@lucent.com>
29115
29116         * lib/closeout.c: Include "__fpending.h".
29117         (close_stdout_status): Return right away if there's nothing to flush.
29118
29119         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
29120         * lib/__fpending.c: New file.
29121         * lib/__fpending.h: New file.
29122
29123 2000-08-20  Jim Meyering  <meyering@lucent.com>
29124
29125         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
29126         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
29127         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
29128
29129 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
29130
29131         Improve fileutils installation on systems where running
29132         programs (like install) can't be unlinked.
29133         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
29134         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
29135
29136 2000-08-07  Paul Eggert  <eggert@twinsun.com>
29137
29138         Standardize on "memory exhausted" instead of "Memory exhausted"
29139         or "virtual memory exhausted".
29140         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
29141         "virtual memory exhausted".
29142         * lib/same.c (same_name): Invoke xalloc_die instead of printing
29143         our own message.
29144         * lib/userspec.c (parse_user_spec): Likewise.
29145         * lib/bumpalloc.h: comment fix
29146         * lib/same.c, userspec.c: Include xalloc.h.
29147
29148         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
29149         not char *const and pointing to a constant array.
29150         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
29151         (xrealloc): Comment fix.
29152
29153         * lib/userspec.c (parse_user_spec):
29154         Don't translate a message until just before returning,
29155         to avoid unnecessary translation.
29156
29157 2000-08-07  Jim Meyering  <meyering@lucent.com>
29158
29159         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
29160         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
29161         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
29162         getgroups.c, gethostname.c, getopt.h, group-member.c,
29163         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
29164         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
29165         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
29166         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
29167         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
29168         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
29169         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
29170         yesno.c: Back out Copyright date changes for each file with no change
29171         this year.  This eases coordination with other programs using the same
29172         source code modules.  From Paul Eggert.
29173
29174 2000-08-06  Paul Eggert  <eggert@twinsun.com>
29175
29176         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
29177         not char, for compatibility with glibc 2.1.3 strftime.c.
29178
29179 2000-08-03  Greg McGary  <greg@mcgary.org>
29180
29181         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
29182         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
29183         (EXTEND_BUFFER): Use them.
29184
29185 2000-08-01  Jim Meyering  <meyering@lucent.com>
29186
29187         * lib/dirname.c (ISSLASH): Define.
29188         (BACKSLASH_IS_PATH_SEPARATOR): Define.
29189         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
29190         both `\' and `/' may be use as path separators.
29191         Based on a patch from Prashant TR.
29192
29193 2000-07-31  Paul Eggert  <eggert@twinsun.com>
29194
29195         * lib/quotearg.c (quotearg_n_options): Don't make the initial
29196         slot vector a constant, since it might get modified.
29197
29198 2000-07-31  Jim Meyering  <meyering@lucent.com>
29199
29200         * lib/xmalloc.c: Use `virtual memory exhausted', not
29201         `Memory exhausted'.
29202         * lib/obstack.c (print_and_abort): Likewise.
29203
29204 2000-07-30  Paul Eggert  <eggert@twinsun.com>
29205
29206         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
29207         buffer, so that the caller can always quote one small
29208         component of a "memory exhausted" message in slot 0.
29209         From a suggestion by Jim Meyering.
29210
29211 2000-07-30  Jim Meyering  <meyering@lucent.com>
29212
29213         * lib/makepath.c (make_path): Quote the other instance, too.
29214
29215         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
29216         (STATIC_BUF_SIZE): Define.
29217         (quotearg_n_options): Use only statically allocated storage when
29218         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
29219         than STATIC_BUF_SIZE.
29220
29221 2000-07-29  Jim Meyering  <meyering@lucent.com>
29222
29223         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
29224         * lib/dirname.c (dir_name): Likewise.
29225
29226         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
29227         `/'.
29228
29229         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
29230         (dir_name): Assert that there are no trailing slashes.
29231
29232 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
29233
29234         * lib/mbswidth.h (mbswidth): Add a flags argument.
29235         (mbswidth): New declaration.
29236         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
29237         * lib/mbswidth.c (mbswidth): Add a flags argument.
29238         (mbsnwidth): New function.
29239
29240 2000-07-24  Jim Meyering  <meyering@lucent.com>
29241
29242         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
29243
29244 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29245
29246         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
29247
29248 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29249
29250         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
29251         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
29252         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
29253         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
29254         invoke multibyte primitives.
29255
29256 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29257
29258         * lib/quotearg.c:
29259         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
29260         so that mbstate_t is always defined.
29261
29262         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
29263         be 1 in at least one GCC installation, and this configuration
29264         error is likely to be common.  Ignoring MB_LEN_MAX hurts
29265         performance on hosts that have mbrtowc but have only unibyte
29266         locales, but I assume these hosts are rare.
29267
29268 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29269
29270         * lib/mbswidth.c (_XOPEN_SOURCE):
29271         Don't define; this causes problems on Solaris 7.
29272         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
29273
29274 2000-07-23  Jim Meyering  <meyering@lucent.com>
29275
29276         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
29277         too: getgrgid, getpwuid, getuid.
29278
29279 2000-07-23  Jim Meyering  <meyering@lucent.com>
29280
29281         * lib/basename.c (base_name): Add an assertion.
29282
29283 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
29284
29285         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
29286         shadow its mbsinit function.
29287
29288 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
29289
29290         * lib/mbswidth.h: New file.
29291         * lib/mbswidth.c: New file.
29292         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
29293         (noinst_HEADERS): Add mbswidth.h.
29294
29295 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
29296
29297         * lib/config.charset: Add support for FreeBSD. Improve support for
29298         HP-UX and IRIX 6.
29299
29300 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
29301
29302         * m4/mbswidth.m4: New file.
29303         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
29304
29305 2000-07-15  Jim Meyering  <meyering@lucent.com>
29306
29307         * lib/makepath.c: Include quote.h.
29308         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
29309         corresponding argument in a `quote (...)' call.
29310         Give better diagnostics.
29311
29312         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
29313         (noinst_HEADERS): Add quote.h.
29314
29315         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
29316         from tar's src/misc.c.
29317         * lib/quote.h: New file.  Prototypes for same.
29318
29319 2000-07-14  Paul Eggert  <eggert@twinsun.com>
29320
29321         From a suggestion by Bruno Haible.
29322         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
29323         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
29324         to decide whether to define the BeOS workaround macro;
29325         this adjusts to the change to AC_MBSTATE_T.
29326
29327 2000-07-14  Jim Meyering  <meyering@lucent.com>
29328
29329         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
29330         jm_AC_TYPE_UINTMAX_T.
29331
29332 2000-07-13  Paul Eggert  <eggert@twinsun.com>
29333
29334         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
29335
29336         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
29337         quotearg_buffer_restyled): Add support for
29338         clocale_quoting_style.  Undo previous change to
29339         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
29340         and "{RIGHT QUOTATION MARK}" msgids.
29341
29342 2000-07-10  Paul Eggert  <eggert@twinsun.com>
29343
29344         From a suggestion by Bruno Haible.
29345         * m4/mbstate_t.m4 (AC_MBSTATE_T):
29346         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
29347         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
29348         and mbstate_t, to a single-part test that simply defines mbstate_t.
29349         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
29350         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
29351
29352 2000-07-10  Jim Meyering  <meyering@lucent.com>
29353
29354         * m4/strerror_r.m4: Mirror the correction made in autoconf.
29355
29356         * m4/gnu-source.m4: Output to confdefs.h directly.
29357         Suggestion from Akim Demaille.
29358
29359 2000-07-09  Paul Eggert  <eggert@twinsun.com>
29360
29361         The old behavior of quoting `like this' doesn't look good with
29362         newer, ISO-style fonts.  See:
29363         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
29364
29365         Instead, quote "like this" by default.  Let the translator
29366         tailor the locale-specific quoting behavior by providing
29367         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
29368
29369         * lib/quotearg.c (N_): New macro.
29370         (gettext_default): New function.
29371         (quotearg_buffer_restyled): Use
29372         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
29373         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
29374
29375 2000-07-09  Jim Meyering  <meyering@lucent.com>
29376
29377         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
29378         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
29379
29380         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
29381         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
29382
29383 2000-07-09  Jim Meyering  <meyering@lucent.com>
29384
29385         * lib/Most files: Update copyright dates to include 2000.
29386
29387 2000-07-08  Jim Meyering  <meyering@lucent.com>
29388
29389         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
29390         if not defined.
29391         (xgethostname): Remove now-unnecessary #ifdef.
29392         Move declaration of `err' into loop where it's used.
29393
29394 2000-07-05  Paul Eggert  <eggert@twinsun.com>
29395         and Bruno Haible  <haible@clisp.cons.org>
29396
29397         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
29398         only if the test for an object-type mbstate_t fails.  This
29399         prevents us from mistakenly reporting that mbstate_t is a
29400         system object type after we "#define mbstate_t int" to work
29401         around its lack.
29402
29403 2000-07-05  Paul Eggert  <eggert@twinsun.com>
29404         and Bruno Haible  <haible@clisp.cons.org>
29405
29406         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
29407
29408 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29409
29410         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
29411         to strerror_r.
29412         Include <ctype.h> for use of isalpha.
29413
29414 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29415
29416         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
29417         by allocating a larger buffer. Test the gethostname return value for
29418         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
29419         returns an error and ENAMETOOLONG isn't defined.
29420
29421 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29422
29423         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
29424         dimension.
29425
29426 2000-07-04  Jim Meyering  <meyering@lucent.com>
29427
29428         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
29429         of the deprecated AC_CHECKING.
29430
29431 2000-07-04  Jim Meyering  <meyering@lucent.com>
29432
29433         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
29434         Reported by Bruno Haible.
29435
29436 2000-07-04  Jim Meyering  <meyering@lucent.com>
29437
29438         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
29439         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
29440         lacks mbrtowc.
29441
29442 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29443
29444         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
29445         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
29446
29447 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29448         and Bruno Haible  <haible@clisp.cons.org>
29449
29450         * lib/quotearg.c (mbrtowc):
29451         Assign to *pwc, and return 1 only if result is nonzero.
29452         (iswprint): Use ISPRINT when substituting our own mbrtowc.
29453
29454 2000-07-03  Jim Meyering  <meyering@lucent.com>
29455
29456         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
29457
29458 2000-07-03  Jim Meyering  <meyering@lucent.com>
29459
29460         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
29461         This is necessary to get a definition of e.g., UTMP_FILE on
29462         HP-UX 10.20.
29463         From Bob Proulx.
29464
29465 2000-07-02  Jim Meyering  <meyering@lucent.com>
29466
29467         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
29468
29469         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
29470         AC_LIBOBJ(function_name).
29471         * m4/chown.m4: Likewise.
29472         * m4/fnmatch.m4: Likewise.
29473         * m4/ftruncate.m4: Likewise.
29474         * m4/getgroups.m4: Likewise.
29475         * m4/getline.m4: Likewise.
29476         * m4/group-member.m4: Likewise.
29477         * m4/jm-macros.m4: Likewise.
29478         * m4/lstat.m4: Likewise.
29479         * m4/malloc.m4: Likewise.
29480         * m4/memcmp.m4: Likewise.
29481         * m4/nanosleep.m4: Likewise.
29482         * m4/putenv.m4: Likewise.
29483         * m4/realloc.m4: Likewise.
29484         * m4/regex.m4: Likewise.
29485         * m4/stat.m4: Likewise.
29486         * m4/strftime.m4: Likewise.
29487
29488 2000-07-02  Jim Meyering  <meyering@lucent.com>
29489
29490         * lib/quotearg.c (mbstate_t): Don't define here.
29491
29492 2000-07-02  Jim Meyering  <meyering@lucent.com>
29493
29494         * lib/nanosleep.c (SIGCONT): Define if not already defined.
29495
29496 2000-07-01  Jim Meyering  <meyering@lucent.com>
29497
29498         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
29499
29500 2000-07-01  Jim Meyering  <meyering@lucent.com>
29501
29502         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
29503         problem.
29504
29505 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29506
29507         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
29508         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
29509
29510 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29511
29512         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
29513         per change in ../m4/ls-mntd-fs.m4.
29514         (read_filesystem_list): Ignore symbolic links.
29515
29516 2000-06-29  Jim Meyering  <meyering@lucent.com>
29517
29518         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
29519         for declaration of strcmp.
29520
29521         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
29522
29523         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
29524         Avoid warning by casting result to `char *' to remove `const'.
29525
29526 2000-06-28  Jim Meyering  <meyering@lucent.com>
29527
29528         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
29529         included by quotearg.c, for which we perform this test.  From
29530         Bruno Haible.
29531
29532 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29533
29534         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
29535         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
29536         <utmpx.h> exists, put readutmp.o into LIBOBJS.
29537
29538 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29539
29540         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
29541
29542 2000-06-26  Paul Eggert  <eggert@twinsun.com>
29543
29544         savedir now sets errno on failure and invokes xmalloc to get memory.
29545         Fix a couple of other minor bugs while we're at it.
29546
29547         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
29548         (NAMLEN): Remove macro.
29549         (malloc, realloc): Remove decls.
29550         (stpcpy): Likewise.
29551         ("xalloc.h"): Include.
29552         (NAME_SIZE_DEFAULT): New macro.
29553         (savedir): Use xmalloc / xrealloc to allocate memory.
29554         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
29555         Skip "" directory entries.
29556         Use strlen to calculate directory entry length, since the old method
29557         is rarely used these days and isn't worth supporting.
29558         Don't use a pointer after freeing it.
29559         Check for integer overflow when calculating allocation size.
29560         Use memcpy to copy entries, instead of stpcpy.
29561         Set errno properly when returning NULL.
29562         Check for readdir error.
29563
29564 2000-06-26  Jim Meyering  <meyering@lucent.com>
29565
29566         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
29567
29568 2000-06-25  Jim Meyering  <meyering@lucent.com>
29569
29570         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
29571         Linux header bug when _XOPEN_SOURCE is defined to 500.
29572
29573 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29574
29575         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
29576         deficiency.
29577
29578 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29579
29580         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
29581         Include xalloc.h.
29582         Don't include <stdlib.h>.  Don't declare malloc, realloc.
29583
29584 2000-06-24  Jim Meyering  <meyering@lucent.com>
29585
29586         * m4/strerror_r.m4: Revive this file -- to try out an experimental
29587         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
29588         for which strerror does return char*, but which lacks a conveniently
29589         accessible declaration of the function.  If the compile-test says
29590         strerror_r doesn't work, then resort to a `run'-test that works on
29591         BeOS and segfaults on DEC Unix.
29592
29593 2000-06-24  Jim Meyering  <meyering@lucent.com>
29594
29595         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
29596
29597 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29598
29599         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
29600         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
29601
29602 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29603
29604         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
29605         (mbrtowc, mbstate_t): Define substitutes if
29606         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
29607         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
29608         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
29609
29610 2000-06-23  Jim Meyering  <meyering@lucent.com>
29611
29612         * m4/afs.m4: Add missing AC_MSG_RESULT.
29613         Reported by Bruno Haible.
29614
29615         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
29616         Suggestion from Bruno Haible.
29617
29618 2000-06-23  Jim Meyering  <meyering@lucent.com>
29619
29620         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
29621
29622 2000-06-21  Jim Meyering  <meyering@lucent.com>
29623
29624         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
29625
29626 2000-06-21  Jim Meyering  <meyering@lucent.com>
29627
29628         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
29629         (noinst_HEADERS): Add getstr.h.
29630
29631         * lib/getline.c (getstr): Move into a separate file.
29632         * lib/getstr.c (getstr): New file, extracted from getline.c, with
29633         the following changes: new parameter, delim2; both delim[12]
29634         parameters have type `int', not `char'.  The latter would lose
29635         with 8-bit delimiters.
29636         * lib/getstr.h: New file.
29637
29638 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29639
29640         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
29641         than 1024, return a memory chunk of least possible size, instead
29642         of size PATH_MAX + 2. In the loop, increment the size proportionally.
29643         Use free/xmalloc instead of xrealloc to avoid copying for very long
29644         paths.
29645
29646 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29647
29648         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
29649         the empty string.
29650
29651 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29652
29653         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
29654         address, not strdup.  Include <stdlib.h> and don't declare free().
29655
29656 2000-06-19  Jim Meyering  <meyering@lucent.com>
29657
29658         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
29659
29660 2000-06-18  Jim Meyering  <meyering@lucent.com>
29661
29662         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
29663
29664         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
29665         `checking whether...' message to be consistent with that of the
29666         lstat test.
29667
29668 2000-06-18  Jim Meyering  <meyering@lucent.com>
29669
29670         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
29671         Besides, these days every porting target provides a mkdir function.
29672
29673         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
29674         needed. (this snippet comes from src/system.h).
29675
29676 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
29677
29678         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
29679
29680 2000-06-15  Paul Eggert  <eggert@twinsun.com>
29681
29682         * lib/human.c (adjust_value): New function.
29683         (human_readable_inexact): Apply rounding style even when
29684         printing approximate values.
29685
29686 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29687
29688         * lib/human.c (human_readable_inexact): Allow an input block
29689         size that is not a multiple of the output block size, and vice versa.
29690         Reported by Piergiorgio Sartor.
29691
29692 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29693
29694         * lib/getdate.y (get_date): Apply relative times after time
29695         zone indicator, not before.  Reported by Todd A. Jacobs.
29696
29697 2000-06-13  Jim Meyering  <meyering@lucent.com>
29698
29699         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
29700
29701         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
29702
29703 2000-06-12  Paul Eggert  <eggert@twinsun.com>
29704
29705         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
29706
29707 2000-06-12  Jim Meyering  <meyering@lucent.com>
29708
29709         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
29710         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
29711         optional argument.
29712         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
29713         the optional argument, `lib'.
29714
29715 2000-06-08  Jim Meyering  <meyering@lucent.com>
29716
29717         * m4/largefile.m4: Remove file (now that it's part of autoconf).
29718
29719 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29720
29721         Rewrite largefile configuration so that we don't need to run
29722         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
29723         AC_CANONICAL_HOST in configure.in -- jmm]
29724
29725         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
29726         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
29727         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
29728         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
29729         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
29730         All uses changed.
29731         Instead of inspecting the output of getconf, try to compile the
29732         test program without and with the macro definition.
29733         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
29734         for getconf.  Instead, check for the needed flags by compiling
29735         test programs.
29736
29737 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29738
29739         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
29740
29741 2000-06-04  Jim Meyering  <meyering@lucent.com>
29742
29743         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
29744         SunOS 4.1.4 for which gid_t is an unsigned type.
29745
29746 2000-06-03  Jim Meyering  <meyering@lucent.com>
29747
29748         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
29749         now that autoconf requires that.
29750
29751         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
29752         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
29753         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
29754
29755 2000-06-03  Jim Meyering  <meyering@lucent.com>
29756
29757         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
29758
29759 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29760
29761         * m4/glibc21.m4: New file.
29762         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
29763
29764 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29765
29766         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
29767         newer, don't install charset.alias.
29768         * lib/config.charset: Change the Linux/glibc rules so they become empty
29769         on glibc-2.1 or newer.
29770
29771 2000-06-02  Jim Meyering  <meyering@lucent.com>
29772
29773         * lib/mountlist.c: Back out last change.  Instead, do this...
29774         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
29775         me_dummy member using the same `ignore'-testing code.
29776         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
29777         fs_type strings.
29778         From Mark D. Roth.
29779
29780 2000-05-29  Jim Meyering  <meyering@lucent.com>
29781
29782         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
29783         mounts with the `ignore' attribute.  Based on a patch from
29784         Mark D. Roth.
29785
29786 2000-05-28  Jim Meyering  <meyering@lucent.com>
29787
29788         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
29789         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29790         * m4/stat.m4: Likewise.
29791         * m4/lstat.m4: Likewise.
29792         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
29793
29794         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
29795         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
29796
29797 2000-05-26  Jim Meyering  <meyering@lucent.com>
29798
29799         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
29800
29801 2000-05-24  Jim Meyering  <meyering@lucent.com>
29802
29803         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
29804         autoconf requires that.
29805         * m4/lib-check.m4: Likewise.
29806         * m4/jm-macros.m4: Likewise.
29807         * m4/strftime.m4: Likewise.
29808
29809         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
29810         AC_CHECK_DECLS, now that autoconf requires that.
29811
29812 2000-05-22  Jim Meyering  <meyering@lucent.com>
29813
29814         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29815         * m4/lstat.m4: Likewise.
29816
29817 2000-05-22  Jim Meyering  <meyering@lucent.com>
29818
29819         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
29820
29821 2000-05-20  Jim Meyering  <meyering@lucent.com>
29822
29823         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
29824         (jm_PREREQ): Use it.
29825
29826 2000-05-18  Jim Meyering  <meyering@lucent.com>
29827
29828         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
29829         back, too, since it may have been modified by allocate_entry.
29830         (hash_delete): Rewrite to use neither the assignment operator
29831         nor the comma operator in an if-expression.
29832
29833 2000-05-15  Paul Eggert  <eggert@twinsun.com>
29834
29835         * lib/closeout.c:
29836         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
29837         Remove; no longer needed.
29838         "quotearg.h": Add include.
29839         (file_name): Do not bother to explicitly initialize to NULL; it's less
29840         efficient on some hosts.
29841         (close_stdout_status): Remove test as to whether stdout was already
29842         closed; it breaks for the case "echo x | sort >&-".
29843         Quote file name colons.
29844         Do not assume that _("write error") lacks format strings.
29845
29846 2000-05-15  Jim Meyering  <meyering@lucent.com>
29847
29848         * lib/version-etc.c (version_etc_copyright): Update the copyright
29849         string used in all --version output.
29850
29851 2000-05-14  Jim Meyering  <meyering@lucent.com>
29852
29853         * lib/closeout.c (close_stdout_set_file_name): New function.
29854         (close_stdout_status): Use new file-scoped global.
29855         Return right away if fstat says the stdout file descriptor is invalid.
29856         * lib/closeout.h (close_stdout_set_file_name): Declare.
29857
29858 2000-05-10  Jim Meyering  <meyering@lucent.com>
29859
29860         * lib/closeout.c [default_exit_status]: New file-scoped variable.
29861         (close_stdout_set_status): New function.
29862         * lib/closeout.h (close_stdout_set_status): Declare.
29863
29864 2000-05-09  Jim Meyering  <meyering@lucent.com>
29865
29866         * m4/gettext.m4: Rename this...
29867         * m4/libintl.m4: ...to this.
29868
29869 2000-05-08  Jim Meyering  <meyering@lucent.com>
29870
29871         * lib/long-options.c: Don't include closeout.h.
29872         (parse_long_options): Don't call close_stdout for --version.
29873
29874 2000-05-06  Paul Eggert  <eggert@twinsun.com>
29875
29876         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
29877         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
29878         2.1.3 bug.  This avoids a clash when files like regex.c define
29879         _GNU_SOURCE.
29880
29881 2000-05-06  Jim Meyering  <meyering@lucent.com>
29882
29883         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
29884         (AC_REPLACE_FUNCS): Add strnlen.
29885
29886         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
29887         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
29888
29889         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
29890         AC_SEARCH_LIBS call for nanosleep.
29891         (LIB_NANOSLEEP): Set and AC_SUBST.
29892
29893 2000-05-06  Jim Meyering  <meyering@lucent.com>
29894
29895         * lib/strnlen.c: Undefine __strnlen and strnlen.
29896         [!weak_alias]: Define __strnlen to strnlen.
29897
29898         * lib/atexit.c: New file, from libiberty.
29899
29900 2000-05-06  Jim Meyering  <meyering@lucent.com>
29901
29902         * lib/closeout.c (close_stdout_status): Also check for errors on the
29903         stderr stream.
29904
29905 2000-05-05  Jim Meyering  <meyering@lucent.com>
29906
29907         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
29908         AC_SEARCH_LIBS call for clock_gettime.
29909         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
29910
29911         * m4/search-libs.m4: Update from autoconf.
29912
29913         su doesn't work on Solaris 2.6.
29914         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
29915         <shadow.h>.  Reported by Dragos Harabor.
29916
29917 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
29918
29919         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
29920         memcpy instead of xmalloc, xrealloc, path_concat.
29921         (locale_charset): Treat empty environment variables as absent.
29922         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
29923
29924 2000-05-04  Jim Meyering  <meyering@lucent.com>
29925
29926         * lib/getopt.c: Update from glibc.
29927         * lib/obstack.c: Likewise.
29928         * lib/obstack.h: Likewise.
29929         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
29930         file
29931
29932         * lib/regex.h: Likewise.
29933         * lib/strndup.c: Likewise.
29934         * lib/strnlen.c: New file, from glibc.
29935
29936 2000-05-03  Jim Meyering  <meyering@lucent.com>
29937
29938         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
29939
29940 2000-05-02  Paul Eggert  <eggert@twinsun.com>
29941
29942         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
29943         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
29944         compile-time test, rather than inspecting host and OS, to
29945         decide whether to define _LARGEFILE_SOURCE.
29946
29947 2000-05-01  Jim Meyering  <meyering@lucent.com>
29948
29949         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
29950
29951         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
29952         Based on a patch from Bruno Haible.
29953
29954 2000-05-01  Jim Meyering  <meyering@lucent.com>
29955
29956         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
29957
29958 2000-04-29  Jim Meyering  <meyering@lucent.com>
29959
29960         * lib/path-concat.c: Declare strdup only if it's not defined.
29961         * lib/canon-host.c: Likewise.
29962
29963 2000-04-28  Jim Meyering  <meyering@lucent.com>
29964
29965         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
29966         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
29967         is included first, then limits.h is included by locale.h by libintl.h.
29968         From John David Anglin.
29969
29970 2000-04-25  Jim Meyering  <meyering@lucent.com>
29971
29972         * lib/makepath.c (S_IRWXUGO): Define.
29973         (make_path): Always perform explicit chmod if MODE specifies any
29974         of the `special' permission bits.  Prompted by a bug report against
29975         install from Mate Wierdl and Joost van Baal.
29976
29977 2000-04-18  Jim Meyering  <meyering@lucent.com>
29978
29979         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
29980         (jm_PREREQ): Use it.
29981
29982 2000-04-18  Jim Meyering  <meyering@lucent.com>
29983
29984         * lib/README: New file.
29985
29986         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
29987         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
29988
29989 2000-04-17  Jim Meyering  <meyering@lucent.com>
29990
29991         Get it right :-)
29992         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
29993         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
29994         Suggestion from Akim Demaille.
29995
29996 2000-04-17  Jim Meyering  <meyering@lucent.com>
29997
29998         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
29999         the definition of it to rpl_strftime also defined-away the system's
30000         declaration.
30001
30002 2000-04-15  Jim Meyering  <meyering@lucent.com>
30003
30004         Use `C' to denote so-called `contiguous' files, the same way
30005         that tar does.
30006         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
30007         (ftypelet): Use S_ISCTG.
30008         From Michael Deutschmann.
30009
30010 2000-04-14  Jim Meyering  <meyering@lucent.com>
30011
30012         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
30013         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
30014         clobbered.
30015
30016 2000-04-14  Jim Meyering  <meyering@lucent.com>
30017
30018         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
30019
30020 2000-04-13  Jim Meyering  <meyering@lucent.com>
30021
30022         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
30023         AH_VERBATIM to insert required #ifndef into config.h.in.
30024         Suggestion from Akim Demaille.
30025
30026 2000-04-12  Jim Meyering  <meyering@lucent.com>
30027
30028         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
30029         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
30030         Christian Krackowizer.
30031
30032         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
30033         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
30034         (AC_SYS_LARGEFILE): Require.
30035         (AM_C_PROTOTYPES): Require.
30036
30037 2000-04-08  Jim Meyering  <meyering@lucent.com>
30038
30039         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
30040         names don't conflict.  Reported by Eli Zaretskii.
30041
30042 2000-04-07  Jim Meyering  <meyering@lucent.com>
30043
30044         * lib/putenv.c: Move inclusion of errno.h so it follows that of
30045         sys/types.h, to work around system header problems on AIX 3.2.5.
30046         From Bruno Haible.
30047
30048 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
30049
30050         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
30051         bug.  Deal with the different error behavior of Irix iconv.
30052
30053 2000-04-05  Paul Eggert  <eggert@twinsun.com>
30054
30055         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
30056         IRIX if the installer said otherwise.
30057
30058 2000-04-05  Jim Meyering  <meyering@lucent.com>
30059
30060         Portability tweaks required for ultrix4.3.
30061         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
30062         (jm_CHECK_DECLS): Add getutent to the list of functions.
30063         (_jm_DECL_HEADERS): Add utmpx.h.
30064         From John David Anglin.
30065
30066         * m4/strftime.m4: Back out the 2000-04-02 change.
30067         Instead of that change, simply undefine putenv in the test program.
30068
30069 2000-04-05  Jim Meyering  <meyering@lucent.com>
30070
30071         Portability tweaks required for ultrix4.3.
30072         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
30073         getutent.
30074         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
30075         * lib/canon-host.c: Declare strdup.
30076         * lib/path-concat.c: Likewise.
30077         From John David Anglin.
30078
30079 2000-04-04  Jim Meyering  <meyering@lucent.com>
30080
30081         Be more DOS 8.3-friendly.
30082         * lib/ref-add.sin: Renamed from ref-add.sed.in.
30083         * lib/ref-del.sin: Renamed from ref-del.sed.in.
30084         * lib/Makefile.am: Reflect renaming.
30085         Reported by Eli Zaretskii.
30086
30087         Use a temporary file name that won't clash with `charset.alias'
30088         in the DOS 8.3 name space.
30089         * lib/Makefile.am (charset_tmp): Define.
30090         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
30091         (uninstall-local): Likewise.
30092         Reported by Eli Zaretskii.
30093
30094 2000-04-03  Jim Meyering  <meyering@lucent.com>
30095
30096         * m4/gettext.m4: Fix typo in comment.
30097
30098         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
30099         textutils/configure.in).  Suggestion from Paul Eggert.
30100         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
30101
30102 2000-04-02  Paul Eggert  <eggert@twinsun.com>
30103
30104         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
30105         variable in the shell rather than using putenv, which isn't
30106         portable.  This avoids the configure-time inter-test dependency
30107         on the potentially-renamed putenv function.
30108
30109 2000-03-30  Paul Eggert  <eggert@twinsun.com>
30110
30111         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
30112         before checking struct stat.st_blksize, so that
30113         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
30114
30115 2000-03-29  Paul Eggert  <eggert@twinsun.com>
30116
30117         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
30118         since strftime.c uses HAVE_STRFTIME to decide whether to use
30119         the underlying strftime.
30120
30121 2000-03-29  Paul Eggert  <eggert@twinsun.com>
30122
30123         * lib/time/strftime.c (my_strftime): Make sure we call the system
30124         strftime, not ourselves, when invoking the underlying strftime.
30125
30126 2000-03-24  Jim Meyering  <meyering@lucent.com>
30127
30128         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
30129         (charset_alias): Define.
30130         (install-exec-local): Factor out common code.
30131         (uninstall-local): Split lines longer than 80.
30132         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
30133         (SUFFIXES): Define.
30134         (.sed.in.sed): New rule.  Don't redirect directly to $@.
30135         (CLEANFILES): Add ref-add.sed and ref-del.sed.
30136
30137 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
30138
30139         * lib/config.charset: Output a line containing "Packages using this
30140         file".
30141         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
30142         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
30143         ref-del.sed): New rules.
30144
30145 2000-03-17  Jim Meyering  <meyering@lucent.com>
30146
30147         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
30148         Otherwise, include <strings.h>
30149
30150 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
30151
30152         * lib/unicodeio.c (utf8_wctomb): New function.
30153         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
30154         format instead of in UCS-4 with platform dependent endianness.
30155
30156 2000-03-10  Jim Meyering  <meyering@lucent.com>
30157
30158         * m4/lib-check.m4: Look for getspnam in -lgen, too.
30159         From Marco Franzen.
30160
30161 2000-03-07  Paul Eggert  <eggert@twinsun.com>
30162
30163         * lib/savedir.c (savedir): Work even if directory size is
30164         negative; this can happen with some screwy NFS configurations.
30165
30166 2000-03-06  Jim Meyering  <meyering@lucent.com>
30167
30168         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
30169         if it's NULL (because we ran out of memory).  From Bruno Haible.
30170
30171 2000-03-05  Jim Meyering  <meyering@lucent.com>
30172
30173         * lib/localcharset.c ("path-concat.h"): Include.
30174         (get_charset_aliases): Use path_concat instead of ANSI string
30175         concatenation.
30176
30177         * lib/unicodeio.h (PARAMS): Define.
30178         Use it to guard prototype.
30179
30180 2000-03-04  Jim Meyering  <meyering@lucent.com>
30181
30182         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
30183         for lib/localcharset.c.
30184
30185 2000-03-04  Jim Meyering  <meyering@lucent.com>
30186
30187         * lib/Makefile.am (install-exec-local): Create $(libdir) before
30188         installing into it.
30189         (uninstall-local): Uncomment this rule so `make distcheck' works
30190         once again.
30191
30192         * lib/unicodeio.c (<errno.h>): Include it.
30193         (errno): Declare if not defined.
30194
30195         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
30196
30197         * lib/config.charset: New version, incorporating remarks from a linux
30198         i18n mailing list.  From Bruno Haible.
30199
30200 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
30201
30202         * m4/codeset.m4: New file.
30203         * m4/iconv.m4: New file.
30204         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
30205
30206 2000-03-03  Jim Meyering  <meyering@lucent.com>
30207
30208         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
30209
30210 2000-03-02  Jim Meyering  <meyering@lucent.com>
30211
30212         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
30213         the messages come out on separate lines.
30214
30215         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
30216         rather than jm_CHECK_DECLARATIONS.
30217         * m4/decl.m4: Remove now-unused file.
30218
30219         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
30220         geteuid.
30221
30222 2000-03-02  Jim Meyering  <meyering@lucent.com>
30223
30224         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
30225
30226 2000-03-01  Jim Meyering  <meyering@lucent.com>
30227
30228         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
30229         * lib/unicodeio.c: Likewise.
30230
30231 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
30232
30233         * lib/config.charset: New file.
30234         * lib/localcharset.c: New file.
30235         * lib/unicodeio.h, lib/unicodeio.c: New files.
30236         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
30237         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
30238         (noinst_HEADERS): Add unicodeio.h.
30239         (all-local, install-exec-local, charset.alias): New targets.
30240
30241 2000-02-28  Paul Eggert  <eggert@twinsun.com>
30242
30243         * lib/quotearg.c (ALERT_CHAR): New macro.
30244         (quotearg_buffer_restyled): Use it.
30245
30246 2000-02-27  Jim Meyering  <meyering@lucent.com>
30247
30248         * m4/check-decl.m4: Add getenv to the list.
30249
30250 2000-02-27  Jim Meyering  <meyering@lucent.com>
30251
30252         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
30253         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
30254
30255         * lib/backupfile.c: Guard inclusion of stdlib.h with
30256         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
30257         Declare malloc if needed.
30258
30259         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
30260         `#ifndef HAVE_DECL..'
30261         now that autoconf always defines the HAVE_DECL_ symbols.
30262         * lib/human.c: Likewise.
30263         * lib/same.c: Likewise.
30264         * lib/strtoumax.c: Likewise.
30265
30266         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
30267         declaration check was not run.
30268         * lib/hash.c: Likewise.
30269         * lib/human.c: Likewise.
30270         * lib/same.c: Likewise.
30271         * lib/strtoumax.c: Likewise.
30272
30273         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
30274         `.', then first look up the entire `.'-containing string as a login
30275         name.
30276
30277 2000-02-23  Jim Meyering  <meyering@lucent.com>
30278
30279         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
30280         in place of my hack.
30281
30282 2000-02-18  Paul Eggert  <eggert@twinsun.com>
30283
30284         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
30285         (textint): New typedef.
30286         (parser_control): Member year changed from int to textint.
30287         All uses changed.
30288         (YYSTYPE): Removed; replaced by %union with int and textint members.
30289         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
30290         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
30291         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
30292         (tSNUMBER, tUNUMBER): Now of type <textintval>.
30293         (date, number, to_year): Use width of number in digits, not its value,
30294         to determine whether it's a 2-digit year, or a 2-digit time.
30295         (yylex): Store number of digits of numeric tokens.
30296         Reported by John Kendall.
30297
30298         (parser_control): Changed from struct parser_control to typedef (for
30299         consistency).  All uses changed.
30300
30301         (tID): Removed; not used.
30302         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
30303
30304 2000-02-14  Paul Eggert  <eggert@twinsun.com>
30305
30306         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
30307         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
30308
30309 2000-02-12  Jim Meyering  <meyering@lucent.com>
30310
30311         * lib/userspec.c (ISDIGIT): Define it.
30312         (isdigit): Remove definition.
30313         (is_number): Use ISDIGIT, not isdigit.
30314         <libintl.h>: Include.
30315         (_ and N_): Define.
30316         (parse_user_spec): Mark translatable strings.
30317
30318 2000-02-10  Jim Meyering  <meyering@lucent.com>
30319
30320         With these changes, nanosleep.[ch] are finally enough like the other
30321         lib/* replacement files to compile on a few more losing systems.
30322
30323         * lib/nanosleep.h: Don't include config.h.
30324         Remove prototype from declaration of nanosleep.
30325         (PARAMS): Remove now-unneeded definition.
30326         * lib/nanosleep.c: #undef nanosleep.
30327         (rpl_nanosleep): Rename from nanosleep.
30328
30329 2000-02-10  Jim Meyering  <meyering@lucent.com>
30330
30331         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
30332         gnu_nanosleep to rpl_nanosleep.
30333
30334 2000-02-09  Jim Meyering  <meyering@lucent.com>
30335
30336         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
30337         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
30338
30339 2000-02-08  Akim Demaille  <akim@epita.fr>
30340
30341         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
30342         `[' and `]' and remove uses of `changequote'.
30343         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
30344         (AC_SYS_LARGEFILE): Likewise.
30345         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
30346         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
30347         of changequote.
30348         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
30349         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
30350         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
30351         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
30352
30353 2000-02-05  Jim Meyering  <meyering@lucent.com>
30354
30355         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
30356         Remove explicit use of AC_HEADER_TIME.  It is required by
30357         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
30358         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
30359         in autoconf whereby the expansion of the latter ended up preceding
30360         the expansion of its prerequisite, AC_HEADER_TIME.
30361         Reported by Volker Borchert.
30362
30363 2000-02-03  Jim Meyering  <meyering@lucent.com>
30364
30365         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
30366
30367 2000-02-03  Jim Meyering  <meyering@lucent.com>
30368
30369         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
30370         rather than with `#if HAVE_UTMPNAME'.
30371
30372 2000-02-02  Jim Meyering  <meyering@lucent.com>
30373
30374         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
30375         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
30376         Reported by Eli Zaretskii.
30377
30378 2000-02-01  Jim Meyering  <meyering@lucent.com>
30379
30380         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
30381
30382 2000-01-31  Jim Meyering  <meyering@lucent.com>
30383
30384         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
30385         functions.  Add the time.h and sys/time.h headers along with the
30386         AC_REQUIRE'ment of AC_HEADER_TIME.
30387
30388 2000-01-31  Jim Meyering  <meyering@lucent.com>
30389
30390         * lib/nanosleep.h (nanosleep): Guard declaration with
30391         `#if ! HAVE_DECL_NANOSLEEP'.
30392         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
30393         the declaration in that vendor's sys/timers.h.
30394         Reported by Christian Krackowizer.
30395
30396         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
30397         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
30398         (ISPRINT): Likewise.
30399         Reported by Tom Tromey.
30400
30401 2000-01-30  Jim Meyering  <meyering@lucent.com>
30402
30403         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
30404
30405         * m4/prereq.m4 (utmp_includes): Define.
30406         Check for ut_user and ut_name members in both struct utmpx
30407         and struct utmp.
30408
30409 2000-01-30  Jim Meyering  <meyering@lucent.com>
30410
30411         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
30412         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
30413         header files where only utmpx.ut_user is declared.
30414
30415         * lib/readutmp.h (UT_USER): Define.
30416
30417 2000-01-29  Jim Meyering  <meyering@lucent.com>
30418
30419         * m4/lib-check.m4: New file containing library-related checks from
30420         fileutils and sh-utils (textutils had none).
30421
30422 2000-01-28  Jim Meyering  <meyering@lucent.com>
30423
30424         * m4/perl.m4: Change format of warning message to look more like that
30425         from the missing script.  Suggestion from François Pinard.
30426
30427 2000-01-25  Jim Meyering  <meyering@lucent.com>
30428
30429         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
30430         well as time.h in the compile check.
30431         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
30432         Fix typo in cross-compiling case: s/yes/no/.
30433
30434 2000-01-23  Jim Meyering  <meyering@lucent.com>
30435
30436         * m4/jm-macros.m4: Move df-related tests here from
30437         fileutils/configure.in
30438
30439         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
30440         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
30441
30442         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
30443         s/space/ac_fsusage_space/.
30444         (jm_FILE_SYSTEM_USAGE): Take two parameters.
30445
30446         * m4/ftruncate.m4: New file (derived from part of
30447         fileutils/configure.in).
30448         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
30449         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
30450
30451         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
30452         AC_SUBST these here, rather than just in sh-util/configure.in, so
30453         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
30454         all the same.
30455         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
30456         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
30457         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
30458         (AC_SUBST(POW_LIBM)): Likewise.
30459         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
30460
30461 2000-01-23  Jim Meyering  <meyering@lucent.com>
30462
30463         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
30464         obstack.c.
30465
30466 2000-01-22  Jim Meyering  <meyering@lucent.com>
30467
30468         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
30469
30470         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
30471
30472         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
30473         configure.in
30474         (AC_CHECK_HEADERS): Likewise for sh-utils.
30475         (AC_CHECK_HEADERS): Likewise for textutils.
30476         Merge the three lists of headers.
30477
30478         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
30479         from fileutils' configure.in.
30480
30481         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
30482         code. Moved tests into their own function (_jm_DECL_HEADERS) in
30483         check-decl.m4.
30484
30485         * m4/check-decl.m4: Use #if rather than #ifdef.
30486         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
30487         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
30488         (_jm_DECL_HEADERS): Define new function.
30489         (jm_CHECK_DECLARATIONS): Require it.
30490
30491 2000-01-22  Jim Meyering  <meyering@lucent.com>
30492
30493         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
30494         [! HAVE_DECL_STRTOULL]: Declare strtoull.
30495         Required for some AIX systems.  Reported by Christian Krackowizer.
30496         [TESTING] (main): New function.
30497
30498         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
30499         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
30500         letters.
30501
30502         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
30503         iswprint.
30504
30505         * lib/strverscmp.c (ISDIGIT): Define.
30506         (strverscmp): Use ISDIGIT, not isdigit.
30507
30508 2000-01-19  Jim Meyering  <meyering@lucent.com>
30509
30510         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
30511         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
30512         defines `struct timespec' in <sys/time.h>
30513
30514         * m4/c-bs-a.m4: Remove uses of changequote altogether.
30515         Thanks to Akim for explaining.
30516
30517 2000-01-17  Paul Eggert  <eggert@twinsun.com>
30518
30519         * lib/nanosleep.c (nanosleep):
30520         Don't use SA_INTERRUPT to decide whether to call sigaction, as
30521         POSIX.1 doesn't require SA_INTERRUPT and some systems
30522         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
30523         it's been part of POSIX.1 since day 1 (in 1988).
30524
30525 2000-01-17  Jim Meyering  <meyering@lucent.com>
30526
30527         * lib/interlock: Remove unused file.  Reported by François Pinard.
30528
30529 2000-01-16  Paul Eggert  <eggert@twinsun.com>
30530
30531         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
30532         alert, backslash, formfeed, and vertical tab unnecessarily in
30533         shell quoting style.
30534
30535 2000-01-16  Jim Meyering  <meyering@lucent.com>
30536
30537         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
30538         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
30539         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
30540         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
30541
30542 2000-01-16  Jim Meyering  <meyering@lucent.com>
30543
30544         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
30545         because the latter didn't work.
30546
30547 2000-01-15  Jim Meyering  <meyering@lucent.com>
30548
30549         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
30550         (AC_REPLACE_FUNCS): Add memcpy and memset.
30551         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
30552         Add strpbrk.
30553         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
30554
30555 2000-01-12  Jim Meyering  <meyering@lucent.com>
30556
30557         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
30558         (jm_PREREQ): Use it.
30559         (jm_PREREQ_READUTMP): New macro.
30560         (jm_PREREQ): Use it.
30561
30562 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30563
30564         Quote multibyte characters correctly.
30565         * m4/c-bs-a.m4: New file.
30566         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
30567         (jm_PREREQ): Use it.
30568
30569 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30570
30571         * m4/uintmax_t.m4: Port to autoconf 2.13.
30572
30573 2000-01-08  Jim Meyering  <meyering@ascend.com>
30574
30575         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
30576         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
30577
30578 2000-01-04  Jim Meyering  <meyering@ascend.com>
30579
30580         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
30581         jm_STRUCT_DIRENT_D_TYPE.
30582         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
30583         jm_STRUCT_DIRENT_D_INO.
30584         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
30585         jm_STRUCT_UTIMBUF.
30586         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
30587         renamings.
30588         * m4/utime.m4: Likewise.
30589
30590         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
30591         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
30592
30593 2000-01-03  Paul Eggert  <eggert@twinsun.com>
30594
30595         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
30596         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
30597
30598 2000-01-02  Jim Meyering  <meyering@ascend.com>
30599
30600         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
30601         remember if this is necessary.
30602
30603 1999-12-26  Jim Meyering  <meyering@ascend.com>
30604
30605         * m4/jm-macros.m4: Use it here.
30606         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
30607
30608 1999-12-23  Jim Meyering  <meyering@ascend.com>
30609
30610         * m4/jm-macros.m4: Check for clock_gettime (moved from
30611         fileutils/configure.in)
30612         Check for gettimeofday.
30613
30614 1999-12-20  Jim Meyering  <meyering@ascend.com>
30615
30616         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
30617         autoconf-2.14a-1999-12-20.
30618
30619 1999-12-19  Jim Meyering  <meyering@ascend.com>
30620
30621         * m4/lstat-slash.m4: New file.
30622         * m4/jm-macros.m4: Use the new macro:
30623         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30624
30625 1999-12-07  Jim Meyering  <meyering@ascend.com>
30626
30627         * m4/perl.m4: Require that File::Compare be available, too.
30628         Too many systems seem to lack it.
30629
30630         * m4/strftime.m4: Add checks for most of the cpp macros tested in
30631         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
30632
30633 1999-11-18  Paul Eggert  <eggert@twinsun.com>
30634
30635         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
30636         problem with the QNX 4.25 shell, which doesn't propagate exit
30637         status of failed commands inside shell assignments.
30638
30639 1999-11-17  Jim Meyering  <meyering@ascend.com>
30640
30641         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
30642
30643 1999-11-07  Jim Meyering  <meyering@ascend.com>
30644
30645         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
30646
30647 1999-11-06  Jim Meyering  <meyering@ascend.com>
30648
30649         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
30650         * m4/jm-macros.m4 (jm_MACROS): Use it here.
30651
30652 1999-11-05  Jim Meyering  <meyering@ascend.com>
30653
30654         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
30655         configure.in of textutils, fileutils, and sh-utils into this one
30656         (shared between those packages) file.
30657         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
30658         AC_STRUCT_ST_BLKSIZE.
30659
30660 1999-11-03  Jim Meyering  <meyering@ascend.com>
30661
30662         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
30663         of AC_CHECK_TYPE checks includes unistd.h.
30664         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
30665         Suggestion from Akim Demaille.
30666
30667 1999-10-30  Jim Meyering  <meyering@ascend.com>
30668
30669         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
30670         m4-quoted string.
30671         * m4/ls-mntd-fs.m4: Likewise.
30672         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
30673         * m4/jm-winsz1.m4: Likewise.
30674
30675         * m4/const.m4: Remove file, since the fix made it into the experimental
30676         version of autoconf.
30677         * m4/mktime.m4: Likewise.
30678
30679         * m4/check-type.m4: Remove file, now that the latest version of
30680         AC_CHECK_TYPE takes a third arg to specify additional #includes.
30681
30682         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
30683         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
30684         AC_CHECK_TYPE.
30685
30686 1999-10-04  Jim Meyering  <meyering@ascend.com>
30687
30688         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
30689
30690 1999-09-22  Paul Eggert  <eggert@twinsun.com>
30691
30692         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
30693         2.95.1 bug with HP-UX 10.20.
30694
30695 1999-09-17  Jim Meyering  <meyering@ascend.com>
30696
30697         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
30698         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
30699         due to missing strdup (against sh-utils-2.0).
30700
30701 1999-08-29  Jim Meyering  <meyering@ascend.com>
30702
30703         * m4/jm-macros.m4: Require jm_BISON.
30704         * m4/bison.m4: New file.
30705
30706 1999-08-17  Paul Eggert  <eggert@twinsun.com>
30707
30708         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
30709         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
30710
30711 1999-08-05  Jim Meyering  <meyering@ascend.com>
30712
30713         * m4/getline.m4: Rename test file from conftestdata to conftest.data
30714         to avoid conflicts with `conftest' on 8+3 filesystems.
30715         Suggestion from Eli Zaretskii.
30716
30717 1999-08-04  Jim Meyering  <meyering@ascend.com>
30718
30719         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
30720         fileutils and sh-utils (textutils's getline test was inadequate).
30721         (AM_FUNC_GETLINE): Run this test.
30722         (AC_CHECK_FUNCS): Check for getdelim.
30723         Reported by Bob Proulx.
30724
30725 1999-08-02  Jim Meyering  <meyering@ascend.com>
30726
30727         * m4/jm-macros.m4: Add a comment.
30728
30729 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30730
30731         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
30732         <inttypes.h> defines strtoumax as a macro (and not as a
30733         function).
30734
30735 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30736
30737         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
30738         that we can shift, multiply and divide unsigned long long
30739         values; Ultrix cc can't do it.
30740
30741 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30742
30743         * m4/mktime.m4: New file, which is a preview of what should appear
30744         in the next public autoconf release.
30745
30746 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30747
30748         * m4/lfs.m4: Remove this file.
30749         * m4/largefile.m4: New file.  It contains the old contents of
30750         lfs.m4, except that all names with prefix AC_LFS have been
30751         changed to use the prefix AC_SYS_LARGEFILE instead, to be
30752         compatible with future autoconf versions.  Also, some minor m4
30753         quoting problems have been fixed.
30754
30755 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30756
30757         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
30758         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
30759         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
30760         and simplify the shell code.
30761
30762 1999-08-01  Jim Meyering  <meyering@ascend.com>
30763
30764         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
30765         m4.
30766
30767 1999-07-20  Jim Meyering  <meyering@ascend.com>
30768
30769         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
30770
30771 1999-07-15  Jim Meyering  <meyering@ascend.com>
30772
30773         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
30774
30775 1999-05-22  Jim Meyering  <meyering@ascend.com>
30776
30777         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
30778
30779 1999-05-20  Jim Meyering  <meyering@ascend.com>
30780
30781         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
30782         Add a colon after each `then' in case $4 is empty.
30783
30784 1999-05-16  Jim Meyering  <meyering@ascend.com>
30785
30786         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
30787
30788 1999-05-10  Jim Meyering  <meyering@ascend.com>
30789
30790         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
30791
30792         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
30793         AC_FUNC_MKTIME.
30794
30795 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
30796
30797         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
30798
30799 1999-05-04  Paul Eggert  <eggert@twinsun.com>
30800
30801         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
30802         not CPPFLAGS, so that linking works correctly in IRIX.
30803
30804 1999-04-30  Paul Eggert  <eggert@twinsun.com>
30805
30806         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
30807
30808 1999-04-20  Paul Eggert  <eggert@twinsun.com>
30809
30810         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
30811         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
30812         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
30813         jm_AC_TYPE_UNSIGNED_LONG_LONG.
30814         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
30815
30816         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
30817
30818 1999-04-20  Jim Meyering  <meyering@ascend.com>
30819
30820         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
30821         AC_REPLACE xstroull if necessary.  From Paul Eggert.
30822         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
30823
30824 1999-04-18  Jim Meyering  <meyering@ascend.com>
30825
30826         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
30827         * m4/jm-macros.m4: Use it.
30828
30829 1999-04-06  Jim Meyering  <meyering@ascend.com>
30830
30831         * m4/strftime.m4: Remove test for %f.
30832
30833 1999-03-29  Jim Meyering  <meyering@ascend.com>
30834
30835         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
30836         superset of the AC_TYPE_* checks in the textutils, fileutils,
30837         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
30838         AC_TYPE_PID_T.
30839
30840 1999-03-28  Jim Meyering  <meyering@ascend.com>
30841
30842         * m4/jm-macros.m4: Define GNU_PACKAGE here.
30843         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
30844         replaced e.g., in the *.sh files of the sh-utils.
30845
30846 1999-03-20  Jim Meyering  <meyering@ascend.com>
30847
30848         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
30849         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
30850         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
30851
30852 1999-03-19  Jim Meyering  <meyering@ascend.com>
30853
30854         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
30855
30856 1999-03-12  Jim Meyering  <meyering@ascend.com>
30857
30858         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
30859
30860 1999-03-07  Jim Meyering  <meyering@ascend.com>
30861
30862         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
30863         declared.
30864
30865 1999-02-17  Jim Meyering  <meyering@ascend.com>
30866
30867         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
30868         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
30869
30870 1999-02-07  Jim Meyering  <meyering@ascend.com>
30871
30872         * m4/group-member.m4: New file -- extracted from sh-utils'
30873         configure.in.
30874
30875         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
30876         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
30877
30878 1999-02-06  Jim Meyering  <meyering@ascend.com>
30879
30880         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
30881         * m4/fnmatch.m4: Likewise.
30882         * m4/getgroups.m4: Likewise.
30883         * m4/lstat.m4: Likewise.
30884         * m4/malloc.m4: Likewise.
30885         * m4/putenv.m4: Likewise.
30886         * m4/realloc.m4: Likewise.
30887         * m4/regex.m4: Likewise.
30888         * m4/stat.m4: Likewise.
30889         * m4/strftime.m4: Likewise.
30890         Suggestion from Alain Magloire.
30891
30892         * m4/chown.m4: Use `.$ac_objext', not `.o'.
30893         * m4/fnmatch.m4: Likewise.
30894         * m4/getgroups.m4: Likewise.
30895         * m4/getline.m4: Likewise.
30896         * m4/lstat.m4: Likewise.
30897         * m4/malloc.m4: Likewise.
30898         * m4/memcmp.m4: Likewise.
30899         * m4/putenv.m4: Likewise.
30900         * m4/realloc.m4: Likewise.
30901         * m4/regex.m4: Likewise.
30902         * m4/stat.m4: Likewise.
30903         * m4/strftime.m4: Likewise.
30904         Suggestion from Alain Magloire.
30905
30906         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
30907         an argument.
30908
30909         * m4/regex.m4: Add a run-time Test for proper operation of
30910         re_compile_pattern.
30911
30912 1999-01-31  Jim Meyering  <meyering@ascend.com>
30913
30914         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
30915
30916 1999-01-30  Jim Meyering  <meyering@ascend.com>
30917
30918         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
30919
30920         * m4/jm-mktime.m4: Make this a wrapper around the official
30921         AM_FUNC_MKTIME rather than my private copy, now that the official one
30922         is up to date.
30923         * m4/mktime.m4: Remove file.
30924
30925         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
30926         * m4/uptime.m4: Likewise.
30927         * m4/uintmax_t.m4: Likewise.
30928
30929 1999-01-28  Jim Meyering  <meyering@ascend.com>
30930
30931         * m4/jm-macros.m4: Use jm_AFS.
30932         * m4/afs.m4: New file (from fileutils' configure.in).
30933
30934         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
30935         * m4/chown.m4: Likewise.
30936         * m4/d-ino.m4: Likewise.
30937         * m4/d-type.m4: Likewise.
30938         * m4/fnmatch.m4: Likewise.
30939         * m4/getgroups.m4: Likewise.
30940         * m4/gettext.m4: Likewise.
30941         * m4/jm-mktime.m4: Likewise.
30942         * m4/jm-winsz2.m4: Likewise.
30943         * m4/lcmessage.m4: Likewise.
30944         * m4/ls-mntd-fs.m4: Likewise.
30945         * m4/malloc.m4: Likewise.
30946         * m4/memcmp.m4: Likewise.
30947         * m4/putenv.m4: Likewise.
30948         * m4/realloc.m4: Likewise.
30949         * m4/st_mtim.m4: Likewise.
30950         * m4/strftime.m4: Likewise.
30951
30952 1999-01-16  Jim Meyering  <meyering@ascend.com>
30953
30954         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
30955         (ARGMATCH_DIE_DECL): Define.
30956
30957 1999-01-12  Jim Meyering  <meyering@ascend.com>
30958
30959         * m4/Makefile.am.in: Rewrite to avoid using fmt.
30960         Reported by Lars Hecking.
30961
30962 1999-01-10  Jim Meyering  <meyering@ascend.com>
30963
30964         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
30965         gross kludge.
30966         * m4/inttypes_h.m4: Likewise.
30967         * m4/lstat.m4: Likewise.
30968         * m4/malloc.m4: Likewise.
30969         * m4/readdir.m4: Likewise.
30970         * m4/realloc.m4: Likewise.
30971         * m4/st_dm_mode.m4: Likewise.
30972         * m4/stat.m4: Likewise.
30973         * m4/utimbuf.m4: Likewise.
30974         * m4/utimes.m4: Likewise.
30975
30976         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
30977         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
30978         comments in config.h.in are meaningful.
30979
30980         * m4/jm-macros.m4: Require autoconf-2.13 here.
30981
30982         * m4/regex.m4: By default, don't use the included regex.c on systems
30983         with glibc 2.  Suggestion from Uli Drepper.
30984
30985 1999-01-02  Jim Meyering  <meyering@ascend.com>
30986
30987         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
30988
30989 1998-12-18  Jim Meyering  <meyering@ascend.com>
30990
30991         * m4/Makefile.am.in (Makefile.am): Simplify rule.
30992         Based on a suggestion from Lars Hecking.
30993
30994 1998-11-16  Paul Eggert  <eggert@twinsun.com>
30995
30996         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
30997
30998 1998-11-16  Jim Meyering  <meyering@ascend.com>
30999
31000         * m4/lfs.m4: Double-quote the `uname...` expression.
31001
31002 1998-11-14  Jim Meyering  <meyering@ascend.com>
31003
31004         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
31005         * m4/stat.m4: Likewise.
31006
31007 1998-11-03  Jim Meyering  <meyering@ascend.com>
31008
31009         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
31010         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
31011
31012 1998-10-18  Jim Meyering  <meyering@ascend.com>
31013
31014         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
31015
31016 1998-10-17  Jim Meyering  <meyering@ascend.com>
31017
31018         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
31019         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
31020         calls for those previously hard-coded headers.  Instead, take a new
31021         parameter.
31022         (jm_CHECK_DECLARATIONS): Reflect interface change.
31023         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
31024         (jm_CHECK_DECL_LOCALTIME_R): New macro.
31025
31026         * m4/mktime.m4: Test for spring-forward gap before long-running test.
31027
31028 1998-10-14  Jim Meyering  <meyering@ascend.com>
31029
31030         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
31031         instead of "TZ=America/Vancouver".  From Paul Eggert.
31032
31033 1998-10-11  Jim Meyering  <meyering@ascend.com>
31034
31035         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
31036         This adds a test for a recently added compatibility fix for mktime.c.
31037         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
31038
31039 1998-09-27  Jim Meyering  <meyering@ascend.com>
31040
31041         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
31042
31043         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
31044         ../configure.in, including a change from Gordon Matzigkeit to allow
31045         cross-compiling for the Hurd.
31046
31047         * m4/glibc.m4: New file/macro to test for the GNU C Library
31048         versions 1 and 2.  From Gordon Matzigkeit.
31049         Indent.
31050
31051 1998-09-21  Jim Meyering  <meyering@ascend.com>
31052
31053         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
31054
31055 1998-08-18  Paul Eggert  <eggert@twinsun.com>
31056
31057         Port nanosecond-resolution times to UnixWare 2.1.2 and
31058         pedantic Solaris 2.6.
31059
31060         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
31061         AC_STRUCT_ST_MTIM.
31062         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
31063         Generate name of ns member, instead of just 1 or undef.
31064         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
31065
31066 1998-08-15  Jim Meyering  <meyering@ascend.com>
31067
31068         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
31069         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
31070         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
31071         instead of jm_TYPE_SSIZE_T.
31072
31073 1998-08-12  Jim Meyering  <meyering@ascend.com>
31074
31075         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
31076
31077 1998-08-02  Jim Meyering  <meyering@ascend.com>
31078
31079         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
31080         in acconfig.h manually.
31081
31082 1998-07-31  Paul Eggert  <eggert@twinsun.com>
31083
31084         * m4/st_mtim.m4: New file.
31085
31086 1998-07-28  Jim Meyering  <meyering@ascend.com>
31087
31088         * m4/utimes.m4: Undef stat.
31089
31090 1998-07-25  Jim Meyering  <meyering@ascend.com>
31091
31092         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
31093         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
31094
31095 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
31096
31097         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
31098         uid and gid actually remain unchanged.
31099
31100 1998-07-07  Jim Meyering  <meyering@ascend.com>
31101
31102         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
31103
31104 1998-07-04  Jim Meyering  <meyering@ascend.com>
31105
31106         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
31107         to prove that this macro can be used in packages without regex.c.
31108
31109 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
31110
31111         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
31112         is to be used.
31113
31114 1998-07-03  Jim Meyering  <meyering@ascend.com>
31115
31116         * m4/gettext.m4: Add -lintl if it's found to be necessary.
31117
31118         * m4/gettext.m4: New file -- from gettext-0.10.35.
31119         * m4/lcmessage.m4: Likewise.
31120         * m4/progtest.m4: Likewise.
31121
31122         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
31123         * m4/jm-macros.m4: Require the new macro.
31124
31125 1998-06-29  Jim Meyering  <meyering@ascend.com>
31126
31127         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
31128         for the definition of NGROUPS (used in a system header included
31129         by sys/mount.h).
31130
31131 1998-06-28  Jim Meyering  <meyering@ascend.com>
31132
31133         * m4/ls-mntd-fs.m4: New file.
31134         * m4/fstypename.m4: New file.
31135
31136         * m4/jm-macros.m4: Require the new macro.
31137         * m4/jm-glibc-io.m4: New file.
31138
31139 1998-05-19  Jim Meyering  <meyering@ascend.com>
31140
31141         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
31142         * m4/lchown.m4: New file.
31143
31144         * m4/Makefile.am.in: New file.
31145         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
31146
31147 1998-05-14  Jim Meyering  <meyering@ascend.com>
31148
31149         * m4/Makefile.am (EXTRA_DIST): Add them.
31150         * m4/jm-macros.m4: New file.
31151         * m4/utimbuf.m4: New file.
31152
31153 1998-05-12  Jim Meyering  <meyering@ascend.com>
31154
31155         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
31156
31157 1998-05-11  Jim Meyering  <meyering@ascend.com>
31158
31159         * m4/isc-posix.m4: New file.
31160
31161 1998-05-10  Jim Meyering  <meyering@ascend.com>