60ca7dbce2607a22c2a59d705b0702025b32b1a3
[pspp] / ChangeLog
1 2007-06-16  Bruno Haible  <bruno@clisp.org>
2
3         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
4         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
5         Reported by Gary V. Vaughan <gary@gnu.org>.
6
7 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
8
9         Revamp lchown so that it lives in unistd.h where it belongs.
10         * lib/lchown.h: Remove.
11         * lib/dirchownmod.c: Don't include lib/lchown.h.
12         * lib/fchownat.c: Likewise.
13         * lib/openat.c: Likewise.
14         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
15         does not follow symlinks.
16         (EOPNOTSUPP): Define if not defined.
17         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
18         is defined to 0.
19         (lchown): New decl.
20         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
21         Do not check for lchown decl.
22         Set REPLACE_LCHOWN.
23         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
24         REPLACE_LCHOWN.
25         * modules/chown: Make it clear it follows symlinks.
26         * modules/lchown: Make it clear it doesn't follow symlinks.
27         (Files): Remove lib/lchown.h
28         (Depends-on): Add unistd.
29         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
30         (Include): Include <unistd.h>, not "lchown.h".
31         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
32         REPLACE_LCHOWN.
33
34 2007-06-15  Jim Meyering  <jim@meyering.net>
35
36         Change license (GPL to LGPL) of fsusage and dependents.
37         * modules/fsusage (License): Change to LGPL.
38         * modules/full-read (License): Likewise.
39         * modules/full-write (License): Likewise.
40         * modules/safe-read (License): Likewise.
41         * modules/safe-write (License): Likewise.
42
43 2007-06-14  Ben Pfaff  <blp@gnu.org>
44
45         Missing part of allocsa -> malloca transition.
46         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
47         gl_MALLOCA.
48
49 2007-06-12  Bruno Haible  <bruno@clisp.org>
50
51         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
52         to ia64, x86_64, i386.
53         Reported by Eric Blake.
54
55 2007-06-12  Bruno Haible  <bruno@clisp.org>
56
57         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
58         cross-compiling to x86_64.
59
60 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
61
62         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
63         glitch reported by Ralf Wildenhues in
64         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
65
66         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
67         Vin Shelton.
68
69 2007-06-11  Bruno Haible  <bruno@clisp.org>
70
71         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
72         replacement string.
73         Reported by Eric Blake.
74
75 2007-06-10  Bruno Haible  <bruno@clisp.org>
76
77         Prepare vasnprintf code for use with Unicode strings.
78         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
79         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
80         TYPE_U32_STRING.
81         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
82         a_u32_string variants.
83         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
84         * lib/printf-args.c: Don't include config.h and the specification
85         header if PRINTF_FETCHARGS is already defined.
86         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
87         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
88         TYPE_U16_STRING, TYPE_U32_STRING.
89         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
90         u16_directive, u16_directives, u32_directive, u32_directives): New
91         types.
92         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
93         New declarations.
94         * lib/printf-parse.c: Don't include config.h and the specification
95         header if PRINTF_PARSE is already defined. Eliminate the set of
96         parameters for WIDE_CHAR_VERSION; the user of this file must provide
97         them now. Include c-ctype.h.
98         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
99         directive and CHAR_T_ONLY_ASCII.
100         * lib/vasnprintf.c: Don't include config.h and the specification header
101         if VASNPRINTF is already defined.
102         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
103         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
104         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
105         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
106         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
107         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
108         code accordingly.
109         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
110         pad_ourselves also in this case, with the 'c' and 's' directives, and
111         with a different notion of "width".
112         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
113
114 2007-06-10  Bruno Haible  <bruno@clisp.org>
115
116         * modules/unistr/u32-mbsnlen: New file.
117         * lib/unistr/u32-mbsnlen.c: New file.
118
119         * modules/unistr/u16-mbsnlen: New file.
120         * lib/unistr/u16-mbsnlen.c: New file.
121
122         * modules/unistr/u8-mbsnlen: New file.
123         * lib/unistr/u8-mbsnlen.c: New file.
124
125         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
126         declarations.
127
128 2007-06-10  Bruno Haible  <bruno@clisp.org>
129
130         * lib/string_.h (mbsnlen): New declaration.
131         * lib/mbsnlen.c: New file.
132         * m4/mbsnlen.m4: New file.
133         * modules/mbsnlen: New file.
134         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
135         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
136         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
137
138 2007-06-10  Bruno Haible  <bruno@clisp.org>
139
140         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
141
142 2007-06-10  Bruno Haible  <bruno@clisp.org>
143
144         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
145         * lib/mbuiter.h: Likewise.
146
147 2007-06-10  Bruno Haible  <bruno@clisp.org>
148
149         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
150         declaration.
151
152 2007-06-10  Karl Berry  <karl@gnu.org>
153
154         * config/srclist.txt: remove gettext entries, Bruno prefers
155         to update individually.
156
157 2007-06-10  Bruno Haible  <bruno@clisp.org>
158
159         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
160         'maxlen'. Ensure only length + width bytes are allocated, not
161         length + 1 + width.
162
163 2007-06-09  Bruno Haible  <bruno@clisp.org>
164
165         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
166         (CHAR_T): Remove macro.
167         (VASNPRINTF): Update.
168
169 2007-06-09  Bruno Haible  <bruno@clisp.org>
170
171         * MODULES.html.sh (Unicode string functions): Add the new modules.
172
173         * modules/uniconv/u32-conv-to-enc: New file.
174         * lib/uniconv/u32-conv-to-enc.c: New file.
175         * modules/uniconv/u32-conv-to-enc-tests: New file.
176         * tests/uniconv/test-u32-conv-to-enc.c: New file.
177
178         * modules/uniconv/u16-conv-to-enc: New file.
179         * lib/uniconv/u16-conv-to-enc.c: New file.
180         * lib/uniconv/u-conv-to-enc.h: New file.
181         * modules/uniconv/u16-conv-to-enc-tests: New file.
182         * tests/uniconv/test-u16-conv-to-enc.c: New file.
183
184         * modules/uniconv/u8-conv-to-enc: New file.
185         * lib/uniconv/u8-conv-to-enc.c: New file.
186         * modules/uniconv/u8-conv-to-enc-tests: New file.
187         * tests/uniconv/test-u8-conv-to-enc.c: New file.
188
189         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
190         u32_conv_to_encoding): New declarations.
191
192 2007-06-09  Bruno Haible  <bruno@clisp.org>
193
194         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
195
196 2007-06-09  Bruno Haible  <bruno@clisp.org>
197
198         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
199         * modules/malloca: Renamed from modules/allocsa, updated.
200         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
201         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
202         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
203         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
204         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
205         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
206         * modules/xmalloca: Renamed from modules/xallocsa, updated.
207         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
208         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
209         * modules/c-strcasestr (Depends-on): Update.
210         * lib/c-strcasestr.c: Update.
211         * modules/c-strstr (Depends-on): Update.
212         * lib/c-strstr.c: Update.
213         * modules/canonicalize-lgpl (Depends-on): Update.
214         * lib/canonicalize-lgpl.c: Update.
215         * modules/clean-temp (Depends-on): Update.
216         * lib/clean-temp.c: Update.
217         * modules/csharpcomp (Depends-on): Update.
218         * lib/csharpcomp.c: Update.
219         * modules/csharpexec (Depends-on): Update.
220         * lib/csharpexec.c: Update.
221         * modules/javacomp (Depends-on): Update.
222         * lib/javacomp.c: Update.
223         * modules/javaexec (Depends-on): Update.
224         * lib/javaexec.c: Update.
225         * modules/mbscasestr (Depends-on): Update.
226         * lib/mbscasestr.c: Update.
227         * modules/mbsstr (Depends-on): Update.
228         * lib/mbsstr.c: Update.
229         * modules/setenv (Depends-on): Update.
230         * lib/setenv.c: Update.
231         * modules/strcasestr (Depends-on): Update.
232         * lib/strcasestr.c: Update.
233         * modules/striconveha (Depends-on): Update.
234         * lib/striconveha.c: Update.
235         * modules/relocatable-prog-wrapper (Files): Update.
236         * lib/relocwrapper.c: Update.
237         * build-aux/install-reloc: Update.
238         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
239
240 2007-06-08  Bruno Haible  <bruno@clisp.org>
241
242         Port to uClibc.
243         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
244         * lib/fpurge.c (fpurge): Likewise.
245         * lib/freading.c (freading): Likewise.
246         * lib/fseeko.c (rpl_fseeko): Likewise.
247         * lib/fseterr.c (fseterr): Likewise.
248         * lib/fwriting.c (fwriting): Likewise.
249         * tests/test-fflush.c (main): Avoid a failure on uClibc.
250
251 2007-06-08  Bruno Haible  <bruno@clisp.org>
252
253         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
254         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
255         * modules/gettext (Files): Add m4/intlmacosx.m4.
256
257 2007-06-07  Bruno Haible  <bruno@clisp.org>
258
259         * modules/localename-tests: New file.
260         * tests/test-localename.c: New file.
261
262         New module 'localename'.
263         * lib/localename.h: New file.
264         * lib/localename.c: New file, from GNU gettext.
265         * m4/localename.m4: New file.
266         * modules/localename: New file.
267
268 2007-06-07  Bruno Haible  <bruno@clisp.org>
269
270         Work around the lack of <wchar.h> on some builds of uClibc.
271         * doc/headers/wchar.texi: Update.
272         * lib/wchar_.h: Include <wchar.h> only if it exists.
273         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
274         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
275         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
276         doesn't exist.
277         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
278         * modules/mbfile (Depends-on): Add wchar.
279         * modules/mbiter (Depends-on): Likewise.
280         * modules/mbuiter (Depends-on): Likewise.
281         Reported by Simon Josefsson.
282
283 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
284
285         Work around problem reported by Steven M. Schweda in
286         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
287         Tru64 5.1B with the Compaq compiler environment installed declares
288         an 'isblank' function but does not define it in the C library.
289         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
290         * lib/regex_internal.h (isblank): Likewise.
291         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
292         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
293
294 2007-06-05  Bruno Haible  <bruno@clisp.org>
295
296         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
297         ia64.
298         * modules/printf-safe: New file.
299         * modules/fprintf-posix (Depends-on): Add printf-safe.
300         * modules/printf-posix (Depends-on): Likewise.
301         * modules/snprintf-posix (Depends-on): Likewise.
302         * modules/sprintf-posix (Depends-on): Likewise.
303         * modules/vasnprintf-posix (Depends-on): Likewise.
304         * modules/vasprintf-posix (Depends-on): Likewise.
305         * modules/vfprintf-posix (Depends-on): Likewise.
306         * modules/vprintf-posix (Depends-on): Likewise.
307         * modules/vsnprintf-posix (Depends-on): Likewise.
308         * modules/vsprintf-posix (Depends-on): Likewise.
309         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
310         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
311         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
312         "no" on i386, x86_64, ia64.
313         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
314         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
315         on i386, x86_64, ia64.
316         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
317         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
318         on i386, x86_64, ia64.
319         * tests/test-vasnprintf-posix.c: Include float.h.
320         (LDBL80_WORDS): New macro.
321         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
322         on i386, x86_64, ia64.
323         * tests/test-vasprintf-posix.c: Include float.h.
324         (LDBL80_WORDS): New macro.
325         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
326         on i386, x86_64, ia64.
327         * tests/test-snprintf-posix.c: Include float.h.
328         * tests/test-sprintf-posix.c: Likewise.
329         * tests/test-vsnprintf-posix.c: Likewise.
330         * tests/test-vsprintf-posix.c: Likewise.
331
332 2007-06-05  Bruno Haible  <bruno@clisp.org>
333
334         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
335         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
336         non-IEEE numbers on i386, x86_64, ia64.
337         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
338         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
339         * tests/test-isnanl.h: Include float.h.
340         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
341
342 2007-06-05  Bruno Haible  <bruno@clisp.org>
343
344         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
345         also the %a / %A. Handle the %a / %A code before this extra handling.
346
347 2007-06-05  Bruno Haible  <bruno@clisp.org>
348
349         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
350         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
351
352 2007-06-05  Bruno Haible  <bruno@clisp.org>
353
354         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
355         typo in variable name.
356
357 2007-06-05  Eric Blake  <ebb9@byu.net>
358
359         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
360         Reported by Simon Josefsson.
361
362 2007-06-04  Bruno Haible  <bruno@clisp.org>
363
364         Avoid test failures on some PowerPC platforms.
365         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
366         Define differently for PowerPC.
367         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
368         Reported by Gary V. Vaughan <gary@gnu.org>.
369
370 2007-06-02  Bruno Haible  <bruno@clisp.org>
371
372         Fix test-stdint failure on FreeBSD/ia64.
373         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
374         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
375         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
376         * doc/headers/stdint.texi: Update.
377
378 2007-06-01  Bruno Haible  <bruno@clisp.org>
379
380         * tests/test-binary-io.c (main): Pass a third argument to open().
381         Reported by Gary V. Vaughan <gary@gnu.org>.
382
383 2007-06-01  Bruno Haible  <bruno@clisp.org>
384
385         * doc/functions/frexpl.texi: Update for mingw.
386
387 2007-06-01  Bruno Haible  <bruno@clisp.org>
388
389         * tests/test-lseek.c (main): Disable test of errno for invalid third
390         argument.
391         * doc/functions/lseek.texi: Update.
392         Reported by Gary V. Vaughan <gary@gnu.org>.
393
394 2007-05-28  Bruno Haible  <bruno@clisp.org>
395
396         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
397
398 2007-05-31  Eric Blake  <ebb9@byu.net>
399
400         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
401         cross compiling.
402
403 2007-05-30  Eric Blake  <ebb9@byu.net>
404         and Bruno Haible  <bruno@clisp.org>
405
406         Work around mingw test failures exposed by m4-1.4.9b.
407         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
408         * tests/test-unistd.c: Disable uid_t and git_t tests for the
409         moment.
410
411 2007-05-30  Bruno Haible  <bruno@clisp.org>
412
413         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
414         assuming that they are closed. Needed on HP-UX 11.
415
416 2007-05-29  Bruno Haible  <bruno@clisp.org>
417
418         Fix a problem with #include_next.
419         * lib/dirent_.h: Split the double-inclusion guard.
420         * lib/fcntl_.h: Likewise.
421         * lib/float_.h: Likewise.
422         * lib/iconv_.h: Likewise.
423         * lib/inttypes_.h: Likewise.
424         * lib/locale_.h: Likewise.
425         * lib/math_.h: Likewise.
426         * lib/netinet_in_.h: Likewise.
427         * lib/search_.h: Likewise.
428         * lib/signal_.h: Likewise.
429         * lib/stdint_.h: Likewise.
430         * lib/stdio_.h: Likewise.
431         * lib/stdlib_.h: Likewise.
432         * lib/string_.h: Likewise.
433         * lib/sys_select_.h: Likewise.
434         * lib/sys_socket_.h: Likewise.
435         * lib/sys_stat_.h: Likewise.
436         * lib/sys_time_.h: Likewise.
437         * lib/sysexits_.h: Likewise.
438         * lib/time_.h: Likewise.
439         * lib/unistd_.h: Likewise.
440         * lib/wchar_.h: Likewise.
441         * lib/wctype_.h: Likewise.
442
443 2007-05-29  Bruno Haible  <bruno@clisp.org>
444
445         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
446         for the moment.
447
448 2007-05-29  Bruno Haible  <bruno@clisp.org>
449
450         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
451         invocation.
452         Reported by Eric Blake.
453
454 2007-05-29  Bruno Haible  <bruno@clisp.org>
455
456         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
457         compiling case.
458
459 2007-05-29  Eric Blake  <ebb9@byu.net>
460             Bruno Haible  <bruno@clisp.org>
461
462         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
463         cross compiles.
464
465 2007-05-28  Eric Blake  <ebb9@byu.net>
466
467         * modules/closein-tests (test_closein_LDADD): Support test on
468         cygwin with libtool.
469
470 2007-05-28  Bruno Haible  <bruno@clisp.org>
471
472         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
473         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
474         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
475         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
476         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
477         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
478         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
479         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
480         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
481
482 2007-05-28  Eric Blake  <ebb9@byu.net>
483
484         Unconditionally include <config.h> in unit tests.
485         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
486         * tests/test-allocsa.c, tests/test-arcfour.c,
487         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
488         tests/test-array_list.c, tests/test-array_oset.c,
489         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
490         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
491         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
492         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
493         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
494         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
495         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
496         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
497         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
498         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
499         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
500         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
501         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
502         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
503         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
504         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
505         test-md5.c, test-memmem.c, test-printf-posix.c,
506         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
507         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
508         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
509         test-strcasestr.c, test-striconv.c, test-striconveh.c,
510         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
511         test-vasnprintf-posix2.c, test-vasnprintf.c,
512         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
513         test-vfprintf-posix.c, test-vprintf-posix.c,
514         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
515         test-xvasprintf.c: Likewise.
516
517 2007-05-28  Bruno Haible  <bruno@clisp.org>
518
519         * gnulib-tool (func_import): Remember the --with-tests command-line
520         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
521         Reported by Eric Blake.
522
523 2007-05-28  Bruno Haible  <bruno@clisp.org>
524
525         * modules/ftell-tests: New file.
526         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
527         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
528
529         * lib/ftell.c: New file.
530         * modules/ftell: New file.
531         * m4/ftell.m4: New file.
532         * doc/functions/ftell.texi: Update.
533         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
534         REPLACE_FTELL.
535         * lib/stdio_.h (rpl_ftell): New declaration.
536         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
537         REPLACE_FTELL.
538
539 2007-05-28  Eric Blake  <ebb9@byu.net>
540
541         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
542
543 2007-05-28  Bruno Haible  <bruno@clisp.org>
544
545         * modules/fseek-tests: New file.
546         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
547         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
548
549         * lib/fseek.c: New file.
550         * modules/fseek: New file.
551         * m4/fseek.m4: New file.
552         * doc/functions/fseek.texi: Update.
553         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
554         REPLACE_FSEEK.
555         * lib/stdio_.h (rpl_fseek): New declaration.
556         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
557         REPLACE_FSEEK.
558
559 2007-05-28  Bruno Haible  <bruno@clisp.org>
560
561         * lib/stdio_.h (fflush): More comments.
562
563 2007-05-28  Bruno Haible  <bruno@clisp.org>
564
565         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
566         runtime test.
567
568 2007-05-28  Eric Blake  <ebb9@byu.net>
569
570         Improve lseek module.
571         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
572         * lib/unistd_.h (lseek): Scale back link warning message.
573         * tests/test-lseek.c: Beef up test.
574         * tests/test-lseek.sh: Exercise more facets of lseek.
575         Reported by Bruno Haible.
576
577 2007-05-28  Bruno Haible  <bruno@clisp.org>
578
579         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
580         to define.
581
582 2007-05-27  Bruno Haible  <bruno@clisp.org>
583
584         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
585
586 2007-05-27  Bruno Haible  <bruno@clisp.org>
587
588         * modules/openmp: New file.
589         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
590         Noah Misch.
591
592 2007-05-26  Bruno Haible  <bruno@clisp.org>
593
594         * modules/chdir-long (Depends-on): Add fchdir.
595         * modules/chdir-safer (Depends-on): Likewise.
596         * modules/fts (Depends-on): Likewise.
597         * modules/fts-lgpl (Depends-on): Likewise.
598         * modules/openat (Depends-on): Likewise.
599         * modules/savewd (Depends-on): Likewise.
600
601 2007-05-24  Eric Blake  <ebb9@byu.net>
602
603         Fix lseek on mingw.
604         * modules/lseek: New module.
605         * m4/lseek.m4: New file.
606         * lib/lseek.c: New file.
607         * modules/lseek-tests: New file.
608         * tests/test-lseek.c: New file.
609         * tests/test-lseek.sh: New file.
610         * MODULES.html.sh: Document lseek module.
611         * modules/fflush (Depends-on): Add lseek, fseeko.
612         * modules/fseeko (Depends-on): Likewise.
613         * modules/ftello (Depends-on): Likewise.
614         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
615         broken.
616         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
617         broken.
618         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
619         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
620         * lib/ftello.c (rpl_ftello): Likewise.
621         * tests/test-fseeko.c (main): Test this.
622         * tests/test-fseeko.sh: Likewise.
623         * tests/test-ftello.c (main): Likewise.
624         * tests/test-ftello.sh: Likewise.
625         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
626         implies replacing fseek.
627         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
628         HAVE_FTELLO.
629         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
630         * modules/unistd (Makefile.am): Likewise.
631         * lib/unistd_.h (lseek): Declare a replacement.
632         * doc/functions/lseek.texi (lseek): Document this fix.
633         * doc/functions/fseek.texi (fseek): Likewise.
634         * doc/functions/ftell.texi (ftell): Likewise.
635
636 2007-05-24  Bruno Haible  <bruno@clisp.org>
637
638         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
639         in the printed representation of a NaN.
640         * tests/test-vasprintf-posix.c (test_function): Likewise.
641         * tests/test-snprintf-posix.h (test_function): Likewise.
642         * tests/test-sprintf-posix.h (test_function): Likewise.
643         Reported by Eric Blake.
644
645 2007-05-23  Eric Blake  <ebb9@byu.net>
646
647         Fix fseeko/ftello on cygwin 1.5.24.
648         * doc/functions/fseeko.texi (fseeko): Document the fix.
649         * doc/functions/ftello.texi (ftello): Document the fix.
650         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
651         * doc/functions/stdout.text (stdout): New file.
652         * doc/functions/stderr.text (stderr): New file.
653         * doc/gnulib.texi (Function Substitutes): Use new files.
654         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
655         prior to 1.7.0.
656         * tests/test-ftello.c (main): Likewise for ftello.
657         * tests/test-fseeko.sh: New file.
658         * tests/test-ftello.sh: New file.
659         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
660         with seekable stdin.
661         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
662         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
663         (gl_REPLACE_FSEEKO): New macro.
664         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
665         * modules/fseeko (Files): Distribute fseeko.c.
666         * modules/ftello (Files): Distribute ftello.c.
667         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
668         mode.
669         * lib/ftello.c (rpl_ftello): New file.
670         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
671         fseeko, ftello.
672         (gl_STDIN_LARGE_OFFSET): New macro.
673         * modules/stdio (Makefile.am): Perform the replacement.
674         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
675
676 2007-05-23  Bruno Haible  <bruno@clisp.org>
677
678         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
679         GNULIB_POSIXCHECK is defined.
680
681 2007-05-21  Bruno Haible  <bruno@clisp.org>
682
683         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
684         Check also the output for NaN arguments. When cross-compiling, guess
685         no on IRIX.
686         * lib/vasnprintf.c: Update comments.
687         * tests/test-vasnprintf-posix.c (strisnan): New function.
688         (test_function): Use it.
689         * tests/test-vasprintf-posix.c (strisnan): New function.
690         (test_function): Use it.
691         * tests/test-snprintf-posix.h (strisnan): New function.
692         (test_function): Use it.
693         * tests/test-sprintf-posix.h (strisnan): New function.
694         (test_function): Use it.
695         Reported by Eric Blake.
696
697 2007-05-20  Bruno Haible  <bruno@clisp.org>
698
699         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
700         numbers that fails on BeOS.
701         * doc/functions/frexpl.texi: Update.
702
703 2007-05-20  Jim Meyering  <jim@meyering.net>
704
705         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
706         forced upon us by glibc-2.6.
707
708 2007-05-20  Bruno Haible  <bruno@clisp.org>
709
710         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
711         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
712         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
713         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
714         NEED_PRINTF_INFINITE.
715         (is_infinitel): New function.
716         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
717         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
718         gl_PREREQ_VASNPRINTF_INFINITE.
719         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
720         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
721         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
722         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
723         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
724         gl_PREREQ_VASNPRINTF_INFINITE.
725         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
726         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
727         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
728         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
729         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
730         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
731         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
732         * doc/functions/fprintf.texi: Update.
733         * doc/functions/printf.texi: Update.
734         * doc/functions/snprintf.texi: Update.
735         * doc/functions/sprintf.texi: Update.
736         * doc/functions/vfprintf.texi: Update.
737         * doc/functions/vprintf.texi: Update.
738         * doc/functions/vsnprintf.texi: Update.
739         * doc/functions/vsprintf.texi: Update.
740
741 2007-05-20  Bruno Haible  <bruno@clisp.org>
742
743         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
744         was not found in libc.
745         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
746
747 2007-05-20  Bruno Haible  <bruno@clisp.org>
748
749         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
750         printed as "-nan" instead of "nan".
751         * tests/test-vasprintf-posix.c (test_function): Likewise.
752         * tests/test-snprintf-posix.h (test_function): Likewise.
753         * tests/test-sprintf-posix.h (test_function): Likewise.
754         Needed for HP-UX 11.
755
756 2007-05-20  Jim Meyering  <jim@meyering.net>
757
758         Fix buggy test for the fchownat-deref bug.
759         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
760         symlink required for the run-test.  Without it, this test would
761         always declare that fchownat doesn't work, and client code would
762         unnecessarily use the replacement function with fixed libc.
763         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
764         Reported by Greg Schafer.
765
766 2007-05-19  Bruno Haible  <bruno@clisp.org>
767
768         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
769         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
770         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
771         Needed for IRIX 6.5 and Solaris 2.5.1.
772
773 2007-05-19  Bruno Haible  <bruno@clisp.org>
774
775         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
776         (test_function): Skip tests involving -0.0 on platforms where
777         -0.0 = 0.0.
778         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
779         (test_function): Skip tests involving -0.0 on platforms where
780         -0.0 = 0.0.
781         * tests/test-snprintf-posix.h (have_minus_zero): New function.
782         (test_function): Skip tests involving -0.0 on platforms where
783         -0.0 = 0.0.
784         * tests/test-sprintf-posix.h (have_minus_zero): New function.
785         (test_function): Skip tests involving -0.0 on platforms where
786         -0.0 = 0.0.
787         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
788         tests.
789         * tests/test-printf-posix.h (test_function): Likewise.
790         * tests/test-printf-posix.output: Remove all -0.0 related results.
791         Needed for IRIX 6.5.
792
793 2007-05-19  Bruno Haible  <bruno@clisp.org>
794
795         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
796         printed as "nan0x7fffffff" instead of "nan".
797         * tests/test-vasprintf-posix.c (test_function): Likewise.
798         * tests/test-snprintf-posix.h (test_function): Likewise.
799         * tests/test-sprintf-posix.h (test_function): Likewise.
800         * tests/test-fprintf-posix.h (NaN): Remove macro.
801         (test_function): Remove all NaN related tests.
802         * tests/test-printf-posix.h (NaN): Remove macro.
803         (test_function): Remove all NaN related tests.
804         * tests/test-printf-posix.output: Remove all NaN related results.
805         Needed for IRIX 6.5.
806
807 2007-05-19  Bruno Haible  <bruno@clisp.org>
808
809         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
810         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
811
812 2007-05-19  Bruno Haible  <bruno@clisp.org>
813
814         * lib/float_.h: New file.
815         * m4/float_h.m4: New file.
816         * modules/float: New file.
817         * modules/isnanl (Dependencies): Add float.
818         * modules/isnanl-nolibm (Dependencies): Likewise.
819         * modules/mathl (Dependencies): Likewise.
820         * modules/printf-frexpl (Dependencies): Likewise.
821         * modules/signbit (Dependencies): Likewise.
822         * modules/vasnprintf (Dependencies): Likewise.
823         * doc/headers/float.texi: Update.
824
825 2007-05-19  Jim Meyering  <jim@meyering.net>
826
827         * lib/utimens.c (gl_futimens): Rename from futimens,
828         now that glibc-2.6 declares futimens.
829         * lib/utimens.h: Likewise.
830
831 2007-05-19  Bruno Haible  <bruno@clisp.org>
832
833         Avoid test failures on mingw.
834         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
835         * tests/test-printf-posix.sh: Likewise.
836         * tests/test-vfprintf-posix.sh: Likewise.
837         * tests/test-vprintf-posix.sh: Likewise.
838
839 2007-05-19  Bruno Haible  <bruno@clisp.org>
840
841         Fix *printf result for NaN, Inf, -0.0 on mingw.
842         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
843         * lib/vasnprintf.c: Include math.h and isnan.h.
844         (is_infinite_or_zero): New function.
845         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
846         values in the %f, %F, %e, %E, %g, %G directives.
847         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
848         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
849         gl_PRINTF_INFINITE and test its result. Invoke
850         gl_PREREQ_VASNPRINTF_INFINITE.
851         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
852         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
853         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
854         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
855         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
856         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
857         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
858         * doc/functions/fprintf.texi: Update.
859         * doc/functions/printf.texi: Update.
860         * doc/functions/snprintf.texi: Update.
861         * doc/functions/sprintf.texi: Update.
862         * doc/functions/vfprintf.texi: Update.
863         * doc/functions/vprintf.texi: Update.
864         * doc/functions/vsnprintf.texi: Update.
865         * doc/functions/vsprintf.texi: Update.
866
867 2007-05-19  Bruno Haible  <bruno@clisp.org>
868
869         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
870         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
871         Instead of multiplying with 10^k, set extra_zeroes to k.
872         (scale10_round_long_double): Remove function.
873
874 2007-05-18  Bruno Haible  <bruno@clisp.org>
875
876         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
877         introduced on 2007-05-06.
878
879 2007-05-18  Bruno Haible  <bruno@clisp.org>
880
881         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
882         %g directives.
883         * tests/test-vasprintf-posix.c (test_function): Likewise.
884         * tests/test-snprintf-posix.h (test_function): Likewise.
885         * tests/test-sprintf-posix.h (test_function): Likewise.
886
887 2007-05-18  Bruno Haible  <bruno@clisp.org>
888
889         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
890         (strmatch): New function.
891         (test_function): Test the %f directive on numbers of various exponents.
892         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
893         (strmatch): New function.
894         (test_function): Test the %f directive on numbers of various exponents.
895         * tests/test-snprintf-posix.h (strmatch): New function.
896         (test_function): Test the %f directive on numbers of various exponents.
897         * tests/test-sprintf-posix.h (strmatch): New function.
898         (test_function): Test the %f directive on numbers of various exponents.
899         * tests/test-snprintf-posix.c (SIZEOF): New macro.
900         * tests/test-sprintf-posix.c (SIZEOF): New macro.
901         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
902         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
903
904 2007-05-18  Bruno Haible  <bruno@clisp.org>
905
906         Add support for 'long double' number output.
907         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
908         * lib/vasnprintf.c: Include math.h and float+.h.
909         (mp_limb_t): New type.
910         (GMP_LIMB_BITS): New macro.
911         (mp_twolimb_t): New type.
912         (GMP_TWOLIMB_BITS): New macro.
913         (mpn_t): New type.
914         (multiply, divide, convert_to_decimal, decode_long_double,
915         scale10_round_long_double, scale10_round_decimal_long_double,
916         floorlog10l): New functions.
917         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
918         for the %f, %F, %e, %E, %g, %G directives.
919         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
920         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
921         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
922         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
923         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
924         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
925         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
926         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
927         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
928         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
929         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
930         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
931         * modules/snprintf-posix (Depends-on): Likewise.
932         * modules/sprintf-posix (Depends-on): Likewise.
933         * modules/vasnprintf-posix (Depends-on): Likewise.
934         * modules/vasprintf-posix (Depends-on): Likewise.
935         * modules/vfprintf-posix (Depends-on): Likewise.
936         * modules/vsnprintf-posix (Depends-on): Likewise.
937         * modules/vsprintf-posix (Depends-on): Likewise.
938         * modules/vasnprintf (Files): Add lib/float+.h.
939         * doc/functions/fprintf.texi: Update.
940         * doc/functions/printf.texi: Update.
941         * doc/functions/snprintf.texi: Update.
942         * doc/functions/sprintf.texi: Update.
943         * doc/functions/vfprintf.texi: Update.
944         * doc/functions/vprintf.texi: Update.
945         * doc/functions/vsnprintf.texi: Update.
946         * doc/functions/vsprintf.texi: Update.
947
948 2007-05-18  Bruno Haible  <bruno@clisp.org>
949
950         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
951
952 2007-05-18  Bruno Haible  <bruno@clisp.org>
953
954         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
955         for printing 64-bit integers. Needed for mingw.
956
957 2007-05-18  Bruno Haible  <bruno@clisp.org>
958
959         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
960         gl_FUNC_FREXPL_WORKS.
961         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
962
963 2007-05-18  Bruno Haible  <bruno@clisp.org>
964
965         * modules/frexpl-nolibm-tests: New file.
966
967         * modules/frexpl-nolibm: New file.
968         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
969
970 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
971
972         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
973         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
974         GCC 4.2, which otherwise issues a lot of warnings.
975         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
976         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
977         Likewise.
978         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
979         * modules/iconv_open (iconv.h): Likewise.
980         * modules/locale (locale.h): Likewise.
981         * modules/netinet_in (netinet/in.h): Likewise.
982         * modules/sys_select (sys_select.h): Likewise.
983         * modules/sys_socket (sys/socket.h): Likewise.
984         * modules/sys_stat (sys/stat.h): Likewise.
985         * modules/sysexits (sysexits.h): Likewise.
986         * modules/unistd (unistd.h): Likewise.
987
988 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
989
990         * modules/closein-tests (Makefile.am): Distribute
991         `test-closein.sh'.
992
993 2007-05-17  Bruno Haible  <bruno@clisp.org>
994
995         * tests/test-printf-posix.output: Renamed from
996         tests/test-fprintf-posix.out.
997         * modules/fprintf-posix-tests: Update.
998         * modules/printf-posix-tests: Update.
999         * modules/vfprintf-posix-tests: Update.
1000         * modules/vprintf-posix-tests: Update.
1001         * tests/test-fprintf-posix.sh: Update.
1002         * tests/test-printf-posix.sh: Update.
1003         * tests/test-vfprintf-posix.sh: Update.
1004         * tests/test-vprintf-posix.sh: Update.
1005         Reported by Ralf Wildenhues.
1006
1007 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
1008
1009         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
1010         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
1011         GCC 4.2, which otherwise issues a lot of warnings.
1012         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
1013         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
1014         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
1015         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
1016         it should no longer be needed.
1017         * lib/string_.h: Likewise.
1018         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
1019         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
1020         * modules/inttypes (inttypes.h): Likewise.
1021         * modules/math (math.h): Likewise.
1022         * modules/search (search.h): Likewise.
1023         * modules/signal (signal.h): Likewise.
1024         * modules/stdint (stdint.h): Likewise.
1025         * modules/stdio (stdio.h): Likewise.
1026         * modules/stdlib (stdlib.h): Likewise.
1027         * modules/string (string.h): Likewise.
1028         * modules/sys_time (sys/time.h): Likewise.
1029         * modules/time (time.h): Likewise.
1030         * modules/wchar (wchar.h): Likewise.
1031         * modules/wctype (wtype.h): Likewise.
1032
1033 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
1034
1035         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
1036
1037 2007-05-13  Bruno Haible  <bruno@clisp.org>
1038
1039         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
1040         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
1041         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
1042         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
1043         (gl_PREREQ_STRTOK_R): Don't require it here.
1044
1045 2007-05-13  Bruno Haible  <bruno@clisp.org>
1046
1047         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
1048         when used in C++ mode.
1049
1050 2007-05-12  Bruno Haible  <bruno@clisp.org>
1051
1052         * lib/linebuffer.h: Tweak doc.
1053         * lib/linebuffer.c: Likewise.
1054
1055 2007-05-12  James Youngman  <jay@gnu.org>
1056
1057         * lib/linebuffer.c (readlinebuffer_delim): New function,
1058         like readlinebuffer, but use a caller-specified delimiter.
1059         (readlinebuffer): Just call readlinebuffer_delim with '\n'
1060         as the delimiter.
1061         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
1062
1063 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
1064
1065         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
1066         * modules/openat (Files): Remove openat-die.c.
1067         (Depends-on): Add openat-die.
1068         * modules/openat-die: New module.
1069
1070 2007-05-06  Bruno Haible  <bruno@clisp.org>
1071
1072         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
1073         Update with info about Cygwin.
1074         * doc/functions/fprintf.texi: Update.
1075         * doc/functions/printf.texi: Update.
1076         * doc/functions/snprintf.texi: Update.
1077         * doc/functions/sprintf.texi: Update.
1078         * doc/functions/vfprintf.texi: Update.
1079         * doc/functions/vprintf.texi: Update.
1080         * doc/functions/vsnprintf.texi: Update.
1081         * doc/functions/vsprintf.texi: Update.
1082         Reported by Eric Blake.
1083
1084 2007-05-06  Bruno Haible  <bruno@clisp.org>
1085
1086         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
1087         padding ourselves for the floating-point directives.
1088         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
1089         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
1090         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1091         gl_PRINTF_FLAG_ZERO and test its result. Invoke
1092         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
1093         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1094         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
1095         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1096         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1097         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1098         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1099         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1100         * tests/test-snprintf-posix.h (test_function): Also check the width
1101         and some flags in the %f directive.
1102         * tests/test-sprintf-posix.h (test_function): Likewise.
1103         * tests/test-vasnprintf-posix.c (test_function): Likewise.
1104         * tests/test-vasprintf-posix.c (test_function): Likewise.
1105         * doc/functions/fprintf.texi: Update.
1106         * doc/functions/printf.texi: Update.
1107         * doc/functions/snprintf.texi: Update.
1108         * doc/functions/sprintf.texi: Update.
1109         * doc/functions/vfprintf.texi: Update.
1110         * doc/functions/vprintf.texi: Update.
1111         * doc/functions/vsnprintf.texi: Update.
1112         * doc/functions/vsprintf.texi: Update.
1113
1114 2007-05-06  Bruno Haible  <bruno@clisp.org>
1115
1116         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
1117         pass the ' flag character to sprintf or snprintf.
1118         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
1119         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
1120         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1121         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
1122         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
1123         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1124         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
1125         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1126         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1127         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1128         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1129         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1130         * tests/test-snprintf-posix.h (test_function): Also check the grouping
1131         flag.
1132         * tests/test-sprintf-posix.h (test_function): Likewise.
1133         * tests/test-vasnprintf-posix.c (test_function): Likewise.
1134         * tests/test-vasprintf-posix.c (test_function): Likewise.
1135         * doc/functions/fprintf.texi: Update.
1136         * doc/functions/printf.texi: Update.
1137         * doc/functions/snprintf.texi: Update.
1138         * doc/functions/sprintf.texi: Update.
1139         * doc/functions/vfprintf.texi: Update.
1140         * doc/functions/vprintf.texi: Update.
1141         * doc/functions/vsnprintf.texi: Update.
1142         * doc/functions/vsprintf.texi: Update.
1143
1144 2007-05-01  Bruno Haible  <bruno@clisp.org>
1145
1146         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
1147
1148 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
1149
1150         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
1151         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
1152
1153 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
1154
1155         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
1156         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
1157         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
1158
1159 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
1160
1161         * lib/argp-help.c (struct hol_entry): New member `ord'.
1162         (HOL_ENTRY_PTRCMP): Use ord for comparison
1163         (hol_sort): Initialize ord.
1164
1165 2007-05-01  Bruno Haible  <bruno@clisp.org>
1166
1167         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
1168         Reported by Eric Blake.
1169         * doc/gnulib.texi (Function Substitutes): Update.
1170
1171 2007-05-01  Bruno Haible  <bruno@clisp.org>
1172
1173         * doc/functions.texi: Remove file, now redundant through
1174         doc/functions/*.texi.
1175
1176 2007-05-01  Bruno Haible  <bruno@clisp.org>
1177
1178         * modules/argp (Depends-on): Add sleep.
1179
1180 2007-05-01  Bruno Haible  <bruno@clisp.org>
1181
1182         * modules/sleep-tests: New file.
1183         * tests/test-sleep.c: New file.
1184
1185         * modules/sleep: New file.
1186         * lib/sleep.c: New file.
1187         * m4/sleep.m4: New file.
1188         * lib/unistd_.h (sleep): New declaration.
1189         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
1190         HAVE_SLEEP.
1191         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
1192         * doc/functions/sleep.texi: Document the sleep module.
1193
1194 2007-05-01  Bruno Haible  <bruno@clisp.org>
1195
1196         * lib/sigprocmask.h: Remove file.
1197         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
1198         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
1199         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
1200         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
1201         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
1202         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
1203         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
1204         HAVE_SIGSET_T as a shell variable.
1205         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
1206         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
1207         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
1208         (Depends-on): Add signal. Remove verify.
1209         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
1210         (Include): Mention <signal.h> instead of sigprocmask.h.
1211         * NEWS: Mention the change.
1212         * lib/fatal-signal.c: Don't include sigprocmask.h.
1213
1214 2007-05-01  Bruno Haible  <bruno@clisp.org>
1215
1216         * modules/signal: New file.
1217         * lib/signal_.h: New file.
1218         * m4/signal_h.m4: New file.
1219
1220 2007-05-01  Bruno Haible  <bruno@clisp.org>
1221
1222         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
1223         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
1224         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
1225         HAVE_WCTYPE_CTMP_BUG into wctype.h.
1226
1227 2007-05-01  Bruno Haible  <bruno@clisp.org>
1228
1229         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
1230         configure time.
1231         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
1232         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
1233         * modules/sys_stat (Makefile.am): Substitute their values into
1234         sys/stat.h.
1235
1236 2007-05-01  Bruno Haible  <bruno@clisp.org>
1237
1238         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
1239         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
1240         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
1241
1242 2007-05-01  Bruno Haible  <bruno@clisp.org>
1243
1244         * doc/header/assert.texi: Undo last change: don't mention the gnulib
1245         'assert' module here.
1246
1247 2007-05-01  Bruno Haible  <bruno@clisp.org>
1248
1249         * doc/functions/*.texi: New files.
1250         * doc/functions/google-ranking.txt: New file.
1251         * doc/gnulib.texi (Function Substitutes): New chapter.
1252         (ctime, inet_ntoa): Remove sections.
1253         * doc/ctime.texi: Remove file.
1254         * doc/inet_ntoa.texi: Remove file.
1255         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
1256         dependencies.
1257         (%.info): New rule, specifying a --reference-limit.
1258
1259 2007-05-01  Bruno Haible  <bruno@clisp.org>
1260
1261         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
1262
1263 2007-05-01  Bruno Haible  <bruno@clisp.org>
1264
1265         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
1266         the portability of 'mkdir' to mingw systems.
1267
1268 2007-05-01  Bruno Haible  <bruno@clisp.org>
1269
1270         * doc/headers/google-ranking.txt: New file.
1271
1272 2007-04-30  Eric Blake  <ebb9@byu.net>
1273
1274         Prefer fseeko to fseek.
1275         * modules/getpass (Depends-on): Add fseeko.
1276         * lib/getpass.c (getpass): Use fseeko, not fseek.
1277
1278 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
1279
1280         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
1281         assumes the sorting is stable, while most qsort implementations
1282         are not.  Use argument addresses to ensure they never compare as
1283         equal.
1284
1285         * tests/test-argp-2.sh (usage-indent test): Fix output
1286         (func_compare): Restore diff options
1287         * tests/test-argp.c: Restore #include "progname.h"
1288
1289 2007-04-29  Bruno Haible  <bruno@clisp.org>
1290
1291         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
1292         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1293         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
1294         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1295         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
1296         (configure.ac): Define CHECK_SNPRINTF_POSIX.
1297         (TESTS, check_PROGRAMS): Add test-snprintf.
1298         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
1299         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
1300         (TESTS, check_PROGRAMS): Add test-vsnprintf.
1301         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
1302         assertions that fail on HP-UX, OSF/1, or IRIX.
1303         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
1304
1305 2007-04-29  Bruno Haible  <bruno@clisp.org>
1306
1307         * MODULES.html.sh (posix_functions): Remove 'contents'.
1308
1309 2007-04-29  Karl Berry  <karl@gnu.org>
1310
1311         * config/srclist.txt (gendocs_template_min): new entry.
1312
1313 2007-04-29  Bruno Haible  <bruno@clisp.org>
1314
1315         Work around fpurge bug on BSD systems.
1316         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
1317         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
1318         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
1319         fpurge to rpl_fpurge if the system already has this function.
1320         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
1321         the case where the system already has this function. Correct invariants
1322         on BSD systems.
1323         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
1324         BSD systems.
1325
1326 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
1327
1328         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
1329         proposed by Sven Verdoolaege.
1330
1331         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
1332         options.
1333         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
1334         (usage and help tests): Update
1335
1336 2007-04-29  Bruno Haible  <bruno@clisp.org>
1337
1338         * tests/test-fflush.c (main): Use a file of size 17, not 10.
1339         Print more information in case of failure. Disable a test on BeOS.
1340
1341 2007-04-29  Bruno Haible  <bruno@clisp.org>
1342
1343         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
1344         This helps debugging on systems on which no gdb is available.
1345
1346 2007-04-29  Bruno Haible  <bruno@clisp.org>
1347
1348         * lib/freading.h: Improve comments.
1349         * lib/fwriting.h: Likewise.
1350         * tests/test-freading.c (main): Don't check freading immediately after
1351         repositioning. Needed for glibc.
1352
1353 2007-04-29  Bruno Haible  <bruno@clisp.org>
1354
1355         * lib/freading.c (freading): Trivial simplification.
1356
1357 2007-04-28  Bruno Haible  <bruno@clisp.org>
1358
1359         * tests/test-fwriting.c (main): Also test the interaction between
1360         fflush and fwriting.
1361         * modules/fwriting-tests (Depends-on): Add fflush.
1362
1363         * tests/test-freading.c (main): Also test the interaction between
1364         fflush and freading.
1365         * modules/freading-tests (Depends-on): Add fflush.
1366
1367 2007-04-28  Bruno Haible  <bruno@clisp.org>
1368
1369         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
1370         fseeko and ftello.
1371         Suggested by Eric Blake.
1372
1373 2007-04-28  Jim Meyering  <jim@meyering.net>
1374
1375         Avoid false-negative in gl_STDINT_H's C99 conformance test.
1376         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
1377         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
1378
1379 2007-04-27  Eric Blake  <ebb9@byu.net>
1380
1381         * doc/headers/assert.texi (assert.h): Document assert module use.
1382
1383 2007-04-27  Bruno Haible  <bruno@clisp.org>
1384
1385         * doc/headers/*.texi: New files.
1386         * doc/gnulib.texi (Header File Substitutes): New chapter.
1387         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
1388         dependencies.
1389         (standards.info ,standards.html, standards.dvi): Update dependencies.
1390         (mostlyclean, clean): New targets.
1391
1392 2007-04-27  Bruno Haible  <bruno@clisp.org>
1393
1394         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
1395         * modules/sysexits (Files, Makefile.am): Update.
1396
1397         * lib/sys_socket_.h: Renamed from lib/socket_.h.
1398         * modules/sys_socket (Files, Makefile.am): Update.
1399
1400         * lib/sys_stat_.h: Renamed from lib/stat_.h.
1401         * modules/sys_stat (Files, Makefile.am): Update.
1402
1403 2007-04-27  Eric Blake  <ebb9@byu.net>
1404
1405         * lib/freading.h: Improve comments.
1406         * lib/fwriting.h: Likewise.
1407         * lib/fflush.c: Likewise.
1408
1409         Fix closein for mingw.
1410         * modules/closein-tests: Add tests for closein.
1411         * tests/test-closein.c: New file.
1412         * tests/test-closein.sh: Likewise.
1413         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
1414         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
1415
1416 2007-04-27  Bruno Haible  <bruno@clisp.org>
1417
1418         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
1419         version is < 6.
1420         * lib/math_.h [__DECC]: Likewise.
1421         * lib/stdio_.h [__DECC]: Likewise.
1422         * lib/stdlib_.h [__DECC]: Likewise.
1423         * lib/string_.h [__DECC]: Likewise.
1424         * lib/time_.h [__DECC]: Likewise.
1425         * lib/wchar_.h [__DECC]: Likewise.
1426         * lib/wctype_.h [__DECC]: Likewise.
1427
1428 2007-04-27  Bruno Haible  <bruno@clisp.org>
1429
1430         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
1431
1432 2007-04-27  Bruno Haible  <bruno@clisp.org>
1433
1434         * lib/fflush.c: Add comments.
1435         * modules/fpurge-tests (Depends-on): Add fflush.
1436         * modules/freadable-tests (Depends-on): Likewise.
1437         * modules/fwritable-tests (Depends-on): Likewise.
1438
1439 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
1440
1441         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
1442         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
1443         Report by Bruno Haible <bruno@clisp.org>.
1444
1445 2007-04-26  Eric Blake  <ebb9@byu.net>
1446
1447         Fix fflush on mingw.
1448         * modules/fflush (Depends-on): Add freading.
1449         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
1450         but unread data.
1451
1452 2007-04-26  Eric Blake  <ebb9@byu.net>
1453         and Bruno Haible  <bruno@clisp.org>
1454
1455         Implement freading and fwriting.
1456         * lib/freading.c: New file.
1457         * lib/freading.h: Likewise.
1458         * m4/freading.m4: Likewise.
1459         * modules/freading: Likewise.
1460         * modules/freading-tests: Likewise.
1461         * tests/test-freading.c: Likewise.
1462         * lib/fwriting.c: New file.
1463         * lib/fwriting.h: Likewise.
1464         * m4/fwriting.m4: Likewise.
1465         * modules/fwriting: Likewise.
1466         * modules/fwriting-tests: Likewise.
1467         * tests/test-fwriting.c: Likewise.
1468         * MODULES.html.sh (File stream based Input/Output): Mention them.
1469
1470 2007-04-26  Bruno Haible  <bruno@clisp.org>
1471
1472         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
1473         'long' when we assume it.
1474         Suggested by Eric Blake.
1475
1476 2007-04-26  Bruno Haible  <bruno@clisp.org>
1477
1478         Ensure fseeko, ftello are declared on glibc systems.
1479         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
1480         * modules/fseeko (configure.ac-early): Likewise.
1481         * modules/ftello (configure.ac-early): Likewise.
1482         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
1483         AC_FUNC_FSEEKO for this.
1484         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
1485         (gl_CHECK_FSEEKO): Remove macro.
1486
1487 2007-04-26  Bruno Haible  <bruno@clisp.org>
1488
1489         * tests/test-fflush.c (main): Also check the ftell result after
1490         fflush and fseek/fseeko.
1491         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
1492         file descriptor position cache in the stream.
1493         * lib/fseeko.c (rpl_fseeko): Likewise.
1494
1495 2007-04-26  Bruno Haible  <bruno@clisp.org>
1496
1497         * modules/fflush-tests (Depends-on): Add fseeko.
1498
1499 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
1500             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1501
1502         * lib/argz_.h: ensure error_t definition is obtained in same
1503         mechanism system argz.h would have.
1504         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
1505         argz facilities are known bad.  Err on the side of caution if
1506         cross-compiling.
1507
1508 2007-04-25  Eric Blake  <ebb9@byu.net>
1509
1510         * lib/fpurge.c (includes): Use stdlib.h for free.
1511         * tests/test-fflush.c (main): Also test fflush-fseeko.
1512
1513 2007-04-25  Bruno Haible  <bruno@clisp.org>
1514
1515         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
1516         * lib/fseeko.c: New file.
1517         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
1518         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
1519         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
1520         gl_FUNC_FSEEKO.
1521         (gl_FUNC_FSEEKO): Invoke it.
1522         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
1523         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
1524         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
1525
1526 2007-04-25  Bruno Haible  <bruno@clisp.org>
1527
1528         * modules/fflush (Depends-on): Add ftello.
1529
1530 2007-04-25  Bruno Haible  <bruno@clisp.org>
1531
1532         * modules/ftello-tests: New file.
1533         * tests/test-ftello.c: New file.
1534
1535         * modules/ftello: New file.
1536         * m4/ftello.m4: New file.
1537         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
1538         HAVE_FTELLO.
1539         * lib/stdio_.h (ftello): New declaration.
1540         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
1541         HAVE_FTELLO.
1542
1543 2007-04-25  Bruno Haible  <bruno@clisp.org>
1544
1545         * modules/fseeko-tests: New file.
1546         * tests/test-fseeko.c: New file.
1547
1548         * modules/fseeko: New file.
1549         * m4/fseeko.m4: New file.
1550         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
1551         HAVE_FSEEKO.
1552         * lib/stdio_.h (fseeko): New declaration.
1553         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
1554         HAVE_FSEEKO.
1555
1556 2007-04-25  Bruno Haible  <bruno@clisp.org>
1557
1558         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
1559
1560 2007-04-25  Bruno Haible  <bruno@clisp.org>
1561
1562         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
1563         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
1564         * tests/test-unistd.c: Likewise.
1565         * tests/test-fcntl.c: Likewise.
1566
1567 2007-04-23  Eric Blake  <ebb9@byu.net>
1568
1569         * lib/fflush.c: Fix missing include.
1570         Reported by Bruno Haible.
1571
1572 2007-04-23  Bruno Haible  <bruno@clisp.org>
1573
1574         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
1575         Reported by Eric Blake.
1576
1577 2007-04-23  Bruno Haible  <bruno@clisp.org>
1578
1579         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
1580
1581 2007-04-23  Bruno Haible  <bruno@clisp.org>
1582
1583         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
1584
1585 2007-04-23  Bruno Haible  <bruno@clisp.org>
1586
1587         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
1588         Needed on HP-UX 11.
1589
1590 2007-04-16  Eric Blake  <ebb9@byu.net>
1591
1592         Make fflush rely on fpurge.
1593         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
1594         open coding all variants.
1595         * modules/fflush (Depends-on): Add fpurge and unistd.
1596         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
1597         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
1598
1599         Fix --with-tests compilation on cygwin.
1600         * modules/argmatch-tests (Makefile.am): List gnulib library first
1601         in LDADD.
1602         * modules/argp-tests (Makefile.am): Likewise.
1603         * modules/array-list-tests (Makefile.am): Likewise.
1604         * modules/array-oset-tests (Makefile.am): Likewise.
1605         * modules/avltree-list-tests (Makefile.am): Likewise.
1606         * modules/avltree-oset-tests (Makefile.am): Likewise.
1607         * modules/avltreehash-list-tests (Makefile.am): Likewise.
1608         * modules/carray-list-tests (Makefile.am): Likewise.
1609         * modules/dirname-tests (Makefile.am): Likewise.
1610         * modules/frexp-tests (Makefile.am): Likewise.
1611         * modules/isnanl-tests (Makefile.am): Likewise.
1612         * modules/linked-list-tests (Makefile.am): Likewise.
1613         * modules/linkedhash-list-tests (Makefile.am): Likewise.
1614         * modules/lock-tests (Makefile.am): Likewise.
1615         * modules/rbtree-list-tests (Makefile.am): Likewise.
1616         * modules/rbtree-oset-tests (Makefile.am): Likewise.
1617         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
1618         * modules/tls-tests (Makefile.am): Likewise.
1619         * modules/tsearch-tests (Makefile.am): Likewise.
1620         * modules/xvasprintf-tests (Makefile.am): Likewise.
1621
1622         Fix fpurge for cygwin.
1623         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
1624         value.
1625         * modules/fpurge-tests (Depends-on): Clean up trash.
1626
1627 2007-04-16  Simon Josefsson  <simon@josefsson.org>
1628
1629         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
1630
1631         * m4/autobuild.m4: Re-indent.
1632
1633 2007-04-13  Bruno Haible  <bruno@clisp.org>
1634
1635         * modules/fpurge-tests: New file.
1636         * tests/test-fpurge.c: New file.
1637
1638         * modules/fpurge: New file.
1639         * lib/fpurge.h: New file.
1640         * lib/fpurge.c: New file.
1641         * m4/fpurge.m4: New file.
1642
1643 2007-04-13  Bruno Haible  <bruno@clisp.org>
1644
1645         * modules/fbufmode-tests: New file.
1646         * tests/test-fbufmode.c: New file.
1647
1648         * modules/fbufmode: New file.
1649         * lib/fbufmode.h: New file.
1650         * lib/fbufmode.c: New file.
1651         * m4/fbufmode.m4: New file.
1652
1653 2007-04-13  Bruno Haible  <bruno@clisp.org>
1654
1655         * modules/fwritable-tests: New file.
1656         * tests/test-fwritable.c: New file.
1657
1658         * modules/fwritable: New file.
1659         * lib/fwritable.h: New file.
1660         * lib/fwritable.c: New file.
1661         * m4/fwritable.m4: New file.
1662
1663 2007-04-13  Bruno Haible  <bruno@clisp.org>
1664
1665         * modules/freadable-tests: New file.
1666         * tests/test-freadable.c: New file.
1667
1668         * modules/freadable: New file.
1669         * lib/freadable.h: New file.
1670         * lib/freadable.c: New file.
1671         * m4/freadable.m4: New file.
1672
1673 2007-04-13  Bruno Haible  <bruno@clisp.org>
1674
1675         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
1676         MOSTLYCLEANFILES.
1677
1678 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
1679
1680         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
1681         gzip bootstrap.conf to avoid dragging in i18n machinery.
1682         (gnulib_tool_option): Use it.
1683
1684 2007-04-13  Bruno Haible  <bruno@clisp.org>
1685
1686         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
1687         %F directives.
1688         * tests/test-vasprintf-posix.c (test_function): Likewise.
1689         * tests/test-snprintf-posix.h (test_function): Likewise.
1690         * tests/test-sprintf-posix.h (test_function): Likewise.
1691         * tests/test-fprintf-posix.h (test_function): Likewise.
1692         * tests/test-printf-posix.h (test_function): Likewise.
1693         * tests/test-fprintf-posix.out: Likewise.
1694
1695 2007-04-13  Bruno Haible  <bruno@clisp.org>
1696
1697         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
1698         * modules/tls-tests (configure.ac): Likewise.
1699         Reported by Arto C. Nirkko <anirkko@insel.ch>.
1700
1701 2007-04-13  Bruno Haible  <bruno@clisp.org>
1702
1703         * lib/tls.c (glthread_tls_get): Fix return type.
1704         Patch by Arto C. Nirkko <anirkko@insel.ch>.
1705
1706 2007-04-12  Eric Blake  <ebb9@byu.net>
1707
1708         * modules/gettime (Depends-on): Remove gettime.
1709         Reported by Dmitry V. Levin.
1710
1711 2007-04-12  Bruno Haible  <bruno@clisp.org>
1712
1713         * modules/fflush (Include): Mention <stdio.h>.
1714         * modules/strtoimax (Include): Mention <inttypes.h>.
1715         * modules/strtoumax (Include): Likewise.
1716
1717 2007-04-12  Eric Blake  <ebb9@byu.net>
1718
1719         * .cvsignore: New file.
1720         * .gitignore: Likewise.
1721
1722 2007-04-12  Bruno Haible  <bruno@clisp.org>
1723
1724         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
1725         not before, since $(LDADD) often contains libgnu.a.
1726         * modules/striconv-tests (test_striconv_LDADD): Likewise.
1727         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
1728         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
1729         Needed on Cygwin.
1730
1731 2007-04-12  Eric Blake  <ebb9@byu.net>
1732
1733         Work around glibc's failure to flush stdin on fclose.
1734         * lib/closein.c (close_stdin): Flush stdin before closing.
1735
1736         Work around glibc's failure to reset seekable stdin on exit.
1737         * modules/closein: New module.
1738         * lib/closein.c: New file.
1739         * lib/closein.h: Likewise.
1740         * m4/closein.m4: Likewise.
1741         * MODULES.html.sh (File stream based Input/Output): Document it.
1742
1743 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1744
1745         * gnulib-tool: Rename generated 'autobuild' script to
1746         'do-autobuild' in --create-megatestdir output.
1747
1748         * doc/gnulib.texi (Build robot for gnulib): Fix.
1749
1750 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1751
1752         * modules/sysexits (Depends-on): Add absolute-header.
1753
1754 2007-04-12  Eric Blake  <ebb9@byu.net>
1755
1756         No need to preserve errno on success.
1757         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
1758         Reported by Bruno Haible.
1759
1760 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1761
1762         * MODULES.html.sh (Support for maintaining and releasing
1763         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
1764
1765 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1766
1767         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
1768
1769 2007-04-12  Simon Josefsson  <simon@josefsson.org>
1770
1771         * modules/autobuild: New module.
1772
1773         * m4/autobuild.m4: New file.
1774
1775 2007-04-11  Bruno Haible  <bruno@clisp.org>
1776
1777         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
1778         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
1779         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
1780         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
1781         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1782         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1783         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1784         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1785         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1786         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1787         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
1788         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1789         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1790         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
1791         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1792         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1793         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
1794         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1795         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1796         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
1797         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1798         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1799         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
1800         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1801         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1802         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
1803         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
1804         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
1805         Reported by Eric Blake.
1806
1807 2007-04-11  Bruno Haible  <bruno@clisp.org>
1808
1809         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
1810
1811 2007-04-10  Bruno Haible  <bruno@clisp.org>
1812
1813         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
1814         for NaN and Infinity. Needed on FreeBSD 6.1.
1815         * tests/test-vasnprintf-posix.c (test_function): Undo last change
1816         regarding results for "%010a" of Infinity and NaN.
1817         * tests/test-vasprintf-posix.c (test_function): Likewise.
1818         * tests/test-snprintf-posix.h (test_function): Likewise.
1819         * tests/test-sprintf-posix.h (test_function): Likewise.
1820         * tests/test-fprintf-posix.h (test_function): Likewise.
1821         * tests/test-printf-posix.h (test_function): Likewise.
1822         * tests/test-fprintf-posix.out: Likewise.
1823
1824 2007-04-10  Bruno Haible  <bruno@clisp.org>
1825
1826         * modules/locale-tests: New file.
1827         * tests/test-locale.c: New file.
1828
1829         * modules/locale: New file.
1830         * lib/locale_.h: New file.
1831         * m4/locale_h.m4: New file.
1832
1833 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
1834             Bruno Haible  <bruno@clisp.org>
1835
1836         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
1837         be determined, test for availability of the copysignf, copysign,
1838         copysignl functions.
1839         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
1840         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
1841         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
1842
1843 2007-04-09  Eric Blake  <ebb9@byu.net>
1844
1845         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
1846         * modules/stdio (Makefile.am): Support fflush.
1847         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
1848         * modules/fflush: New file.
1849         * lib/fflush.c: Likewise.
1850         * m4/fflush.m4: Likewise.
1851         * modules/fflush-tests: New test.
1852         * tests/test-fflush.c: Likewise.
1853         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
1854
1855 2007-04-06  Bruno Haible  <bruno@clisp.org>
1856
1857         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
1858         (VASNPRINTF): Use signbit for faster determination whether to print a
1859         minus sign.
1860         * modules/vasnprintf (Files): Remove lib/float+.h.
1861         * modules/fprintf-posix (Depends-on): Add signbit.
1862         * modules/snprintf-posix (Depends-on): Likewise.
1863         * modules/sprintf-posix (Depends-on): Likewise.
1864         * modules/vasnprintf-posix (Depends-on): Likewise.
1865         * modules/vasprintf-posix (Depends-on): Likewise.
1866         * modules/vfprintf-posix (Depends-on): Likewise.
1867         * modules/vsnprintf-posix (Depends-on): Likewise.
1868         * modules/vsprintf-posix (Depends-on): Likewise.
1869
1870 2007-04-06  Bruno Haible  <bruno@clisp.org>
1871
1872         * tests/test-frexp.c (main): Test also the sign bit of zero results.
1873         * tests/test-frexpl.c (main): Likewise.
1874         * tests/test-ldexpl.c (main): Likewise.
1875         * modules/frexp-tests (Depends-on): Add signbit.
1876         * modules/frexpl-tests (Depdends-on): Likewise.
1877         * modules/ldexpl-tests (Depdends-on): Likewise.
1878
1879 2007-04-06  Bruno Haible  <bruno@clisp.org>
1880
1881         * modules/signbit-tests: New file.
1882         * tests/test-signbit.c: New file.
1883
1884         * modules/signbit: New file.
1885         * lib/signbitf.c: New file.
1886         * lib/signbitd.c: New file.
1887         * lib/signbitl.c: New file.
1888         * m4/signbit.m4: New file.
1889         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
1890         (signbit): New macro.
1891         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
1892         REPLACE_SIGNBIT.
1893         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
1894         REPLACE_FREXPL into math.h.
1895
1896 2007-04-06  Bruno Haible  <bruno@clisp.org>
1897
1898         * modules/isnanf-nolibm-tests: New file.
1899         * tests/test-isnanf.c: New file.
1900
1901         * modules/isnanf-nolibm: New file.
1902         * lib/isnanf.h: New file.
1903         * lib/isnanf.c: New file.
1904         * lib/isnan.c: Consider the USE_FLOAT macro.
1905         * m4/isnanf.m4: New file.
1906
1907 2007-04-06  Bruno Haible  <bruno@clisp.org>
1908
1909         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
1910         (Link): New section.
1911
1912         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
1913
1914 2007-04-06  Bruno Haible  <bruno@clisp.org>
1915
1916         Assume the 'long double' type.
1917         * m4/longdouble.m4: Remove file.
1918         * config/srclist.txt: Don't mention longdouble.m4.
1919         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
1920         * lib/float+.h: Likewise.
1921         * lib/frexp.c: Likewise.
1922         * lib/printf-args.h: Likewise.
1923         * lib/printf-args.c: Likewise.
1924         * lib/printf-frexp.c: Likewise.
1925         * lib/printf-parse.c: Likewise.
1926         * lib/vasnprintf.c: Likewise.
1927         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
1928         * m4/intl.m4: Likewise.
1929         * m4/isnanl.m4: Likewise.
1930         * m4/printf.m4: Likewise.
1931         * m4/printf-frexpl.m4: Likewise.
1932         * m4/vasnprintf.m4: Likewise.
1933         * modules/allocsa (Files): Remove m4/longdouble.m4.
1934         * modules/gettext (Files): Likewise.
1935         * modules/relocatable-prog-wrapper (Files): Likewise.
1936         * modules/vasnprintf (Files): Likewise.
1937         * modules/isnanl (Files): Likewise.
1938         (Include): Simplify.
1939         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
1940         (Include): Simplify.
1941         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
1942         (Include): Simplify.
1943         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
1944         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1945         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
1946         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1947         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1948         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1949         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
1950         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1951         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1952         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1953         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
1954         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1955         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
1956         * tests/test-isnanl.c: Likewise.
1957         * tests/test-snprintf-posix.h: Likewise.
1958         * tests/test-sprintf-posix.h: Likewise.
1959         * tests/test-vasnprintf-posix.c: Likewise.
1960         * tests/test-vasnprintf-posix2.c: Likewise.
1961         * tests/test-vasprintf-posix.c: Likewise.
1962
1963 2007-04-06  Bruno Haible  <bruno@clisp.org>
1964
1965         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
1966         * lib/math_.h [__DECC]: Include the overridden include file through
1967         #include_next, outside the double-inclusion guard.
1968         * lib/stdio_.h [__DECC]: Likewise.
1969         * lib/stdlib_.h [__DECC]: Likewise.
1970         * lib/string_.h [__DECC]: Likewise.
1971         * lib/time_.h [__DECC]: Likewise.
1972         * lib/wchar_.h [__DECC]: Likewise.
1973         * lib/wctype_.h [__DECC]: Likewise.
1974         * lib/inttypes_.h [__DECC]: Likewise.
1975         Reported by Albert Chin <china@thewrittenword.com> in
1976         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
1977
1978 2007-04-04  Eric Blake  <ebb9@byu.net>
1979
1980         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
1981         1.5.x.
1982
1983 2007-04-04  Bruno Haible  <bruno@clisp.org>
1984
1985         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
1986         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
1987
1988 2007-04-04  Bruno Haible  <bruno@clisp.org>
1989
1990         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
1991         results for "%010a" of Infinity and NaN.
1992         * tests/test-vasprintf-posix.c (test_function): Likewise.
1993         * tests/test-snprintf-posix.h (test_function): Likewise.
1994         * tests/test-sprintf-posix.h (test_function): Likewise.
1995         * tests/test-fprintf-posix.h (test_function): Remove these tests.
1996         * tests/test-printf-posix.h (test_function): Likewise.
1997         * tests/test-fprintf-posix.out: Update.
1998         Needed for FreeBSD 6.1.
1999
2000 2007-04-04  Bruno Haible  <bruno@clisp.org>
2001
2002         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
2003         directly used by the gnulib modules nor by gnulib-tool.
2004
2005 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
2006
2007         * DEPENDENCIES: Give overall description of version dependency
2008         desirability.  Use more-typical names for apps.
2009         Add shell, coreutils, diffutils, grep, tar, gzip.
2010
2011 2007-04-04  Simon Josefsson  <simon@josefsson.org>
2012
2013         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
2014
2015 2007-04-04  Karl Berry  <karl@gnu.org>
2016
2017         * MODULES.html.sh (func_module): missing '.
2018
2019 2007-04-03  Bruno Haible  <bruno@clisp.org>
2020
2021         * modules/argmatch-tests (Makefile.am): New variable
2022         test_argmatch_LDADD.
2023         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
2024         * modules/array-list-tests (Makefile.am): New variable
2025         test_array_list_LDADD.
2026         * modules/array-oset-tests (Makefile.am): New variable
2027         test_array_oset_LDADD.
2028         * modules/avltree-list-tests (Makefile.am): New variable
2029         test_avltree_list_LDADD.
2030         * modules/avltree-oset-tests (Makefile.am): New variable
2031         test_avltree_oset_LDADD.
2032         * modules/avltreehash-list-tests (Makefile.am): New variable
2033         test_avltreehash_list_LDADD.
2034         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
2035         test_canonicalize_lgpl_LDADD.
2036         * modules/carray-list-tests (Makefile.am): New variable
2037         test_carray_list_LDADD.
2038         * modules/dirname-tests (Makefile.am): New variable
2039         test_dirname_LDADD.
2040         * modules/linked-list-tests (Makefile.am): New variable
2041         test_linked_list_LDADD.
2042         * modules/linkedhash-list-tests (Makefile.am): New variable
2043         test_linkedhash_list_LDADD.
2044         * modules/rbtree-list-tests (Makefile.am): New variable
2045         test_rbtree_list_LDADD.
2046         * modules/rbtree-oset-tests (Makefile.am): New variable
2047         test_rbtree_oset_LDADD.
2048         * modules/rbtreehash-list-tests (Makefile.am): New variable
2049         test_rbtreehash_list_LDADD.
2050         * modules/xvasprintf-tests (Makefile.am): New variable
2051         test_xvasprintf_LDADD.
2052         Reported by Eric Blake.
2053
2054 2007-04-03  Eric Blake  <ebb9@byu.net>
2055
2056         * DEPENDENCIES: Weaken m4 requirements.
2057
2058 2007-04-03  Bruno Haible  <bruno@clisp.org>
2059
2060         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
2061         * modules/isnanl-tests (configure.ac): Likewise.
2062
2063 2007-04-03  Ben Pfaff  <blp@gnu.org>
2064
2065         * modules/iconv_open: Add $(srcdir)/ to source directory
2066         references in Makefile fragments that call gperf, to fix VPATH
2067         builds.
2068
2069 2007-04-03  Bruno Haible  <bruno@clisp.org>
2070
2071         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
2072         * lib/ldexpl.c: Undo last change.
2073
2074 2007-04-03  Bruno Haible  <bruno@clisp.org>
2075
2076         * modules/printf-frexpl (Depends-on): Undo last change.
2077         (Files): Add m4/ldexpl.m4.
2078
2079 2007-04-03  Bruno Haible  <bruno@clisp.org>
2080
2081         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
2082         * modules/isnanl (Link): New section.
2083
2084         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
2085         * modules/frexp (Link): New section.
2086
2087         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
2088         * modules/frexpl (Link): New section.
2089
2090         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
2091         * modules/ldexpl (Link): New section.
2092
2093 2007-04-03  Bruno Haible  <bruno@clisp.org>
2094
2095         * modules/TEMPLATE-EXTENDED: New file.
2096         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
2097
2098 2007-04-03  Bruno Haible  <bruno@clisp.org>
2099
2100         * DEPENDENCIES: New file.
2101         Suggested by Simon Josefsson.
2102
2103 2007-04-03  Bruno Haible  <bruno@clisp.org>
2104
2105         * doc/gnulib.texi: Escape @.
2106
2107 2007-04-03  James Youngman  <jay@gnu.org>
2108         and Paul Eggert  <eggert@cs.ucla.edu>
2109
2110         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
2111         birthtime on all systems that have birthtime, not just those which
2112         use st_birthtimensec rather than st_birthtim.  Putting zero in
2113         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
2114         that the birth time is not available for files on an NFS mount.
2115
2116 2007-04-03  Simon Josefsson  <simon@josefsson.org>
2117
2118         * modules/memxor: Move back from crypto/, suggested by Bruno.
2119         * modules/crypto/hmac-sha1: Fix memxor dependency.
2120
2121         * modules/crypto/gc: Moved from ../.
2122
2123 2007-04-02  Eric Blake  <ebb9@byu.net>
2124
2125         * lib/ldexpl.c (includes): Avoid libm.
2126
2127         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
2128
2129 2007-04-02  Bruno Haible  <bruno@clisp.org>
2130
2131         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
2132         on IRIX.
2133
2134 2007-04-02  Bruno Haible  <bruno@clisp.org>
2135
2136         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
2137         x86 or x86_64 platforms running MacOS X.
2138         Reported by Ryan Schmidt <@ryandesign.com>.
2139
2140 2007-04-02  Bruno Haible  <bruno@clisp.org>
2141
2142         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
2143         i386.
2144
2145 2007-04-01  Simon Josefsson  <simon@josefsson.org>
2146
2147         * modules/crypto/arcfour: Moved from ../.
2148         * modules/crypto/arcfour-tests: Moved from ../.
2149         * modules/crypto/arctwo: Moved from ../.
2150         * modules/crypto/arctwo-tests: Moved from ../.
2151         * modules/crypto/des: Moved from ../.
2152         * modules/crypto/des-tests: Moved from ../.
2153         * modules/crypto/gc-arcfour: Moved from ../.
2154         * modules/crypto/gc-arcfour-tests: Moved from ../.
2155         * modules/crypto/gc-arctwo: Moved from ../.
2156         * modules/crypto/gc-arctwo-tests: Moved from ../.
2157         * modules/crypto/gc-des: Moved from ../.
2158         * modules/crypto/gc-des-tests: Moved from ../.
2159         * modules/crypto/gc-hmac-md5: Moved from ../.
2160         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
2161         * modules/crypto/gc-hmac-sha1: Moved from ../.
2162         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
2163         * modules/crypto/gc-md2: Moved from ../.
2164         * modules/crypto/gc-md2-tests: Moved from ../.
2165         * modules/crypto/gc-md4: Moved from ../.
2166         * modules/crypto/gc-md4-tests: Moved from ../.
2167         * modules/crypto/gc-md5: Moved from ../.
2168         * modules/crypto/gc-md5-tests: Moved from ../.
2169         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
2170         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
2171         * modules/crypto/gc-random: Moved from ../.
2172         * modules/crypto/gc-rijndael: Moved from ../.
2173         * modules/crypto/gc-rijndael-tests: Moved from ../.
2174         * modules/crypto/gc-sha1: Moved from ../.
2175         * modules/crypto/gc-sha1-tests: Moved from ../.
2176         * modules/crypto/gc-tests: Moved from ../.
2177         * modules/crypto/hmac-md5: Moved from ../.
2178         * modules/crypto/hmac-md5-tests: Moved from ../.
2179         * modules/crypto/hmac-sha1: Moved from ../.
2180         * modules/crypto/hmac-sha1-tests: Moved from ../.
2181         * modules/crypto/md2: Moved from ../.
2182         * modules/crypto/md2-tests: Moved from ../.
2183         * modules/crypto/md4: Moved from ../.
2184         * modules/crypto/md4-tests: Moved from ../.
2185         * modules/crypto/md5: Moved from ../.
2186         * modules/crypto/md5-tests: Moved from ../.
2187         * modules/crypto/memxor: Moved from ../.
2188         * modules/crypto/rijndael: Moved from ../.
2189         * modules/crypto/rijndael-tests: Moved from ../.
2190         * modules/crypto/sha1: Moved from ../.
2191
2192 2007-03-30  James Youngman  <jay@gnu.org>
2193
2194         * tests/test-stat-time.c (prepare_test): use chmod() rather than
2195         rename() to change the ctime of a file (because ctime is unaffected
2196         by rename on jfs2 on AIX 5.1).
2197         (main): Start by doing cleanup, in case a previous run failed leaving
2198         test files behind.
2199
2200 2007-03-31  Bruno Haible  <bruno@clisp.org>
2201
2202         Support old proprietary implementations of iconv.
2203         * modules/iconv_open: New file.
2204         * lib/iconv_.h: New file.
2205         * m4/iconv_h.m4: New file.
2206         * lib/iconv_open.c: New file.
2207         * lib/iconv_open-aix.gperf: New file.
2208         * lib/iconv_open-hpux.gperf: New file.
2209         * lib/iconv_open-irix.gperf: New file.
2210         * lib/iconv_open-osf.gperf: New file.
2211         * m4/iconv_open.m4: New file.
2212         * modules/linebreak (Depends-on): Add iconv_open.
2213         * modules/striconv (Depends-on): Likewise.
2214         * modules/striconveh (Depends-on): Likewise.
2215         * modules/unicodeio (Depends-on): Likewise.
2216         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
2217         (iconv_t)(-1).
2218         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
2219         conversion if cd is (iconv_t)(-1).
2220         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
2221         is not possible.
2222
2223 2007-03-31  Bruno Haible  <bruno@clisp.org>
2224
2225         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
2226         work on Solaris either. Protect also second use of "autodetect_jp".
2227
2228 2007-03-31  Bruno Haible  <bruno@clisp.org>
2229
2230         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
2231         the function is not present.
2232
2233 2007-03-31  Bruno Haible  <bruno@clisp.org>
2234
2235         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
2236         the function is not present.
2237
2238 2007-03-31  Bruno Haible  <bruno@clisp.org>
2239
2240         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
2241         a bug in HP-UX iconv_open().
2242
2243 2007-03-31  Bruno Haible  <bruno@clisp.org>
2244
2245         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
2246         (Mathematics <math.h>): New section, add fpieee.
2247         (Input/output <stdio.h>): Add fseterr.
2248         (Mathematics <math.h>): New section, add printf-frexp.
2249         (Container data structures): Add sublist.
2250         (Core language properties): Add fpucw, inline.
2251         (Functions for greatest-width integer types <inttypes.h>): Add
2252         imaxabs, imaxdiv, inttypes.
2253         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
2254         isnanl-nolibm, ldexp.
2255         (Mathematics <math.h>): New section, add printf-frexpl.
2256         (Support for systems lacking POSIX:2001): Add fprintf-posix,
2257         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
2258         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
2259         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
2260         (Unicode string functions): Add unistr/u*-mbtoucr.
2261         (Java): Add javacomp-script, javaexec-script.
2262         (C#): Add csharpcomp-script, csharpexec-script.
2263         (Support for building libraries and executables): Add havelib,
2264         relocatable-*.
2265         (Support for maintaining and releasing projects): Renamed from
2266         'Support for maintaining and release projects'. Add announce-gen.
2267
2268 2007-03-31  Bruno Haible  <bruno@clisp.org>
2269
2270         * README: Talk primarily about git.
2271         (git and CVS): Renamed from CVS.
2272         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
2273         gnulib is available through git.
2274         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
2275
2276 2007-03-30  Bruno Haible  <bruno@clisp.org>
2277
2278         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
2279         * lib/poll_.h: Likewise.
2280         * lib/stat_.h: Likewise.
2281         * lib/sys_time_.h: Likewise.
2282         * lib/sysexit_.h: Likewise.
2283         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
2284         * lib/stdbool_.h: Likewise.
2285         * lib/byteswap_.h: Add double-inclusion guard.
2286
2287 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
2288
2289         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
2290
2291 2007-03-30  Karl Berry  <karl@gnu.org>
2292
2293         * config/srclist-update: double space after USA in the license
2294         substitution, since that's how it's usually (?) written.
2295
2296 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
2297
2298         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
2299         reported by Bruno Haible.
2300
2301 2007-03-29  Bruno Haible  <bruno@clisp.org>
2302
2303         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
2304         a bug in AIX iconv().
2305
2306 2007-03-29  Bruno Haible  <bruno@clisp.org>
2307
2308         * modules/ldexpl-tests: New file.
2309         * tests/test-ldexpl.c: New file.
2310
2311 2007-03-29  Bruno Haible  <bruno@clisp.org>
2312
2313         * lib/ldexpl.c: Include fpucw.h.
2314         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
2315         multiplication.
2316         * modules/ldexpl (Depends-on): Add fpucw.
2317
2318 2007-03-29  Bruno Haible  <bruno@clisp.org>
2319
2320         * modules/ldexpl: New file.
2321         * m4/ldexpl.m4: New file.
2322         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
2323         set.
2324         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
2325         REPLACE_LDEXPL.
2326         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
2327         REPLACE_LDEXPL.
2328         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
2329         gl_FUNC_LDEXPL_WORKS.
2330         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
2331         * modules/mathl (Files): Remove lib/ldexpl.c.
2332         (Depends-on): Add ldexpl.
2333
2334 2007-03-29  Bruno Haible  <bruno@clisp.org>
2335
2336         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
2337
2338 2007-03-29  Bruno Haible  <bruno@clisp.org>
2339
2340         * tests/test-striconveh.c (main): Don't assume that a direct conversion
2341         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
2342         and possibly also HP-UX.
2343         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
2344         work on AIX, IRIX, HP-UX, OSF/1.
2345         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
2346         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
2347         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
2348         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
2349         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
2350         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
2351
2352 2007-03-29  Bruno Haible  <bruno@clisp.org>
2353
2354         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
2355
2356 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
2357
2358         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
2359         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
2360
2361 2007-03-29  Eric Blake  <ebb9@byu.net>
2362
2363         * lib/acl-internal.h: Remove redundant include.
2364         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
2365         Cygwin when a file is locked.
2366
2367 2007-03-29  Bruno Haible  <bruno@clisp.org>
2368
2369         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
2370         file.
2371         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
2372
2373 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
2374
2375         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
2376         try to remove a parent directory if the child couldn't be removed
2377         (except for the first rmdir, which could fail because the child
2378         doesn't exist).  Problem reported by Jeff Blaine in
2379         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
2380
2381 2007-03-28  Bruno Haible  <bruno@clisp.org>
2382
2383         * lib/striconveh.c (utf8conv_carefully): New function.
2384         (mem_cd_iconveh_internal): Invoke it.
2385
2386 2007-03-28  Bruno Haible  <bruno@clisp.org>
2387
2388         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
2389         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
2390         input.
2391         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
2392         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
2393         unistr/u8-uctomb.
2394
2395 2007-03-28  Bruno Haible  <bruno@clisp.org>
2396
2397         * modules/unistr/u8-mbtoucr: New file.
2398         * lib/unistr/u8-mbtoucr.c: New file.
2399         * modules/unistr/u16-mbtoucr: New file.
2400         * lib/unistr/u16-mbtoucr.c: New file.
2401         * modules/unistr/u16-mbtoucr: New file.
2402         * lib/unistr/u16-mbtoucr.c: New file.
2403         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
2404
2405 2007-03-27  Simon Josefsson  <simon@josefsson.org>
2406             Bruno Haible  <bruno@clisp.org>
2407
2408         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
2409         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
2410         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
2411
2412         * m4/stdio_h.m4: Add stubs for vasprintf too.
2413
2414         * modules/stdio: Support vasprintf in sed command.
2415
2416         * modules/vasprintf: Depend on stdio for prototypes.  Remove
2417         vasprintf.h.  Add stdio module indicator.
2418
2419         * lib/stdio_.h: Declare asprintf and vasprintf, based on
2420         vasprintf.h.
2421
2422         * lib/vasprintf.h: File removed.
2423
2424         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
2425         * lib/vasprintf.c: Ditto.
2426         * lib/xvasprintf.c: Ditto.
2427         * tests/test-vasprintf-posix.c: Ditto.
2428         * tests/test-vasprintf.c: Ditto.
2429
2430 2007-03-27  Bruno Haible  <bruno@clisp.org>
2431
2432         Make vasnprintf multithread-safe.
2433         * lib/vasnprintf.c (decimal_point_char): New function.
2434         (VASNPRINTF): Use it.
2435         Suggested by Simon Josefsson.
2436
2437 2007-03-27  Eric Blake  <ebb9@byu.net>
2438
2439         Support sub-second birthtime on cygwin.
2440         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
2441         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
2442         (get_stat_birthtime): Also work with st_birthtim.
2443
2444 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
2445
2446         * lib/stat-time.h (USE_BIRTHTIME): Remove.
2447         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
2448         (get_stat_birthtime_ns): Do not try to use "spare" fields.
2449         (get_stat_birthtime_ns): Simplify compile-time tests.
2450         (get_stat_birthtime): Change the API to look like
2451         get_stat_mtime etc., except return a negative tv_nsec on error.
2452         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
2453         Don't check for "spare" fields.
2454         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
2455         or for struct stat.st_birthtime, as these tests aren't used.
2456         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
2457
2458 2007-03-27  Bruno Haible  <bruno@clisp.org>
2459
2460         * lib/stat-time.h: Include <sys/stat.h>.
2461
2462 2007-03-27  James Youngman  <jay@gnu.org>
2463
2464         * lib/stat-time.h (get_stat_birthtime): New function for
2465           retrieving st_birthtime as provided by UFS2 (hence *BSD).
2466         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
2467           and its variants.
2468         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
2469         * modules/stat-time-test: New file.
2470         * tests/test-stat-time.c: New test, devised by Bruno Haible.
2471
2472 2007-03-26  Bruno Haible  <bruno@clisp.org>
2473
2474         Better support of signalling NaNs.
2475         * lib/atanl.c: Include isnanl.h.
2476         (atanl): Perform test for NaN at the beginning of the function and
2477         through a call to isnanl.
2478         * lib/cosl.c: Include isnanl.h.
2479         (cosl): Perform test for NaN at the beginning of the function and
2480         through a call to isnanl.
2481         * lib/ldexpl.c: Include isnanl.h.
2482         (ldexpl): Perform test for NaN through a call to isnanl.
2483         * lib/logl.c: Include isnanl.h.
2484         (logl): Perform test for NaN at the beginning of the function and
2485         through a call to isnanl.
2486         * lib/sinl.c: Include isnanl.h.
2487         (sinl): Perform test for NaN at the beginning of the function and
2488         through a call to isnanl.
2489         * lib/sqrtl.c: Include isnanl.h.
2490         (sqrtl): Perform test for NaN at the beginning of the function and
2491         through a call to isnanl.
2492         * lib/tanl.c: Include isnanl.h.
2493         (tanl): Perform test for NaN at the beginning of the function and
2494         through a call to isnanl.
2495         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
2496         * modules/mathl (Depends-on): Add isnanl.
2497
2498 2007-03-26  Eric Blake  <ebb9@byu.net>
2499
2500         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
2501         regression in logic sense of previous patch.
2502
2503 2007-03-26  Bruno Haible  <bruno@clisp.org>
2504
2505         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
2506         unportable shell command "if ! ...".
2507         Reported by Ralf Wildenhues.
2508
2509 2007-03-25  Bruno Haible  <bruno@clisp.org>
2510
2511         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
2512         <sysexits.h> file, and only add EX_CONFIG.
2513         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
2514         absolute file name and whether it is sufficient. Substitute also
2515         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
2516         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
2517         ABSOLUTE_SYSEXITS_H into sysexits.h.
2518
2519 2007-03-25  Bruno Haible  <bruno@clisp.org>
2520
2521         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
2522         hints is NULL.
2523
2524 2007-03-25  Bruno Haible  <bruno@clisp.org>
2525
2526         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
2527         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
2528
2529 2007-03-25  Bruno Haible  <bruno@clisp.org>
2530
2531         * lib/vasnprintf.c: Include langinfo.h.
2532         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
2533         multithread-safe.
2534         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
2535         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
2536         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2537         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2538         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2539         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2540         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2541         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
2542         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2543         Reported by Simon Josefsson.
2544
2545 2007-03-25  Bruno Haible  <bruno@clisp.org>
2546
2547         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
2548         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
2549         * modules/vasnprintf (Depends-on): Add stdint.
2550
2551 2007-03-25  Bruno Haible  <bruno@clisp.org>
2552
2553         * modules/fpieee: New file.
2554         * m4/fpieee.m4: New file.
2555         * modules/isnan-nolibm (Depends-on): Add fpieee.
2556         * modules/isnanl-nolibm (Depends-on): Add fpieee.
2557         * modules/isnanl (Depends-on): Add fpieee.
2558
2559 2007-03-25  Bruno Haible  <bruno@clisp.org>
2560
2561         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
2562
2563 2007-03-25  Bruno Haible  <bruno@clisp.org>
2564
2565         Avoid test failures on IRIX 6.5.
2566         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
2567         (main): Use it.
2568         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
2569         macros.
2570         (main): Use them.
2571
2572 2007-03-25  Bruno Haible  <bruno@clisp.org>
2573
2574         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
2575         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
2576         exists but doesn't work.
2577         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
2578         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
2579         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
2580         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
2581
2582 2007-03-25  Bruno Haible  <bruno@clisp.org>
2583
2584         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
2585         returns inf. Needed on IRIX 6.5.
2586
2587 2007-03-25  Bruno Haible  <bruno@clisp.org>
2588
2589         * tests/test-frexpl.c: Include isnanl-nolibm.h.
2590         (main): Use isnanl instead of x != x idiom.
2591         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
2592
2593         * tests/test-frexp.c: Include isnan.h.
2594         (main): Use isnan instead of x != x idiom.
2595         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
2596
2597 2007-03-25  Bruno Haible  <bruno@clisp.org>
2598
2599         * tests/test-frexp.c (NaN): New function/macro.
2600         (main): Use it instead of 0.0 / 0.0.
2601         * tests/test-isnan.c (NaN): New function/macro.
2602         (main): Use it instead of 0.0 / 0.0.
2603         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
2604         (test_function): Use it instead of 0.0 / 0.0.
2605         * tests/test-vasprintf-posix.c (NaN): New function/macro.
2606         (test_function): Use it instead of 0.0 / 0.0.
2607         * tests/test-snprintf-posix.h (NaN): New function/macro.
2608         (test_function): Use it instead of 0.0 / 0.0.
2609         * tests/test-sprintf-posix.h (NaN): New function/macro.
2610         (test_function): Use it instead of 0.0 / 0.0.
2611         * tests/test-fprintf-posix.h (NaN): New function/macro.
2612         (test_function): Use it instead of 0.0 / 0.0.
2613         * tests/test-printf-posix.h (NaN): New function/macro.
2614         (test_function): Use it instead of 0.0 / 0.0.
2615
2616         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
2617
2618 2007-03-25  Bruno Haible  <bruno@clisp.org>
2619
2620         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
2621
2622 2007-03-25  Bruno Haible  <bruno@clisp.org>
2623
2624         * lib/regexec.c (merge_state_with_log): Make static.
2625
2626 2007-03-25  Bruno Haible  <bruno@clisp.org>
2627
2628         * lib/trigl.c (kernel_rem_pio2): Make static.
2629
2630 2007-03-25  Bruno Haible  <bruno@clisp.org>
2631
2632         * lib/sincosl.c (sincosl_table): Make static.
2633
2634 2007-03-25  Bruno Haible  <bruno@clisp.org>
2635
2636         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
2637         if the compiler does not support C99.
2638
2639 2007-03-25  Bruno Haible  <bruno@clisp.org>
2640
2641         * modules/time (Makefile.am): Ensure all rule action lines start with a
2642         tab.
2643
2644 2007-03-24  Bruno Haible  <bruno@clisp.org>
2645
2646         * modules/tsearch-tests: New file.
2647         * tests/test-tsearch.sh: New file.
2648         * tests/test-tsearch.c: New file, mostly copied from glibc.
2649
2650         * modules/search-tests: New file.
2651         * tests/test-search.c: New file.
2652
2653         * modules/search: New file.
2654         * lib/search_.h: New file, incorporating lib/tsearch.h.
2655         * m4/search_h.m4: New file.
2656         * lib/tsearch.h: Remove file.
2657         * lib/tsearch.c: Include search.h instead of tsearch.h.
2658         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
2659         HAVE_TSEARCH.
2660         * modules/tsearch (Files): Remove lib/tsearch.h.
2661         (Depends-on): Add search.
2662         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
2663         (Include): Change tsearch.h into search.h.
2664
2665 2007-03-24  Bruno Haible  <bruno@clisp.org>
2666
2667         * modules/fpucw: New file.
2668         * lib/fpucw.h: New file.
2669         * lib/frexp.c: Include fpucw.h.
2670         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2671         (FUNC): Use them.
2672         * lib/printf-frexp.c: Include fpucw.h.
2673         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
2674         (FUNC): Use them.
2675         * lib/vasnprintf.c: Include fpucw.h.
2676         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
2677         'long double' calculations.
2678         * tests/test-frexpl.c: Include fpucw.h.
2679         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2680         * tests/test-printf-frexpl.c: Include fpucw.h.
2681         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
2682         * modules/frexpl (Depends-on): Add fpucw.
2683         * modules/printf-frexpl (Depends-on): Likewise.
2684         * modules/fprintf-posix (Depends-on): Likewise.
2685         * modules/snprintf-posix (Depends-on): Likewise.
2686         * modules/sprintf-posix (Depends-on): Likewise.
2687         * modules/vasnprintf-posix (Depends-on): Likewise.
2688         * modules/vasprintf-posix (Depends-on): Likewise.
2689         * modules/vfprintf-posix (Depends-on): Likewise.
2690         * modules/vsnprintf-posix (Depends-on): Likewise.
2691         * modules/vsprintf-posix (Depends-on): Likewise.
2692         * modules/frexpl-tests (Depends-on): Likewise.
2693         * modules/printf-frexpl-tests (Depends-on): Likewise.
2694
2695 2007-03-24  Bruno Haible  <bruno@clisp.org>
2696
2697         * lib/float+.h: New file.
2698         * lib/isnan.c: Include float+.h.
2699         (SIZE): New macro.
2700         (FUNC): Compare only SIZE bytes of the value.
2701         * lib/vasnprintf.c: Include float+.h.
2702         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
2703         SIZEOF_LDBL or SIZEOF_DBL bytes.
2704         * modules/isnan-nolibm (Files): Add lib/float+.h.
2705         * modules/isnanl-nolibm (Files): Add lib/float+.h.
2706         * modules/isnanl (Files): Add lib/float+.h.
2707         * modules/vasnprintf (Files): Add lib/float+.h.
2708
2709 2007-03-24  Bruno Haible  <bruno@clisp.org>
2710
2711         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
2712         include isnanl-nolibm.h.
2713
2714 2007-03-24  Bruno Haible  <bruno@clisp.org>
2715
2716         * tests/test-read-file.c (main): Don't produce spurious output for
2717         expected situations. Make the test fail if it encountered unexpected
2718         results.
2719
2720 2007-03-24  Bruno Haible  <bruno@clisp.org>
2721
2722         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
2723         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
2724
2725 2007-03-24  Bruno Haible  <bruno@clisp.org>
2726
2727         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
2728
2729 2007-03-24  Bruno Haible  <bruno@clisp.org>
2730
2731         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
2732         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
2733
2734         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
2735         * modules/utf8-ucs4: Turn into a symbolic link to module
2736         unistr/u8-mbtouc.
2737
2738         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
2739         utf8-ucs4-unsafe.
2740         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
2741         unistr/u8-mbtouc-unsafe.
2742
2743         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
2744         * modules/utf16-ucs4: Turn into a symbolic link to module
2745         unistr/u16-mbtouc.
2746
2747         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
2748         utf16-ucs4-unsafe.
2749         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
2750         unistr/u16-mbtouc-unsafe.
2751
2752         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
2753         * modules/ucs4-utf8: Turn into a symbolic link to module
2754         unistr/u8-ubtomb.
2755
2756         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
2757         * modules/ucs4-utf16: Turn into a symbolic link to module
2758         unistr/u16-ubtomb.
2759
2760 2007-03-24  Bruno Haible  <bruno@clisp.org>
2761
2762         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
2763         Enable the function only if HAVE_INLINE.
2764         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
2765         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2766         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
2767         Enable the function only if HAVE_INLINE.
2768         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
2769         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
2770         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
2771         Enable the function only if HAVE_INLINE.
2772         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
2773         Enable the function only if HAVE_INLINE.
2774         * modules/utf8-ucs4: Update.
2775         * modules/utf8-ucs4-unsafe: Update.
2776         * modules/utf16-ucs4: Update.
2777         * modules/utf16-ucs4-unsafe: Update.
2778         * modules/ucs4-utf8: Update.
2779         * modules/ucs4-utf16: Update.
2780
2781 2007-03-24  Bruno Haible  <bruno@clisp.org>
2782
2783         * lib/utf8-ucs4.h: Remove file.
2784         * lib/utf8-ucs4-unsafe.h: Remove file.
2785         * lib/utf16-ucs4.h: Remove file.
2786         * lib/utf16-ucs4-unsafe.h: Remove file.
2787         * lib/ucs4-utf8.h: Remove file.
2788         * lib/ucs4-utf16.h: Remove file.
2789         * lib/unistr.h: Include their previous contents.
2790         * m4/utf-ucs4.m4: Remove file.
2791         * m4/ucs4-utf.m4: Remove file.
2792         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
2793         (Depends-on): Add unistr/base.
2794         (configure.ac): Remove gl_UTF_UCS4.
2795         (Makefile.am): Update.
2796         (Include): Change to unistr.h.
2797         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
2798         (Depends-on): Add unistr/base.
2799         (configure.ac): Remove gl_UTF_UCS4.
2800         (Makefile.am): Update.
2801         (Include): Change to unistr.h.
2802         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
2803         (Depends-on): Add unistr/base.
2804         (configure.ac): Remove gl_UTF_UCS4.
2805         (Makefile.am): Update.
2806         (Include): Change to unistr.h.
2807         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
2808         (Depends-on): Add unistr/base.
2809         (configure.ac): Remove gl_UTF_UCS4.
2810         (Makefile.am): Update.
2811         (Include): Change to unistr.h.
2812         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
2813         (Depends-on): Add unistr/base.
2814         (configure.ac): Remove gl_UCS4_UTF.
2815         (Makefile.am): Update.
2816         (Include): Change to unistr.h.
2817         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
2818         (Depends-on): Add unistr/base.
2819         (configure.ac): Remove gl_UCS4_UTF.
2820         (Makefile.am): Update.
2821         (Include): Change to unistr.h.
2822         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
2823         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
2824         utf8-ucs4-unsafe.h.
2825         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
2826         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
2827         utf16-ucs4-unsafe.h.
2828         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
2829         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
2830         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
2831         * lib/unistr/u8-strchr.c: Likewise.
2832         * lib/unistr/u8-strrchr.c: Likewise.
2833         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
2834         * lib/unistr/u16-strchr.c: Likewise.
2835         * lib/unistr/u16-strrchr.c: Likewise.
2836         * lib/striconveh.c: Update.
2837         * lib/linebreak.c: Update.
2838
2839 2007-03-24  Bruno Haible  <bruno@clisp.org>
2840
2841         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
2842         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
2843
2844 2007-03-22  Bruno Haible  <bruno@clisp.org>
2845
2846         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
2847
2848 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
2849
2850         * MODULES.html.sh (File system functions): New module write-any-file.
2851         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
2852         * m4/write-any-file.m4: New files.
2853
2854 2007-03-23  Eric Blake  <ebb9@byu.net>
2855
2856         * gnulib-tool: Rearrange space-tab sequences, since some editors
2857         like to eat them.
2858
2859 2007-03-23  Eric Blake  <ebb9@byu.net>
2860
2861         * lib/version-etc.c (version_etc_va): Update license wording to
2862         be more concise.  Recommended by Richard Stallman.
2863
2864 2007-03-22  Bruno Haible  <bruno@clisp.org>
2865
2866         * lib/poll.c (MSG_PEEK): New fallback definition.
2867
2868 2007-03-22  Bruno Haible  <bruno@clisp.org>
2869
2870         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
2871         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
2872         (main): Update.
2873         Fixes a compilation error on BeOS.
2874
2875 2007-03-22  Bruno Haible  <bruno@clisp.org>
2876
2877         * modules/frexpl-tests: New file.
2878         * tests/test-frexpl.c: New file.
2879
2880         * modules/frexpl: New file.
2881         * m4/frexpl.m4: New file.
2882         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
2883         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
2884         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
2885         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
2886         (Depends-on): Add frexpl. Remove isnanl-nolibm.
2887         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
2888
2889 2007-03-22  Bruno Haible  <bruno@clisp.org>
2890
2891         * lib/frexpl.c: Share code with lib/frexp.c.
2892         * modules/mathl (Files): Add lib/frexp.c.
2893         (Depends-on): Add isnanl-nolibm.
2894
2895 2007-03-22  Bruno Haible  <bruno@clisp.org>
2896
2897         * modules/printf-frexp (Files): Add m4/frexp.m4.
2898         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
2899         only if the found frexp function actually works.
2900
2901 2007-03-22  Bruno Haible  <bruno@clisp.org>
2902
2903         * lib/frexp.c: Remove older implementation that uses divisions.
2904
2905 2007-03-21  Bruno Haible  <bruno@clisp.org>
2906
2907         * modules/frexp-tests: New file.
2908         * tests/test-frexp.c: New file.
2909
2910         * modules/frexp: New file.
2911         * lib/frexp.c: New file.
2912         * m4/frexp.m4: New file.
2913         * lib/math_.h (frexp): New declaration.
2914         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
2915         REPLACE_FREXP.
2916         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
2917
2918 2007-03-21  Bruno Haible  <bruno@clisp.org>
2919
2920         * modules/isnanl-tests: New file.
2921         * tests/test-isnanl.c: New file.
2922
2923         * modules/isnanl: New file.
2924         * lib/isnanl.h: New file.
2925         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
2926         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
2927         gl_FUNC_ISNANL_WORKS.
2928         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
2929         New macros.
2930
2931 2007-03-21  Bruno Haible  <bruno@clisp.org>
2932
2933         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
2934         lib/isnanl.h.
2935         (Include): Update.
2936         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
2937         * lib/vasnprintf.c: Update.
2938         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
2939         tests/test-isnanl.h, remove tests/test-isnanl.c.
2940         (Makefile.am): Update.
2941         * tests/test-isnanl-nolibm.c: New file.
2942         * tests/test-isnanl.h: New file.
2943         * tests/test-isnanl.c: Remove file.
2944
2945 2007-03-21  Jim Meyering  <jim@meyering.net>
2946
2947         When trying to open ".", treat ESTALE like EACCES.
2948         * lib/savewd.c (savewd_save): Resort to forking not just upon
2949         failure with EACCES, but also when errno is ESTALE.
2950
2951 2007-03-20  Bruno Haible  <bruno@clisp.org>
2952
2953         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
2954         Needed on AIX 5.1. Reported by Matthew Woehlke.
2955
2956 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2957
2958         Suggestions by Bruno Haible:
2959         * lib/acl-internal.h: Include "gettext.h" rather than rolling
2960         our own.
2961         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
2962         * modules/acl (Depends-on): Add gettext.
2963
2964 2007-03-19  Bruno Haible  <bruno@clisp.org>
2965
2966         * modules/iconvme: Remove file.
2967         * lib/iconvme.h: Remove file.
2968         * lib/iconvme.c: Remove file.
2969         * m4/iconvme.m4: Remove file.
2970
2971 2007-03-19  Bruno Haible  <bruno@clisp.org>
2972
2973         * doc/relocatable-maint.texi: Break long shell script line.
2974         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2975
2976 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2977
2978         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
2979         handle file_has_acl.
2980         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
2981         * lib/acl.c: Move header inclusions and related macro defns into
2982         lib/acl-internal.h.
2983         (S_ISLNK): Remove defn, since that's now done for us.
2984         (file_has_acl): Move to lib/file-has-acl.c.
2985         Call acl_trivial if available.  This is the crucial part of the fix.
2986         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
2987         shared within the library.  Rewrite a bit, partly to make it compatible
2988         with the GNU coding style.
2989         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
2990         Remove unnecessary double-quotes.
2991         Don't test for acl_to_text; the build will catch that.
2992         Replace acl_entries if it doesn't exist and it is needed.
2993         Check for -lsec and acl_trivial (as used on Solaris 10).
2994         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
2995         lib/file-has-acl.c.
2996         (Depends-on): Add sys_stat, for S_ISLNK.
2997
2998 2007-03-19  Ben Pfaff  <blp@gnu.org>
2999
3000         * doc/gnulib.texi: Fix typos.
3001         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
3002
3003 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
3004
3005         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
3006         If size is zero here, buf must be zero.
3007
3008 2007-03-19  Simon Josefsson  <simon@josefsson.org>
3009
3010         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
3011         <bruno@clisp.org>.
3012
3013 2007-03-18  Bruno Haible  <bruno@clisp.org>
3014
3015         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
3016         Suggested by Eric Blake.
3017
3018 2007-03-18  Ben Pfaff  <blp@gnu.org>
3019
3020         * doc/relocatable.texi: Recommend using as prefix a directory
3021         that does not exist and will never be created.  Based on
3022         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
3023         and others.
3024
3025 2007-03-17  Bruno Haible  <bruno@clisp.org>
3026
3027         * lib/fchownat.c: Include lchown.h.
3028
3029 2007-03-17  Bruno Haible  <bruno@clisp.org>
3030
3031         Fix endless loop when the given allocated size was > INT_MAX.
3032         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
3033         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
3034         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
3035         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
3036         * lib/sprintf.c (sprintf): Likewise.
3037
3038 2007-03-17  Bruno Haible  <bruno@clisp.org>
3039
3040         * tests/test-argp-2.sh (func_compare): Output a context diff.
3041
3042 2007-03-17  Bruno Haible  <bruno@clisp.org>
3043
3044         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
3045         locale's decimal-point character.
3046
3047 2007-03-17  Bruno Haible  <bruno@clisp.org>
3048
3049         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
3050         before comparing it. Needed because on some platforms (e.g. x86) a
3051         'long double' occupies less bytes than sizeof (long double).
3052
3053 2007-03-17  Bruno Haible  <bruno@clisp.org>
3054
3055         * tests/test-crc.c (main): Make printf statements 64-bit clean.
3056         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
3057         * tests/test-getaddrinfo.c (simple): Likewise.
3058         * tests/test-read-file.c (main): Likewise.
3059
3060 2007-03-17  Bruno Haible  <bruno@clisp.org>
3061
3062         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
3063
3064 2007-03-17  Bruno Haible  <bruno@clisp.org>
3065
3066         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
3067         unused variable.
3068
3069 2007-03-17  Bruno Haible  <bruno@clisp.org>
3070
3071         * tests/test-c-strcasecmp.c: Include c-strcase.h.
3072         * tests/test-c-strncasecmp.c: Likewise.
3073
3074 2007-03-17  Bruno Haible  <bruno@clisp.org>
3075
3076         * modules/stdlib (Depends-on): Add unistd.
3077         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
3078         Needed for MacOS X 10.3.
3079
3080 2007-03-17  Bruno Haible  <bruno@clisp.org>
3081
3082         * lib/unistr/u-strdup.h: Include <stdlib.h>.
3083
3084 2007-03-17  Bruno Haible  <bruno@clisp.org>
3085
3086         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
3087
3088 2007-03-17  Bruno Haible  <bruno@clisp.org>
3089
3090         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
3091         to reflect files copied from gnulib (with or without modifications).
3092         Suggested by Jim Meyering.
3093
3094 2007-03-17  Eric Blake  <ebb9@byu.net>
3095
3096         * NEWS: Document stdlib change from 2007-02-18.
3097
3098 2007-03-17  Jim Meyering  <jim@meyering.net>
3099
3100         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
3101         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
3102         someone uses a name containing shell meta-characters.
3103         Reported by Alfred M. Szmidt.
3104
3105         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
3106
3107 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
3108
3109         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
3110         and copy gettext configuration files only if configure.ac contains
3111         a use of AM_GNU_GETTEXT_VERSION.
3112
3113 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
3114
3115         * build-aux/bootstrap (gnulib_name): New variable.
3116         (gnulib_tool_options): Use it.
3117
3118 2007-03-13  Simon Josefsson  <simon@josefsson.org>
3119
3120         * tests/test-des.c: Use new namespace.
3121
3122 2007-03-15  Bruno Haible  <bruno@clisp.org>
3123
3124         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
3125         Reported by James Youngman <jay@gnu.org>.
3126
3127 2007-03-15  Bruno Haible  <bruno@clisp.org>
3128
3129         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
3130         declared prototype. Needed with cc on OSF/1 5.1.
3131
3132 2007-03-15  Bruno Haible  <bruno@clisp.org>
3133
3134         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
3135         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
3136         (struct gl_list_implementation): Add dispose_fn argument to the
3137         'create_empty', 'create' methods.
3138         (struct gl_list_impl_base): Add field 'dispose_fn'.
3139         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
3140         argument.
3141         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
3142         dispose_fn argument.
3143         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
3144         dispose_fn on the dropped values.
3145         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
3146         dispose_fn argument.
3147         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
3148         dropped values.
3149         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
3150         (gl_tree_remove_node): Call dispose_fn on the dropped value.
3151         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
3152         (gl_tree_remove_node): Call dispose_fn on the dropped value.
3153         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
3154         argument.
3155         (gl_tree_list_free): Call dispose_fn on the dropped values.
3156         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
3157         the dropped values.
3158         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
3159         Add dispose_fn argument.
3160         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
3161         Call dispose_fn on the dropped values.
3162         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
3163         Add dispose_fn argument.
3164         (gl_sublist_create): Initialize the 'dispose_fn' field.
3165         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
3166         * tests/test-array_list.c (main): Update.
3167         * tests/test-carray_list.c (main): Update.
3168         * tests/test-avltree_list.c (main): Update.
3169         * tests/test-rbtree_list.c (main): Update.
3170         * tests/test-avltreehash_list.c (main): Update.
3171         * tests/test-rbtreehash_list.c (main): Update.
3172         * tests/test-linked_list.c (main): Update.
3173         * tests/test-linkedhash_list.c (main): Update.
3174         * tests/test-array_oset.c (main): Update.
3175
3176 2007-03-15  Bruno Haible  <bruno@clisp.org>
3177
3178         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
3179         (gl_oset_create_empty): Add dispose_fn argument.
3180         (struct gl_oset_implementation): Add dispose_fn argument to
3181         'create_empty' method.
3182         (struct gl_oset_impl_base): Add dispose_fn field.
3183         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
3184         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
3185         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
3186         values.
3187         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
3188         (gl_tree_oset_free): Call dispose_fn on the dropped values.
3189         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
3190         dropped value.
3191         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
3192         dropped value.
3193         * tests/test-array_oset.c (main): Update.
3194         * tests/test-avltree_oset.c (main): Update.
3195         * tests/test-rbtree_oset.c (main): Update.
3196         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
3197
3198 2007-03-13  Bruno Haible  <bruno@clisp.org>
3199
3200         * tests/test-stdbool.c (i): Update after last patch.
3201
3202 2007-03-12  Bruno Haible  <bruno@clisp.org>
3203
3204         * lib/quotearg.c: Include <wctype.h> early, before the definition of
3205         the iswprint macro. Needed on Solaris 2.5.1.
3206
3207 2007-03-12  Bruno Haible  <bruno@clisp.org>
3208
3209         * tests/test-printf-frexp.c (main): Declare x as volatile.
3210
3211 2007-03-12  Simon Josefsson  <simon@josefsson.org>
3212
3213         * doc/gnulib.texi (Build robot for gnulib): New section.
3214
3215 2007-03-12  Jim Meyering  <jim@meyering.net>
3216
3217         * build-aux/bootstrap: New file.
3218         * build-aux/bootstrap.conf: New file, from coreutils.
3219
3220 2007-03-11  Bruno Haible  <bruno@clisp.org>
3221
3222         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
3223
3224 2007-03-12  Simon Josefsson  <simon@josefsson.org>
3225
3226         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
3227         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
3228         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
3229
3230 2007-03-11  Bruno Haible  <bruno@clisp.org>
3231
3232         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
3233         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
3234
3235 2007-03-11  Bruno Haible  <bruno@clisp.org>
3236
3237         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
3238         formula. Needed for SunPRO C 5.0.
3239
3240 2007-03-11  Bruno Haible  <bruno@clisp.org>
3241
3242         * modules/long-options (Depends-on): Add getopt.
3243
3244 2007-03-11  Bruno Haible  <bruno@clisp.org>
3245
3246         * modules/modechange (Depends-on): Add stdbool.
3247
3248 2007-03-11  Bruno Haible  <bruno@clisp.org>
3249
3250         * modules/i-ring (Depends-on): Add stdbool.
3251
3252 2007-03-11  Bruno Haible  <bruno@clisp.org>
3253
3254         * modules/gc-des (Depends-on): Add stdbool.
3255
3256 2007-03-11  Bruno Haible  <bruno@clisp.org>
3257
3258         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
3259
3260 2007-03-11  Bruno Haible  <bruno@clisp.org>
3261
3262         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
3263
3264 2007-03-11  Bruno Haible  <bruno@clisp.org>
3265
3266         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
3267
3268 2007-03-11  Bruno Haible  <bruno@clisp.org>
3269
3270         * lib/vasnprintf.c (sprintf): Undefine.
3271
3272 2007-03-11  Bruno Haible  <bruno@clisp.org>
3273
3274         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
3275         initializers in SunPRO C and Compaq C compilers.
3276
3277 2007-03-11  Bruno Haible  <bruno@clisp.org>
3278
3279         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
3280         decrementing code ANSI C compliant.
3281
3282 2007-03-11  Bruno Haible  <bruno@clisp.org>
3283
3284         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
3285         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
3286
3287 2007-03-11  Bruno Haible  <bruno@clisp.org>
3288
3289         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
3290         <stdbool.h> substitute doesn't pass.
3291
3292 2007-03-11  Bruno Haible  <bruno@clisp.org>
3293
3294         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
3295
3296 2007-03-11  Bruno Haible  <bruno@clisp.org>
3297
3298         * gnulib-tool (func_create_megatestdir): Create also an autobuild
3299         script, for submission to autobuild.josefsson.org.
3300
3301 2007-03-10  Bruno Haible  <bruno@clisp.org>
3302
3303         * modules/canonicalize-lgpl-tests: New file.
3304         * tests/test-canonicalize-lgpl.sh: New file.
3305         * tests/test-canonicalize-lgpl.c: New file.
3306
3307         * modules/c-strcase-tests: New file.
3308         * tests/test-c-strcase.sh: New file.
3309         * tests/test-c-strcasecmp.c: New file.
3310         * tests/test-c-strncasecmp.c: New file.
3311
3312         * modules/atexit-tests: New file.
3313         * tests/test-atexit.sh: New file.
3314         * tests/test-atexit.c: New file.
3315
3316 2007-03-10  Bruno Haible  <bruno@clisp.org>
3317
3318         * tests/test-binary-io.sh: Use temporary filenames that are not so
3319         likely to clash with those of other tests (in a parallel make).
3320         * tests/test-binary-io.c: Likewise.
3321
3322 2007-03-10  Bruno Haible  <bruno@clisp.org>
3323
3324         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
3325         fallback; use #error instead.
3326         Suggested by Simon Josefsson.
3327
3328 2007-03-10  Bruno Haible  <bruno@clisp.org>
3329
3330         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
3331         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
3332         first and the last.
3333
3334 2007-03-10  Bruno Haible  <bruno@clisp.org>
3335
3336         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
3337
3338 2007-03-10  Bruno Haible  <bruno@clisp.org>
3339
3340         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
3341         "make distcheck".
3342         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
3343         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
3344         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
3345
3346 2007-03-10  Bruno Haible  <bruno@clisp.org>
3347
3348         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
3349         variable.
3350         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
3351         variable.
3352
3353 2007-03-09  Eric Blake  <ebb9@byu.net>
3354         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
3355
3356         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
3357         types are not being provided by gnulib.
3358         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
3359         types are supported.
3360
3361 2007-03-10  Bruno Haible  <bruno@clisp.org>
3362
3363         * lib/stdio_.h (__attribute__): New macro.
3364         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
3365         vsprintf): Specify __attribute__ __format__ for GCC.
3366         Suggested by Eric Blake.
3367
3368 2007-03-09  Bruno Haible  <bruno@clisp.org>
3369
3370         * modules/printf-posix-tests: New file.
3371         * tests/test-printf-posix.sh: New file.
3372         * tests/test-printf-posix.c: New file.
3373
3374         * modules/printf-posix: New file.
3375         * lib/printf.c: New file.
3376         * m4/printf-posix-rpl.m4: New file.
3377         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
3378         REPLACE_PRINTF.
3379         * lib/stdio_.h (printf): New declaration.
3380         (format, __format__, ____printf____, ____scanf____, ____strftime____,
3381         ____strfmon____): New macros.
3382         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
3383         REPLACE_PRINTF.
3384
3385 2007-03-09  Bruno Haible  <bruno@clisp.org>
3386
3387         * tests/test-vasnprintf-posix2.sh: New file.
3388         * tests/test-vasnprintf-posix2.c: New file.
3389         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
3390         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
3391         (Makefile.am): Activate test-vasnprintf-posix2.sh.
3392
3393         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
3394         a locale dependent decimal point, rather than always '.'.
3395
3396 2007-03-09  Eric Blake  <ebb9@byu.net>
3397
3398         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
3399         spite of platforms like Tandem/NSK that define it to -1.
3400
3401 2007-03-08  Bruno Haible  <bruno@clisp.org>
3402
3403         * modules/vprintf-posix-tests: New file.
3404         * tests/test-vprintf-posix.sh: New file.
3405         * tests/test-vprintf-posix.c: New file.
3406         * tests/test-printf-posix.h: New file.
3407
3408         * modules/vprintf-posix: New file.
3409         * lib/vprintf.c: New file.
3410         * m4/vprintf-posix.m4: New file.
3411         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
3412         REPLACE_VPRINTF.
3413         * lib/stdio_.h (vprintf): New declaration.
3414         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
3415         REPLACE_VPRINTF.
3416
3417 2007-03-08  Bruno Haible  <bruno@clisp.org>
3418
3419         * modules/fprintf-posix-tests: New file.
3420         * tests/test-fprintf-posix.sh: New file.
3421         * tests/test-fprintf-posix.c: New file.
3422
3423         * modules/fprintf-posix: New file.
3424         * lib/fprintf.c: New file.
3425         * m4/fprintf-posix.m4: New file.
3426         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
3427         REPLACE_FPRINTF.
3428         * lib/stdio_.h (fprintf): New declaration.
3429         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
3430         REPLACE_FPRINTF.
3431
3432 2007-03-08  Bruno Haible  <bruno@clisp.org>
3433
3434         * modules/vfprintf-posix-tests: New file.
3435         * tests/test-vfprintf-posix.sh: New file.
3436         * tests/test-vfprintf-posix.c: New file.
3437         * tests/test-fprintf-posix.h: New file.
3438         * tests/test-fprintf-posix.out: New file.
3439
3440         * modules/vfprintf-posix: New file.
3441         * lib/vfprintf.c: New file.
3442         * m4/vfprintf-posix.m4: New file.
3443         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
3444         REPLACE_VFPRINTF.
3445         * lib/stdio_.h (vfprintf): New declaration.
3446         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
3447         REPLACE_VFPRINTF.
3448
3449 2007-03-08  Bruno Haible  <bruno@clisp.org>
3450
3451         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
3452
3453 2007-03-08  Bruno Haible  <bruno@clisp.org>
3454
3455         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
3456         instead of 'expr' invocations.
3457         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3458         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3459         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3460         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3461         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3462         Suggested by Paul Eggert.
3463
3464 2007-03-08  Bruno Haible  <bruno@clisp.org>
3465
3466         * modules/fseterr-tests: New file.
3467         * tests/test-fseterr.c: New file.
3468
3469         * modules/fseterr: New file.
3470         * lib/fseterr.h: New file.
3471         * lib/fseterr.c: New file.
3472
3473 2007-03-08  Bruno Haible  <bruno@clisp.org>
3474
3475         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
3476         * lib/getopt_.h: Likewise.
3477         * lib/mbswidth.h: Likewise.
3478         * lib/setenv.h: Likewise.
3479         * lib/vasnprintf.h: Likewise.
3480         * lib/vasprintf.h: Likewise.
3481         * lib/verror.h: Likewise.
3482         * lib/xsetenv.h: Likewise.
3483         * lib/xvasprintf.h: Likewise.
3484
3485 2007-03-08  Jim Meyering  <jim@meyering.net>
3486
3487         * users.txt: Add parted.
3488
3489         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
3490
3491 2007-03-07  Bruno Haible  <bruno@clisp.org>
3492
3493         * m4/printf.m4: Make the shell script snippets copy&pastable.
3494
3495 2007-03-02  Bruno Haible  <bruno@clisp.org>
3496
3497         * lib/netinet_in_.h: New file.
3498         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
3499         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
3500         * modules/netinet_in (Files): Add lib/netinet_in_.h.
3501         (Depends-on): Add absolute-header.
3502         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
3503         into netinet/in.h.
3504
3505 2007-03-03  Bruno Haible  <bruno@clisp.org>
3506
3507         * lib/sys_select_.h: New file.
3508         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
3509         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
3510         * modules/sys_select (Files): Add lib/sys_select_.h.
3511         (Depends-on): Add absolute-header.
3512         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
3513         into sys/select.h.
3514
3515 2007-03-02  Bruno Haible  <bruno@clisp.org>
3516
3517         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
3518         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
3519         values.
3520         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
3521         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
3522         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
3523         * modules/sys_socket (Depends-on): Add absolute-header.
3524         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
3525         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
3526         (Include): Remove requirement of inclusion of <sys/types.h>.
3527
3528 2007-03-02  Bruno Haible  <bruno@clisp.org>
3529
3530         * lib/byteswap_.h (bswap_32): Fix formula.
3531
3532 2007-03-06  Bruno Haible  <bruno@clisp.org>
3533
3534         * modules/sprintf-posix-tests: New file.
3535         * tests/test-sprintf-posix.c: New file.
3536
3537         * modules/sprintf-posix: New file.
3538         * lib/sprintf.c: New file.
3539         * m4/sprintf-posix.m4: New file.
3540         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
3541         REPLACE_SPRINTF.
3542         * lib/stdio_.h (sprintf): New declaration.
3543         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
3544         REPLACE_SPRINTF.
3545
3546 2007-03-06  Bruno Haible  <bruno@clisp.org>
3547
3548         * modules/vsprintf-posix-tests: New file.
3549         * tests/test-vsprintf-posix.c: New file.
3550         * tests/test-sprintf-posix.h: New file.
3551
3552         * modules/vsprintf-posix: New file.
3553         * lib/vsprintf.c: New file.
3554         * m4/vsprintf-posix.m4: New file.
3555         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
3556         REPLACE_VSPRINTF.
3557         * lib/stdio_.h (vsprintf): New declaration.
3558         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
3559         REPLACE_VSPRINTF.
3560
3561 2007-03-06  Bruno Haible  <bruno@clisp.org>
3562
3563         * modules/vsnprintf (Depend-on): Remove minmax.
3564
3565 2007-03-06  Bruno Haible  <bruno@clisp.org>
3566
3567         * modules/snprintf-posix-tests: New file.
3568         * tests/test-snprintf-posix.c: New file.
3569
3570         * modules/snprintf-posix: New file.
3571         * m4/snprintf-posix.m4: New file.
3572         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
3573         gl_FUNC_SNPRINTF.
3574         (gl_FUNC_SNPRINTF): Invoke it.
3575         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
3576         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
3577         is set.
3578         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
3579
3580 2007-03-06  Bruno Haible  <bruno@clisp.org>
3581
3582         * modules/vsnprintf-posix-tests: New file.
3583         * tests/test-vsnprintf-posix.c: New file.
3584         * tests/test-snprintf-posix.h: New file.
3585
3586         * modules/vsnprintf-posix: New file.
3587         * m4/vsnprintf-posix.m4: New file.
3588         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
3589         gl_FUNC_VSNPRINTF.
3590         (gl_FUNC_VSNPRINTF): Invoke it.
3591         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
3592         * lib/stdio_.h (vsnprintf): Define as a replacement if
3593         REPLACE_VSNPRINTF is set.
3594         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
3595
3596 2007-03-06  Bruno Haible  <bruno@clisp.org>
3597
3598         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
3599         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
3600
3601 2007-03-06  Bruno Haible  <bruno@clisp.org>
3602
3603         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
3604         (asinl): Declare also if HAVE_DECL_ASINL is set.
3605         (atanl): Declare also if HAVE_DECL_ATANL is set.
3606         (ceill): Declare also if HAVE_DECL_CEILL is set.
3607         (cosl): Declare also if HAVE_DECL_COSL is set.
3608         (expl): Declare also if HAVE_DECL_EXPL is set.
3609         (floorl): Declare also if HAVE_DECL_FLOORL is set.
3610         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
3611         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
3612         (logl): Declare also if HAVE_DECL_LOGL is set.
3613         (sinl): Declare also if HAVE_DECL_SINL is set.
3614         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
3615         (tanl): Declare also if HAVE_DECL_TANL is set.
3616         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
3617         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
3618         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
3619         declaration of frexpl, ldexpl.
3620         * modules/printf-frexpl (Depends-on): Add math.
3621         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
3622
3623 2007-03-05  Bruno Haible  <bruno@clisp.org>
3624
3625         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
3626         frexpl and ldexpl are declared.
3627         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
3628
3629 2007-03-05  Bruno Haible  <bruno@clisp.org>
3630
3631         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
3632         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
3633
3634 2007-03-05  Bruno Haible  <bruno@clisp.org>
3635
3636         * lib/stdio_.h: Include <stddef.h>.
3637
3638 2007-03-05  Bruno Haible  <bruno@clisp.org>
3639
3640         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
3641
3642 2007-03-05  Bruno Haible  <bruno@clisp.org>
3643
3644         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
3645         NetBSD 4, from Ralf Wildenhues.
3646
3647 2007-03-04  Bruno Haible  <bruno@clisp.org>
3648
3649         * lib/vasprintf.h: Update #if logic for the case when the functions
3650         exist but are overridden.
3651
3652 2007-03-04  Bruno Haible  <bruno@clisp.org>
3653
3654         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
3655         implementations: glibc-2.4 and MacOS X 10.3.
3656         * tests/test-vasnprintf-posix.c (test_function): Test also the case
3657         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
3658         * tests/test-vasprintf-posix.c (test_function): Likewise.
3659
3660 2007-03-04  Bruno Haible  <bruno@clisp.org>
3661
3662         * modules/vasprintf-posix-tests: New file.
3663         * tests/test-vasprintf-posix.c: New file.
3664
3665         * modules/vasprintf-posix: New file.
3666         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
3667         defined.
3668         * m4/vasprintf-posix.m4: New file.
3669         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
3670         gl_FUNC_VASPRINTF.
3671         (gl_FUNC_VASPRINTF): Invoke it.
3672         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
3673         here.
3674         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
3675
3676 2007-03-04  Bruno Haible  <bruno@clisp.org>
3677
3678         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
3679         REPLACE_GETTIMEOFDAY.
3680         * modules/sys_time (Makefile.am): Likewise.
3681         * m4/sys_time_h.m4: Likewise.
3682         * m4/gettimeofday.m4: Likewise.
3683
3684 2007-03-04  Bruno Haible  <bruno@clisp.org>
3685
3686         * modules/vasnprintf-posix-tests: New file.
3687         * tests/test-vasnprintf-posix.c: New file.
3688
3689         * modules/vasnprintf-posix: New file.
3690         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
3691         printf-frexpl.h.
3692         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
3693         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
3694         REPLACE_VASNPRINTF is defined.
3695         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
3696         gl_FUNC_VASNPRINTF.
3697         (gl_FUNC_VASNPRINTF): Invoke it.
3698         * m4/vasnprintf-posix.m4: New file.
3699         * m4/printf.m4: New file.
3700
3701 2007-03-04  Bruno Haible  <bruno@clisp.org>
3702
3703         Compile progreloc.c only if --enable-relocatable is specified.
3704         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
3705         if --enable-relocatable was specified.
3706         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
3707         lib_SOURCES.
3708
3709 2007-03-04  Jim Meyering  <jim@meyering.net>
3710
3711         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
3712         Use it consistently, rather than enumerating errno constants.
3713
3714 2007-03-04  Bruno Haible  <bruno@clisp.org>
3715
3716         * modules/xvasprintf-tests: New file.
3717         * tests/test-xvasprintf.c: New file.
3718
3719         * modules/vasprintf-tests: New file.
3720         * tests/test-vasprintf.c: New file.
3721
3722         * modules/vasnprintf-tests: New file.
3723         * tests/test-vasnprintf.c: New file.
3724
3725         * modules/vsnprintf-tests: New file.
3726         * tests/test-vsnprintf.c: New file.
3727
3728         * modules/snprintf-tests: New file.
3729         * tests/test-snprintf.c: New file.
3730
3731 2007-03-04  Bruno Haible  <bruno@clisp.org>
3732
3733         Compile relocatable.c only if --enable-relocatable is specified.
3734         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
3735         gl_RELOCATABLE_LIBRARY.
3736         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
3737         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
3738         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
3739         gl_RELOCATABLE_LIBRARY.
3740         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
3741         (Makefile.am): Remove lib_SOURCES.
3742         * modules/relocatable-lib-lgpl (configure.ac): Invoke
3743         gl_RELOCATABLE_LIBRARY.
3744         (Makefile.am): Remove lib_SOURCES.
3745         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
3746         always.
3747         * modules/relocatable-prog-wrapper (configure.ac): Invoke
3748         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
3749
3750 2007-03-04  Bruno Haible  <bruno@clisp.org>
3751
3752         * modules/argmatch-tests: New file.
3753         * tests/test-argmatch.c: New file.
3754
3755         * tests/test-allocsa.c (main): Halve the number of loop runs.
3756
3757         * modules/alloca-opt-tests: New file.
3758         * tests/test-alloca-opt.c: New file.
3759
3760 2007-03-04  Jim Meyering  <jim@meyering.net>
3761
3762         Work around difference between Linux ACLs and Solaris 10 ZFS.
3763         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
3764         for EINVAL.
3765
3766 2007-03-03  Bruno Haible  <bruno@clisp.org>
3767
3768         * modules/relocatable-prog (Depends-on): Add back progreloc's
3769         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
3770
3771 2007-03-03  Bruno Haible  <bruno@clisp.org>
3772
3773         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
3774         * modules/relocatable-lib: New file.
3775
3776 2007-03-03  Bruno Haible  <bruno@clisp.org>
3777
3778         * modules/relocatable-prog: Renamed from modules/relocatable.
3779         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
3780
3781 2007-03-03  Bruno Haible  <bruno@clisp.org>
3782
3783         * modules/relocatable-script (Files): Add doc/relocatable.texi,
3784         m4/relocatable-lib.m4.
3785         (Depends-on): Remove 'relocatable'.
3786         (configure.ac): Add gl_RELOCATABLE_NOP.
3787
3788 2007-03-03  Bruno Haible  <bruno@clisp.org>
3789
3790         * modules/relocatable-prog-wrapper: New file.
3791         * modules/relocatable (Depends-on): Add it. Remove all other
3792         dependencies except progname.
3793         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
3794
3795         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
3796         (gl_FUNC_STRERROR): Nop.
3797         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
3798
3799         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
3800         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
3801
3802         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
3803         (gl_FUNC_READLINK): Update.
3804
3805         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
3806
3807 2007-03-03  Bruno Haible  <bruno@clisp.org>
3808
3809         * lib/xreadlink.c: Include <unistd.h> unconditionally.
3810         * modules/xreadlink (Depends-on): Add unistd.
3811         * modules/xreadlink-with-size (Depends-on): Likewise.
3812
3813 2007-03-03  Bruno Haible  <bruno@clisp.org>
3814
3815         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
3816         extracted from gt_FUNC_SETENV.
3817         (gt_FUNC_SETENV): Remove macro.
3818         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
3819         remove gt_FUNC_SETENV.
3820
3821 2007-03-03  Bruno Haible  <bruno@clisp.org>
3822
3823         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
3824         ENABLE_RELOCATABLE here.
3825         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
3826
3827 2007-03-03  Bruno Haible  <bruno@clisp.org>
3828
3829         * modules/rbtreehash-list-tests (Depends-on): Add progname.
3830         * tests/test-rbtreehash_list.c: Include progname.h.
3831         (main): Call set_program_name.
3832
3833         * modules/rbtree-oset-tests (Depends-on): Add progname.
3834         * tests/test-rbtree_oset.c: Include progname.h.
3835         (main): Call set_program_name.
3836
3837         * modules/rbtree-list-tests (Depends-on): Add progname.
3838         * tests/test-rbtree_list.c: Include progname.h.
3839         (main): Call set_program_name.
3840
3841         * modules/linked-list-tests (Depends-on): Add progname.
3842         * tests/test-linked_list.c: Include progname.h.
3843         (main): Call set_program_name.
3844
3845 2007-03-03  Bruno Haible  <bruno@clisp.org>
3846
3847         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
3848         All uses of __restrict changed to _Restrict_.
3849         * lib/glob_.h (__restrict): Remove macro.
3850
3851 2007-03-02  Bruno Haible  <bruno@clisp.org>
3852
3853         * modules/gettext (configure.ac): Require gettext infrastructure
3854         from version 0.16.1.
3855
3856 2007-03-02  Bruno Haible  <bruno@clisp.org>
3857
3858         * modules/linkedhash-list-tests (Depends-on): Add progname.
3859         * tests/test-linkedhash_list.c: Include progname.h.
3860         (main): Call set_program_name.
3861
3862         * modules/carray-list-tests (Depends-on): Add progname.
3863         * tests/test-carray_list.c: Include progname.h.
3864         (main): Call set_program_name.
3865
3866         * modules/avltreehash-list-tests (Depends-on): Add progname.
3867         * tests/test-avltreehash_list.c: Include progname.h.
3868         (main): Call set_program_name.
3869
3870         * modules/avltree-oset-tests (Depends-on): Add progname.
3871         * tests/test-avltree_oset.c: Include progname.h.
3872         (main): Call set_program_name.
3873
3874         * modules/avltree-list-tests (Depends-on): Add progname.
3875         * tests/test-avltree_list.c: Include progname.h.
3876         (main): Call set_program_name.
3877
3878         * modules/array-oset-tests (Depends-on): Add progname.
3879         * tests/test-array_oset.c: Include progname.h.
3880         (main): Call set_program_name.
3881
3882         * modules/array-list-tests (Depends-on): Add progname.
3883         * tests/test-array_list.c: Include progname.h.
3884         (main): Call set_program_name.
3885
3886         * modules/argp-tests (Depends-on): Add progname.
3887         * tests/test-argp.c: Include argp.h first. Include progname.h.
3888         (main): Call set_program_name.
3889
3890 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
3891
3892         * doc/gnulib-tool.texi (Initial import): Reword description of
3893         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
3894         limited effect even if defined after the first system include.
3895
3896 2007-03-01  Bruno Haible  <bruno@clisp.org>
3897
3898         * build-aux/config.libpath: Update to libtool-1.5.22.
3899         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3900
3901 2007-03-01  Bruno Haible  <bruno@clisp.org>
3902
3903         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
3904         foo_CFLAGS.
3905         Reported by Ralf Wildenhues.
3906
3907 2007-03-01  Bruno Haible  <bruno@clisp.org>
3908
3909         * build-aux/install-reloc: Remove object files left over by some
3910         compilers.
3911         Reported by Ralf Wildenhues.
3912
3913 2007-03-01  Bruno Haible  <bruno@clisp.org>
3914
3915         * build-aux/install-reloc: Break long lines.
3916
3917 2007-03-01  Bruno Haible  <bruno@clisp.org>
3918
3919         * doc/relocatable.texi: Document that it may not work on OpenBSD.
3920         Reported by Ralf Wildenhues.
3921
3922 2007-03-01  Bruno Haible  <bruno@clisp.org>
3923
3924         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
3925         include ordering constraints.
3926
3927 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
3928
3929         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
3930         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
3931         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
3932         as another example.
3933         * lib/time_.h: Fix misspelling.
3934         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3935         Require gl_HEADER_TIME_H_DEFAULTS.
3936         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
3937         * m4/time_r.m4 (gl_TIME_R): Likewise.
3938         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
3939
3940 2007-03-01  Bruno Haible  <bruno@clisp.org>
3941
3942         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
3943         * m4/utimens.m4 (gl_UTIMENS): Likewise.
3944
3945 2007-03-01  Jim Meyering  <jim@meyering.net>
3946
3947         * modules/xreadlink (Maintainer): Add my name.
3948         * modules/xreadlink-with-size (Depends-on): Alphabetize.
3949
3950 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
3951             Bruno Haible  <bruno@clisp.org>
3952
3953         * build-aux/install-reloc: Compile also c-ctype.c.
3954         * build-aux/relocatable.sh.in: New file.
3955         * doc/relocatable.texi: New file.
3956         * doc/relocatable-maint.texi: New file.
3957         * doc/gnulib.texi: Include relocatable-maint.texi.
3958         * lib/progreloc.c: Include unistd.h unconditionally.
3959         * lib/relocwrapper.c: Include unistd.h unconditionally.
3960         Include c-ctype.h.
3961         (add_dotbin): Use c_tolower.
3962         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
3963         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
3964         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
3965         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
3966         to m4/relocatable-lib.m4.
3967         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
3968         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
3969         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
3970         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
3971         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
3972         * modules/relocatable: New file.
3973         * modules/relocatable-lib: New file.
3974         * modules/relocatable-script: New file.
3975
3976 2007-02-28  Bruno Haible  <bruno@clisp.org>
3977
3978         Import --enable-relocatable infrastructure.
3979         * build-aux/config.libpath: New file, from GNU gettext.
3980         * build-aux/install-reloc: New file, from GNU gettext.
3981         * build-aux/reloc-ldflags: New file, from GNU gettext.
3982         * lib/relocatable.h: New file, from GNU gettext.
3983         * lib/relocatable.c: New file, from GNU gettext.
3984         * lib/relocwrapper.c: New file, from GNU gettext.
3985         * m4/relocatable.m4: New file, from GNU gettext.
3986
3987 2007-02-28  Bruno Haible  <bruno@clisp.org>
3988
3989         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
3990
3991         * modules/xreadlink: New file, from GNU gettext with modifications.
3992         * lib/xreadlink.c: New file, from GNU gettext.
3993         * lib/xreadlink.h: Add comments.
3994         (xreadlink): New declaration.
3995
3996         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
3997         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
3998         lib/xreadlink-with-size.c.
3999         (configure.ac): Remove gl_XREADLINK invocation.
4000         (Makefile.am): Augment lib_SOURCES.
4001         * m4/xreadlink.m4: Remove file.
4002         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
4003         (xreadlink_with_size): Renamed from xreadink.
4004         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
4005         * modules/canonicalize (Depends-on): Replace xreadlink with
4006         xreadlink-with-size.
4007         * lib/canonicalize.c (canonicalize_filename_mode): Update.
4008
4009 2007-02-25  Jim Meyering  <jim@meyering.net>
4010
4011         * build-aux/announce-gen: When complaining about excess arguments,
4012         list them.
4013
4014 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
4015
4016         * README: Document signed integer overflow situation more
4017         accurately.
4018
4019 2007-02-25  Bruno Haible  <bruno@clisp.org>
4020
4021         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
4022         'a' or 'A' conversion.
4023
4024 2007-02-25  Bruno Haible  <bruno@clisp.org>
4025
4026         * modules/filename: Renamed from modules/pathname.
4027         (Files): Replace lib/pathname.h with lib/filename.h. Replace
4028         lib/concatpath.c with lib/concat-filename.c.
4029         (Makefile.am): Update.
4030         (Include): Replace pathname.h with filename.h.
4031         * lib/filename.h: Renamed from lib/pathname.h.
4032         (concatenated_filename): Renamed from concatenated_pathname.
4033         * lib/concat-filename.c: Renamed from lib/concatpath.c.
4034         (concatenated_filename): Renamed from concatenated_pathname.
4035         * lib/findprog.c: Include filename.h instead of pathname.h.
4036         (find_in_path): Update.
4037         * lib/javacomp.c: Include filename.h instead of pathname.h.
4038         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
4039         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
4040         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
4041         is_oldgcj_14_13_usable, is_javac_usable): Update.
4042         * lib/javaexec.c: Include filename.h instead of pathname.h.
4043         (execute_java_class): Update.
4044         * modules/findprog: Update.
4045         * modules/javacomp: Update.
4046         * modules/javaexec: Update.
4047         * MODULES.html.sh (File system functions): Add 'filename', remove
4048         'pathname'.
4049
4050 2007-02-25  Bruno Haible  <bruno@clisp.org>
4051
4052         * modules/printf-frexpl-tests: New file.
4053         * tests/test-printf-frexpl.c: New file.
4054
4055         * modules/printf-frexpl: New file.
4056         * lib/printf-frexpl.h: New file.
4057         * lib/printf-frexpl.c: New file.
4058         * m4/printf-frexpl.m4: New file.
4059
4060 2007-02-25  Bruno Haible  <bruno@clisp.org>
4061
4062         * modules/printf-frexp-tests: New file.
4063         * tests/test-printf-frexp.c: New file.
4064
4065         * modules/printf-frexp: New file.
4066         * lib/printf-frexp.h: New file.
4067         * lib/printf-frexp.c: New file.
4068         * m4/printf-frexp.m4: New file.
4069
4070 2007-02-25  Bruno Haible  <bruno@clisp.org>
4071
4072         Assume automake >= 1.10 for the tests.
4073         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
4074         * modules/arctwo-tests: Likewise.
4075         * modules/argp-tests: Likewise.
4076         * modules/avltree-list-tests: Likewise.
4077         * modules/avltree-oset-tests: Likewise.
4078         * modules/avltreehash-list-tests: Likewise.
4079         * modules/carray-list-tests: Likewise.
4080         * modules/crc-tests: Likewise.
4081         * modules/des-tests: Likewise.
4082         * modules/gc-arcfour-tests: Likewise.
4083         * modules/gc-arctwo-tests: Likewise.
4084         * modules/gc-des-tests: Likewise.
4085         * modules/gc-hmac-md5-tests: Likewise.
4086         * modules/gc-hmac-sha1-tests: Likewise.
4087         * modules/gc-md2-tests: Likewise.
4088         * modules/gc-md4-tests: Likewise.
4089         * modules/gc-md5-tests: Likewise.
4090         * modules/gc-pbkdf2-sha1-tests: Likewise.
4091         * modules/gc-rijndael-tests: Likewise.
4092         * modules/gc-sha1-tests: Likewise.
4093         * modules/gc-tests: Likewise.
4094         * modules/getaddrinfo-tests: Likewise.
4095         * modules/hmac-md5-tests: Likewise.
4096         * modules/hmac-sha1-tests: Likewise.
4097         * modules/linked-list-tests: Likewise.
4098         * modules/linkedhash-list-tests: Likewise.
4099         * modules/lock-tests: Likewise.
4100         * modules/md2-tests: Likewise.
4101         * modules/md4-tests: Likewise.
4102         * modules/md5-tests: Likewise.
4103         * modules/rbtree-list-tests: Likewise.
4104         * modules/rbtree-oset-tests: Likewise.
4105         * modules/rbtreehash-list-tests: Likewise.
4106         * modules/read-file-tests: Likewise.
4107         * modules/rijndael-tests: Likewise.
4108         * modules/stdint-tests: Likewise.
4109         * modules/tls-tests: Likewise.
4110
4111 2007-02-24  Bruno Haible  <bruno@clisp.org>
4112
4113         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
4114         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
4115         function; instead check whether isnan with a double argument links.
4116         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
4117         function; instead check whether isnan with a 'long double' argument
4118         links.
4119         Reported by Eric Blake <ebb9@byu.net>.
4120
4121 2007-02-24  Bruno Haible  <bruno@clisp.org>
4122
4123         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
4124         defined.
4125         * lib/isnanl.c: Remove all code. Just include isnan.c.
4126         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
4127
4128 2007-02-25  Jim Meyering  <jim@meyering.net>
4129
4130         Avoid conflicting types for 'unsetenv' on FreeBSD.
4131         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
4132         conflicting with FreeBSD's (5.0 and 6.1) function declaration
4133         in stdlib.h.
4134
4135 2007-02-24  Bruno Haible  <bruno@clisp.org>
4136
4137         * modules/isnanl-nolibm-tests: New file.
4138         * tests/test-isnanl.c: New file.
4139
4140         * modules/isnanl-nolibm: New file.
4141         * lib/isnanl.h: New file.
4142         * lib/isnanl.c: New file.
4143         * m4/isnanl.m4: New file.
4144
4145 2007-02-24  Bruno Haible  <bruno@clisp.org>
4146
4147         * modules/isnan-nolibm-tests: New file.
4148         * tests/test-isnan.c: New file.
4149
4150         * modules/isnan-nolibm: New file.
4151         * lib/isnan.h: New file.
4152         * lib/isnan.c: New file.
4153         * m4/isnan.m4: New file.
4154
4155 2007-02-24  Bruno Haible  <bruno@clisp.org>
4156
4157         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
4158         assume that an exponent fits in 20 bits.
4159
4160 2007-02-24  Jim Meyering  <jim@meyering.net>
4161
4162         * m4/regex.m4: Update the description of the configure-time option,
4163         --without-included-regex, to state accurately what the defaults are,
4164         and perhaps to give people an idea why using this option is risky.
4165
4166 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
4167
4168         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
4169         loops on small arguments.  This attempts to avoid the problem
4170         Bruno Haible reported for AIX 4.3.2 in
4171         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
4172
4173 2007-02-23  Bruno Haible  <bruno@clisp.org>
4174
4175         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
4176         Needed for help2man.
4177
4178 2007-02-23  Karl Berry  <karl@gnu.org>
4179
4180         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
4181         exists, foo.h should be cvs-ignored, not committed.
4182
4183 2007-02-23  Eric Blake  <ebb9@byu.net>
4184
4185         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
4186         * lib/stat-time.h (includes): Likewise.
4187         * lib/utimecmp.c (includes): Likewise.
4188         * lib/utimens.h (includes): Likewise.
4189         * lib/getdate.y (includes): Also include "timespec.h" for use
4190         internal to the module.
4191         * modules/utimens (Depends-on): Revert yesterday's patch.
4192         * modules/nanosleep (Depends-on): Add missing dependency.
4193
4194 2007-02-22  Bruno Haible  <bruno@clisp.org>
4195
4196         * lib/glob.c: Don't include getlogin_r.h.
4197
4198 2007-02-22  Jim Meyering  <jim@meyering.net>
4199
4200         * modules/utimens (Depends-on): Add timespec, required for
4201         utimens.h's inclusion of timespec.h.
4202
4203 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
4204
4205         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
4206         long unreadable paths in GNU/Linux.  Problem reported by Andreas
4207         Schwab in
4208         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
4209         I'll try to think of a better way to fix the Solaris problem.
4210
4211         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
4212         like glibc; on Solaris 10, it fails with errno == EINVAL.
4213         POSIX says the behavior is unspecified if the first argument is NULL,
4214         so play it safe and never pass NULL to the system getcwd.
4215
4216 2007-02-21  Jim Meyering  <jim@meyering.net>
4217
4218         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
4219         of gettimeofday.  It would conflict with the one now always
4220         provided via sys_time_.h.  Reported by Matthew Woehlke, as
4221         an IRIX 6.5 build failure.
4222
4223 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
4224
4225         Minor fixups to port to Solaris 10 with Sun C 5.8.
4226         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
4227         * modules/getcwd (Depends-on): Add dirfd.
4228         * lib/putenv.c (putenv): #undef it.
4229         (rpl_putenv): New decl.
4230         (malloc, free): Include <stdlib.h> rather than prototyping separately.
4231
4232 2007-02-20  Bruno Haible  <bruno@clisp.org>
4233
4234         * modules/stdio-tests: New file.
4235         * tests/test-stdio.c: New file.
4236
4237         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
4238         (Depends-on): Add stdio.
4239         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
4240         (Include): Use <stdio.h> instead of vsnprintf.h.
4241         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
4242         HAVE_DECL_VSNPRINTF.
4243         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
4244
4245         * modules/snprintf (Files): Remove lib/snprintf.h.
4246         (Depends-on): Add stdio.
4247         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
4248         (Include): Use <stdio.h> instead of snprintf.h.
4249         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
4250         HAVE_DECL_SNPRINTF.
4251         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
4252         * lib/getaddrinfo.c: Likewise.
4253
4254         * modules/stdio: New file.
4255         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
4256         * lib/snprintf.h: Remove file.
4257         * lib/vsnprintf.h: Remove file.
4258         * lib/.cppi-disable: Remove snprintf.h.
4259         * m4/stdio_h.m4: New file.
4260         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
4261
4262 2007-02-20  Jim Meyering  <jim@meyering.net>
4263
4264         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
4265         used by e.g., mingw.  From Bruno Haible.
4266
4267 2007-02-19  Bruno Haible  <bruno@clisp.org>
4268
4269         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
4270         warnings.
4271         Reported by Ben Pfaff <blp@cs.stanford.edu>.
4272
4273 2007-02-19  Bruno Haible  <bruno@clisp.org>
4274
4275         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
4276         from mingw users.
4277
4278 2007-02-19  Bruno Haible  <bruno@clisp.org>
4279
4280         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
4281         warnings.
4282         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
4283
4284 2007-02-19  Jim Meyering  <jim@meyering.net>
4285
4286         Don't use FD after a successful "fdopendir (fd)".
4287         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
4288         Reset it by calling dirfd on the just-obtained DIR*.
4289
4290         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
4291         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
4292
4293 2007-02-18  Bruno Haible  <bruno@clisp.org>
4294
4295         * lib/readlink.c: Include <unistd.h>.
4296         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
4297         HAVE_READLINK.
4298         * modules/readlink (Depends-on): Add unistd.
4299         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4300         (Include): Add <unistd.h>.
4301
4302         * lib/getlogin_r.h: Remove file.
4303         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
4304         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
4305         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
4306         HAVE_DECL_GETLOGIN_R.
4307         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
4308         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4309         (Include): Use <unistd.h> instead of getlogin_r.h.
4310
4311         * lib/getcwd.h: Remove file.
4312         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
4313         * lib/xgetcwd.c: Likewise.
4314         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
4315         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
4316         * modules/getcwd (Files): Remove lib/getcwd.h.
4317         (Depends-on): Add unistd.
4318         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4319         (Include): Use <unistd.h> instad of getcwd.h.
4320
4321         * lib/ftruncate.c: Include <unistd.h> first.
4322         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
4323         Set HAVE_FTRUNCATE.
4324         * modules/ftruncate (Depends-on): Add unistd.
4325         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4326
4327         * lib/fchdir.c: Include <unistd.h> first.
4328         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
4329         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
4330         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
4331         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4332         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
4333
4334         * lib/dup2.c: Include <unistd.h> first.
4335         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
4336         HAVE_DUP2.
4337         * modules/dup2 (Depends-on): Add unistd.
4338         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4339
4340         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
4341         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
4342         REPLACE_CHOWN. Don't define chown as a macro here.
4343         * modules/chown (Depends-on): Add unistd.
4344         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4345
4346         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
4347         Add definition for GL_LINK_WARNING.
4348         (chown, dup2): New declarations.
4349         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
4350         link warning.
4351         (ftruncate): New declaration.
4352         (getcwd): New declaration, taken from old getcwd.h.
4353         (getlogin_r): New declaration, taken from old getlogin_r.h.
4354         (readlink): New declaration.
4355         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
4356         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
4357         (gl_PREREQ_UNISTD): Remove macro.
4358         (gl_UNISTD_MODULE_INDICATOR): New macro.
4359         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
4360         many new variables. Don't set UNISTD_H.
4361         * modules/unistd (Description): Change.
4362         (Depends-on): Add link-warning.
4363         (configure.ac): Update.
4364         (Makefile.am): Create unistd.h always. Substitute many new variables
4365         into it.
4366
4367 2007-02-18  Bruno Haible  <bruno@clisp.org>
4368
4369         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
4370         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
4371         HAVE_GETSUBOPT.
4372         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
4373         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
4374         * lib/getsubopt.h: Remove file.
4375         * modules/getsubopt (Files): Remove lib/getsubopt.h.
4376         (Depends-on): Add stdlib.
4377         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4378         (Includes): Use <stdlib.h> instead of getsubopt.h.
4379         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
4380         Set HAVE_GETSUBOPT.
4381         * lib/getsubopt.c: Don't include getsubopt.h.
4382
4383 2007-02-18  Bruno Haible  <bruno@clisp.org>
4384
4385         * modules/fchdir (Depends-on): Add dup2.
4386
4387 2007-02-18  Bruno Haible  <bruno@clisp.org>
4388
4389         * lib/stdlib_.h: Handle glibc's special invocation convention
4390         specially.
4391
4392 2007-02-18  Bruno Haible  <bruno@clisp.org>
4393
4394         * modules/stdlib-tests: New file.
4395         * tests/test-stdlib.c: New file.
4396
4397         * modules/mkstemp (Files): Remove lib/mkstemp.h.
4398         (Depends-on): Add stdlib.
4399         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4400         (Includes): Use <stdlib.h> instead of mkstemp.h.
4401         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
4402         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
4403         * lib/mkstemp.c: Don't include mkstemp.h.
4404         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
4405         * lib/stdlib--.h: Don't include mkstemp.h.
4406
4407         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
4408         (Depends-on): Add stdlib.
4409         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4410         (Includes): Use <stdlib.h> instead of mkdtemp.h.
4411         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
4412         HAVE_MKDTEMP.
4413         * lib/mkdtemp.c: Don't include mkdtemp.h.
4414         * lib/clean-temp.c: Don't include mkdtemp.h.
4415
4416         * modules/exit (Files): Remove lib/exit.h.
4417         (Depends-on): Add stdlib.
4418         (Makefile.am): Remove lib_SOURCES.
4419         (Include): Use <stdlib.h> instead of exit.h.
4420         * lib/argmatch.c: Don't include exit.h.
4421         * lib/execute.c: Likewise.
4422         * lib/pagealign_alloc.c: Likewise.
4423         * lib/pipe.c: Likewise.
4424         * lib/wait-process.c: Likewise.
4425         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
4426         * lib/exitfail.c: Likewise.
4427         * lib/savewd.c: Likewise.
4428         * lib/xsetenv.c: Likewise.
4429
4430         * modules/stdlib: New file.
4431         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
4432         and extra comments about mkstemp().
4433         * lib/exit.h: Remove file.
4434         * lib/mkdtemp.h: Remove file.
4435         * lib/mkstemp.h: Remove file.
4436         * m4/stdlib_h.m4: New file.
4437         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
4438
4439 2007-02-18  Bruno Haible  <bruno@clisp.org>
4440
4441         * modules/math-tests: New file.
4442         * tests/test-math.c: New file.
4443
4444         * modules/math: New file.
4445         * modules/mathl (Files): Remove lib/mathl.h.
4446         (Depends-on): Add math.
4447         (Makefile.am): Don't mention mathl.h.
4448         (Include): Use <math.h> instead of mathl.h.
4449         * lib/math_.h: New file.
4450         * lib/mathl.h: Remove file.
4451         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
4452         mathl.h.
4453         * lib/asinl.c: Likewise.
4454         * lib/atanl.c: Likewise.
4455         * lib/ceill.c: Likewise.
4456         * lib/cosl.c: Likewise.
4457         * lib/expl.c: Likewise.
4458         * lib/floorl.c: Likewise.
4459         * lib/frexpl.c: Likewise.
4460         * lib/ldexpl.c: Likewise.
4461         * lib/logl.c: Likewise.
4462         * lib/sincosl.c: Likewise.
4463         * lib/sinl.c: Likewise.
4464         * lib/sqrtl.c: Likewise.
4465         * lib/tanl.c: Likewise.
4466         * lib/trigl.c: Likewise.
4467         * m4/math_h.m4: New file.
4468         * MODULES.html.sh (Mathematics): Add math.
4469
4470 2007-02-17  Bruno Haible  <bruno@clisp.org>
4471
4472         * modules/wctype-tests: New file.
4473         * tests/test-wctype.c: New file.
4474
4475         * modules/wchar-tests: New file.
4476         * tests/test-wchar.c: New file.
4477
4478         * modules/unistd-tests: New file.
4479         * tests/test-unistd.c: New file.
4480
4481         * modules/time-tests: New file.
4482         * tests/test-time.c: New file.
4483
4484         * modules/sysexits-tests: New file.
4485         * tests/test-sysexits.c: New file.
4486
4487         * modules/sys_time-tests: New file.
4488         * tests/test-sys_time.c: New file.
4489
4490         * modules/sys_stat-tests: New file.
4491         * tests/test-sys_stat.c: New file.
4492
4493         * modules/sys_socket-tests: New file.
4494         * tests/test-sys_socket.c: New file.
4495
4496         * modules/sys_select-tests: New file.
4497         * tests/test-sys_select.c: New file.
4498
4499         * modules/string-tests: New file.
4500         * tests/test-string.c: New file.
4501
4502         * modules/stdbool-tests: New file.
4503         * tests/test-stdbool.c: New file.
4504
4505         * modules/netinet_in-tests: New file.
4506         * tests/test-netinet_in.c: New file.
4507
4508         * modules/inttypes-tests: New file.
4509         * tests/test-inttypes.c: New file.
4510
4511         * modules/fcntl-tests: New file.
4512         * tests/test-fcntl.c: New file.
4513
4514         * modules/byteswap-tests: New file.
4515         * tests/test-byteswap.c: New file.
4516
4517         * modules/arpa_inet-tests: New file.
4518         * tests/test-arpa_inet.c: New file.
4519
4520 2007-02-17  Bruno Haible  <bruno@clisp.org>
4521
4522         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
4523         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
4524         if the corresponding module is not enabled. Emit link warnings if
4525         the function is used nevertheless.
4526         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
4527         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
4528         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
4529         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
4530         * modules/inttypes (Depends-on): Add link-warning.
4531         (Makefile.am): Copy the contents of build-aux/link-warning.h into
4532         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
4533         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
4534         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
4535         * modules/imaxdiv (configure.ac): Likewise.
4536         * modules/strtoimax (configure.ac): Likewise.
4537         * modules/strtoumax (configure.ac): Likewise.
4538
4539 2007-02-17  Bruno Haible  <bruno@clisp.org>
4540
4541         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
4542         gl_STRING_MODULE_INDICATOR_DEFAULTS.
4543         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
4544         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
4545
4546 2007-02-17  Bruno Haible  <bruno@clisp.org>
4547
4548         * modules/link-warning: New file.
4549         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
4550         * lib/string_.h (GL_LINK_WARNING): Remove definition.
4551         * modules/string (Depends-on): Add link-warning.
4552         (Makefile.am): Copy the contents of build-aux/link-warning.h into
4553         string.h.
4554         * MODULES.html.sh (Support for building libraries and executables): Add
4555         link-warning.
4556
4557 2007-02-17  Bruno Haible  <bruno@clisp.org>
4558
4559         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
4560         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
4561         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
4562         long lines.
4563
4564 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
4565             Bruno Haible  <bruno@clisp.org>
4566
4567         * modules/tmpfile: New file.
4568         * lib/tmpfile.c: New file.
4569         * m4/tmpfile.m4: New file.
4570         * MODULES.html.sh (func_all_modules): New section "Input/output".
4571
4572 2007-02-15  Bruno Haible  <bruno@clisp.org>
4573
4574         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
4575         (supports_delete_on_close): New function.
4576         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
4577
4578 2007-02-14  Bruno Haible  <bruno@clisp.org>
4579
4580         * modules/mbspcasecmp-tests: New file.
4581         * tests/test-mbspcasecmp.sh: New file.
4582         * tests/test-mbspcasecmp.c: New file.
4583
4584         New module mbspcasecmp.
4585         * modules/mbspcasecmp: New file.
4586         * lib/mbspcasecmp.c: New file.
4587         * lib/string_.h (strncasecmp): Change warning message.
4588         (mbspcasecmp): New declaration.
4589         * m4/mbspcasecmp.m4: New file.
4590         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4591         GNULIB_MBSPCASECMP.
4592         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
4593         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
4594
4595 2007-02-14  Bruno Haible  <bruno@clisp.org>
4596
4597         * modules/mbsncasecmp-tests: New file.
4598         * tests/test-mbsncasecmp.sh: New file.
4599         * tests/test-mbsncasecmp.c: New file.
4600
4601         New module mbsncasecmp.
4602         * modules/mbsncasecmp: New file.
4603         * lib/mbsncasecmp.c: New file.
4604         * lib/string_.h (mbsncasecmp): New declaration.
4605         * m4/mbsncasecmp.m4: New file.
4606         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4607         GNULIB_MBSNCASECMP.
4608         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
4609         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
4610
4611 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
4612
4613         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
4614         Verify that it doesn't overlap with our flags.
4615         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
4616         do not have the desired effect in multibyte locales; instead, use
4617         mbscasecmp.
4618         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
4619         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
4620         we don't require GNU fnmatch ourselves (if our users require it, they
4621         should do so explicitly).
4622
4623         Fix regex code so it doesn't rely on strcasecmp.
4624         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
4625         Otherwise, include gnulib's langinfo.h.
4626         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
4627         undesirable behavior in non-C locales.  Instead, rely on localecharset.
4628         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
4629         * modules/regex (FILES): Remove m4/codeset.m4.
4630         (Depends-on): Add localcharset.  Remove strcase.
4631
4632 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4633
4634         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
4635         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
4636
4637 2007-02-13  Bruno Haible  <bruno@clisp.org>
4638
4639         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
4640         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4641
4642 2007-02-12  Bruno Haible  <bruno@clisp.org>
4643
4644         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4645         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
4646         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
4647         time warning rather than a link error.
4648
4649 2007-02-12  Bruno Haible  <bruno@clisp.org>
4650
4651         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
4652         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
4653         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4654
4655 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4656
4657         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
4658         args, not 2.
4659
4660 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4661
4662         New module 'time', so that apps can include <time.h> as per
4663         POSIX and GNU instead of separate include files like time_r.h
4664         and timegm.h.  This implementation tries out a simpler approach
4665         for replacing decls in standard include files (as compared to
4666         the string module), somewhat as an experiment.
4667
4668         * config/srclist.txt: Comment out mktime.c for now.
4669         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
4670         since it doesn't apply any more.  Use generic wording instead.
4671         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
4672         'time'.
4673         * lib/time_.h, m4/time_h.m4, modules/time: New files.
4674         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
4675         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
4676         Don't include <sys/types.h>; no longer needed since we assume C89.
4677         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
4678         * lib/strftime.c: Likewise.
4679         * lib/time_r.c: Likewise.
4680         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
4681         * lib/nanosleep.c: Include <time.h> first, to check interface.
4682         * lib/strptime.c: Likewise.
4683         * lib/time_r.c: Likewise.
4684         * lib/timegm.c: Likewise.
4685         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
4686         needed.
4687         * lib/timegm.c: Don't include timegm.h; no longer needed.
4688         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
4689         time.h now handles any problems in that area.
4690         (struct timespec, nanosleep): Remove; time.h now arranges for these.
4691         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
4692         that time.h defines struct timespec.
4693         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
4694         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
4695         handles that.
4696         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
4697         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
4698         needed.  Set REPLACE_LOCALTIME.
4699         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
4700         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
4701         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
4702         nanosleep; time_h.m4 now does that.  Don't require
4703         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
4704         module handles this now.
4705         * modules/getdate (Depends-on): Remove timespec.  Add time.
4706         * modules/nanosleep (Depends-on): Likewise.
4707         * modules/stat-time (Depends-on): Likewise.
4708         * modules/nanosleep (Include): Include time.h, not timespec.h.
4709         * modules/strptime (Files): Remove lib/strptime.h.
4710         (Depends-on): Add extensions, time.
4711         (Include): Include time.h, not strptime.h.
4712         * modules/time_r (Files): Remove lib/time_r.h.
4713         (Depends-on): Add time.
4714         (Include): Include time.h, not time_r.h.
4715         * modules/timegm: Likewise.
4716         * modules/timespec (Description): Now does timespec-related decls
4717         of our own, instead of struct timespec itself.
4718         (Depends-on): Add time; remove extensions.
4719         (Maintainer): Add self.
4720         * modules/utimecmp (Depends-on): Add time; remove timespec.
4721         * modules/utimens (Depends-on): Likewise.
4722         * modules/xnanosleep (Depends-on): Likewise.
4723
4724 2007-02-11  Bruno Haible  <bruno@clisp.org>
4725
4726         * lib/c-strstr.c: Include allocsa.h.
4727         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4728         * lib/c-strcasestr.c: Include allocsa.h.
4729         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4730         * lib/strcasestr.c: Include allocsa.h.
4731         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
4732         * lib/mbsstr.c: Include allocsa.h.
4733         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4734         allocsa/freesa instead of malloc/free.
4735         * lib/mbscasestr.c: Include allocsa.h.
4736         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
4737         allocsa/freesa instead of malloc/free.
4738         * modules/c-strstr (Depends-on): Add allocsa.
4739         * modules/c-strcasestr (Depends-on): Likewise.
4740         * modules/strcasestr (Depends-on): Likewise.
4741         * modules/mbsstr (Depends-on): Likewise.
4742         * modules/mbscasestr (Depends-on): Likewise.
4743
4744 2007-02-11  Bruno Haible  <bruno@clisp.org>
4745
4746         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
4747
4748         * modules/mbsspn-tests: New file.
4749         * tests/test-mbsspn.sh: New file.
4750         * tests/test-mbsspn.c: New file.
4751
4752 2007-02-11  Bruno Haible  <bruno@clisp.org>
4753
4754         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
4755
4756         * modules/mbspbrk-tests: New file.
4757         * tests/test-mbspbrk.sh: New file.
4758         * tests/test-mbspbrk.c: New file.
4759
4760 2007-02-11  Bruno Haible  <bruno@clisp.org>
4761
4762         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
4763         unneeded cast.
4764
4765         * modules/mbscspn-tests: New file.
4766         * tests/test-mbscspn.sh: New file.
4767         * tests/test-mbscspn.c: New file.
4768
4769 2007-02-11  Bruno Haible  <bruno@clisp.org>
4770
4771         * modules/mbscasecmp-tests: New file.
4772         * tests/test-mbscasecmp.sh: New file.
4773         * tests/test-mbscasecmp.c: New file.
4774
4775 2007-02-11  Bruno Haible  <bruno@clisp.org>
4776
4777         Ensure O(n) worst-case complexity of mbscasestr.
4778         * lib/mbscasestr.c: Include stdbool.h.
4779         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4780         functions.
4781         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
4782         the bookkeeping indicates that it's worth it.
4783         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
4784
4785         * modules/mbscasestr-tests: New file.
4786         * tests/test-mbscasestr1.c: New file.
4787         * tests/test-mbscasestr2.sh: New file.
4788         * tests/test-mbscasestr2.c: New file.
4789         * tests/test-mbscasestr3.sh: New file.
4790         * tests/test-mbscasestr3.c: New file.
4791         * tests/test-mbscasestr4.sh: New file.
4792         * tests/test-mbscasestr4.c: New file.
4793         * m4/locale-tr.m4: New file.
4794
4795 2007-02-11  Bruno Haible  <bruno@clisp.org>
4796
4797         Ensure O(n) worst-case complexity of mbsstr.
4798         * lib/mbsstr.c: Include stdbool.h.
4799         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
4800         functions.
4801         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
4802         bookkeeping indicates that it's worth it.
4803         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
4804
4805         * modules/mbsstr-tests: New file.
4806         * tests/test-mbsstr1.c: New file.
4807         * tests/test-mbsstr2.sh: New file.
4808         * tests/test-mbsstr2.c: New file.
4809         * tests/test-mbsstr3.sh: New file.
4810         * tests/test-mbsstr3.c: New file.
4811         * m4/locale-fr.m4: New file.
4812
4813 2007-02-11  Bruno Haible  <bruno@clisp.org>
4814
4815         * lib/mbsrchr.c (mbsrchr): Fix bug.
4816
4817         * modules/mbsrchr-tests: New file.
4818         * tests/test-mbsrchr.sh: New file.
4819         * tests/test-mbsrchr.c: New file.
4820
4821 2007-02-11  Bruno Haible  <bruno@clisp.org>
4822
4823         * lib/mbschr.c (mbschr): Fix bug.
4824
4825         * modules/mbschr-tests: New file.
4826         * tests/test-mbschr.sh: New file.
4827         * tests/test-mbschr.c: New file.
4828         * m4/locale-zh.m4: New file.
4829
4830 2007-02-11  Bruno Haible  <bruno@clisp.org>
4831
4832         Support for copying multibyte string iterators.
4833         * lib/mbiter.h: Include <string.h>.
4834         (mbiter_multi_copy): New function.
4835         (mbi_copy): New macro.
4836         * lib/mbuiter.h: Include <string.h>.
4837         (mbuiter_multi_copy): New function.
4838         (mbui_copy): New macro.
4839
4840 2007-02-11  Bruno Haible  <bruno@clisp.org>
4841
4842         New module mbslen.
4843         * modules/mbslen: New file.
4844         * lib/mbslen.c: New file.
4845         * lib/string_.h (mbslen): New declaration.
4846         * m4/mbslen.m4: New file.
4847         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4848         GNULIB_MBSLEN.
4849         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
4850         * MODULES.html.sh (Internationalization functions): Add mbslen.
4851
4852 2007-02-11  Bruno Haible  <bruno@clisp.org>
4853
4854         Ensure O(n) worst-case complexity of strcasestr substitute.
4855         * lib/strcasestr.c: Include stdbool.h.
4856         (knuth_morris_pratt): New function.
4857         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4858         bookkeeping indicates that it's worth it.
4859         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
4860
4861         * modules/strcasestr-tests: New file.
4862         * tests/test-strcasestr.c: New file.
4863
4864 2007-02-11  Bruno Haible  <bruno@clisp.org>
4865
4866         Ensure O(n) worst-case complexity of c_strcasestr.
4867         * lib/c-strcasestr.c: Include stdbool.h, string.h.
4868         (knuth_morris_pratt): New function.
4869         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
4870         the bookkeeping indicates that it's worth it.
4871         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
4872
4873         * modules/c-strcasestr-tests: New file.
4874         * tests/test-c-strcasestr.c: New file.
4875
4876 2007-02-11  Bruno Haible  <bruno@clisp.org>
4877
4878         Ensure O(n) worst-case complexity of c_strstr.
4879         * lib/c-strstr.c: Include stdbool.h, string.h.
4880         (knuth_morris_pratt): New function.
4881         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
4882         bookkeeping indicates that it's worth it.
4883         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
4884
4885         * lib/c-strstr.c: Complete rewrite for maintainability.
4886
4887         * modules/c-strstr-tests: New file.
4888         * tests/test-c-strstr.c: New file.
4889
4890 2007-02-11  Bruno Haible  <bruno@clisp.org>
4891
4892         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
4893         5.2.1 and earlier, whereby \055 was treated just like the range
4894         delimiter '-'.
4895         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
4896
4897 2007-02-08  Bruno Haible  <bruno@clisp.org>
4898
4899         * modules/regex (Depends-on): Add stdbool.
4900         Reported by Dalibor Topic <robilad@kaffe.org>.
4901
4902 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
4903
4904         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
4905         Prefer returning from main to exiting from it.
4906         Remove unnecessary parens after sizeof.
4907
4908 2007-02-05  Bruno Haible  <bruno@clisp.org>
4909
4910         New module mbssep.
4911         * modules/mbssep: New file.
4912         * lib/mbssep.c: New file.
4913         * lib/string_.h (strsep): Add a conditional link warning.
4914         (mbssep): New declaration.
4915         * m4/mbssep.m4: New file.
4916         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4917         GNULIB_MBSSEP.
4918         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
4919         * MODULES.html.sh (Internationalization functions): Add mbssep.
4920
4921 2007-02-05  Bruno Haible  <bruno@clisp.org>
4922
4923         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
4924         Optimize search in case of 1 delimiter.
4925
4926 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4927
4928         * lib/acl.h: Include sys/types.h before sys/acl.h.
4929
4930 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4931
4932         Merge upstream fix for glibc bugzilla #3957:
4933
4934         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
4935
4936         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
4937         bit for RE_HAT_LISTS_NOT_NEWLINE.
4938         (build_charclass_op): Remove bogus comment.
4939
4940 2007-02-05  Simon Josefsson  <simon@josefsson.org>
4941
4942         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
4943
4944 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4945
4946         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
4947         * lib/memmem.c [!defined _LIBC]: Include config.h.
4948
4949 2007-02-04  Bruno Haible  <bruno@clisp.org>
4950
4951         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
4952         warning message.
4953
4954 2007-02-04  Bruno Haible  <bruno@clisp.org>
4955
4956         New module mbstok_r.
4957         * modules/mbstok_r: New file.
4958         * lib/mbstok_r.c: New file.
4959         * lib/string_.h (strtok_r): Change argument names to match the
4960         comments. Add a conditional link warning.
4961         (mbstok_r): New declaration.
4962         * m4/mbstok_r.m4: New file.
4963         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4964         GNULIB_MBSTOK_R.
4965         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
4966         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
4967
4968 2007-02-04  Bruno Haible  <bruno@clisp.org>
4969
4970         New module mbsspn.
4971         * modules/mbsspn: New file.
4972         * lib/mbsspn.c: New file.
4973         * lib/string_.h (strspn): Add a conditional link warning.
4974         (mbsspn): New declaration.
4975         * m4/mbsspn.m4: New file.
4976         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4977         GNULIB_MBSSPN.
4978         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
4979         * MODULES.html.sh (Internationalization functions): Add mbsspn.
4980
4981 2007-02-04  Bruno Haible  <bruno@clisp.org>
4982
4983         New module mbspbrk.
4984         * modules/mbspbrk: New file.
4985         * lib/mbspbrk.c: New file.
4986         * lib/string_.h (strpbrk): Add a conditional link warning.
4987         (mbspbrk): New declaration.
4988         * m4/mbspbrk.m4: New file.
4989         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4990         GNULIB_MBSPBRK.
4991         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
4992         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
4993
4994 2007-02-04  Bruno Haible  <bruno@clisp.org>
4995
4996         New module mbscspn.
4997         * modules/mbscspn: New file.
4998         * lib/mbscspn.c: New file.
4999         * lib/string_.h (strcspn): Add a conditional link warning.
5000         (mbscspn): New declaration.
5001         * m4/mbscspn.m4: New file.
5002         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5003         GNULIB_MBSCSPN.
5004         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
5005         * MODULES.html.sh (Internationalization functions): Add mbscspn.
5006
5007 2007-02-04  Bruno Haible  <bruno@clisp.org>
5008
5009         New module mbscasestr, reduced goal of strcasestr.
5010         * modules/mbscasestr: New file.
5011         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
5012         (mbscasestr): Renamed from strcasestr.
5013         * lib/strcasestr.c: Don't include mbuiter.h.
5014         (strcasestr): Remove support for multibyte locales.
5015         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
5016         Change the conditional link warning.
5017         (mbscasestr): New declaration.
5018         * m4/mbscasestr.m4: New file.
5019         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
5020         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
5021         REPLACE_STRCASESTR.
5022         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
5023         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
5024         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
5025         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
5026         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
5027         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
5028         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
5029         (Depends-on): Remove mbuiter.
5030         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
5031
5032 2007-02-04  Bruno Haible  <bruno@clisp.org>
5033
5034         Simplify handling of strncasecmp.
5035         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
5036         the conditional link warning.
5037         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
5038         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
5039         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
5040         * modules/strcase (configure.ac): Don't invoke
5041         gl_STRING_MODULE_INDICATOR.
5042         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
5043
5044 2007-02-04  Bruno Haible  <bruno@clisp.org>
5045
5046         New module mbscasecmp, reduced goal of strcasecmp.
5047         * modules/mbscasecmp: New file.
5048         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
5049         (mbscasecmp): Renamed from strcasecmp.
5050         * lib/strcasecmp.c: Don't include mbuiter.h.
5051         (strcasecmp): Remove support for multibyte locales.
5052         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
5053         Change the conditional link warning.
5054         (mbscasecmp): New declaration.
5055         * m4/mbscasecmp.m4: New file.
5056         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
5057         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
5058         REPLACE_STRCASECMP.
5059         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
5060         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5061         GNULIB_MBSCASECMP.
5062         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
5063         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
5064         * modules/strcase (Files): Remove m4/mbrtowc.m4.
5065         (Depends-on): Remove mbuiter.
5066         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
5067
5068 2007-02-04  Bruno Haible  <bruno@clisp.org>
5069
5070         New module mbsstr. Remove module strstr.
5071         * modules/mbsstr: New file.
5072         * modules/strstr: Remove file.
5073         * lib/mbsstr.c: Renamed from lib/strstr.c.
5074         (mbsstr): Renamed from strstr.
5075         * lib/string_.h (strstr): Remove declaration. Change the conditional
5076         link warning.
5077         (mbsstr): New declaration.
5078         * m4/mbsstr.m4: New file.
5079         * m4/strstr.m4: Remove file.
5080         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
5081         REPLACE_STRSTR.
5082         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
5083         Don't initialize GNULIB_STRSTR.
5084         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
5085         substitute GNULIB_STRSTR and REPLACE_STRSTR.
5086         * MODULES.html.sh (Internationalization functions): Add mbsstr.
5087         (Support for systems lacking ANSI C 89): Remove strstr.
5088
5089 2007-02-04  Bruno Haible  <bruno@clisp.org>
5090
5091         New module mbsrchr.
5092         * modules/mbsrchr: New file.
5093         * lib/mbsrchr.c: New file.
5094         * lib/string_.h (strrchr): Add a conditional link warning.
5095         (mbsrchr): New declaration.
5096         * m4/mbsrchr.m4: New file.
5097         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5098         GNULIB_MBSRCHR.
5099         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
5100         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
5101
5102 2007-02-04  Bruno Haible  <bruno@clisp.org>
5103
5104         New module mbschr.
5105         * modules/mbschr: New file.
5106         * lib/mbschr.c: New file.
5107         * lib/string_.h (strchr): Add a conditional link warning.
5108         (mbschr): New declaration.
5109         * m4/mbschr.m4: New file.
5110         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5111         GNULIB_MBSCHR.
5112         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
5113         * MODULES.html.sh (Internationalization functions): Add mbschr.
5114
5115 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
5116
5117         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
5118
5119         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
5120
5121 2007-02-04  Bruno Haible  <bruno@clisp.org>
5122
5123         New module description section 'configure.ac-early'.
5124         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
5125         (func_get_autoconf_early_snippet): New function.
5126         (func_import, func_create_testdir): Use it. Remove special cases for
5127         modules 'extensions' and 'lock'.
5128         * modules/extensions (configure.ac-early): Require
5129         gl_USE_SYSTEM_EXTENSIONS.
5130         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
5131
5132 2007-02-04  Bruno Haible  <bruno@clisp.org>
5133
5134         Make use of gcj-4.3's -fsource and -ftarget option.
5135         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
5136         and if so try the options -fsource and -ftarget.
5137         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
5138         source_version, ftarget_option, target_version arguments.
5139         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
5140         (is_envjavac_oldgcj_14_14_usable): Renamed from
5141         is_envjavac_gcj_14_14_usable.
5142         (is_envjavac_oldgcj_14_13_usable): Renamed from
5143         is_envjavac_gcj_14_13_usable.
5144         (is_gcj_present): Update.
5145         (is_gcj_43, is_gcj43_usable): New functions.
5146         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
5147         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
5148         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
5149         try the options -fsource and -ftarget.
5150
5151 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
5152
5153         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
5154         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
5155         larger value.
5156
5157 2007-02-03  Jim Meyering  <jim@meyering.net>
5158
5159         Give tools a better chance to allocate space for very large buffers.
5160         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
5161
5162         Make pwd and readlink work also when run with an unreadable parent dir
5163         on systems with openat support.
5164         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
5165         provided getcwd function, even when we have openat support.
5166         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
5167
5168 2007-02-02  Bruno Haible  <bruno@clisp.org>
5169
5170         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
5171         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
5172         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
5173         portability problems if one of these functions is only used on specific
5174         platforms.
5175         Reported by Paul Eggert.
5176
5177 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
5178
5179         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
5180         is causing more trouble than it's curing.
5181         * lib/regex_internal.h (__mempcpy): Remove.
5182         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
5183         (and make the code a tad smaller to boot).
5184         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
5185
5186 2007-02-02  Jim Meyering  <jim@meyering.net>
5187
5188         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
5189         section, not in the Makefile.am: one.
5190
5191 2007-02-02  Eric Blake  <ebb9@byu.net>
5192
5193         * lib/strchrnul.c: Always include config.h first.
5194
5195         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
5196         gnulib strstr is not necessary here.
5197
5198 2007-02-02  Simon Josefsson  <simon@josefsson.org>
5199
5200         * m4/socklen.m4: Fix typo.
5201
5202 2007-02-02  Eric Blake  <ebb9@byu.net>
5203
5204         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
5205         * modules/netinet_in (Makefile.am): Likewise.
5206
5207 2007-02-01  Bruno Haible  <bruno@clisp.org>
5208
5209         * lib/string_.h (GL_LINK_WARNING): New macro.
5210         (strcasecmp, strstr, strcasestr): If provided by the system,
5211         conditionally define as a macro that leads to a warning instead of to
5212         an error.
5213         (strncasecmp): Conditionally define as a macro that leads to a warning.
5214
5215 2007-02-01  Karl Berry  <karl@gnu.org>
5216
5217         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
5218
5219 2007-02-01  Bruno Haible  <bruno@clisp.org>
5220
5221         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
5222         renamings.
5223
5224 2007-02-01  Eric Blake  <ebb9@byu.net>
5225
5226         * modules/regex (Depends-on): Revert dependence on mempcpy.
5227         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
5228         module's definition of mempcpy.
5229         Reported by Paul Eggert.
5230
5231 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
5232
5233         * lib/string_.h: If the gnulib module XYZ is not present, undefine
5234         the symbol XYZ before redefining it.  This fixes a problem with
5235         programs that don't use XYZ, when compiled on systems that define
5236         XYZ to something else.
5237
5238 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
5239
5240         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
5241         occurs when "mkdir -m foo" creates a setgid directory that is (1)
5242         writeable to group or other and (2) is intended to have a special
5243         mode bit that is set or cleared.  In such a case, the directory
5244         should be neither group- nor other-writeable until the special
5245         mode bits are right.
5246
5247 2007-01-31  Eric Blake  <ebb9@byu.net>
5248
5249         * modules/mountlist (Depends-on): Add strstr.
5250
5251         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
5252         bug.
5253         * modules/string (Makefile.am): Remove redundant replacement.
5254         * modules/regex (Depends-on): Add mempcpy.
5255
5256 2007-01-31  Bruno Haible  <bruno@clisp.org>
5257
5258         New module description field 'Link'.
5259         * gnulib-tool (func_usage): Document --extract-link-directive.
5260         (sed_extract_prog): Recognize 'Link' directive.
5261         (func_get_link_directive): New function.
5262         (func_import): Show summary of link directives.
5263         Handle --extract-link-directive option.
5264         * modules/acl (Link): New section.
5265         * modules/clock-time (Link): New section.
5266         * modules/euidaccess (Link): New section.
5267         * modules/gettext (Link): New section.
5268         * modules/iconv (Link): New section.
5269         * modules/lock (Link): New section.
5270         * modules/nanosleep (Link): New section.
5271         * modules/readline (Link): New section.
5272
5273 2007-01-27  Bruno Haible  <bruno@clisp.org>
5274
5275         Enforce the use of gnulib modules for unportable <string.h> functions.
5276         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
5277         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
5278         (gl_HEADER_STRING_H_BODY): Require it.
5279         * lib/string_.h: If the gnulib module XYZ is not present, redefine
5280         the symbol XYZ to one that gives a link error.
5281         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
5282         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
5283         * modules/mempcpy (configure.ac): Likewise.
5284         * modules/memrchr (configure.ac): Likewise.
5285         * modules/stpcpy (configure.ac): Likewise.
5286         * modules/stpncpy (configure.ac): Likewise.
5287         * modules/strcase (configure.ac): Likewise.
5288         * modules/strcasestr (configure.ac): Likewise.
5289         * modules/strchrnul (configure.ac): Likewise.
5290         * modules/strdup (configure.ac): Likewise.
5291         * modules/strndup (configure.ac): Likewise.
5292         * modules/strnlen (configure.ac): Likewise.
5293         * modules/strpbrk (configure.ac): Likewise.
5294         * modules/strsep (configure.ac): Likewise.
5295         * modules/strstr (configure.ac): Likewise.
5296         * modules/strtok_r (configure.ac): Likewise.
5297
5298 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
5299
5300         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
5301
5302 2007-01-30  Jim Meyering  <jim@meyering.net>
5303
5304         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
5305
5306 2007-01-29  Bruno Haible  <bruno@clisp.org>
5307
5308         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
5309         * lib/execute.c: Likewise.
5310         * lib/pipe.c: Likewise.
5311         * lib/printf-args.h: Likewise.
5312         * lib/printf-args.c: Likewise.
5313         * lib/printf-parse.c: Likewise.
5314         * lib/vasnprintf.c: Likewise.
5315
5316 2007-01-29  Eric Blake  <ebb9@byu.net>
5317
5318         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
5319         declaration.
5320
5321 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
5322
5323         * lib/strptime.h (strptime): Use 'restrict' for args where
5324         POSIX requires this.
5325         * lib/strptime.c (strptime): Likewise.
5326         Change license notice from LGPL to GPL, since gnulib-tool will
5327         change this as needed.
5328         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
5329         defined.
5330         Include "strptime.h" first, to check interface.
5331         Do not #undef _LIBC and _NL_CURRENT.
5332         Do not include <stdlib.h>; no longer needed.
5333         Include "time_r.h" and declare ptime_locale_status
5334         only if _LIBC is not defined.
5335         (__P): Remove unused macro.
5336         (match_string): Bring back glibc version, but use it only if _LIBC
5337         is defined.
5338         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
5339         Remove unnecessary assertion and abort() call.
5340         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
5341         * m4/strptime.m4: Fix serial number comment.
5342         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
5343         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
5344         (Depends-on): Add time_r.
5345
5346 2007-01-29  Bruno Haible  <bruno@clisp.org>
5347
5348         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
5349         strptime.
5350         * modules/strptime (Depends-on): Add stdbool.
5351         * lib/strptime.h: Include <time.h> always. Add comments.
5352
5353 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
5354
5355         * modules/strptime: New file.
5356         * lib/strptime.h: New file.
5357         * lib/strptime.c: New file.
5358         * m4/strptime.m4: New file.
5359
5360 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
5361
5362         * MODULES.html.sh: New module mpsort.
5363         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
5364
5365         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
5366         a circularity problem with HP-UX ia64 reported by Bob Proulx in
5367         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
5368         All uses changed.
5369         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
5370         All uses changed.
5371         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
5372         to _Restrict_.
5373         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
5374         the parameter matches the prototype.
5375
5376 2007-01-28  Jim Meyering  <jim@meyering.net>
5377
5378         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
5379         sys/time.h here, reverting that part of the previous patch:
5380         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
5381
5382 2007-01-28  Bruno Haible  <bruno@clisp.org>
5383
5384         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
5385         value of $(SYS_TIME_H).
5386         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
5387         remove it conditionally, too. [added by Jim Meyering]
5388         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
5389         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
5390         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
5391         GETTIMEOFDAY_REPLACEMENT to 1.
5392
5393 2007-01-28  Bruno Haible  <bruno@clisp.org>
5394
5395         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
5396         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
5397         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
5398         Set UNISTD_H instead of UNISTD_H2.
5399         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
5400
5401 2007-01-28  Bruno Haible  <bruno@clisp.org>
5402
5403         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
5404         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
5405
5406 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5407
5408         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
5409         (func_create_testdir): Ensure C locale for `grep' and `tr'
5410         character ranges.
5411         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
5412         ACLOCAL_AMFLAGS parsing state machine.
5413
5414 2007-01-27  Bruno Haible  <bruno@clisp.org>
5415
5416         * modules/unistr/base: Update.
5417
5418 2007-01-27  Bruno Haible  <bruno@clisp.org>
5419
5420         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
5421         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
5422         * modules/unistr/u32-mbtouc-unsafe: Renamed from
5423         modules/unistr/u32-mbtouc.
5424         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
5425         * lib/unistr.h: Update.
5426         * lib/linebreak.c: Update.
5427         * modules/unistr/u32-mbtouc: Renamed from
5428         modules/unistr/u32-mbtouc-safe.
5429         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
5430         * lib/unistr.h: Update.
5431         * lib/unistr/u32-to-u8.c: Update.
5432         * lib/unistr/u32-to-u16.c: Update.
5433
5434 2007-01-27  Bruno Haible  <bruno@clisp.org>
5435
5436         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
5437         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
5438         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
5439         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
5440         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
5441         * modules/unistr/u16-mbtouc-unsafe: Renamed from
5442         modules/unistr/u16-mbtouc.
5443         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
5444         * lib/unistr.h: Update.
5445         * lib/linebreak.c: Update.
5446         * modules/linebreak: Update.
5447         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
5448         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
5449         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
5450         * modules/unistr/u16-mbtouc: Renamed from
5451         modules/unistr/u16-mbtouc-safe.
5452         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
5453         * lib/unistr.h: Update.
5454         * lib/unistr/u16-to-u8.c: Update.
5455         * modules/unistr/u16-to-u8: Update.
5456         * lib/unistr/u16-to-u32.c: Update.
5457         * modules/unistr/u16-to-u32: Update.
5458
5459 2007-01-27  Bruno Haible  <bruno@clisp.org>
5460
5461         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
5462         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
5463         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
5464         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
5465         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
5466         * modules/unistr/u8-mbtouc-unsafe: Renamed from
5467         modules/unistr/u8-mbtouc.
5468         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
5469         * lib/unistr.h: Update.
5470         * lib/striconveh.c: Update.
5471         * modules/striconveh: Update.
5472         * lib/linebreak.c: Update.
5473         * modules/linebreak: Update.
5474         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
5475         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
5476         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
5477         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
5478         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
5479         * lib/unistr.h: Update.
5480         * lib/striconveh.c: Update.
5481         * modules/striconveh: Update.
5482         * lib/unistr/u8-to-u16.c: Update.
5483         * modules/unistr/u8-to-u16: Update.
5484         * lib/unistr/u8-to-u32.c: Update.
5485         * modules/unistr/u8-to-u32: Update.
5486
5487 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5488
5489         Sync from Libtool.
5490         * lib/argz.c: Do not include strings.h nor memory.h, include
5491         string.h unconditionally.  Patch by Simon Josefsson.
5492
5493 2007-01-27  Bruno Haible  <bruno@clisp.org>
5494
5495         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
5496         from gl_HEADER_STRING_H_BODY.
5497         (gl_HEADER_STRING_H_BODY): Require it.
5498         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
5499         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
5500         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
5501         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
5502         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
5503         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
5504         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
5505         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
5506         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
5507         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
5508         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
5509         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
5510         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
5511         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
5512         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5513
5514 2007-01-27  Bruno Haible  <bruno@clisp.org>
5515
5516         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
5517         check_PROGRAMS into noinst_PROGRAMS.
5518         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
5519         check_PROGRAMS in this case.
5520         (func_import): Set for_test to false.
5521         (func_create_testdir): Set for_test to true.
5522
5523 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
5524             Bruno Haible  <bruno@clisp.org>
5525
5526         * modules/strcasestr (Files): Remove lib/strcasestr.h.
5527         (Depends-on): Add string.
5528         (Includes): Use <string.h> instead of strcasestr.h.
5529         * modules/string (Makefile.am): Also substitute the value of
5530         REPLACE_STRCASESTR.
5531         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
5532         assume strcasestr is declared in <string.h> not <strings.h>. Also
5533         set REPLACE_STRCASESTR.
5534         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
5535         REPLACE_STRCASESTR.
5536         * lib/strcasestr.h: Remove file.
5537         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
5538         * lib/string_.h (strcasestr): New declaration.
5539
5540 2007-01-27  Bruno Haible  <bruno@clisp.org>
5541
5542         * lib/string_.h: Use 'extern'.
5543
5544 2007-01-27  Jim Meyering  <jim@meyering.net>
5545
5546         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
5547         of set-but-not-used local, "q".
5548
5549         * lib/mempcpy.c: Include <config.h> before <string.h>.
5550         This fixes a compilation error on HP-UX, due to the system's
5551         "restrict"-using mempcpy prototype.
5552
5553 2007-01-26  Bruno Haible  <bruno@clisp.org>
5554
5555         Small optimization.
5556         * lib/javacomp.c: Include c-strstr.h.
5557          (is_envjavac_gcj): Use c_strstr instead of strstr.
5558         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
5559
5560 2007-01-26  Bruno Haible  <bruno@clisp.org>
5561
5562         * MODULES.html.sh (Unicode string functions): Add the new modules.
5563
5564         * modules/uniconv/u32-strconv-to-locale: New file.
5565         * lib/uniconv/u32-strconv-to-locale.c: New file.
5566
5567         * modules/uniconv/u16-strconv-to-locale: New file.
5568         * lib/uniconv/u16-strconv-to-locale.c: New file.
5569
5570         * modules/uniconv/u8-strconv-to-locale: New file.
5571         * lib/uniconv/u8-strconv-to-locale.c: New file.
5572
5573         * modules/uniconv/u32-strconv-from-locale: New file.
5574         * lib/uniconv/u32-strconv-from-locale.c: New file.
5575
5576         * modules/uniconv/u16-strconv-from-locale: New file.
5577         * lib/uniconv/u16-strconv-from-locale.c: New file.
5578
5579         * modules/uniconv/u8-strconv-from-locale: New file.
5580         * lib/uniconv/u8-strconv-from-locale.c: New file.
5581
5582         * modules/uniconv/u32-strconv-to-enc: New file.
5583         * lib/uniconv/u32-strconv-to-enc.c: New file.
5584         * modules/uniconv/u32-strconv-to-enc-tests: New file.
5585         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
5586
5587         * modules/uniconv/u16-strconv-to-enc: New file.
5588         * lib/uniconv/u16-strconv-to-enc.c: New file.
5589         * lib/uniconv/u-strconv-to-enc.h: New file.
5590         * modules/uniconv/u16-strconv-to-enc-tests: New file.
5591         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
5592
5593         * modules/uniconv/u8-strconv-to-enc: New file.
5594         * lib/uniconv/u8-strconv-to-enc.c: New file.
5595         * modules/uniconv/u8-strconv-to-enc-tests: New file.
5596         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
5597
5598         * modules/uniconv/u32-strconv-from-enc: New file.
5599         * lib/uniconv/u32-strconv-from-enc.c: New file.
5600         * modules/uniconv/u32-strconv-from-enc-tests: New file.
5601         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
5602
5603         * modules/uniconv/u16-strconv-from-enc: New file.
5604         * lib/uniconv/u16-strconv-from-enc.c: New file.
5605         * modules/uniconv/u16-strconv-from-enc-tests: New file.
5606         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
5607
5608         * modules/uniconv/u8-strconv-from-enc: New file.
5609         * lib/uniconv/u8-strconv-from-enc.c: New file.
5610         * lib/uniconv/u-strconv-from-enc.h: New file.
5611         * modules/uniconv/u8-strconv-from-enc-tests: New file.
5612         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
5613
5614         * modules/uniconv/u32-conv-from-enc: New file.
5615         * lib/uniconv/u32-conv-from-enc.c: New file.
5616         * modules/uniconv/u32-conv-from-enc-tests: New file.
5617         * tests/uniconv/test-u32-conv-from-enc.c: New file.
5618
5619         * modules/uniconv/u16-conv-from-enc: New file.
5620         * lib/uniconv/u16-conv-from-enc.c: New file.
5621         * lib/uniconv/u-conv-from-enc.h: New file.
5622         * modules/uniconv/u16-conv-from-enc-tests: New file.
5623         * tests/uniconv/test-u16-conv-from-enc.c: New file.
5624
5625         * modules/uniconv/u8-conv-from-enc: New file.
5626         * lib/uniconv/u8-conv-from-enc.c: New file.
5627         * modules/uniconv/u8-conv-from-enc-tests: New file.
5628         * tests/uniconv/test-u8-conv-from-enc.c: New file.
5629
5630         * modules/uniconv/base: New file.
5631         * lib/uniconv.h: New file.
5632
5633 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
5634
5635         * doc/gnulib-tool.texi (Initial import): Update to match current
5636         behavior with strdup module.
5637         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
5638         * lib/memmem.h: Remove; all uses removed.  This is now done
5639         by <string.h>.
5640         * lib/mempcpy.h: Likewise.
5641         * lib/memrchr.h: Likewise.
5642         * lib/stpcpy.h: Likewise.
5643         * lib/stpncpy.h: Likewise.
5644         * lib/strcase.h: Likewise.
5645         * lib/strchrnul.h: Likewise.
5646         * lib/strdup.h: Likewise.
5647         * lib/strndup.h: Likewise.
5648         * lib/strnlen.h: Likewise.
5649         * lib/strpbrk.h: Likewise.
5650         * lib/strsep.h: Likewise.
5651         * lib/strstr.h: Likewise.
5652         * lib/strtok_r.h: Likewise.
5653         * lib/string_.h: New file.
5654         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
5655         Rely on <string.h> instead.
5656         * lib/canon-host.c: Likewise.
5657         * lib/chdir-long.c: Likewise.
5658         * lib/concatpath.c: Likewise.
5659         * lib/exclude.c: Likewise.
5660         * lib/fchdir.c: Likewise.
5661         * lib/getaddrinfo.c: Likewise.
5662         * lib/getcwd.c: Likewise.
5663         * lib/getsubopt.c: Likewise.
5664         * lib/glob.c: Likewise.
5665         * lib/hard-locale.c: Likewise.
5666         * lib/iconvme.c: Likewise.
5667         * lib/javacomp.c: Likewise.
5668         * lib/mempcpy.c: Likewise.
5669         * lib/memrchr.c: Likewise.
5670         * lib/regex_internal.h: Likewise.
5671         * lib/stpncpy.c: Likewise.
5672         * lib/strcasecmp.c: Likewise.
5673         * lib/strchrnul.c: Likewise.
5674         * lib/strdup.c: Likewise.
5675         * lib/striconv.c: Likewise.
5676         * lib/striconveh.c: Likewise.
5677         * lib/striconveha.c: Likewise.
5678         * lib/strncasecmp.c: Likewise.
5679         * lib/strndup.c: Likewise.
5680         * lib/strnlen.c: Likewise.
5681         * lib/strsep.c: Likewise.
5682         * lib/strstr.c: Likewise.
5683         * lib/strtok_r.c: Likewise.
5684         * lib/userspec.c: Likewise.
5685         * lib/w32spawn.h: Likewise.
5686         * lib/xstrndup.c: Likewise.
5687         * lib/mountlist.c (strstr): Remove decl.
5688         * m4/string_h.m4: New file.
5689         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
5690         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
5691         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
5692         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
5693         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
5694         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
5695         Set REPLACE_STRCASECMP if necessary.
5696         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
5697         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
5698         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
5699         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
5700         HAVE_DECL_STRDUP if necessary.
5701         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
5702         since gl_FUNC_STRNDUP does that now.
5703         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
5704         Check for decl here...
5705         (gl_PREREQ_STRNLEN): ... not here.
5706         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
5707         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
5708         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
5709         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
5710         necessary.
5711         * modules/string: New file.
5712         * modules/memmem (Files): Remove special-purpose include file.
5713         (Depends-on): Add string.
5714         (Include): Include <string.h>, not the removed file.
5715         * modules/mempcpy: Likewise.
5716         * modules/memrchr: Likewise.
5717         * modules/stpcpy: Likewise.
5718         * modules/stpncpy: Likewise.
5719         * modules/strcase: Likewise.
5720         * modules/strchrnul: Likewise.
5721         * modules/strdup: Likewise.
5722         * modules/strndup: Likewise.
5723         * modules/strnlen: Likewise.
5724         * modules/strpbrk: Likewise.
5725         * modules/strsep: Likewise.
5726         * modules/strstr: Likewise.
5727         * modules/strtok_r: Likewise.
5728         * tests/test-dirname.c: Don't include "strdup.h", since
5729         <string.h> now suffices.
5730         * tests/test-memmem.c: Don't include "memmem.h", since
5731         <string.h> now suffices.
5732
5733 2007-01-25  Bruno Haible  <bruno@clisp.org>
5734
5735         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
5736         *resultp is 0.
5737
5738         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
5739         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
5740         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
5741         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
5742
5743         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
5744         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
5745         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
5746         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
5747         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
5748         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
5749
5750 2007-01-24  Bruno Haible  <bruno@clisp.org>
5751
5752         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
5753         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
5754         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
5755         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
5756         gl_FUNC_FTS_CORE.
5757         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
5758         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
5759         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
5760         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
5761         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
5762         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
5763         gl_FUNC_FCHOWNAT.
5764         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
5765         gl_FUNC_STRFTIME.
5766         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
5767         Reported by Ralf Wildenhues.
5768
5769 2007-01-24  Bruno Haible  <bruno@clisp.org>
5770
5771         Drop AC_REQUIRE calls that are redundant with the module dependencies.
5772         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
5773         gl_GETADDRINFO.
5774         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
5775         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
5776         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
5777
5778 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
5779
5780         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
5781         Don't use 'exit'; just return from 'main'.
5782         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
5783
5784         * lib/fnmatch_.h: Readjust white space and comments to match
5785         glibc, to avoid spurious diffs.
5786
5787 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5788
5789         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
5790         2004-12-01 change by Jakub Jelinek, since this code won't compile
5791         if !LIBC.  Problem reported by Bob Proulx.
5792
5793 2007-01-23  Bruno Haible  <bruno@clisp.org>
5794
5795         * lib/striconveh.c: Include c-strcaseeq.h.
5796         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
5797         * modules/striconveh (Depends-on): Add c-strcaseeq.
5798
5799 2007-01-23  Bruno Haible  <bruno@clisp.org>
5800
5801         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
5802
5803         * modules/c-strcaseeq: New file.
5804         * lib/c-strcaseeq.h: New file.
5805
5806         * modules/streq: New file.
5807         * lib/streq.h: New file.
5808
5809 2007-01-23  Bruno Haible  <bruno@clisp.org>
5810
5811         * modules/striconveha-tests: New file.
5812         * tests/test-striconveha.c: New file.
5813
5814         * lib/striconveha.h: Include <stdbool.h>.
5815         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
5816         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
5817         (mem_iconveha_notranslit): Renamed from mem_iconveha.
5818         (mem_iconveha): New function.
5819         (str_iconveha_notranslit): Renamed from str_iconveha.
5820         (str_iconveha): New function.
5821         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
5822         c-strcase.
5823
5824 2007-01-23  Bruno Haible  <bruno@clisp.org>
5825
5826         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
5827         encodings without forgiving before trying any encoding with handler.
5828         (str_iconveha): Try all encodings without forgiving before trying any
5829         encoding with handler.
5830
5831 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
5832
5833         Import the following changes from libc.
5834
5835         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
5836
5837         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
5838
5839         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
5840
5841         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
5842         normal_bracket label.
5843
5844         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
5845
5846         [BZ #361]
5847         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
5848         to normal_bracket after fetching the next character.
5849
5850 2007-01-22  Bruno Haible  <bruno@clisp.org>
5851
5852         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
5853         argument.
5854         * lib/striconveh.c (iconv_carefully_1): New function.
5855         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
5856         argument.
5857         (str_cd_iconveh): Update.
5858         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
5859         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
5860         * tests/test-striconveh.c (MAGIC): New macro.
5861         (new_offsets): New function.
5862         (main): Test call with and without offsets.
5863
5864 2007-01-22  Bruno Haible  <bruno@clisp.org>
5865
5866         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
5867         * modules/sys_select (Makefile.am): Likewise.
5868         * modules/sys_socket (Makefile.am): Likewise.
5869         * modules/sys_time (Makefile.am): Likewise.
5870
5871 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
5872
5873         * modules/gettimeofday (License): Change from GPL to LGPL, since
5874         gettimeofday is a library function.
5875
5876 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5877
5878         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
5879
5880 2007-01-21  Bruno Haible  <bruno@clisp.org>
5881
5882         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
5883
5884 2007-01-21  Bruno Haible  <bruno@clisp.org>
5885
5886         * modules/striconveha: New file.
5887         * lib/striconveha.h: New file.
5888         * lib/striconveha.c: New file.
5889         * MODULES.html.sh (Internationalization functions): Add striconveha.
5890         * lib/striconv.c (str_iconv): Optimize the case of an empty input
5891         string.
5892         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
5893
5894 2007-01-21  Bruno Haible  <bruno@clisp.org>
5895
5896         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
5897         * lib/striconveh.c (str_iconveh): Likewise.
5898
5899 2007-01-21  Bruno Haible  <bruno@clisp.org>
5900
5901         * lib/striconveh.h (mem_iconveh): New declaration.
5902         * lib/striconveh.c (mem_iconveh): New function.
5903         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
5904
5905 2007-01-21  Bruno Haible  <bruno@clisp.org>
5906
5907         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
5908
5909         * lib/striconveh.h (mem_cd_iconveh): Change specification.
5910         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
5911         original result buffer.
5912         (str_cd_iconveh): Update.
5913         * tests/test-striconveh.c (main): Update.
5914
5915         * lib/striconv.h (mem_cd_iconv): Change specification.
5916         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
5917         result buffer.
5918         (str_cd_iconv): Update.
5919         * tests/test-striconv.c (main): Update.
5920
5921 2007-01-21  Bruno Haible  <bruno@clisp.org>
5922
5923         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
5924
5925 2007-01-20  Jim Meyering  <jim@meyering.net>
5926
5927         * lib/userspec.c (parse_with_separator): If a user or group string
5928         starts with "+", skip the corresponding name-to-ID look-up, since
5929         such a look-up must fail: user and group names may not include "+".
5930
5931 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
5932
5933         * lib/poll.c: Include sys/time.h and time.h unconditionally,
5934         since we now assume the sys_time module.
5935         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
5936         check for sys/time.h; no longer needed.
5937         * modules/poll (Depends-on): Depend on sys_time.
5938
5939 2007-01-18  Bruno Haible  <bruno@clisp.org>
5940
5941         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
5942         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5943
5944         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
5945         gettimeofday.
5946
5947         * tests/test-gettimeofday.c: Include <time.h>.
5948         (dummy): Remove variable.
5949
5950         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
5951         gl_HEADER_SYS_TIME_H.
5952         (gl_HEADER_SYS_TIME_H): New macro.
5953
5954         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
5955         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5956         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
5957         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
5958         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5959         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
5960         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
5961         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5962         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
5963         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
5964         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5965
5966         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
5967         last change; it caused a compilation error when cross-compiling to
5968         Cygwin.
5969
5970 2007-01-18  Jim Meyering  <jim@meyering.net>
5971
5972         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
5973         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
5974         than the race-prone "test -d sys || mkdir sys".
5975         (configure.ac): Use AC_PROG_MKDIR_P.
5976         * modules/sys_select: Likewise.
5977         * modules/sys_socket: Likewise.
5978         * modules/sys_time: Likewise.
5979
5980 2007-01-18  Eric Blake  <ebb9@byu.net>
5981
5982         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
5983         replace gettimeofday.
5984         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
5985         name, to avoid infinite recursion.
5986
5987 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
5988
5989         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
5990         module sys_time.
5991         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
5992         assume timespec.h defines struct timeval.
5993         * lib/settime.c: Likewise.
5994         * lib/utimens.c: Likewise.
5995         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
5996         since we now assume the gettimeofday module.
5997         * lib/tempname.c (__gen_tempname): Likewise.
5998         * lib/gettimeofday.h: Remove.
5999         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
6000         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
6001         Include <time.h>, for 'time()'.
6002         (localtime_buffer_addr): Also use this workaround if
6003         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
6004         to simplify the uses.  All uses changed.
6005         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
6006         that #undef is inside {}, and 'const' follows type name consistently.
6007         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
6008         (gettimeofday): Do not use the maximum possible value for
6009         tv->tv_usec, since that might break usages other than ls.c.
6010         Instead, we'll leave ls.c alone.  This undoes today's patch
6011         by Bruno.  Add a compile-time warning for 1s-clock resolution;
6012         we've never observed the problem but might as well keep the
6013         canary.
6014         * lib/nanosleep.c: Include timespec.h first, for interface check.
6015         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
6016         now assume the sys_time module.
6017         * lib/tempname.c: Likewise.
6018         * lib/timespec.h: Likewise.
6019         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
6020         needed.
6021         * lib/strftime.c: Likewise.
6022         * lib/timespec.h: Likewise.
6023         * lib/posixtm.c: Include posixtm.h first, for interface check.
6024         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
6025         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
6026         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
6027         * lib/sys_time_.h: New file.
6028         * lib/timespec.h (struct timespec): Use long int, not long.
6029         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
6030         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
6031         Remove obsolescent call to AC_HEADER_TIME.
6032         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
6033         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6034         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
6035         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
6036         Likewise.
6037         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
6038         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
6039         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
6040         into the sys_time module.  Check for gettimeofday just once.
6041         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
6042         for gettimeofday signature to just check the signature.  Merely
6043         compile it, since linking doesn't test signature.  Improve test for
6044         whether gettimeofday.o is actually needed.
6045         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
6046         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
6047         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
6048         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6049         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
6050         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
6051         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
6052         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
6053         than worrying about sys/time.h.
6054         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
6055         Don't bother worrying about TIME_WITH_SYS_TIME.
6056         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
6057         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
6058         * m4/sys_time_h.m4: New file.
6059         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
6060         Don't include sys/time.h.  Return from main rather than exiting.
6061         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
6062         all uses changed.
6063         * modules/gethrxtime (Depends-on): Add sys_time.
6064         * modules/gettime (Depends-on): Likewise.
6065         * modules/gettimeofday (Depends-on): Likewise.
6066         * modules/nanosleep (Depends-on): Likewise.
6067         * modules/settime (Depends-on): Likewise.
6068         * modules/tempname (Depends-on): Likewise.
6069         * modules/utimens (Depends-on): Likewise.
6070         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
6071         (Include:) Change back to <sys/time.h>.
6072         (Maintainer:) Add self.
6073         * modules/sys_time: New file.
6074         * modules/tempname (Depends-on): Add gettimeofday.
6075         * tests/test-gettimeofday.c: Include <sys/time.h>
6076         rather than gettimeofday.h.
6077
6078 2007-01-17  Bruno Haible  <bruno@clisp.org>
6079
6080         * gnulib-tool (func_get_license): Revert last patch. Instead, let
6081         the license default to GPL.
6082         (func_create_testdir): Don't complain if a module is LGPL and its
6083         tests module depends on GPLed modules.
6084
6085 2007-01-17  Bruno Haible  <bruno@clisp.org>
6086
6087         * lib/gettimeofday.c (gettimeofday): Add code for the case
6088         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
6089         maximum possible value for tv->tv_usec, rather than the minimum one.
6090
6091 2005-10-08  Martin Lambers  <marlam@marlam.de>
6092 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
6093 2007-01-16  Bruno Haible  <bruno@clisp.org>
6094
6095         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
6096         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
6097         gl_FUNC_GETTIMEOFDAY.
6098         (Include): Add gettimeofday.h.
6099         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
6100         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
6101         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
6102         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
6103         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
6104         * lib/gettimeofday.h: New file.
6105         * lib/gettimeofday.c: Include <sys/timeb.h>.
6106         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
6107         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6108         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
6109         fall back on time().
6110
6111         * tests/test-gettimeofday.c: New file.
6112         * modules/gettimeofday-tests: New file.
6113
6114 2007-01-16  Eric Blake  <ebb9@byu.net>
6115
6116         * modules/fnmatch (Depends-on): Depend on wchar.
6117         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
6118         * m4/fnmatch.m4: Likewise.
6119         * modules/mbchar (Makefile.am): Assume <wchar.h>.
6120         * m4/mbchar.m4: Likewise.
6121         * modules/mbswidth (Depends-on): Depend on wchar.
6122         * lib/mbswidth.c: Assume <wchar.h>.
6123         * m4/mbswidth.m4: Likewise.
6124         * modules/quotearg (Depends-on): Depend on wchar.
6125         * lib/quotearg.c: Assume <wchar.h>.
6126         * m4/quotearg.m4: Likewise.
6127         * modules/regex (Depends-on): Depend on wchar.
6128         * lib/regex_internal.h: Assume <wchar.h>.
6129         * m4/regex.m4: Likewise.
6130         * modules/stdint (Depends-on): Depend on wchar.
6131         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
6132         * m4/stdint.m4: Likewise.
6133         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
6134         * modules/strftime (Depends-on): Depend on wchar.
6135         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
6136         * modules/strtol (Depends-on): Depend on wchar.
6137         * lib/strtol.c: Assume <wchar.h>.
6138         * modules/wcwidth (Depends-on): Depend on wchar.
6139         * lib/wcwidth.h: Assume <wchar.h>.
6140         * m4/wcwidth.m4: Likewise.
6141
6142 2007-01-16  Bruno Haible  <bruno@clisp.org>
6143
6144         * modules/csharpexec-script: New, created from...
6145         * modules/csharpexec: ... this.
6146
6147 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
6148
6149         * modules/javaexec-script: New, created from...
6150         * modules/javaexec: ... this.
6151
6152 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6153
6154         * modules/poll (Dependencies): Add sys_select.
6155
6156 2007-01-15  Jim Meyering  <jim@meyering.net>
6157
6158         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
6159         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
6160         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
6161         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
6162
6163 2007-01-15  Bruno Haible  <bruno@clisp.org>
6164
6165         * modules/striconveh: New file.
6166         * lib/striconveh.h: New file.
6167         * lib/striconveh.c: New file.
6168         * MODULES.html.sh (Internationalization functions): Add striconveh.
6169
6170         * modules/striconveh-tests: New file.
6171         * tests/test-striconveh.c: New file.
6172
6173 2007-01-15  Bruno Haible  <bruno@clisp.org>
6174
6175         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
6176         not from GNU libiconv or GNU libc.
6177
6178 2007-01-15  Bruno Haible  <bruno@clisp.org>
6179
6180         * doc/gnulib-intro.texi (Copyright): Explain the different license
6181         terms for module descriptions, autoconf macros, tests, documentation.
6182
6183 2007-01-14  Bruno Haible  <bruno@clisp.org>
6184
6185         * modules/striconv-tests: New file.
6186         * tests/test-striconv.c: New file.
6187
6188 2007-01-14  Bruno Haible  <bruno@clisp.org>
6189
6190         * modules/iconv-tests: New file.
6191         * tests/test-iconv.c: New file.
6192
6193 2007-01-14  Bruno Haible  <bruno@clisp.org>
6194
6195         * gnulib-tool (func_get_license): For test modules, use the license of
6196         the main module.
6197
6198 2007-01-14  Bruno Haible  <bruno@clisp.org>
6199
6200         * modules/iconv (Include): Clarify that <iconv.h> can only be included
6201         if iconv is found to exist.
6202
6203 2007-01-14  Bruno Haible  <bruno@clisp.org>
6204
6205         * modules/c-ctype-tests: New file.
6206         * tests/test-c-ctype.c: New file.
6207
6208 2007-01-14  Bruno Haible  <bruno@clisp.org>
6209
6210         * modules/binary-io-tests: New file.
6211         * tests/test-binary-io.sh: New file.
6212         * tests/test-binary-io.c: New file.
6213
6214 2007-01-14  Bruno Haible  <bruno@clisp.org>
6215
6216         * modules/array-oset-tests: New file.
6217         * tests/test-array_oset.c: New file.
6218
6219 2007-01-14  Bruno Haible  <bruno@clisp.org>
6220
6221         * modules/array-list-tests: New file.
6222         * tests/test-array_list.c: New file.
6223
6224 2007-01-14  Bruno Haible  <bruno@clisp.org>
6225
6226         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
6227         and make.
6228         Reported by Simon Josefsson in
6229         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
6230
6231 2007-01-14  Bruno Haible  <bruno@clisp.org>
6232
6233         * modules/allocsa-tests: New file.
6234         * tests/test-allocsa.c: New file.
6235
6236 2007-01-14  Bruno Haible  <bruno@clisp.org>
6237
6238         * modules/fchdir (Depends-on): Add absolute-header.
6239         * modules/unistd (Depends-on): Likewise.
6240
6241 2006-12-30  Bruno Haible  <bruno@clisp.org>
6242
6243         * modules/fchdir: New file.
6244         * modules/unistd (Files): Add lib/unistd_.h.
6245         (Makefile.am): Generate unistd.h from unistd_.h.
6246         * lib/fchdir.c: New file.
6247         * lib/dirent_.h: New file.
6248         * lib/unistd_.h: New file.
6249         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
6250         * m4/fchdir.m4: New file.
6251         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
6252         (gl_HEADER_UNISTD): Invoke it.
6253         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
6254         function.
6255         * lib/backupfile.c (opendir, closedir): Undefine.
6256         * lib/chown.c (open, close): Undefine.
6257         * lib/clean-temp.c (open, close): Undefine.
6258         * lib/copy-file.c (open, close): Undefine.
6259         * lib/execute.c (open, close): Undefine.
6260         * lib/fsusage.c (open, close): Undefine.
6261         * lib/gc-gnulib.c (open, close): Undefine.
6262         * lib/getcwd.c (opendir, closedir): Undefine.
6263         * lib/glob.c (opendir, closedir): Undefine.
6264         * lib/javacomp.c (open, close): Undefine.
6265         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
6266         * lib/openat-proc.c (open, close): Undefine.
6267         * lib/pagealign_alloc.c (open, close): Undefine.
6268         * lib/pipe.c (open, close): Undefine.
6269         * lib/progreloc.c (open, close): Undefine.
6270         * lib/savedir.c (opendir, closedir): Undefine.
6271         * lib/utime.c (open, close): Undefine.
6272         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
6273
6274 2007-01-10  Bruno Haible  <bruno@clisp.org>
6275
6276         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
6277
6278 2007-01-12  Eric Blake  <ebb9@byu.net>
6279
6280         Provide a robust <wchar.h>.  Further simplifications are now
6281         possible in other modules, but not included here.
6282         * modules/wchar: New module.
6283         * m4/wchar.m4: New file.
6284         * lib/wchar_.h: Likewise.
6285         * modules/mbchar (Depends-on): Depend on wchar, as the first use
6286         of the new module.
6287         * MODULES.html.sh (Extended multibyte and wide character utilities):
6288         New section.
6289
6290 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
6291
6292         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
6293         to a reasonable default for memory allocation.
6294         (xreadlink): Don't allocate a huge buffer, to work around a buggy
6295         file system that reports garbage st_size values for symlinks.
6296         Problem reported by Liyang Hu.
6297
6298 2007-01-11  Simon Josefsson  <simon@josefsson.org>
6299
6300         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
6301         Emacs .#* auto-save files).
6302
6303 2007-01-11  Bruno Haible  <bruno@clisp.org>
6304
6305         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
6306         directory.
6307
6308 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6309
6310         Use @...@ consistently in lib/wctype_.h.
6311         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
6312         on it being set to 1 or 0.
6313         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
6314         go back to AC_SUBSTing it.
6315         * modules/wctype (Makefile.am): Undo previous change.
6316
6317 2007-01-10  Eric Blake  <ebb9@byu.net>
6318
6319         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
6320         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
6321         * modules/wctype (Makefile.am): Likewise.
6322         Reported by Chris McGuire.
6323
6324 2007-01-10  Jim Meyering  <jim@meyering.net>
6325
6326         fts.c: a small readability/maintainability improvement
6327         * lib/fts.c (fts_read): Make this code slightly more readable and
6328         maintainable by hoisting the "sp->fts_cur = p" assignments to
6329         immediately follow the statements that set P.  Derived from
6330         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
6331
6332 2007-01-10  Eric Blake  <ebb9@byu.net>
6333
6334         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
6335         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
6336         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6337         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
6338         Reported by Chris McGuire.
6339
6340 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6341
6342         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
6343         in sed script.
6344
6345 2007-01-09  Bruno Haible  <bruno@clisp.org>
6346
6347         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
6348         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
6349         variables.
6350         (func_module): Use them.
6351
6352 2007-01-09  Bruno Haible  <bruno@clisp.org>
6353
6354         * modules/unistr/base: New file.
6355         * lib/unistr.h: New file.
6356
6357         * modules/unistr/u8-to-u16: New file.
6358         * lib/unistr/u8-to-u16.c: New file.
6359
6360         * modules/unistr/u8-to-u32: New file.
6361         * lib/unistr/u8-to-u32.c: New file.
6362
6363         * modules/unistr/u16-to-u8: New file.
6364         * lib/unistr/u16-to-u8.c: New file.
6365
6366         * modules/unistr/u16-to-u32: New file.
6367         * lib/unistr/u16-to-u32.c: New file.
6368
6369         * modules/unistr/u32-to-u8: New file.
6370         * lib/unistr/u32-to-u8.c: New file.
6371
6372         * modules/unistr/u32-to-u16: New file.
6373         * lib/unistr/u32-to-u16.c: New file.
6374
6375         * modules/unistr/u8-check: New file.
6376         * modules/unistr/u16-check: New file.
6377         * modules/unistr/u32-check: New file.
6378         * lib/unistr/u8-check.c: New file.
6379         * lib/unistr/u16-check.c: New file.
6380         * lib/unistr/u32-check.c: New file.
6381
6382         * modules/unistr/u8-chr: New file.
6383         * modules/unistr/u16-chr: New file.
6384         * modules/unistr/u32-chr: New file.
6385         * lib/unistr/u8-chr.c: New file.
6386         * lib/unistr/u16-chr.c: New file.
6387         * lib/unistr/u32-chr.c: New file.
6388
6389         * modules/unistr/u8-cmp: New file.
6390         * modules/unistr/u16-cmp: New file.
6391         * modules/unistr/u32-cmp: New file.
6392         * lib/unistr/u8-cmp.c: New file.
6393         * lib/unistr/u16-cmp.c: New file.
6394         * lib/unistr/u32-cmp.c: New file.
6395
6396         * modules/unistr/u8-cpy: New file.
6397         * modules/unistr/u16-cpy: New file.
6398         * modules/unistr/u32-cpy: New file.
6399         * lib/unistr/u8-cpy.c: New file.
6400         * lib/unistr/u16-cpy.c: New file.
6401         * lib/unistr/u32-cpy.c: New file.
6402         * lib/unistr/u-cpy.h: New file.
6403
6404         * modules/unistr/u8-cpy-alloc: New file.
6405         * modules/unistr/u16-cpy-alloc: New file.
6406         * modules/unistr/u32-cpy-alloc: New file.
6407         * lib/unistr/u8-cpy-alloc.c: New file.
6408         * lib/unistr/u16-cpy-alloc.c: New file.
6409         * lib/unistr/u32-cpy-alloc.c: New file.
6410         * lib/unistr/u-cpy-alloc.h: New file.
6411
6412         * modules/unistr/u8-endswith: New file.
6413         * modules/unistr/u16-endswith: New file.
6414         * modules/unistr/u32-endswith: New file.
6415         * lib/unistr/u8-endswith.c: New file.
6416         * lib/unistr/u16-endswith.c: New file.
6417         * lib/unistr/u32-endswith.c: New file.
6418         * lib/unistr/u-endswith.h: New file.
6419
6420         * modules/unistr/u8-mblen: New file.
6421         * modules/unistr/u16-mblen: New file.
6422         * modules/unistr/u32-mblen: New file.
6423         * lib/unistr/u8-mblen.c: New file.
6424         * lib/unistr/u16-mblen.c: New file.
6425         * lib/unistr/u32-mblen.c: New file.
6426
6427         * modules/unistr/u8-mbtouc: New file.
6428         * modules/unistr/u16-mbtouc: New file.
6429         * modules/unistr/u32-mbtouc: New file.
6430         * lib/unistr/u8-mbtouc.c: New file.
6431         * lib/unistr/u16-mbtouc.c: New file.
6432         * lib/unistr/u32-mbtouc.c: New file.
6433
6434         * modules/unistr/u8-mbtouc-safe: New file.
6435         * modules/unistr/u16-mbtouc-safe: New file.
6436         * modules/unistr/u32-mbtouc-safe: New file.
6437         * lib/unistr/u8-mbtouc-safe.c: New file.
6438         * lib/unistr/u16-mbtouc-safe.c: New file.
6439         * lib/unistr/u32-mbtouc-safe.c: New file.
6440
6441         * modules/unistr/u8-move: New file.
6442         * modules/unistr/u16-move: New file.
6443         * modules/unistr/u32-move: New file.
6444         * lib/unistr/u8-move.c: New file.
6445         * lib/unistr/u16-move.c: New file.
6446         * lib/unistr/u32-move.c: New file.
6447         * lib/unistr/u-move.h: New file.
6448
6449         * modules/unistr/u8-next: New file.
6450         * modules/unistr/u16-next: New file.
6451         * modules/unistr/u32-next: New file.
6452         * lib/unistr/u8-next.c: New file.
6453         * lib/unistr/u16-next.c: New file.
6454         * lib/unistr/u32-next.c: New file.
6455
6456         * modules/unistr/u8-prev: New file.
6457         * modules/unistr/u16-prev: New file.
6458         * modules/unistr/u32-prev: New file.
6459         * lib/unistr/u8-prev.c: New file.
6460         * lib/unistr/u16-prev.c: New file.
6461         * lib/unistr/u32-prev.c: New file.
6462
6463         * modules/unistr/u8-set: New file.
6464         * modules/unistr/u16-set: New file.
6465         * modules/unistr/u32-set: New file.
6466         * lib/unistr/u8-set.c: New file.
6467         * lib/unistr/u16-set.c: New file.
6468         * lib/unistr/u32-set.c: New file.
6469         * lib/unistr/u-set.h: New file.
6470
6471         * modules/unistr/u8-startswith: New file.
6472         * modules/unistr/u16-startswith: New file.
6473         * modules/unistr/u32-startswith: New file.
6474         * lib/unistr/u8-startswith.c: New file.
6475         * lib/unistr/u16-startswith.c: New file.
6476         * lib/unistr/u32-startswith.c: New file.
6477         * lib/unistr/u-startswith.h: New file.
6478
6479         * modules/unistr/u8-stpcpy: New file.
6480         * modules/unistr/u16-stpcpy: New file.
6481         * modules/unistr/u32-stpcpy: New file.
6482         * lib/unistr/u8-stpcpy.c: New file.
6483         * lib/unistr/u16-stpcpy.c: New file.
6484         * lib/unistr/u32-stpcpy.c: New file.
6485         * lib/unistr/u-stpcpy.h: New file.
6486
6487         * modules/unistr/u8-stpncpy: New file.
6488         * modules/unistr/u16-stpncpy: New file.
6489         * modules/unistr/u32-stpncpy: New file.
6490         * lib/unistr/u8-stpncpy.c: New file.
6491         * lib/unistr/u16-stpncpy.c: New file.
6492         * lib/unistr/u32-stpncpy.c: New file.
6493         * lib/unistr/u-stpncpy.h: New file.
6494
6495         * modules/unistr/u8-strcat: New file.
6496         * modules/unistr/u16-strcat: New file.
6497         * modules/unistr/u32-strcat: New file.
6498         * lib/unistr/u8-strcat.c: New file.
6499         * lib/unistr/u16-strcat.c: New file.
6500         * lib/unistr/u32-strcat.c: New file.
6501         * lib/unistr/u-strcat.h: New file.
6502
6503         * modules/unistr/u8-strchr: New file.
6504         * modules/unistr/u16-strchr: New file.
6505         * modules/unistr/u32-strchr: New file.
6506         * lib/unistr/u8-strchr.c: New file.
6507         * lib/unistr/u16-strchr.c: New file.
6508         * lib/unistr/u32-strchr.c: New file.
6509
6510         * modules/unistr/u8-strcmp: New file.
6511         * modules/unistr/u16-strcmp: New file.
6512         * modules/unistr/u32-strcmp: New file.
6513         * lib/unistr/u8-strcmp.c: New file.
6514         * lib/unistr/u16-strcmp.c: New file.
6515         * lib/unistr/u32-strcmp.c: New file.
6516
6517         * modules/unistr/u8-strcpy: New file.
6518         * modules/unistr/u16-strcpy: New file.
6519         * modules/unistr/u32-strcpy: New file.
6520         * lib/unistr/u8-strcpy.c: New file.
6521         * lib/unistr/u16-strcpy.c: New file.
6522         * lib/unistr/u32-strcpy.c: New file.
6523         * lib/unistr/u-strcpy.h: New file.
6524
6525         * modules/unistr/u8-strcspn: New file.
6526         * modules/unistr/u16-strcspn: New file.
6527         * modules/unistr/u32-strcspn: New file.
6528         * lib/unistr/u8-strcspn.c: New file.
6529         * lib/unistr/u16-strcspn.c: New file.
6530         * lib/unistr/u32-strcspn.c: New file.
6531         * lib/unistr/u-strcspn.h: New file.
6532
6533         * modules/unistr/u8-strdup: New file.
6534         * modules/unistr/u16-strdup: New file.
6535         * modules/unistr/u32-strdup: New file.
6536         * lib/unistr/u8-strdup.c: New file.
6537         * lib/unistr/u16-strdup.c: New file.
6538         * lib/unistr/u32-strdup.c: New file.
6539         * lib/unistr/u-strdup.h: New file.
6540
6541         * modules/unistr/u8-strlen: New file.
6542         * modules/unistr/u16-strlen: New file.
6543         * modules/unistr/u32-strlen: New file.
6544         * lib/unistr/u8-strlen.c: New file.
6545         * lib/unistr/u16-strlen.c: New file.
6546         * lib/unistr/u32-strlen.c: New file.
6547         * lib/unistr/u-strlen.h: New file.
6548
6549         * modules/unistr/u8-strmblen: New file.
6550         * modules/unistr/u16-strmblen: New file.
6551         * modules/unistr/u32-strmblen: New file.
6552         * lib/unistr/u8-strmblen.c: New file.
6553         * lib/unistr/u16-strmblen.c: New file.
6554         * lib/unistr/u32-strmblen.c: New file.
6555
6556         * modules/unistr/u8-strmbtouc: New file.
6557         * modules/unistr/u16-strmbtouc: New file.
6558         * modules/unistr/u32-strmbtouc: New file.
6559         * lib/unistr/u8-strmbtouc.c: New file.
6560         * lib/unistr/u16-strmbtouc.c: New file.
6561         * lib/unistr/u32-strmbtouc.c: New file.
6562
6563         * modules/unistr/u8-strncat: New file.
6564         * modules/unistr/u16-strncat: New file.
6565         * modules/unistr/u32-strncat: New file.
6566         * lib/unistr/u8-strncat.c: New file.
6567         * lib/unistr/u16-strncat.c: New file.
6568         * lib/unistr/u32-strncat.c: New file.
6569         * lib/unistr/u-strncat.h: New file.
6570
6571         * modules/unistr/u8-strncmp: New file.
6572         * modules/unistr/u16-strncmp: New file.
6573         * modules/unistr/u32-strncmp: New file.
6574         * lib/unistr/u8-strncmp.c: New file.
6575         * lib/unistr/u16-strncmp.c: New file.
6576         * lib/unistr/u32-strncmp.c: New file.
6577
6578         * modules/unistr/u8-strncpy: New file.
6579         * modules/unistr/u16-strncpy: New file.
6580         * modules/unistr/u32-strncpy: New file.
6581         * lib/unistr/u8-strncpy.c: New file.
6582         * lib/unistr/u16-strncpy.c: New file.
6583         * lib/unistr/u32-strncpy.c: New file.
6584         * lib/unistr/u-strncpy.h: New file.
6585
6586         * modules/unistr/u8-strnlen: New file.
6587         * modules/unistr/u16-strnlen: New file.
6588         * modules/unistr/u32-strnlen: New file.
6589         * lib/unistr/u8-strnlen.c: New file.
6590         * lib/unistr/u16-strnlen.c: New file.
6591         * lib/unistr/u32-strnlen.c: New file.
6592         * lib/unistr/u-strnlen.h: New file.
6593
6594         * modules/unistr/u8-strpbrk: New file.
6595         * modules/unistr/u16-strpbrk: New file.
6596         * modules/unistr/u32-strpbrk: New file.
6597         * lib/unistr/u8-strpbrk.c: New file.
6598         * lib/unistr/u16-strpbrk.c: New file.
6599         * lib/unistr/u32-strpbrk.c: New file.
6600         * lib/unistr/u-strpbrk.h: New file.
6601
6602         * modules/unistr/u8-strrchr: New file.
6603         * modules/unistr/u16-strrchr: New file.
6604         * modules/unistr/u32-strrchr: New file.
6605         * lib/unistr/u8-strrchr.c: New file.
6606         * lib/unistr/u16-strrchr.c: New file.
6607         * lib/unistr/u32-strrchr.c: New file.
6608
6609         * modules/unistr/u8-strspn: New file.
6610         * modules/unistr/u16-strspn: New file.
6611         * modules/unistr/u32-strspn: New file.
6612         * lib/unistr/u8-strspn.c: New file.
6613         * lib/unistr/u16-strspn.c: New file.
6614         * lib/unistr/u32-strspn.c: New file.
6615         * lib/unistr/u-strspn.h: New file.
6616
6617         * modules/unistr/u8-strstr: New file.
6618         * modules/unistr/u16-strstr: New file.
6619         * modules/unistr/u32-strstr: New file.
6620         * lib/unistr/u8-strstr.c: New file.
6621         * lib/unistr/u16-strstr.c: New file.
6622         * lib/unistr/u32-strstr.c: New file.
6623         * lib/unistr/u-strstr.h: New file.
6624
6625         * modules/unistr/u8-strtok: New file.
6626         * modules/unistr/u16-strtok: New file.
6627         * modules/unistr/u32-strtok: New file.
6628         * lib/unistr/u8-strtok.c: New file.
6629         * lib/unistr/u16-strtok.c: New file.
6630         * lib/unistr/u32-strtok.c: New file.
6631         * lib/unistr/u-strtok.h: New file.
6632
6633         * modules/unistr/u8-uctomb: New file.
6634         * modules/unistr/u16-uctomb: New file.
6635         * modules/unistr/u32-uctomb: New file.
6636         * lib/unistr/u8-uctomb.c: New file.
6637         * lib/unistr/u16-uctomb.c: New file.
6638         * lib/unistr/u32-uctomb.c: New file.
6639
6640         * MODULES.html.sh (Unicode string functions): Add the new modules.
6641
6642 2007-01-08  Bruno Haible  <bruno@clisp.org>
6643
6644         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
6645         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
6646         subdirectories.
6647
6648 2007-01-08  Karl Berry  <karl@gnu.org>
6649
6650         * doc/error.texi: mention that main() fns must set program_name
6651         when progname is used.
6652
6653 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
6654
6655         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
6656         WCTYPE_H is empty, for the benefit of builds from non-distclean
6657         directories.  Problem reported by Eric Blake in
6658         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
6659
6660 2007-01-08  Bruno Haible  <bruno@clisp.org>
6661
6662         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
6663         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
6664         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
6665         PROVIDE_CANONICALIZE_FILENAME_MODE.
6666         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
6667
6668 2007-01-08  Bruno Haible  <bruno@clisp.org>
6669
6670         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
6671         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
6672         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
6673         * lib/fts.c: Likewise.
6674         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
6675
6676 2006-12-25  Bruno Haible  <bruno@clisp.org>
6677
6678         * modules/utf8-ucs4-safe: New file.
6679         * lib/utf8-ucs4-safe.h: New file.
6680         * lib/unistr/utf8-ucs4-safe.c: New file.
6681
6682         * modules/utf16-ucs4-safe: New file.
6683         * lib/utf16-ucs4-safe.h: New file.
6684         * lib/unistr/utf16-ucs4-safe.c: New file.
6685
6686         * MODULES.html.sh (Unicode string functions): Add the new modules.
6687
6688 2007-01-08  Bruno Haible  <bruno@clisp.org>
6689
6690         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
6691         (Depends-on): Add unitypes.
6692         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6693         (u8_mbtouc_aux): Move out to separate file.
6694         (u8_mbtouc): Use ucs4_t, uint8_t types.
6695         * lib/unistr/utf8-ucs4.c: New file.
6696
6697         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
6698         (Depends-on): Add unitypes.
6699         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
6700         (u16_mbtouc_aux): Move out to separate file.
6701         (u16_mbtouc): Use ucs4_t, uint16_t types.
6702         * lib/unistr/utf16-ucs4.c: New file.
6703
6704         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
6705         (Depends-on): Add unitypes.
6706         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
6707         (u8_uctomb_aux): Move out to separate file.
6708         (u8_uctomb): Use ucs4_t, uint8_t types.
6709         * lib/unistr/ucs4-utf8.c: New file.
6710
6711         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
6712         (Depends-on): Add unitypes.
6713         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
6714         (u16_uctomb_aux): Move out to separate file.
6715         (u16_uctomb): Use ucs4_t, uint16_t types.
6716         * lib/unistr/ucs4-utf16.c: New file.
6717
6718 2006-12-25  Bruno Haible  <bruno@clisp.org>
6719
6720         * modules/unitypes: New file.
6721         * lib/unitypes.h: New file.
6722         * MODULES.html.sh (func_all_modules): New section "Unicode string
6723         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
6724         this section. Add unitypes.
6725
6726 2007-01-08  Bruno Haible  <bruno@clisp.org>
6727
6728         Avoid variable names that conflict with those from libtool.
6729         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
6730         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
6731         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
6732         library_names_spec to acl_library_names_spec, hardcode_* to
6733         acl_hardcode_*.
6734         Reported by Ralf Wildenhues.
6735
6736 2007-01-08  Bruno Haible  <bruno@clisp.org>
6737
6738         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
6739         definition.
6740         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
6741         definition.
6742         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
6743         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
6744         definition.
6745         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
6746         definition.
6747         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
6748         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
6749         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
6750         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
6751         definition.
6752         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
6753         definition.
6754         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
6755         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
6756         GC_USE_<algorithm>.
6757         * lib/gc-libgcrypt.c: Likewise.
6758         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
6759         * modules/gc-arctwo (configure.ac): Likewise.
6760         * modules/gc-des (configure.ac): Likewise.
6761         * modules/gc-hmac-md5 (configure.ac): Likewise.
6762         * modules/gc-hmac-sha1 (configure.ac): Likewise.
6763         * modules/gc-md2 (configure.ac): Likewise.
6764         * modules/gc-md4 (configure.ac): Likewise.
6765         * modules/gc-md5 (configure.ac): Likewise.
6766         * modules/gc-random (configure.ac): Likewise.
6767         * modules/gc-rijndael (configure.ac): Likewise.
6768         * modules/gc-sha1 (configure.ac): Likewise.
6769
6770 2007-01-08  Bruno Haible  <bruno@clisp.org>
6771
6772         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
6773         macro definition.
6774         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
6775         definition.
6776         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
6777         definition.
6778         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
6779         * modules/fcntl-safer (configure.ac): Likewise.
6780         * modules/fopen-safer (configure.ac): Likewise.
6781         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
6782         GNULIB_FWRITEERROR macro definition.
6783
6784 2007-01-08  Bruno Haible  <bruno@clisp.org>
6785
6786         * m4/gnulib-common.m4: New file.
6787         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
6788         (func_get_filelist): Add m4/gnulib-common.m4.
6789
6790 2007-01-08  Bruno Haible  <bruno@clisp.org>
6791
6792         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
6793         command.
6794
6795 2007-01-08  Jim Meyering  <jim@meyering.net>
6796
6797         Use a more robust test for a "can't happen" condition.
6798         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
6799         narrowed the st_size value.  Presuming the "can't happen" condition
6800         is true, that narrowing could conceivably convert an invalid st_size
6801         value into a valid one.  Instead, use a change based on Matthew
6802         Woehlke's original patch.
6803
6804         Slight readability improvement: use an assert-like macro
6805         in place of literal "abort ()" uses.
6806         * lib/fts.c (fts_assert): Define.
6807         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
6808         Use this macro instead of a bare 'abort'.
6809
6810 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6811
6812         Don't worry about using IRIX 5.3's wctype.h broken definitions;
6813         simply work around them.
6814         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
6815         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
6816         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
6817         declaring.
6818         Don't bother to define as macros, since the standard doesn't require it.
6819         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
6820         longer worry about IRIX 5.3.
6821         (HAVE_WCTYPE_CTMP_BUG): Remove.
6822
6823 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
6824
6825         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
6826         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
6827         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
6828         Problems reported by Georg Schwarz for IRIX 5.3.
6829
6830         * gnulib-tool (autoconf_minversion): Take the maximum version number
6831         found, not the minimum.  Problem reported by James Youngman.
6832
6833 2007-01-03  Karl Berry  <karl@gnu.org>
6834
6835         * doc/error.texi: new file, explaining interaction with progname.
6836         * doc/gnulib.texi: include it.  Update copyright.
6837
6838 2007-01-03  Simon Josefsson  <simon@josefsson.org>
6839
6840         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
6841         AC_CANONICAL_HOST, to improve autobuild outputs.
6842
6843 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
6844             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
6845
6846         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
6847         sockets, server sockets, and other file descriptors.  Count errors
6848         to compute the return value.  Reorder the code a bit to be easier
6849         to follow.  Don't set event bits that were not requested (except
6850         POLLERR and POLLHUP).
6851
6852 2007-01-01  Bruno Haible  <bruno@clisp.org>
6853
6854         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
6855
6856 2007-01-03  Jim Meyering  <jim@meyering.net>
6857
6858         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
6859
6860 2007-01-02  Bruno Haible  <bruno@clisp.org>
6861
6862         * modules/settime (Include): Require timespec.h.
6863         * modules/nanosleep (Include): Likewise.
6864
6865 2007-01-01  Bruno Haible  <bruno@clisp.org>
6866
6867         * gnulib-tool (func_emit_copyright_notice): Bump year.
6868         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
6869
6870 2007-01-01  Bruno Haible  <bruno@clisp.org>
6871
6872         Improve support for OpenBSD.
6873         * build-aux/config.rpath (libname_spec): Export.
6874         (library_names_spec): New variable. Export.
6875         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
6876         library_names_spec from the config.rpath output. Locate shared library
6877         through the name pattern in library_names_spec.
6878
6879 2007-01-01  Eric Blake  <ebb9@byu.net>
6880
6881         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
6882
6883 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
6884
6885         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
6886         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
6887         assume the C locale, and avoid an "eval" that could cause trouble.
6888         Problem with SORT reported by Bob Proulx.
6889
6890         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
6891         Define.  Trivial patch from Henning Nielsen Lund, originally
6892         sent to bug-grep@gnu.org today.
6893
6894 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6895
6896         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
6897         struct stat.  Problem reported by Henning Nielsen Lund.
6898         * lib/acl.c: Include acl.h first, to check interface.  Don't
6899         bother to include sys/types.h and sys/stat.h again.
6900
6901 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
6902
6903         Import the following change from libc; problem reported by
6904         Sven Verdoolaege.
6905
6906         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
6907
6908         [BZ #1373]
6909         * lib/argp.h: Remove __NTH for __argp_usage inline function.
6910
6911 2006-12-28  Jim Meyering  <jim@meyering.net>
6912
6913         * build-aux/announce-gen: Do not assume that the package
6914         builds any of tar.gz, tar.bz2, and .xdelta files.
6915         Suggestion from Simon Josefsson.
6916
6917 2006-12-28  Simon Josefsson  <simon@josefsson.org>
6918
6919         * modules/announce-gen: New file.
6920
6921 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
6922
6923         * lib/mbchar.h: Just include <wctype.h>; the wctype module
6924         handles its gotchas now.
6925         * lib/mbswidth.c: Likewise.
6926         * lib/wcwidth.h: Likewise.
6927         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
6928         and iswcntrl; the wctype module does this stuff now.
6929         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
6930         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6931         * modules/mbchar (Depends-on): Add wctype.
6932         * modules/mbswidth (Depends-on): Likewise.
6933         * modules/wcwidth (Depends-on): Likewise.
6934
6935 2006-12-27  Eric Blake  <ebb9@byu.net>
6936
6937         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
6938         module uses more than what <wctype.h> is required to provide.
6939
6940 2006-12-26  Eric Blake  <ebb9@byu.net>
6941
6942         * gnulib-tool (sed_extract_prog): Avoid space-tab.
6943
6944 2006-12-26  Eric Blake  <ebb9@byu.net>
6945
6946         * modules/absolute-header: New module.
6947         * modules/fcntl (Depends-on): Depend on it.
6948         * modules/inttypes (Depends-on): Likewise.
6949         * modules/stdint (Depends-on): Likewise.
6950         * modules/sys_stat (Depends-on): Likewise.
6951         * modules/wctype (Depends-on): Likewise.
6952         * MODULES.html.sh (Support for building libraries and
6953         executables): Document it.
6954
6955 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6956
6957         * gnulib-tool (SED): Remove, undoing previous change.
6958         The problem was that it broke coreutils on Solaris, because
6959         "sed --posix" leaked into a makefile.
6960         (sed): New alias, if 'alias' and GNU sed.
6961
6962 2006-12-24  Jim Meyering  <jim@meyering.net>
6963
6964         Work around an fchownat bug in glibc-2.4:
6965         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
6966         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
6967         in spite of the -P option.
6968         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
6969         New macros.
6970         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
6971         * modules/openat (Files): Add lib/fchownat.c.
6972         * lib/openat.c (fchownat): Don't define here.  Move to...
6973         * lib/fchownat.c: ...this new file.
6974
6975 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
6976
6977         Fix bug reported by Bruno Haible in
6978         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
6979         where quotearg.c didn't compile on Mac OS X 10.2 because it
6980         lacks <wchar.h> and wint_t.
6981         * lib/wctype_.h (__wctype_wint_t): New type.
6982         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
6983         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
6984         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
6985         Arg is now of type __wctype_wint_t, not wint_t.
6986         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
6987         substitute HAVE_WINT_T.
6988         * modules/wctype (Files): Add m4/wint_t.m4.
6989         (wctype.h): Substitute HAVE_WINT_T.
6990
6991 2006-12-23  Bruno Haible  <bruno@clisp.org>
6992
6993         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
6994
6995 2006-12-23  Bruno Haible  <bruno@clisp.org>
6996
6997         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
6998         S_ISLNK.
6999         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
7000         mingw.
7001
7002 2006-12-22  Bruno Haible  <bruno@clisp.org>
7003
7004         * lib/copy-file.c: Include acl.h.
7005         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
7006         Close the file descriptors only after being done with copy_acl.
7007         * modules/copy-file (Depends-on): Add acl.
7008
7009 2006-12-22  Bruno Haible  <bruno@clisp.org>
7010
7011         * gnulib-tool (SED): New variable.
7012         Use $SED instead of sed everywhere.
7013
7014 2006-12-22  Bruno Haible  <bruno@clisp.org>
7015
7016         * modules/no-c++: New file.
7017         * m4/no-c++.m4: New file.
7018         * MODULES.html.sh (Support for building libraries and executables):
7019         Add no-c++.
7020
7021 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
7022
7023         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
7024         Include <limits.h>, and use its INT_MAX to rewrite the
7025         j loop so that it does not overflow 'int'.  Problem reported by
7026         Ralf Wildenhues in
7027         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
7028         Play it safe by shifting left by 1 rather than multiplying by 2,
7029         as GCC is less likely to optimize this away when the value
7030         is signed (when it assumes overflow leads to undefined behavior).
7031         Also, don't assume time_t uses two's complement.
7032
7033 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
7034
7035         * MODULES.html.sh: New module wctype.
7036         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
7037         * lib/fnmatch.c: Don't bother to include <wchar.h> before
7038         <wctype.h>, since the new wctype module should fix this.
7039         * lib/quotearg.c: Include <wctype.h> unconditionally, since
7040         the wctype module should arrange for it.
7041         * lib/regex_internal.h: Likewise.
7042         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
7043         since the wctype module should handle this now.
7044         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
7045         * modules/fnmatch (Depends-on): Add wctype.
7046         * modules/quotearg (Depends-on): Likewise.
7047         * modules/regex (Depends-on): Likewise.
7048
7049 2006-12-19  Bruno Haible  <bruno@clisp.org>
7050
7051         * lib/strdup.h [C++]: Wrap definitions in extern "C".
7052         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
7053
7054 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7055
7056         * modules/savewd (Depends-on): Fix dependency on fcntl.
7057
7058 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
7059
7060         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
7061         conforms to C99, rather than relying on the user's environment
7062         setting of STDINT_H.
7063
7064 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
7065         and Eric Blake  <ebb9@byu.net>
7066
7067         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
7068         This is more consistent with the other defines here.
7069         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
7070         Port to z/OS.  Problem reported by Paul Gilmartin.
7071         Change local vars to use gl_ prefix rather than ac_.
7072         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
7073         with other defines.
7074         * modules/double-slash-root: New module.
7075         * modules/dirname (Files): Remove m4/double-slash-root.m4.
7076         (Depends-on): Add double-slash-root.
7077         * MODULES.html.sh (File system functions): Mention new module.
7078
7079 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
7080
7081         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
7082         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
7083         This is for the benefit of gzip, which doesn't do i18n.
7084
7085 2006-12-12  Jim Meyering  <jim@meyering.net>
7086
7087         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
7088         Reported by Andreas Schwab <schwab@suse.de>.
7089
7090 2006-12-12  Bruno Haible  <bruno@clisp.org>
7091
7092         Merge these changes.
7093         2006-09-05  Bruno Haible  <bruno@clisp.org>
7094         * lib/iconvme.c (iconv_string): No need to save and restore errno when
7095         iconv_alloc succeeded.
7096         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
7097         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
7098         test for " && dest " at the end - dest is always != NULL there. Call
7099         iconv with 4xNULL arguments initially, to reset the state. Call iconv
7100         with 2xNULL arguments, also to flush the state storage. Handle the
7101         IRIX iconv behaviour. Realloc the final result, to throw away unused
7102         memory.
7103
7104 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
7105
7106         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
7107         and fchmodat unconditionally, since glibc 2.4 has them.
7108         Problem reported by Arkadiusz Miskiewicz.
7109
7110 2006-12-10  Bruno Haible  <bruno@clisp.org>
7111
7112         * gnulib-tool (func_import): Show the include files only for those
7113         modules that are copied and specified.
7114         Reported by Karl Berry.
7115
7116 2006-12-08  Jim Meyering  <jim@meyering.net>
7117
7118         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
7119         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
7120
7121         * build-aux/announce-gen: Add two new options, both optional:
7122         --bootstrap-tools=TOOL_LIST
7123               a comma-separated list of tools, e.g.,
7124               autoconf,automake,bison,gnulib
7125         --gnulib-snapshot-date=DATE
7126               if gnulib is in the bootstrap tool list,
7127               then report this as the snapshot date.
7128               If not specified, use the current date/time.
7129               If you specify a date here, be sure it's UTC.
7130
7131 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7132
7133         * tests/test-argp-2.sh: Fix test to match actual output.
7134         (func_compare): Fix sed script to be portable.
7135
7136 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
7137
7138         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
7139         workaround for this case.  It is not autoconfigured now; offhand
7140         it's hard to see how to autoconfigure it.
7141
7142 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
7143
7144         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
7145         a directory that is about to be chowned.  Such a directory's
7146         initial file permissions should permit the owner only and this
7147         should not be changed until after the chown, since the group and
7148         other bits would be incorrect if they granted permission before
7149         the chown.
7150
7151         Fix porting problem for iswctype reported by Georg Schwarz in:
7152         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
7153         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
7154         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
7155         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
7156         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
7157
7158 2006-12-03  Jim Meyering  <jim@meyering.net>
7159
7160         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
7161         p->fts_statp may not yet be defined.
7162         (fts_read): Instead, set it in the caller, once p->fts_statp is
7163         sure to be defined, and corresponds to a top-level directory.
7164         This bug made du -x fail.  Here's the coreutils test case:
7165         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
7166         Reported by Mike Frysinger.
7167
7168 2006-12-01  Jim Meyering  <jim@meyering.net>
7169
7170         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
7171         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
7172         Reported by Simon Josefsson.
7173
7174 2006-11-30  Jim Meyering  <jim@meyering.net>
7175
7176         * m4/warning.m4: Use the all-permissive copyright notice
7177         recommended by RMS (rather than LGPL).
7178         * m4/vararrays.m4: Likewise.
7179         * m4/flexmember.m4: Likewise.
7180
7181 2006-11-29  Bruno Haible  <bruno@clisp.org>
7182
7183         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
7184         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
7185         using +=.
7186         Reported by Simon Josefsson <simon@josefsson.org>.
7187
7188 2006-11-28  James Youngman <jay@gnu.org>
7189
7190         * README: Advise users that they might find the bug-gnulib@gnu.org
7191         and autotools-announce@gnu.org mailing lists useful.
7192
7193 2006-11-28  Bruno Haible  <bruno@clisp.org>
7194
7195         * m4/ptrdiff_max.m4: Remove file.
7196
7197 2006-11-21  Bruno Haible  <bruno@clisp.org>
7198
7199         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
7200         _AC_COMPUTE_INT.
7201         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
7202         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
7203         _AC_COMPUTE_INT.
7204         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
7205         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
7206         _AC_COMPUTE_INT.
7207         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
7208
7209 2006-11-28  Jim Meyering  <jim@meyering.net>
7210
7211         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
7212         warning from "gcc -Wshadow" about shadowing the builtin.
7213
7214 2006-11-27  Bruno Haible  <bruno@clisp.org>
7215
7216         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
7217         _AC_COMPUTE_INT.
7218         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
7219
7220 2006-11-27  Bruno Haible  <bruno@clisp.org>
7221             Paul Eggert  <eggert@cs.ucla.edu>
7222
7223         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
7224
7225 2006-11-26  Bruno Haible  <bruno@clisp.org>
7226
7227         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
7228         noinst_LTLIBRARIES.
7229
7230 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
7231             Bruno Haible  <bruno@clisp.org>
7232
7233         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
7234         if compiling with "gcc -ansi".
7235
7236 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
7237
7238         Fix some incompatibilities with gcc -ansi -pedantic.
7239         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
7240         if compiling pedantically with GCC, unless it's C99 or later.
7241         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
7242         it mishandles gcc -ansi -pedantic as well.
7243         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
7244         if gcc -pedantic.
7245         * lib/regexec.c (check_node_accept_bytes): Don't use auto
7246         initializers for struct if -pedantic, unless it's C99 or later.
7247
7248 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
7249
7250         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
7251         Don't close an fd more than once. Identical atimes indicate
7252         success, not failure.
7253
7254 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
7255
7256         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
7257
7258 2006-11-23  Jim Meyering  <jim@meyering.net>
7259
7260         * build-aux/announce-gen: New file.  From coreutils.
7261
7262 2006-11-22  Jim Meyering  <jim@meyering.net>
7263
7264         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
7265         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
7266         (fts_read): Use a temporary to narrow the overused st_size member
7267         before using it in a switch statement.  Reported by Matthew Woehlke.
7268
7269         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
7270         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
7271
7272 2006-11-20  Bruno Haible  <bruno@clisp.org>
7273
7274         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
7275         changequote instead of pairs of brackets.
7276         Reported by Andreas Schwab <schwab@suse.de>.
7277
7278 2006-11-21  Jim Meyering  <jim@meyering.net>
7279
7280         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
7281         so as to remain compatible with older compilers.
7282         Patch from Michael Deutschmann.
7283
7284 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
7285
7286         * MODULES.html.sh (File system functions): Add openat.
7287
7288         * lib/openat.h (rpl_fstatat): New macro, if
7289         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
7290         (fstatat): Define to rpl_fstatat under the same conditions,
7291         unless COMPILING_FSTATAT.
7292         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
7293         seems to have the bug.
7294         * lib/fstatat.c: New file.
7295         * modules/openat (Files): Add it.
7296
7297 2006-11-20  Bruno Haible  <bruno@clisp.org>
7298
7299         * Makefile: New file.
7300
7301 2006-11-20  Jim Meyering  <jim@meyering.net>
7302
7303         The beginnings of syntax-related checks for gnulib.
7304         * lib/Makefile: New file.
7305         * lib/t-idcache: New script.  Ensure that the two halves of
7306         idcache.c stay in sync.
7307
7308         * lib/idcache.c: Adjust comments in user- and group- portions to
7309         be more accurate, and to be consistent with one another.
7310
7311 2006-11-20  Jim Meyering  <jim@meyering.net>
7312
7313         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
7314         continue using the flexible array member (thus, this module performs
7315         half as many malloc calls), with the addition that...
7316         (getgroup, getuser): Consistently record a non-match via an empty
7317         "name" string, and map an empty string match to a NULL return value.
7318         * modules/idcache (Depends-on): Re-add flexmember.
7319
7320         * lib/idcache.c (getuser): Remove all uses of the register keyword.
7321         (getuidbyname, getgroup, getgidbyname): Likewise.
7322
7323         Use cleaner syntax: NULL rather than 0.
7324         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
7325
7326 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
7327
7328         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
7329         It mishandled the case where the group was missing.
7330         Problem reported by Greg Schafer.
7331         * modules/idcache: Likewise.
7332
7333 2006-11-18  Jim Meyering  <jim@meyering.net>
7334
7335         * check-module (%exempt_header): Add exception for some
7336         conditionally-included headers.
7337
7338         * modules/i-ring (Depends-on): Add verify.
7339         (License): Change to LGPL.
7340
7341 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
7342
7343         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
7344         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
7345         and inttostr.h.  Use snprintf rather than uinttostr, so that
7346         LGPLed code doesn't depend on GPLed.
7347
7348 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
7349
7350         * modules/inline (License): Change from GPL to LGPL.
7351
7352 2006-11-17  Jim Meyering  <jim@meyering.net>
7353
7354         * modules/d-type (License): Switch to LGPL.
7355
7356 2006-11-15  Bruno Haible  <bruno@clisp.org>
7357
7358         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
7359
7360 2006-11-15  Eric Blake  <ebb9@byu.net>
7361
7362         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
7363         the module dependency.
7364
7365 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7366             Bruno Haible  <bruno@clisp.org>
7367
7368         * gnulib-tool (func_create_testdir): Add license consistency check.
7369
7370 2006-11-15  Eric Blake  <ebb9@byu.net>
7371
7372         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
7373         random "(cached)" in configure output.
7374
7375 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7376
7377         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
7378         test for conforming inttypes.h is both announced and cached.
7379
7380         * MODULES.html.sh (seen_modules, seen_files): New variables.
7381         (func_module): Rewrite to use a few less gnulib-tool and sed
7382         invocations.  Avoid a couple of quadratic algorithms for ...
7383         (missed_modules, missed_files): ... these, with ...
7384         (func_append, func_tmpdir): ... these new functions, from
7385         gnulib-tool.  Analogously, install traps for cleanup.
7386
7387         * tests/test-gc.c (main): Remove unused variables.
7388         * tests/test-read-file.c: Include stdlib.h, for 'free'.
7389
7390 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
7391
7392         * modules/inttostr (License): Change to LGPL.
7393
7394 2006-11-14  Eric Blake  <ebb9@byu.net>
7395
7396         * modules/tempname (License): Change to LGPL.
7397
7398 2006-11-14  Eric Blake  <ebb9@byu.net>
7399
7400         * doc/functions.texi (Function Portability): *printf functions on
7401         Cygwin now understand all POSIX size specifiers.
7402
7403 2006-11-14  Bruno Haible  <bruno@clisp.org>
7404
7405         * modules/c-ctype (License): Change to LGPL.
7406
7407 2006-11-12  Bruno Haible  <bruno@clisp.org>
7408
7409         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
7410         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
7411         for GNOME libraries, for which the include files are installed in
7412         subdirectories of $prefix/include.
7413
7414 2006-11-12  Bruno Haible  <bruno@clisp.org>
7415
7416         * m4/lib-link.m4: Require at least autoconf-2.54.
7417         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
7418         name to underscores for the --with option.
7419
7420 2006-11-13  Bruno Haible  <bruno@clisp.org>
7421
7422         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
7423         the tests directory.
7424         Reported by Ralf Wildenhues.
7425
7426 2006-11-13  Bruno Haible  <bruno@clisp.org>
7427
7428         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
7429         (func_emit_initmacro_end): Undo the override here.
7430         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
7431         Works around the famous automake error in coreutils.
7432
7433 2006-11-13  Eric Blake  <ebb9@byu.net>
7434
7435         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
7436         element, not its node.
7437
7438 2006-11-12  Bruno Haible  <bruno@clisp.org>
7439
7440         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
7441         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
7442
7443 2006-11-12  Bruno Haible  <bruno@clisp.org>
7444
7445         * gnulib-tool: New option --local-symlink.
7446         (func_usage): Document it.
7447         (lsymbolic): New variable.
7448         (func_import, func_create_testdir): If --symlink was not specified,
7449         test whether --local-symlink was specified and the file comes from
7450         the local_gnulib_dir.
7451
7452 2006-11-12  Bruno Haible  <bruno@clisp.org>
7453
7454         * gnulib-tool (func_ln): New function.
7455         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
7456
7457 2006-11-12  Bruno Haible  <bruno@clisp.org>
7458
7459         Finish support for source files in subdirectories.
7460         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
7461         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
7462         AUTOMAKE_OPTIONS.
7463         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
7464
7465 2006-11-12  Bruno Haible  <bruno@clisp.org>
7466
7467         * gnulib-tool (func_get_automake_snippet): Synthesize also an
7468         EXTRA_lib_SOURCES augmentation.
7469         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
7470
7471 2006-11-12  Jim Meyering  <jim@meyering.net>
7472
7473         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
7474         file descriptors.  This also averts a failure on systems with
7475         native openat support when a traversed directory lacks "x" access.
7476         * lib/fts_.h: Include "i-ring.h"
7477         (struct FTS) [fts_fd_ring]: New member.
7478         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
7479         (FCHDIR): Add parentheses.
7480         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
7481         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
7482         When descending, rather than simply closing the previous
7483         fts_cwd_fd value, push that file descriptor onto the ring.
7484         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
7485         (fts_open): Initialize the new fd_ring member.
7486         (fts_close): Clear the ring.
7487         (fts_safe_changedir): When possible, use our new fd_ring to skip
7488         the diropen and fstat and dev/ino comparison that would normally
7489         accompany a virtual `chdir ("..")'.
7490
7491         * modules/fts (Depends-on): Add i-ring.
7492         * modules/i-ring: New module.
7493         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
7494         * m4/i-ring.m4: New file.
7495
7496 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7497
7498         * gnulib-tool (func_create_testdir): Fix replacement of
7499         `build-aux' in configure.ac.  Run autotools in gltests
7500         subdirectory.
7501         (func_create_testdir, func_create_megatestdir, test): There is
7502         no need for '--force' in most autotool invocations in a new
7503         tree.  Actually fail the whole test if any of the tools, or the
7504         configure or make stages fail.
7505
7506         Sync from Automake.
7507         * build-aux/gnupload: Revert last change.  Add pointer to upload
7508         instructions of the GNU Maintenance Instructions.
7509         Suggestion by Karl Berry.
7510
7511 2006-11-10  Jim Meyering  <jim@meyering.net>
7512
7513         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
7514
7515 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
7516
7517         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
7518         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
7519         (bind_textdomain_codeset) [! ENABLE_NLS]:
7520         Evaluate all the arguments.  That way, callers get compatible behavior
7521         if the arguments have side effects.  Also, it avoids some GCC
7522         diagnostics in some cases; Joel E. Denny reported problems when Bison
7523         was configured with --enable-gcc-warnigs.
7524
7525 2006-11-10  Jim Meyering  <jim@meyering.net>
7526
7527         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
7528         relevant options in CFLAGS (like -O, -fno-inline) are taken into
7529         account.
7530
7531 2006-11-10  Jim Meyering  <jim@meyering.net>
7532
7533         * modules/inline: New file/module.
7534         * modules/xalloc (Files): Remove m4/inline.m4.
7535         (Depends-on): Add inline, instead.
7536         * modules/oset: Likewise.
7537         * modules/list: Likewise.
7538
7539 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
7540
7541         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
7542         Problem reported by Matthew Woehlke.
7543
7544 2006-11-09  Bruno Haible  <bruno@clisp.org>
7545
7546         * lib/tempname.c (gen_tempname): Remove variant that invokes
7547         __gen_tempname.
7548         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
7549         __gen_tempname.
7550
7551 2006-11-08  Bruno Haible  <bruno@clisp.org>
7552
7553         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
7554         to 'yes' instead of 'cross-compiling'.
7555
7556 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
7557
7558         * lib/quotearg.h (quotearg_free): New decl.
7559         * lib/quotearg.c (quotearg_free): New function.
7560         (slot0, nslots, slotvec0, slotvec):
7561         Now file-scope so that quotearg_free can get at them.
7562
7563 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7564
7565         Sync from Automake.
7566         * build-aux/gnupload: Add missing 'gnu' to example URL.
7567         Report by Karl Berry.
7568
7569 2006-11-08  Bruno Haible  <bruno@clisp.org>
7570
7571         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
7572         Suggested by Paul Eggert.
7573
7574 2006-11-08  Jim Meyering  <jim@meyering.net>
7575
7576         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
7577         It's already included if !_LIBC.
7578         (fts_safe_changedir): Add a comment.
7579
7580 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
7581
7582         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
7583         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
7584         Matthew Woehlke.
7585
7586         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
7587         definitions up, to avoid colliding with change below.
7588         (static_inline) [HAVE_INLINE]: New macro.
7589         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
7590         Provide extern decls when !HAVE_INLINE.  Do not define unless
7591         static_inline is defined, either by us or by xmalloc.c.  Use
7592         static_inline rather than static inline.
7593         (XCALLOC): Optimize sizeof(T) = 1 case.
7594         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
7595
7596 2006-11-07  Bruno Haible  <bruno@clisp.org>
7597
7598         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
7599         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
7600         AC_C_INLINE.
7601         * modules/xalloc (Files): Add m4/inline.m4.
7602
7603 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7604
7605         * README: Fix typo.
7606         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
7607         (Miscellanous Notes): ...from this.
7608
7609 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
7610
7611         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
7612         Mention that offsetof should be used instead of sizeof.
7613         From Bruno Haible.
7614
7615 2006-11-07  Bruno Haible  <bruno@clisp.org>
7616
7617         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
7618
7619 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7620
7621         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
7622         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
7623         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
7624         (gl_tree_add_before, gl_tree_add_after):
7625         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
7626         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
7627         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
7628         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
7629         (gl_linked_add_after, gl_linked_add_at): Likewise.
7630         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
7631         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
7632         (gl_tree_add_before, gl_tree_add_after): Likewise.
7633         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
7634         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
7635         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
7636
7637 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7638
7639         * lib/gl_oset.h: Use C comment style, not C++ comment style.
7640
7641 2006-11-06  Bruno Haible  <bruno@clisp.org>
7642
7643         * m4/inline.m4: New file.
7644         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
7645         * modules/list (Files): Add m4/inline.m4.
7646         * modules/oset (Files): Likewise.
7647
7648 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7649
7650         * lib/idcache.c: Include <stddef.h>, for offsetof.
7651         (struct userid.name): Change from char * to a flexible array member.
7652         All uses changed.
7653         * modules/idcache (Depends-on): Add flexmember.
7654
7655         * MODULES.html.sh (Core language properties): New module flexmember.
7656         * modules/flexmember, m4/flexmember.m4: New files.
7657
7658         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
7659         inline functions that are identical with the old xnmalloc_inline,
7660         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
7661         that we can avoid some unnecessary integer multiplications and
7662         divisions in the common case where the element size is known at
7663         compile time.
7664         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
7665         needed.
7666         (xnboundedmalloc): Remove.
7667         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
7668         arguments, for consistency with rest of this header.
7669         (xcharalloc): Rewrite using XNMALLOC.
7670         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
7671         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
7672         versions have been moved to lib/xalloc.h and renamed to be the
7673         non-*_inline versions.
7674         (xmalloc, xrealloc): Implement without reference to the xnmalloc
7675         and xnrealloc functions, since those functions are now inline and
7676         now call us.
7677         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
7678         renaming described above.
7679         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
7680         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
7681         captures the dependency in AC_C_INLINE.
7682
7683         New module canonicalize-lgpl, proposed by Charles Wilson in
7684         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
7685         with a few small changes afterwards.
7686         * MODULES.html.sh (File system functions): New module
7687         canonicalize-lgpl.
7688         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
7689         and canonicalize_file_name.
7690         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
7691         * modules/canonicalize-lgpl: New files.
7692
7693 2006-11-05  Bruno Haible  <bruno@clisp.org>
7694
7695         * gnulib-tool (func_import, func_create_testdir): Create directories
7696         also for files in subdirectories of lib/.
7697
7698 2006-11-05  Bruno Haible  <bruno@clisp.org>
7699
7700         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
7701         ANSI C compliant.
7702
7703 2006-11-03  Bruno Haible  <bruno@clisp.org>
7704
7705         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
7706         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
7707         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
7708         (xnboundedmalloc): New inline function.
7709         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
7710         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
7711         xmalloc.
7712         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
7713         xmalloc.
7714         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
7715         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
7716         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
7717         xmalloc.
7718         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7719         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
7720         xmalloc.
7721         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
7722         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7723         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
7724         xmalloc.
7725         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
7726         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
7727         gl_tree_add_after): Use XMALLOC instead of xmalloc.
7728         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
7729         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
7730         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
7731         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
7732
7733 2006-11-03  Bruno Haible  <bruno@clisp.org>
7734
7735         * lib/c-ctype.h [C++]: Define functions without name mangling.
7736         * lib/fwriteerror.h [C++]: Likewise.
7737         * lib/gcd.h [C++]: Likewise.
7738         * lib/linebreak.h [C++]: Likewise.
7739
7740 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
7741
7742         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
7743         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
7744         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
7745         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
7746         Check for functions and headers just once.
7747         Check for declaration of canonicalize_file_name.
7748         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
7749
7750 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7751
7752         * gnulib-tool (func_import): Fix typo in actioncmd.
7753
7754 2006-11-02  Bruno Haible  <bruno@clisp.org>
7755
7756         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
7757         newline sequence in the Makefile.am snippet as a space, like "make"
7758         does.
7759         Reported by Roger Persson <perrog@gmail.com>.
7760
7761 2006-11-01  Bruno Haible  <bruno@clisp.org>
7762
7763         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
7764         already declared in <string.h>.
7765         * lib/strcase.h (strncasecmp): Don't declare it if yes.
7766
7767 2006-11-01  Bruno Haible  <bruno@clisp.org>
7768
7769         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
7770         * lib/strcase.h: Include <string.h>.
7771         (strcasecmp): Define to rpl_strcasecmp here.
7772
7773 2006-11-01  Bruno Haible  <bruno@clisp.org>
7774
7775         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
7776
7777 2006-11-01  Eric Blake  <ebb9@byu.net>
7778
7779         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
7780
7781         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
7782
7783 2006-10-29  Bruno Haible  <bruno@clisp.org>
7784
7785         Make it compile in C++ mode.
7786         * lib/full-write.c (full_rw): Add a cast.
7787
7788 2006-11-01  Bruno Haible  <bruno@clisp.org>
7789
7790         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
7791         be POSIX compliant.
7792         Reported by Roger Persson <perrog@gmail.com>.
7793
7794 2006-11-01  Eric Blake  <ebb9@byu.net>
7795
7796         * lib/getopt_.h: Fix comments.
7797
7798 2006-10-31  Eric Blake  <ebb9@byu.net>
7799
7800         * modules/tmpdir (Depends-on): Add sys_stat.
7801         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
7802         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
7803         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
7804         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
7805         tempname.
7806
7807 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
7808
7809         Avoid some C++ diagnostics reported by Bruno Haible.
7810         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
7811         xmalloc.
7812         (quotearg_alloc): Use xcharalloc rather than xmalloc.
7813         (struct slotvec): Move to top level.
7814         (quotearg_n_options): Rewrite to avoid xmalloc.
7815         * lib/xalloc.h (xcharalloc): New function.
7816         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
7817         [defined __cplusplus]: Add function template that provides result
7818         type propagation.  This part of the change is from Bruno Haible.
7819
7820 2006-10-29  Bruno Haible  <bruno@clisp.org>
7821
7822         Make it compile in C++ mode.
7823         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
7824         * lib/strnlen1.c (strnlen1): Cast memchr result.
7825         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
7826         * lib/clean-temp.c (string_equals, string_hash): Add casts.
7827         (create_temp_dir): Rename local variable 'template'.
7828         (compile_csharp_using_sscli): Add cast.
7829         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
7830         * lib/findprog.c (find_in_path): Likewise.
7831         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
7832         * lib/wait-process.c (register_slave_subprocess): Likewise.
7833
7834 2006-10-22  Bruno Haible  <bruno@clisp.org>
7835
7836         * modules/tsearch: New file.
7837         * lib/tsearch.h: New file.
7838         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
7839         * m4/tsearch.m4: New file.
7840         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
7841
7842 2006-10-29  Eric Blake  <ebb9@byu.net>
7843
7844         * lib/arcfour.c: Assume config.h.
7845         * lib/arctwo.c: Likewise.
7846         * lib/base64.c: Likewise.
7847         * lib/check-version.c: Likewise.
7848         * lib/crc.c: Likewise.
7849         * lib/des.c: Likewise.
7850         * lib/gc-gnulib.c: Likewise.
7851         * lib/gc-libgcrypt.c: Likewise.
7852         * lib/gc-pbkdf2-sha1.c: Likewise.
7853         * lib/getaddrinfo.c: Likewise.
7854         * lib/getdelim.c: Likewise.
7855         * lib/getline.c: Likewise.
7856         * lib/hmac-md5.c: Likewise.
7857         * lib/hmac-sha1.c: Likewise.
7858         * lib/iconvme.c: Likewise.
7859         * lib/md2.c: Likewise.
7860         * lib/md4.c: Likewise.
7861         * lib/memxor.c: Likewise.
7862         * lib/read-file.c: Likewise.
7863         * lib/readline.c: Likewise.
7864         * lib/rijndael-alg-fst.c: Likewise.
7865         * lib/rijndael-api-fst.c: Likewise.
7866         * lib/xgetdomainname.c: Likewise.
7867
7868 2006-10-28  Eric Blake  <ebb9@byu.net>
7869
7870         * lib/xstrndup.c: Assume config.h.
7871
7872 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
7873
7874         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
7875         stat-macros.h is now for our own macros, whereas stat_h is for
7876         macros in the <sys/stat.h> name space.
7877         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
7878         (STAT_MACROS_H): Remove.
7879         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
7880         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
7881         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
7882         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
7883         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
7884         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
7885         Move these macros to ...
7886         * lib/stat_.h: here.  Don't include stat-macros.h.
7887         * lib/canonicalize.c: Don't include stat-macros.h.
7888         * lib/chown.c: Likewise.
7889         * lib/euidaccess.c: Likewise.
7890         * lib/file-type.c: Likewise.
7891         * lib/filemode.c: Likewise.
7892         * lib/glob.c: Likewise.
7893         * lib/isapipe.c: Likewise.
7894         * lib/lchown.c: Likewise.
7895         * lib/lstat.c: Likewise.
7896         * lib/mkdir-p.c: Likewise.
7897         * lib/rmdir.c: Likewise.
7898         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
7899         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
7900         unless mkdir isn't declared, to speed up 'configure'.
7901         Always create sys/stat.h, since it's unlikely any real sys/stat.h
7902         would define all the S_* symbols.
7903         * modules/canonicalize (Depends-on):
7904         Depend on sys_stat, not stat-macros.
7905         * modules/chown: Likewise.
7906         * modules/euidaccess: Likewise.
7907         * modules/filemode: Likewise.
7908         * modules/file-type: Likewise.
7909         * modules/glob: Likewise.
7910         * modules/isapipe: Likewise.
7911         * modules/lchown: Likewise.
7912         * modules/lstat: Likewise.
7913         * modules/mkancesdirs: Likewise.
7914         * modules/rmdir: Likewise.
7915         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
7916         * modules/modechange: Likewise.
7917         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
7918         (configure.ac): Remove gl_STAT_MACROS.
7919         * modules/sys_stat (Depends-on): Remove stat-macros.
7920
7921 2006-10-27  Bruno Haible  <bruno@clisp.org>
7922
7923         * m4/signed.m4: Remove file.
7924         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
7925         invocation.
7926         * modules/vasnprintf (Files): Remove m4/signed.m4.
7927
7928 2006-10-27  Bruno Haible  <bruno@clisp.org>
7929
7930         Update to GNU gettext 0.16.
7931         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
7932         m4/inttypes-h.m4, m4/signed.m4.
7933         * m4/gettext.m4: Update to GNU gettext 0.16.
7934         * m4/intl.m4: New file, from GNU gettext.
7935         * m4/intldir.m4: New file, from GNU gettext.
7936         * config/srclist.txt: Update
7937
7938 2006-10-27  Eric Blake  <ebb9@byu.net>
7939
7940         * MODULES.html.sh: Document tempname.
7941         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
7942         dependencies.
7943         (Files): Move lib/tempname.c...
7944         * modules/tempname: ...to this new module.
7945         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
7946         (gl_PREREQ_TEMPNAME): Move...
7947         * m4/tempname.m4: ...to this new file.
7948         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
7949         * modules/sys_stat (Depends-on): Add stat-macros.
7950         * lib/stat_.h (includes): Pick up stat macros.
7951         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
7952         if stat macros are broken.
7953         * lib/tempname.c (includes): No need to include "stat-macros.h".
7954         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
7955         (direxists, __path_search) [!_LIBC]: Don't compile these in
7956         gnulib; the tmpdir module covers that.
7957         * lib/tempname.h: New file.
7958
7959 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
7960
7961         * COPYING: Explain how gnulib-tool converts licence headers.
7962         Almost all wording by Eric Blake.
7963
7964 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
7965
7966         * lib/mbchar.h (is_basic_table): Make read-only.
7967         * lib/mbchar.c (is_basic_table): Likewise.
7968         Reported by John Darrington.
7969
7970 2006-10-25  Bruno Haible  <bruno@clisp.org>
7971
7972         * lib/progname.h (set_program_name): Undefine before defining.
7973
7974 2006-10-25  Bruno Haible  <bruno@clisp.org>
7975
7976         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
7977         false for non-gcc C++ compilers.
7978         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
7979
7980 2006-10-24  Bruno Haible  <bruno@clisp.org>
7981
7982         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
7983         iconv implementations like Irix iconv.
7984
7985 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7986
7987         * modules/vararrays: New file.
7988         * m4/vararrays.m4: New file, taken from diffutils.
7989         * MODULES.html.sh: New module vararrays.
7990
7991 2006-10-24  Karl Berry  <karl@gnu.org>
7992
7993         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
7994         Don't call GNU Unix.
7995
7996 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7997
7998         * users.txt: Add Libtool.
7999
8000         Sync from Libtool:
8001
8002         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8003
8004         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
8005         to gnulib's policy of including config.h unconditionally.
8006
8007 2006-10-24  Bruno Haible  <bruno@clisp.org>
8008
8009         * modules/wcwidth (Files): Add m4/wint_t.m4.
8010         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
8011         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
8012
8013 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8014
8015         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
8016         to pacify GCC with some -W flags enabled.  Problem reported by
8017         Bruno Haible.
8018
8019 2006-10-24  Jim Meyering  <jim@meyering.net>
8020
8021         * MODULES.html.sh: Remove uinttostr.  It's not a module.
8022         Reported by Karl Berry.
8023
8024 2006-10-23  Bruno Haible  <bruno@clisp.org>
8025
8026         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
8027
8028 2006-10-24  Bruno Haible  <bruno@clisp.org>
8029
8030         * lib/gl_list.h: Use C comment style, not C++ comment style.
8031
8032 2006-10-23  Eric Blake  <ebb9@byu.net>
8033
8034         * lib/getaddrinfo.c (includes): Add missing include.
8035
8036 2006-10-23  Bruno Haible  <bruno@clisp.org>
8037             Paul Eggert  <eggert@cs.ucla.edu>
8038
8039         Ability to rename obstack_free.
8040         * lib/obstack.h (__obstack_free): New macro. Declare instead of
8041         obstack_free.
8042         (obstack_free): Invoke the __obstack_free macro.
8043         * lib/obstack.c (obstack_free): Use __obstack_free macro.
8044
8045 2006-10-23  Bruno Haible  <bruno@clisp.org>
8046             Paul Eggert  <eggert@cs.ucla.edu>
8047
8048         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
8049         __argc, __argv from the declaration. (They are defined as macros on
8050         mingw.)
8051
8052 2006-10-22  Bruno Haible  <bruno@clisp.org>
8053
8054         * doc/gnulib-intro.texi: New file.
8055         * doc/gnulib.texi: Include it.
8056
8057 2006-10-21  Bruno Haible  <bruno@clisp.org>
8058
8059         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
8060         "Introduction", "Miscellanous Notes", "Particular Modules".
8061
8062 2006-10-21  Bruno Haible  <bruno@clisp.org>
8063
8064         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8065         Change mostlyclean-local rule to avoid sh syntax error from bash
8066         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
8067
8068 2006-10-23  Jim Meyering  <jim@meyering.net>
8069
8070         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
8071         in place of snprintf.
8072
8073         * modules/inttostr (Files): Add lib/uinttostr.c.
8074         * lib/uinttostr.c (inttostr): New file/function.
8075         * lib/inttostr.h (uinttostr): Declare.
8076         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
8077         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8078         Add uinttostr.
8079         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
8080
8081 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
8082
8083         * lib/canonicalize.c (ELOOP): Define if not already defined.
8084         Problem reported by Bruno Haible in
8085         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
8086
8087 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
8088
8089         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
8090         Problem reported by Perry Smith and Ville Laurikari.
8091
8092         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
8093         uses.
8094
8095 2006-10-19  Bruno Haible  <bruno@clisp.org>
8096
8097         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
8098         for mingw.
8099
8100 2006-10-19  Bruno Haible  <bruno@clisp.org>
8101
8102         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
8103         Needed for mingw.
8104
8105 2006-10-19  Bruno Haible  <bruno@clisp.org>
8106
8107         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
8108
8109 2006-10-19  Bruno Haible  <bruno@clisp.org>
8110
8111         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
8112         it.
8113
8114 2006-10-19  Bruno Haible  <bruno@clisp.org>
8115
8116         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
8117         invocation.
8118
8119 2006-10-19  Bruno Haible  <bruno@clisp.org>
8120
8121         * gnulib-tool (func_create_testdir): Don't include ftruncate and
8122         mountlist by default.
8123
8124 2006-10-16  Bruno Haible  <bruno@clisp.org>
8125
8126         * lib/c-strstr.c: Include c-strstr.h.
8127
8128 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
8129
8130         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
8131         in a slash.
8132
8133 2006-10-18  Bruno Haible  <bruno@clisp.org>
8134
8135         * lib/lock.h [C++]: Wrap definitions in extern "C".
8136
8137 2006-10-18  Bruno Haible  <bruno@clisp.org>
8138
8139         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
8140         gl_LIBOBJS list.
8141
8142 2006-10-18  Bruno Haible  <bruno@clisp.org>
8143
8144         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
8145
8146 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
8147
8148         * lib/xstrtol.h: Include gettext.h.
8149         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
8150         Problem reported by Eric Blake.
8151         * modules/xstrtol (Depends-on): Add gettext-h.
8152
8153 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
8154
8155         * lib/strftime.c (advance): New macro.
8156         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
8157         incomplete type, so you can't add 0 to it.  Problem and patch
8158         reported by Eelco Dolstra for dietlibc.
8159
8160 2006-10-18  Jim Meyering  <jim@meyering.net>
8161
8162         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
8163         type for a local, and rename it: s/up/user_proc/.
8164
8165 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
8166
8167         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
8168         READ_UTMP_USER_PROCESS.
8169         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
8170
8171 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
8172
8173         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
8174         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
8175
8176 2006-10-17  Eric Blake  <ebb9@byu.net>
8177
8178         * lib/sigprocmask.c (sigprocmask): Fix typo.
8179
8180         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
8181
8182         * modules/clean-temp (Makefile.am): Don't add to make output...
8183         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
8184         config.h.
8185
8186 2006-10-17  Bruno Haible  <bruno@clisp.org>
8187
8188         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
8189         differently if DEFAULT_TEXT_DOMAIN is set.
8190
8191 2006-10-16  Bruno Haible  <bruno@clisp.org>
8192
8193         * lib/clean-temp.c: Include fwriteerror.h.
8194
8195 2006-10-16  Bruno Haible  <bruno@clisp.org>
8196
8197         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
8198
8199 2006-10-16  Bruno Haible  <bruno@clisp.org>
8200
8201         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
8202         * lib/sigprocmask.h: Include <sys/types.h>.
8203         (sigset_t): Use the system's definition if present.
8204
8205 2006-10-17  Eric Blake  <ebb9@byu.net>
8206
8207         * lib/xvasprintf.c (includes): Assume config.h.
8208         * lib/xasprintf.c (includes): Likewise.
8209
8210 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8211
8212         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
8213         at least as wide as intmax_t.
8214
8215 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
8216
8217         (Imported from Automake.)
8218         * build-aux/gnupload: Update to version 1.1 of directive file.
8219
8220 2006-10-16  Eric Blake  <ebb9@byu.net>
8221
8222         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
8223         match Automake 1.10a.
8224
8225 2006-10-14  Bruno Haible  <bruno@clisp.org>
8226
8227         * modules/sigprocmask: New file.
8228         * lib/sigprocmask.h: New file.
8229         * lib/sigprocmask.c: New file.
8230         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
8231         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
8232         request sigprocmask.o.
8233         (gl_PREREQ_SIGPROCMASK): New macro.
8234         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
8235         (Depends-on): Add sigprocmask.
8236         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
8237         gt_SIGNALBLOCKING. Test for 'raise' only once.
8238         * lib/fatal-signal.c: Include sigprocmask.h.
8239         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
8240         unblock_fatal_signals): Define always.
8241         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
8242         sigprocmask.
8243
8244 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8245
8246         Sync from Automake.
8247         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
8248         which incorrectly sets the mode of an existing destination
8249         directory.  In some cases the unpatched install-sh could do the
8250         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
8251         system.  We hope this is rare in practice, but it's clearly worth
8252         fixing.  Problem reported by Alex Unleashed in
8253         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
8254         Also, don't bother to check for -m bugs unless we're using -m;
8255         suggested by Stepan Kasal.
8256
8257 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8258
8259         Sync from Automake.
8260         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
8261         `-c' flag, so they appear at the same position as in %FASTDEP%
8262         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
8263         which ignores unknown options only after the first non-option.
8264         Bug report against M4 by Nelson H. F. Beebe.
8265
8266 2006-10-13  Jim Meyering  <jim@meyering.net>
8267
8268         Fix a bug in yesterday's change.
8269         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
8270         p->fts_statp->st_dev would be used uninitialized.
8271         Ensures that we always call fts_stat on the very first entry.
8272         Miklos Szeredi reported that find -xdev stopped working.
8273
8274 2006-10-12  Bruno Haible  <bruno@clisp.org>
8275
8276         * gnulib-tool (func_get_automake_snippet): Append an automatically
8277         computed EXTRA_DIST augmentation.
8278         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
8279         * modules/alloca-opt (Makefile.am): Likewise.
8280         * modules/allocsa (Makefile.am): Likewise.
8281         * modules/arcfour (Makefile.am): Likewise.
8282         * modules/arctwo (Makefile.am): Likewise.
8283         * modules/argmatch (Makefile.am): Likewise.
8284         * modules/argz (Makefile.am): Likewise.
8285         * modules/atexit (Makefile.am): Likewise.
8286         * modules/backupfile (Makefile.am): Likewise.
8287         * modules/byteswap (Makefile.am): Likewise.
8288         * modules/c-strtod (Makefile.am): Likewise.
8289         * modules/c-strtold (Makefile.am): Likewise.
8290         * modules/calloc (Makefile.am): Likewise.
8291         * modules/canon-host (Makefile.am): Likewise.
8292         * modules/canonicalize (Makefile.am): Likewise.
8293         * modules/chdir-long (Makefile.am): Likewise.
8294         * modules/chdir-safer (Makefile.am): Likewise.
8295         * modules/check-version (Makefile.am): Likewise.
8296         * modules/chown (Makefile.am): Likewise.
8297         * modules/cloexec (Makefile.am): Likewise.
8298         * modules/close-stream (Makefile.am): Likewise.
8299         * modules/closeout (Makefile.am): Likewise.
8300         * modules/crc (Makefile.am): Likewise.
8301         * modules/csharpexec (Makefile.am): Likewise.
8302         * modules/cycle-check (Makefile.am): Likewise.
8303         * modules/des (Makefile.am): Likewise.
8304         * modules/dev-ino (Makefile.am): Likewise.
8305         * modules/dirfd (Makefile.am): Likewise.
8306         * modules/dirname (Makefile.am): Likewise.
8307         * modules/dup2 (Makefile.am): Likewise.
8308         * modules/eealloc (Makefile.am): Likewise.
8309         * modules/error (Makefile.am): Likewise.
8310         * modules/euidaccess (Makefile.am): Likewise.
8311         * modules/exclude (Makefile.am): Likewise.
8312         * modules/exitfail (Makefile.am): Likewise.
8313         * modules/fcntl-safer (Makefile.am): Likewise.
8314         * modules/fcntl (Makefile.am): Likewise.
8315         * modules/file-type (Makefile.am): Likewise.
8316         * modules/fileblocks (Makefile.am): Likewise.
8317         * modules/filemode (Makefile.am): Likewise.
8318         * modules/filenamecat (Makefile.am): Likewise.
8319         * modules/fnmatch (Makefile.am): Likewise.
8320         * modules/fopen-safer (Makefile.am): Likewise.
8321         * modules/fpending (Makefile.am): Likewise.
8322         * modules/fprintftime (Makefile.am): Likewise.
8323         * modules/free (Makefile.am): Likewise.
8324         * modules/fsusage (Makefile.am): Likewise.
8325         * modules/ftruncate (Makefile.am): Likewise.
8326         * modules/fts (Makefile.am): Likewise.
8327         * modules/gc-arcfour (Makefile.am): Likewise.
8328         * modules/gc-des (Makefile.am): Likewise.
8329         * modules/gc-hmac-md5 (Makefile.am): Likewise.
8330         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
8331         * modules/gc-md4 (Makefile.am): Likewise.
8332         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
8333         * modules/gc-sha1 (Makefile.am): Likewise.
8334         * modules/gc (Makefile.am): Likewise.
8335         * modules/getaddrinfo (Makefile.am): Likewise.
8336         * modules/getcwd (Makefile.am): Likewise.
8337         * modules/getdelim (Makefile.am): Likewise.
8338         * modules/getdomainname (Makefile.am): Likewise.
8339         * modules/getgroups (Makefile.am): Likewise.
8340         * modules/gethostname (Makefile.am): Likewise.
8341         * modules/gethrxtime (Makefile.am): Likewise.
8342         * modules/getline (Makefile.am): Likewise.
8343         * modules/getloadavg (Makefile.am): Likewise.
8344         * modules/getlogin_r (Makefile.am): Likewise.
8345         * modules/getndelim2 (Makefile.am): Likewise.
8346         * modules/getopt (Makefile.am): Likewise.
8347         * modules/getpagesize (Makefile.am): Likewise.
8348         * modules/getpass-gnu (Makefile.am): Likewise.
8349         * modules/getpass (Makefile.am): Likewise.
8350         * modules/getsubopt (Makefile.am): Likewise.
8351         * modules/gettime (Makefile.am): Likewise.
8352         * modules/gettimeofday (Makefile.am): Likewise.
8353         * modules/getugroups (Makefile.am): Likewise.
8354         * modules/getusershell (Makefile.am): Likewise.
8355         * modules/glob (Makefile.am): Likewise.
8356         * modules/group-member (Makefile.am): Likewise.
8357         * modules/hard-locale (Makefile.am): Likewise.
8358         * modules/hash (Makefile.am): Likewise.
8359         * modules/hmac-md5 (Makefile.am): Likewise.
8360         * modules/hmac-sha1 (Makefile.am): Likewise.
8361         * modules/human (Makefile.am): Likewise.
8362         * modules/idcache (Makefile.am): Likewise.
8363         * modules/imaxabs (Makefile.am): Likewise.
8364         * modules/imaxdiv (Makefile.am): Likewise.
8365         * modules/inet_ntop (Makefile.am): Likewise.
8366         * modules/inet_pton (Makefile.am): Likewise.
8367         * modules/intprops (Makefile.am): Likewise.
8368         * modules/inttostr (Makefile.am): Likewise.
8369         * modules/inttypes (Makefile.am): Likewise.
8370         * modules/isapipe (Makefile.am): Likewise.
8371         * modules/javaversion (Makefile.am): Likewise.
8372         * modules/lchmod (Makefile.am): Likewise.
8373         * modules/lchown (Makefile.am): Likewise.
8374         * modules/localcharset (Makefile.am): Likewise.
8375         * modules/long-options (Makefile.am): Likewise.
8376         * modules/lstat (Makefile.am): Likewise.
8377         * modules/malloc (Makefile.am): Likewise.
8378         * modules/mathl (Makefile.am): Likewise.
8379         * modules/mbchar (Makefile.am): Likewise.
8380         * modules/md2 (Makefile.am): Likewise.
8381         * modules/md4 (Makefile.am): Likewise.
8382         * modules/md5 (Makefile.am): Likewise.
8383         * modules/memcasecmp (Makefile.am): Likewise.
8384         * modules/memchr (Makefile.am): Likewise.
8385         * modules/memcmp (Makefile.am): Likewise.
8386         * modules/memcoll (Makefile.am): Likewise.
8387         * modules/memcpy (Makefile.am): Likewise.
8388         * modules/memmem (Makefile.am): Likewise.
8389         * modules/memmove (Makefile.am): Likewise.
8390         * modules/mempcpy (Makefile.am): Likewise.
8391         * modules/memrchr (Makefile.am): Likewise.
8392         * modules/memset (Makefile.am): Likewise.
8393         * modules/memxor (Makefile.am): Likewise.
8394         * modules/mkancesdirs (Makefile.am): Likewise.
8395         * modules/mkdir-p (Makefile.am): Likewise.
8396         * modules/mkdir (Makefile.am): Likewise.
8397         * modules/mkdtemp (Makefile.am): Likewise.
8398         * modules/mkstemp (Makefile.am): Likewise.
8399         * modules/mktime (Makefile.am): Likewise.
8400         * modules/modechange (Makefile.am): Likewise.
8401         * modules/mountlist (Makefile.am): Likewise.
8402         * modules/nanosleep (Makefile.am): Likewise.
8403         * modules/obstack (Makefile.am): Likewise.
8404         * modules/openat (Makefile.am): Likewise.
8405         * modules/pagealign_alloc (Makefile.am): Likewise.
8406         * modules/pathmax (Makefile.am): Likewise.
8407         * modules/physmem (Makefile.am): Likewise.
8408         * modules/poll (Makefile.am): Likewise.
8409         * modules/posixtm (Makefile.am): Likewise.
8410         * modules/posixver (Makefile.am): Likewise.
8411         * modules/putenv (Makefile.am): Likewise.
8412         * modules/quote (Makefile.am): Likewise.
8413         * modules/quotearg (Makefile.am): Likewise.
8414         * modules/raise (Makefile.am): Likewise.
8415         * modules/read-file (Makefile.am): Likewise.
8416         * modules/readline (Makefile.am): Likewise.
8417         * modules/readlink (Makefile.am): Likewise.
8418         * modules/readtokens (Makefile.am): Likewise.
8419         * modules/readutmp (Makefile.am): Likewise.
8420         * modules/realloc (Makefile.am): Likewise.
8421         * modules/regex (Makefile.am): Likewise.
8422         * modules/rename-dest-slash (Makefile.am): Likewise.
8423         * modules/rename (Makefile.am): Likewise.
8424         * modules/rijndael (Makefile.am): Likewise.
8425         * modules/rmdir (Makefile.am): Likewise.
8426         * modules/rpmatch (Makefile.am): Likewise.
8427         * modules/safe-read (Makefile.am): Likewise.
8428         * modules/safe-write (Makefile.am): Likewise.
8429         * modules/same-inode (Makefile.am): Likewise.
8430         * modules/same (Makefile.am): Likewise.
8431         * modules/save-cwd (Makefile.am): Likewise.
8432         * modules/savedir (Makefile.am): Likewise.
8433         * modules/setenv (Makefile.am): Likewise.
8434         * modules/settime (Makefile.am): Likewise.
8435         * modules/sha1 (Makefile.am): Likewise.
8436         * modules/sig2str (Makefile.am): Likewise.
8437         * modules/snprintf (Makefile.am): Likewise.
8438         * modules/stat-macros (Makefile.am): Likewise.
8439         * modules/stat-time (Makefile.am): Likewise.
8440         * modules/stdbool (Makefile.am): Likewise.
8441         * modules/stdint (Makefile.am): Likewise.
8442         * modules/stdlib-safer (Makefile.am): Likewise.
8443         * modules/stpcpy (Makefile.am): Likewise.
8444         * modules/stpncpy (Makefile.am): Likewise.
8445         * modules/strcase (Makefile.am): Likewise.
8446         * modules/strcasestr (Makefile.am): Likewise.
8447         * modules/strchrnul (Makefile.am): Likewise.
8448         * modules/strcspn (Makefile.am): Likewise.
8449         * modules/strdup (Makefile.am): Likewise.
8450         * modules/strerror (Makefile.am): Likewise.
8451         * modules/strftime (Makefile.am): Likewise.
8452         * modules/strndup (Makefile.am): Likewise.
8453         * modules/strnlen (Makefile.am): Likewise.
8454         * modules/strpbrk (Makefile.am): Likewise.
8455         * modules/strsep (Makefile.am): Likewise.
8456         * modules/strstr (Makefile.am): Likewise.
8457         * modules/strtod (Makefile.am): Likewise.
8458         * modules/strtoimax (Makefile.am): Likewise.
8459         * modules/strtok_r (Makefile.am): Likewise.
8460         * modules/strtol (Makefile.am): Likewise.
8461         * modules/strtoll (Makefile.am): Likewise.
8462         * modules/strtoul (Makefile.am): Likewise.
8463         * modules/strtoull (Makefile.am): Likewise.
8464         * modules/strtoumax (Makefile.am): Likewise.
8465         * modules/strverscmp (Makefile.am): Likewise.
8466         * modules/sys_socket (Makefile.am): Likewise.
8467         * modules/sys_stat (Makefile.am): Likewise.
8468         * modules/sysexits (Makefile.am): Likewise.
8469         * modules/time_r (Makefile.am): Likewise.
8470         * modules/timegm (Makefile.am): Likewise.
8471         * modules/timespec (Makefile.am): Likewise.
8472         * modules/tmpfile-safer (Makefile.am): Likewise.
8473         * modules/trim (Makefile.am): Likewise.
8474         * modules/unistd-safer (Makefile.am): Likewise.
8475         * modules/unlinkdir (Makefile.am): Likewise.
8476         * modules/unlocked-io (Makefile.am): Likewise.
8477         * modules/userspec (Makefile.am): Likewise.
8478         * modules/utime (Makefile.am): Likewise.
8479         * modules/utimecmp (Makefile.am): Likewise.
8480         * modules/utimens (Makefile.am): Likewise.
8481         * modules/vasnprintf (Makefile.am): Likewise.
8482         * modules/vasprintf (Makefile.am): Likewise.
8483         * modules/vsnprintf (Makefile.am): Likewise.
8484         * modules/xalloc (Makefile.am): Likewise.
8485         * modules/xgetcwd (Makefile.am): Likewise.
8486         * modules/xnanosleep (Makefile.am): Likewise.
8487         * modules/xreadlink (Makefile.am): Likewise.
8488         * modules/xstrtod (Makefile.am): Likewise.
8489         * modules/xstrtol (Makefile.am): Likewise.
8490         * modules/xstrtold (Makefile.am): Likewise.
8491         * modules/yesno (Makefile.am): Likewise.
8492         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
8493
8494 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8495
8496         * modules/error (Makefile.am): Distribute files through
8497         EXTRA_DIST, not lib_SOURCES.
8498
8499 2006-10-12  Eric Blake  <ebb9@byu.net>
8500
8501         * modules/error (Makefile.am): Distribute files in /lib.
8502         * modules/obstack (Makefile.am): Likewise.
8503
8504 2006-10-12  Bruno Haible  <bruno@clisp.org>
8505
8506         * modules/acl (Makefile.am): Distribute all files in lib/ through
8507         EXTRA_DIST.
8508         * modules/arcfour (Makefile.am): Likewise.
8509         * modules/arctwo (Makefile.am): Likewise.
8510         * modules/argmatch (Makefile.am): Likewise.
8511         * modules/argz (Makefile.am): Likewise.
8512         * modules/atexit (Makefile.am): Likewise.
8513         * modules/backupfile (Makefile.am): Likewise.
8514         * modules/c-strtod (Makefile.am): Likewise.
8515         * modules/c-strtold (Makefile.am): Likewise.
8516         * modules/calloc (Makefile.am): Likewise.
8517         * modules/canon-host (Makefile.am): Likewise.
8518         * modules/canonicalize (Makefile.am): Likewise.
8519         * modules/chdir-long (Makefile.am): Likewise.
8520         * modules/chdir-safer (Makefile.am): Likewise.
8521         * modules/check-version (Makefile.am): Likewise.
8522         * modules/chown (Makefile.am): Likewise.
8523         * modules/cloexec (Makefile.am): Likewise.
8524         * modules/close-stream (Makefile.am): Likewise.
8525         * modules/closeout (Makefile.am): Likewise.
8526         * modules/crc (Makefile.am): Likewise.
8527         * modules/cycle-check (Makefile.am): Likewise.
8528         * modules/des (Makefile.am): Likewise.
8529         * modules/dirfd (Makefile.am): Likewise.
8530         * modules/dirname (Makefile.am): Likewise.
8531         * modules/dup2 (Makefile.am): Likewise.
8532         * modules/euidaccess (Makefile.am): Likewise.
8533         * modules/exclude (Makefile.am): Likewise.
8534         * modules/exitfail (Makefile.am): Likewise.
8535         * modules/fcntl-safer (Makefile.am): Likewise.
8536         * modules/file-type (Makefile.am): Likewise.
8537         * modules/fileblocks (Makefile.am): Likewise.
8538         * modules/filemode (Makefile.am): Likewise.
8539         * modules/filenamecat (Makefile.am): Likewise.
8540         * modules/fnmatch (Makefile.am): Likewise.
8541         * modules/fopen-safer (Makefile.am): Likewise.
8542         * modules/fpending (Makefile.am): Likewise.
8543         * modules/fprintftime (Makefile.am): Likewise.
8544         * modules/free (Makefile.am): Likewise.
8545         * modules/fsusage (Makefile.am): Likewise.
8546         * modules/ftruncate (Makefile.am): Likewise.
8547         * modules/fts (Makefile.am): Likewise.
8548         * modules/gc (Makefile.am): Likewise.
8549         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
8550         * modules/getaddrinfo (Makefile.am): Likewise.
8551         * modules/getcwd (Makefile.am): Likewise.
8552         * modules/getdelim (Makefile.am): Likewise.
8553         * modules/getdomainname (Makefile.am): Likewise.
8554         * modules/getgroups (Makefile.am): Likewise.
8555         * modules/gethostname (Makefile.am): Likewise.
8556         * modules/gethrxtime (Makefile.am): Likewise.
8557         * modules/getline (Makefile.am): Likewise.
8558         * modules/getloadavg (Makefile.am): Likewise.
8559         * modules/getlogin_r (Makefile.am): Likewise.
8560         * modules/getopt (Makefile.am): Likewise.
8561         * modules/getpass (Makefile.am): Likewise.
8562         * modules/getpass-gnu (Makefile.am): Likewise.
8563         * modules/getsubopt (Makefile.am): Likewise.
8564         * modules/gettime (Makefile.am): Likewise.
8565         * modules/gettimeofday (Makefile.am): Likewise.
8566         * modules/getugroups (Makefile.am): Likewise.
8567         * modules/getusershell (Makefile.am): Likewise.
8568         * modules/glob (Makefile.am): Likewise.
8569         * modules/group-member (Makefile.am): Likewise.
8570         * modules/hard-locale (Makefile.am): Likewise.
8571         * modules/hash (Makefile.am): Likewise.
8572         * modules/hmac-md5 (Makefile.am): Likewise.
8573         * modules/hmac-sha1 (Makefile.am): Likewise.
8574         * modules/human (Makefile.am): Likewise.
8575         * modules/idcache (Makefile.am): Likewise.
8576         * modules/imaxabs (Makefile.am): Likewise.
8577         * modules/imaxdiv (Makefile.am): Likewise.
8578         * modules/inet_ntop (Makefile.am): Likewise.
8579         * modules/inet_pton (Makefile.am): Likewise.
8580         * modules/inttostr (Makefile.am): Likewise.
8581         * modules/isapipe (Makefile.am): Likewise.
8582         * modules/lchown (Makefile.am): Likewise.
8583         * modules/long-options (Makefile.am): Likewise.
8584         * modules/lstat (Makefile.am): Likewise.
8585         * modules/malloc (Makefile.am): Likewise.
8586         * modules/mathl (Makefile.am): Likewise.
8587         * modules/mbchar (Makefile.am): Likewise.
8588         * modules/md2 (Makefile.am): Likewise.
8589         * modules/md4 (Makefile.am): Likewise.
8590         * modules/md5 (Makefile.am): Likewise.
8591         * modules/memcasecmp (Makefile.am): Likewise.
8592         * modules/memchr (Makefile.am): Likewise.
8593         * modules/memcmp (Makefile.am): Likewise.
8594         * modules/memcoll (Makefile.am): Likewise.
8595         * modules/memcpy (Makefile.am): Likewise.
8596         * modules/memmem (Makefile.am): Likewise.
8597         * modules/memmove (Makefile.am): Likewise.
8598         * modules/mempcpy (Makefile.am): Likewise.
8599         * modules/memrchr (Makefile.am): Likewise.
8600         * modules/memset (Makefile.am): Likewise.
8601         * modules/memxor (Makefile.am): Likewise.
8602         * modules/mkancesdirs (Makefile.am): Likewise.
8603         * modules/mkdir (Makefile.am): Likewise.
8604         * modules/mkdir-p (Makefile.am): Likewise.
8605         * modules/mkdtemp (Makefile.am): Likewise.
8606         * modules/mkstemp (Makefile.am): Likewise.
8607         * modules/mktime (Makefile.am): Likewise.
8608         * modules/modechange (Makefile.am): Likewise.
8609         * modules/mountlist (Makefile.am): Likewise.
8610         * modules/nanosleep (Makefile.am): Likewise.
8611         * modules/openat (Makefile.am): Likewise.
8612         * modules/pagealign_alloc (Makefile.am): Likewise.
8613         * modules/physmem (Makefile.am): Likewise.
8614         * modules/poll (Makefile.am): Likewise.
8615         * modules/posixtm (Makefile.am): Likewise.
8616         * modules/posixver (Makefile.am): Likewise.
8617         * modules/putenv (Makefile.am): Likewise.
8618         * modules/quote (Makefile.am): Likewise.
8619         * modules/quotearg (Makefile.am): Likewise.
8620         * modules/raise (Makefile.am): Likewise.
8621         * modules/read-file (Makefile.am): Likewise.
8622         * modules/readline (Makefile.am): Likewise.
8623         * modules/readlink (Makefile.am): Likewise.
8624         * modules/readtokens (Makefile.am): Likewise.
8625         * modules/readutmp (Makefile.am): Likewise.
8626         * modules/realloc (Makefile.am): Likewise.
8627         * modules/regex (Makefile.am): Likewise.
8628         * modules/rename (Makefile.am): Likewise.
8629         * modules/rename-dest-slash (Makefile.am): Likewise.
8630         * modules/rijndael (Makefile.am): Likewise.
8631         * modules/rmdir (Makefile.am): Likewise.
8632         * modules/rpmatch (Makefile.am): Likewise.
8633         * modules/safe-read (Makefile.am): Likewise.
8634         * modules/safe-write (Makefile.am): Likewise.
8635         * modules/same (Makefile.am): Likewise.
8636         * modules/save-cwd (Makefile.am): Likewise.
8637         * modules/savedir (Makefile.am): Likewise.
8638         * modules/setenv (Makefile.am): Likewise.
8639         * modules/settime (Makefile.am): Likewise.
8640         * modules/sha1 (Makefile.am): Likewise.
8641         * modules/sig2str (Makefile.am): Likewise.
8642         * modules/snprintf (Makefile.am): Likewise.
8643         * modules/stdlib-safer (Makefile.am): Likewise.
8644         * modules/stpcpy (Makefile.am): Likewise.
8645         * modules/stpncpy (Makefile.am): Likewise.
8646         * modules/strcase (Makefile.am): Likewise.
8647         * modules/strcasestr (Makefile.am): Likewise.
8648         * modules/strchrnul (Makefile.am): Likewise.
8649         * modules/strcspn (Makefile.am): Likewise.
8650         * modules/strdup (Makefile.am): Likewise.
8651         * modules/strerror (Makefile.am): Likewise.
8652         * modules/strftime (Makefile.am): Likewise.
8653         * modules/strndup (Makefile.am): Likewise.
8654         * modules/strnlen (Makefile.am): Likewise.
8655         * modules/strpbrk (Makefile.am): Likewise.
8656         * modules/strsep (Makefile.am): Likewise.
8657         * modules/strstr (Makefile.am): Likewise.
8658         * modules/strtod (Makefile.am): Likewise.
8659         * modules/strtoimax (Makefile.am): Likewise.
8660         * modules/strtok_r (Makefile.am): Likewise.
8661         * modules/strtol (Makefile.am): Likewise.
8662         * modules/strtoll (Makefile.am): Likewise.
8663         * modules/strtoul (Makefile.am): Likewise.
8664         * modules/strtoull (Makefile.am): Likewise.
8665         * modules/strtoumax (Makefile.am): Likewise.
8666         * modules/strverscmp (Makefile.am): Likewise.
8667         * modules/time_r (Makefile.am): Likewise.
8668         * modules/timegm (Makefile.am): Likewise.
8669         * modules/tmpfile-safer (Makefile.am): Likewise.
8670         * modules/unistd-safer (Makefile.am): Likewise.
8671         * modules/unlinkdir (Makefile.am): Likewise.
8672         * modules/userspec (Makefile.am): Likewise.
8673         * modules/utime (Makefile.am): Likewise.
8674         * modules/utimecmp (Makefile.am): Likewise.
8675         * modules/utimens (Makefile.am): Likewise.
8676         * modules/vasnprintf (Makefile.am): Likewise.
8677         * modules/vasprintf (Makefile.am): Likewise.
8678         * modules/vsnprintf (Makefile.am): Likewise.
8679         * modules/xalloc (Makefile.am): Likewise.
8680         * modules/xgetcwd (Makefile.am): Likewise.
8681         * modules/xnanosleep (Makefile.am): Likewise.
8682         * modules/xreadlink (Makefile.am): Likewise.
8683         * modules/xstrtod (Makefile.am): Likewise.
8684         * modules/xstrtol (Makefile.am): Likewise.
8685         * modules/xstrtold (Makefile.am): Likewise.
8686         * modules/yesno (Makefile.am): Likewise.
8687
8688 2006-10-12  Jim Meyering  <jim@meyering.net>
8689
8690         * m4/getloadavg.m4: Revert the change below.
8691
8692         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
8693         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
8694         fail with a symlink, which is what coreutils' ./bootstrap now
8695         creates by default.
8696
8697 2006-10-12  Bruno Haible  <bruno@clisp.org>
8698
8699         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
8700         mingw.
8701         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
8702         MSVC and mingw explicitly.
8703
8704 2006-10-11  Simon Josefsson  <jas@extundo.com>
8705             Bruno Haible  <bruno@clisp.org>
8706
8707         Add support for multiple gnulib-tool invocations in the scope of a
8708         single configure.ac file.
8709         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
8710         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
8711         with the same contents as the _LIBADD variable.
8712         (func_emit_initmacro_start, func_emit_initmacro_end,
8713         func_emit_initmacro_done): New functions.
8714         (func_import, func_create_testdir): Invoke them. Allow the identifiers
8715         gl_LIBOBJS and gl_LTLIBOBJS.
8716
8717 2006-10-11  Bruno Haible  <bruno@clisp.org>
8718
8719         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
8720         (func_create_testdir): Don't create po/Makefile.am, don't invoke
8721         autoreconf. Instead, invoke autopoint explicitly but move back the
8722         *.m4 files from gnulib.
8723
8724 2006-10-11  Bruno Haible  <bruno@clisp.org>
8725
8726         * gnulib-tool (func_usage): Make module names after --create-testdir
8727         optional.
8728         (func_create_testdir): If no module was specified, use nearly all
8729         modules.
8730
8731 2006-10-12  Jim Meyering  <jim@meyering.net>
8732
8733         Big performance improvement for fts-based tools that use FTS_NOSTAT.
8734         Avoid spurious inode-mismatch problems on non-POSIX file systems.
8735         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
8736         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
8737         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
8738         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
8739         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
8740         (fts_set_stat_required): New function.
8741         (fts_open): Defer the calls to fts_stat, if possible or requested.
8742         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
8743         into fts_stat itself.
8744         (fts_read): Perform any required (deferred) fts_stat call.
8745         (fts_build): Likewise, for the directory we're about to open and read.
8746         In the readdir loop, carefully decide whether each entry will require
8747         an eventual call to fts_stat, using dirent.d_type info if available.
8748         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
8749         a command line argument into this function.  Update all callers.
8750         Map a return value of FTS_DOT to FTS_D for a command line argument.
8751         * modules/fts (Depends-on): Add d-type.  Alphabetize.
8752         Thanks to Miklos Szeredi for his tenacity and for the initial
8753         bug report about "find" failing on a FUSE-based file system.
8754
8755         * lib/fts.c (fts_open): Use consistent indentation.
8756
8757 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8758
8759         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
8760         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
8761         reported by Jim Meyering.  All uses of cache variables renamed
8762         to match Autoconf's.
8763         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
8764         the other one.
8765
8766         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
8767         Fix misspelling in diagnostic.
8768
8769 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8770
8771         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
8772         defined.  Problem reported by Matthew Woehlke.
8773
8774         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
8775         Add support for Tandem NonStop R series.
8776         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
8777         Use new macro.
8778
8779         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
8780         (has_trailing_slash): Omit size arg; all callers changed.
8781         Omit 'inline', since it doesn't help performance and we'd
8782         need to configure it.
8783         Don't count //, ///, etc. as having a trailing slash.
8784         As a side effect, this removes a C99ism reported by Matthew Woehlke.
8785         (rpl_rename_dest_slash): On failure, use rename's errno rather
8786         than (in some cases) an incorrect or junk errno.
8787         Simplify code by removing need to compute length; this does
8788         cause it to make two passes instead of one over the file name,
8789         but it's worth it.
8790
8791         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
8792         change, since Autoconf's version may no longer be appropriate now
8793         that we are using CVS Autoconf's version.  Add support for Tandem.
8794
8795 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8796             Bruno Haible  <bruno@clisp.org>
8797
8798         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
8799         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
8800         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
8801         gl_AC_TYPE_LONG_LONG.
8802
8803         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
8804         instead of HAVE_LONG_LONG.
8805         * lib/printf-args.c (printf_fetchargs): Likewise.
8806         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
8807         * lib/vasnprintf.c (VASNPRINTF): Likewise.
8808         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
8809         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
8810         gl_AC_TYPE_LONG_LONG.
8811
8812 2006-10-11  Bruno Haible  <bruno@clisp.org>
8813
8814         * m4/longlong.m4: Add comments.
8815         * m4/ulonglong.m4: Likewise.
8816
8817 2006-10-10  Bruno Haible  <bruno@clisp.org>
8818
8819         Make it possible to #define stpcpy, strdup to aliases.
8820         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
8821         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
8822
8823 2006-10-10  Bruno Haible  <bruno@clisp.org>
8824
8825         Make it possible to #define gcd to an alias.
8826         * lib/gcd.c: Include config.h.
8827
8828 2006-10-10  Bruno Haible  <bruno@clisp.org>
8829
8830         Make it possible to #define c_isascii to an alias.
8831         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
8832         defined. Undefine the macros before defining them, to avoid gcc
8833         warnings.
8834         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
8835         define NO_C_CTYPE_MACROS early.
8836
8837 2006-10-10  Bruno Haible  <bruno@clisp.org>
8838
8839         Make it possible to #define set_program_name to an alias.
8840         * lib/progname.c: Don't undefine set_program_name; instead, undefine
8841         ENABLE_RELOCATABLE early.
8842
8843 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8844
8845         Port to Tandem NSK OSS, which has 64-bit signed int but at most
8846         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
8847         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
8848         More generally, don't assume that 64-bit signed int is available
8849         if unsigned int is, and vice versa.
8850         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
8851         unsigned symbols, not on their signed counterparts.
8852         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
8853         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
8854         (UINT64_C, UINTMAX_C):
8855         Likewise.
8856         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
8857         unsigned counterparts.
8858         (Have_long_long, Unsigned): New macros.
8859         (Int): Renamed from INT.
8860         (strtoimax): Use the new macros.
8861         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
8862         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
8863         * modules/inttypes (inttypes.h): Substitute
8864         HAVE_UNSIGNED_LONG_LONG_INT.
8865         * modules/stdint (stdint.h): Likewise.
8866         (Files): Add m4/ulonglong.m4.
8867
8868 2006-10-10  Bruno Haible  <bruno@clisp.org>
8869
8870         Fix a gcc -Wshadow warning.
8871         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
8872         to 'bucket'.
8873         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
8874         gl_linked_indexof_from_to): Likewise.
8875         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
8876         Likewise.
8877         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
8878         Likewise.
8879         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
8880         Reported by Eric Blake.
8881
8882 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
8883
8884         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
8885         for NetBSD.  Problem reported by Bruno Haible.
8886
8887 2006-10-09  Jim Meyering  <jim@meyering.net>
8888
8889         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
8890         Patch from Bruno Haible.
8891
8892 2006-10-09  Jim Meyering  <jim@meyering.net>
8893
8894         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
8895         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
8896         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
8897
8898 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
8899
8900         Don't include <config.h> twice; this doesn't work in some cases,
8901         e.g., when config.h has "#define intmax_t long long int" and
8902         we include <config.h>, <inttypes.h>, <config.h> in that order.
8903         Problem reported by Matthew Woehlke in:
8904         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
8905         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
8906         * lib/fts-cycle.c: Don't include config.h.
8907         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
8908         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
8909         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
8910         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
8911         inttypes.h.
8912         * lib/xstrtoumax.c: Likewise.
8913         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
8914         __strtol and the like, so that this module is more like its siblings.
8915         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
8916         Remove; no longer needed now that we assume gnulib inttypes.h.
8917
8918 2006-10-08  Bruno Haible  <bruno@clisp.org>
8919
8920         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
8921         option.
8922
8923 2006-10-07  Jim Meyering  <jim@meyering.net>
8924
8925         * modules/inttypes (inttypes.h): Revert what seems to have been
8926         an inadvertent part of today's change: use "|", not "/" in the
8927         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
8928
8929 2006-10-07  Bruno Haible  <bruno@clisp.org>
8930
8931         * modules/sublist: New file.
8932
8933 2006-10-07  Bruno Haible  <bruno@clisp.org>
8934
8935         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
8936         * modules/argz (argz.h): Likewise.
8937         * modules/arpa_inet (arpa/inet.h): Likewise.
8938         * modules/byteswap (byteswap.h): Likewise.
8939         * modules/configmake (configmake.h): Likewise.
8940         * modules/fcntl (fcntl.h): Likewise.
8941         * modules/fnmatch (fnmatch.h): Likewise.
8942         * modules/getopt (getopt.h): Likewise.
8943         * modules/glob (glob.h): Likewise.
8944         * modules/inttypes (inttypes.h): Likewise.
8945         * modules/netinet_in (netinet/in.h): Likewise.
8946         * modules/poll (poll.h): Likewise.
8947         * modules/stdbool (stdbool.h): Likewise.
8948         * modules/stdint (stdint.h): Likewise.
8949         * modules/sys_select (sys/select.h): Likewise.
8950         * modules/sys_socket (sys/socket.h): Likewise.
8951         * modules/sys_stat (sys/stat.h): Likewise.
8952         * modules/sysexits (sysexits.h): Likewise.
8953         * modules/unistd (unistd.h): Likewise.
8954         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8955         Add a "DO NOT EDIT" comment to the generated file.
8956         (func_import): Likewise for gnulib-comp.m4.
8957
8958 2006-10-07  Bruno Haible  <bruno@clisp.org>
8959
8960         * lib/gl_sublist.h: New file.
8961         * lib/gl_sublist.c: New file.
8962
8963 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8964
8965         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
8966         name (relative to the original working directory) and the file
8967         name component (relative to the temporary working directory).  All
8968         callers changed.
8969         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
8970         * lib/mkdir-p.c (make_dir_parents): Likewise.
8971         * lib/mkdir-p.h (make_dir_parents): Likewise.
8972
8973 2006-10-06  Eric Blake  <ebb9@byu.net>
8974
8975         Define several macros for use by the clean-temp module.
8976         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
8977         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
8978         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
8979
8980         * lib/clean-temp.h (close_stream_temp): New declaration.
8981         * lib/clean-temp.c (includes): Pull in headers according to what
8982         other modules are in use.
8983         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
8984
8985 2006-10-06  Bruno Haible  <bruno@clisp.org>
8986
8987         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
8988         instead of fopen, fwriteerror.
8989
8990 2006-10-06  Bruno Haible  <bruno@clisp.org>
8991
8992         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
8993         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
8994         int.
8995         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
8996         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
8997         Return an error indicator.
8998         Suggested by Eric Blake.
8999
9000 2006-10-06  Bruno Haible  <bruno@clisp.org>
9001
9002         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
9003         Reported by Eric Blake.
9004
9005 2006-10-06  Bruno Haible  <bruno@clisp.org>
9006
9007         * modules/closeout (Description): Mention stderr too.
9008
9009 2006-10-06  Bruno Haible  <bruno@clisp.org>
9010         and Paul Eggert  <eggert@cs.ucla.edu>
9011
9012         * lib/closeout.c (close_stdout): Also close stderr.
9013         * lib/closeout.h: Update comment.
9014
9015 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9016
9017         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
9018         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
9019         * lib/dirchownmod.c: Include lchown.h.
9020         * lib/lchown.c: Don't include files that lchown.h now includes.
9021         Don't declare chown, since lchown.h now does that.
9022         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
9023         (lchown): Define to rpl_chown if lchown is declared but
9024         does not exist.  Declare using a prototype if lchown is not
9025         declared.  Add a copyright notice.
9026         * lib/mkstemp.h: Include <unistd.h>.
9027         * lib/openat.c: Include lchown.h.
9028
9029         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
9030         we now test for that separately.
9031         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
9032         rather than O_NOFOLLOW, when testing whether it's possible to
9033         avoid a race condition reliably.
9034         * lib/savewd.c (savewd_chdir): Likewise.
9035
9036         Remove macros that are no longer needed now that stdint.h is
9037         reliable.
9038         * lib/fsusage.c (UINTMAX_MAX): Remove.
9039         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
9040         * lib/utimecmp.c (SIZE_MAX): Remove.
9041
9042         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
9043
9044         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
9045         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
9046         O_NOATIME works.
9047
9048 2006-10-05  Bruno Haible  <bruno@clisp.org>
9049
9050         * lib/gl_list.h (gl_sortedlist_search_from_to,
9051         gl_sortedlist_indexof_from_to): New declarations.
9052         (gl_list_implementation): New fields sortedlist_search_from_to,
9053         sortedlist_indexof_from_to.
9054         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
9055         inline functions.
9056         * lib/gl_list.c (gl_sortedlist_search_from_to,
9057         gl_sortedlist_indexof_from_to): New functions.
9058         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
9059         function.
9060         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
9061         (gl_array_sortedlist_search_from_to): New function.
9062         (gl_array_list_implementation): Update.
9063         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
9064         function.
9065         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
9066         (gl_carray_sortedlist_search_from_to): New function.
9067         (gl_carray_list_implementation): Update.
9068         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
9069         gl_linked_sortedlist_indexof_from_to): New functions.
9070         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
9071         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
9072         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
9073         gl_tree_sortedlist_indexof_from_to): New functions.
9074         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
9075         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
9076         Update.
9077         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
9078         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
9079         Update.
9080
9081 2006-10-05  Bruno Haible  <bruno@clisp.org>
9082
9083         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
9084         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
9085         (struct gl_list_implementation): Add fields search_from_to,
9086         indexof_from_to. Remove fields search, indexof.
9087         (gl_list_search): Use the search_from_to method.
9088         (gl_list_search_from, gl_list_search_from_to): New functions.
9089         (gl_list_indexof): Use the indexof_from_to method.
9090         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
9091         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
9092         (gl_list_search_from, gl_list_search_from_to): New functions.
9093         (gl_list_indexof): Use the indexof_from_to method.
9094         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
9095         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
9096         gl_array_indexof. Add start_index, end_index arguments.
9097         (gl_array_search_from_to): Renamed from gl_array_search. Add
9098         start_index, end_index arguments.
9099         (gl_array_remove, gl_array_list_implementation): Update.
9100         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
9101         gl_carray_indexof. Add start_index, end_index arguments.
9102         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
9103         start_index, end_index arguments.
9104         (gl_carray_remove, gl_carray_list_implementation): Update.
9105         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
9106         gl_linked_search. Add start_index, end_index arguments.
9107         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
9108         start_index, end_index arguments.
9109         (gl_linked_remove): Update.
9110         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
9111         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
9112         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
9113         field to 'size_t'.
9114         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
9115         gl_tree_search. Add start_index, end_index arguments.
9116         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
9117         start_index, end_index arguments.
9118         (gl_tree_remove): Update.
9119         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
9120         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
9121         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
9122         function.
9123         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
9124         gl_tree_search. Add start_index, end_index arguments.
9125         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
9126         start_index, end_index arguments.
9127         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
9128         Update.
9129         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
9130
9131 2006-10-05  Bruno Haible  <bruno@clisp.org>
9132
9133         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
9134
9135         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
9136         fwriteerror_temp): New declarations.
9137         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
9138         (descriptors): New variable.
9139         (cleanup): First, close the descriptors.
9140         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
9141         fclose_temp, fwriteerror_temp): New functions.
9142
9143 2006-10-04  Jim Meyering  <jim@meyering.net>
9144
9145         * lib/fts.c (fts_open): Tiny comment change.
9146
9147 2006-10-04  Bruno Haible  <bruno@clisp.org>
9148
9149         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
9150         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
9151         gl_LOCK_BODY.
9152         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
9153         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
9154         gl_LOCK_EARLY_BODY.
9155         (gl_LOCK): Require gl_LOCK_BODY.
9156
9157 2006-10-04  Bruno Haible  <bruno@clisp.org>
9158
9159         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
9160         (gl_oset_search_atleast): New declaration.
9161         (struct gl_oset_implementation): Add field 'search_atleast'.
9162         (gl_oset_search_atleast): New inline function.
9163         * lib/gl_oset.c (gl_oset_search_atleast): New function.
9164         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
9165         (gl_array_oset_implementation): Update.
9166         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
9167         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
9168         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
9169
9170 2006-10-04  Bruno Haible  <bruno@clisp.org>
9171
9172         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
9173
9174 2006-10-03  Bruno Haible  <bruno@clisp.org>
9175
9176         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
9177         from gl_avltreehash_list_implementation.
9178
9179 2006-10-03  Bruno Haible  <bruno@clisp.org>
9180
9181         * lib/gl_oset.c (gl_oset_add): Fix return type.
9182
9183 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
9184
9185         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
9186
9187 2006-10-02  Eric Blake  <ebb9@byu.net>
9188
9189         * modules/strnlen (Depends-on): Add extensions.
9190
9191 2006-10-02  Eric Blake  <ebb9@byu.net>
9192
9193         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
9194         definition in 2.60+.
9195
9196 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
9197
9198         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
9199         checks.
9200
9201 2006-10-02  Bruno Haible  <bruno@clisp.org>
9202
9203         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
9204         to the AUTOMAKE_OPTIONS.
9205         Reported by Jim Meyering.
9206
9207 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9208
9209         Work around bug in Solaris 10 /proc file system:
9210         /proc/self/fd/NNN/.. isn't the parent directory of
9211         the directory whose file descriptor is NNN.  This needs to
9212         be worked around at run time, not compile time, since a
9213         program might be built on Solaris 8, where things work, and
9214         run on Solaris 10.
9215         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
9216         to use the following interface instead:
9217         (OPENAT_BUFFER_SIZE): New macro.
9218         (openat_proc_name): New function.
9219         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
9220         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
9221         Likewise.
9222         * lib/openat-proc.c: New file.
9223         * modules/openat (Files): Add lib/openat-proc.c.
9224         (Depends-on): Add same-inode, stdbool.
9225         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
9226
9227 2006-09-29  Bruno Haible  <bruno@clisp.org>
9228
9229         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
9230         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
9231         argument. Set stdout_closed before testing for ferror, not after.
9232         (fwriteerror, fwriteerror_no_ebadf): New functions.
9233
9234 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9235
9236         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
9237
9238 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
9239
9240         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
9241         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
9242
9243 2006-09-28  Jim Meyering  <jim@meyering.net>
9244
9245         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
9246         Include <unistd.h>.
9247
9248 2006-09-28  Bruno Haible  <bruno@clisp.org>
9249
9250         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
9251         * modules/linkedhash-list (Depends-on): Likewise.
9252         * modules/rbtreehash-list (Depends-on): Likewise.
9253
9254 2006-09-28  Bruno Haible  <bruno@clisp.org>
9255
9256         * lib/strndup.h: Simplify the redefinition of strndup.
9257         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
9258         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
9259
9260 2006-09-28  Bruno Haible  <bruno@clisp.org>
9261
9262         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
9263         * lib/gl_linkedhash_list.c: Likewise.
9264         * lib/gl_rbtreehash_list.c: Likewise.
9265
9266 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9267
9268         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
9269         getaddrinfo.
9270
9271         * lib/__fpending.h: Don't include <stdio_ext.h> unless
9272         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
9273         it causes <stdio_ext.h> to cause a compile-time error.
9274         Problem reported by Nelson H. F. Beebe.
9275         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
9276         of HAVE_DECL___PENDING.
9277
9278         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
9279         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
9280         declaration.
9281
9282 2006-09-27  Jim Meyering  <jim@meyering.net>
9283
9284         This file could end up with a definition for a function
9285         named __strndup, rather than rpl_strndup on a system with
9286         incomplete weak_alias support.
9287         * lib/strndup.c (strndup): Rename from __strndup.
9288         Remove #defines that used to map __strndup to strndup.
9289         Don't use K&R prototypes.
9290         Remove LIBC-related code, since this file is not sync'd with glibc.
9291         * lib/strndup.h: Revamp, accordingly.
9292         * m4/strndup.m4: Modernize.
9293
9294 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9295
9296         * modules/savewd (Depends-on): Add 'raise'.
9297         * lib/savewd.c: Include <signal.h>, for 'raise'.
9298
9299 2006-09-26  Jim Meyering  <jim@meyering.net>
9300
9301         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
9302         when we detect Darwin 8.7.0's acl_get_file bug.
9303         Rearrange to perform the new (below) run-test while $LIBS
9304         contains any acl-related library.  Set USE_ACL at the end.
9305         (gl_ACL_GET_FILE): New function.
9306
9307 2006-09-26  Eric Blake  <ebb9@byu.net>
9308
9309         * lib/verror.c: Include <config.h> unconditionally.
9310
9311 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
9312
9313         * modules/clock-time (Maintainer): Add self.
9314         * modules/getlogin_r (Depends-on): Add extensions.
9315
9316 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9317
9318         * modules/clock-time: New module.
9319         * modules/nanosleep (Depends-on): Add clock-time.
9320         * modules/gethrxtime (Depends-on): Likewise.
9321         * modules/gettime (Depends-on): Likewise.
9322         * modules/settime (Depends-on): Likewise.
9323
9324         * modules/fts-lgpl: Depend on openat.
9325         * modules/mkancesdirs: Depend on savewd.
9326         * modules/mkdir-p: Likewise.
9327
9328 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9329
9330         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
9331
9332         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
9333         `gl_have_arbitrary_file_name_length_limit' to
9334         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
9335         actually works between configure runs.
9336
9337 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9338             Bruno Haible  <bruno@clisp.org>
9339
9340         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
9341
9342 2006-09-25  Jim Meyering  <jim@meyering.net>
9343
9344         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
9345         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
9346
9347 2006-09-25  Eric Blake  <ebb9@byu.net>
9348
9349         * gnulib-tool (func_import, func_create_testdir): Fix typos in
9350         exec's in 2006-09-18 patch when shuffling fds.
9351
9352 2006-09-25  Bruno Haible  <bruno@clisp.org>
9353
9354         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
9355         Reported by Jim Meyering.
9356
9357 2006-09-24  Jim Meyering  <jim@meyering.net>
9358
9359         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
9360         compare a pointer against a literal "0".  That caused failures with
9361         at least HP-UX's hpcc.
9362
9363 2006-09-22  Simon Josefsson  <jas@extundo.com>
9364
9365         * modules/gc-sha1:
9366         * modules/gc-md4:
9367         * modules/gc-hmac-sha1:
9368         * modules/gc-hmac-md5:
9369         * modules/gc-des:
9370         * modules/gc-arcfour: Distribute more files.
9371
9372 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9373
9374         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
9375         (gl_linked_iterator_from_to): Initialize struct completely.
9376         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
9377         (gl_tree_iterator_from_to): Likewise
9378         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
9379         * lib/gl_array_list.c [lint] (gl_array_iterator)
9380         (gl_array_iterator_from_to): Likewise.
9381         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
9382         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
9383         (gl_carray_iterator_from_to): Likewise.
9384
9385         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
9386         * lib/md4.c (md4_process_block): Remove unused variable.
9387         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
9388         parentheses for clarity.
9389
9390 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9391
9392         * modules/bison-i18n (Depends-on): Add gettext.
9393
9394 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9395
9396         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
9397         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
9398         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
9399         also add missing comma that caused broken test.
9400         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
9401         stdlib.h, for `abort'.
9402         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
9403         variables.
9404         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
9405         include unistd.h if present, for `rmdir'.
9406         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
9407         variables.
9408         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
9409         in the process include standard headers for prototypes.
9410         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
9411         gets declared on GNU/Linux.
9412         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
9413         unistd.h, for `rmdir'.
9414         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
9415
9416         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
9417         always true.
9418         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
9419
9420         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
9421
9422 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9423
9424         * gnulib-tool (func_version): Create output all at once.  This
9425         may help avoid triggering unnecessary SIGPIPEs, and at any
9426         rate it doesn't hurt.
9427
9428 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9429             Bruno Haible  <bruno@clisp.org>
9430
9431         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
9432         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
9433         * m4/signed.m4 (bh_C_SIGNED): Likewise.
9434
9435         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
9436         (gl_FUNC_VASPRINTF): Invoke it.
9437
9438 2006-09-22  Bruno Haible  <bruno@clisp.org>
9439
9440         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
9441         getloadavg.c as first argument.
9442
9443 2006-09-22  Bruno Haible  <bruno@clisp.org>
9444
9445         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
9446         at the beginning of the gl_INIT macro.
9447         * modules/getloadavg (configure.ac): Pass $gl_source_base to
9448         gl_GETLOADAVG.
9449
9450 2006-09-22  Bruno Haible  <bruno@clisp.org>
9451
9452         * gnulib-tool (func_create_megatestdir): Don't include the config-h
9453         module.
9454         Suggested by Ralf Wildenhues.
9455
9456 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
9457
9458         Import this patch from libc:
9459
9460         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
9461
9462         * lib/regex_internal.c (re_string_reconstruct): Handle
9463         offset < pstr->valid_raw_len && pstr->offsets_needed case.
9464         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
9465         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
9466         re_string_context_at.
9467
9468         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
9469         now requires it.
9470         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
9471         gl_REGEX now does it for us.
9472         (gl_REGEX): Add test taken from
9473         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
9474
9475         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
9476         Check that large offsets work.  Modernize Autoconf usages.
9477         Prefer "yes" to mean a good thing rather than a bad.
9478         Don't put "#define mkstemp" in config.h, as this might interfere
9479         with standard system headers that "#define mkstemp mkstemp64".
9480
9481         * modules/mkstemp (Depends-on): Add extensions, so that
9482         mkstemp is visible on some platforms.
9483         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
9484         (Include): Change to "mkstemp.h" from <stdlib.h>.
9485         (Files): Add mkstemp.h.
9486
9487         * lib/mkstemp.h: New file, since some standard headers
9488         #define mkstemp.
9489         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
9490         Include "mkstemp.h".
9491         Make the _LIBC code resemble glibc original more,
9492         e.g., use K&R style.
9493         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
9494         (mkstemp): Remove, since mkstemp.h does this for us.
9495         * lib/stdlib--.h: Include mkstemp.h.
9496
9497         Import this patch from libc:
9498
9499         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
9500
9501         * lib/tempname.c (__gen_tempname): Change attempts_min
9502         into a macro.  Use preprocessor to decide how to initialize
9503         attempts [Coverity CID 67].
9504
9505 2006-09-20  Bruno Haible  <bruno@clisp.org>
9506
9507         * lib/mkdtemp.c: Import from libc.
9508         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
9509                 * sysdeps/posix/tempname.c (__gen_tempname): Change
9510                 attempts_min into a macro.  Use preprocessor to decide how to
9511                 initialize attempts [Coverity CID 67].
9512         2001-11-27  Paul Eggert  <eggert@twinsun.com>
9513                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
9514                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
9515
9516 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9517
9518         * gnulib-tool (func_exit): New function, to allow to pass the
9519         exit status portably through the trap.  Use everywhere.
9520         (--help, --version): Signal a write error.
9521         (trap): catch SIGPIPE, for write errors.
9522         Exit at the end of the trap, with the correct exit status.
9523
9524 2006-09-19  Karl Berry  <karl@gnu.org>
9525
9526         * doc/gnulib.texi: note about the license texinfo files.
9527
9528 2006-09-19  Eric Blake  <ebb9@byu.net>
9529
9530         * gnulib-tool: Avoid space-tab.
9531
9532 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
9533
9534         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
9535         that prevented coreutils 6.1 from building.  Problem reported
9536         by Petter Reinholdtsen.
9537
9538 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
9539
9540         * gnulib-tool (avoidlist): Fix typo that broke options like
9541         --avoid=lock that are used by coreutils bootstrap.
9542
9543 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
9544
9545         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
9546         more systematically.
9547
9548 2006-09-18  Jim Meyering  <jim@meyering.net>
9549
9550         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
9551
9552 2006-09-18  Bruno Haible  <bruno@clisp.org>
9553
9554         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
9555
9556 2006-09-18  Bruno Haible  <bruno@clisp.org>
9557
9558         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
9559         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
9560         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
9561         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
9562         * m4/gettext.m4: Require autoconf >= 2.52.
9563         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
9564         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
9565         of gl_cv_header_inttypes_h.
9566
9567 2006-09-18  Bruno Haible  <bruno@clisp.org>
9568
9569         * lib/javaversion.c: Include configmake.h.
9570
9571 2006-09-18  Bruno Haible  <bruno@clisp.org>
9572
9573         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
9574         avoid that the while loops be executed in a subshell.
9575
9576 2006-09-18  Bruno Haible  <bruno@clisp.org>
9577
9578         * MODULES.html.sh (func_module): Break long lines.
9579         Suggested by Bruce Korb <bkorb@gnu.org>.
9580
9581 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9582
9583         Speed up by a factor of 1.12.
9584         * gnulib-tool (nl): New variable.
9585         (func_import): Rewrite include directive extraction to only read each
9586         directive once.
9587
9588 2006-09-17  Bruno Haible  <bruno@clisp.org>
9589
9590         * modules/javaversion (Makefile.am): Remove DEFS setting.
9591         (Depends-on): Add configmake, for PKGDATADIR definition.
9592
9593 2006-09-17  Bruno Haible  <bruno@clisp.org>
9594
9595         * gnulib-tool (func_create_testdir): Rewrite all files at once.
9596
9597 2006-09-17  Bruno Haible  <bruno@clisp.org>
9598
9599         * gnulib-tool (func_append): New function, stolen from libtool.m4.
9600         (func_modules_transitive_closure, func_modules_add_dummy,
9601         func_modules_to_filelist, func_import, func_create_testdir,
9602         func_create_megatestdir, ...): Use it wherever possible.
9603         Suggested by Ralf Wildenhues.
9604
9605 2006-09-16  Karl Berry  <karl@gnu.org>
9606
9607         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
9608         to avoid sectioning errors.
9609         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
9610         [ifinfo]: blank line after @center-ed titles.
9611         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
9612         Spell FSF address consistently with others.
9613         (These changes approved by rms.)
9614
9615 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9616
9617         Speed up by a factor of 1.61.
9618         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
9619         already checked module names again.
9620
9621 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9622
9623         Speed up by a factor of 1.13.
9624         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
9625         for new_files, and the input to func_add_or_update.
9626
9627 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9628
9629         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
9630         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
9631
9632 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9633
9634         * modules/mkancesdirs (Depends-on): Add fcntl.
9635         * modules/savewd: New file.
9636         * MODULES.html.sh (File system functions): Add savewd.
9637
9638         * modules/configmake (Makefile.am): Add support for the
9639         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
9640
9641 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9642
9643         * m4/savewd.m4: New file.
9644
9645 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9646
9647         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
9648         (dirchownmod): New arg FD.  All callers changed.
9649         Use FD rather than opening the directory ourself, as opening is
9650         now the caller's responsibility.
9651         * lib/dirchownmod.h: Likewise.
9652         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
9653         hosts that require <sys/types.h> before <sys/stat.h>.  Include
9654         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
9655         (test_dir): Remove.
9656         (mkancesdirs): Return length of prefix of FILE that has already
9657         been made, or -2 if there is a child doing the work.  Redo
9658         algorithm so that it is O(N) rather than O(N**2).  Optimize away
9659         ".", and treat ".." specially since it might stray back into
9660         already-created areas.  Use a subprocess if necessary.  New arg
9661         WD; all users changed.  MAKE_DIR function should now return 1
9662         if it creates a directory that is not readable.  Return -2 if
9663         a child process is spun off.
9664         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
9665         Adjust signature to match code.
9666         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
9667         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
9668         all users changed.
9669         * lib/savewd.c, lib/savewd.h: New files.
9670
9671 2006-09-15  Jim Meyering  <jim@meyering.net>
9672
9673         * modules/rename-dest-slash: New module.
9674         * MODULES.html.sh (posix_compat): Add it here.
9675
9676         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
9677
9678 2006-09-15  Jim Meyering  <jim@meyering.net>
9679
9680         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
9681         file.
9682
9683         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
9684
9685 2006-09-15  Jim Meyering  <jim@meyering.net>
9686
9687         * lib/rename-dest-slash.c (has_trailing_slash): Use
9688         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
9689         (rpl_rename_dest_slash): Perform the cheaper trailing slash
9690         test before testing whether SRC is a directory.
9691         Suggestions from Bruno Haible.
9692
9693         Avoid a warning about an unused variable.
9694         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
9695         into the #ifdef block where it's used.
9696
9697         * lib/rename-dest-slash.c: New file.
9698
9699 2006-09-14  Bruno Haible  <bruno@clisp.org>
9700
9701         * lib/allocsa.c: Include <config.h> unconditionally.
9702         * lib/asnprintf.c: Likewise.
9703         * lib/asprintf.c: Likewise.
9704         * lib/c-strcasecmp.c: Likewise.
9705         * lib/c-strcasestr.c: Likewise.
9706         * lib/c-strncasecmp.c: Likewise.
9707         * lib/c-strstr.c: Likewise.
9708         * lib/classpath.c: Likewise.
9709         * lib/clean-temp.c: Likewise.
9710         * lib/concatpath.c: Likewise.
9711         * lib/copy-file.c: Likewise.
9712         * lib/csharpcomp.c: Likewise.
9713         * lib/csharpexec.c: Likewise.
9714         * lib/execute.c: Likewise.
9715         * lib/fatal-signal.c: Likewise.
9716         * lib/findprog.c: Likewise.
9717         * lib/fwriteerror.c: Likewise.
9718         * lib/gl_array_list.c: Likewise.
9719         * lib/gl_array_oset.c: Likewise.
9720         * lib/gl_avltree_list.c: Likewise.
9721         * lib/gl_avltree_oset.c: Likewise.
9722         * lib/gl_avltreehash_list.c: Likewise.
9723         * lib/gl_carray_list.c: Likewise.
9724         * lib/gl_linked_list.c: Likewise.
9725         * lib/gl_linkedhash_list.c: Likewise.
9726         * lib/gl_list.c: Likewise.
9727         * lib/gl_oset.c: Likewise.
9728         * lib/gl_rbtree_list.c: Likewise.
9729         * lib/gl_rbtree_oset.c: Likewise.
9730         * lib/gl_rbtreehash_list.c: Likewise.
9731         * lib/imaxabs.c: Likewise.
9732         * lib/imaxdiv.c: Likewise.
9733         * lib/javacomp.c: Likewise.
9734         * lib/javaexec.c: Likewise.
9735         * lib/javaversion.c: Likewise.
9736         * lib/linebreak.c: Likewise.
9737         * lib/localcharset.c: Likewise.
9738         * lib/lock.c: Likewise.
9739         * lib/mbchar.c: Likewise.
9740         * lib/mbswidth.c: Likewise.
9741         * lib/mkdtemp.c: Likewise.
9742         * lib/pipe.c: Likewise.
9743         * lib/printf-args.c: Likewise.
9744         * lib/printf-parse.c: Likewise.
9745         * lib/progname.c: Likewise.
9746         * lib/progreloc.c: Likewise.
9747         * lib/readlink.c: Likewise.
9748         * lib/sh-quote.c: Likewise.
9749         * lib/stpcpy.c: Likewise.
9750         * lib/stpncpy.c: Likewise.
9751         * lib/strcasecmp.c: Likewise.
9752         * lib/strcasestr.c: Likewise.
9753         * lib/strcspn.c: Likewise.
9754         * lib/striconv.c: Likewise.
9755         * lib/strncasecmp.c: Likewise.
9756         * lib/strnlen1.c: Likewise.
9757         * lib/strstr.c: Likewise.
9758         * lib/strtok_r.c: Likewise.
9759         * lib/tls.c: Likewise.
9760         * lib/tmpdir.c: Likewise.
9761         * lib/unicodeio.c: Likewise.
9762         * lib/unsetenv.c: Likewise.
9763         * lib/vasnprintf.c: Likewise.
9764         * lib/vasprintf.c: Likewise.
9765         * lib/wait-process.c: Likewise.
9766         * lib/xallocsa.c: Likewise.
9767         * lib/xsetenv.c: Likewise.
9768         * lib/xstriconv.c: Likewise.
9769
9770 2006-09-13  Simon Josefsson  <jas@extundo.com>
9771
9772         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
9773         that internally, suggested by Ralf Wildenhues
9774         <Ralf.Wildenhues@gmx.de>.
9775
9776 2006-09-13  Simon Josefsson  <jas@extundo.com>
9777
9778         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
9779         @LIBOBJS@.
9780         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9781
9782 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
9783
9784         * lib/_fpending.c: Include <config.h> unconditionally, since we no
9785         longer worry about uses that don't define HAVE_CONFIG_H.
9786         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
9787         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
9788         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
9789         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
9790         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
9791         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
9792         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
9793         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
9794         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
9795         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
9796         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
9797         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
9798         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
9799         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
9800         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
9801         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
9802         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
9803         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
9804         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
9805         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
9806         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
9807         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
9808         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
9809         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
9810         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
9811         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
9812         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
9813         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
9814         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
9815         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
9816         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
9817         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
9818         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
9819         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
9820         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
9821         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
9822         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
9823         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
9824         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
9825         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
9826         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
9827         Likewise.
9828
9829 2006-09-13  Eric Blake  <ebb9@byu.net>
9830
9831         * lib/getopt.c: Fix typo in last commit.
9832
9833 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9834
9835         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
9836         dgettext.
9837
9838 2006-09-12  Jim Meyering  <jim@meyering.net>
9839
9840         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
9841         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
9842         Reported by Nelson H. F. Beebe.
9843
9844 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9845
9846         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
9847         program_invocation_name and program_invocation_short_name are
9848         initialized.
9849         * lib/argp-namefrob.h: Move declarations of program_invocation_name
9850         and program_invocation_short_name to argp.h, so they are visible
9851         to user programs.
9852         * lib/argp.h: Likewise
9853
9854 2006-09-10  Bruno Haible  <bruno@clisp.org>
9855
9856         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
9857         m4/inttypes_h.m4, m4/uintmax_t.m4.
9858
9859 2006-09-10  Bruno Haible  <bruno@clisp.org>
9860
9861         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
9862         gl_AC_TYPE_UINTMAX_T.
9863
9864 2006-09-10  Bruno Haible  <bruno@clisp.org>
9865
9866         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
9867
9868 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9869
9870         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
9871         convention.  Text proposed by Bruno Haible.
9872         (struct argp_option): Document the use of N_() wrappers.
9873
9874         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
9875         '\v', and translate the two parts separately, instead of feeding
9876         the whole string to gettext.  This allows to exclude
9877         '\v' from the strings visible to the translator by writing doc
9878         strings as N_("..") "\v" N_("..").
9879
9880 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
9881
9882         * config/srclist.txt: Undo latest change; the bug was fixed.
9883
9884 2006-09-09  Bruno Haible  <bruno@clisp.org>
9885
9886         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
9887         assignments if building a library without libtool.
9888         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
9889         in func_emit_lib_Makefile_am.
9890         (func_import): When building a static library libfoo.a, arrange to
9891         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
9892         (func_create_testdir): Likewise.
9893         * modules/gc (configure.ac, Makefile.am): If building statically,
9894         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
9895         * modules/iconvme (configure.ac, Makefile.am): Likewise.
9896         * modules/striconv (configure.ac, Makefile.am): Likewise.
9897         Based on a suggestion by Ralf Wildenhues.
9898
9899 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9900
9901         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
9902         Check for unistd.h too, since Autoconf doesn't assume POSIX.
9903         Also:
9904
9905         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9906         Add year_2050_test to catch glibc bug 2821
9907         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9908
9909         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9910         Prefer #ifdef to #if.
9911
9912         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
9913         Return from 'main' instead of calling 'exit'.
9914
9915 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9916
9917         * lib/mktime.c (guess_time_tm): Fix bug where mktime
9918         returned the maximum time_t value rather than (time_t) -1.
9919         Problem originally reported by William Bardwell
9920         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9921
9922         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9923         Moved to here ...
9924         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9925         ... from here.
9926
9927 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9928
9929         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
9930         2821 is fixed.
9931
9932 2006-09-08  Jim Meyering  <jim@meyering.net>
9933
9934         Don't make generated files read-only.  That would bother too many
9935         people.  However, do retain the ability to work when targets are
9936         read-only: remove the destination and temporary files before writing
9937         them (when generated via sed or echo), or by using the -f option for
9938         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
9939         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9940         * modules/byteswap, modules/configmake, modules/fcntl:
9941         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9942         * modules/localcharset, modules/netinet_in, modules/poll:
9943         * modules/stdbool, modules/stdint, modules/sys_select:
9944         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9945
9946 2006-09-08  Jim Meyering  <jim@meyering.net>
9947
9948         Avoid new build failure on FreeBSD 6.0.
9949         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
9950         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
9951         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
9952
9953 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9954
9955         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
9956
9957 2006-09-07  Jim Meyering  <jim@meyering.net>
9958
9959         Fix global typo in last change: use chmod u-w, not chmod u-x.
9960         Spotted by Paul Eggert and Bruce Korb.
9961         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9962         * modules/byteswap, modules/configmake, modules/fcntl:
9963         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9964         * modules/localcharset, modules/netinet_in, modules/poll:
9965         * modules/stdbool, modules/stdint, modules/sys_select:
9966         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9967
9968 2006-09-06  Jim Meyering  <jim@meyering.net>
9969
9970         Make generated files be read-only.
9971         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
9972         Ensure that each generated file is now read-only.
9973         * modules/argz: Likewise.
9974         * modules/arpa_inet: Likewise.
9975         * modules/byteswap: Likewise.
9976         * modules/configmake: Likewise.
9977         * modules/fcntl: Likewise.
9978         * modules/fnmatch: Likewise.
9979         * modules/getopt: Likewise.
9980         * modules/glob: Likewise.
9981         * modules/inttypes: Likewise.
9982         * modules/netinet_in: Likewise.
9983         * modules/poll: Likewise.
9984         * modules/stdbool: Likewise.
9985         * modules/stdint: Likewise.
9986         * modules/sys_select: Likewise.
9987         * modules/sys_socket: Likewise.
9988         * modules/sys_stat: Likewise.
9989         * modules/sysexits: Likewise.
9990         * modules/localcharset: Same as above, but continue using temporary
9991         file named "t-$@" (why different?) rather than the "$@-t" used
9992         everywhere else.
9993
9994         * modules/sysexits (Makefile.am): Replace literal occurrences
9995         of "sysexit.h" more readable, and more consistent, "$@".
9996
9997 2006-09-06  Bruno Haible  <bruno@clisp.org>
9998
9999         * modules/striconv: New file.
10000         * modules/xstriconv: New file.
10001         * MODULES.html.sh (Internationalization functions): Add striconv,
10002         xstriconv.
10003
10004 2006-09-06  Bruno Haible  <bruno@clisp.org>
10005
10006         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
10007         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
10008         not using libtool correctly.
10009
10010 2006-09-06  Bruno Haible  <bruno@clisp.org>
10011
10012         * lib/striconv.h: New file.
10013         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
10014         iconvstring.c.
10015         * lib/xstriconv.h: New file.
10016         * lib/xstriconv.c: New file.
10017
10018 2006-09-06  Bruno Haible  <bruno@clisp.org>
10019
10020         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
10021         lib_..._LDFLAGS.
10022
10023 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10024
10025         * lib/argz_.h: Sync from Libtool.
10026
10027         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
10028                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10029
10030         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
10031
10032 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
10033
10034         * modules/trim: New file.
10035
10036 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
10037
10038         * lib/trim.h: New file.
10039         * lib/trim.c: New file.
10040
10041 2006-09-05  Bruno Haible  <bruno@clisp.org>
10042
10043         * MODULES.html.sh (String handling): Add trim.
10044
10045 2006-09-04  Karl Berry  <karl@gnu.org>
10046
10047         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
10048         until next release.
10049
10050 2006-09-03  Bruno Haible  <bruno@clisp.org>
10051
10052         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
10053         correctly.
10054
10055 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10056
10057         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
10058         not gl_GETLOADAVG.  Omit unneeded semicolons.
10059         Problems reported by Ralf Wildenhues in
10060         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
10061         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
10062         at the end, which is the usual gnulib style.
10063
10064         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
10065         of doing all the work ourselves.
10066         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
10067         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
10068
10069 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10070
10071         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
10072         Problem reported by Ralf Wildenhues in
10073         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
10074
10075         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
10076         HAVE_STRUCT_STATFS_F_FSTYPENAME.
10077
10078 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10079
10080         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
10081         yesterday's patch by changing test -n to test -z.
10082
10083 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10084
10085         * modules/getloadavg (Files): Add m4/getloadavg.m4.
10086         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
10087         the former is now obsolescent.
10088
10089         * modules/chdir-long (Depends-on): Add fcntl.
10090
10091 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10092
10093         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
10094         obsolescent, and programs should use gnulib instead.
10095         * m4/getloadavg.m4: New file, with contents taken from Autoconf
10096         but with prefixes changed.
10097
10098 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10099
10100         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
10101         or stdbool.h, because they might not exist while configuring.
10102
10103         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
10104         Don't include unistd.h or limits.h; not needed, since chdir-long.h
10105         does that for us.
10106         (O_DIRECTORY): Remove.
10107
10108 2006-08-31  Eric Blake  <ebb9@byu.net>
10109
10110         * gnulib-tool: Don't let emacs change spaces to TAB.
10111
10112 2006-08-31  Bruno Haible  <bruno@clisp.org>
10113
10114         * gnulib-tool: When calling func_import more than once, do it in a
10115         subshell.
10116         Reported by Eric Blake <ebb9@byu.net>.
10117
10118 2006-08-31  Bruno Haible  <bruno@clisp.org>
10119
10120         * gnulib-tool (nl): Remove variable.
10121         (sed_transform_lib_file): Use more robust test for config-h module.
10122         (func_import): Fix typo in 2006-08-25 patch.
10123
10124 2006-08-31  Bruno Haible  <bruno@clisp.org>
10125
10126         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
10127         specified, augment Makefile.am variables instead of assigning them.
10128
10129 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
10130
10131         Work around a bug in both the Linux and SunOS 64-bit kernels:
10132         nanosleep mishandles sleeps for longer than 2**31 seconds.
10133         Problem reported by Frank v Waveren in
10134         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
10135         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
10136         Check for nanosleep bug.
10137         (LIB_NANOSLEEP): Append clock_gettime library if needed.
10138
10139 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
10140
10141         Work around a bug in both the Linux and SunOS 64-bit kernels:
10142         nanosleep mishandles sleeps for longer than 2**31 seconds.
10143         Problem reported by Frank v Waveren in
10144         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
10145         * lib/nanosleep.c (BILLION): New constant.
10146         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
10147         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
10148         implementation.
10149
10150 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
10151
10152         * modules/nanosleep (Depends-on): Add gettime.
10153
10154 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
10155         and Simon Josefsson  <jas@extundo.com>
10156         and Oskar Liljeblad  <oskar@osk.mine.nu>
10157
10158         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
10159         * gnulib-tool (func_import): New license type 'unmodifiable license
10160         text'.
10161         * modules/fdl: Use it.  Longer description.
10162         * module/gpl, module/lgpl: New files.
10163
10164 2006-08-30  Jim Meyering  <jim@meyering.net>
10165
10166         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
10167         shadowing the parameter.
10168
10169 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10170
10171         Sync from Libtool:
10172
10173         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10174
10175         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
10176         sharing with gnulib.  Report by Eric Blake.
10177
10178 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
10179
10180         * modules/isapipe: New file.
10181         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
10182
10183 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
10184
10185         * modules/configmake (Makefile.am): Add a comment, and omit
10186         the CONFIGMAKE_ prefix from generated macro names.  Suggested
10187         by Bruno Haible.
10188
10189 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
10190
10191         * m4/isapipe.m4: New file.
10192
10193 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
10194
10195         * lib/isapipe.c, lib/isapipe.h: New files.
10196
10197 2006-08-29  Jim Meyering  <jim@meyering.net>
10198
10199         * modules/configmake (Makefile.am): Make configmake.h depend on
10200         Makefile.  Otherwise, a stale configmake.h could hang around.
10201
10202 2006-08-29  Eric Blake  <ebb9@byu.net>
10203
10204         * lib/error.c (error_at_line, print_errno_message): Match libc, after
10205         resolution of upstream bug 3044.
10206
10207 2006-08-29  Bruno Haible  <bruno@clisp.org>
10208
10209         * modules/localcharset (Depends-on): Add configmake.
10210         (Makefile.am): Remove setting of LIBDIR through DEFS.
10211
10212 2006-08-29  Bruno Haible  <bruno@clisp.org>
10213
10214         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
10215         defined.
10216
10217 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10218
10219         * modules/fcntl: New file.
10220         * modules/chdir-safer (Depends-on): Add fcntl.
10221         * modules/fts: Likewise.
10222         * modules/mkdir-p: Likewise.
10223
10224         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
10225         This undoes the most recent change, since we're now addressing the
10226         problem in a different way.
10227
10228         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
10229         into output, since the output might be called Makefile.am even
10230         if $makefile_name is something different.
10231         (func_import): Use $makefile_am rather than
10232         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
10233         empty.
10234
10235         * modules/inttypes (Files): Add m4/inttypes-h.m4.
10236
10237 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10238
10239         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
10240         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
10241         recent change to stdint.m4, since we're now addressing the problem in a
10242         different way.
10243
10244 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10245
10246         * m4/fcntl_h.m4: New file.
10247
10248 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
10249
10250         * lib/fcntl_.h: New file.
10251         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
10252         the fcntl module.
10253         * lib/dirchownmod.c: Likewise.
10254         * lib/fts.c: Likewise.
10255
10256         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
10257         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
10258         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
10259         just before including <inttypes.h>, to avoid circular inclusion.
10260
10261 2006-08-28  Jim Meyering  <jim@meyering.net>
10262
10263         * doc/visibility.texi: Actually read and correct the grammar of the
10264         sentence affected by yesterday's change.
10265
10266 2006-08-28  Eric Blake  <ebb9@byu.net>
10267
10268         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
10269         needs wrapper.
10270
10271 2006-08-28  Eric Blake  <ebb9@byu.net>
10272
10273         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
10274
10275 2006-08-28  Eric Blake  <ebb9@byu.net>
10276
10277         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
10278
10279 2006-08-28  Bruno Haible  <bruno@clisp.org>
10280
10281         * modules/c-strstr: New file, from GNU gettext.
10282         * MODULES.html.sh (String handling): Add c-strstr.
10283
10284 2006-08-28  Bruno Haible  <bruno@clisp.org>
10285
10286         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
10287         macros.
10288         Reported by Eric Blake.
10289
10290 2006-08-28  Bruno Haible  <bruno@clisp.org>
10291
10292         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
10293         (VASNPRINTF): Return a string of length > INT_MAX without failing.
10294         * lib/vasprintf.c: Include errno.h, limits.h.
10295         (EOVERFLOW): New fallback definition.
10296         (vasprintf): Test here whether the string length is > INT_MAX.
10297         * lib/vsnprintf.c: Include errno.h, limits.h.
10298         (EOVERFLOW): New fallback definition.
10299         (vsnprintf): Fix bug when generated string was too long for the buffer.
10300         Test here whether the string length is > INT_MAX.
10301
10302 2006-08-28  Bruno Haible  <bruno@clisp.org>
10303
10304         * lib/inttypes_.h (SCNX*): Remove definitions.
10305         Reported by Eric Blake.
10306
10307 2006-08-28  Bruno Haible  <bruno@clisp.org>
10308
10309         * lib/c-strstr.h: New file, from GNU gettext.
10310         * lib/c-strstr.c: New file, from GNU gettext.
10311
10312 2006-08-28  Bruno Haible  <bruno@clisp.org>
10313
10314         * gnulib-tool: Reorder some statements.
10315
10316 2006-08-28  Bruno Haible  <bruno@clisp.org>
10317
10318         * gnulib-tool: New option --makefile-name.
10319         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
10320         $makefile_name.
10321         (func_import): Write $makefile_name to the cache file, and read it from
10322         there unless explicitly specified. Use $makefile_name as file name
10323         instead of Makefile.am. Adjust the recommendations accordingly.
10324
10325 2006-08-28  Bruno Haible  <bruno@clisp.org>
10326
10327         * gnulib-tool (func_verify_module): Check against misapplying patch.
10328
10329 2006-08-28  Bruno Haible  <bruno@clisp.org>
10330
10331         * gnulib-tool (func_relativize, func_relconcat): New functions.
10332         Give an error if --local-dir is given with --update.
10333         Remove trailing slashes from $local_gnulib_dir.
10334         (func_import): Store the relativized $local_gnulib_dir in
10335         gnulib-cache.m4, and read it from there if not specified explicitly.
10336
10337 2006-08-28  Bruno Haible  <bruno@clisp.org>
10338
10339         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
10340         is the current directory. Respect also $local_gnulib_dir.
10341
10342 2006-08-28  Bruno Haible  <bruno@clisp.org>
10343             Simon Josefsson  <jas@extundo.com>
10344
10345         BeOS portability.
10346         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
10347
10348 2006-08-27  Jim Meyering  <jim@meyering.net>
10349
10350         * doc/visibility.texi: Remove duplicate word: "pointer".
10351
10352 2006-08-26  Bruno Haible  <bruno@clisp.org>
10353
10354         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
10355         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
10356         (Makefile.am): Create inttypes.h from inttypes_.h.
10357         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
10358
10359         * modules/imaxabs: New file.
10360
10361         * modules/imaxdiv: New file.
10362
10363 2006-08-26  Bruno Haible  <bruno@clisp.org>
10364
10365         * m4/inttypes.m4: New file.
10366         * m4/_inttypes_h.m4: Remove file.
10367         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
10368         PRI_MACROS_BROKEN.
10369         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
10370
10371         * m4/imaxabs.m4: New file.
10372
10373         * m4/imaxdiv.m4: New file.
10374
10375 2006-08-26  Bruno Haible  <bruno@clisp.org>
10376
10377         * lib/inttypes_.h: New file.
10378         * lib/inttypes.h: Remove file.
10379         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
10380
10381         * lib/imaxabs.c: New file.
10382
10383         * lib/imaxdiv.c: New file.
10384
10385 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10386
10387         New config-h module, so that "make" output needn't be cluttered
10388         by -DHAVE_CONFIG_H.
10389         * MODULES.html.sh (Support for building libraries and executables):
10390         Add config-h.
10391         * modules/config-h: New file.
10392         * gnulib-tool (nl, sed_transform_lib_file): New vars.
10393         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
10394         the config-h module is used.
10395
10396         New configmake module, so that "make" output needn't be cluttered
10397         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
10398         * MODULES.html.sh (Support for building libraries and executables):
10399         Add configmake.
10400         * modules/configmake: New file.
10401
10402 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10403
10404         * m4/config-h.m4: New file.
10405
10406 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10407
10408         * config/srclist.txt: Add elisp-comp.
10409
10410 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10411
10412         * MODULES.html.sh (Support for building libraries and executables):
10413         Add elisp-comp.
10414         * build-aux/elisp-comp: New file.
10415         * modules/elisp-comp: New file.
10416
10417 2006-08-24  Bruno Haible  <bruno@clisp.org>
10418
10419         * gnulib-tool (func_create_testdir): Use non-default values of
10420         sourcebase and m4base.
10421
10422 2006-08-24  Bruno Haible  <bruno@clisp.org>
10423
10424         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
10425         HTML structure.
10426
10427 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10428
10429         * modules/openat (Depends-on): Add lchown.
10430
10431 2006-08-23  Bruno Haible  <bruno@clisp.org>
10432
10433         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
10434         of gl_LOCK_EARLY instead of gl_LOCK.
10435
10436 2006-08-23  Bruno Haible  <bruno@clisp.org>
10437
10438         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
10439         on OSF/1 to no.
10440         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
10441
10442 2006-08-23  Bruno Haible  <bruno@clisp.org>
10443
10444         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
10445         as unusable.
10446
10447         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
10448         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
10449         (gl_LOCK): New macro.
10450
10451 2006-08-22  Simon Josefsson  <jas@extundo.com>
10452
10453         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
10454         to md5 module.
10455
10456 2006-08-22  Simon Josefsson  <jas@extundo.com>
10457
10458         * MODULES.html.sh: Add "Support for maintaining and release
10459         projects".
10460
10461         * build-aux/gnupload: New file, from coreutils.
10462
10463 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10464
10465         Avoid the need for AC_LIBSOURCES in m4 macros.
10466         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
10467         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
10468         * modules/check-version (EXTRA_DIST): Add check-version.h.
10469         * modules/crc (EXTRA_DIST): Add crc.h.
10470         * modules/des (EXTRA_DIST): Add des.h.
10471         * modules/gc (EXTRA_DIST): Add gc.h.
10472         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
10473         * modules/getline (EXTRA_DIST): Add getline.h.
10474         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
10475         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
10476         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
10477         * modules/md2 (EXTRA_DIST): Add md2.h.
10478         * modules/md4 (EXTRA_DIST): Add md4.h.
10479         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
10480         * modules/read-file (EXTRA_DIST): Add read-file.h.
10481         * modules/readline (EXTRA_DIST): Add readline.h.
10482         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
10483         rijndael-api-fst.h.
10484
10485 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10486
10487         * m4/rijndael.m4 (gl_ARCFOUR):
10488         * m4/arctwo.m4 (gl_ARCTWO):
10489         * m4/check-version.m4 (gl_CHECK_VERSION):
10490         * m4/crc.m4 (gl_CRC):
10491         * m4/des.m4 (gl_DES):
10492         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
10493         * m4/gc.m4 (gl_GC):
10494         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
10495         * m4/getline.m4 (gl_FUNC_GETLINE):
10496         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
10497         * m4/hmac-md5.m4 (gl_HMAC_MD5):
10498         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
10499         * m4/md2.m4 (gl_MD2):
10500         * m4/md4.m4 (gl_MD4):
10501         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
10502         * m4/read-file.m4 (gl_FUNC_READ_FILE):
10503         * m4/readline.m4 (gl_FUNC_READLINE):
10504         * m4/rijndael.m4 (gl_RIJNDAEL):
10505         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
10506         to get the necessary .h files and whatnot.
10507
10508 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10509
10510         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
10511         gnulib rather than the other way around.
10512         * config/srclistvars.sh (COREUTILS): Remove.
10513
10514 2006-08-22  Jim Meyering  <jim@meyering.net>
10515
10516         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
10517
10518         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
10519
10520 2006-08-22  Eric Blake  <ebb9@byu.net>
10521
10522         * modules/regexprops-generic: New file.
10523         * MODULES.html.sh (Support for building documentation): List it.
10524
10525 2006-08-22  Eric Blake  <ebb9@byu.net>
10526
10527         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
10528         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
10529         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
10530         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
10531
10532 2006-08-22  Bruno Haible  <bruno@clisp.org>
10533
10534         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
10535         and lib_LTLIBRARIES like the other lib_* variables.
10536
10537 2006-08-22  Bruno Haible  <bruno@clisp.org>
10538
10539         * build-aux/x-to-1.in: New file, from GNU gettext.
10540
10541 2006-08-22  Bruno Haible  <bruno@clisp.org>
10542
10543         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
10544         <utmpx.h> exists.
10545
10546 2006-08-22  Bruno Haible  <bruno@clisp.org>
10547
10548         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
10549         <utmpx.h> exists.
10550
10551 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10552
10553         BeOS portability.
10554         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
10555         exist.
10556         Problem reported by Bruno Haible.
10557
10558 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10559
10560         Avoid the need for AC_LIBSOURCES in m4 macros.
10561         * modules/acl (EXTRA_DIST): Add acl.h.
10562         * modules/argmatch (Files): Add m4/argmatch.m4.
10563         (configure.ac): Add gl_ARGMATCH.
10564         (EXTRA_DIST): Renamed from lib_SOURCES, for
10565         consistency with the other modules.  Remove argmatch.c.
10566         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
10567         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
10568         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
10569         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
10570         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
10571         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
10572         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
10573         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
10574         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
10575         * modules/closeout (EXTRA_DIST): Add closeout.h.
10576         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
10577         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
10578         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
10579         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
10580         dirname.h; remove basename.c and stripslash.c.
10581         * modules/exclude (EXTRA_DIST): Add exclude.h.
10582         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
10583         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
10584         * modules/file-type (EXTRA_DIST): Add file-type.h.
10585         * modules/filemode (EXTRA_DIST): Add filemode.h.
10586         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
10587         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
10588         * modules/fpending (EXTRA_DIST): Add __fpending.h.
10589         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
10590         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
10591         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
10592         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
10593         * modules/getdate (EXTRA_DIST): Add getdate.c.
10594         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
10595         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
10596         * modules/getpass (EXTRA_DIST): Add getpass.h.
10597         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
10598         * modules/group-member (EXTRA_DIST): Add group-member.h.
10599         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
10600         * modules/hash (EXTRA_DIST): Add hash.h.
10601         * modules/human (EXTRA_DIST): Add human.h.
10602         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
10603         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
10604         * modules/lchown (EXTRA_DIST): Add lchown.h.
10605         * modules/long-options (EXTRA_DIST): Add long-options.h.
10606         * modules/lstat (EXTRA_DIST): Add lstat.h.
10607         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
10608         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
10609         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
10610         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
10611         * modules/memxor (EXTRA_DIST): Add memxor.h.
10612         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
10613         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
10614         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
10615         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
10616         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
10617         * modules/physmem (EXTRA_DIST): Add physmem.h.
10618         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
10619         * modules/posixver (EXTRA_DIST): Add posixver.h.
10620         * modules/quote (EXTRA_DIST): Add quote.h.
10621         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
10622         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
10623         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
10624         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
10625         regex_internal.h regexec.c.
10626         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
10627         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
10628         * modules/same (EXTRA_DIST): Add same.h.
10629         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
10630         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
10631         * modules/savedir (EXTRA_DIST): Add savedir.h.
10632         * modules/sha1 (EXTRA_DIST): Add sha1.h.
10633         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
10634         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
10635         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
10636         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
10637         * modules/strdup (EXTRA_DIST): Add strdup.h.
10638         * modules/strftime (EXTRA_DIST): Add strftime.h.
10639         * modules/strndup (EXTRA_DIST): Add strndup.h.
10640         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
10641         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
10642         * modules/time_r (EXTRA_DIST): Add time_r.h.
10643         * modules/timespec (EXTRA_DIST): Add timespec.h.
10644         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
10645         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
10646         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
10647         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
10648         * modules/userspec (EXTRA_DIST): Add userspec.h.
10649         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
10650         * modules/utimens (EXTRA_DIST): Add utimens.h.
10651         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
10652         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
10653         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
10654         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
10655         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
10656         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
10657         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
10658         * modules/yesno (EXTRA_DIST): Add yesno.h.
10659
10660 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
10661
10662         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
10663
10664         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
10665         * m4/dev-ino.m4, same-inode.m4: Remove.
10666
10667         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
10668         * m4/acl.m4 (AC_FUNC_ACL):
10669         * m4/backupfile.m4 (gl_BACKUPFILE):
10670         * m4/c-strtod.m4 (gl_C99_STRTOLD):
10671         * m4/canon-host.m4 (gl_CANON_HOST):
10672         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
10673         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
10674         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
10675         * m4/cloexec.m4 (gl_CLOEXEC):
10676         * m4/close-stream.m4 (gl_CLOSE_STREAM):
10677         * m4/closeout.m4 (gl_CLOSEOUT):
10678         * m4/dirfd.m4 (gl_FUNC_DIRFD):
10679         * m4/dirname.m4 (gl_DIRNAME):
10680         * m4/exclude.m4 (gl_EXCLUDE):
10681         * m4/exitfail.m4 (gl_EXITFAIL):
10682         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
10683         * m4/file-type.m4 (gl_FILE_TYPE):
10684         * m4/filemode.m4 (gl_FILEMODE):
10685         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
10686         * m4/fpending.m4 (gl_FUNC_FPENDING):
10687         * m4/fprintftime.m4 (gl_FPRINTFTIME):
10688         * m4/fts.m4 (gl_FUNC_FTS):
10689         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
10690         * m4/getdate.m4 (gl_GETDATE):
10691         * m4/gethrxtime.m4 (gl_GETHRXTIME):
10692         * m4/getpagesize.m4 (gl_GETPAGESIZE):
10693         * m4/getpass.m4 (gl_FUNC_GETPASS):
10694         * m4/gettime.m4 (gl_GETTIME):
10695         * m4/getugroups.m4 (gl_GETUGROUPS):
10696         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
10697         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
10698         * m4/hard-locale.m4 (gl_HARD_LOCALE):
10699         * m4/hash.m4 (gl_HASH):
10700         * m4/idcache.m4 (gl_IDCACHE):
10701         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
10702         * m4/lchown.m4 (gl_FUNC_LCHOWN):
10703         * m4/long-options.m4 (gl_LONG_OPTIONS):
10704         * m4/lstat.m4 (gl_FUNC_LSTAT):
10705         * m4/md5.m4 (gl_MD5):
10706         * m4/memcasecmp.m4 (gl_MEMCASECMP):
10707         * m4/memcoll.m4 (gl_MEMCOLL):
10708         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
10709         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
10710         * m4/memxor.m4 (gl_MEMXOR):
10711         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
10712         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
10713         * m4/modechange.m4 (gl_MODECHANGE):
10714         * m4/mountlist.m4 (gl_MOUNTLIST):
10715         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
10716         * m4/openat.m4 (gl_FUNC_OPENAT):
10717         * m4/pathmax.m4 (gl_PATHMAX):
10718         * m4/physmem.m4 (gl_PHYSMEM):
10719         * m4/posixtm.m4 (gl_POSIXTM):
10720         * m4/posixver.m4 (gl_POSIXVER):
10721         * m4/quote.m4 (gl_QUOTE):
10722         * m4/quotearg.m4 (gl_QUOTEARG):
10723         * m4/readtokens.m4 (gl_READTOKENS):
10724         * m4/readutmp.m4 (gl_READUTMP):
10725         * m4/regex.m4 (gl_REGEX):
10726         * m4/safe-read.m4 (gl_SAFE_READ):
10727         * m4/safe-write.m4 (gl_SAFE_WRITE):
10728         * m4/same.m4 (gl_SAME):
10729         * m4/save-cwd.m4 (gl_SAVE_CWD):
10730         * m4/savedir.m4 (gl_SAVEDIR):
10731         * m4/settime.m4 (gl_SETTIME):
10732         * m4/sha1.m4 (gl_SHA1):
10733         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
10734         * m4/stat-macros.m4 (gl_STAT_MACROS):
10735         * m4/stat-time.m4 (gl_STAT_TIME):
10736         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
10737         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
10738         * m4/strdup.m4 (gl_FUNC_STRDUP):
10739         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
10740         * m4/strndup.m4 (gl_FUNC_STRNDUP):
10741         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
10742         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
10743         * m4/time_r.m4 (gl_TIME_R):
10744         * m4/timespec.m4 (gl_TIMESPEC):
10745         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
10746         * m4/unlinkdir.m4 (gl_UNLINKDIR):
10747         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
10748         * m4/userspec.m4 (gl_USERSPEC):
10749         * m4/utimecmp.m4 (gl_UTIMECMP):
10750         * m4/utimens.m4 (gl_UTIMENS):
10751         * m4/xalloc.m4 (gl_XALLOC):
10752         * m4/xgetcwd.m4 (gl_XGETCWD):
10753         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
10754         * m4/xreadlink.m4 (gl_XREADLINK):
10755         * m4/xstrtod.m4 (gl_XSTRTOD):
10756         * m4/yesno.m4 (gl_YESNO):
10757         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
10758         to get the necessary .h files and whatnot.
10759
10760 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
10761             Bruno Haible  <bruno@clisp.org>
10762
10763         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
10764         /bin/sh understanding of '!' conditional negation.
10765
10766 2006-08-21  Jim Meyering  <jim@meyering.net>
10767
10768         * modules/openat (Depends-on): Really alphabetize.
10769
10770         * modules/acl (Depends-on): Add error and quote.
10771
10772         * check-module (find_included_lib_files): Add at-func.c to the
10773         ok-to-include-more-than-once white list.
10774
10775         * modules/openat (Depends-on): Add lstat.  Alphabetize.
10776
10777 2006-08-21  Bruno Haible  <bruno@clisp.org>
10778
10779         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10780         Emit a pkgdata_DATA variable only if some snippets add contents to it.
10781         Reported by Martin Lambers <marlam@marlam.de>.
10782
10783 2006-08-21  Bruno Haible  <bruno@clisp.org>
10784
10785         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
10786         specify an installation location, don't emit a noinst_LIBRARIES or
10787         noinst_LTLIBRARIES assignment.
10788
10789 2006-08-21  Bruno Haible  <bruno@clisp.org>
10790
10791         BeOS portability.
10792         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
10793         BeOS has mbrtowc() but no <wctype.h>.
10794
10795 2006-08-21  Bruno Haible  <bruno@clisp.org>
10796
10797         BeOS portability.
10798         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
10799         exist.
10800
10801 2006-08-21  Bruno Haible  <bruno@clisp.org>
10802
10803         BeOS portability.
10804         * lib/mbchar.h: Include <wctype.h> only if it exists.
10805
10806 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10807
10808         Remove files that are no longer needed by their respective modules.
10809         * m4/obstack.m4: Remove.
10810         * m4/strerror_r.m4: Remove.
10811         * m4/uint32_t.m4: Remove.
10812         * m4/uintptr_t.m4: Remove.
10813         * m4/ullong_max.m4: Remove.
10814         * m4/xstrtoimax.m4: Remove.
10815         * m4/xstrtoumax.m4: Remove.
10816
10817         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
10818         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
10819         dependencies now capture this.
10820
10821         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
10822         Do not use AC_LIBSOURCES, since gnulib modules now do this.
10823         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
10824         * m4/human.m4 (gl_HUMAN): Likewise.
10825         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
10826         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
10827
10828         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
10829
10830         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
10831         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
10832         stdint.
10833         * m4/human.m4 (gl_HUMAN): Likewise.
10834         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
10835         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
10836         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10837         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10838         * m4/xstrtol (gl_XSTRTOL): Likewise.
10839
10840         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
10841         AC_TYPE_LONG_LONG_INT.
10842         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
10843         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
10844         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
10845         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
10846
10847         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
10848         on stdbool.
10849
10850         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
10851         (gl_PREREQ_XSTRTOUL): Remove.
10852
10853         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
10854
10855         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
10856         mode.
10857
10858 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10859
10860         Add and change modules to make it easier for coreutils to use
10861         gnulib-tool.
10862         * modules/backupfile (Files): Remove m4/d-ino.m4.
10863         (Depends-on): Add d-ino.
10864         * modules/cycle-check (Depends-on): Add stdint.
10865         (lib_SOURCES): Add cycle-check.h.
10866         * modules/d-ino: New module.
10867         * modules/d-type: New module.
10868         * modules/error (Files): Remove m4/strerror_r.m4.
10869         * modules/filemode (Files): Add m4/st_dm_mode.m4.
10870         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
10871         m4/inttypes_h.m4, m4/uintmax_t.m4.
10872         (Depends-on): Add stdint.
10873         (lib_SOURCES): Add fsusage.h.
10874         * modules/getcwd (Files): Remove d-ino.m4.
10875         (Depends-on): Add d-ino.
10876         * modules/getndelim2 (Depends-on): Add stdint.
10877         * modules/glob (Files): Remove m4/d-type.m4.
10878         (Depends-on): Add d-type.
10879         * modules/host-os: New module.
10880         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
10881         m4/inttypes_h.m4, m4/uintmax_t.m4.
10882         * Depends-on: Add stdint.
10883         (lib_SOURCES): Add human.h.
10884         * modules/inttostr (Files): Remove m4/intmax_t.m4,
10885         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
10886         m4/uintmax_t.m4, m4/ulonglong.m4.
10887         (Depends-on): Add stdint.
10888         (EXTRA_DIST): Add inttostr.h.
10889         * modules/lchmod: New module.
10890         * modules/link-follow: New module.
10891         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
10892         (Depends-on): Add lchmod.
10893         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
10894         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
10895         (Depends-on): Add stdint.
10896         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
10897         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
10898         (Depends-on): Add stdint.
10899         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
10900         * modules/perl: New module.
10901         * modules/regex (Depends-on): Add stdint.
10902         * modules/rmdir-errno: New module.
10903         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10904         m4/intmax_t.m4.
10905         (Depends-on): Add stdint.
10906         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10907         m4/uintmax_t.m4.
10908         (Depends-on): Add stdint.
10909         * modules/unlink-busy: New module.
10910         * modules/utimecmp (Depends-on): Add stdint.
10911         * modules/uptime: New module.
10912         * modules/winsz-ioctl: New module.
10913         * modules/winsz-termios: New module.
10914         * modules/xnanosleep (Depends-on): Add nanosleep.
10915         * modules/ullong_max: Remove.
10916         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
10917         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
10918         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
10919         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
10920         (Depends-on): Add inttypes.
10921         (lib_SOURCES): Add xstrtol.h.
10922         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
10923         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
10924         * MODULES.html.sh: Move 'assert' into the assert section.
10925         Move 'dummy' into the linking section.
10926         Remove ullong_max.
10927         Add section for compatibility checks for POSIX:2001 functions,
10928         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
10929         winsz-ioctl, and winsz-termios into it.
10930         Add lchmod.
10931         Add top-level Misc section and put host-os, perl, and uptime
10932         into it.
10933
10934 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10935
10936         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
10937         now assume the stdint module.  Do not include inttypes.h.
10938         * lib/fsusage.h: Likewise.
10939         * lib/getndelim2.c: Likewise.
10940         * lib/human.h: Likewise.
10941         * lib/inttostr.h: Likewise.
10942         * lib/obstack.c: Likewise.
10943         * lib/regex_internal.h: Likewise.
10944         * lib/tempname.c: Likewise.
10945         * lib/utimecmp.c: Likewise.
10946         * lib/xstrtol.h: Likewise.
10947
10948         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
10949
10950         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
10951         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
10952         * lib/xtime.h: Likewise.
10953
10954 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10955
10956         * modules/openat (Files): Add lib/fchmodat.c.
10957         Fixes problem reported by Jay Youngman.
10958
10959 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10960
10961         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
10962         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
10963
10964 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
10965             Bruno Haible  <bruno@clisp.org>
10966
10967         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
10968         and is a script that invokes bison. Tighten the code. Add comments.
10969
10970 2006-08-18  Jim Meyering  <jim@meyering.net>
10971
10972         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
10973         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
10974         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
10975         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
10976
10977 2006-08-18  Bruno Haible  <bruno@clisp.org>
10978
10979         * modules/bison-i18n: New file.
10980         * MODULES.html.sh (Internationalization functions): Add it.
10981
10982 2006-08-18  Bruno Haible  <bruno@clisp.org>
10983
10984         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
10985         sys/statvfs.h. When getmntinfo was found, check its declaration and
10986         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
10987
10988 2006-08-18  Bruno Haible  <bruno@clisp.org>
10989
10990         * m4/bison-i18n.m4: New file, from bison.
10991
10992 2006-08-18  Bruno Haible  <bruno@clisp.org>
10993
10994         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
10995         (ME_DUMMY): Treat "kernfs" as a dummy.
10996         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
10997
10998 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10999
11000         Update from coreutils.
11001
11002         2006-08-15  Jim Meyering  <jim@meyering.net>
11003
11004         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
11005
11006         2006-01-17  Jim Meyering  <jim@meyering.net>
11007
11008         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
11009
11010         2006-01-11  Jim Meyering  <jim@meyering.net>
11011
11012         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
11013         Check for the lchmod function.
11014
11015 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11016
11017         Update from coreutils.
11018
11019         * lib/__fpending.h: Add copyright notice.
11020         * lib/fprintftime.h: Likewise.
11021         * lib/savedir.c: Use (C) in copyright notice.
11022         * lib/savedir.h: Likewise.
11023
11024         2006-08-15  Jim Meyering  <jim@meyering.net>
11025
11026         * lib/at-func.c: New file, with the logic of all emulated at-functions.
11027         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
11028         in support of the EXPECTED_ERRNO macro.
11029         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
11030         definitions.  Instead, define the appropriate symbols and include
11031         "at-func.c".
11032         * lib/mkdirat.c (mkdirat): Likewise.
11033         * lib/fchmodat.c (fchmodat): Likewise.
11034         (ENOSYS): Remove definition.
11035         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
11036         it.  Don't include "unistd--.h" -- it wasn't ever used.
11037
11038         2006-01-17  Jim Meyering  <jim@meyering.net>
11039
11040         Rewrite fts.c not to change the current working directory,
11041         by using openat, fstatat, fdopendir, etc..
11042
11043         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
11044         (HAVE_OPENAT_SUPPORT): Define.
11045         [_LIBC] (fchdir): Don't undef or define; no longer used.
11046         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
11047         Now, this `function' always succeeds, and consumes its file descriptor
11048         parameter -- so callers must not close such FDs.  Update callers.
11049         (diropen_fd, opendirat, cwd_advance_fd): New functions.
11050         (diropen): Add parameter, SP.  Adjust all callers.
11051         Implement using diropen_fd, rather than open.
11052         (fts_open): Initialize new member, fts_cwd_fd.
11053         Remove fts_rft-setting code.
11054         (fts_close): Close fts_cwd_fd, if necessary.
11055         (__opendir2): Define in terms of opendir or opendirat,
11056         depending on whether the FST_NOCHDIR flag is set.
11057         (fts_build): Since fts_safe_changedir consumes its FD, and since
11058         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
11059         and close the dup'd file descriptor upon failure.
11060         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
11061         (fts_safe_changedir): Tweak semantics to reflect that this function
11062         now calls cwd_advance_fd and hence consumes its FD argument.
11063         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
11064         [struct FTS] (fts_rft): Remove now-unused member.
11065         [struct FTS] (fts_cycle.state): Improve comment.
11066
11067         * lib/openat.c (openat_needs_fchdir): New function.
11068         * lib/openat.h (openat_needs_fchdir): Declare it.
11069
11070 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
11071
11072         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
11073         Problem and fix reported by Pádraig Brady in
11074         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
11075
11076 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11077
11078         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
11079
11080 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11081
11082         * lib/memcoll.c (memcoll): Optimize for the common case where the
11083         arguments are bytewise equal.
11084
11085 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11086
11087         * doc/regexprops-generic.texi: Add a copyright notice.
11088
11089 2006-08-15  Bruno Haible  <bruno@clisp.org>
11090
11091         * modules/tmpdir (License): Change to LGPL.
11092
11093 2006-08-15  Bruno Haible  <bruno@clisp.org>
11094
11095         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
11096         module.
11097
11098 2006-08-14  Simon Josefsson  <jas@extundo.com>
11099
11100         * config/srclist.txt: Add gnupload.
11101
11102 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11103
11104         Change copyright notice from LGPL 2 to GPL 2, since that's the
11105         standard form used in the gnulib repository.
11106         * tests/test-lock.c: Likewise.
11107         * tests/test-stdint.c: Likewise.
11108         * tests/test-tls.c: Likewise.
11109
11110         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
11111         prelude-manager.  User shorter URLs for GNU projects, without '?'.
11112         Add copyright notice.
11113
11114         * check-module: Add copyright notice.  Output a copyright
11115         notice if "--version" is specified.
11116         * modules/COPYING: New file.
11117         * tests/test-getaddrinfo.c: Add copyright notice.
11118         * tests/test-verify.c: Likewise.
11119
11120 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11121
11122         Change copyright notice from LGPL 2 to GPL 2, since that's the
11123         standard form used in the gnulib repository.
11124         * lib/lock.c: LGPL -> GPL.
11125         * lib/lock.h: Likewise.
11126         * lib/strnlen1.c: Likewise.
11127         * lib/strnlen1.h: Likewise.
11128         * lib/tls.c: Likewise.
11129         * lib/tls.h: Likewise.
11130         * lib/tmpdir.c: Likewise.
11131
11132         * lib/TODO: Remove; this belongs only in coreutils.
11133
11134 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11135
11136         Add copyright notices to long-enough files that lack them, since
11137         otherwise the files aren't clearly free.  Use the same notice that
11138         getdate.texi already uses.
11139         * doc/alloca-opt.texi: Add copyright notice.
11140         * doc/alloca.texi: Likewise.
11141         * doc/ctime.texi: Likewise.
11142         * doc/functions.texi: Likewise.
11143         * doc/gcd.texi: Likewise.
11144         * doc/gnulib-tool.texi: Likewise.
11145         * doc/inet_ntoa.texi: Likewise.
11146         * doc/visibility.texi: Likewise.
11147
11148         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
11149         * doc/quote.texi: Add copyright notice.
11150
11151         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
11152         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
11153         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
11154         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
11155         is now obsolete, and give a pointer to the Sun list.
11156         Add copyright notice.
11157
11158 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11159
11160         * config/srclistvars.sh: Add copyright notice.
11161
11162 2006-08-14  Eric Blake  <ebb9@byu.net>
11163
11164         Import the following change from libc:
11165
11166         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
11167
11168         Upstream bug 2997.
11169         * lib/misc/error.c: Add space between program name and message if file
11170         name is missing.
11171
11172 2006-08-12  Karl Berry  <karl@gnu.org>
11173
11174         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
11175         remove, these originate in gnulib now.
11176
11177 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11178
11179         * doc/Makefile (standards.info standards.html standards.dvi):
11180         Also depend on make-stds.texi.
11181
11182 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
11183
11184         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
11185         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
11186
11187         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
11188         in wchar_t.  Problem reported by Eric Blake.
11189
11190         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
11191         LEN is smaller than SIZE.  Suggested by Bruno Haible.
11192         Also, help the compiler to keep LEN in a register.
11193
11194 2006-08-11  Eric Blake  <ebb9@byu.net>
11195
11196         * users.txt: Sort.  Add tar.
11197
11198 2006-08-11  Bruno Haible  <bruno@clisp.org>
11199
11200         * users.txt: New file.
11201
11202 2006-08-11  Bruno Haible  <bruno@clisp.org>
11203
11204         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
11205         before <wchar.h>. Needed for OSF/1 and BSD/OS.
11206
11207 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
11208
11209         * modules/snprintf (Depends-on): Remove minmax.
11210         (Maintainer): Add self and Bruno.
11211
11212 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
11213
11214         * lib/.cppi-disable: Add snprintf.h, socket_.h.
11215         * lib/snprintf.c: Include <errno.h> and <limits.h>.
11216         (EOVERFLOW): Define if the system does not.
11217         Do not include "minmax.h"; it wasn't used.
11218         (snprintf): Don't assume size_t promotes to an unsigned type.
11219         Fix bug when generated string was too long for the buffer: the
11220         buffer's contents are supposed to be the initial prefix of the
11221         output.  Don't assume vasnprintf returns EOVERFLOW if the size
11222         exceeds INT_MAX; do the check ourselves.
11223
11224         Import the following changes from libc:
11225
11226         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
11227
11228         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
11229         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
11230         set wc to the byte which couldn't be converted.
11231         (re_string_reconstruct): Don't clear valid_raw_len before calling
11232         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
11233         tip_context using re_string_context_at.
11234
11235         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
11236
11237         * lib/posix/regex.h: g++ still cannot handled [restrict].
11238
11239         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
11240
11241         * lib/posix/regex.h: Remove special handling for VMS.
11242
11243 2006-08-10  Jim Meyering  <jim@meyering.net>
11244
11245         * modules/same-inode: New module.
11246         * modules/dev-ino: New module.
11247         * modules/cycle-check: Depend on these modules, rather than simply
11248         including their .h files.
11249         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
11250         required via m4/cycle-check.m4.
11251         * modules/same: Depend on new same-inode module, rather than
11252         including same-inode.h.
11253         * modules/chdir-safer: New file.
11254
11255         * modules/chown (Depends-on): Add stat-macros.
11256
11257 2006-08-10  Jim Meyering  <jim@meyering.net>
11258
11259         * m4/cycle-check.m4: New file.
11260         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
11261         * m4/dev-ino.m4, m4/same-inode.m4: New files.
11262
11263 2006-08-10  Eric Blake  <ebb9@byu.net>
11264
11265         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
11266         in from original proposal.
11267
11268 2006-08-10  Eric Blake  <ebb9@byu.net>
11269         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11270
11271         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
11272         namespace.
11273
11274 2006-08-10  Bruno Haible  <bruno@clisp.org>
11275
11276         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
11277         as well.
11278
11279 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11280
11281         Sync from coreutils.
11282
11283         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
11284
11285         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
11286         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
11287
11288 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11289
11290         * modules/restrict: Remove; no longer needed now that we assume
11291         Autoconf 2.59 or later.
11292         * MODULES.html.sh: Remove 'restrict'.
11293         * modules/argp (Depends-on): Remove 'restrict'.
11294         * modules/base64 (Depends-on): Likewise.
11295         * modules/gc (Depends-on): Likewise.
11296         * modules/getaddrinfo (Depends-on): Likewise.
11297         * modules/glob (Depends-on): Likewise.
11298         * modules/inet_ntop (Depends-on): Likewise.
11299         * modules/inet_pton (Depends-on): Likewise.
11300         * modules/memxor (Depends-on): Likewise.
11301         * modules/regex (Depends-on): Likewise.
11302         * modules/strtok_r (Depends-on): Likewise.
11303         * modules/time_r (Depends-on): Likewise.
11304
11305 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
11306
11307         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
11308         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
11309         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
11310         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
11311         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
11312         * m4/memxor.m4 (gl_MEMXOR): Likewise.
11313         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
11314         gl_C_RESTRICT replaced by AC_C_RESTRICT.
11315
11316         Merge from coreutils.
11317         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
11318         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
11319         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
11320         * m4/time_r.m4 (gl_TIME_R): Likewise.
11321
11322 2006-08-09  Karl Berry  <karl@gnu.org>
11323
11324         * config/srclist.txt: no more gettext-tools, per Bruno.
11325
11326 2006-08-08  Eric Blake  <ebb9@byu.net>
11327
11328         * modules/verror: New module.
11329         * MODULES.html.sh: Document it.
11330
11331 2006-08-08  Eric Blake  <ebb9@byu.net>
11332
11333         * lib/verror.h, lib/verror.c: New files.
11334
11335 2006-08-08  Eric Blake  <ebb9@byu.net>
11336
11337         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
11338         verror_at_line output complies with GNU Coding Standards even when
11339         file is NULL.
11340
11341 2006-08-07  Bruno Haible  <bruno@clisp.org>
11342
11343         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
11344         versions of AIX.
11345         Reported by Ralf Wildenhues.
11346
11347 2006-08-07  Bruno Haible  <bruno@clisp.org>
11348
11349         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
11350         in an AC_DEFUN. Needed so that the autoconf snippets can use
11351         AC_REQUIRE.
11352
11353 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11354
11355         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11356         Initialize pkgdata_DATA.
11357         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
11358         overriding it.
11359
11360 2006-08-06  Eric Blake  <ebb9@byu.net>
11361
11362         * lib/error.h: Fold in some upstream changes from glibc.
11363         * lib/error.c: Likewise.
11364
11365 2006-08-04  Bruno Haible  <bruno@clisp.org>
11366
11367         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11368         Make the mostlyclean-local rule depend on mostlyclean-generic.
11369         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
11370
11371 2006-07-31  Bruno Haible  <bruno@clisp.org>
11372
11373         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
11374         <stdlib.h>, <string.h>.
11375
11376 2006-07-30  Bruno Haible  <bruno@clisp.org>
11377
11378         * modules/readlink (License): Change to LGPL.
11379
11380 2006-07-30  Bruno Haible  <bruno@clisp.org>
11381
11382         * modules/javaversion (Makefile.am): Distribute javaversion.java and
11383         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
11384         set PKGDATADIR to point to it.
11385
11386 2006-07-30  Bruno Haible  <bruno@clisp.org>
11387
11388         * modules/csharpexec (configure.ac): Comment out macro invocation.
11389         * modules/javaexec (configure.ac): Likewise.
11390         * modules/javacomp-script (configure.ac): Likewise.
11391
11392         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
11393
11394 2006-07-30  Bruno Haible  <bruno@clisp.org>
11395
11396         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
11397         linked-list.
11398
11399 2006-07-30  Bruno Haible  <bruno@clisp.org>
11400
11401         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
11402
11403 2006-07-30  Bruno Haible  <bruno@clisp.org>
11404
11405         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11406         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
11407         get removed.
11408
11409 2006-07-29  Bruno Haible  <bruno@clisp.org>
11410
11411         Make it possible for gnulib-tool to work with locally modified or
11412         augmented gnulib repositories.
11413         * gnulib-tool (func_usage): Document --local-dir option.
11414         (local_gnulib_dir): New variable.
11415         Handle --local-dir option.
11416         (func_lookup_file): New function.
11417         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
11418         (func_get_description, func_get_filelist, func_get_description,
11419         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
11420         func_get_automake_snippet, func_get_include_directive,
11421         func_get_license, func_get_maintainer): Use func_lookup_file.
11422         (func_import, func_create_testdir): Use func_lookup_file.
11423
11424 2006-07-29  Bruno Haible  <bruno@clisp.org>
11425
11426         * modules/setenv (Depends-on): Add unistd.
11427
11428 2006-07-29  Bruno Haible  <bruno@clisp.org>
11429
11430         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
11431
11432 2006-07-29  Bruno Haible  <bruno@clisp.org>
11433
11434         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
11435
11436 2006-07-29  Bruno Haible  <bruno@clisp.org>
11437
11438         * gnulib-tool (import, update): If there is no Makefile.am, look at
11439         aclocal.m4, instead of bailing out.
11440
11441 2006-07-29  Bruno Haible  <bruno@clisp.org>
11442
11443         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
11444         Categorize the options by when they are useful.
11445
11446 2006-07-29  Bruno Haible  <bruno@clisp.org>
11447
11448         * gnulib-tool (func_usage): Document option --no-libtool.
11449         Handle option --no-libtool.
11450         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
11451         for changed semantics of $libtool variable.
11452         (func_import): Likewise. If libtool is not used, show this through
11453         an option --no-libtool.
11454         (func_create_testdir): Update.
11455
11456 2006-07-29  Bruno Haible  <bruno@clisp.org>
11457
11458         * gnulib-tool (func_import): Extend error message about missing
11459         --doc-base.
11460
11461 2006-07-29  Bruno Haible  <bruno@clisp.org>
11462
11463         * gnulib-tool (func_import): Don't create the $docbase directory if
11464         there is no file to store there.
11465
11466 2006-07-29  Bruno Haible  <bruno@clisp.org>
11467
11468         * gnulib-tool (autoconf_minversion): If a --dir option is given and
11469         relevant, look for configure.ac there, not in the current directory.
11470         Also use a simple search for AC_PREREQ, not "autoconf --trace".
11471
11472 2006-07-29  Bruno Haible  <bruno@clisp.org>
11473
11474         * gnulib-tool (SORT): New variable.
11475         (func_usage): Undocument --assume-autoconf option.
11476         Remove --assume-autoconf option handling.
11477         (autoconf_minversion): Determine from the contents of configure.ac.
11478         (func_import): Remove autoconf_minversion handling.
11479         Suggested by Eric Blake.
11480
11481 2006-07-29  Bruno Haible  <bruno@clisp.org>
11482
11483         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
11484
11485 2006-07-29  Bruno Haible  <bruno@clisp.org>
11486
11487         * config/srclist.txt (*setenv.[ch]): Remove rules.
11488
11489 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11490
11491         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
11492
11493 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11494
11495         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
11496         arpa/inet.h.
11497
11498 2006-07-28  Simon Josefsson  <jas@extundo.com>
11499
11500         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
11501         * modules/inet_pton (Depends-on): Likewise.
11502
11503 2006-07-28  Simon Josefsson  <jas@extundo.com>
11504
11505         * m4/netinet_in_h.m4: New file.
11506
11507 2006-07-28  Simon Josefsson  <jas@extundo.com>
11508
11509         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
11510         #include's.
11511
11512 2006-07-28  Simon Josefsson  <jas@extundo.com>
11513
11514         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
11515         #include's.
11516
11517 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
11518
11519         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
11520         setgid on directories only if they set these bits.
11521         * lib/modechange.h: Remove obsolete comment about masks.
11522
11523 2006-07-28  Eric Blake  <ebb9@byu.net>
11524
11525         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
11526         macro expansion.
11527
11528 2006-07-28  Bruno Haible  <bruno@clisp.org>
11529
11530         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
11531
11532 2006-07-28  Bruno Haible  <bruno@clisp.org>
11533
11534         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
11535
11536 2006-07-28  Bruno Haible  <bruno@clisp.org>
11537
11538         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
11539         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
11540         Define fallbacks.
11541         Avoids link error on FreeBSD 4.x.
11542         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11543
11544         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
11545         encoding.
11546         * lib/mbswidth.c (iswcntrl): Likewise.
11547
11548 2006-07-27  Bruno Haible  <bruno@clisp.org>
11549
11550         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
11551         test.
11552
11553 2006-07-27  Bruno Haible  <bruno@clisp.org>
11554
11555         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
11556         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
11557         defined.
11558
11559 2006-07-26  Eric Blake  <ebb9@byu.net>
11560
11561         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
11562
11563 2006-07-26  Eric Blake  <ebb9@byu.net>
11564
11565         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
11566         like mingw that lack mkstemp.
11567         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
11568         avoid compilation warning on mingw.
11569
11570 2006-07-26  Bruno Haible  <bruno@clisp.org>
11571
11572         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
11573         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
11574         INT_FAST*_MIN, INTPTR_MIN.
11575
11576 2006-07-25  Bruno Haible  <bruno@clisp.org>
11577
11578         * modules/version-etc (Depends-on): Add stdarg.
11579
11580 2006-07-25  Bruno Haible  <bruno@clisp.org>
11581
11582         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
11583         complex commands.
11584
11585 2006-07-25  Bruno Haible  <bruno@clisp.org>
11586
11587         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
11588         defined in <stdarg.h> or config.h.
11589
11590 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
11591
11592         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
11593         (gl_STDIO_SAFER): Remove.
11594
11595 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
11596
11597         * MODULES.html.sh (File stream based Input/Output):
11598         Add fopen-safer, tmpfile-safer; remove stdio-safer.
11599         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
11600         * modules/fopen-safer, modules/tmpfile-safer: New files.
11601         * modules/stdio-safer: Remove.
11602
11603 2006-07-24  Bruno Haible  <bruno@clisp.org>
11604
11605         * modules/tmpdir: New file.
11606         * MODULES.html.sh (File system functions): Add it.
11607
11608 2006-07-24  Bruno Haible  <bruno@clisp.org>
11609
11610         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
11611         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
11612
11613 2006-07-24  Bruno Haible  <bruno@clisp.org>
11614
11615         * modules/clean-temp: New file.
11616
11617 2006-07-24  Bruno Haible  <bruno@clisp.org>
11618
11619         * m4/tmpdir.m4: New file, from GNU gettext.
11620
11621 2006-07-24  Bruno Haible  <bruno@clisp.org>
11622
11623         * lib/tmpdir.h: New file, from GNU gettext.
11624         * lib/tmpdir.c: New file, from GNU gettext.
11625
11626 2006-07-24  Bruno Haible  <bruno@clisp.org>
11627
11628         * lib/clean-temp.h: New file, from GNU gettext.
11629         * lib/clean-temp.c: New file, from GNU gettext.
11630
11631 2006-07-23  Eric Blake  <ebb9@byu.net>
11632
11633         * modules/stdio-safer (Files): Add tmpfile-safer.c.
11634         (Depends-on): Add binary-io.
11635
11636 2006-07-23  Eric Blake  <ebb9@byu.net>
11637
11638         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
11639
11640 2006-07-23  Eric Blake  <ebb9@byu.net>
11641
11642         * lib/tmpfile-safer.c: New file.
11643         * lib/stdio-safer.h (fopen_safer): Add prototype.
11644         * lib/stdio--.h (tmpfile): Make safer.
11645
11646 2006-07-23  Bruno Haible  <bruno@clisp.org>
11647
11648         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
11649         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
11650         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
11651         gl_linked_remove_at): Use it.
11652
11653 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11654         and Simon Josefsson <jas@extundo.com>
11655
11656         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
11657
11658         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
11659
11660 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11661
11662         * modules/close-stream: New file.
11663         * modules/closeout (Description): Make it clear that it exits
11664         with a diagnostic on error.
11665         (Depends-on): Add close-stream.  Remove fpending, stdbool.
11666         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
11667
11668 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11669
11670         * m4/close-stream.m4: New file.
11671
11672 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11673
11674         * lib/close-stream.c, lib/close-stream.h: New files.
11675
11676 2006-07-22  Bruno Haible  <bruno@clisp.org>
11677
11678         Merge from GNU gettext 0.15.
11679
11680         2006-05-01  Bruno Haible  <bruno@clisp.org>
11681
11682                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
11683
11684         2006-07-22  Bruno Haible  <bruno@clisp.org>
11685
11686                 * modules/javaversion: New file.
11687                 * MODULES.html.sh (Java): Add javaversion.
11688
11689         2006-03-12  Bruno Haible  <bruno@clisp.org>
11690
11691                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
11692
11693         2005-12-04  Bruno Haible  <bruno@clisp.org>
11694
11695                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
11696                 (untested).
11697
11698         2006-06-21  Bruno Haible  <bruno@clisp.org>
11699
11700                 Avoid warnings from recent versions of mcs.
11701                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
11702                 -o, -L, -r any more. Use options documented since mcs-1.0
11703                 instead. Similarly for -g.
11704
11705         2005-12-04  Bruno Haible  <bruno@clisp.org>
11706
11707                 * build-aux/csharpcomp.sh.in: Suffix for resources is
11708                 .resources, not .resource.
11709
11710         2005-07-09  Bruno Haible  <bruno@clisp.org>
11711
11712                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
11713                 add a .dll suffix.
11714                 Reported by Mark Junker <mjscod@gmx.de>.
11715
11716         2006-07-22  Bruno Haible  <bruno@clisp.org>
11717
11718                 * modules/gettext: Upgrade to gettext-0.15.
11719                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
11720                 m4/visibility.m4.
11721                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
11722
11723 2006-07-22  Bruno Haible  <bruno@clisp.org>
11724
11725         Merge from GNU gettext 0.15.
11726
11727         2006-03-25  Bruno Haible  <bruno@clisp.org>
11728
11729                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
11730
11731         2006-07-21  Bruno Haible  <bruno@clisp.org>
11732
11733                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
11734                 "1.1".
11735
11736         2006-05-09  Bruno Haible  <bruno@clisp.org>
11737
11738                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
11739                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
11740                 for the conftestver execution.
11741
11742         2006-05-01  Bruno Haible  <bruno@clisp.org>
11743
11744                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
11745                 optional target-version argument. Verify that the compiler
11746                 groks source of the specified source-version, or add -source
11747                 option as necessary. Verify that the compiler produces
11748                 bytecode in the specified target-version, or add -target and
11749                 -source options as necessary. Make the result of the test
11750                 available as variable CONF_JAVAC. Also log error output in
11751                 config.log.
11752
11753         2006-03-11  Bruno Haible  <bruno@clisp.org>
11754
11755                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
11756
11757         2006-05-09  Bruno Haible  <bruno@clisp.org>
11758
11759                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
11760                 CLASSPATH_SEPARATOR to a semicolon.
11761
11762         2006-03-12  Bruno Haible  <bruno@clisp.org>
11763
11764                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
11765                 available as variable CONF_JAVA, for subsequent autoconf
11766                 tests. Also log error output in config.log.
11767
11768         2006-07-19  Bruno Haible  <bruno@clisp.org>
11769
11770                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
11771                 that getline works on glibc2 systems. Needed to avoid trouble
11772                 in relocatable.c.
11773                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
11774
11775         2005-12-04  Bruno Haible  <bruno@clisp.org>
11776
11777                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
11778                 launcher (untested).
11779
11780         2005-12-04  Bruno Haible  <bruno@clisp.org>
11781
11782                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
11783
11784         2006-07-22  Bruno Haible  <bruno@clisp.org>
11785
11786                 * gettext.m4: Update from GNU gettext-0.15.
11787                 * nls.m4: Likewise.
11788                 * po.m4: Likewise.
11789                 * inttypes-pri.m4: Likewise.
11790                 * inttypes-h.m4: Renamed from inttypes.m4.
11791                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
11792
11793 2006-07-22  Bruno Haible  <bruno@clisp.org>
11794
11795         Merge from GNU gettext 0.15.
11796
11797         2005-07-05  Bruno Haible  <bruno@clisp.org>
11798
11799                 * printf-args.c (printf_fetchargs): Work around broken
11800                 definition of wint_t on mingw.
11801
11802         2005-02-12  Bruno Haible  <bruno@clisp.org>
11803
11804                 * xallocsa.h: Add extern "C" for C++.
11805
11806         2006-05-17  Bruno Haible  <bruno@clisp.org>
11807
11808                 Cygwin portability.
11809                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
11810
11811         2006-04-30  Bruno Haible  <bruno@clisp.org>
11812
11813                 * progreloc.c: Include <mach-o/dyld.h> if available.
11814                 (find_executable): Use _NSGetExecutablePath when possible.
11815
11816         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
11817
11818                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
11819                 function.
11820
11821         2005-12-29  Bruno Haible  <bruno@clisp.org>
11822
11823                 * progreloc.c (set_program_name_and_installdir): Fix
11824                 compilation error.
11825
11826         2005-12-04  Bruno Haible  <bruno@clisp.org>
11827
11828                 Cygwin portability.
11829                 * progreloc.c: Include <windows.h> also on Cygwin.
11830                 (find_executable): Add support for Cygwin.
11831                 (set_program_name_and_installdir): Handle also platforms with
11832                 nonempty EXEEXT.
11833
11834         2006-07-11  Bruno Haible  <bruno@clisp.org>
11835
11836                 * javacomp.c: Fix a comment.
11837                 Reported by Jim Meyering.
11838
11839         2006-04-30  Bruno Haible  <bruno@clisp.org>
11840
11841                 * javacomp.h (compile_java_class): Add source_version,
11842                 target_version arguments.
11843                 * javacomp.c: Rewritten to choose only a compiler that
11844                 respects the specified source_version and target_version.
11845
11846         2006-06-27  Bruno Haible  <bruno@clisp.org>
11847
11848                 Assume correct S_ISDIR macro.
11849                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
11850
11851         2006-07-22  Bruno Haible  <bruno@clisp.org>
11852
11853                 * javaversion.h: New file, from GNU gettext.
11854                 * javaversion.c: New file, from GNU gettext.
11855                 * javaversion.java: New file, from GNU gettext.
11856                 * javaversion.class: New file, from GNU gettext.
11857
11858         2006-05-17  Bruno Haible  <bruno@clisp.org>
11859
11860                 Cygwin portability.
11861                 * javaexec.c (execute_java_class): Test for jview program
11862                 also on Cygwin.
11863
11864         2006-04-09  Bruno Haible  <bruno@clisp.org>
11865
11866                 * fatal-signal.c: Don't include string.h.
11867                 (at_fatal_signal): Use a copying loop instead of memcpy.
11868
11869         2005-12-04  Bruno Haible  <bruno@clisp.org>
11870
11871                 * csharpexec.c: Add support for 'clix' launcher (untested).
11872                 (execute_csharp_using_sscli): New function.
11873                 (execute_csharp_program): Call it.
11874
11875         2006-06-21  Bruno Haible  <bruno@clisp.org>
11876
11877                 Avoid warnings from recent versions of mcs.
11878                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
11879                 -o, -L, -r any more. Use options documented since mcs-1.0
11880                 instead. Similarly for -g.
11881
11882         2005-07-09  Bruno Haible  <bruno@clisp.org>
11883
11884                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
11885                 add a .dll suffix.
11886                 Reported by Mark Junker <mjscod@gmx.de>.
11887
11888         2006-06-17  Bruno Haible  <bruno@clisp.org>
11889
11890                 * config.charset: Update for NetBSD 3.0.
11891
11892         2006-05-17  Bruno Haible  <bruno@clisp.org>
11893
11894                 Cygwin portability.
11895                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
11896
11897         2006-05-16  Bruno Haible  <bruno@clisp.org>
11898
11899                 * localcharset.c [CYGWIN]: Include <windows.h>.
11900                 (get_charset_aliases): For Cygwin, return the same CPxxx
11901                 aliases list as under WIN32.
11902                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
11903                 the environment variables. Fall back to GetACP().
11904
11905         2006-04-05  Bruno Haible  <bruno@clisp.org>
11906
11907                 * config.charset: Update Juan Manuel Guerrero's address.
11908
11909         2005-02-12  Bruno Haible  <bruno@clisp.org>
11910
11911                 * allocsa.h: Add extern "C" for C++.
11912
11913         2005-02-10  Bruno Haible  <bruno@clisp.org>
11914
11915                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
11916                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
11917
11918         2006-07-22  Bruno Haible  <bruno@clisp.org>
11919
11920                 * gettext.h: Update to GNU gettext-0.15.
11921
11922 2006-07-22  Bruno Haible  <bruno@clisp.org>
11923
11924         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
11925         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
11926         lib-prefix.m4, longdouble.m4, ssize_t.m4.
11927
11928 2006-07-21  Eric Blake  <ebb9@byu.net>
11929
11930         * modules/stdlib-safer: New file.
11931         * MODULES.html.sh (File stream based Input/Output): Add
11932         stdlib-safer.
11933
11934 2006-07-21  Eric Blake  <ebb9@byu.net>
11935
11936         * lib/stdlib-safer.h: New file from coreutils, required by
11937         stdlib--.h.
11938
11939 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
11940
11941         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
11942
11943 2006-07-20  Bruno Haible  <bruno@clisp.org>
11944
11945         * gnulib-tool: Recognize new option --assume-autoconf.
11946         (autoconf_minversion): New variable.
11947         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
11948
11949 2006-07-20  Bruno Haible  <bruno@clisp.org>
11950
11951         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
11952
11953 2006-07-19  Derek R. Price  <derek@ximbiot.com>
11954
11955         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
11956         Reindent and repaginate.
11957
11958 2006-07-19  Derek Price  <derek@ximbiot.com>
11959
11960         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
11961         Correct grammar.
11962
11963 2006-07-17  Bruno Haible  <bruno@clisp.org>
11964
11965         * modules/list: New file.
11966         * modules/array-list: New file.
11967         * modules/carray-list, modules/carray-list-tests: New files.
11968         * modules/linked-list, modules/linked-list-tests: New files.
11969         * modules/avltree-list, modules/avltree-list-tests: New files.
11970         * modules/rbtree-list, modules/rbtree-list-tests: New files.
11971         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
11972         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
11973         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
11974         * modules/oset: New file.
11975         * modules/array-oset: New file.
11976         * modules/avltree-oset, modules/avltree-oset-tests: New files.
11977         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
11978         * tests/test-carray_list.c: New file.
11979         * tests/test-linked_list.c: New file.
11980         * tests/test-avltree_list.c: New file.
11981         * tests/test-rbtree_list.c: New file.
11982         * tests/test-linkedhash_list.c: New file.
11983         * tests/test-avltreehash_list.c: New file.
11984         * tests/test-rbtreehash_list.c: New file.
11985         * tests/test-avltree_oset.c: New file.
11986         * tests/test-rbtree_oset.c: New file.
11987         * MODULES.html.sh (Container data structures): New section.
11988
11989 2006-07-17  Bruno Haible  <bruno@clisp.org>
11990
11991         * m4/gl_list.m4: New file.
11992
11993 2006-07-17  Bruno Haible  <bruno@clisp.org>
11994
11995         * lib/gl_list.h: New file.
11996         * lib/gl_list.c: New file.
11997         * lib/gl_array_list.h: New file.
11998         * lib/gl_array_list.c: New file.
11999         * lib/gl_carray_list.h: New file.
12000         * lib/gl_carray_list.c: New file.
12001         * lib/gl_linked_list.h: New file.
12002         * lib/gl_linked_list.c: New file.
12003         * lib/gl_anylinked_list1.h: New file.
12004         * lib/gl_anylinked_list2.h: New file.
12005         * lib/gl_avltree_list.h: New file.
12006         * lib/gl_avltree_list.c: New file.
12007         * lib/gl_anyavltree_list1.h: New file.
12008         * lib/gl_anyavltree_list2.h: New file.
12009         * lib/gl_rbtree_list.h: New file.
12010         * lib/gl_rbtree_list.c: New file.
12011         * lib/gl_anyrbtree_list1.h: New file.
12012         * lib/gl_anyrbtree_list2.h: New file.
12013         * lib/gl_anytree_list1.h: New file.
12014         * lib/gl_anytree_list2.h: New file.
12015         * lib/gl_linkedhash_list.h: New file.
12016         * lib/gl_linkedhash_list.c: New file.
12017         * lib/gl_anyhash_list1.h: New file.
12018         * lib/gl_anyhash_list2.h: New file.
12019         * lib/gl_avltreehash_list.h: New file.
12020         * lib/gl_avltreehash_list.c: New file.
12021         * lib/gl_rbtreehash_list.h: New file.
12022         * lib/gl_rbtreehash_list.c: New file.
12023         * lib/gl_anytreehash_list1.h: New file.
12024         * lib/gl_anytreehash_list2.h: New file.
12025
12026         * lib/gl_oset.h: New file.
12027         * lib/gl_oset.c: New file.
12028         * lib/gl_array_oset.h: New file.
12029         * lib/gl_array_oset.c: New file.
12030         * lib/gl_avltree_oset.h: New file.
12031         * lib/gl_avltree_oset.c: New file.
12032         * lib/gl_rbtree_oset.h: New file.
12033         * lib/gl_rbtree_oset.c: New file.
12034         * lib/gl_anytree_oset.h: New file.
12035
12036 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
12037
12038         * m4/mkancesdirs.m4: New file.
12039         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
12040         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
12041         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
12042         it.
12043
12044 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
12045
12046         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
12047         * lib/mkancesdirs.h: New files.
12048         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
12049         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
12050         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
12051         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
12052         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
12053         callers changed.  Revamp internals significantly, by not
12054         attempting to create directories that are temporarily more
12055         permissive than the final results.  Do not attempt to use
12056         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
12057         This removes some race conditions, fixes some bugs, and simplifies
12058         things.  Use new dirchownmod function to do owner and mode changes.
12059         * lib/mkdir-p.h: Likewise.
12060         * lib/modechange.c (octal_to_mode): New function.
12061         (struct mode_change): New member mentioned.
12062         (make_node_op_equals): New arg mentioned.  All callers changed.
12063         (mode_compile): Keep track of which mode bits the user has explicitly
12064         mentioned.
12065         (mode_adjust): New arg DIR, so that we implement the X op correctly.
12066         New arg PMODE_BITS, to keep track of which mode bits the user
12067         mentioned; it treats S_ISUID and S_ISGID speciall.
12068         All callers changed.
12069         * lib/modechange.h: Likewise.
12070
12071 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
12072
12073         * MODULES.html.sh: Add mkancestors.
12074         * modules/mkancesdirs: New module.
12075         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
12076         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
12077         The chdir-safer and afs files are now orphans; I'll remove them
12078         unless someone speaks up.
12079         Add lib/dirchownmod.c, lib/dirchownmod.h.
12080         (Depends-on): Remove alloca, chown, save-cwd, dirname.
12081         Add lchown, mkancesdirs.
12082         (Maintainer): Add self.
12083
12084 2006-07-15  Karl Berry  <karl@gnu.org>
12085
12086         * gnulib-tool: help message wording/arrangement.
12087
12088 2006-07-14  Simon Josefsson  <jas@extundo.com>
12089
12090         * doc/gnulib.texi (Libtool and Windows): New section.
12091
12092 2006-07-12  Simon Josefsson  <jas@extundo.com>
12093
12094         * modules/gendocs (License): Fix license, approved by Karl.
12095
12096 2006-07-12  Eric Blake  <ebb9@byu.net>
12097
12098         * MODULES.html.sh: Add gendocs.
12099
12100 2006-07-11  Eric Blake  <ebb9@byu.net>
12101
12102         * modules/fdl: New module, to install doc/fdl.texi.
12103         * MODULES.html.sh: Add new section for documentation modules.
12104         * gnulib-tool: Avoid space-tab.
12105         (--doc-base): New option, to manage files from doc.
12106
12107 2006-07-11  Eric Blake  <ebb9@byu.net>
12108
12109         * m4/absolute-header.m4: Fix comments to match recent change.
12110
12111 2006-07-11  Eric Blake  <ebb9@byu.net>
12112
12113         * gnulib-tool: List --doc-base before --tests-base.
12114
12115 2006-07-11  Derek R. Price  <derek@ximbiot.com>
12116
12117         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
12118
12119 2006-07-11  Bruno Haible  <bruno@clisp.org>
12120
12121         * README: Mention where to put documentation.
12122
12123 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12124
12125         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
12126
12127 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
12128
12129         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
12130         to stdint.m4.
12131
12132 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
12133
12134         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
12135         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
12136         "no/such/file/stdint.h" when there is no such file, so that
12137         the resulting C code can be parsed by dodgy compilers.
12138         Problems reported by Bob Proulx.
12139
12140 2006-07-10  Derek R. Price  <derek@ximbiot.com>
12141
12142         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
12143         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
12144         macros into the GNU _D_EXACT_NAMLEN.
12145         * lib/savedir.c:  Likewise.
12146         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
12147
12148 2006-07-10  Derek R. Price  <derek@ximbiot.com>
12149         and Paul Eggert  <eggert@cs.ucla.edu>
12150
12151         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
12152         * m4/savedir.m4:
12153         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
12154         macros into the GNU _D_EXACT_NAMLEN.
12155
12156 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
12157
12158         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
12159         around the absolute name, to work around a problem with the HP-UX
12160         11.23 native C compiler, reported by Bob Proulx.
12161
12162 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
12163
12164         * doc/maintain.texi, make-stds.texi: Sync from
12165         <http://savannah.gnu.org/projects/gnustandards>.
12166
12167 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
12168
12169         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
12170
12171 2006-07-09  Jim Meyering  <jim@meyering.net>
12172
12173         * m4/glob.m4: Remove a doubled word in a comment.
12174
12175 2006-07-09  Jim Meyering  <jim@meyering.net>
12176
12177         * lib/argp-pv.c: Remove a doubled word in a comment.
12178         * lib/check-version.c (check_version): Likewise.
12179         * lib/javacomp.c (compile_java_class): Likewise.
12180
12181 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12182
12183         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
12184         for the benefit of people using Autoconf 2.60.  If you want to
12185         support older Autoconf versions you can copy m4/onceonly_2_57.m4
12186         (or m4/onceonly.m4, if pre-2.57) manually.
12187
12188 2006-07-08  Jim Meyering  <jim@meyering.net>
12189
12190         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
12191         comment.
12192         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
12193         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
12194         comment.
12195
12196 2006-07-08  Jim Meyering  <jim@meyering.net>
12197
12198         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
12199
12200 2006-07-07  Simon Josefsson  <jas@extundo.com>
12201
12202         * tests/test-crc.c: Change expected crc value, the test vector
12203         were probably computed using the old broken crc.c?
12204
12205 2006-07-06  Simon Josefsson  <jas@extundo.com>
12206
12207         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
12208         now the canonical place for the M4 file).
12209
12210         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
12211         from the sys_socket dependency now.
12212
12213         * modules/inet_pton (Files): Ditto.
12214
12215         * modules/inet_ntop (Files): Ditto.
12216
12217 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
12218
12219         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
12220         not gl_PREREQ_GETUSERSHELL.
12221
12222 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12223
12224         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
12225         with only one argument, for Autoconf 2.60.
12226         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
12227         expand to nothing, so add a shell command to avoid syntax error.
12228         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
12229
12230 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12231
12232         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
12233
12234 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12235
12236         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
12237         no longer needed.  Check for isblank decl.
12238         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
12239         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
12240         of existence.
12241
12242 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12243
12244         * lib/getloadavg.c: Use __VMS, not VMS.
12245         * lib/getopt.c: Likewise.
12246         * lib/getpagesize.h: Likewise.
12247         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
12248         and probably does not work.
12249
12250 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12251
12252         * lib/.cppi-disable: Add wcwidth.
12253         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
12254         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
12255         (ISGRAPH): Remove.  All uses changed to isgraph.
12256         (FOLD) [!defined _LIBC]: Remove special case.
12257         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
12258         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
12259         HAVE_ISBLANK.
12260         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
12261         case.
12262
12263 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
12264
12265         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
12266         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
12267         brackets.  Other minor changes to suppress some compiler
12268         warnings.
12269
12270 2006-07-06  Derek R. Price  <derek@ximbiot.com>
12271         and Paul Eggert  <eggert@cs.ucla.edu>
12272
12273         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
12274         of invoking obsolescent AC_HEADER_DIRENT macro.
12275         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
12276         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
12277         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
12278         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
12279         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
12280         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
12281         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
12282         * m4/readdir.m4: Remove; no longer needed.
12283
12284 2006-07-06  Derek R. Price  <derek@ximbiot.com>
12285         and Paul Eggert  <eggert@cs.ucla.edu>
12286
12287         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
12288         Don't worry about this obsolete case any more.
12289         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
12290         directories.
12291         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
12292         worry about this obsolete case any more.
12293         * lib/fts.c: Likewise.
12294         * lib/getcwd.c: Likewise.
12295         * lib/glob.h: Likewise.
12296         * lib/savedir.c: Likewise.
12297
12298 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12299
12300         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
12301         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
12302         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
12303         needed.
12304         All uses removed.
12305         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12306         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
12307         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
12308         needed.
12309         * m4/getdate.m4 (gl_GETDATE): Likewise.
12310         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
12311         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
12312         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
12313         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12314         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
12315         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
12316         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
12317         needed.
12318
12319 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12320
12321         * lib/memcasecmp.c: Include <limits.h>.
12322         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
12323         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
12324         Don't assume isdigit succeeds only on '0' through '9'.
12325
12326 2006-07-05  Eric Blake  <ebb9@byu.net>
12327
12328         * modules/getaddrinfo (Depends-on): Add snprintf.
12329
12330 2006-07-05  Eric Blake  <ebb9@byu.net>
12331
12332         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
12333         to avoid 'header present but could not be compiled' on cygwin.
12334
12335 2006-07-05  Eric Blake  <ebb9@byu.net>
12336
12337         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
12338         missing from netdb.h.
12339         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
12340
12341 2006-07-05  Derek R. Price  <derek@ximbiot.com>
12342
12343         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
12344         no longer needed.
12345         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
12346         * m4/getdate.m4 (gl_GETDATE): Likewise.
12347         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
12348         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
12349         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
12350         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
12351         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
12352
12353 2006-07-05  Derek R. Price  <derek@ximbiot.com>
12354
12355         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
12356         All uses of is_space replaced by isspace.
12357         * lib/exit.h: Don't talk about STDC_HEADERS.
12358         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
12359         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
12360         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
12361         replaced by isprint etc.
12362         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
12363         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
12364         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
12365         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
12366         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
12367         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
12368
12369 2006-07-05  Bruno Haible  <bruno@clisp.org>
12370
12371         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
12372         the function exists, before testing against AIX.
12373         Reported by Martin Lambers <marlam@marlam.de>.
12374
12375 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
12376
12377         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
12378         From Mark D. Baushke.
12379
12380 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
12381
12382         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
12383         to the absolute name, not just one, to bypass Sun C 5.8's
12384         "warning: #include of /usr/include/... may be non-portable".
12385
12386 2006-07-04  Eric Blake  <ebb9@byu.net>
12387
12388         * modules/dirname-tests: New test module.
12389         * tests/test-dirname.c: New file, replacing dirname.c
12390         TEST_DIRNAME section that was recently deleted.
12391
12392 2006-07-04  Bruno Haible  <bruno@clisp.org>
12393
12394         Assume ANSI C header files and <ctype.h> functions.
12395         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
12396         (mbsnwidth): Use isprint, iscntrl instead.
12397
12398 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12399
12400         Merge from coreutils.
12401         * MODULES.html.sh: Add xstrtold.
12402         * modules/xstrtold: New file.
12403         * modules/cycle-check (Files): Add lib/same-inode.h.
12404         * modules/dirname (Files): Add m4/double-slash-root.m4.
12405         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
12406         * modules/mkdir-p (Files): Add lib/same-inode.h.
12407         * modules/same (Files): Add lib/same-inode.h.
12408
12409 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12410
12411         * m4/absolute-header.m4: Renamed from full-header-path.m4.
12412         This is to keep the terminology clean; POSIX talks about
12413         "absolute pathnames", not "full pathnames", but the GNU
12414         Coding Standards say to use "path" for something else;
12415         so use "absolute" to keep both sides happy.
12416         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
12417         Set gl_absolute_header, not gl_full_header_path.
12418         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
12419         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
12420         All uses changed.
12421
12422         Merge from coreutils.
12423
12424         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
12425
12426         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
12427         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
12428         want to require the building of c-strtod.o.
12429         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
12430         needs -lm directly.
12431         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
12432
12433         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
12434
12435         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
12436         --as-needed option if available.  Problem reported by Albert Chin in
12437         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
12438         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
12439         cc merely issues a bunch of annoying warnings for --as-needed
12440         (this problem was reported by Bob Proulx).  Also, try linking with
12441         -lm to detect a bug in binutils 2.16 (this problem was reported
12442         by Ralf Wildenhues).
12443
12444         2006-06-18  Jim Meyering  <jim@meyering.net>
12445
12446         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
12447         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
12448         macro.
12449         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
12450         also check for glibc-2.4's abort-inducing bug.
12451
12452         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
12453         Low-probability clean-up should be to use rmdir to get rid of
12454         the just-created directory, not unlink.
12455
12456         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
12457         configure fail, and request a bug report to inform us about it.
12458         Add a comment that, barring reports to the contrary, in 2007 we'll
12459         assume ftruncate is universally available.
12460
12461         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
12462
12463         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
12464
12465         2006-03-12  Jim Meyering  <jim@meyering.net>
12466
12467         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
12468         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
12469         * m4/same.m4 (gl_SAME): Likewise.
12470         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
12471
12472         2006-03-11  Eric Blake  <ebb9@byu.net>
12473
12474         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
12475         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
12476         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
12477         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
12478
12479 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12480
12481         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
12482         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
12483         reported by Mark D. Baushke, one in
12484         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
12485
12486         Merge from coreutils.
12487
12488         * lib/.cppi-disable: Add stdint_.h.
12489         * lib/.cvsignore: Add stdint.h.
12490
12491         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
12492
12493         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
12494         both double and long double versions.
12495         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
12496         * lib/xstrtold.c: New file.
12497         * lib/xstrtod.h (xstrtold): New decl.
12498
12499         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12500
12501         * lib/filemode.c (setst): Remove.
12502         (strmode): Rewrite to avoid setst.  This makes the code shorter,
12503         (arguably) clearer, and the generated code is a bit smaller on my
12504         Debian GNU/Linux stable x86 host.
12505
12506         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
12507
12508         * lib/filemode.c: Include "filemode.h" first, to test the interface.
12509         Assume that filemode.h includes sys/types.h and sys/stat.h.
12510         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
12511         (ftypelet): Reorder to put common cases first, for efficiency.
12512         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
12513         to do 'M'.
12514         (strmode): Renamed from mode_string, and now stores 12 bytes instead
12515         of 10, for compatibility with FreeBSD.  All callers changed.
12516         (filemodestring): Now stores 12 bytes instead of 10, and sets file
12517         types that can't be deduced solely from st_mode.  First arg is now a
12518         const pointer.
12519         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
12520         (strmode): Renamed from mode_string.
12521         (filemodestring): New decl.
12522         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
12523         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
12524         needed.
12525         (S_ISPORT, S_ISWHT): New macros, if not already defined.
12526
12527         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
12528
12529         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
12530         fsusage.h now does that.  Include fsusage.h first, to test interface.
12531         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
12532         at most one method (the old code could have generated decls that
12533         didn't conform to C89, not that this was ever exercised).
12534         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
12535
12536         2006-03-19  Jim Meyering  <jim@meyering.net>
12537
12538         Work even in a chroot where d_ino values for entries in "/"
12539         don't match the stat.st_ino values for the same names.
12540         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
12541         number, iterate through all entries again, using lstat instead.
12542         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
12543         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
12544
12545         * lib/getcwd.c (__getcwd): Clarify a comment.
12546         Use memcpy in place of a call to strcpy.
12547
12548         2006-03-12  Jim Meyering  <jim@meyering.net>
12549
12550         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
12551         matches that of the current directory (which we're about to chdir ".."
12552         out of), then save the dev-ino of the parent, instead.
12553
12554         * lib/same-inode.h (SAME_INODE): New file/macro.
12555         * lib/chdir-safer.c (SAME_INODE): Remove definition.
12556         Include "same-inode.h", instead.
12557         * lib/same.c: Likewise.
12558         * lib/cycle-check.h: Include "same-inode.h".
12559         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
12560         * lib/cycle-check.c (SAME_INODE): Remove definition.
12561         * lib/root-dev-ino.h: Include "same-inode.h".
12562
12563         2006-03-11  Eric Blake  <ebb9@byu.net>
12564
12565         * lib/same.c (same_name): s/base_name/last_component/
12566         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
12567         * lib/filenamecat.c (file_name_concat): Likewise.
12568
12569         2006-03-11  Eric Blake  <ebb9@byu.net>,
12570                     Paul Eggert  <eggert@cs.ucla.edu>
12571
12572         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
12573         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
12574         drive prefix.
12575         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
12576         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
12577         (last_component): New method.
12578         * lib/dirname.c (dir_len): Determine when drive letters need a
12579         subsequent slash.  Preserve // when it is special.
12580         (dir_name): Don't append dot when drive letter is absolute.
12581         [TEST_DIRNAME]: Move into a full-blown gnulib test.
12582         * lib/basename.c (base_name): New semantics - malloc the result.
12583         Preserve // when it is special.  Preserve relative files that look
12584         like drive letters.
12585         (base_len): Preserve // when it is special.
12586         (last_component): New method, similar to old base_name semantics.
12587         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
12588         base_name.  Strip redundant slashes from ///.
12589
12590 2006-07-03  Jim Meyering  <jim@meyering.net>
12591
12592         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
12593         macro is used before the first cycle_check call.
12594
12595 2006-07-03  Eric Blake  <ebb9@byu.net>
12596
12597         * modules/dirname (Depends-on): Add xstrndup.
12598
12599 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
12600
12601         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
12602         test cases, so that config.log is a bit easier to follow.
12603
12604 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
12605
12606         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
12607         both are 64 bits, since this seems to be the tradition, and this
12608         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
12609         we ever run into a host that prefers long long to long in this
12610         case, we'll need another configure-time test.  Problem reported by
12611         Jim Meyering.
12612
12613 2006-07-02  Eric Blake  <ebb9@byu.net>
12614
12615         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
12616
12617 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12618
12619         * modules/inttypes (Depends-on): No longer depends on stdint.
12620         * modules/stdint (Description): Say more about assumptions.
12621         Say that the fast types might differ.  Say macros are used.
12622         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
12623         (Makefile.am): Revise list of substituted symbols to match
12624         new stdint.m4.
12625         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
12626         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
12627         * tests/test-stdint.c (verify_same_types)
12628         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
12629         the code conforms to C99/C89.
12630         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
12631         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
12632
12633 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12634
12635         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
12636         but fix a bug, by requiring at least 64 bits.
12637         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
12638         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
12639         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
12640         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
12641
12642         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
12643         changes.  Make 2.59 a prerequisite.  Check and substitute for
12644         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
12645         inttypes.h.  Do not use special include files; just use the
12646         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
12647         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
12648         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
12649         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
12650         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
12651         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
12652         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
12653         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
12654         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
12655         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
12656         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
12657         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
12658         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
12659         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
12660         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
12661         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
12662         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
12663         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
12664         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
12665         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
12666         WINT_MAX.  Check for C99 conformance more strictly, by detecting
12667         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
12668         not check for things that C99 does not require, e.g., int8_t.  If
12669         a test isn't needed unless <stdint.h> isn't working, and is
12670         unlikely to be needed for any other reason, then don't do it
12671         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
12672         size_t, since we assume C89 freestanding at least.  Do not check
12673         for sig_atomic_t, wchar_t, or wint_t, since the code now does
12674         the right thing even if the types are not defined.  Instead use:
12675         (gl_STDINT_TYPE_PROPERTIES): New macro.
12676         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
12677         testing whether <sys/types.h> clashes, as Autoconf does this for
12678         us now.  All uses removed.
12679         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
12680         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
12681         (gl_CHECK_TYPE_SAME):
12682         Remove; no longer needed.
12683         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
12684         exists, since we'll return 0 anyway in that case.
12685         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
12686
12687 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12688
12689         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
12690         possible collision with system files.
12691         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
12692         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
12693         WCHAR_MIN and WCHAR_MAX in this case.
12694         (<stddef.h>): Do not include; no longer needed.
12695         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
12696         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
12697         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
12698         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
12699         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
12700         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
12701         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
12702         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
12703         !defined(__c99))]: Include in this case too, since it's harmless
12704         now.
12705         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
12706         dangerous to do so.
12707         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
12708         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
12709         (_STDINT_MIN, _STDINT_MAX): New macros.
12710         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
12711         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
12712         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
12713         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
12714         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
12715         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
12716         macros, not typedefs; this simplifies things quite a bit.
12717         Use long int for all types narrower than int64_t.
12718         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
12719         Define in terms of long long int or int64_t or long int,
12720         not int64_t or int32_t.  This saves some compile-time testing.
12721         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
12722         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
12723         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
12724         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
12725         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
12726         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
12727         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
12728         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
12729         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
12730         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
12731         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12732         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12733         undef any previous version and define our own version, for
12734         simplicity and consistency with the new macros for types.
12735         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
12736         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
12737         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
12738         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
12739         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
12740         @WINT_T_SUFFIX@ to keep things simple here.
12741         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
12742         Simplify by assuming typical 8/16/32/64 host, since we're
12743         already doing that elsewhere anyway.
12744         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
12745         and assume long long int is 64 bits if available.  This
12746         speeds up 'configure'.
12747
12748 2006-07-01  Eric Blake  <ebb9@byu.net>
12749
12750         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
12751         Reported by Andreas Buening.
12752
12753 2006-07-01  Eric Blake  <ebb9@byu.net>
12754
12755         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
12756
12757 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
12758
12759         * lib/getaddrinfo.c: fixed typo
12760
12761 2006-06-29  Jim Meyering  <jim@meyering.net>
12762
12763         * modules/strftime (Maintainer): Add my name, since with the
12764         FPRINTFTIME changes strftime.c has forked from glibc.
12765
12766 2006-06-29  Eric Blake  <ebb9@byu.net>
12767
12768         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
12769
12770 2006-06-29  Eric Blake  <ebb9@byu.net>
12771
12772         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
12773
12774 2006-06-29  Eric Blake  <ebb9@byu.net>
12775
12776         * lib/stat_.h: New file.
12777
12778 2006-06-29  Eric Blake  <ebb9@byu.net>
12779
12780         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
12781         unused static function.
12782
12783 2006-06-29  Eric Blake  <ebb9@byu.net>
12784
12785         * doc/functions.texi (Function Portability): Document missing lstat
12786         on mingw.
12787
12788 2006-06-29  Eric Blake  <ebb9@byu.net>
12789
12790         * MODULES.html.sh: Add sys_stat.
12791         * modules/sys_stat: New module.
12792         * modules/mkstemp (Depends-on): Add sys_stat.
12793
12794 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12795
12796         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
12797
12798 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12799
12800         * m4/c-bs-a.m4: Removed.
12801
12802 2006-06-29  Derek R. Price  <derek@ximbiot.com>
12803
12804         * lib/strftime.c: Assume strftime() exists.
12805
12806 2006-06-29  Derek Price  <derek@ximbiot.com>
12807
12808         * modules/c-bs-a: Removed - \a is C89.
12809         * MODULES.html.sh: Remove c-bs-a.
12810
12811 2006-06-29  Bruno Haible  <bruno@clisp.org>
12812
12813         * modules/wcwidth (License): Change to LGPL.
12814
12815 2006-06-28  Simon Josefsson  <jas@extundo.com>
12816
12817         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
12818         on _WIN32.
12819
12820         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
12821         getnameinfo.
12822
12823 2006-06-28  Simon Josefsson  <jas@extundo.com>
12824
12825         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
12826
12827 2006-06-28  Simon Josefsson  <jas@extundo.com>
12828
12829         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
12830         functions there.  It will succeed on Windows XP, but on Windows
12831         2000 and (presumably) earlier, it will fail, and use the internal
12832         re-implementation.
12833         (use_win32_p): New function.
12834         (getaddrinfo): Use strtoul on servname, to support numeric ports.
12835         Support AI_NUMERICSERV to disable getservbyname.
12836         (getnameinfo): New function, only supports
12837         NI_NUMERICHOST|NI_NUMERICSERV for now.
12838
12839         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
12840         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
12841         getnameinfo.
12842
12843 2006-06-28  Eric Blake  <ebb9@byu.net>
12844
12845         * modules/wcwidth: New file.
12846         * modules/mbchar (Depends-on): Add wcwidth.
12847         * modules/mbswidth (Depends-on): Add wcwidth.
12848         * MODULES.html.sh: Add wcwidth.
12849
12850 2006-06-28  Eric Blake  <ebb9@byu.net>
12851
12852         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
12853         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
12854
12855 2006-06-28  Eric Blake  <ebb9@byu.net>
12856
12857         * lib/xvasprintf.h: Fix comments.
12858
12859 2006-06-28  Eric Blake  <ebb9@byu.net>
12860
12861         * lib/mbchar.h (wcwidth): Include wcwidth.h.
12862         * lib/mbswidth.c (wcwidth): Move from here...
12863         * lib/wcwidth.h: ...to this new file.
12864
12865 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12866
12867         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
12868
12869         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
12870         it's obsolete.
12871         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
12872
12873 2006-06-28  Derek R. Price  <derek@ximbiot.com>
12874
12875         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
12876         Autoconf 2.60 says this stuff was obsolete.
12877
12878 2006-06-28  Bruno Haible  <bruno@clisp.org>
12879
12880         * modules/wcwidth (Files): Add m4/wchar_t.m4.
12881
12882 2006-06-28  Bruno Haible  <bruno@clisp.org>
12883
12884         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
12885         gt_TYPE_WCHAR_T.
12886
12887 2006-06-28  Bruno Haible  <bruno@clisp.org>
12888
12889         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
12890         declaration for wcwidth.
12891         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
12892
12893 2006-06-28  Bruno Haible  <bruno@clisp.org>
12894
12895         * lib/mkdtemp.c [MINGW]: Include <io.h>.
12896         (mkdir): Define using _mkdir.
12897
12898 2006-06-28  Bruno Haible  <bruno@clisp.org>
12899
12900         * lib/getaddrinfo.h: Fix POSIX URL.
12901         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
12902         _WIN32.
12903         (use_win32_p): Make static.
12904         (getaddrinfo): Reject service name if it is empty or does not consist
12905         solely of decimal digits, or if its value is > 65535.
12906         (getnameinfo): Remove useless casts.
12907
12908 2006-06-27  Simon Josefsson  <jas@extundo.com>
12909
12910         * modules/sys_select: New file, suggested by Bruno Haible, Paul
12911         Eggert and Martin Lambers.
12912
12913 2006-06-27  Simon Josefsson  <jas@extundo.com>
12914
12915         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
12916         Eggert and Martin Lambers.
12917
12918 2006-06-27  Bruno Haible  <bruno@clisp.org>
12919
12920         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
12921         result to 0, not to empty.
12922         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
12923
12924 2006-06-27  Bruno Haible  <bruno@clisp.org>
12925
12926         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
12927
12928 2006-06-26  Simon Josefsson  <jas@extundo.com>
12929
12930         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
12931         present.
12932
12933 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
12934
12935         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
12936         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
12937         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
12938
12939 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
12940
12941         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
12942
12943 2006-06-26  Bruno Haible  <bruno@clisp.org>
12944
12945         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
12946
12947 2006-06-26  Bruno Haible  <bruno@clisp.org>
12948
12949         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
12950
12951 2006-06-26  Bruno Haible  <bruno@clisp.org>
12952
12953         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
12954         SGI C compiler in pre-C99 mode.
12955         Suggested by Mark D. Baushke and Larry Jones.
12956
12957 2006-06-26  Bruno Haible  <bruno@clisp.org>
12958
12959         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
12960         WCHAR_MAX.
12961         Reported by Mark D. Baushke and Larry Jones.
12962
12963 2006-06-26  Bruno Haible  <bruno@clisp.org>
12964
12965         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
12966         in pre-C99 mode.
12967         Suggested by Mark D. Baushke and Larry Jones.
12968
12969 2006-06-23  Simon Josefsson  <jas@extundo.com>
12970             Bruno Haible  <bruno@clisp.org>
12971
12972         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
12973         Emit mostlyclean-local rule.
12974         (func_emit_tests_Makefile_am): Likewise.
12975         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
12976
12977 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
12978
12979         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
12980
12981 2006-06-23  Bruno Haible  <bruno@clisp.org>
12982
12983         * tests/test-stdint.c: Update to match ISO C 99 Technical
12984         Corrigendum 1.
12985
12986 2006-06-23  Bruno Haible  <bruno@clisp.org>
12987
12988         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
12989
12990 2006-06-23  Bruno Haible  <bruno@clisp.org>
12991
12992         * lib/stdint_.h: Treat IRIX like OpenBSD.
12993
12994 2006-06-23  Bruno Haible  <bruno@clisp.org>
12995
12996         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
12997         ISO C 99 Technical Corrigendum 1.
12998
12999 2006-06-22  Simon Josefsson  <jas@extundo.com>
13000
13001         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
13002         MinGW.
13003
13004 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13005
13006         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
13007         needed.  Some compiler complained about some of them.  Problem reported
13008         by Larry Jones in
13009         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
13010
13011 2006-06-21  Simon Josefsson  <jas@extundo.com>
13012
13013         * tests/test-getaddrinfo.c: New file.
13014
13015         * modules/getaddrinfo-tests: New file.
13016
13017         * MODULES.html.sh: Add inet_pton.
13018
13019         * modules/inet_pton: New file.
13020
13021 2006-06-21  Simon Josefsson  <jas@extundo.com>
13022
13023         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
13024         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
13025         of using the (limited) gnulib implementation on Windows XP.
13026
13027         * m4/inet_pton.m4: New file.
13028
13029 2006-06-21  Simon Josefsson  <jas@extundo.com>
13030
13031         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
13032         variable.
13033
13034         * lib/socket_.h: Don't define WINVER.
13035
13036         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
13037         slightly modified to work in gnulib.
13038
13039 2006-06-21  Simon Josefsson  <jas@extundo.com>
13040
13041         * doc/gnulib.texi (Windows sockets): Add.
13042
13043 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
13044
13045         * lib/read-file.c (fread_file): Start with buffer allocation of
13046         0 bytes rather than 1 byte; this simplifies the code.
13047         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
13048         code to free buffer and save/restore errno.
13049         (internal_read_file): Remove unused local.
13050
13051 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
13052
13053         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
13054         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
13055         Problem reported by Denis Excoffier in
13056         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
13057
13058 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13059
13060         * modules/sys_socket, modules/socklen: Include sys/types since
13061         FreeBSD 4.x's sys/socket.h needs it.
13062
13063 2006-06-19  Simon Josefsson  <jas@extundo.com>
13064
13065         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
13066
13067 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
13068
13069         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
13070
13071 2006-06-19  Bruno Haible  <bruno@clisp.org>
13072
13073         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
13074         and FULL_PATH_INTTYPES_H in angle brackets.
13075         Reported by Mark D. Baushke <mdb@gnu.org>.
13076
13077 2006-06-17  Eric Blake  <ebb9@byu.net>
13078
13079         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
13080         errno.
13081
13082 2006-06-17  Bruno Haible  <bruno@clisp.org>
13083
13084         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
13085         <sys/inttypes.h>.
13086
13087 2006-06-17  Bruno Haible  <bruno@clisp.org>
13088
13089         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
13090         whether errno is declared. Assume <errno.h> declares errno.
13091
13092 2006-06-17  Bruno Haible  <bruno@clisp.org>
13093
13094         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
13095
13096 2006-06-17  Bruno Haible  <bruno@clisp.org>
13097
13098         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
13099         problem on Solaris 2.5.1.
13100
13101 2006-06-16  Eric Blake  <ebb9@byu.net>
13102
13103         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
13104         * lib/unicodeio.c [!defined errno]: Likewise.
13105         * lib/strtol.c [!defined errno]: Likewise.
13106         * lib/strtod.c [!defined errno]: Likewise.
13107
13108 2006-06-15  Eric Blake  <ebb9@byu.net>
13109
13110         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
13111
13112 2006-06-15  Eric Blake  <ebb9@byu.net>
13113
13114         * config/srclist.txt (ssize_t.m4): Lose sync.
13115
13116 2006-06-15  Bruno Haible  <bruno@clisp.org>
13117
13118         * modules/stdint (Files): Include m4/full-header-path.m4,
13119         m4/size_max.m4, m4/wchar_t.m4.
13120         (Makefile.am): Many more substitutions.
13121         * modules/stdint-tests: New file.
13122         * tests/test-stdint.c: New file.
13123
13124 2006-06-15  Bruno Haible  <bruno@clisp.org>
13125
13126         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
13127         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
13128         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
13129         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
13130         gl_CHECK_TYPE_SAME): New macros.
13131
13132 2006-06-15  Bruno Haible  <bruno@clisp.org>
13133
13134         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
13135
13136 2006-06-15  Bruno Haible  <bruno@clisp.org>
13137
13138         * lib/stdint_.h: Rewritten to be fully auto-configured.
13139         Fixes bug on HP-UX/IA64.
13140
13141 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
13142
13143         * lib/getdate.y (__attribute__): Don't define if already defined.
13144         Problem reported by Larry Jones.
13145         * lib/utimens.c (__attribute__): Likewise.
13146
13147 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
13148
13149         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
13150         reported by Andreas Schwab.
13151
13152 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13153             Bruno Haible  <bruno@clisp.org>
13154
13155         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
13156         check for the declaration of strnlen and a run test that exposes the
13157         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
13158         rpl_strndup.
13159
13160 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13161             Bruno Haible  <bruno@clisp.org>
13162
13163         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
13164
13165 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13166
13167         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
13168         compile test, for Tru64 4.0D.
13169
13170 2006-05-28  Karl Berry  <karl@gnu.org>
13171
13172         * config/srclist.txt (printf-args.c): lose sync.
13173
13174 2006-05-26  Martin Lambers  <marlam@marlam.de>
13175
13176         * lib/getpass.c: Updates the test for the native W32 API, and adds
13177         missing includes, thus fixing compilation warnings.
13178
13179 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13180
13181         * lib/exclude.c (exclude_fnmatch): New function.
13182         (excluded_file_name): Call exclude_fnmatch.
13183         * lib/exclude.h (excluded_file_name): New prototype
13184
13185 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
13186
13187         * lib/tempname.c (small_open, large_open): New macros.
13188         (__open, __open64) [!_LIBC]: Remove.
13189         (__gen_tempname): Use small_open and large_open instead of __open
13190         and __open64.  This fixes a portability bug on HP-UX 11.11i
13191         reported by Simon Wing-Tang in
13192         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
13193
13194 2006-05-24  Bruno Haible  <bruno@clisp.org>
13195
13196         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
13197         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
13198         Reported by Thorsten Maerz <torte@netztorte.de> via
13199         Aaron Stone <aaron@serendipity.cx>.
13200
13201 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
13202
13203         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
13204         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
13205         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
13206         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
13207         not really conditional on the cache.
13208         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
13209
13210 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
13211
13212         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
13213         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
13214         (my_usleep): Don't mishandle maximum value.
13215
13216 2006-05-19  Jim Meyering  <jim@meyering.net>
13217
13218         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
13219
13220 2006-05-17  Bruno Haible  <bruno@clisp.org>
13221
13222         Cygwin portability.
13223         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
13224
13225 2006-05-17  Bruno Haible  <bruno@clisp.org>
13226
13227         * lib/stdint_.h: Fix recognition of Cygwin.
13228
13229 2006-05-15  Bruno Haible  <bruno@clisp.org>
13230
13231         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
13232         on libtool patch by Ralf Wildenhues.
13233
13234 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13235
13236         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
13237         test for C99 conformance; (bool) 0.5 is an integer constant
13238         expression, but (bool) -0.5 is not.  Problem reported by Fedor
13239         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
13240
13241 2006-05-11  Simon Josefsson  <jas@extundo.com>
13242
13243         * m4/xvasprintf.m4: Fix obvious typo.
13244
13245 2006-05-11  Jim Meyering  <jim@meyering.net>
13246
13247         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
13248         James Lemley.
13249
13250 2006-05-10  Simon Josefsson  <jas@extundo.com>
13251
13252         * lib/md4.c: Typo fix, update copyright years.
13253         (K1, K2): Don't use L because it turn computations into 64-bit on
13254         64-bit platforms.
13255
13256 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
13257
13258         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
13259         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
13260         unwanted sign propagation, e.g., on hosts with 64-bit int.
13261         There still are some problems with reeelly weird theoretical hosts
13262         (e.g., 33-bit int) but it's not worth worrying about now.
13263         * lib/sha1.c (rol): Likewise.
13264         (K1, K2, K3, K4): Remove unnecessary L suffix.
13265
13266 2006-05-10  Bruno Haible  <bruno@clisp.org>
13267
13268         * lib/des.c: Cast to avoid warnings.
13269
13270 2006-05-09  Bruno Haible  <bruno@clisp.org>
13271
13272         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
13273         (Depends-on): Depend also on xsize, stdarg.
13274         (configure.ac): Add gl_XVASPRINTF.
13275
13276 2006-05-09  Bruno Haible  <bruno@clisp.org>
13277
13278         * m4/xvasprintf.m4: New file.
13279
13280 2006-05-09  Bruno Haible  <bruno@clisp.org>
13281
13282         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
13283         (EOVERFLOW): Define fallback value.
13284         (xstrcat): New function.
13285         (xvasprintf): Recognize the special case of a string concatenation.
13286
13287 2006-05-08  Eric Blake  <ebb9@byu.net>
13288
13289         * gnulib-tool (func_version): Base copyright year on CVS date.
13290         (func_emit_copyright_notice): New function.
13291         (func_emit_lib_Makefile_am): Use it.
13292         (func_emit_tests_Makefile_am): Likewise.
13293         (func_import): Likewise.
13294
13295 2006-05-08  Bruno Haible  <bruno@clisp.org>
13296
13297         * modules/stdarg: New file.
13298         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
13299
13300 2006-05-08  Bruno Haible  <bruno@clisp.org>
13301
13302         * m4/stdarg.m4: New file, from GNU gettext.
13303
13304 2006-05-08  Bruno Haible  <bruno@clisp.org>
13305
13306         * config/srclist.txt (build-aux/config.rpath): different from latest
13307         release.
13308
13309 2006-05-08  Bruno Haible  <bruno@clisp.org>
13310
13311         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
13312
13313 2006-05-05  Jim Meyering  <jim@meyering.net>
13314
13315         * m4/warning.m4: New file, derived from bison's file by the same name.
13316
13317 2006-05-03  Bruno Haible  <bruno@clisp.org>
13318
13319         * lib/stdint_.h: Shorter URL.
13320         * lib/inttypes.h: Likewise.
13321
13322 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13323
13324         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
13325
13326 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13327
13328         * lib/verify.h: Document the internals better.  Most of this change
13329         was written by Bruno Haible.
13330
13331 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13332
13333         * doc/verify.texi: New file, partly based on a proposal by
13334         Bruno Haible.
13335
13336 2006-05-02  Bruno Haible  <bruno@clisp.org>
13337
13338         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
13339         test from here...
13340         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
13341
13342 2006-04-29  Bruno Haible  <bruno@clisp.org>
13343
13344         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
13345         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
13346
13347 2006-04-29  Bruno Haible  <bruno@clisp.org>
13348
13349         * gnulib-tool: Make --update option actually work.
13350
13351 2006-04-29  Bruno Haible  <bruno@clisp.org>
13352
13353         * doc/gcd.texi: New file.
13354         * doc/gnulib.texi: Include it.
13355
13356 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
13357
13358         * lib/getdate.y (get_date): When adding relative date, start with the
13359         initial time, not with the result of the first mktime call.
13360
13361 2006-04-25  Bruno Haible  <bruno@clisp.org>
13362
13363         * gnulib-tool (func_import): Output the include directives in three
13364         blocks, sorted separately.
13365         Reported by Ben Pfaff <blp@cs.stanford.edu>.
13366
13367 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
13368
13369         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
13370         to define main with arguments, for C++.  Reported by Eric Blake.
13371         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
13372         Prefer 'int main ()' to 'int main (void)', for C++.
13373         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
13374         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
13375         for 'main', for C99 and C++.
13376
13377 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
13378
13379         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
13380         Don't assume that exit status -1 is valid.
13381         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13382         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
13383         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
13384         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
13385         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
13386         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
13387         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
13388         functions can be used without declaring them, or that you can
13389         exit with status -1.
13390         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
13391
13392 2006-04-24  Karl Berry  <karl@gnu.org>
13393
13394         * config/srclist.txt (longdouble.m4): sync lost.
13395
13396 2006-04-24  Eric Blake  <ebb9@byu.net>
13397
13398         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
13399
13400 2006-04-24  Bruno Haible  <bruno@clisp.org>
13401
13402         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
13403         poll() implementation in AIX.
13404         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13405
13406 2006-04-24  Bruno Haible  <bruno@clisp.org>
13407
13408         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
13409         assigned exactly once.
13410
13411 2006-04-23  Claudio Fontana  <claudio@gnu.org>
13412             Bruno Haible  <bruno@clisp.org>
13413
13414         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
13415         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
13416         for AM_CPPFLAGS.
13417
13418 2006-04-23  Bruno Haible  <bruno@clisp.org>
13419
13420         * modules/copy-file: Depend on unistd.
13421         * modules/execute: Likewise.
13422         * modules/fatal-signal: Likewise.
13423         * modules/findprog: Likewise.
13424         * modules/mkdtemp : Likewise.
13425         * modules/pipe: Likewise.
13426         * modules/wait-process: Likewise.
13427
13428 2006-04-23  Bruno Haible  <bruno@clisp.org>
13429
13430         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
13431         condition was already detected.
13432         Reported by Ben Pfaff <blp@cs.stanford.edu>.
13433
13434 2006-04-23  Bruno Haible  <bruno@clisp.org>
13435
13436         * lib/copy-file.c: Include <unistd.h> unconditionally.
13437         * lib/execute.c: Likewise.
13438         * lib/fatal-signal.c: Likewise.
13439         * lib/findprog.c: Likewise.
13440         * lib/mkdtemp.c: Likewise.
13441         * lib/pipe.h: Likewise.
13442         * lib/pipe.c: Likewise.
13443         * lib/wait-process.h: Likewise.
13444
13445 2006-04-23  Bruno Haible  <bruno@clisp.org>
13446
13447         * gnulib-tool (func_usage): Fix --import description. Document
13448         --update.
13449         (func_import): Create temporary file in a temporary directory, if
13450         --dry-run is specified. Silence errors from 'grep' when there are no
13451         m4 files in $m4dir.
13452         (func_create_testdir): Silence errors from 'grep' when there are no
13453         m4 files in $m4dir.
13454         Reported by Karl Berry <karl@freefriends.org>.
13455
13456 2006-04-20  Bruno Haible  <bruno@clisp.org>
13457
13458         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
13459         one argument, so that the code will be portable to Autoconf 2.60.
13460         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
13461         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
13462         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
13463
13464 2006-04-19  Derek Price  <derek@ximbiot.com>
13465             Eric Blake  <ebb9@byu.net>
13466
13467         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
13468         rather than "/full/path.h".  Update comment to match.  Shorten &
13469         generalize m4_translit call via AS_TR_CPP.
13470
13471 2006-04-19  Derek Price  <derek@ximbiot.com>
13472             Eric Blake  <ebb9@byu.net>
13473
13474         * lib/inttypes.h: Correct grammar in comment.
13475
13476 2006-04-18  Derek Price  <derek@ximbiot.com>
13477             Paul Eggert  <eggert@cs.ucla.edu>
13478
13479         * modules/inttypes: New file.
13480         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
13481
13482 2006-04-18  Derek Price  <derek@ximbiot.com>
13483             Paul Eggert  <eggert@cs.ucla.edu>
13484
13485         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
13486         New files.
13487
13488 2006-04-18  Derek Price  <derek@ximbiot.com>
13489             Paul Eggert  <eggert@cs.ucla.edu>
13490
13491         * lib/inttypes.h: New file.
13492         * lib/strtoimax.c: Assume <inttypes.h>.
13493
13494 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
13495
13496         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
13497         isn't mounted.  Problem reported by Kir Kolyshkin.
13498
13499 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13500
13501         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
13502         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
13503         Derek R. Price.
13504         * lib/regex.h (RE_DUP_MAX): Update comment to match current
13505         implementation.
13506
13507 2006-04-12  Eric Blake  <ebb9@byu.net>
13508
13509         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
13510         is now done automatically by the corresponding Autoconf macro.
13511
13512 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
13513
13514         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
13515         time_r.h.
13516
13517 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13518
13519         Merge regex changes from libc, removing some of our
13520         POSIX-conformance changes that were rejected and redoing them in a
13521         less-intrusive way.
13522
13523         * lib/regcomp.c (re_compile_internal, init_dfa):
13524         Length arg is now size_t, not Idx.  All uses changed.
13525         (peek_token): Forward decl now says internal_function.
13526         (__re_error_msgid, __re_error_msgid_idx):
13527         Now static rather than extern with attribute_hidden.
13528         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
13529         For some reason libc prefers K&R style defns for external functions.
13530         (regerror) [!defined _LIBC]: Likewise.
13531         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
13532         (seek_collating_symbol_entry, lookup_collation_sequence_value):
13533         (build_range_exp, build_collating_symbol):
13534         Use K&R-style defn.
13535         (re_compile_fastmap): Use '\0' to memset, not 0.
13536         (utf8_sb_map): Make the calculations more obvious.
13537         (init_dfa, parse_bracket_exp, build_charclass_op):
13538         Call calloc and cast result, as glibc does.
13539         (init_word_char, fetch_token, peek_token, peek_token_bracket):
13540         (build_range_exp, build_collating_symbol):
13541         Now internal functions.
13542
13543         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
13544
13545         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
13546         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
13547         Don't depend on VMS; depend on __VMS instead, for POSIX
13548         namespace cleanness.
13549         (regoff_t): Define to ssize_t, not long int.
13550
13551         Remove the REG_ macros named below.  Instead, make the old names
13552         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
13553         __USE_GNU_REGEX.
13554         (REG_BACKSLASH_ESCAPE_IN_LISTS):
13555         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
13556         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
13557         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
13558         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
13559         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
13560         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
13561         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
13562         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
13563         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
13564         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
13565         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
13566         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
13567         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
13568         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
13569         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
13570         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
13571         (REG_NREGS):
13572         Remove.  All uses replaced by the old RE_* names.
13573         (RE_BACKSLASH_ESCAPE_IN_LISTS):
13574         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
13575         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
13576         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
13577         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
13578         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
13579         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
13580         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
13581         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
13582         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
13583         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
13584         Don't bother having these macros be independent of each others'
13585         values, since they no longer exist in the POSIX name space.
13586
13587         Rename the following member names back to their old names,
13588         unless !__USE_GNU_REGEX.  All uses changed back.
13589         (buffer): Renamed from re_buffer.
13590         (allocated): Renamed from re_allocated.
13591         (used): Renamed from re_used.
13592         (syntax): Renamed from re_syntax.
13593         (fastmap): Renamed from re_fastmap.
13594         (translate): Renamed from re_translate.
13595         (can_be_null): Renamed from re_can_be_null.
13596         (regs_allocated): Renamed from re_regs_allocated.
13597         (fastmap_accurate): Renamed from re_fastmap_accurate.
13598         (no_sub): Renamed from re_no_sub.
13599         (not_bol): Renamed from re_not_bol.
13600         (not_eol): Renamed from re_not_eol.
13601         (newline_anchor): Renamed from re_newline_anchor.
13602         (num_regs): Renamed from rm_num_regs.
13603         (start): Renamed from rm_start.
13604         (end): Renamed from rm_end.
13605
13606         (free_state): Move up a bit.
13607
13608         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
13609         #define to be empty.
13610         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
13611         when that is what is intended.
13612         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
13613         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
13614         (MAX): New macro.
13615         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
13616         All uses changed back to re_malloc, etc.  It's now the caller's
13617         responsibility to check for overflow; all callers changed.
13618         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
13619         (re_x2nrealloc): Remove.
13620         (free_state): Remove decl.
13621
13622         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
13623         (re_set_registers, re_exec):
13624         Use K&R-style defn.
13625
13626         2006-01-31  Roland McGrath  <roland@redhat.com>
13627
13628         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
13629         Reported by Mike Frysinger <vapier@gentoo.org>.
13630
13631         2006-01-15  Andreas Jaeger  <aj@suse.de>
13632
13633         [BZ #1950]
13634         * lib/regex_internal.c (re_string_reconstruct): Adjust for
13635         build_wcs_upper_buffer change.
13636         (build_wcs_upper_buffer): Change return type.
13637
13638         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
13639
13640         * lib/regex_internal.h: Include <stdint.h> if available.
13641
13642         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
13643
13644         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
13645
13646         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
13647
13648         * lib/regcomp.c: Adjust for changed secondary hash function.
13649
13650         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
13651
13652         * lib/regex.h: Pretty printing.
13653         Clean up namespace a bit.
13654
13655         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
13656
13657         * lib/regexec.c (update_cur_sifted_state, check_arrival,
13658         check_arrival_add_next_nodes): Avoid using uninitialized variable.
13659
13660         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
13661                     Ulrich Drepper  <drepper@redhat.com>
13662
13663         [BZ #1302]
13664         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
13665         changed.
13666         (bitset_word_t): Renamed from bitset_word.  All uses changed.
13667
13668         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
13669
13670         [BZ #281]
13671         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
13672         * lib/regcomp.c: Remove unnecessary uses of
13673         unsigned RE_TRANSLATE_TYPE.
13674         * lib/regex_internal.h: Likewise.
13675         * lib/regex_internal.c: Likewise.
13676         * lib/regexec.c: Likewise.
13677         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
13678
13679         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
13680
13681         * lib/regexec.c (find_recover_state): Remove unnecessary
13682         initialization.
13683         (transit_state_bkref): Make DFA a const pointer.
13684         (get_subexp): Likewise.
13685         (check_arrival): Likewise.
13686         (update_cur_sifted_state): Likewise.
13687         (re_search_internal): Likewise.
13688         (prune_impossible_nodes): Likewise.
13689         (acquire_init_state_context): Likewise.
13690         (proceed_next_node): Likewise.
13691         (set_regs): Likewise.
13692         (free_fail_stack_return): Likewise.
13693         (check_arrival_expand_ecl): Mark DFA parameter as const.
13694         (check_arrival_expand_ecl_sub): Likewise.
13695         (check_subexp_limits): Likewise.
13696         (sub_epsilon_src_nodes):  Likewise.
13697         (add_epsilon_src_nodes):  Likewise.
13698         (merge_state_array): Likewise.
13699         (update_regs): Likewise.
13700         (build_trtable): Likewise.
13701         (sift_states_backward): Mark MCTX parameter as const.
13702         (build_sifted_states): Likewise.
13703         (update_cur_sifted_state): Likewise.
13704         (sift_states_mkref): Likewise.
13705         (check_arrival_expand_ecl): Mark eclosure as const.
13706         (check_dst_limits_calc_pos_1): Likewise.
13707         * lib/regex_internal.h (re_match_context_t): Make dfa a const
13708         pointer.
13709
13710         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
13711
13712         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
13713         (transit_state_sb): Likewise.
13714         (transit_state_mb): Likewise.
13715         (sift_states_iter_mb): Likewise.
13716         (check_arrival_add_next_nodes): Likewise.
13717         (check_node_accept_bytes): Change first parameter to pointer-to-const.
13718         [_LIBC] (re_search_2_stub): Use mempcpy.
13719
13720         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
13721         mbrtowc for very simple UTF-8 case.
13722
13723         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
13724         a pointer-to-const.
13725         (re_acquire_state_context): Likewise.
13726         * lib/regex_internal.h: Adjust prototypes.
13727
13728         * lib/regex.c: Prevent using C++ compilers.
13729
13730         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
13731         (re_acquire_state_context): Likewise.
13732
13733 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13734
13735         * modules/regex (Depends-on): Add ssize_t.
13736
13737 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13738
13739         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
13740         translation table.
13741
13742 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
13743
13744         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
13745
13746 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
13747             Bruno Haible  <bruno@clisp.org>
13748
13749         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
13750         <sys/types.h> and <inttypes.h>.
13751
13752 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13753
13754         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
13755         `__error_t_defined', so argp.h will not typedef the former.
13756
13757 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
13758
13759         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
13760         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
13761         glibc names.  Even if glibc is changed to conform to POSIX, the
13762         traditional names will be available anyway, since regex depends on
13763         the extensions module.  Also, fix a longstanding typo in the
13764         implementation of Spencer ERE test #75 from grep 2.3.  Problems
13765         reported by Emanuele Giaquinta.  Also, change sense of cached
13766         variable, so that the message makes sense.
13767
13768 2006-03-24  Simon Josefsson  <jas@extundo.com>
13769
13770         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
13771         including some doc fixes.
13772         (base64_encode_alloc): Fix +1 bug on allocation failures.
13773
13774 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13775
13776         * lib/base64.c (base64_encode): Do not read past end of array with
13777         unsanitized input on systems with CHAR_BIT > 8.
13778
13779 2006-03-24  Eric Blake  <ebb9@byu.net>
13780
13781         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
13782
13783 2006-03-22  Karl Berry  <karl@gnu.org>
13784
13785         * config/srclist.txt (*setenv.[ch]): get from coreutils.
13786         * config/srclistvars.sh (COREUTILS): new var.
13787
13788 2006-03-17  Jim Meyering  <jim@meyering.net>
13789
13790         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
13791         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
13792
13793 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13794
13795         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
13796         no longer needs it.  Instead, check that regoff_t is as least
13797         as wide as ptrdiff_t.
13798
13799         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
13800         so that our regex.h stays compatible with the installed regex.
13801         This is helpful for installers who configure --without-included-regex.
13802         Problem reported by Emanuele Giaquinta.
13803
13804 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
13805
13806         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
13807         Typedef to long int, not to off_, as POSIX will likely change
13808         in that direction.
13809
13810 2006-03-15  Eric Blake  <ebb9@byu.net>
13811
13812         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
13813
13814 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13815
13816         * lib/argp-help.c (validate_uparams): Fix typo
13817         * lib/argp-parse.c (argp_default_options): Consistently begin help
13818         messages with a lowercase letter.
13819
13820 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
13821
13822         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
13823         overrun buffers and shouldn't be used (much as gets shouldn't be
13824         used).
13825         * lib/time_r.c (asctime_r, ctime_r): Likewise.
13826
13827 2006-03-08  Simon Josefsson  <jas@extundo.com>
13828
13829         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
13830         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13831
13832 2006-03-08  Simon Josefsson  <jas@extundo.com>
13833
13834         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
13835         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13836
13837 2006-03-08  Simon Josefsson  <jas@extundo.com>
13838
13839         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
13840         signal that configure disabled the device.
13841
13842 2006-03-08  Simon Josefsson  <jas@extundo.com>
13843
13844         * build-aux/maint.mk: Fix refresh-po, to handle no translated
13845         languages.
13846
13847 2006-03-07  Simon Josefsson  <jas@extundo.com>
13848
13849         * modules/getopt (Depends-on): Add unistd.
13850
13851         * modules/unistd: New file.
13852
13853 2006-03-07  Simon Josefsson  <jas@extundo.com>
13854
13855         * modules/gc-random: New file.
13856
13857 2006-03-07  Simon Josefsson  <jas@extundo.com>
13858
13859         * m4/unistd_h.m4: New file.
13860
13861 2006-03-07  Simon Josefsson  <jas@extundo.com>
13862
13863         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
13864         test to be side-effect free by storing the result in the cache
13865         variable gl_cv_lib_readline, and moving the assignment of
13866         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
13867         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13868
13869 2006-03-07  Simon Josefsson  <jas@extundo.com>
13870
13871         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
13872         error on missing devices (the functions will return an error).
13873
13874         * m4/gc.m4: Move random stuff to gc-random.m4
13875
13876 2006-03-07  Simon Josefsson  <jas@extundo.com>
13877
13878         * lib/unistd_.h: New file.
13879
13880 2006-03-07  Simon Josefsson  <jas@extundo.com>
13881
13882         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
13883
13884 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13885
13886         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
13887         Problem reported by Juan Manuel Guerrero.
13888
13889 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13890
13891         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
13892         the unistd module.
13893         * lib/getlogin_r.c: Likewise.
13894         * lib/getlogin_r.h: Likewise.
13895         * lib/glob.c: Likewise.
13896         * lib/pagealign_alloc.c: Likewise.
13897         * lib/unistd_.h: Remove; no longer needed.
13898
13899 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13900
13901         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13902         Add unistd.
13903         * modules/c-stack (Depends-on): Add unistd.
13904         * modules/getlogin_r: Likewise.
13905         * modules/glob: Likewise.
13906         * modules/pagealign_alloc: Likewise.
13907         * modules/unistd (Files): Remove lib/unistd_.h.
13908         (EXTRA_DIST): Remove.
13909         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
13910         need unistd_.h.
13911         (MOSTLYCLEANFILES): Remove unistd.h-t.
13912
13913 2006-03-03  Simon Josefsson  <jas@extundo.com>
13914
13915         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
13916
13917 2006-03-03  Simon Josefsson  <jas@extundo.com>
13918
13919         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
13920         libidn and bison.
13921
13922 2006-03-03  Simon Josefsson  <jas@extundo.com>
13923
13924         * build-aux/maint.mk: Add indent target.
13925
13926 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
13927
13928         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
13929         our replacement poll.h in any case, to avoid a differing
13930         declaration from a system header.  Seen on AIX.
13931
13932 2006-03-01  Simon Josefsson  <jas@extundo.com>
13933
13934         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
13935         <kasal@ucw.cz>.
13936
13937 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13938
13939         * modules/gettime (Depends-on): Add extensions module.
13940         * modules/nanosleep (Depends-on): Likewise.
13941         * modules/settime (Depends-on): Likewise.
13942
13943 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13944
13945         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
13946         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
13947         pedantically.
13948         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13949         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
13950
13951         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
13952         not "==".  Reported by Ralf Wildenhues.
13953
13954 2006-03-01  Karl Berry  <karl@gnu.org>
13955
13956         * doc/Copyright/request-*: new files, synced from gnuorg.
13957
13958 2006-03-01  Karl Berry  <karl@gnu.org>
13959
13960         * config/srclist.txt (Copyright/*): new entries.
13961
13962 2006-02-28  Simon Josefsson  <jas@extundo.com>
13963
13964         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
13965
13966 2006-02-27  Simon Josefsson  <jas@extundo.com>
13967
13968         * lib/base64.h: Indent #define's.  From Jim Meyering
13969         <jim@meyering.net>.
13970
13971 2006-02-27  Jim Meyering  <jim@meyering.net>
13972
13973         Revert the change of 2006-02-24, so these files can continue
13974         to be sync'd from gettext.
13975         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
13976         of `config.h'.
13977
13978 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13979
13980         * modules/intprops: New file.
13981         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
13982         Add intprops.
13983         * modules/getloadavg (Files): Remove lib/intprops.h.
13984         (Depends-on): Add intprops.
13985         * modules/human: Likewise.
13986         * modules/inttostr: Likewise.
13987         * modules/openat: Likewise.
13988         * modules/sig2str: Likewise.
13989         * modules/userspec: Likewise.
13990         * modules/utimecmp: Likewise.
13991         * modules/xnanosleep: Likewise.
13992         * modules/xstrtol: Likewise.
13993
13994 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
13995
13996         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
13997         * modules/lock-tests (TESTS): Use $(EXEEXT).
13998         * modules/tls-tests: Likewise.
13999         * modules/argp-tests: Likewise.
14000         (check_PROGRAMS): New var, replacing...
14001         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
14002
14003 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14004
14005         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
14006         `config.h'.
14007
14008 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
14009
14010         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
14011
14012 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14013
14014         Sync from coreutils.
14015         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
14016         gl_CHDIR_SAFER.
14017
14018 2006-02-22  Jim Meyering  <jim@meyering.net>
14019
14020         Sync from coreutils.
14021         * m4/chdir-safer.m4: New file.
14022
14023 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
14024
14025         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
14026         AT_FDCWD exceeds INT_MAX.
14027         * lib/openat.h (AT_FDCWD): Likewise.
14028
14029 2006-02-17  Eric Blake  <address@hidden>
14030
14031         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
14032
14033 2006-02-16  Simon Josefsson  <jas@extundo.com>
14034
14035         * modules/getaddrinfo (Depends-on): Add sys_socket.
14036
14037 2006-02-15  Simon Josefsson  <jas@extundo.com>
14038
14039         * build-aux/maint.mk: Add dsyntax-check rule.
14040
14041 2006-02-15  Eric Blake  <ebb9@byu.net>
14042
14043         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
14044         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
14045         'present but cannot compile' warnings on cygwin.
14046         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
14047         use ws2tcpip.h if sys/socket.h works.
14048         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
14049         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
14050
14051 2006-02-14  Simon Josefsson  <jas@extundo.com>
14052
14053         * modules/maintainer-makefile (Files): Rename.
14054
14055         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
14056         and (the local) Makefile.cfg to maint-cfg.mk.
14057
14058         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
14059         to the latter.
14060
14061         * modules/maintainer-makefile: New module.
14062
14063         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
14064         severaly stripped to make it possible to build it up from scratch
14065         with reliable tests.
14066
14067         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
14068         fixes to permit overriding the default actions when configure and
14069         makefile are not available.
14070
14071 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
14072
14073         Sync from coreutils.
14074         * modules/lstat (Depends-on): Don't depend on xalloc.
14075         (License): Change from GPL to LGPL, since this is now simply a
14076         replacement for a libc function.
14077
14078 2006-02-14  Jim Meyering  <jim@meyering.net>
14079
14080         Sync from coreutils.
14081
14082         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
14083         failure on deficient systems, and simplify gnulib lgpl dependencies.
14084         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
14085         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
14086
14087         * lib/xalloc-die.c: Remove unused definition of N_.
14088
14089 2006-02-14  Jim Meyering  <jim@meyering.net>
14090
14091         Sync from coreutils.
14092         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
14093         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
14094         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
14095         double-quote uses of that variable, to accommodate the rare case in
14096         which getmntent is available in none of the libraries checked.  This
14097         happens at least on FreeBSD 5.0.
14098
14099 2006-02-13  Simon Josefsson  <jas@extundo.com>
14100
14101         * gnulib-tool (Usage): Fix --import, from
14102         karl@freefriends.org (Karl Berry).
14103
14104 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
14105
14106         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
14107
14108 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
14109
14110         * lib/argp-namefrob.h: Restore changes accidentally lost during the
14111         "autoupdate" on 2005-12-12.
14112
14113 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
14114
14115         * modules/closeout (Depends-on): Remove atexit.
14116
14117 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
14118
14119         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
14120         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
14121
14122 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
14123
14124         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
14125         __EXTENSIONS__ if this causes compilation to fail.  Problem
14126         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
14127         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
14128
14129 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
14130
14131         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
14132         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
14133         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
14134         All uses changed.
14135
14136 2006-01-26  Simon Josefsson  <jas@extundo.com>
14137
14138         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
14139         prototype is visible on mingw32.
14140
14141         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
14142         for mingw32.
14143
14144         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
14145         mingw32).
14146
14147 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
14148
14149         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
14150         attempt to open for write; this always fails, at least on POSIX
14151         hosts.  This reinstates the 2006-01-09 change, which was
14152         inadvertently removed.
14153
14154 2006-01-26  Bruno Haible  <bruno@clisp.org>
14155
14156         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
14157         Reported by Paul Eggert.
14158
14159 2006-01-26  Bruno Haible  <bruno@clisp.org>
14160             Paul Eggert  <eggert@cs.ucla.edu>
14161
14162         * lib/stdbool_.h (_Bool)
14163         [(! (defined __cplusplus || defined __BEOS__)
14164           && !defined __GNUC__
14165           && !(defined __HP_cc || defined __xlc__
14166                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
14167                || defined __sgi))]:
14168         #define to signed char in these cases too; this simplifies
14169         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
14170         etc., separately) and makes it more conservative.
14171
14172 2006-01-25  Simon Josefsson  <jas@extundo.com>
14173
14174         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
14175         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
14176         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
14177
14178 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14179
14180         * lib/argp-namefrob.h: Bugfix. Remove stray #
14181
14182 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
14183
14184         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
14185         so that we test the test.
14186         Check for yet another HP-UX cc bug involving *bool |= bool.
14187
14188 2006-01-25  Karl Berry  <karl@gnu.org>
14189
14190         * config/srclist.txt (vasnprintf.c): sync lost.
14191
14192 2006-01-25  Jim Meyering  <jim@meyering.net>
14193
14194         Sync from the stable (b5) branch of coreutils:
14195
14196         * lib/fts.c (fts_children): Don't let close() clobber errno from
14197         failed fchdir().
14198
14199         * lib/fts.c (fts_stat): When following a symlink-to-directory,
14200         don't necessarily interpret stat-fails+lstat-succeeds as indicating
14201         a dangling symlink.  That can also happen at least for ELOOP.
14202         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
14203         FYI, this bug predates the inclusion of fts.c in coreutils.
14204
14205         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
14206         in their own block, so pre-c99 compilers don't object.
14207
14208         Avoid the double-free (first in fts_read, second in fts_close) that
14209         would occur when an `active' directory is made inaccessible (e.g.,
14210         via chmod a-x) during a traversal.
14211         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
14212         before returning.  Reproduce this failure by
14213         mkdir -p a/b; cd a; chmod a-x . b
14214         Reported by Stavros Passas.
14215
14216 2006-01-25  Jim Meyering  <jim@meyering.net>
14217
14218         * lib/fileblocks.c: Remove more useless parentheses.
14219         * lib/readutmp.h: Likewise.
14220
14221 2006-01-25  Bruno Haible  <bruno@clisp.org>
14222
14223         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
14224         warnings.
14225         Reported by Paul Eggert.
14226
14227 2006-01-25  Bruno Haible  <bruno@clisp.org>
14228
14229         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
14230         rid of a trap command. For Solaris sh.
14231         Reported by Mark D. Baushke <mdb@gnu.org>.
14232
14233 2006-01-24  Simon Josefsson  <jas@extundo.com>
14234
14235         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
14236         Bruno.
14237
14238 2006-01-24  Karl Berry  <karl@gnu.org>
14239
14240         * config/srclist.txt (argp-namefrob.h): sync lost.
14241
14242 2006-01-24  Jim Meyering  <jim@meyering.net>
14243
14244         * modules/openat (Files): Add lib/intprops.h.
14245         From Mark D. Baushke.
14246
14247 2006-01-24  Jim Meyering  <jim@meyering.net>
14248
14249         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
14250         Reported by Mark D. Baushke.
14251
14252 2006-01-24  Jim Meyering  <jim@meyering.net>
14253
14254         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
14255
14256 2006-01-24  Bruno Haible  <bruno@clisp.org>
14257
14258         * modules/strnlen (Maintainer): Change from glibc to all.
14259
14260 2006-01-24  Bruno Haible  <bruno@clisp.org>
14261
14262         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
14263         Patch by Paul Eggert.
14264
14265 2006-01-24  Bruno Haible  <bruno@clisp.org>
14266
14267         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
14268         already has it.
14269         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
14270         2005-11-26.
14271
14272         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
14273         'signed char' to avoid problems with the built-in _Bool type.
14274         Reported by Paul Eggert on 2005-11-26.
14275
14276 2006-01-24  Bruno Haible  <bruno@clisp.org>
14277
14278         * gnulib-tool (func_import): Avoid constructing complicated sed
14279         expressions inside backquote.
14280         Report and solution by Mark D. Baushke <mdb@gnu.org>.
14281
14282 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
14283
14284         These changes imported from libc.
14285         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
14286         test and two separate function calls.
14287         * lib/strndup.c (__strndup): Add libc_hidden_def.
14288
14289 2006-01-23  Simon Josefsson  <jas@extundo.com>
14290
14291         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
14292         Remove the test_*_SOURCES variable: automake infers it by default.
14293         * modules/tls-tests: Likewise.
14294
14295 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14296
14297         Work around porting bugs reported by Dieter in
14298         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
14299         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
14300         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
14301         Include "getopt.h" first, to check interface.
14302         (getenv): Declare only if defined HAVE_DECL_GETENV &&
14303         !HAVE_DECL_GETENV.
14304         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
14305         (__strndup): Revert to K&R-style function dfns, the glibc style.
14306         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
14307         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
14308         Include strnlen.h first, to get prototype properly.
14309         (strnlen): Renamed from __strnlen.
14310         Remove weak alias.
14311
14312 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14313
14314         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
14315
14316 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14317
14318         * config/srclist.txt: Adjust to reflect glibc reorganization.
14319         This affects only comments.
14320
14321 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
14322
14323          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
14324          Reported by Bruce Korb <bkorb@gnu.org>.
14325
14326 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
14327
14328         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
14329         to pacify gcc -Wswitch-default.
14330
14331 2006-01-22  Bruno Haible  <bruno@clisp.org>
14332
14333         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
14334         temporary buffer for sprintf, take into account the precision also
14335         for 'd', 'i', 'u', 'o', 'x', 'X'.
14336
14337 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
14338
14339         * modules/argp-tests: New module
14340         * tests/test-argp.c: New file
14341         * tests/test-argp-2.sh: New file
14342
14343 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
14344
14345         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
14346         (__argp_base_name): Removed
14347         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
14348         typo.
14349         (__argp_base_name): Provide macro definition or extern declaration
14350         depending on the configuration
14351
14352 2006-01-20  Simon Josefsson  <jas@extundo.com>
14353
14354         * modules/inet_ntop (Depends-on): Depend on sys_socket.
14355
14356 2006-01-20  Simon Josefsson  <jas@extundo.com>
14357
14358         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
14359
14360 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14361
14362         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
14363         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
14364         Suggested by Bruno Haible.
14365
14366 2006-01-20  Karl Berry  <karl@gnu.org>
14367
14368         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
14369         until changes propagate, I guess.
14370
14371 2006-01-19  Simon Josefsson  <jas@extundo.com>
14372
14373         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
14374
14375 2006-01-19  Simon Josefsson  <jas@extundo.com>
14376
14377         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
14378
14379 2006-01-19  Simon Josefsson  <jas@extundo.com>
14380
14381         * gnulib-tool: Set check_PROGRAMS.
14382
14383         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
14384         modules/des-tests, modules/gc-arcfour-tests,
14385         modules/gc-arctwo-tests, modules/gc-des-tests,
14386         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
14387         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
14388         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
14389         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
14390         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
14391         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
14392         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
14393         test_*_SOURCES.
14394
14395 2006-01-18  Simon Josefsson  <jas@extundo.com>
14396
14397         * modules/socklen (Depends-on): Depend on sys_socket.
14398
14399 2006-01-18  Simon Josefsson  <jas@extundo.com>
14400
14401         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
14402         modules/des-tests, modules/gc-arcfour-tests,
14403         modules/gc-arctwo-tests, modules/gc-des-tests,
14404         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
14405         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
14406         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
14407         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
14408         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
14409         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
14410         $(EXEEXT) to automake TESTS variable, for mingw32.
14411
14412 2006-01-17  Simon Josefsson  <jas@extundo.com>
14413
14414         * modules/socklen (Include): Need sys/socket.h.
14415
14416 2006-01-17  Bruno Haible  <bruno@clisp.org>
14417
14418         * modules/ssize_t (Include): Add <sys/types.h>.
14419
14420 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
14421
14422         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
14423         it's not portable and it doesn't work with cross-compiles.
14424         Problem reported by Bruno Haible.  Fix missing-$ typo in
14425         'test "gl_cv_ignore_unused_libraries" ...' that prevented
14426         -zignore from being used with Sun's C compiler.
14427
14428 2006-01-12  Simon Josefsson  <jas@extundo.com>
14429
14430         * lib/base64.c: Fix warning, reported by Bruno Haible
14431         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
14432
14433 2006-01-12  Bruno Haible  <bruno@clisp.org>
14434
14435         * modules/ldd: New file.
14436         * build-aux/ldd.sh.in: New file.
14437         * MODULES.html.sh (Support for building libraries and executables): Add
14438         ldd.
14439
14440 2006-01-12  Bruno Haible  <bruno@clisp.org>
14441
14442         * m4/ldd.m4: New file.
14443
14444 2006-01-12  Bruno Haible  <bruno@clisp.org>
14445
14446         * gnulib-tool (func_import, func_create_testdir): Don't go into an
14447         endless loop while replacing $auxdir with build-aux.
14448
14449 2006-01-11  Simon Josefsson  <jas@extundo.com>
14450
14451         * lib/stdint_.h (SIZE_MAX): Add missing (.
14452
14453 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
14454
14455         Sync from coreutils.
14456         * lib/md5.c: Fix commentary typos.
14457         (alignof, UNALIGNED_P): No need for a GCC-specific version.
14458         * lib/md5.h (__attribute__): Remove; unused.
14459         * lib/sha1.c: Fix commentary to match md5 better.
14460         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
14461         so that we don't need to worry about alignment.  All uses changed.
14462         This merges the 2005-10-28 md5 change into sha1.
14463
14464 2006-01-11  Jim Meyering  <jim@meyering.net>
14465
14466         Sync from coreutils.
14467         * lib/md5.c (OP): Fix spacing.
14468
14469 2006-01-11  Bruno Haible  <bruno@clisp.org>
14470
14471         Ensure automatic ordering between gl_LOCK and gl_ARGP.
14472         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
14473         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
14474
14475 2006-01-11  Bruno Haible  <bruno@clisp.org>
14476
14477         Ensure automatic ordering between gl_LOCK and gl_ARGP.
14478         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
14479         the "early" section as well.
14480
14481 2006-01-11  Bruno Haible  <bruno@clisp.org>
14482
14483         Avoid "ar: no archive members specified" error on MacOS X.
14484         * gnulib-tool (func_modules_add_dummy): New function.
14485         (func_import, func_create_testdir): Invoke it.
14486
14487 2006-01-11  Bruno Haible  <bruno@clisp.org>
14488
14489         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
14490         with $auxdir in AC_CONFIG_FILES statements.
14491
14492 2006-01-11  Bruno Haible  <bruno@clisp.org>
14493
14494         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14495         Initialize also noinst_HEADERS to empty.
14496
14497 2006-01-11  Bruno Haible  <bruno@clisp.org>
14498
14499         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
14500         variables.
14501         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
14502         autoreconf.
14503
14504 2006-01-11  Bruno Haible  <bruno@clisp.org>
14505
14506         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
14507         overridable by the user.
14508         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14509
14510 2006-01-10  Simon Josefsson  <jas@extundo.com>
14511
14512         * modules/sys_socket: New file.
14513
14514 2006-01-10  Simon Josefsson  <jas@extundo.com>
14515
14516         * m4/sys_socket_h.m4: New file.
14517
14518 2006-01-10  Simon Josefsson  <jas@extundo.com>
14519
14520         * lib/socket_.h: New file.
14521
14522 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14523
14524         * modules/readutmp (Maintainer): Add myself.
14525
14526 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14527
14528         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
14529         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
14530         People who are still concerned with buggy memcmp implementations
14531         can invoke gl_FUNC_MEMCMP themselves.
14532
14533 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14534
14535         * lib/regex_internal.h (BITSET_WORD_BITS):
14536         Work around a bug in 64-bit PGC (before version 6.1-2), where the
14537         preprocessor mishandles large unsigned values as if they were signed.
14538         Problem reported by Claudio Fontana in
14539         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
14540
14541 2006-01-10  Jim Meyering  <jim@meyering.net>
14542
14543         Avoid the double-free (first in fts_read, second in fts_close) that
14544         would occur when an `active' directory is made inaccessible (e.g.,
14545         via chmod a-x) during a traversal.
14546         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
14547         before returning.  Reproduce this failure by
14548         mkdir -p a/b; cd a; chmod a-x . b
14549         Reported by Stavros Passas.
14550
14551         Sync from coreutils.
14552         * lib/sha1.c: Tweak grammar in a comment.
14553
14554 2006-01-10  Jim Meyering  <jim@meyering.net>
14555
14556         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
14557         Patch by Joerg Sonnenberger.
14558
14559 2006-01-10  Bruno Haible  <bruno@clisp.org>
14560
14561         * modules/readutmp: Depend on module free.
14562         * modules/strtok_r: Depend on module restrict.
14563
14564 2006-01-10  Bruno Haible  <bruno@clisp.org>
14565
14566         * modules/gettext (configure.ac): Add an invocation of
14567         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
14568
14569 2006-01-10  Bruno Haible  <bruno@clisp.org>
14570
14571         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
14572         Reported by Werner Lemberg <wl@gnu.org>.
14573
14574 2006-01-10  Bruno Haible  <bruno@clisp.org>
14575
14576         * lib/localcharset.c: Update from GNU gettext.
14577
14578 2006-01-10  Bruno Haible  <bruno@clisp.org>
14579
14580         * lib/argp.h (__const): Remove macro. Use const instead.
14581         * lib/argp-fmtstream.h (__const): Likewise.
14582         * lib/glob_.h (__const): Remove macro.
14583         * lib/glob-libc.h: Use const instead of __const.
14584
14585 2006-01-10  Bruno Haible  <bruno@clisp.org>
14586
14587         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
14588         variable.
14589         Needed to avoid an automake error regarding the 'gettext' module.
14590
14591 2006-01-09  Simon Josefsson  <jas@extundo.com>
14592
14593         * modules/inet_ntop (Depends-on): Add restrict.
14594
14595 2006-01-09  Simon Josefsson  <jas@extundo.com>
14596
14597         * modules/gc-rijndael-tests (License): Put under LGPL.
14598
14599         * modules/gc-des-tests (License): Likewise.
14600
14601         * modules/gc-arcfour-tests (License): Likewise.
14602
14603         * modules/gc-arctwo-tests (License): Likewise.
14604
14605         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
14606
14607         * modules/gc-hmac-sha1-tests (Files): Likewise.
14608
14609         * modules/gc-hmac-md5-tests (License): Likewise.
14610
14611         * modules/gc-sha1-tests (License): Likewise.
14612
14613         * modules/gc-md5-tests (License): Likewise.
14614
14615         * modules/gc-md4-tests (License): Likewise.
14616
14617         * modules/gc-md2-tests (License): Likewise.
14618
14619         * modules/gc-tests (License): Likewise.
14620
14621         * modules/des-tests (License): Likewise.
14622
14623         * modules/md4-tests (License): Likewise.
14624
14625         * modules/md2-tests (License): Likewise.
14626
14627 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14628
14629         Sync from coreutils:
14630
14631         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
14632         * modules/lib-ignore: New file.
14633         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
14634         chdir-safer.m4, lchmod.m4.
14635         * modules/openat: Add mkdirat.c, openat-priv.h.
14636
14637 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14638
14639         Sync from coreutils.
14640         * m4/lib-ignore.m4: New file.
14641         * m4/lchmod.m4: New file.
14642
14643 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14644
14645         Sync from coreutils.
14646         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
14647         for write access: POSIX says that must fail.
14648         * lib/fts.c (diropen): Likewise.
14649         * lib/save-cwd.c (save_cwd): Likewise.
14650         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
14651         well, for minor improvements on hosts that lack O_DIRECTORY.
14652         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
14653         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
14654         Fall back on chown if open failed with EACCES.
14655
14656         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
14657         Report an error at compile-time if only a 1-second nominal clock
14658         resolution is found.
14659
14660         * lib/lchmod.h: New file.
14661         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
14662         (make_dir_parents): Use lchown rather than chown, and
14663         lchmod rather than chmod.
14664
14665         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
14666         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
14667         "proc" reported by n0dalus.
14668
14669         * lib/mountlist.c: Include <limits.h>.
14670         (dev_from_mount_options)
14671         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
14672         New function.  It no longer assumes "dev=" has the System V meaning
14673         on Linux (since it doesn't).  It also parses "dev=" more carefully.
14674         (read_file_system_list)
14675         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
14676         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
14677         dev= in that case.
14678
14679         * lib/posixtm.h (PDS_PRE_2000): New macro.
14680         * lib/posixtm.c (year): Arg is now syntax_bits rather than
14681         allow_century.  All usages changed.  Reject dates outside the range
14682         1969-1999 if PDS_PRE_2000 is used.
14683
14684 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
14685
14686         Sync from coreutils.
14687         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
14688         (Time of day items): Mention the possibility of leap seconds.
14689         Problem reported by Dr. David Alan Gilbert.
14690
14691 2006-01-09  Jim Meyering  <jim@meyering.net>
14692
14693         Sync from coreutils.
14694
14695         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
14696
14697         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
14698
14699         * lib/modechange.c (mode_compile): Reject an invalid mode string
14700         that starts with an octal digit.  From Andreas Gruenbacher.
14701
14702         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
14703         and dup to open_safer and dup_safer, respectively.
14704         (openat_permissive): Fix typo in comment.
14705
14706         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
14707         "gettext.h"; either no longer needed or are guaranteed by openat.h.
14708         (_): Remove; no longer needed.
14709         (openat): Renamed from rpl_openat; no need for rpl_openat
14710         since openat.h renames openat for us.
14711         Replace most of the body with a call to openat_permissive,
14712         to avoid duplicate code.
14713         Port to (probably hypothetical) environments were mode_t is
14714         wider than int.
14715         (openat_permissive): Require mode arg, so that we can check
14716         types better.  Put it just after flags.  Change cwd failure
14717         indicator from pointer-to-bool to pointer-to-errno-value.
14718         All callers changed.
14719         Invoke openat_save_fail and/or openat_restore_fail if
14720         cwd_errno is null, so that openat can call us.
14721         (openat_permissive, fdopendir, fstatat, unlinkat):
14722         Simplify errno handling to avoid some duplicate code,
14723         as it's OK to set errno on success.
14724         * lib/openat.h: Revamp code so that function macros depend on
14725         __OPENAT_PREFIX only, not also on AT_FDCWD.
14726         (openat_ro): Remove.  Caller changed to use openat_permissive.
14727         (openat_permissive): Now a macro, if not a function.
14728         (openat_restore_fail, openat_save_fail): Now always functions,
14729         since mkdirat needs them even if __OPENAT_PREFIX is defined.
14730
14731         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
14732         and openat.c.
14733         * lib/mkdirat.c: Include openat-priv.h.
14734         Remove definitions of macros defined therein.
14735         * lib/openat.c: Likewise.
14736
14737         * lib/mkdirat.c (mkdirat): New file and function.
14738         * lib/openat.h (mkdirat): Declare.
14739
14740         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
14741
14742         * lib/openat.h (openat_permissive): Declare.
14743         (openat_ro): Define.
14744
14745         * lib/openat.c (EXPECTED_ERRNO): New macro.
14746         (openat_permissive): New function -- used in remove.c rewrite.
14747         (all functions): Set errno just before returning, only if there
14748         was an actual failure.
14749         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
14750
14751         Emulate openat-family functions using Linux's procfs, if possible.
14752         Idea and some code based on Ulrich Drepper's glibc changes.
14753
14754         * lib/openat.c: (BUILD_PROC_NAME): New macro.
14755         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
14756         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
14757         before falling back on save_cwd and restore_cwd.
14758         (fdopendir, fstatat, unlinkat): Likewise.
14759
14760         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
14761         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
14762
14763         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
14764         as second argument to va_arg.  Otherwise, some versions of gcc
14765         warn that `if this code is reached, the program will abort'.
14766
14767 2006-01-09  Jim Meyering  <jim@meyering.net>
14768
14769         Sync from coreutils.
14770         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
14771         Require openat-priv.h.
14772
14773 2006-01-09  Bruno Haible  <bruno@clisp.org>
14774
14775         * modules/strnlen (Include): Use strnlen.h.
14776
14777 2006-01-09  Bruno Haible  <bruno@clisp.org>
14778
14779         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
14780
14781 2006-01-09  Bruno Haible  <bruno@clisp.org>
14782
14783         * lib/sysexit_.h (EX_OK): New macro.
14784         Suggested by Martin Lambers <marlam@marlam.de>.
14785
14786 2006-01-09  Bruno Haible  <bruno@clisp.org>
14787
14788         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
14789         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
14790
14791 2006-01-09  Bruno Haible  <bruno@clisp.org>
14792
14793         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
14794         numbers.
14795
14796 2006-01-09  Bruno Haible  <bruno@clisp.org>
14797
14798         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
14799         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
14800         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
14801         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
14802
14803 2006-01-09  Bruno Haible  <bruno@clisp.org>
14804
14805         * build-aux/javacomp.sh.in: New file, moved from lib/.
14806         * modules/javacomp-script (Files): Update.
14807         (configure.ac): Add AC_CONFIG_FILES invocation.
14808         (EXTRA_DIST): Remove variable.
14809
14810         * build-aux/javaexec.sh.in: New file, moved from lib/.
14811         * modules/javaexec (Files): Update.
14812         (configure.ac): Add AC_CONFIG_FILES invocation.
14813         (EXTRA_DIST): Remove javaexec.sh.in.
14814
14815         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
14816         * modules/csharpcomp-script (Files): Update.
14817         (configure.ac): Add AC_CONFIG_FILES invocation.
14818         (EXTRA_DIST): Remove variable.
14819
14820         * build-aux/csharpexec.sh.in: New file, moved from lib/.
14821         * modules/csharpexec (Files): Update.
14822         (configure.ac): Add AC_CONFIG_FILES invocation.
14823         (EXTRA_DIST): Remove csharpexec.sh.in.
14824
14825 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14826
14827         Sync from coreutils.
14828
14829         Add POSIX ACL support
14830         * lib/acl.h (copy_acl, set_acl): Add declarations.
14831         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
14832         systems other than Linux.
14833         (chmod_or_fchmod): New function: use fchmod when possible,
14834         and chmod otherwise.
14835         (file_has_acl): Add a POSIX ACL implementation, with a
14836         Linux-specific subcase.
14837         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
14838         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
14839         acls are unsupported.
14840         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
14841         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
14842         are unsupported.
14843
14844 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
14845
14846         Sync from coreutils.
14847         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
14848
14849 2006-01-07  Bruno Haible  <bruno@clisp.org>
14850
14851         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
14852         gl_EARLY.
14853
14854 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14855
14856         * lib/strftime.c (tzname): Don't declare if it is already #defined.
14857         Problem reported for Mingw by Mark Junker.
14858
14859 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14860
14861         * README: Gnulib normally doesn't generate a tarball.
14862
14863 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
14864
14865         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
14866         long int, not int, for nanosecond counts, so that people who are
14867         used to POSIX struct timespec won't be surprised.  Reported by Jim
14868         Meyering.
14869
14870 2005-12-28  Bruno Haible  <bruno@clisp.org>
14871
14872         * build-aux/config.rpath: Update from GNU gettext.
14873
14874 2005-12-16  Jim Meyering  <jim@meyering.net>
14875
14876         * modules/fprintftime: New module.
14877         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
14878
14879 2005-12-16  Jim Meyering  <jim@meyering.net>
14880
14881         * m4/fprintftime.m4: New file.
14882
14883 2005-12-16  Jim Meyering  <jim@meyering.net>
14884
14885         * lib/fprintftime.c, lib/fprintftime.h: New files.
14886
14887 2005-12-15  Simon Josefsson  <jas@extundo.com>
14888
14889         * modules/socklen (configure.ac): Fix M4 macro name, to align with
14890         new m4/socklen.m4.
14891
14892 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14893
14894         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
14895         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
14896
14897 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14898
14899         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
14900         * lib/argp-help.c (fill_in_uparams): Check if the constructed
14901         struct uparams is valid. Fall back to the default values if it is
14902         not.
14903
14904 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14905
14906         * modules/argp (Files): Add argp-pin.c
14907         (Depends-on): dirname
14908         (lib_SOURCES): Add argp-pin.c
14909
14910 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14911
14912         * m4/argp.m4:  Check if program_invocation_name and
14913         program_invocation_short_name are declared and define appropriate
14914         macros if they are not.
14915
14916 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14917
14918         * lib/argp-help.c (__argp_base_name): New function
14919         (__argp_short_program_name): Rewrite using __argp_base_name
14920         * lib/argp-namefrob.h: Define program_invocation_name and
14921         program_invocation_short_name if requested
14922         (__argp_base_name): Add prototype
14923         * lib/argp-parse.c (argp_def): Use gettext wrappers
14924         (argp_default_parser): Use __argp_base_name
14925         * lib/argp-pin.c: New file. Defines program_invocation_name and
14926         program_invocation_short_name on systems that lack them.
14927
14928 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14929
14930         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
14931         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14932         porting problem reported by Georg Schwarz in
14933         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14934
14935 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14936
14937         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
14938         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14939         porting problem reported by Georg Schwarz in
14940         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14941
14942 2005-12-05  Bruno Haible  <bruno@clisp.org>
14943
14944         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
14945         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
14946         Reported by Mark Junker <mjscod@gmx.de>.
14947
14948 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
14949
14950         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
14951         Use implementation from Albert Chin, with some
14952         comments/corrections by Stepan Kasal and myself.
14953
14954 2005-12-02  Bruno Haible  <bruno@clisp.org>
14955
14956         * gnulib-tool (func_import): Accept GPLed build tool modules when
14957         --lgpl is given.
14958         * modules/csharpcomp-script: New file.
14959         * modules/csharpcomp: Depend on it.
14960         * modules/javacomp-script: New file.
14961         * modules/javacomp: Depend on it.
14962         Suggested by Simon Josefsson.
14963
14964 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
14965
14966         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
14967         statement, to work around an HP-UX 10.20 compiler bug reported by
14968         Peter O'Gorman.
14969
14970 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14971
14972         * modules/savedir (Depends-on): Add openat.
14973
14974 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14975
14976         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
14977         (uintmax_t) [defined uintmax_t]: Do not declare.
14978         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
14979         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
14980         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
14981         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
14982         sake of portability to weird hosts that C allows (though we don't
14983         know of any practical examples).
14984
14985         * lib/savedir.h (fdsavedir): New decl.
14986         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
14987         contains most of the former guts of savedir.
14988         (savedir): Use savedirstream.
14989         Include "openat.h".
14990
14991 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14992
14993         * modules/obstack (Files): Add m4/ulonglong.m4.
14994         Problem reported by Davide Angelocola.
14995
14996 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
14997
14998         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
14999         coreutils no longer futzes with rounding modes.
15000
15001 2005-11-14  Jim Meyering  <jim@meyering.net>
15002
15003         * lib/mkstemp-safer.c: Include <config.h>, required for possible
15004         replacement of mkstemp.
15005
15006 2005-11-10  Simon Josefsson  <jas@extundo.com>
15007
15008         * lib/readline.c: Remove EOL.
15009
15010 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15011
15012         * modules/gethrxtime (Depends-on): Add gettime.
15013
15014 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15015
15016         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
15017         or gettimeofday; no longer needed.
15018
15019 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15020
15021         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
15022         time business.
15023         (gethrxtime) [! (HAVE_NANOUPTIME
15024         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
15025         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
15026         our own approximation.
15027
15028 2005-11-08  Eric Blake  <ebb9@byu.net>
15029
15030         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
15031
15032 2005-11-08  Eric Blake  <ebb9@byu.net>
15033
15034         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
15035
15036 2005-11-04  Bruno Haible  <bruno@clisp.org>
15037
15038         * gnulib-tool: Implement --update mode.
15039
15040 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15041
15042         Fix porting problem reported by Theodoros V. Kalamatianos.
15043         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
15044         Don't assume that futimes failing means we must fail.
15045
15046 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15047
15048         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
15049         variables to suggest the intended function of the PATH_MAX check.
15050
15051 2005-10-30  Kean Johnston  <jkj@sco.com>
15052
15053         Trivial changes to support SCO systems.
15054         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
15055         as PATH_MAX.
15056         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
15057         where __ptr is null when no I/O is pending.
15058
15059 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15060
15061         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
15062         leave errno alone.  Problem reported by Dmitry V. Levin.
15063
15064 2005-10-28  Simon Josefsson  <jas@extundo.com>
15065
15066         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
15067         Test more.
15068
15069         * tests/test-gc-md2.c, tests/test-md2.c: New files.
15070
15071         * modules/md2, modules/md2-tests: New files.
15072
15073 2005-10-28  Simon Josefsson  <jas@extundo.com>
15074
15075         * m4/inet_ntop.m4: More tests.
15076
15077         * m4/gc-md2.m4, md2.m4: New file.
15078
15079 2005-10-28  Simon Josefsson  <jas@extundo.com>
15080
15081         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
15082         "restrict" keywords, as per POSIX.  Protect the function
15083         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
15084         Don't use K&R prototypes.  Check the sprintf return values.
15085         Re-define EAFNOSUPPORT if not present.  Indent.
15086
15087         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
15088         suggested by Bruno Haible <bruno@clisp.org>.
15089
15090         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
15091
15092         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
15093
15094         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
15095         libgcrypt).
15096
15097         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
15098
15099         * lib/md2.h, lib/md2.c: New files.
15100
15101 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
15102
15103         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
15104         errno alone.  Problem reported by Frederic Jolliton.
15105
15106 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
15107
15108         * modules/verify (License): Change from GPL to LGPL.  This is a
15109         tiny module and there are apparently near-equivalents that are
15110         under the BSD license.
15111
15112 2005-10-24  Simon Josefsson  <jas@extundo.com>
15113
15114         * modules/sha1: Relicense to LGPL.
15115
15116 2005-10-24  Simon Josefsson  <jas@extundo.com>
15117
15118         * lib/md4.h: Shrink buffer size, now that we changed the type.
15119
15120 2005-10-23  Simon Josefsson  <jas@extundo.com>
15121
15122         * gnulib-tool (func_import): Fix --tests-base.
15123
15124 2005-10-22  Simon Josefsson  <jas@extundo.com>
15125
15126         * modules/arcfour (Depends-on): Need stdint.
15127
15128 2005-10-22  Simon Josefsson  <jas@extundo.com>
15129
15130         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
15131         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
15132
15133 2005-10-22  Simon Josefsson  <jas@extundo.com>
15134
15135         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
15136         suggested by Bruno Haible <bruno@clisp.org>.
15137
15138 2005-10-22  Simon Josefsson  <jas@extundo.com>
15139
15140         * lib/crc.h: Include stddef.h, for size_t.
15141
15142 2005-10-22  Simon Josefsson  <jas@extundo.com>
15143
15144         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
15145         arcfour_context struct (simplify test vector testing in GNU
15146         Shishi).
15147
15148 2005-10-21  Simon Josefsson  <jas@extundo.com>
15149
15150         * modules/des, modules/des-tests: New files.
15151
15152         * modules/gc-des, modules/gc-des-tests: New files.
15153
15154         * tests/test-des.c, tests/test-gc-des.c: New file.
15155
15156 2005-10-21  Simon Josefsson  <jas@extundo.com>
15157
15158         * modules/arctwo, modules/arctwo-tests: New files.
15159
15160         * tests/test-arctwo.c: New file.
15161
15162         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
15163
15164         * tests/test-gc-arctwo.c: New file.
15165
15166 2005-10-21  Simon Josefsson  <jas@extundo.com>
15167
15168         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
15169         Bruno Haible <bruno@clisp.org>.
15170
15171         * m4/gc-des.m4: New file.
15172
15173 2005-10-21  Simon Josefsson  <jas@extundo.com>
15174
15175         * m4/arctwo.m4: New file.
15176
15177         * m4/gc-arctwo.m4: New file.
15178
15179 2005-10-21  Simon Josefsson  <jas@extundo.com>
15180
15181         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
15182         block.
15183
15184 2005-10-21  Simon Josefsson  <jas@extundo.com>
15185
15186         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
15187         <bruno@clisp.org>.
15188
15189         * lib/hmac-sha1.c (hmac_sha1): Likewise.
15190
15191         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
15192         Bruno Haible <bruno@clisp.org>.
15193
15194         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
15195         <bruno@clisp.org>.
15196
15197 2005-10-21  Simon Josefsson  <jas@extundo.com>
15198
15199         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
15200
15201 2005-10-21  Simon Josefsson  <jas@extundo.com>
15202
15203         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
15204
15205 2005-10-21  Simon Josefsson  <jas@extundo.com>
15206
15207         * lib/des.h, lib/des.c: New files.
15208
15209         * lib/gc-gnulib.c: Support DES.c
15210
15211 2005-10-21  Simon Josefsson  <jas@extundo.com>
15212
15213         * lib/arctwo.h, lib/arctwo.c: New files.
15214
15215         * lib/gc-gnulib.c: Support ARCTWO.
15216
15217 2005-10-21  Simon Josefsson  <jas@extundo.com>
15218
15219         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
15220         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15221
15222 2005-10-21  Simon Josefsson  <jas@extundo.com>
15223
15224         * gnulib-tool (func_import, func_create_testdir): Define automake
15225         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
15226         Makefile.am snippet),
15227         suggested by Bruno Haible <bruno@clisp.org>.
15228
15229         * modules/gc (Makefile.am): Use it.
15230
15231 2005-10-21  Bruno Haible  <bruno@clisp.org>
15232
15233         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
15234         patch.
15235
15236 2005-10-19  Simon Josefsson  <jas@extundo.com>
15237
15238         * tests/test-gc-rijndael.c: New file.
15239
15240         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
15241
15242 2005-10-19  Simon Josefsson  <jas@extundo.com>
15243
15244         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
15245         interface too.
15246
15247 2005-10-19  Simon Josefsson  <jas@extundo.com>
15248
15249         * tests/test-gc-arcfour.c: New file.
15250
15251         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
15252
15253 2005-10-19  Simon Josefsson  <jas@extundo.com>
15254
15255         * modules/gc-md4, modules/gc-md4-tests: New file.
15256
15257         * tests/test-gc-md4.c: New file.
15258
15259 2005-10-19  Simon Josefsson  <jas@extundo.com>
15260
15261         * m4/gc-md4.m4: New file.
15262
15263 2005-10-19  Simon Josefsson  <jas@extundo.com>
15264
15265         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
15266         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
15267         <kasal@ucw.cz>.
15268
15269 2005-10-19  Simon Josefsson  <jas@extundo.com>
15270
15271         * m4/gc-arcfour.m4: New file.
15272
15273         * m4/gc-rijndael.m4: New file.
15274
15275 2005-10-19  Simon Josefsson  <jas@extundo.com>
15276
15277         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
15278
15279 2005-10-19  Simon Josefsson  <jas@extundo.com>
15280
15281         * lib/gc-gnulib.c: Support ARCFOUR.
15282
15283 2005-10-19  Simon Josefsson  <jas@extundo.com>
15284
15285         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
15286         support.
15287
15288         * lib/gc.h: Add ECB enum type.
15289
15290         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
15291
15292 2005-10-18  Simon Josefsson  <jas@extundo.com>
15293
15294         * tests/test-md5.c: New file.
15295
15296         * modules/md5-tests: New file.
15297
15298 2005-10-18  Simon Josefsson  <jas@extundo.com>
15299
15300         * tests/test-md4.c: New file.
15301
15302         * modules/md4, modules/md4-tests: New files.
15303
15304 2005-10-18  Simon Josefsson  <jas@extundo.com>
15305
15306         * m4/md4.m4: New file.
15307
15308 2005-10-18  Simon Josefsson  <jas@extundo.com>
15309
15310         * lib/md4.h, lib/md4.c: New files, based on md5.?.
15311
15312 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
15313
15314         * gnulib-tool (func_create_testdir): Omit the second check whether
15315         BUILT_SOURCES in nonempty.
15316
15317 2005-10-17  Simon Josefsson  <jas@extundo.com>
15318
15319         * tests/test-rijndael.c: New file.
15320
15321 2005-10-17  Simon Josefsson  <jas@extundo.com>
15322
15323         * modules/sha1: Depend on stdint instead of md5.
15324
15325         * modules/md5: Depend on stdint, remove uint32_t.
15326
15327 2005-10-17  Simon Josefsson  <jas@extundo.com>
15328
15329         * modules/gc-sha1-tests: New file.
15330
15331         * tests/test-gc-sha1.c: New file.
15332
15333 2005-10-17  Simon Josefsson  <jas@extundo.com>
15334
15335         * m4/md5.m4: Remove call to uint32_t.m4.
15336
15337 2005-10-17  Simon Josefsson  <jas@extundo.com>
15338
15339         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
15340
15341         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
15342         md5.h.
15343
15344         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
15345
15346         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
15347
15348 2005-10-17  Simon Josefsson  <jas@extundo.com>
15349
15350         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
15351
15352 2005-10-17  Simon Josefsson  <jas@extundo.com>
15353
15354         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
15355
15356 2005-10-17  Simon Josefsson  <jas@extundo.com>
15357
15358         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
15359
15360         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
15361
15362 2005-10-17  Bruno Haible  <bruno@clisp.org>
15363
15364         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
15365         that it can also be used in a test.
15366
15367 2005-10-16  Bruno Haible  <bruno@clisp.org>
15368
15369         * gnulib-tool (func_emit_tests_Makefile_am): Also define
15370         TESTS_ENVIRONMENT, so that individual tests can augment it.
15371
15372         * gnulib-tool (func_create_testdir): Use an intermediate target for
15373         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
15374         macros, like $(ALLOCA_H), which cannot be passed through the command
15375         line.
15376
15377 2005-10-15  Simon Josefsson  <jas@extundo.com>
15378
15379         * modules/rijndael-tests: New file.
15380
15381         * modules/rijndael: New file.
15382
15383 2005-10-15  Simon Josefsson  <jas@extundo.com>
15384
15385         * m4/rijndael.m4: New file.
15386
15387 2005-10-15  Simon Josefsson  <jas@extundo.com>
15388
15389         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
15390
15391         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
15392
15393 2005-10-14  Simon Josefsson  <jas@extundo.com>
15394
15395         * tests/test-arcfour.c: New file.
15396
15397         * modules/arcfour, modules/arcfour-tests: New files.
15398
15399 2005-10-14  Simon Josefsson  <jas@extundo.com>
15400
15401         * m4/arcfour.m4: New file.
15402
15403 2005-10-14  Simon Josefsson  <jas@extundo.com>
15404
15405         * lib/arcfour.h, lib/arcfour.c: New files.
15406
15407 2005-10-14  Roland McGrath  <roland@redhat.com>
15408
15409         Import from libc.  [BZ #1331]
15410         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
15411         macro argument.
15412         Reported by Matej Vela <vela@debian.org>.
15413
15414 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
15415
15416         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
15417         include <wchar.h>; no longer needed.
15418
15419 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
15420
15421         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
15422
15423 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
15424         and  Ulrich Drepper  <drepper@redhat.com>
15425
15426         Import from libc.
15427         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
15428         instead of inline stream orientation test and two separate
15429         function calls.  Pay no attention to USE_IN_LIBIO.
15430
15431 2005-10-13  Simon Josefsson  <jas@extundo.com>
15432
15433         * modules/gc-hmac-md5-tests: New file.
15434
15435         * tests/test-gc-hmac-sha1.c: New file.
15436
15437         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
15438
15439         * modules/gc-hmac-md5-tests: New file.
15440
15441         * tests/test-gc-md5.c: New file.
15442
15443         * modules/gc-md5-tests: New file.
15444
15445 2005-10-13  Simon Josefsson  <jas@extundo.com>
15446
15447         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
15448         Move memory allocation outside of loop.
15449
15450 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
15451
15452         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
15453         intermediate directory is in a read-only file system.  Problem
15454         reported by Eric Blake.
15455
15456 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
15457
15458         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
15459
15460 2005-10-12  Simon Josefsson  <jas@extundo.com>
15461
15462         * tests/test-hmac-sha1.c: New file.
15463
15464         * modules/hmac-sha1-tests: New file.
15465
15466         * modules/hmac-sha1: New file.
15467
15468 2005-10-12  Simon Josefsson  <jas@extundo.com>
15469
15470         * modules/gc-sha1: New file.
15471
15472 2005-10-12  Simon Josefsson  <jas@extundo.com>
15473
15474         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
15475
15476         * tests/test-gc-pbkdf2-sha1.c: New file.
15477
15478 2005-10-12  Simon Josefsson  <jas@extundo.com>
15479
15480         * modules/gc-md5, modules/gc-hmac-md5: New files.
15481
15482         * modules/gc (Files): Remove md5, memxor and hmac files.
15483
15484 2005-10-12  Simon Josefsson  <jas@extundo.com>
15485
15486         * m4/gc-pbkdf2-sha1.m4: New file.
15487
15488         * m4/gc-hmac-sha1.m4: New file.
15489
15490         * m4/gc-sha1: New file.
15491
15492         * m4/hmac-sha1.m4: New file.
15493
15494 2005-10-12  Simon Josefsson  <jas@extundo.com>
15495
15496         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
15497
15498         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
15499
15500 2005-10-12  Simon Josefsson  <jas@extundo.com>
15501
15502         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
15503         suggested by Bruno Haible <bruno@clisp.org>.
15504
15505 2005-10-12  Simon Josefsson  <jas@extundo.com>
15506
15507         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
15508
15509 2005-10-12  Simon Josefsson  <jas@extundo.com>
15510
15511         * lib/gc-pbkdf2-sha1.c: New file.
15512
15513         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
15514
15515 2005-10-12  Simon Josefsson  <jas@extundo.com>
15516
15517         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
15518
15519         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
15520
15521 2005-10-12  Simon Josefsson  <jas@extundo.com>
15522
15523         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
15524         GC_USE_HMAC_MD5, respectively.
15525
15526         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
15527         (gc_md5): Fix typo.
15528
15529         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
15530
15531         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
15532
15533         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
15534
15535 2005-10-12  Bruno Haible  <bruno@clisp.org>
15536
15537         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
15538         Reported by Stepan Kasal <kasal@ucw.cz>.
15539
15540 2005-10-11  Simon Josefsson  <jas@extundo.com>
15541
15542         * tests/test-crc.c: New file.
15543
15544         * modules/crc, modules/crc-tests: New files.
15545
15546 2005-10-11  Simon Josefsson  <jas@extundo.com>
15547
15548         * m4/crc.m4: New file.
15549
15550 2005-10-11  Simon Josefsson  <jas@extundo.com>
15551
15552         * lib/gc.h: Add gc_hash and gc_hash_buffer.
15553
15554         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
15555
15556         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
15557
15558 2005-10-11  Simon Josefsson  <jas@extundo.com>
15559
15560         * lib/crc.h, lib/crc.c: New files.
15561
15562         * lib/gc.h (gc_hash_buffer): Add doc.
15563
15564 2005-10-11  Bruno Haible  <bruno@clisp.org>
15565
15566         * modules/c-strcasestr: New file.
15567         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
15568
15569 2005-10-11  Bruno Haible  <bruno@clisp.org>
15570
15571         * modules/c-strcase: New file.
15572         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
15573
15574 2005-10-11  Bruno Haible  <bruno@clisp.org>
15575
15576         * lib/strcasecmp.c: Include limits.h.
15577         (strcasecmp): Avoid integer overflow on exotic platforms.
15578         * lib/strncasecmp.c: Include limits.h.
15579         (strncasecmp): Avoid integer overflow on exotic platforms.
15580         Reported by Paul Eggert.
15581
15582 2005-10-11  Bruno Haible  <bruno@clisp.org>
15583
15584         * lib/c-strcasestr.h: New file, from GNU gettext.
15585         * lib/c-strcasestr.c: New file, from GNU gettext.
15586
15587 2005-10-11  Bruno Haible  <bruno@clisp.org>
15588
15589         * lib/c-strcase.h: New file, from GNU gettext.
15590         * lib/c-strcasecmp.c: New file, from GNU gettext.
15591         * lib/c-strncasecmp.c: New file, from GNU gettext.
15592
15593 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15594
15595         * modules/mempcpy (License): GPL -> LGPL.
15596         * modules/strchrnul (License): Likewise.
15597         * modules/sysexits (License): Likewise.
15598
15599 2005-10-08  Simon Josefsson  <jas@extundo.com>
15600
15601         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
15602
15603 2005-10-07  Simon Josefsson  <jas@extundo.com>
15604
15605         * m4/memxor.m4: Remove gl_C_RESTRICT call.
15606
15607 2005-10-06  Simon Josefsson  <jas@extundo.com>
15608
15609         * tests/test-hmac-md5.c: New file.
15610
15611         * modules/hmac-md5-tests: New file.
15612
15613         * modules/hmac-md5: New file.
15614
15615 2005-10-06  Simon Josefsson  <jas@extundo.com>
15616
15617         * m4/hmac-md5.m4: New file.
15618
15619         * m4/memxor.m4: Require gl_C_RESTRICT.
15620
15621 2005-10-06  Simon Josefsson  <jas@extundo.com>
15622
15623         * lib/memxor.c (memxor): Avoid casts and warnings.
15624
15625 2005-10-06  Simon Josefsson  <jas@extundo.com>
15626
15627         * lib/hmac-md5.c: New file.
15628
15629         * lib/hmac.h: New file.
15630
15631 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15632
15633         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
15634         promotes to int, not unsigned int, to catch the AIX 5.3
15635         compiler bug.
15636
15637 2005-10-05  Simon Josefsson  <jas@extundo.com>
15638
15639         * modules/memxor: New file.
15640
15641         * modules/iconv (Files): Move config.rpath to havelib, it is used
15642         there.
15643
15644         * modules/havelib (Files): Add config.rpath.
15645
15646 2005-10-05  Simon Josefsson  <jas@extundo.com>
15647
15648         * m4/memxor.m4: New file.
15649
15650 2005-10-05  Simon Josefsson  <jas@extundo.com>
15651
15652         * lib/memxor.c (memxor): Fix compiler error.
15653
15654         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
15655         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
15656
15657         * lib/memxor.h, lib/memxor.c: New files.
15658
15659         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
15660         we assume all systems have it, suggested by Jim Meyering
15661         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
15662         any systems lack sys/socket.h; mingw32 is known to lack it, but we
15663         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
15664         same reasons.
15665
15666 2005-10-05  Simon Josefsson  <jas@extundo.com>
15667
15668         * config/srclist.txt: Add glibc bug 1423 for md5.h.
15669
15670 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
15671
15672         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
15673         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
15674         needed, since the source code now assumes these .h files.
15675
15676 2005-10-05  Derek Price  <derek@ximbiot.com>
15677
15678         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
15679
15680 2005-10-05  Bruno Haible  <bruno@clisp.org>
15681
15682         * modules/stdint (License): Change to LGPL.
15683
15684 2005-10-04  Simon Josefsson  <jas@extundo.com>
15685
15686         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
15687         D. Baushke" <mdb@gnu.org>.
15688
15689 2005-10-04  Bruno Haible  <bruno@clisp.org>
15690
15691         * lib/verify.h (verify_true): Provide alternative definition for C++.
15692
15693 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
15694
15695         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
15696         (SSIZE_MAX): New macro, if not already defined.
15697         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
15698         than 2 GiB.
15699
15700 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15701
15702         Sync from coreutils.
15703         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
15704         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
15705         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
15706         ULLONG_MAX doesn't work with 2.7.2.1.
15707
15708 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15709
15710         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
15711         From Ben Pfaff.
15712
15713         * modules/exclude (Depends-on): Depend on verify.
15714         * modules/strtoimax (Depends-on): Likewise.
15715         * modules/utimecmp (Depends-on): Likewise.
15716
15717 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
15718
15719         * lib/exclude.c: Include verify.h.
15720         (verify): Remove.  All callers changed to use verify.h's version.
15721         * lib/strtoimax.c: Likewise.
15722         * lib/utimecmp.c: Likewis.e
15723
15724         Sync from coreutils.
15725         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
15726         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
15727         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
15728         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
15729         bother returning ENOSYS if settimeofday or stime fails; just let
15730         them return whatever errno they want to return.
15731         * lib/utimens.c: Include unistd.h, for dup2.
15732         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
15733         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
15734
15735 2005-10-02  Jim Meyering  <jim@meyering.net>
15736
15737         Sync from coreutils.
15738         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
15739         from glibc-2.2.5 that fails for read-only files.
15740
15741 2005-10-02  Jim Meyering  <jim@meyering.net>
15742
15743         Sync from coreutils.
15744         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
15745         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
15746         `#if HAVE_CONFIG_H'.
15747         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
15748         Remove AT_FDCWD test.
15749         Do not consume the fd unless successful.
15750         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
15751         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
15752         block, so that we don't even try to compile it if settimeofday is
15753         available.  This works around a compilation failure on OSF1 V5.1,
15754         due to stime requiring a `long int*' while tv_sec is `int'.
15755
15756 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
15757
15758         Sync from coreutils.
15759         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
15760         against `yes', rather than just testing for nonempty.
15761
15762 2005-10-01  Simon Josefsson  <jas@extundo.com>
15763
15764         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
15765         and Darwin.
15766
15767         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
15768         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
15769         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
15770         freeaddrinfo and gai_strerror are declared by the POSIX headers.
15771         Check if struct addrinfo is declared.
15772
15773 2005-10-01  Simon Josefsson  <jas@extundo.com>
15774
15775         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
15776         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
15777         AI_* and EAI_* definitions.  Protect function declarations.
15778
15779 2005-10-01  Jim Meyering  <jim@meyering.net>
15780
15781         Sync from coreutils.
15782
15783         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
15784         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
15785         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
15786         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15787         in the inet and nsl libraries.  Required on Solaris 5.7.
15788
15789 2005-10-01  Jim Meyering  <jim@meyering.net>
15790
15791         Sync from coreutils.
15792         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
15793         in the inet and nsl libraries.  Required on Solaris 5.7.
15794
15795 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
15796
15797         * lib/getdelim.c (getdelim): Remove unused variables.
15798
15799 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
15800
15801         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
15802         so that the code works even with ancient cpp.  Portability problem
15803         with GCC 2.7.2.1 reported by Thomas M.Ott.
15804
15805 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
15806
15807         * modules/regex (Depends-on): Add strcase.
15808
15809         * modules/gethostname (Licence): Change from GPL to LGPL, since
15810         gethostname.c is a trivial implementation of a standard library
15811         function.
15812         * modules/poll (License): Change from GPL to LGPL, since it's
15813         derived from LGPL code.
15814
15815 2005-09-27  Jim Meyering  <jim@meyering.net>
15816
15817         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
15818         HAVE_CONFIG_H.
15819
15820         * lib/intprops.h (signed_type_or_expr__): Define.
15821         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
15822         for unsigned types.
15823
15824 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
15825
15826         * lib/verify.h (verify_expr): Remove, replacing with:
15827         (verify_true): New macro that returns true instead of void.
15828         (verify_type__): Remove.
15829         (verify): Use verify_true rather than verify_type__.
15830
15831 2005-09-26  Bruno Haible  <bruno@clisp.org>
15832
15833         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
15834         is necessary.
15835         (lib_SOURCES): Remove mbchar.c.
15836         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
15837         (Files): Add m4/mbrtowc.m4.
15838         * modules/mbiter: Likewise.
15839         * modules/mbuiter: Likewise.
15840
15841 2005-09-26  Bruno Haible  <bruno@clisp.org>
15842
15843         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
15844         compile mbchar.c if they are not both present.
15845         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
15846         * m4/mbiter.m4 (gl_MBITER): Likewise.
15847         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
15848         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
15849         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
15850
15851 2005-09-25  Jim Meyering  <jim@meyering.net>
15852
15853         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
15854         also uses socklen_t.
15855
15856 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
15857
15858         * lib/utimens.c (ENOSYS): Define if not already defined.
15859         (futimens): Support having a null PATH if the file descriptor
15860         is nonnegative.
15861
15862         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
15863         Remove.
15864         (__attribute): Define to empty unless GCC 3.1 or later.
15865         This works around a core dump on OpenBSD 3.4, which has GCC
15866         2.95.3, which dumps core when given __attribute__(()).  It also
15867         simplifies other tests, since we really don't want to bother with
15868         worrying about which ancient version of GCC supported what.
15869         Original problem reported by Yoann Vandoorselaere, with part of
15870         the fix suggested by Derek Price.
15871
15872 2005-09-24  Jim Meyering  <jim@meyering.net>
15873
15874         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
15875         so we can once again use a positive bitfield width of 1 -- now we
15876         don't have to explain why we were using a bitfield width of 2.
15877
15878 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15879
15880         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
15881         and similarly for the other external symbols.  Problem reported
15882         by James Gallager.
15883
15884         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
15885         bug reported by Jim Meyering.
15886
15887         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
15888         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
15889         not needed, since socklen is a prerequisite module.
15890
15891 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15892
15893         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
15894         Problem reported by Eric Blake.
15895         (getaddrinfo): Initialize se so that it's not garbage.
15896         Redo internal storage allocation so that it doesn't make unportable
15897         assumptions about alignment.
15898         Fix a memory leak.
15899
15900         * lib/utimens.c (futimens): Use futimesat if available.
15901         Prefer it to futimes since it doesn't have the futimes bug.
15902
15903         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
15904         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
15905         Instead, declare a function that returns a pointer to an array,
15906         and use verify_type__ to declare the size of the array.
15907         Problem and germ of a solution reported by Bruno Haible.
15908         (verify_type__): Use 2, not 1, for bitfield size, to avoid
15909         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
15910
15911 2005-09-23  Jim Meyering  <jim@meyering.net>
15912
15913         Sync from coreutils.
15914         Correct build failure (socklen_t not defined) on at least
15915         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
15916         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
15917
15918 2005-09-23  Jim Meyering  <jim@meyering.net>
15919
15920         * modules/getaddrinfo (Depends-on): Add socklen.
15921
15922 2005-09-23  Bruno Haible  <bruno@clisp.org>
15923
15924         * tests/test-verify.c: New file.
15925
15926 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15927
15928         Sync from coreutils.
15929
15930         * modules/argmatch (Depends-on): Add verify.
15931         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
15932         unistd-safer.
15933         * modules/save-cwd (Depends-on): Likewise.
15934
15935         * modules/openat (Files): Add lib/openat-die.c.
15936         (Depends-on): Remove error, exitfail.
15937         Add dirname.
15938
15939         * modules/verify: New file.
15940         * MODULES.html.sh (Diagnostics <assert.h>): New section,
15941         with "verify" module.
15942
15943 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15944
15945         Sync from coreutils.
15946
15947         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
15948         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
15949         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
15950         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
15951         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
15952         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
15953         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
15954         Don't bother checking for string.h, stdlib.h, unistd.h.
15955         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
15956         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
15957         module's job.
15958         * m4/jm-macros.m4 (gl_MACROS): Likewise.
15959         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
15960
15961         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
15962         (gl_GETDATE): Use it.
15963
15964         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
15965
15966 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15967
15968         Sync from coreutils.
15969
15970         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
15971         stat-time.h.
15972         * lib/argmatch.h: Include verify.h
15973         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
15974         (ARGMATCH_ASSERT): Remove; unused.
15975         * lib/canonicalize.c: Assume STDC_HEADERS.
15976         * lib/exclude.c: Include "strcase.h".
15977         * lib/regex_internal.h [!defined _LIBC]: Likewise.
15978         * lib/getusershell.c: Include stdio--.h rather than stdio.h
15979         and stdio-safer.h.
15980         (getusershell): Call fopen, not fopen_safer.
15981         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
15982         Do not include unistd-safer.h.
15983         (save_cwd): Don't call fd_safer; no longer needed
15984         now that we include fcntl--.h.
15985
15986         * lib/getdate.y (relative_time): New type.
15987         (RELATIVE_TIME_0): New constant.
15988         (parser_control): Use relative_time instead of doing it ourselves.
15989         (%union): Add new relative_time rel member.
15990         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
15991         Now typeless.
15992         (relunit, relunit_snumber): Now of type rel.
15993         (zone, rel, relunit, get_date): Adjust to above changes.
15994
15995         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
15996         Do not include unistd-safer.h.
15997         (getloadavg): Don't call fd_safer; no longer needed
15998         now that we include fcntl--.h.
15999
16000         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
16001         (make_dir_parents): Treat ENOSYS like EEXIST.
16002
16003         Improve quality of diagnostics on restore_cwd failure.
16004         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
16005         (make_dir_parents): Last arg is now int * (for errno), not bool *.
16006         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
16007         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
16008         each time through the loop.  Do not diagnose restore_cwd failure;
16009         that is the caller's job (and perhaps the caller does not care).
16010
16011         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
16012         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
16013         If the file already exists but is not a directory, don't bother
16014         to try to make its parents.
16015         Close potential file descriptor leak if we can't chdir("/") (!).
16016         Don't always return true if chdir($PWD) fails; return true only
16017         if the requested action was done successfully (except for the
16018         chdir($PWD)).
16019         Don't log final directory unless we actually made it.
16020         Refactor to avoid duplicate code to fix up permissions.
16021         Don't attempt to fix up parent permissions if chdir($PWD) fails.
16022
16023         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
16024         to make it a bit faster and (I hope) clearer.
16025         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
16026         Fix bug in formats like %2N.
16027
16028         * lib/verify.h: New file.
16029
16030 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
16031
16032         Sync from coreutils.
16033         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
16034
16035 2005-09-22  Jim Meyering  <jim@meyering.net>
16036
16037         Sync from coreutils.
16038
16039         * m4/lstat.m4 (gl_FUNC_LSTAT):
16040         Use AC_LIBSOURCES to require lstat.c and lstat.h.
16041         Remove obsolete comment.
16042         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
16043         * m4/xstrtod.m4: Likewise.
16044
16045         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
16046
16047 2005-09-22  Jim Meyering  <jim@meyering.net>
16048
16049         Sync from coreutils.
16050
16051         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
16052
16053         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
16054         the .tm_year member, since otherwise gcc-4.0 would now warn about
16055         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
16056
16057         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
16058         order to avoid an unsuppressible warning from gcc on 64-bit systems.
16059
16060         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
16061         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
16062         when run in a time zone for which daylight savings time is in effect
16063         for the starting date.
16064
16065         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
16066         stop us from restricting permissions of just-created absolute-named
16067         directories.
16068         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
16069         to restore initial working directory.
16070         * lib/mkdir-p.c (make_dir_parents): New parameter:
16071         different_working_dir, to tell caller if/when we change the working
16072         directory and are unable to return to the initial one.
16073         * lib/mkdir-p.h (make_dir_parents): Update prototype.
16074         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
16075         `return false'.  This fixes a bug introduced on 2004-07-30.
16076
16077         * lib/openat.c (fdopendir): Be sure to close the supplied
16078         file descriptor before returning.  This makes our replacement
16079         implementation a little closer to Solaris's, where fdopendir
16080         ties the file descriptor to the returned DIR* pointer.
16081         * lib/openat.c (unlinkat): New function.
16082         * lib/openat.h (unlinkat): Add prototype.
16083         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
16084         (openat_restore_fail): Rename from openat_restore_die.
16085         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
16086
16087         Provide an alternative to exiting immediately upon save_cwd or
16088         restore_cwd failure.  Now, an application can arrange e.g.,
16089         to perform a longjump in that case.
16090         * lib/openat.c: Include dirname.h.
16091         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
16092         (rpl_openat, fdopendir, fstatat): Call openat_save_die
16093         and openat_restore_die rather than calling error directly.
16094         Don't include "error.h" or "exitfail.h"; they're no longer needed.
16095
16096         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
16097         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
16098         define.
16099
16100         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
16101         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
16102                             int utc, int nanoseconds);
16103         Background:
16104         date should not have to allocate a megabyte of virtual memory to
16105         handle a format argument like +%1048575T.  When implemented with
16106         strftime, it must allocate such a buffer, use strftime to fill it
16107         in, print it, then free it.
16108         With fprintftime, it simply prints everything and exits.
16109         With no need for memory allocation, that's one fewer way to fail.
16110         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
16111         optional field width, not before, so we accept %9:z, not %:9z.
16112         (my_strftime): Be sure to use L_('x') for literals.
16113
16114         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
16115         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
16116         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
16117         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
16118         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
16119         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
16120         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
16121         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
16122         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
16123         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
16124         * lib/xgethostname.c, lib/xreadlink.c:
16125         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
16126
16127         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
16128         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
16129         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
16130         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
16131         and don't include <sys/file.h>).
16132
16133 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
16134
16135         Sync from coreutils.
16136
16137         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
16138         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
16139         [!LDAV_DONE]: Avoid unused variable warning.
16140
16141 2005-09-21  Bruno Haible  <bruno@clisp.org>
16142
16143         * lib/unicodeio.h (unicode_to_mb): New declaration.
16144
16145 2005-09-20  Derek Price  <derek@ximbiot.com>
16146
16147         * lib/getaddrinfo.c: Don't include <netdb.h> included from
16148         getaddrinfo.h.
16149
16150 2005-09-20  Bruno Haible  <bruno@clisp.org>
16151
16152         * gnulib-tool: Remove trailing slashes from the values specified for
16153         --source-base, --m4-base, --tests-base, --aux-dir.
16154         Suggested by Simon Josefsson <jas@extundo.com>.
16155
16156 2005-09-20  Bruno Haible  <bruno@clisp.org>
16157
16158         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
16159         func_modules_to_filelist, func_import, func_create_testdir): Make all
16160         sorting results locale-independent, so that gnulib-cache.m4 doesn't
16161         change when gnulib-tool is invoked in a different locale.
16162
16163 2005-09-19  Simon Josefsson  <jas@extundo.com>
16164
16165         * m4/socklen.m4: Fix typo.
16166
16167 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16168
16169         Use a consistent style for including <config.h>.
16170         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
16171         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
16172         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
16173         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
16174         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
16175         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
16176         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
16177         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
16178         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
16179         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
16180         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
16181         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
16182         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
16183         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
16184         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
16185         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
16186         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
16187         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
16188         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
16189         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
16190         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
16191         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
16192         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
16193         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
16194         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
16195         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
16196         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
16197         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
16198         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
16199         lib/xstrtoumax.c, lib/yesno.c:
16200         Standardize inclusion of config.h.
16201         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
16202         lib/inttostr.h:  Removed inclusion of config.h from header files.
16203         * lib/inttostr.c:  Adjusted in-tree users.
16204         * lib/timespec.h: Remove superfluous warning to include config.h.
16205         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
16206         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
16207         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
16208         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
16209         config.h with HAVE_CONFIG_H.
16210
16211 2005-09-19  Jim Meyering  <jim@meyering.net>
16212
16213         * modules/pathmax (License): Change to LGPL.
16214
16215 2005-09-19  Derek Price  <derek@ximbiot.com>
16216
16217         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
16218
16219 2005-09-19  Bruno Haible  <bruno@clisp.org>
16220
16221         * gnulib-tool (import): Provide default for --tests-base.
16222
16223 2005-09-19  Bruno Haible  <bruno@clisp.org>
16224
16225         * doc/quote.texi: New file, extracted from gnulib.texi.
16226         * doc/ctime.texi: New file, extracted from gnulib.texi.
16227         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
16228         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
16229         * doc/gnulib.texi: Include them.
16230
16231 2005-09-18  Bruno Haible  <bruno@clisp.org>
16232
16233         Portability fix.
16234         * gnulib-tool (func_readlink): New function.
16235         (func_ln_if_changed): Use it.
16236
16237 2005-09-18  Bruno Haible  <bruno@clisp.org>
16238
16239         * gnulib-tool: Support --with-tests also with --import.
16240         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
16241         (func_import): Use variables $testsbase and $inctests. Emit a
16242         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
16243         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
16244         SUBDIRS += $testsdir.
16245         (func_create_testdir): Update.
16246
16247 2005-09-18  Bruno Haible  <bruno@clisp.org>
16248
16249         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
16250         instead of $dry_run.
16251         (func_cp_if_changed, func_mv_if_changed): Remove functions.
16252         (func_ln_if_changed): Don't handle dry-run here.
16253         (func_import): In dry-run mode, detect more precisely which actions
16254         would be performed, and don't use "...ing" verbs.
16255
16256 2005-09-18  Bruno Haible  <bruno@clisp.org>
16257
16258         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
16259         (func_import): Use join on two temporary files instead of three nested
16260         loops, in order to determine which files are new or old.
16261
16262 2005-09-18  Bruno Haible  <bruno@clisp.org>
16263
16264         * gnulib-tool (func_import): Comment out code that spits out the
16265         new files with --dry-run.
16266
16267 2005-09-18  Bruno Haible  <bruno@clisp.org>
16268
16269         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
16270
16271 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16272
16273         * lib/stat-time.h: New file.
16274         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
16275         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
16276         in a different way.
16277         (timespec_cmp): New function.
16278         * lib/utimecmp.c: Include stat-time.h.
16279         (SYSCALL_RESOLUTION): Depend on whether various struct stat
16280         members exist, not on the obsolescent ST_MTIM_NSEC.
16281         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
16282
16283 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16284
16285         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
16286
16287 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16288
16289         * MODULES.html.sh (File system functions): Add stat-time.
16290         * modules/stat-time: New file.
16291         * modules/timespec (Files): Remove m4/st_mtim.m4; this
16292         is now done in a different way, by the stat-time module.
16293         * modules/utimecmp (Depends-on): Add stat-time.
16294
16295 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16296
16297         * m4/st_mtim.m4: Remove.  Superseded by...
16298         * m4/stat-time.m4: New file.
16299         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
16300         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
16301
16302 2005-09-15  Derek Price  <derek@ximbiot.com>
16303
16304         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
16305
16306 2005-09-15  Derek Price  <derek@ximbiot.com>
16307
16308         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
16309         * lib/regex_internal.c: Ditto, using this...
16310         (__GNUC_PREREQ): ...new macro.
16311         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
16312         using...
16313         (__GNUC_PREREQ): ...this new macro.
16314
16315         * lib/strstr.h: Include string.h. Define strstr as a macro here.
16316
16317 2005-09-15  Derek Price  <derek@ximbiot.com>
16318             Paul Eggert  <eggert@cs.ucla.edu>
16319
16320         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
16321         changes, consolidating in...
16322         * lib/regex_internal.h: ...this file.
16323
16324 2005-09-13  Jim Meyering  <jim@meyering.net>
16325
16326         * lib/canon-host.c: Filter through gnu indent and reword comments
16327         slightly.
16328         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
16329
16330 2005-09-13  Derek Price  <derek@ximbiot.com>
16331
16332         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
16333         failure.
16334         Reported by Jim Meyering  <jim@meyering.net>.
16335
16336 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
16337
16338         * lib/base64.c: Typo.
16339         (base64_encode): Put b64str in initialized data section.
16340
16341 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
16342
16343         Merge glibc and coreutils changes into gnulib, plus a few
16344         extra fixes.
16345         * lib/md5.c: Use #error rather than a string.
16346         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
16347         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
16348         (__attribute__): Define to empty for non recent-GCC.
16349         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
16350         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
16351         Renamed from their non-__ counterparts, with new macros replacing
16352         them if not _LIBC.  Add __THROW attribute.
16353         (rol): Remove.
16354         (struct md5_ctx): Align buffer if using GCC.
16355         * lib/sha1.h (struct sha1_ctx): Likewise.
16356         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
16357         The old name was backwards.
16358         (NOTSWAP): Remove; not used.
16359         (rol): New macro, moved here from md5.h.
16360         (sha1_process_block): Remove a FIXME that doesn't make sense.
16361
16362 2005-09-12  Derek Price  <derek@ximbiot.com>
16363
16364         Return usable errors from canon-host.
16365         * lib/canon-host.h: New file.
16366         * lib/canon-host.c (canon_host): Wrap...
16367         (canon_host_r): ...this new function, which now relies exclusively on
16368         getaddrinfo.
16369         (ch_strerror): New function.
16370         (last_cherror): New global.
16371         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
16372         interface.
16373         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
16374         void *.
16375         (freeaddrinfo): Free ai->ai_canonname when set.
16376
16377 2005-09-12  Derek Price  <derek@ximbiot.com>
16378
16379         Make canon-host require getaddrinfo.
16380         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
16381         AC_LIBSOURCE canon-host.h.  Call...
16382         (gl_PREREQ_CANON_HOST): ...this new function, which requires
16383         gl_GETADDRINFO.
16384         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
16385
16386 2005-09-12  Derek Price  <derek@ximbiot.com>
16387
16388         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
16389         LGPL.
16390         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
16391
16392 2005-09-12  Derek Price  <derek@ximbiot.com>
16393
16394         * lib/gai_strerror.c: Include config.h when available.  Include
16395         getaddrinfo.h before other headers to test interface.
16396         Reported by Larry Jones <lawrence.jones@ugs.com>.
16397
16398 2005-09-12  Derek Price  <derek@ximbiot.com>
16399             Paul Eggert  <eggert@cs.ucla.edu>
16400
16401         * modules/glob (Files): Add glob-libc.h.
16402
16403 2005-09-12  Derek Price  <derek@ximbiot.com>
16404             Paul Eggert  <eggert@cs.ucla.edu>
16405
16406         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
16407         glob_.h, glob-libc.h.
16408         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
16409
16410 2005-09-12  Derek Price  <derek@ximbiot.com>
16411             Paul Eggert  <eggert@cs.ucla.edu>
16412
16413         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
16414         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
16415         protecting things that should be done only in gnulib contexts.
16416         * lib/glob_.h: New file, containing only the glob things needed for
16417         gnulib.
16418         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
16419         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
16420         (glob, globfree, glob_pattern_p): Now defined simply in terms of
16421         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
16422         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
16423         and to respect the namespace rules better.
16424
16425 2005-09-08  Simon Josefsson  <jas@extundo.com>
16426
16427         * modules/socklen: New file.
16428
16429 2005-09-08  Simon Josefsson  <jas@extundo.com>
16430
16431         * m4/socklen.m4: New file.
16432
16433 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16434
16435         * modules/utimens (Files): Add m4/utimbuf.m4, since
16436         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
16437         Reported by Sergey Poznyakoff.
16438
16439 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16440
16441         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
16442         definitions, since that's the preferred style in glibc.
16443         Fix a minor spacing issue, and update copyright notice to match
16444         glibc's.
16445
16446 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16447
16448         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
16449
16450 2005-09-06  Simon Josefsson  <jas@extundo.com>
16451
16452         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
16453         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
16454
16455 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
16456
16457         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
16458         warning.
16459
16460 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
16461
16462         * config/srclist.txt: Add glibc bug 1302.
16463
16464 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
16465
16466         Change bitset word type from unsigned int to unsigned long int,
16467         as this has better performance on typical 64-bit hosts.
16468         Port bitset code to hosts with unusual word sizes.
16469         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
16470         (build_collating_symbol):
16471         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
16472         argument is a bitset.  This is merely a style issue, but it makes
16473         it clearer that an entire array is expected.
16474         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
16475         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
16476         Port to the case where bitset_word is not the same as unsigned int.
16477         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
16478         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
16479         Likewise.
16480         * lib/regexec.c (check_dst_limits_calc_pos_1,
16481         check_subexp_matching_top):
16482         (build_trtable, group_nodes_into_DFAstates):
16483         Likewise.
16484         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
16485         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
16486         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
16487         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
16488         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
16489         * lib/regcomp.c (optimize_subexps, lower_subexp):
16490         Work even if bitset_word has holes in its bitwise representation.
16491         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
16492         * lib/regexec.c (check_dst_limits_calc_pos_1,
16493         check_subexp_matching_top):
16494         Likewise.
16495         * lib/regex_internal.c (re_string_reconstruct):
16496         Don't assume UCHAR_MAX == 255.
16497         * lib/regex_internal.h (bitset_set_all): Likewise.
16498         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
16499         All uses changed.
16500         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
16501         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
16502         All uses changed.
16503         (BITSET_WORD_MAX): New macro.
16504         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
16505         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
16506         (bitset_empty, bitset_copy):
16507         Prefer sizeof (bitset) to multiplying it out ourselves.
16508         (bitset_not_merge): Remove; unused.
16509         (bitset_contain): Return bool, not unsigned int with one bit on.
16510         All callers changed.
16511         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
16512         alignment than re_node_set; do this by defining a new internal
16513         type struct dests_alloc and using it to allocate memory.
16514
16515 2005-09-05  Bruno Haible  <bruno@clisp.org>
16516
16517         * gnulib-tool (func_import): Fix comparison in handling of symbolic
16518         links.
16519
16520 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
16521
16522         * modules/size_max (Makefile.am): Add size_max.h
16523
16524 2005-09-04  Derek Price  <derek@ximbiot.com>
16525
16526         * gnulib-tool (func_import): Fix reversed $symbolic logic.
16527
16528 2005-09-03  Simon Josefsson  <jas@extundo.com>
16529
16530         * gnulib-tool: Fix typo.
16531
16532 2005-09-03  Simon Josefsson  <jas@extundo.com>
16533
16534         * config/srclist.txt: Add glibc bug 1293.
16535
16536 2005-09-03  Derek Price  <derek@ximbiot.com>
16537
16538         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
16539         From Larry Jones <lawrence.jones@ugs.com>.
16540
16541 2005-09-02  Simon Josefsson  <jas@extundo.com>
16542
16543         * modules/socklen: New file.
16544
16545 2005-09-02  Simon Josefsson  <jas@extundo.com>
16546
16547         * modules/havelib: New module.
16548
16549         * modules/gettext, modules/iconv, modules/lock, modules/readline:
16550         Use havelib.
16551
16552 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
16553
16554         Check for arithmetic overflow when calculating sizes, to prevent
16555         some buffer-overflow issues.  These patches are conservative, in the
16556         sense that when I couldn't determine whether an overflow was possible,
16557         I inserted a run-time check.
16558         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
16559         macros.
16560         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
16561         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
16562         (re_xnrealloc, re_x2nrealloc): New inline functions.
16563         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
16564         parse_bracket_exp):
16565         (build_equiv_class, build_charclass): Check for arithmetic overflow
16566         in size expression calculations.
16567         * lib/regex_internal.c (re_string_realloc_buffers):
16568         (build_wcs_upper_buffer, re_node_set_add_intersect):
16569         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
16570         (re_dfa_add_node, register_state): Likewise.
16571         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
16572         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
16573         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
16574         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
16575
16576 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
16577
16578         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16579         m4/ulonglong.m4.  Problem reported by Martin Lambers.
16580
16581 2005-09-02  Bruno Haible  <bruno@clisp.org>
16582
16583         Support for lib vs. lib64 distinction on biarch platforms.
16584         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
16585         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
16586         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
16587
16588 2005-09-02  Bruno Haible  <bruno@clisp.org>
16589
16590         * gnulib-tool (import): In the other first-use case, provide defaults
16591         as well.
16592
16593 2005-09-02  Bruno Haible  <bruno@clisp.org>
16594
16595         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
16596         patches not yet found in the latest gettext release.
16597
16598 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16599
16600         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
16601         to avoid a collision with bits/local_lim.h in glibc.
16602         All uses changed.  Problem reported by Dmitry V. Levin in
16603         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
16604
16605         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
16606         bugs in int versus size_t comparisons.
16607         (re_string_context_at): Fix bug where the code assumed that
16608         Idx is signed.
16609
16610         Use bool where appropriate.
16611         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
16612         All callers changed.
16613         (calc_eclosure_iter): Likewise, for ROOT arg.
16614         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
16615         (build_charclass_op): Likewise, for NON_MATCH arg.
16616         * lib/regex_internal.c (re_string_allocate, re_string_construct):
16617         (re_string_construct_common): Likewise, for ICASE arg.
16618         * lib/regexec.c (re_search_2_stub, re_search_stub):
16619         Likewise, for RET_LEN arg.
16620         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
16621         (set_regs): Likewise, for FL_BACKTRACK arg.
16622         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
16623         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
16624         (calc_eclosure_iter, parse_bracket_exp):
16625         Use bool for internal variables that are booleans.
16626         * lib/regexec.c (re_search_internal, check_matching,
16627         proceed_next_node):
16628         (set_regs, build_sifted_states, sift_states_bkref):
16629         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
16630         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
16631         (find_collation_sequence_value):
16632         Likewise.
16633         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
16634         (re_node_set_compare):
16635         Return bool, not int. All callers changed.
16636         * lib/regexec.c (check_halt_node_context, check_dst_limits):
16637         (build_trtable, check_node_accept): Likewise.
16638         * lib/regex_internal.h: Include stdbool.h.
16639
16640         Fix bugs uncovered when converting to bool.
16641         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
16642         failure instead of charging ahead blindly.
16643         * lib/regex_internal.c (register_state): Likewise.
16644         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
16645         for freeing internal storage.
16646         (group_nodes_into_DFA_states): Use unsigned int, not int, for
16647         bitset pieces used as boolean, to avoid undefined behavior
16648         on hosts that do int overflow checking.
16649
16650 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16651
16652         * config/srclist.txt: Add glibc bugs 1285-1287.
16653
16654 2005-09-01  Jim Meyering  <jim@meyering.net>
16655
16656         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
16657         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
16658         Require gl_STAT_MACROS, too.
16659
16660 2005-09-01  Bruno Haible  <bruno@clisp.org>
16661
16662         * gnulib-tool (import): In the first-use case, provide defaults.
16663
16664 2005-09-01  Bruno Haible  <bruno@clisp.org>
16665
16666         * gnulib-tool (func_import): Remove the .tmp files.
16667
16668 2005-09-01  Bruno Haible  <bruno@clisp.org>
16669
16670         * gnulib-tool (func_import): Fix handling of symbolic links.
16671
16672 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16673
16674         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
16675         old glibc regex code mishandles strings longer than 2**31 bytes.
16676         This patch fixes this when the regex code is used in gnulib
16677         (i.e., outside glibc).
16678
16679         This patch should not affect the use of the regex code inside
16680         glibc.  No doubt this problem also needs to be handled for glibc
16681         as well, but the result will be an incompatible change to the
16682         glibc ABI, and the old ABI will have to be supported too.  That
16683         can be the the subject for another patch.
16684
16685         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
16686         governing whether the rest of this patch is active.  By default,
16687         the macro is disabled and the patch has no effect.
16688         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
16689         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
16690         (struct re_pattern_buffer, re_search, re_search_2, re_match):
16691         (re_match_2, re_set_registers): Use the new types.
16692         * lib/regex_internal.h (Idx, re_hashval_t): New types.
16693         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
16694         New macros.
16695         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
16696         (re_string_context_at, bin_tree_t, re_dfastate_t):
16697         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
16698         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
16699         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
16700         (re_string_char_size_at, re_string_wchar_at):
16701         (re_string_elem_size_at):
16702         Use the new types and macros to port to 64-bit hosts.
16703         Use unsigned types for internal values, so that the code
16704         mostly works even for arrays larger than SSIZE_MAX.
16705         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
16706         (search_duplicated_node, calc_eclosure_iter, fetch_number):
16707         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
16708         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
16709         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
16710         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
16711         (calc_inveclosure, parse_dup_op, build_range_exp):
16712         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
16713         (fetch_number, create_token_tree, mark_opt_subexp):
16714         Likewise.
16715         * lib/regex_internal.c (re_string_construct_common,
16716         create_ci_newstate):
16717         (create_cd_newstate, re_string_allocate, re_string_construct):
16718         (re_string_realloc_buffers, build_wcs_upper_buffer):
16719         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
16720         (re_string_reconstruct, re_string_peek_byte_case):
16721         (re_string_fetch_byte_case, re_string_context_at):
16722         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
16723         (re_node_set_init_copy, re_node_set_add_intersect):
16724         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16725         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16726         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
16727         (re_acquire_state, re_acquire_state_context, register_state):
16728         Likewise.
16729         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
16730         search_cur_bkref_entry):
16731         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
16732         (re_search_internal, re_search_2_stub, re_search_stub)
16733         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
16734         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
16735         (update_cur_sifted_state, check_dst_limits):
16736         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16737         (check_subexp_limits, sift_states_bkref, merge_state_array):
16738         (check_subexp_matching_top, get_subexp, get_subexp_sub):
16739         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
16740         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
16741         (expand_bkref_cache, check_node_accept_bytes):
16742         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
16743         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
16744         (acquire_init_state_context, check_halt_node_context):
16745         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
16746         (sift_states_backward, clean_state_log_if_needed):
16747         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
16748         (find_recover_state, transit_state_sb, transit_state_mb):
16749         (transit_state_bkref, build_trtable, match_ctx_clean):
16750         Likewise.
16751         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
16752         to work around an assumption that REG_MISSING is negative.
16753
16754         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
16755         (seek_collating_symbol_entry) [defined _LIBC]:
16756         (lookup_collation_sequence_value) [defined _LIBC]:
16757         (build_range_exp, build_collating_symbol) [defined _LIBC]:
16758         Use prototypes rather than old-style function definitions.
16759         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
16760         (transit_state_sb) [0]:
16761         (find_collation_sequence_value) [defined _LIBC]: Likewise.
16762
16763         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
16764         rm_eo.
16765
16766         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
16767         (optimize_subexps, lower_subexp):
16768         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
16769         since the signed shift might overflow.  Use 1u<<31 instead.
16770         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
16771         Likewise.
16772         * lib/regexec.c (check_dst_limits_calc_pos_1,
16773         check_subexp_matching_top): Likewise.
16774
16775         * lib/regcomp.c (optimize_subexps, lower_subexp):
16776         Use CHAR_BIT rather than 8, for clarity.
16777         * lib/regexec.c (check_dst_limits_calc_pos_1):
16778         (check_subexp_matching_top): Likewise.
16779         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
16780         have to worry about portability issues when shifting it left.
16781         Remove no-longer-needed test for table_size > 0.
16782         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
16783         in a word, as the resulting behavior is undefined.
16784         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
16785         in one case, a <= should have been an <, and in another case the
16786         whole test was missing.
16787         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
16788         the standard name CHAR_BIT.
16789         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
16790         this is not true on one's complement and signed-magnitude hosts.
16791
16792         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
16793         next_last_offset.
16794         (struct re_dfa_t): Remove unused member states_alloc.
16795         * lib/regcomp.c (init_dfa): Don't initialize unused members.
16796
16797 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16798
16799         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
16800         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
16801         and large-file glibc and in 32-bit large-file Solaris.
16802
16803 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16804
16805         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
16806         lengths fit in regoff_t; this isn't true if regoff_t is the same
16807         width as size_t.
16808         * lib/regex.c (re_search_internal): 5th arg is LAST_START
16809         (= START + RANGE) instead of RANGE.  This avoids overflow
16810         problems when regoff_t is the same width as size_t.
16811         All callers changed.
16812         (re_search_2_stub): Check for overflow when adding the
16813         sizes of the two strings.
16814         (re_search_stub): Check for overflow when adding START
16815         to RANGE; if it occurs, substitute the extreme value.
16816
16817 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16818
16819         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
16820
16821 2005-08-31  Jim Meyering  <jim@meyering.net>
16822
16823         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
16824         a pointer-to-const.
16825         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
16826         (register_state): Likewise.
16827         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
16828         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
16829         (group_nodes_into_DFAstates): Likewise.
16830
16831 2005-08-31  Jim Meyering  <jim@meyering.net>
16832
16833         * check-module: Add a FIXME comment.
16834
16835 2005-08-31  Eric Blake  <ebb9@byu.net>
16836
16837         * modules/unistd-safer (Files): Add unistd--.h.
16838         * modules/stdio-safer (Files): Add stdio--.h.
16839
16840 2005-08-31  Derek Price  <derek@ximbiot.com>
16841
16842         * lib/getdelim.c (getdelim): Return EOF on EOF.
16843         Reported by Larry Jones <lawrence.jones@ugs.com>.
16844
16845 2005-08-31  Bruno Haible  <bruno@clisp.org>
16846
16847         Avoid unnecessary diffs in the generated lib/Makefile.am.
16848         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
16849         the generated files.
16850         (func_import): Don't set cmd.
16851
16852 2005-08-31  Bruno Haible  <bruno@clisp.org>
16853
16854         * lib/strstr.c: Include <stddef.h>, for NULL.
16855         * lib/strcasestr.c: Likewise.
16856         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
16857
16858 2005-08-31  Bruno Haible  <bruno@clisp.org>
16859
16860         * gnulib-tool: New option --macro-prefix.
16861         (func_import): Use macro_prefix.
16862         (import): Handle option --macro-prefix.
16863
16864 2005-08-31  Bruno Haible  <bruno@clisp.org>
16865
16866         * gnulib-tool (import): Rename most ac_* variables to cached_*.
16867         Also use new variables cached_lgpl, cached_libtool.
16868
16869 2005-08-31  Bruno Haible  <bruno@clisp.org>
16870
16871         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
16872         always instantiating them.
16873
16874 2005-08-31  Bruno Haible  <bruno@clisp.org>
16875
16876         * gnulib-tool (func_import): Read the previous cached settings
16877         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
16878         earlier added by gnulib but are now dropped. Warn when a gnulib file
16879         overwrites a non-gnulib file.
16880
16881 2005-08-31  Bruno Haible  <bruno@clisp.org>
16882
16883         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
16884         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
16885         projects that don't keep autogenerated files in CVS. Put into
16886         actioncmd only the specified modules, not the transitive closure.
16887
16888 2005-08-31  Bruno Haible  <bruno@clisp.org>
16889
16890         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
16891         Create directories that shall be filled.
16892         (import): Don't look for gl_* macros in configure.ac. Recurse across
16893         all directories containing a gnulib-cache.m4 files, if meaningful.
16894
16895 2005-08-31  Bruno Haible  <bruno@clisp.org>
16896
16897         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
16898         (import): Set seen_libtool when we see gl_LIBTOOL.
16899
16900 2005-08-31  Bruno Haible  <bruno@clisp.org>
16901
16902         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
16903         declaration macro definitions from generated gnulib.m4.
16904
16905 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
16906
16907         * lib/iconvme.h: Add prototype for iconv_alloc.
16908
16909 2005-08-29  Simon Josefsson  <jas@extundo.com>
16910
16911         * lib/iconvme.c: Fix errno.
16912
16913 2005-08-29  Bruno Haible  <bruno@clisp.org>
16914
16915         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
16916         that it works when the directory contains spaces.
16917
16918 2005-08-29  Bruno Haible  <bruno@clisp.org>
16919
16920         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
16921
16922 2005-08-29  Bruno Haible  <bruno@clisp.org>
16923
16924         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
16925         Emit more advice.
16926
16927 2005-08-29  Bruno Haible  <bruno@clisp.org>
16928         and Stepan Kasal  <kasal@ucw.cz>
16929
16930         * check-module: If more parameters are given, check each of them
16931         separately; add more exceptions, as noted by Jim Meyering.
16932         (check_module): New procedure.
16933         (%exempt_header): Now contains all exceptions.
16934
16935 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
16936
16937         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
16938
16939 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16940
16941         * lib/iconvme.c: Split iconv_string into iconv_alloc.
16942
16943 2005-08-28  Bruno Haible  <bruno@clisp.org>
16944
16945         * m4/gnulib-tool.m4: New file.
16946
16947 2005-08-27  Jim Meyering  <jim@meyering.net>
16948
16949         * modules/unistd-safer (Files): Add pipe-safer.c.
16950         * modules/fcntl-safer (Files): Add creat-safer.c.
16951
16952 2005-08-27  Jim Meyering  <jim@meyering.net>
16953
16954         * m4/stdlib-safer.m4: New file.  From coreutils.
16955         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
16956         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
16957         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
16958         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
16959         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
16960
16961 2005-08-27  Jim Meyering  <jim@meyering.net>
16962
16963         * lib/fopen-safer.c: Merge minor changes from coreutils.
16964         * lib/dup-safer.c: Likewise.
16965         * lib/fd-safer.c: Likewise.
16966
16967         Merge from coreutils.
16968         * lib/stdio--.h: New file.
16969         * lib/stdlib--.h: New file.
16970         * lib/mkstemp-safer.c: New file.
16971
16972         GNU tar needs these.
16973         * lib/pipe-safer.c: New file.
16974         * lib/creat-safer.c: New file.
16975         * lib/fcntl--.h (creat): Define to creat_safer.
16976         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
16977         * lib/unistd--.h (pipe): Define to pipe_safer.
16978         * lib/unistd-safer.h: Declare pipe_safer.
16979
16980 2005-08-26  Simon Josefsson  <jas@extundo.com>
16981
16982         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
16983         Haible <bruno@clisp.org>.
16984
16985 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
16986
16987         * lib/regex_internal.h: Remove all references to
16988         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
16989         or better.
16990         (bitset_not, bitset_merge, bitset_not_merge):
16991         (bitset_mask, re_string_allocate, re_string_construct):
16992         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
16993         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
16994         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
16995         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
16996         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16997         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16998         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
16999         (re_acquire_state_context):
17000         Remove unnecessary forward decls.
17001         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
17002         Put __attribute at function definition,
17003         now that the function decl has been removed.
17004         * lib/regex_internal.c (re_string_peek_byte_case):
17005         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
17006         Likewise.
17007
17008 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
17009
17010         * m4/regex.m4: Add AC_PREREQ(2.50).
17011         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
17012
17013 2005-08-25  Simon Josefsson  <jas@extundo.com>
17014
17015         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
17016         __fsetlocking.
17017
17018 2005-08-25  Simon Josefsson  <jas@extundo.com>
17019
17020         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
17021         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
17022         GLIBC specific code.
17023
17024 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
17025
17026         Make regex safe for g++.  This fixes one real bug (an "err"
17027         that should have been "*err").  g++ problem reported by
17028         Sam Steingold.
17029         * lib/regex_internal.h (re_calloc): New macro, consistent with
17030         re_malloc etc.  All callers of calloc changed to use re_calloc.
17031         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
17032         not int.  All callers changed.
17033         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
17034         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
17035         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
17036         (find_recover_state): Change "err" to "*err"; this fixes what
17037         appears to be a real bug.
17038         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
17039         versus int.
17040
17041 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
17042
17043         * modules/regex (Depends-on): Add malloc, since the code
17044         assumes that !malloc(0) means failure.
17045
17046 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
17047
17048         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
17049
17050         alloca modernization/simplification for regex.
17051         * lib/regex.c: Remove portability cruft for alloca.  This no longer
17052         needs to be at the start of the file, and can be moved into
17053         regex_internal.h and simplified.
17054         * lib/regex_internal.h: Include <alloca.h>.
17055         (__libc_use_alloca) [!defined _LIBC]: New macro.
17056         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
17057         now works outside glibc.
17058
17059 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
17060
17061         * config/srclist.txt: Add glibc bugs 1241, 1245.
17062
17063 2005-08-25  Jim Meyering  <jim@meyering.net>
17064
17065         * lib/open-safer.c: Include <config.h>.
17066         Otherwise, we'd lose LARGEFILE support in any file using
17067         e.g. "fcntl--.h"
17068
17069 2005-08-25  Bruno Haible  <bruno@clisp.org>
17070
17071         * m4/minmax.m4: Require autoconf 2.52.
17072         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
17073         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
17074         alternatives of translit over the alphabet.
17075         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
17076
17077 2005-08-24  Simon Josefsson  <jas@extundo.com>
17078
17079         * tests/test-getpass.c: New file.
17080
17081 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
17082
17083         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
17084         for GNU regex features.
17085
17086 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
17087
17088         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
17089         * lib/regex.h (regerror): Likewise.
17090
17091         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
17092         requires this.  (The code never needed it.)
17093
17094         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
17095         All uses of recently-renamed identifiers changed to use the new,
17096         POSIX-compliant names.  The code will build and run just fine
17097         without these changes, but it's better to eat our own dog food
17098         and use the standard-conforming names.
17099
17100         * lib/regex.h: Fix a multitude of POSIX name space violations.
17101         These changes have an effect only for programs that define
17102         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
17103         do not change anything for programs compiled in the normal way.
17104         Also, there is no effect on the ABI.
17105
17106         (_REGEX_SOURCE): New macro.
17107         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
17108         defined and _GNU_SOURCE is not; this fixes a name space violation.
17109
17110         Rename the following macros to obey POSIX requirements.
17111         The old names are still visible as macros if _REGEX_SOURCE is defined.
17112         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
17113         RE_BACKSLASH_ESCAPE_IN_LISTS.
17114         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
17115         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
17116         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
17117         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
17118         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
17119         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
17120         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
17121         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
17122         (REG_INTERVALS): renamed from RE_INTERVALS.
17123         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
17124         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
17125         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
17126         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
17127         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
17128         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
17129         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
17130         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
17131         RE_UNMATCHED_RIGHT_PAREN_ORD.
17132         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
17133         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
17134         (REG_DEBUG): renamed from RE_DEBUG.
17135         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
17136         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
17137         unusual, since we can't clash with the POSIX REG_ICASE.
17138         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
17139         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
17140         (REG_NO_SUB): renamed from RE_NO_SUB.
17141         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
17142         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
17143         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
17144         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
17145         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
17146         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
17147         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
17148         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
17149         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
17150         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
17151         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
17152         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
17153         RE_SYNTAX_POSIX_MINIMAL_BASIC.
17154         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
17155         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
17156         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
17157         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
17158         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
17159         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
17160         (REG_FIXED): Renamed from REGS_FIXED.
17161         (REG_NREGS): Renamed from RE_NREGS.
17162
17163         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
17164         of other REG_* macros, since POSIX says the user is allowed to
17165         #undef these macros selectively.
17166
17167         (reg_errcode_t): Update comment stating what other tables need
17168         to be consistent.
17169
17170         Rename the following enum values to obey POSIX requirements.
17171         The old names are still visible as macros.
17172         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
17173         is not defined, since GNU is supposed to be a superset of POSIX as
17174         much as possible, and since we want reg_errcode_t to be a signed
17175         type for implementation consistency.
17176         (_REG_NOERROR): Renamed from REG_NOERROR.
17177         (_REG_NOMATCH): Renamed from REG_NOMATCH.
17178         (_REG_BADPAT): Renamed from REG_BADPAT.
17179         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
17180         (_REG_ECTYPE): Renamed from REG_ECTYPE.
17181         (_REG_EESCAPE): Renamed from REG_EESCAPE.
17182         (_REG_ESUBREG): Renamed from REG_ESUBREG.
17183         (_REG_EBRACK): Renamed from REG_EBRACK.
17184         (_REG_EPAREN): Renamed from REG_EPAREN.
17185         (_REG_EBRACE): Renamed from REG_EBRACE.
17186         (_REG_BADBR): Renamed from REG_BADBR.
17187         (_REG_ERANGE): Renamed from REG_ERANGE.
17188         (_REG_ESPACE): Renamed from REG_ESPACE.
17189         (_REG_BADRPT): Renamed from REG_BADRPT.
17190         (_REG_EEND): Renamed from REG_EEND.
17191         (_REG_ESIZE): Renamed from REG_ESIZE.
17192         (_REG_ERPAREN): Renamed from REG_ERPAREN.
17193         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
17194         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
17195         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
17196         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
17197
17198         (_REG_RE_NAME, _REG_RM_NAME): New macros.
17199         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
17200         changed.  But support the old name if the new one is not defined
17201         and if _REGEX_SOURCE.
17202
17203         Change the following member names in struct re_pattern_buffer.
17204         The old names are still supported if !_REGEX_SOURCE.
17205         The new names are always supported, regardless of _REGEX_SOURCE.
17206         (re_buffer): Renamed from buffer.
17207         (re_allocated): Renamed from allocated.
17208         (re_used): Renamed from used.
17209         (re_syntax): Renamed from syntax.
17210         (re_fastmap): Renamed from fastmap.
17211         (re_translate): Renamed from translate.
17212         (re_can_be_null): Renamed from can_be_null.
17213         (re_regs_allocated): Renamed from regs_allocated.
17214         (re_fastmap_accurate): Renamed from fastmap_accurate.
17215         (re_no_sub): Renamed from no_sub.
17216         (re_not_bol): Renamed from not_bol.
17217         (re_not_eol): Renamed from not_eol.
17218         (re_newline_anchor): Renamed from newline_anchor.
17219
17220         Change the following member names in struct re_registers.
17221         The old names are still supported if !_REGEX_SOURCE.
17222         The new names are always supported, regardless of _REGEX_SOURCE.
17223         (rm_num_regs): Renamed from num_regs.
17224         (rm_start): Renamed from start.
17225         (rm_end): Renamed from end.
17226
17227         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
17228         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
17229         Prepend __ to parameter names.
17230
17231         Undo yesterday's changes.
17232
17233 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
17234
17235         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
17236         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
17237         lib/regex.c.
17238
17239 2005-08-24  Jim Meyering  <jim@meyering.net>
17240
17241         Sync from coreutils.
17242         * m4/fcntl-safer.m4: New file.
17243
17244         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
17245         and object files for this module.
17246
17247 2005-08-24  Jim Meyering  <jim@meyering.net>
17248
17249         Sync from coreutils.
17250         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
17251
17252 2005-08-24  Jim Meyering  <jim@meyering.net>
17253
17254         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
17255         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
17256
17257 2005-08-24  Jim Meyering  <jim@meyering.net>
17258
17259         * modules/fcntl-safer: New module.
17260         * modules/fts (Depends-on): Add fcntl-safer.
17261         * MODULES.html.sh (File descriptor based Input/Output):
17262         Add fcntl-safer.
17263
17264 2005-08-24  Bruno Haible  <bruno@clisp.org>
17265
17266         Support for unit test modules.
17267         * modules/README: Mention tests modules.
17268         * modules/TEMPLATE-TESTS: New file.
17269         * gnulib-tool: New options --extract-tests-module, --with-tests and
17270         --tests-base (unused for the moment).
17271         (testsbase, inctests): New variables.
17272         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
17273         (func_verify_module): Exclude TEMPLATE-TESTS.
17274         (func_verify_nontests_module, func_verify_tests_module): New functions.
17275         (func_get_dependencies): Add implicit dependency for tests modules.
17276         (func_get_tests_module): New function.
17277         (func_modules_transitive_closure): When --with-tests was specified,
17278         include the unit tests as well, unless explicitly avoided.
17279         (func_emit_lib_Makefile_am): Ignore the tests modules here.
17280         (func_emit_tests_Makefile_am): New function.
17281         (func_create_testdir): When --with-tests was specified, emit a
17282         tests/ directory.
17283         * MODULES.html.sh (Future developments): Update.
17284
17285 2005-08-24  Bruno Haible  <bruno@clisp.org>
17286
17287         * modules/tls-tests: New file.
17288         * tests/test-tls.c: New file, from GNU gettext.
17289
17290 2005-08-24  Bruno Haible  <bruno@clisp.org>
17291
17292         * modules/lock-tests: New file.
17293         * tests/test-lock.c: New file, from GNU gettext.
17294
17295 2005-08-24  Bruno Haible  <bruno@clisp.org>
17296
17297         * lib/lock.h: Add multiple inclusion guard.
17298         * lib/tls.h: Add multiple inclusion guard.
17299
17300 2005-08-24  Bruno Haible  <bruno@clisp.org>
17301
17302         * gnulib-tool: Add support for the --aux-dir option to
17303         --create-testdir, --create-megatestdir, --test, --megatest.
17304         (func_create_testdir, func_create_megatestdir): Optionally emit a
17305         AC_CONFIG_AUX_DIR directive.
17306         (create-testdir, create-megatestdir, test, megatest): Provide a
17307         default value for $auxdir.
17308
17309 2005-08-24  Bruno Haible  <bruno@clisp.org>
17310
17311         * gnulib-tool (import): Use compound statement instead of subshell
17312         where possible.
17313
17314 2005-08-24  Bruno Haible  <bruno@clisp.org>
17315
17316         * gnulib-tool (import): Change --aux-dir default to "build-aux".
17317
17318 2005-08-24  Bruno Haible  <bruno@clisp.org>
17319
17320         * gnulib-tool (func_version): Update.
17321
17322 2005-08-24  Bruno Haible  <bruno@clisp.org>
17323
17324         * gnulib-tool (func_import, func_create_testdir,
17325         func_create_megatestdir): Quote all autoconf macro arguments.
17326
17327 2005-08-24  Bruno Haible  <bruno@clisp.org>
17328
17329         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
17330         option --force, because --force causes the aclocal.m4 of each
17331         subdirectory to be newer than the corresponding config.h.in.
17332
17333 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17334
17335         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
17336         All contents moved to gl_REGEX.
17337         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
17338         assume that it does.
17339
17340 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17341
17342         * lib/regex.h (REG_NOSYS)
17343         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
17344         Define, since POSIX requires it as of 2001.
17345         (_REG_ENOSYS)
17346         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
17347         New private symbol, used to keep the enum signed in all cases.
17348         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
17349         Youngman in
17350         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
17351
17352         * lib/regex_internal.c (re_string_skip_chars, register_state):
17353         (calc_state_hash):
17354         Remove forward decls; no longer needed now that we use prototypes.
17355         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
17356         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
17357         (clean_state_log_if_needed): Likewise.
17358
17359 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
17360
17361         * config/srclist.txt: Add glibc bugs 1231-1233.
17362
17363 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17364
17365         Fix problems reported by Sam Steingold in
17366         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
17367         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
17368         assumed that reg_errcode_t is a signed type, which is not
17369         necessarily true if _XOPEN_SOURCE is not defined.
17370         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
17371         since some compilers warn about it otherwise.
17372
17373 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17374
17375         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
17376         (init_word_char, create_initial_state, duplicate_node_closure):
17377         (fetch_token, peek_token_bracket, build_range_exp):
17378         (build_collating_symbol): Remove forward decls; no longer needed
17379         now that we use prototypes.
17380
17381         * lib/regcomp.c:
17382         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
17383         (re_compile_fastmap_iter, regcomp, regerror, regfree):
17384         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
17385         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
17386         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
17387         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
17388         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
17389         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
17390         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
17391         (build_range_exp, build_collating_symbol, parse_bracket_exp):
17392         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
17393         (build_charclass, build_charclass_op, fetch_number, create_tree):
17394         (create_token_tree, mark_opt_subexp, duplicate_tree):
17395         Use prototypes rather than old-style definitions.
17396
17397         * lib/regex_internal.c:
17398         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
17399         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
17400         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
17401         (re_string_reconstruct, re_string_peek_byte_case):
17402         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
17403         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
17404         (re_node_set_init_copy, re_node_set_add_intersect):
17405         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
17406         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
17407         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
17408         (re_acquire_state, re_acquire_state_context, register_state):
17409         (create_ci_newstate, create_cd_newstate, free_state):
17410         Likewise.
17411         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
17412         re_search_2):
17413         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
17414         (re_search_internal, prune_impossible_nodes):
17415         (acquire_init_state_context, check_matching, static):
17416         (check_halt_node_context, check_halt_state_context, proceed_next_node):
17417         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
17418         (update_regs, sift_states_backward, build_sifted_states):
17419         (clean_state_log_if_needed, merge_state_array):
17420         (update_cur_sifted_state, add_epsilon_src_nodes):
17421         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
17422         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
17423         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
17424         (find_recover_state, check_subexp_matching_top, transit_state_mb):
17425         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
17426         (check_arrival, check_arrival_add_next_nodes):
17427         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
17428         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
17429         (check_node_accept_bytes, check_node_accept, extend_buffers):
17430         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
17431         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
17432         (sift_ctx_init):
17433         Likewise.
17434
17435         * lib/regex_internal.h:
17436         (re_string_allocate, re_string_construct, re_string_reconstruct):
17437         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
17438         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
17439         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
17440         (re_string_context_at, re_string_peek_byte_case):
17441         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
17442         is defined, since we now use prototypes always.
17443
17444         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
17445         C89 or better.  All uses removed.
17446
17447 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17448
17449         * config/srclist.txt: Add glibc bugs 1220-1227.
17450
17451 2005-08-20  Jim Meyering  <jim@meyering.net>
17452
17453         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
17454         of unused local, dfa.
17455
17456 2005-08-20  Bruno Haible  <bruno@clisp.org>
17457
17458         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
17459
17460 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17461
17462         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
17463         (re_node_set_insert_last, re_dfa_add_node):
17464         Rename local variables to avoid GCC shadowing warnings.
17465
17466 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17467
17468         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
17469         [defined lint]: Suppress bogus uninitialized-variable warnings.
17470
17471         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
17472         and let the caller return REG_ESPACE if out of space.  This
17473         removes an uninitialied-variable warning with GCC 4.0.1, and also
17474         avoids taking the address of a local variable.  All callers
17475         changed.
17476
17477 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17478
17479         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
17480         $LIBCSRC/posix/regexec.c.
17481         Add glibc bug 1217 for regcomp.c.
17482
17483 2005-08-19  Jim Meyering  <jim@meyering.net>
17484
17485         * lib/regexec.c (proceed_next_node): Redo local variables to
17486         avoid GCC shadowing warnings.
17487
17488 2005-08-18  Bruno Haible  <bruno@clisp.org>
17489
17490         * lib/strstr.c (strstr): Fix return value in multibyte case.
17491         * lib/strcasestr.c (strcasestr): Likewise.
17492
17493 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
17494
17495         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
17496
17497 2005-08-17  Jim Meyering  <jim@meyering.net>
17498
17499         Make the %s format (seconds since the epoch) work for a negative
17500         number and when used with a zero-padded field width, e.g. %015s.
17501
17502         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
17503         label so that it precedes the code to set `digits'.  Otherwise,
17504         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
17505         print `00-22'.  Now, it prints `-0022', as it should.
17506
17507 2005-08-17  Bruno Haible  <bruno@clisp.org>
17508
17509         * modules/strstr (Files): Add m4/mbrtowc.m4.
17510         (Depends-on): Add mbuiter.
17511
17512 2005-08-17  Bruno Haible  <bruno@clisp.org>
17513
17514         * modules/strcasestr: New file.
17515         * MODULES.html.sh (String handling, based on ANSI C 89): Add
17516         strcasestr.
17517
17518 2005-08-17  Bruno Haible  <bruno@clisp.org>
17519
17520         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
17521
17522 2005-08-17  Bruno Haible  <bruno@clisp.org>
17523
17524         * modules/mbuiter: New file.
17525         * MODULES.html.sh (Extended multibyte and wide character utilities):
17526         Add mbuiter.
17527
17528 2005-08-17  Bruno Haible  <bruno@clisp.org>
17529
17530         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
17531         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
17532
17533 2005-08-17  Bruno Haible  <bruno@clisp.org>
17534
17535         * m4/strcasestr.m4: New file.
17536
17537 2005-08-17  Bruno Haible  <bruno@clisp.org>
17538
17539         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
17540         * lib/strstr.c: Completely rewritten, with multibyte locale support.
17541
17542 2005-08-17  Bruno Haible  <bruno@clisp.org>
17543
17544         * lib/strcasestr.h: New file.
17545         * lib/strcasestr.c: New file.
17546
17547 2005-08-17  Bruno Haible  <bruno@clisp.org>
17548
17549         * lib/strcasecmp.c: Use mbuiter.h.
17550
17551 2005-08-17  Bruno Haible  <bruno@clisp.org>
17552
17553         * lib/mbuiter.h: New file.
17554
17555 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
17556
17557         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
17558         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
17559         and gl_GETOPT are both invoked via different paths (as happens
17560         with GNU tar CVS because it uses both argp and getopt), the former
17561         wins.
17562
17563 2005-08-16  Bruno Haible  <bruno@clisp.org>
17564
17565         * modules/tls: New file.
17566         * MODULES.html.sh (Multithreading): Add tls.
17567
17568 2005-08-16  Bruno Haible  <bruno@clisp.org>
17569
17570         * modules/strnlen1: New file.
17571         * MODULES.html.sh (String handling): Add strnlen1.
17572
17573 2005-08-16  Bruno Haible  <bruno@clisp.org>
17574
17575         * modules/strcase (Files): Add m4/mbrtowc.m4.
17576         (Depends-on): Add strnlen1, mbchar.
17577
17578 2005-08-16  Bruno Haible  <bruno@clisp.org>
17579
17580         * modules/mbiter: New file.
17581         * MODULES.html.sh (Extended multibyte and wide character utilities):
17582         Add mbiter.
17583
17584 2005-08-16  Bruno Haible  <bruno@clisp.org>
17585
17586         * modules/mbfile: New file.
17587         * MODULES.html.sh (Extended multibyte and wide character utilities):
17588         Add mbfile.
17589
17590 2005-08-16  Bruno Haible  <bruno@clisp.org>
17591
17592         * modules/mbchar: New file.
17593         * MODULES.html.sh (Extended multibyte and wide character utilities):
17594         New section.
17595
17596 2005-08-16  Bruno Haible  <bruno@clisp.org>
17597
17598         * m4/tls.m4: New file, from GNU gettext.
17599
17600 2005-08-16  Bruno Haible  <bruno@clisp.org>
17601
17602         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
17603         always.
17604         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
17605
17606 2005-08-16  Bruno Haible  <bruno@clisp.org>
17607
17608         * m4/mbiter.m4: New file.
17609
17610 2005-08-16  Bruno Haible  <bruno@clisp.org>
17611
17612         * m4/mbfile.m4: New file.
17613
17614 2005-08-16  Bruno Haible  <bruno@clisp.org>
17615
17616         * m4/mbchar.m4: New file.
17617
17618 2005-08-16  Bruno Haible  <bruno@clisp.org>
17619
17620         * lib/tls.h: New file, from GNU gettext.
17621         * lib/tls.c: New file, from GNU gettext.
17622
17623 2005-08-16  Bruno Haible  <bruno@clisp.org>
17624
17625         * lib/strnlen1.h: New file.
17626         * lib/strnlen1.c: New file.
17627
17628 2005-08-16  Bruno Haible  <bruno@clisp.org>
17629
17630         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
17631         (mbi_init): Update.
17632         (mbi_avail, mbi_advance): Let the iteration end before the terminating
17633         NUL byte, not after it.
17634
17635 2005-08-16  Bruno Haible  <bruno@clisp.org>
17636
17637         * lib/strcase.h (strcasecmp): Add note in comments.
17638         * lib/strncasecmp.c: Use code from strcasecmp.c.
17639         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
17640         (strcasecmp): Work correctly in multibyte locales.
17641
17642 2005-08-16  Bruno Haible  <bruno@clisp.org>
17643
17644         * lib/mbiter.h: New file.
17645
17646 2005-08-16  Bruno Haible  <bruno@clisp.org>
17647
17648         * lib/mbfile.h: New file.
17649
17650 2005-08-16  Bruno Haible  <bruno@clisp.org>
17651
17652         * lib/mbchar.h: New file.
17653         * lib/mbchar.c: New file.
17654
17655 2005-08-16  Bruno Haible  <bruno@clisp.org>
17656
17657         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
17658         the valid ones. Makes the comparison operations transitive:
17659         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
17660         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
17661
17662 2005-08-15  Simon Josefsson  <jas@extundo.com>
17663
17664         * modules/ssize_t (License): Change to 'unlimited'.
17665
17666         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
17667
17668 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17669
17670         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
17671         Add comments for each pending glibc patch.
17672
17673 2005-08-15  Bruno Haible  <bruno@clisp.org>
17674
17675         * lib/regex.h (__restrict_arr): Don't define to __restrict if
17676         __cplusplus is defined.
17677
17678 2005-08-14  Jim Meyering  <jim@meyering.net>
17679
17680         Sync from coreutils.
17681
17682         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
17683         Use the hash-table-based cycle-detection code not just when
17684         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
17685         Reported by James Youngman in
17686         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
17687         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
17688         FTS_TIGHT_CYCLE_CHECK.
17689         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
17690         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
17691         once again.
17692         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
17693         * lib/fts.c (fd_safer): Remove decl.
17694         Include fcntl--.h rather than unistd-safer.h
17695         (fts_safe_changedir): Don't call fd_safer; no longer needed
17696         now that we include fcntl--.h.
17697
17698 2005-08-12  Simon Josefsson  <jas@extundo.com>
17699
17700         * modules/getndelim2: Use ssize_t module.
17701         * modules/getnline: Likewise.
17702         * modules/safe-read: Likewise.
17703         * modules/xreadlink: Likewise.
17704
17705         * modules/ssize_t: New file.
17706
17707 2005-08-12  Simon Josefsson  <jas@extundo.com>
17708
17709         * m4/readline.m4: Look for termcap, curses or ncurses if required.
17710
17711 2005-08-12  Simon Josefsson  <jas@extundo.com>
17712
17713         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17714         ssize_t.
17715
17716 2005-08-12  Simon Josefsson  <jas@extundo.com>
17717
17718         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
17719         readline, getdelim and check_version.
17720         (Support for systems lacking ISO C 99: Sizes of integer types):
17721         Add size_max.
17722
17723 2005-08-12  Bruno Haible  <bruno@clisp.org>
17724
17725         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
17726
17727 2005-08-11  Simon Josefsson  <jas@extundo.com>
17728
17729         * modules/readline: New file.
17730
17731         * modules/strnlen (Files): Add strnlen.h.
17732
17733 2005-08-11  Simon Josefsson  <jas@extundo.com>
17734
17735         * m4/readline.m4: New file.
17736
17737 2005-08-11  Simon Josefsson  <jas@extundo.com>
17738
17739         * lib/readline.h, readline.c: New file.
17740
17741 2005-08-11  Simon Josefsson  <jas@extundo.com>
17742
17743         * doc/gnulib.texi (Initial import, Finishing touches): Mention
17744         gl_AVOID.
17745
17746 2005-08-11  Bruno Haible  <bruno@clisp.org>
17747
17748         * lib/strnlen.h (strnlen): Change parameter name to match comment.
17749
17750 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
17751
17752         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
17753
17754 2005-08-10  Simon Josefsson  <jas@extundo.com>
17755
17756         * tests/test-iconvme.c: New file.
17757
17758 2005-08-10  Simon Josefsson  <jas@extundo.com>
17759
17760         * m4/strnlen.m4: New file.
17761
17762         * m4/strndup.m4: Don't check for strnlen declaration, done in
17763         strnlen.m4.
17764
17765 2005-08-10  Simon Josefsson  <jas@extundo.com>
17766
17767         * lib/strndup.c: Use strnlen.h.
17768
17769         * lib/strnlen.h: New file.
17770
17771 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17772
17773         * README: Typos.
17774
17775 2005-08-02  Simon Josefsson  <jas@extundo.com>
17776
17777         * modules/readline: New file.
17778
17779 2005-08-02  Simon Josefsson  <jas@extundo.com>
17780
17781         * modules/getdelim: New file.
17782
17783         * modules/getline: Rewrite, don't use getndelim2.
17784
17785 2005-08-02  Simon Josefsson  <jas@extundo.com>
17786
17787         * m4/getline.m4: Separate out getdelim stuff into separate module.
17788
17789         * m4/getdelim.m4: New file.
17790
17791 2005-08-02  Simon Josefsson  <jas@extundo.com>
17792
17793         * lib/getline.h, getline.c: Rewrite.
17794
17795         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
17796
17797 2005-07-31  Bruno Haible  <bruno@clisp.org>
17798
17799         * lib/lock.h (gl_lock_initializer): New macro.
17800         (gl_lock_define_initialized): Use it.
17801         (gl_rwlock_initializer): New macro.
17802         (gl_rwlock_define_initialized): Use it.
17803         (gl_recursive_lock_initializer): New macro.
17804         (gl_recursive_lock_define_initialized): Use it.
17805
17806 2005-07-30  Karl Berry  <karl@gnu.org>
17807
17808         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
17809         Report from Ben Pfaff, regarding getopt.
17810
17811 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
17812
17813         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
17814         normal way.
17815         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
17816         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
17817         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
17818         (gl_GETOPT): Use the new macros.  Most of the implementation
17819         is moved to the new macros.  This is for programs like Emacs
17820         that don't want all the functionality of gl_GETOPT.
17821
17822 2005-07-26  Bruno Haible  <bruno@clisp.org>
17823
17824         * m4/lock.m4: Update from GNU gettext.
17825
17826 2005-07-26  Bruno Haible  <bruno@clisp.org>
17827
17828         * lib/lock.h: Update from GNU gettext.
17829         * lib/lock.c: Update from GNU gettext.
17830
17831 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
17832
17833         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
17834         obsolescent AC_TRY_RUN.  Include the default includes files, for
17835         'exit'.
17836
17837 2005-07-24  Bruno Haible  <bruno@clisp.org>
17838
17839         * modules/visibility: New file.
17840         * MODULES.html.sh (Misc): Add visibility.
17841
17842 2005-07-24  Bruno Haible  <bruno@clisp.org>
17843
17844         * m4/visibility.m4: New file.
17845
17846 2005-07-24  Bruno Haible  <bruno@clisp.org>
17847
17848         * doc/visibility.texi: New file.
17849
17850 2005-07-22  Bruno Haible  <bruno@clisp.org>
17851
17852         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
17853         $(ALLOCA_H), redundant through BUILT_SOURCES.
17854         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
17855         redundant through BUILT_SOURCES.
17856         * modules/byteswap (Makefile.am): Remove explicit dependency on
17857         $(BYTESWAP_H), redundant through BUILT_SOURCES.
17858         * modules/fnmatch (Makefile.am): Remove explicit dependency on
17859         $(FNMATCH_H), redundant through BUILT_SOURCES.
17860         * modules/getopt (Makefile.am): Remove explicit dependency on
17861         $(GETOPT_H), redundant through BUILT_SOURCES.
17862         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
17863         redundant through BUILT_SOURCES.
17864         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
17865         redundant through BUILT_SOURCES.
17866         * modules/stdbool (Makefile.am): Remove explicit dependency on
17867         $(STDBOOL_H), redundant through BUILT_SOURCES.
17868         * modules/stdint (Makefile.am): Remove explicit dependency on
17869         $(STDINT_H), redundant through BUILT_SOURCES.
17870         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
17871         Remove explicit dependency on $(SYSEXITS_H).
17872         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
17873
17874 2005-07-18  Simon Josefsson  <jas@extundo.com>
17875
17876         * lib/check-version.c (check_version): Accept identical versions too.
17877
17878 2005-07-18  Bruno Haible  <bruno@clisp.org>
17879
17880         * modules/lock: New file.
17881         * MODULES.html.sh (Multithreading): New section.
17882
17883 2005-07-18  Bruno Haible  <bruno@clisp.org>
17884
17885         * m4/lock.m4: New file, from GNU gettext.
17886
17887 2005-07-18  Bruno Haible  <bruno@clisp.org>
17888
17889         * lib/lock.h: New file, from GNU gettext.
17890         * lib/lock.c: New file, from GNU gettext.
17891
17892 2005-07-18  Bruno Haible  <bruno@clisp.org>
17893
17894         * lib/lock.h (gl_once_t): New type.
17895         (gl_once_define, gl_once): New macros.
17896         * lib/lock.c (fresh_once): New variable.
17897         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
17898         functions.
17899
17900 2005-07-16  Simon Josefsson  <jas@extundo.com>
17901
17902         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
17903         workaround, suggested by Bruno.
17904
17905 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17906
17907         * modules/xalloc (Depends-on): Add xalloc-die.
17908         * modules/xvasprintf (Depends-on): Add xalloc-die.
17909
17910 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17911
17912         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
17913         with a minor change.
17914
17915 2005-07-15  Bruno Haible  <bruno@clisp.org>
17916
17917         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
17918         When using lib/poll.c, define poll as rpl_poll.
17919
17920 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
17921
17922         * modules/argp (Depends-on): Remove unlocked-io.
17923
17924 2005-07-14  Derek Price  <derek@ximbiot.com>
17925
17926         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
17927         for glob symlink bug.
17928
17929 2005-07-14  Bruno Haible  <bruno@clisp.org>
17930
17931         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
17932         Instead, test for *_unlocked function declarations directly.
17933
17934 2005-07-11  Simon Josefsson  <jas@extundo.com>
17935
17936         * modules/size_max: New file.
17937
17938         * modules/xsize: Depend on size_max module for size_max.m4.
17939
17940 2005-07-11  Simon Josefsson  <jas@extundo.com>
17941
17942         * lib/size_max.h: New file.
17943
17944 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
17945
17946         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
17947         copyright symbol and the year.
17948         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
17949         (version_etc_va): Use parameterized copyright notice.
17950         Reword to conform to the current GNU coding standards.
17951
17952 2005-07-11  Karl Berry  <karl@gnu.org>
17953
17954         * doc/gnulib.texi (Quoting): new node.
17955         (Initial import): more info, from Patrice.
17956
17957 2005-07-11  Bruno Haible  <bruno@clisp.org>
17958
17959         * gnulib-tool (func_usage): Document option --avoid.
17960         (Command line options): Handle --avoid.
17961         (func_acceptable): New function.
17962         (func_modules_transitive_closure): Use it.
17963
17964 2005-07-11  Bruno Haible  <bruno@clisp.org>
17965
17966         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
17967         Reported by Jim Meyering.
17968
17969 2005-07-10  Bruno Haible  <bruno@clisp.org>
17970
17971         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
17972         Needed when size_t is smaller than 'unsigned int'.
17973         Reported by Paul Eggert.
17974
17975 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17976
17977         * modules/argp (Depends-on): Add unlocked-io
17978
17979 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17980
17981         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
17982         block of defines.
17983
17984 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
17985
17986         * config/srclist.txt: Comment out regcomp.c, since we have a porting
17987         fix now.
17988
17989 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
17990         and Paul Eggert  <eggert@cs.ucla.edu>
17991
17992         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
17993         in wint_t, not wchar_t.  Remove now-unnecessary cast.
17994
17995 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17996
17997         * modules/regex (Files): Add lib/regex_internal.c,
17998         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
17999         (Depends-on): Add extensions.
18000         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
18001
18002 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
18003
18004         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
18005         pathconf.
18006         * m4/same.m4 (gl_SAME): Likewise.
18007         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
18008
18009         * m4/regex.m4: Adjust to new libc regex implementation.
18010         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
18011         all the .c and .h parts of (the new) regex.
18012         Quote the m4 stuff better.
18013         Check for RE_ICASE bug of old gnulib.
18014         Check for REG_STARTEND of recent libc.
18015         Rename local variables from jm_* to gl_*.
18016         Quote operand of "test -f".
18017         Say "recent enough" version of libc, not "version 2".
18018         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
18019         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
18020         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
18021         Remove check for btowc, isascii.
18022         Require AM_LANGINFO_CODESET.
18023
18024 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
18025
18026         * lib/regex.c, regex.h: Sync from libc.
18027         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
18028         * lib/regexec.c:
18029         New files, synced from libc, except that regex_internal.h
18030         currently has a small porting fix.
18031
18032 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
18033
18034         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
18035         regex_internal.c, regexec.c.
18036         Add regex_internal.h too, but as a comment, since the libc version
18037         is currently broken in gnulib mode.
18038
18039 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
18040
18041         Support programs like Emacs that use gnulib but not gettext.
18042         * MODULES.html.sh (Internationalization functions): Add gettext-h.
18043         * modules/gettext-h: New file.
18044         * modules/gettext (Files): Remove lib/gettext.h.
18045         (Depends-on): Add gettext-h.
18046         (Makefile.am): Remove lib_SOURCES.
18047         * modules/argmatch, modules/c-stack, modules/closeout:
18048         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
18049         * modules/execute, modules/file-type, modules/getaddrinfo:
18050         * modules/getopt, modules/human, modules/javacomp:
18051         * modules/javaexec, modules/mkdir-p, modules/obstack:
18052         * modules/openat, modules/pagealign_alloc, modules/pipe:
18053         * modules/quotearg, modules/regex, modules/rpmatch:
18054         * modules/unicodeio, modules/userspec, modules/version-etc:
18055         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
18056         * modules/xsetenv:
18057         Depend on gettext-h, not gettext.
18058
18059 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
18060
18061         * gnulib-tool (func_import): Add support for 'public domain' license.
18062         * modules/alloca, modules/atexit, modules/memmove:
18063         Now public domain, not GPL.
18064         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
18065         * modules/realloc, modules/strerror, modules/strtod:
18066         Now LGPL, not GPL.
18067
18068 2005-07-05  Bruno Haible  <bruno@clisp.org>
18069
18070         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
18071         autoconf CVS. Needed for mingw.
18072
18073 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18074
18075         Remove the dependency of the strftime module on the tzset module.
18076         * modules/strftime (Depends-on): Remove dependency on tzset.
18077
18078 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18079
18080         Remove the dependency of the strftime module on the tzset module.
18081         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
18082         gl_FUNC_TZSET_CLOBBER.
18083
18084 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18085
18086         Remove the dependency of the strftime module on the tzset module.
18087         * lib/strftime.c (my_strftime)
18088         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
18089         Copy the input structure, to work around some of the bug with
18090         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
18091         Solaris releases, you should also use the tzset module, but we won't
18092         require it as a dependency any more since we don't want LGPLed code
18093         to depend on GPLed code.
18094
18095 2005-07-02  Jim Meyering  <jim@meyering.net>
18096
18097         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
18098         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
18099         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
18100         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
18101
18102 2005-07-02  Jim Meyering  <jim@meyering.net>
18103
18104         * lib/backupfile.c (backup_args): Change a `0' to NULL.
18105
18106 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
18107
18108         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
18109         declares only 'struct timespec;' (!).
18110
18111 2005-07-01  Jim Meyering  <jim@meyering.net>
18112
18113         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
18114         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
18115         * lib/save-cwd.c, tempname.c:
18116         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
18117         and don't include <sys/file.h>).
18118
18119 2005-06-29  Jim Meyering  <jim@meyering.net>
18120
18121         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
18122         type name.  Use the variable name instead.
18123         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
18124         Likewise.
18125
18126 2005-06-28  Simon Josefsson  <jas@extundo.com>
18127
18128         * modules/check-version (Files): Add check-version.m4.
18129
18130 2005-06-28  Simon Josefsson  <jas@extundo.com>
18131
18132         * m4/check-version.m4: New file, suggested by Jim Meyering
18133         <jim@meyering.net>.
18134
18135 2005-06-28  Simon Josefsson  <jas@extundo.com>
18136
18137         * lib/check-version.h, lib/check-version.c: New files.
18138
18139 2005-06-28  Simon Josefsson  <jas@extundo.com>
18140
18141         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
18142         collision with global variable.  Better indentation.  Don't
18143         increment buffer pointer beyond buffer end.  Based on comments
18144         from Paul Eggert <eggert@cs.ucla.edu>.
18145
18146         * lib/base64.h: Indent.
18147
18148 2005-06-28  Simon Josefsson  <jas@extundo.com>
18149
18150         * doc/gnulib.texi (Library version handling): New section.
18151
18152 2005-06-28  Jim Meyering  <jim@meyering.net>
18153
18154         * check-module (find_included_lib_files): Hard-code another
18155         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
18156         but modules/fts-lgpl (correctly) does not list those files.
18157
18158         * modules/canonicalize (Files): Add lib/pathmax.h.
18159
18160 2005-06-25  Simon Josefsson  <jas@extundo.com>
18161
18162         * modules/check-version: New file.
18163
18164 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
18165
18166         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
18167         initializer of struct addrinfo, as an indication that we don't
18168         care how many members the structure has.
18169
18170 2005-06-24  Derek Price  <derek@ximbiot.com>
18171         and Bruno Haible  <bruno@clisp.org>
18172
18173         Remove stat module & update lstat.
18174         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
18175         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
18176         * m4/stat.m4: Remove this file.
18177
18178 2005-06-24  Derek Price  <derek@ximbiot.com>
18179         and Bruno Haible  <bruno@clisp.org>
18180
18181         Remove stat module & update lstat.
18182         * lib/stat.c: Remove this file...
18183         (slash_aware_lstat): ...moving this content and its support...
18184         * lib/lstat.c (rpl_lstat): ...into here.
18185         * lib/lstat.h: New file.
18186
18187 2005-06-24  Derek Price  <derek@ximbiot.com>
18188         and Bruno Haible  <bruno@clisp.org>
18189
18190         Remove stat module & update lstat.
18191         * config/srclist.txt (libc sources): Remove stat.
18192
18193 2005-06-24  Derek Price  <derek@ximbiot.com>
18194         and Bruno Haible  <bruno@clisp.org>
18195
18196         Remove stat module & update lstat.
18197         * MODULES.html.sh (stat): Remove.
18198         * MODULES.html: Regenerated.
18199         * modules/lstat (Description): Correct function name.
18200         (Files): Add "lstat.h".
18201         (Depends-on): Remove stat, add xalloc, stat-macros.
18202         * modules/stat: Remove this file.
18203         (Include): Add "lstat.h", remove <sys/stat.h>.
18204
18205 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
18206
18207         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
18208         (ranged_convert): Don't save conversion in a temporary struct.
18209         This causes a warning with GCC 4.0.0, and anyway in the typical
18210         case it's not worth the extra 100 bytes or so of code.
18211         (ranged_convert, __mktime_internal): When calling a function via a
18212         pointer P, use P () rather than (*P) (), as we now assume C89 or
18213         better.
18214
18215 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
18216
18217         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
18218         "who -r" failed to give output.  Problem reported by Tim Waugh.
18219
18220         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
18221         (xcalloc): Use it to avoid needless tests.
18222         Problem reported by Jim Meyering.
18223
18224 2005-06-20  Derek Price  <derek@ximbiot.com>
18225
18226         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
18227         unnecessary for Autoconfs > 2.59c.
18228
18229 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18230
18231         * lib/argp.h (__option_is_short): Check upper limit of
18232         __key. Isprint() requires its argument to have the value
18233         of an unsigned char or EOF.
18234
18235 2005-06-16  Jim Meyering  <jim@meyering.net>
18236
18237         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
18238         when either N or S is zero.
18239
18240 2005-06-16  Derek Price  <derek@ximbiot.com>
18241
18242         * m4/bison.m4: Declare YACC & YFLAGS precious.
18243
18244 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
18245
18246         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
18247         multibyte string or pattern, fall back on unibyte matching.
18248         Problem reported by James Youngman.
18249
18250 2005-06-08  Bruno Haible  <bruno@clisp.org>
18251
18252         * modules/csharpcomp: New file.
18253         * MODULES.html.sh (C#): Add csharpcomp.
18254
18255 2005-06-08  Bruno Haible  <bruno@clisp.org>
18256
18257         * m4/csharpcomp.m4: New file, from GNU gettext.
18258
18259 2005-06-08  Bruno Haible  <bruno@clisp.org>
18260
18261         * lib/csharpcomp.h: New file, from GNU gettext.
18262         * lib/csharpcomp.c: New file, from GNU gettext.
18263         * lib/csharpcomp.sh.in: New file, from GNU gettext.
18264
18265 2005-06-08  Bruno Haible  <bruno@clisp.org>
18266
18267         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
18268         warning on mingw.
18269
18270 2005-06-07  Derek Price  <derek@ximbiot.com>
18271
18272         Sync from CVS.
18273         * lib/glob_.h: Indent nested #ifdef.
18274
18275 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18276
18277         Sync from coreutils.
18278         Use "file name" when talking about file names, instead of "filename"
18279         or "path", as per the GNU coding standards.
18280         * lib/mkdir-p.c: Renamed from makepath.c.
18281         (make_dir_parents): Renamed from make_path.  All callers changed.
18282         * lib/mkdir-p.h: Likewise.  All includers changed.
18283         * lib/filenamecat.c: Renamed from path-concat.c.
18284         (file_name_concat): Renamed from path_concat.  All callers changed.
18285         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
18286         * lib/filenamecat.h: Likewise.  All includers changed.
18287         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
18288         in comments or local variable names.
18289         * lib/basename.c: Likewise.
18290         * lib/canonicalize.c, canonicalize.h: Likewise.
18291         * lib/dirname.c, dirname.h: Likewise.
18292         * lib/euidaccess.c: Likewise.
18293         * lib/exclude.c: Likewise
18294         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
18295         * lib/fsusage.c, fsuage.h: Likewise.
18296         * lib/fts.c, fts_.h: Likewise.
18297         * lib/getcwd.c: Likewise.
18298         * lib/getloadavg.c: Likewise.
18299         * lib/mkstemp.c: Likewise.
18300         * lib/mountlist.c, mountlist.h: Likewise.
18301         * lib/openat.c, openat.h: Likewise.
18302         * lib/readlink-stub.c: Likewise.
18303         * lib/readutmp.c, readutmp.h: Likewise.
18304         * lib/rename.c: Likewise.
18305         * lib/rmdir.c: Likewise.
18306         * lib/same.c: Likewise.
18307         * lib/savedir.c: Likewise.
18308         * lib/stripslash.c: Likewise.
18309         * lib/tempname.c: Likewise.
18310         * lib/xreadlink.c: Likewise.
18311         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
18312         All uses changed.
18313         * lib/exclude.h: Likewise.
18314
18315         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
18316         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18317         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
18318         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18319         * lib/pathmax.h: Include <limits.h> unconditionally, since other
18320         files have been getting away with it for years (MORE/BSD 4.3
18321         is extinct now).
18322         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
18323         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
18324
18325         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
18326         Define to 256, not 255, as per modern POSIX.
18327
18328 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18329
18330         Sync from coreutils.
18331         Use "file name" when talking about file names, instead of "filename"
18332         or "path", as per the GNU coding standards.
18333         * MODULES.html.sh: mkdir-p renamed from makepath.
18334         filenamecat renamed from path-concat.
18335         * modules/filenamecat: Renamed from modules/path-concat.
18336         (Files): filenamecat.h and filenamecat.c renamed from
18337         path-concat.h and path-concat.c.
18338         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
18339         (Include): filenamecat.h, not path-concat.h.
18340         * modules/mkdir-p: Renamed from modules/makepath.
18341         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
18342         makepath.c.
18343         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
18344         (Include): mkdir-p.h, not makepath.h.
18345
18346 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
18347
18348         Sync from coreutils.
18349         * m4/mkdir-p.m4: Renamed from makepath.m4.
18350         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
18351         Rename files from makepath.c to mkdir-p.c, and from
18352         makepath.h to mkdir-p.h.
18353         * m4/filenamecat.m4: Renamed from path-concat.m4.
18354         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
18355         Rename files from path-concat.c to filenamecat.c,
18356         and from path-concat.h to filenamecat.h.
18357         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
18358         "file name" in local variables or comments.
18359         * m4/rename.m4: Likewise.
18360
18361 2005-06-01  Bruno Haible  <bruno@clisp.org>
18362
18363         * modules/csharpexec: New file.
18364         * MODULES.html.sh (C#): New section.
18365
18366 2005-06-01  Bruno Haible  <bruno@clisp.org>
18367
18368         * m4/csharp.m4: New file, from GNU gettext.
18369         * m4/csharpexec.m4: New file, from GNU gettext.
18370
18371 2005-06-01  Bruno Haible  <bruno@clisp.org>
18372
18373         * lib/csharpexec.h: New file, from GNU gettext.
18374         * lib/csharpexec.c: New file, from GNU gettext.
18375         * lib/csharpexec.sh.in: New file, from GNU gettext.
18376
18377 2005-05-31  Derek Price  <derek@ximbiot.com>
18378             Paul Eggert  <eggert@cs.ucla.edu>
18379
18380         Sync from cvs.
18381         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
18382
18383 2005-05-31  Derek Price  <derek@ximbiot.com>
18384             Paul Eggert  <eggert@cs.ucla.edu>
18385
18386         Sync from cvs.
18387         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
18388
18389 2005-05-29  Derek Price  <derek@ximbiot.com>
18390
18391         * config/srclist.txt (glob_.h, glob.c): Add these files.
18392
18393 2005-05-29  Derek Price  <derek@ximbiot.com>
18394
18395         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
18396         * modules/glob: New file.
18397         * modules/getlogin_r: Add link to POSIX spec in description.
18398
18399 2005-05-29  Derek Price  <derek@ximbiot.com>
18400             Paul Eggert  <eggert@cs.ucla.edu>
18401
18402         * m4/glob.m4: New file.
18403
18404 2005-05-29  Derek Price  <derek@ximbiot.com>
18405             Paul Eggert  <eggert@cs.ucla.edu>
18406
18407         * lib/glob_.h, lib/glob.c: New files.
18408
18409 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18410
18411         * modules/fts (Files): Remove m4/inttypes-pri.m4.
18412         * modules/fts-lgpl (Depends-on): Remove gettext.
18413
18414 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18415
18416         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
18417         and don't require gt_INTTYPES_PRI.
18418
18419 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
18420
18421         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
18422
18423         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
18424         the configuration hassle isn't worth it.
18425         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
18426         (LONGEST_MODIFIER, PRIuMAX): Remove.
18427
18428 2005-05-27  Bruno Haible  <bruno@clisp.org>
18429
18430         * lib/getlogin_r.h: Remove second include of <stddef.h>.
18431
18432 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
18433
18434         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
18435         _POSIX_PTHREAD_SEMANTICS for Solaris.
18436
18437 2005-05-25  Derek Price  <derek@ximbiot.com>
18438
18439         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
18440
18441 2005-05-25  Derek Price  <derek@ximbiot.com>
18442             Paul Eggert  <eggert@cs.ucla.edu>
18443
18444         * modules/getlogin_r, m4/getlogin_r.m4: New files.
18445         * lib/getlogin_r.c, getlogin_r.h: New files.
18446
18447 2005-05-25  Bruno Haible  <bruno@clisp.org>
18448             Derek Price  <derek@ximbiot.com>
18449
18450         * lib/getlogin_r.h: Simplify API documentation.
18451
18452 2005-05-23  Derek Price  <derek@ximbiot.com>
18453
18454         * modules/minmax (Files): Add m4/minmax.m4.
18455         (configure.ac): Add gl_MINMAX.
18456
18457 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
18458
18459         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
18460         so that unistd-safer.h (GPL'ed code) need not be included.
18461
18462 2005-05-22  Bruno Haible  <bruno@clisp.org>
18463
18464         * m4/minmax.m4: New file.
18465         Based on a patch by Derek Price <derek@ximbiot.com>.
18466
18467 2005-05-22  Bruno Haible  <bruno@clisp.org>
18468
18469         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
18470         (INT64_MIN): Fix definition.
18471         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
18472
18473         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
18474         NEED_SIGNED_INT_TYPES.
18475
18476         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
18477         HAVE_SYSTEM_INTTYPES.
18478
18479 2005-05-22  Bruno Haible  <bruno@clisp.org>
18480
18481         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
18482         Also include <sys/param.h> if it defines MIN, MAX.
18483         Based on a patch by Derek Price <derek@ximbiot.com>.
18484
18485 2005-05-21  Jim Meyering  <jim@meyering.net>
18486
18487         * modules/fts (Files): Add m4/inttypes-pri.m4.
18488         (Depends-on): Add lstat and remove gettext.  Alphabetize.
18489
18490 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18491
18492         New fts module.
18493         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
18494         (setup_dir, free_dir): New functions.
18495         (enter_dir, leave_dir): Define trivial
18496         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
18497         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
18498         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
18499         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
18500         Move to fts-cycle.c.
18501         (fts_open): Use setup_dir.
18502         (fts_close): Use free_dir.
18503         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
18504         This adds a label and some gotos, but the alternatives were messier.
18505         Check for memory allocation failure when entering a dir.
18506         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
18507         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
18508         (FTS): New member fts_cycle, that is a union that contains the
18509         old active_dir_ht and cycle_state.  All uses changed to mention
18510         fts_cycle.ht and fts_cycle.state.
18511         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
18512         fts.c, with the following changes:
18513         (setup_dir, free_dir): New functions.
18514         (enter_dir): Now returns bool.  Return true if successful, false
18515         if memory exhausted.  All callers changed.
18516         Do not bother partly cleaning up on
18517         memory allocation failure; that is free_dir's job.
18518         However, free ad if hash_insert fails, to avoid memory leak.
18519         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
18520         fts->fts_options to see which union member to use.
18521
18522 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18523
18524         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
18525         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
18526
18527 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
18528
18529         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
18530
18531 2005-05-20  Jim Meyering  <jim@meyering.net>
18532
18533         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
18534         Now a macro, to pacify GCC.
18535
18536 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
18537
18538         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
18539         of -1.
18540
18541 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
18542
18543         * lib/chown.c (rpl_chown): Return -1 on failure.
18544
18545 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
18546
18547         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
18548         Don't check for stddef.h.
18549         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
18550         don't use its results.
18551         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
18552         since we include them unconditionally.  Don't require
18553         AM_STDBOOL_H, since stdbool is a prerequisite.
18554         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
18555         since we assume C89 or better.
18556         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
18557         as we don't use their results.
18558         Don't check for fchdir, memmove, memset, strrchr, as we use
18559         them unconditionally.
18560         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
18561         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
18562
18563 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
18564
18565         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
18566         Include <stddef.h> unconditionally, since we assume C89 now.
18567         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
18568         * lib/fts.c: Include fts_.h first, to check interface.
18569         Do not include intprops.h; no longer needed.
18570         Include cycle-check.h and hash.h, since fts_.h no longer does.
18571         Remove unnecessary casts of closedir to void.
18572         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
18573         decide whether to decrement nlinks.
18574         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
18575         (FTS): Use struct hash_table * instead of Hash_table, so that
18576         we no longer need to include hash.h here.
18577
18578 2005-05-18  Jim Meyering  <jim@meyering.net>
18579
18580         * modules/dirfd (License): Change to LGPL.  Most of the code
18581         is already in the public domain.
18582
18583 2005-05-18  Jim Meyering  <jim@meyering.net>
18584
18585         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
18586         Reported by Yoann Vandoorselaere.
18587
18588 2005-05-17  Jim Meyering  <jim@meyering.net>
18589
18590         * m4/fts.m4: New file, from coreutils.
18591
18592 2005-05-17  Jim Meyering  <jim@meyering.net>
18593
18594         * lib/fts.c, lib/fts_.h: New files, from coreutils.
18595
18596 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18597
18598         Sync from coreutils.
18599         * m4/unlinkdir.m4: New file.
18600
18601 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18602
18603         Sync from coreutils.
18604         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
18605         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
18606         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
18607         White space changes only.
18608         * lib/makepath.c (make_path): Port to hosts where leading "//" is
18609         special.
18610         * lib/yesno.c: Include getline.h, not ctype.h.
18611         (yesno): Don't remove leading white space; POSIX doesn't allow it.
18612         Use getline to remove arbitrary restriction on response length.
18613
18614 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
18615
18616         * config/srclist-update: Spell out "Street" in FSF postal
18617         mail address; this is the style the FSF seems to prefer.
18618
18619         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
18620         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
18621         this updates FSF postal mail address.
18622
18623         Sync from coreutils.
18624         * modules/unlinkdir: New file.
18625         * modules/yesno (Depends-on): Add getline.
18626         * MODULES.html.sh (File system functions): Add unlinkdir.
18627
18628 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
18629
18630         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
18631         lib/strsep.h:
18632         Change the initial comment to refer to GPL, not LGPL.
18633         gnulib-tool will change it to LGPL as needed.
18634
18635         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
18636         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
18637         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
18638         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
18639         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
18640         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
18641         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
18642         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
18643         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
18644         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
18645         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
18646         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
18647         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
18648         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
18649         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
18650         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
18651         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
18652         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
18653         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
18654         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
18655         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
18656         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
18657         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
18658         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
18659         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
18660         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
18661         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
18662         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
18663         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
18664         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
18665         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
18666         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
18667         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
18668         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
18669         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
18670         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
18671         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
18672         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
18673         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
18674         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
18675         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
18676         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
18677         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
18678         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
18679         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
18680         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
18681         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
18682         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
18683         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
18684         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
18685         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
18686         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
18687         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
18688         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
18689         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
18690         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
18691         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
18692         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
18693         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
18694         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
18695         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
18696         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
18697         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
18698         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
18699         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
18700         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
18701         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
18702         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
18703         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
18704         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
18705         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
18706         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
18707         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
18708         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
18709         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
18710         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
18711         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
18712         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
18713         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
18714         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
18715         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
18716         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
18717         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
18718         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
18719         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
18720         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
18721         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
18722         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
18723         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
18724         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
18725         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
18726         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
18727         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
18728         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
18729         lib/yesno.c, lib/yesno.h:
18730         Update FSF postal mail address.
18731
18732 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
18733
18734         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
18735         tests/test-memmem.c, tests/test-stpncpy.c:
18736         Update FSF postal mail address.
18737
18738 2005-05-13  Bruno Haible  <bruno@clisp.org>
18739
18740         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
18741         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
18742         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
18743         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
18744         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
18745         Add support for 64-bit integers in the MSVC compiler.
18746
18747 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18748
18749         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
18750
18751 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
18752
18753         * gnulib-tool (func_import): Sort and uniquify recommended includes.
18754
18755 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
18756
18757         * doc/getdate.texi (General date syntax): Don't say that date
18758         date --iso-8601=ns generates acceptable dates; it doesn't yet.
18759         Problem reported by Nic Ferrier.
18760
18761 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18762
18763         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
18764         specified in ai_socktype. Fix invalid ai_protocol
18765         check. ai_protocol is usually set to 0 or depending on
18766         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
18767         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
18768         ai_socktype / ai_protocol in the returned addrinfo structure.
18769
18770 2005-05-10  Simon Josefsson  <jas@extundo.com>
18771
18772         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
18773         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18774
18775 2005-05-10  Karl Berry  <karl@gnu.org>
18776
18777         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
18778         (from http://www.gnu.org/licenses).
18779         * doc/COPYING.LIB: also rename to COPYING.LESSER.
18780         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
18781         fdl.texi suffices.
18782
18783 2005-05-10  Karl Berry  <karl@gnu.org>
18784
18785         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
18786         (COPYING.DOC): remove.
18787
18788         * config/srclist-update: new FSF address.
18789
18790 2005-05-10  Derek Price  <derek@ximbiot.com>
18791
18792         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
18793         possible.
18794
18795 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18796             Bruno Haible  <bruno@clisp.org>
18797
18798         * modules/inet_ntop: New file.
18799         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18800         inet_ntop.
18801
18802 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18803             Bruno Haible  <bruno@clisp.org>
18804
18805         * m4/inet_ntop.m4: New file.
18806
18807 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18808             Bruno Haible  <bruno@clisp.org>
18809
18810         * lib/inet_ntop.h: New file.
18811         * lib/inet_ntop.c: New file, from glibc with modifications.
18812
18813 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
18814
18815         * modules/time_r (License): Change to LGPL.
18816         * modules/extensions (License): Change to LGPL.  Actually,
18817         the license is more permissive than that, but currently gnulib-tool
18818         doesn't know how to handle more-permissive licenses.
18819
18820         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
18821         Problem reported by Dave Love.
18822
18823 2005-05-08  Jim Meyering  <jim@meyering.net>
18824
18825         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
18826         blank.
18827
18828 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
18829
18830         * modules/argmatch (Depends-on): Add stdbool.
18831         * modules/backupfile (Depends-on): Likewise.
18832         * modules/chdir-long (Depends-on): Likewise.
18833         * modules/closeout (Depends-on): Likewise.
18834         * modules/cycle-check (Depends-on): Likewise.
18835         * modules/dirname (Depends-on): Likewise.
18836         * modules/fnmatch (Depends-on): Likewise.
18837         * modules/fsusage (Depends-on): Likewise.
18838         * modules/fwriteerror (Depends-on): Likewise.
18839         * modules/getcwd (Depends-on): Likewise.
18840         * modules/getloadavg (Depends-on): Likewise.
18841         * modules/hard-locale (Depends-on): Likewise.
18842         * modules/makepath (Depends-on): Likewise.
18843         * modules/mountlist (Depends-on): Likewise.
18844         * modules/nanosleep (Depends-on): Likewise.
18845         * modules/posixtm (Depends-on): Likewise.
18846         * modules/quotearg (Depends-on): Likewise.
18847         * modules/readtokens (Depends-on): Likewise.
18848         * modules/readtokens0 (Depends-on): Likewise.
18849         * modules/readutmp (Depends-on): Likewise.
18850         * modules/save-cwd (Depends-on): Likewise.
18851         * modules/strftime (Depends-on): Likewise.
18852         * modules/userspec (Depends-on): Likewise.
18853         * modules/utimecmp (Depends-on): Likewise.
18854         * modules/xgetcwd (Depends-on): Likewise.
18855         * modules/xnanosleep (Depends-on): Likewise.
18856         * modules/xstrtod (Depends-on): Likewise.
18857         * modules/yesno (Depends-on): Likewise.
18858
18859 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
18860
18861         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
18862         needless checks.
18863
18864 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18865
18866         Merge from coreutils.  Among other things,
18867         add bulletproofing for cases where stdin, stdout, or stderr are closed.
18868         * lib/fd-safer.c: New file.
18869         * lib/fcntl-safer.h, open-safer.c: Remove.
18870         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
18871         * lib/dup-safer.c: Include unistd-safer.h first.
18872         Don't include errno.h.
18873         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
18874         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
18875         * lib/file-type.c: Rely on file-type.h change.
18876         * lib/getloadavg.c: Include unistd-safer.h.
18877         (getloadavg): Use safer open.
18878         * lib/getusershell.c: Include "stdio-safer.h".
18879         (getusershell): Use safer fopen.
18880         * lib/long-options.c (long_options): Use NULL rather than 0.
18881         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
18882         'free'.
18883         * lib/modechange.c: Likewise.
18884         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
18885         (MODE_DONE): New constant.
18886         (struct mode_change): Remove 'next' member.
18887         (make_node_op_equals): New function; like the old one of the
18888         same name, except it allocates an array.
18889         (mode_compile, mode_create_from_ref): Use it.
18890         (mode_compile): Allocate result as an array, not a linked list.
18891         Parse octal string ourself, so that we catch mistakes like "+0".
18892         (mode_adjust): Arg is an array, not a linked list.
18893         * lib/modechange.c: Include stat-macros.h, xalloc.h.
18894         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
18895         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
18896         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
18897         Remove.  This is now stat-macros.h's job.
18898         (talloc): Remove.  All callers replaced by xalloc, so that
18899         our invokers don't have to worry about reporting memory failures.
18900         (make_node_op_equals): Remove.
18901         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18902         New constants.
18903         (struct mode_change): Moved here from modechange.h.
18904         (mode_append_entry): Remove.
18905         (mode_compile): Remove MASKED_OPS arg, since it encouraged
18906         apps to have incorrect behavior.  Use simpler algorithm for head
18907         and tail.  Don't futz with umask; that's now the job of mode_adjust.
18908         Detect more invalid usages rather than having somewhat-random behavior.
18909         Don't insert an "a=" action, as that leads to incorrect behavior.
18910         (mode_compile, mode_create_from_ref): Return NULL on error instead
18911         of an enum, since now there's only one way to have an error.  All
18912         callers changed.
18913         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
18914         at the correct time.  Simplify calculation of "+u" and its ilk.
18915         Don't mishandle "+X".
18916         (mode_free): Remove "register" and localize decls.
18917         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18918         (struct mode_change): Move to modechange.c; callers don't
18919         need to see this stuff.
18920         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
18921         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
18922         (mode_change, mode_adjust): Reflect the new signatures noted above.
18923         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
18924         that might redefine system include files.
18925         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
18926         (my_usleep): Use NULL rather than (void *) 0.
18927         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
18928         Use siginterrupt to specify that system calls should be interrupted.
18929         (rpl_nanosleep): Move initialization of suspended closer to call of
18930         my_usleep.
18931         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
18932         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
18933         (desirable_utmp_entry): New function.
18934         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
18935         using x2nrealloc, to simplify logic.
18936         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
18937         size calculation.  Do not assume utmp file is a regular file.
18938         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
18939         (READ_UTMP_CHECK_PIDS): New constant.
18940         * lib/save-cwd.c: Include unistd-safer.h.
18941         (save_cwd): Use fd_safer.
18942         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
18943         [!_LIBC] Include "stat-macros.h" instead.
18944         * lib/unistd-safer.h (fd_safer): New decl.
18945
18946 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18947
18948         * modules/getloadavg (Depends-on): Add unistd-safer.
18949         * modules/getusershell (Depends-on): Add stdio-safer.
18950         * modules/lstat (Depends-on): Remove xalloc.
18951         * modules/mkstemp (Depends-on): Add stat-macros.
18952         * modules/modechange (Depends-on): Remove xstrtol.
18953         Add stat-macros, xalloc.
18954         * modules/save-cwd (Depends-on): Add unistd-safer.
18955         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
18956         * modules/unistd-safer (Files): Add lib/fd-safer.c
18957         (Makefile.am): Remove lib_SOURCES.
18958
18959         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
18960         Remove fcntl-safer; unistd-safer supersedes it.
18961
18962 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18963
18964         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
18965         AC_HEADER_STAT.
18966         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
18967         (gl_PREREQ_CHOWN): Remove.
18968         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
18969         it.  Don't require AC_HEADER_STAT.
18970         (gl_PREREQ_LSTAT): Remove.
18971         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
18972         Don't require AC_HEADER_STAT.
18973         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
18974         (gl_PREREQ_RMDIR): Remove.
18975         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
18976         mention stat-macros.h or AC_HEADER_STAT, since we'll make
18977         the stat-macros module a prerequisite.
18978         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
18979         * m4/filemode.m4 (gl_FILEMODE): Likewise.
18980         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
18981         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
18982         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
18983         variable names.
18984         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
18985         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
18986         variable prefixes.
18987         * m4/fcntl-safer.m4: Remove.
18988         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
18989         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
18990         Invoke gl_PREREQ_FD_SAFER.
18991         (gl_PREREQ_FD_SAFER): New macro.
18992         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
18993         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
18994         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
18995         Remove duplicate call to AC_LIBOBJ(readutmp).
18996         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
18997
18998         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
18999         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
19000
19001 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
19002
19003         * MODULES.html.sh (Misc): Add byteswap.
19004
19005 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19006
19007         * modules/getcwd (Depends-on): Add extensions.
19008         * modules/openat (Depends-on): Likewise.
19009
19010 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19011
19012         * modules/byteswap: New file.
19013
19014 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19015
19016         * m4/byteswap.m4: New file.
19017
19018 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19019
19020         * lib/byteswap_.h: New file.
19021
19022 2005-04-25  Karl Berry  <karl@gnu.org>
19023
19024         * m4/gettext.m4: Update from GNU gettext 0.14.4.
19025
19026 2005-04-25  Albert Chin  <china@thewrittenword.com>
19027
19028         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
19029         Toolkit C bug.
19030
19031 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
19032
19033         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
19034         (func_ln_if_changed) Remove forcibly for no error message
19035         in case file does not exist.
19036
19037 2005-04-19  Simon Josefsson  <jas@extundo.com>
19038
19039         * gnulib-tool (Options): Make --symlink mean --symbolic.
19040
19041 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
19042
19043         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
19044
19045 2005-04-16  Simon Josefsson  <jas@extundo.com>
19046
19047         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
19048
19049 2005-04-15  Simon Josefsson  <jas@extundo.com>
19050
19051         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
19052
19053 2005-04-15  Simon Josefsson  <jas@extundo.com>
19054
19055         * gnulib-tool: Rename --symlink to --symbolic.
19056
19057 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
19058
19059         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
19060         symbolic links to files instead of copying/moving.  Add --aux-dir,
19061         specifying directory relative --dir where auxiliary build tools
19062         are placed.
19063
19064 2005-04-14  Bruno Haible  <bruno@clisp.org>
19065
19066         * modules/allocsa (License): Change to LGPL.
19067         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
19068
19069 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
19070
19071         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
19072         that "UTC +1 second" continues to work.  Problem reported
19073         by Dmitry V. Levin.
19074         (relunit_snumber): New rule.
19075         (relunit): Use it.
19076
19077 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
19078
19079         * lib/getdate.y (universal_time_zone_table): New constant.
19080         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
19081         universal_time_zone_table.
19082         (lookup_zone): Prefer universal_time_zone_table to
19083         local_time_zone_table, so that "GMT" time stamps are allowed in
19084         London during the summer.  Problem reported by Ian Abbott.
19085
19086 2005-04-12  Jim Meyering  <jim@meyering.net>
19087
19088         * lib/human.c (humblock): Set *options even when returning due to
19089         xstrtoumax conversion failure.  Thanks to a used-uninitialized
19090         warning from gcc-4.
19091
19092 2005-04-09  Jim Meyering  <jim@meyering.net>
19093
19094         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
19095         -Wuninitialized: initialize tm0.tm_year.
19096
19097 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
19098
19099         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
19100         count, since there's no maximum.  All uses changed.
19101         Add member dsts_seen.
19102         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
19103         not being INT_MAX.
19104         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
19105         Use pc_rels_seen to decide whther a date is absolute.
19106
19107         * lib/getdate.y (number): Don't overwrite year.
19108         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
19109         check.
19110
19111 2005-04-02  Simon Josefsson  <jas@extundo.com>
19112
19113         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
19114         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
19115
19116 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
19117
19118         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
19119         where no absolute path name can be longer than PATH_MAX.
19120
19121 2005-03-27  Jim Meyering  <jim@meyering.net>
19122
19123         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
19124
19125 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
19126
19127         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
19128         "one's complement" -> "ones' complement" in comment, as per Knuth.
19129         "value of type" -> "type or expression" in comment.
19130         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
19131
19132 2005-03-26  Jim Meyering  <jim@meyering.net>
19133
19134         Comment nits.
19135         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
19136         Correct typos: s/or/of/.
19137
19138 2005-03-26  Jim Meyering  <jim@meyering.net>
19139
19140         * modules/check-include-files: Move to ../ and rename to...
19141         * check-module: ...this.
19142
19143 2005-03-25  Jim Meyering  <jim@meyering.net>
19144
19145         * modules/xvasprintf (Files): Add xalloc.h.
19146
19147 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
19148
19149         * modules/gettext (Files): config/config.rpath ->
19150         build-aux/config.rpath
19151         * modules/iconv (Files): Likewise.
19152         Problem reported by Oskar Liljeblad.
19153
19154 2005-03-23  Jim Meyering  <jim@meyering.net>
19155
19156         * modules/check-include-files: New script to check for
19157         missing dependencies, multiple includes, etc.
19158
19159         * modules/c-strtold (Depends-on): Add xalloc.
19160         * modules/c-strtod (Depends-on): Add xalloc.
19161         * modules/hash (Depends-on): Add xalloc.
19162         (Files): Remove lib/xalloc.h.
19163
19164         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
19165         * modules/userspec (Files): Add lib/inttostr.h.
19166
19167 2005-03-23  Jim Meyering  <jim@meyering.net>
19168
19169         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
19170
19171 2005-03-22  Jim Meyering  <jim@meyering.net>
19172
19173         * modules/stat-macros: New module.
19174         * modules/canonicalize, modules/euidaccess, modules/file-type,
19175         * modules/filemode, modules/lchown, modules/makepath,
19176         * modules/rmdir, modules/stat: Depend on new stat-macros module
19177         rather than listing lib/stat-macros.h manually.
19178         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
19179
19180 2005-03-22  Jim Meyering  <jim@meyering.net>
19181
19182         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
19183
19184 2005-03-22  Bruno Haible  <bruno@clisp.org>
19185
19186         * config/srclist.txt: Replace target directory 'config' with
19187         'build-aux'.
19188         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
19189         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
19190         ../build-aux/.
19191
19192 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
19193
19194         * modules/chdir-long (Depends-on): Add mempcpy.
19195
19196         * modules/acl, modules/backupfile, modules/c-strtod,
19197         modules/c-strtold, modules/canon-host, modules/canonicalize,
19198         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
19199         modules/exclude, modules/exitfail, modules/file-type,
19200         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
19201         modules/getdate, modules/getline, modules/getpagesize,
19202         modules/getpass, modules/getugroups, modules/group-member,
19203         modules/hard-locale, modules/hash, modules/human, modules/idcache,
19204         modules/inttostr, modules/long-options, modules/makepath,
19205         modules/md5, modules/memcasecmp, modules/memcoll,
19206         modules/modechange, modules/mountlist, modules/path-concat,
19207         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
19208         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
19209         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
19210         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
19211         modules/strftime, modules/strndup, modules/strverscmp,
19212         modules/timespec, modules/unlocked-io, modules/userspec,
19213         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
19214         modules/yesno:
19215         Remove lib_SOURCES line from Makefile.am section, as this is now
19216         done automatically by the corresponding Autoconf macro.
19217
19218 2005-03-21  Jim Meyering  <jim@meyering.net>
19219
19220         Changes imported from coreutils.
19221
19222         * lib/cycle-check.c: Don't include xalloc.h.
19223
19224         * lib/path-concat.c: Don't include assert.h.
19225         (path_concat): Remove assertion that would have triggered
19226         for ABASE starting with more than one slash.
19227         Reported by Andreas Schwab.
19228
19229         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
19230         properly when ABASE is an absolute file name.
19231         Correct the description of this function.
19232         Include <assert.h>.
19233         Add an assertion and a test driver.
19234         This fixes a bug introduced on 2004-07-02.
19235         Andreas Schwab reported the resulting failure of cp --parents:
19236         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
19237
19238 2005-03-21  Jim Meyering  <jim@meyering.net>
19239
19240         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
19241         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
19242
19243 2005-03-21  Jim Meyering  <jim@meyering.net>
19244         and  Paul Eggert  <eggert@cs.ucla.edu>
19245
19246         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
19247         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
19248         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
19249         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
19250         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
19251         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
19252         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
19253         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
19254         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
19255         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
19256         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
19257         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
19258         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
19259         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
19260         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
19261         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
19262         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
19263         for these modules.
19264
19265 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
19266
19267         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
19268         (which shouldn't happen), generate nothing instead of returning 0
19269         immediately, so that nstrftime (NULL, ...) doesn't return 0.
19270
19271 2005-03-16  Bruno Haible  <bruno@clisp.org>
19272
19273         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
19274         HAVE_LONGLONG_64BIT.
19275
19276 2005-03-16  Bruno Haible  <bruno@clisp.org>
19277
19278         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
19279         HAVE_LONGLONG_64BIT.
19280
19281 2005-03-16  Bruno Haible  <bruno@clisp.org>
19282
19283         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
19284         HAVE_LONGLONG_64BIT.
19285
19286 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
19287
19288         * lib/strftime.c (my_strftime): Prepend space to format so that we can
19289         reliably distinguish strftime failure from empty output on POSIX
19290         hosts.
19291
19292 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
19293
19294         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
19295         (iconv_string): Don't guess a size-zero buffer, as that might cause
19296         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
19297         result would be 'too large', where 'too large' is (heuristically)
19298         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
19299         overflow concerns.  This will prevent some unwanted malloc failures
19300         when the inputs are very large.
19301
19302 2005-03-15  Karl Berry  <karl@gnu.org>
19303
19304         * config/srclist.txt (config.rpath): from gettext.
19305         * config/config.rpath: update.
19306
19307 2005-03-15  Bruno Haible  <bruno@clisp.org>
19308
19309         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
19310         to 'negate'.
19311
19312         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
19313         variable.
19314
19315         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
19316         results.
19317
19318 2005-03-14  Simon Josefsson  <jas@extundo.com>
19319
19320         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
19321         <fx@gnu.org>.
19322
19323 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
19324
19325         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
19326         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
19327         intprops.h.
19328         * lib/strtol.c: Likewise.
19329
19330 2005-03-14  Jim Meyering  <jim@meyering.net>
19331
19332         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
19333         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
19334         to be nonzero so that we (and caller) can detect the difference
19335         between a valid zero-length expansion and an error return, even
19336         when the underlying strftime fails before writing anything into
19337         that location.
19338
19339 2005-03-14  Bruno Haible  <bruno@clisp.org>
19340
19341         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
19342         Update from GNU gettext 0.14.3.
19343
19344 2005-03-10  Jim Meyering  <jim@meyering.net>
19345
19346         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
19347
19348 2005-03-10  Jim Meyering  <jim@meyering.net>
19349
19350         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
19351         so that this module works on systems without fchdir.
19352
19353 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
19354
19355         Factor int-properties macros into a single file, except for
19356         glibc-related files.
19357         * lib/intprops.h: New file.
19358         * lib/getloadavg.c: Include it instead of limits.h.
19359         (INT_STRLEN_BOUND): Remove.
19360         * lib/human.c: Include intprops.h.
19361         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
19362         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
19363         302/1000.
19364         * lib/inttostr.h: Include intprops.h instead of limits.h.
19365         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
19366         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
19367         for consistency with intprops.h.
19368         (time_t_is_integer, twos_complement_arithmetic): Use them.
19369         * lib/sig2str.h: Include <signal.h>, intprops.h.
19370         (INT_STRLEN_BOUND): Remove.
19371         * lib/strftime.c (TYPE_SIGNED): Remove.
19372         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
19373         * lib/strtol.c: Adjust comments to match intprops.h.
19374         * lib/userspec.c: Include intprops.h.
19375         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
19376         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
19377         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
19378         instead of rolling our own expressions.
19379         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
19380
19381         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
19382         instead of int.
19383         (my_strftime): Do not mishandle years close to INT_MAX, by doing
19384         the right thing even if adding 1900 would overflow.  Similarly
19385         for tm_mon + 1 and tm_yday + 1.
19386         Make %Y always equivalent to %C%y, and similarly for %G and %g.
19387         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
19388         (DO_SIGNED_NUMBER): New macro.
19389         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
19390
19391 2005-03-07  Bruno Haible  <bruno@clisp.org>
19392
19393         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
19394
19395 2005-03-07  Bruno Haible  <bruno@clisp.org>
19396
19397         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
19398
19399 2005-03-04  Derek R. Price  <derek@ximbiot.com>
19400
19401         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
19402         (func_import): Only replace files via --import when they have actually
19403         changed.
19404
19405 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19406
19407         * m4/mmap-anon.m4: New file.
19408         * m4/pagealign_alloc.m4: New file.
19409
19410 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19411             Bruno Haible  <bruno@clisp.org>
19412
19413         * modules/pagealign_alloc: New file.
19414         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
19415
19416 2005-03-03  Derek R. Price  <derek@ximbiot.com>
19417             Bruno Haible  <bruno@clisp.org>
19418
19419         * lib/pagealign_alloc.h: New file.
19420         * lib/pagealign_alloc.c: New file.
19421
19422 2005-03-03  Bruno Haible  <bruno@clisp.org>
19423
19424         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
19425         Use an all-permissive copyright notice, recommended by RMS.
19426
19427 2005-03-02  Bruno Haible  <bruno@clisp.org>
19428
19429         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
19430         of AIX, the replacement has to be done only after <string.h> is
19431         included, therefore not in config.h. stpncpy.h does the replacement,
19432         and stpncpy.c uses it.
19433
19434 2005-03-02  Bruno Haible  <bruno@clisp.org>
19435
19436         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
19437         stpncpy.c uses it.
19438
19439 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19440
19441         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
19442         The workaround isn't strictly needed for POSIX conformance, and
19443         it's too much of a pain to configure and maintain.  We'll ask
19444         people to fix their kernels instead.
19445         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
19446         (NANOSLEEP_BUG_WORKAROUND): Remove.
19447         (xnanosleep): Remove the workaround.
19448
19449 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19450
19451         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
19452         Reported by Derek Price.
19453         (Include): Add "timespec.h".
19454
19455         * modules/xnanosleep (Depends-on): Remove gethrxtime.
19456
19457 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
19458
19459         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
19460         to detect nanosleep bug.
19461
19462 2005-03-01  Bruno Haible  <bruno@clisp.org>
19463
19464         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
19465
19466 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
19467
19468         * modules/gethrxtime: New file.
19469         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
19470         (Depends-on): Add gethrxtime.
19471         (configure.ac): Add gl_XNANOSLEEP.
19472         (Makefile.am): Remove lib_SOURCES line.
19473
19474 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
19475
19476         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
19477         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
19478
19479 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
19480
19481         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
19482         * lib/timespec.h (gettime): Return void, since it always
19483         succeeds now.  All uses changed.
19484         * lib/gettime.c (gettime) Likewise.
19485         [HAVE_NANOTIME]: Prefer nanotime.
19486         Assume gettimeofday succeeds, as POSIX requires.
19487         Assime time () succeeds, since other code already does.
19488         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
19489         (timespec_subtract): Remove.
19490         (NANOSLEEP_BUG_WORKAROUND): New constant.
19491         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
19492         things considerably.  Use it only on GNU/Linux hosts, since the
19493         workaround shouldn't be needed elsewhere.
19494
19495 2005-02-24  Bruno Haible  <bruno@clisp.org>
19496
19497         * modules/gettext (Files): Add m4/glibc2.m4.
19498
19499 2005-02-24  Bruno Haible  <bruno@clisp.org>
19500
19501         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
19502         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
19503         * m4/progtest.m4:
19504         Update from GNU gettext 0.14.2.
19505         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
19506
19507 2005-02-24  Bruno Haible  <bruno@clisp.org>
19508
19509         * lib/localcharset.c: Update from GNU gettext 0.14.2.
19510         * lib/config.charset: Update from GNU gettext 0.14.2.
19511
19512 2005-02-24  Bruno Haible  <bruno@clisp.org>
19513
19514         * lib/gettext.h: Update from GNU gettext 0.14.2.
19515
19516 2005-02-23  Simon Josefsson  <jas@extundo.com>
19517
19518         * m4/iconvme.m4: New file.
19519
19520 2005-02-23  Jim Meyering  <jim@meyering.net>
19521
19522         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
19523         change.
19524         Thanks to Bruno Haible for catching it.
19525
19526 2005-02-22  Simon Josefsson  <jas@extundo.com>
19527
19528         * modules/iconvme: New file.
19529
19530         * MODULES.html.sh: Add iconvme.
19531
19532 2005-02-22  Simon Josefsson  <jas@extundo.com>
19533
19534         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
19535
19536 2005-02-22  Simon Josefsson  <jas@extundo.com>
19537
19538         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
19539
19540 2005-02-22  Jim Meyering  <jim@meyering.net>
19541
19542         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
19543         s/ifndef/ifdef/.
19544
19545 2005-02-20  Neil Conway  <neilc@samurai.com>
19546
19547         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
19548         returned by OSX/Darwin if the specified buffer is not large
19549         enough for the hostname.
19550
19551 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19552
19553         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
19554         pass it to _help, otherwise the latter coredumps trying to
19555         dereference state.root_argp.
19556
19557 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19558
19559         * modules/chdir-long (Depends-on): Add memrchr.
19560         * modules/memrchr (Files): Add lib/memrchr.h.
19561         (Include): "memrchr.h".
19562
19563 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19564
19565         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
19566
19567 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
19568
19569         * lib/memrchr.h: New file.
19570         * lib/chdir-long.c: Include it.
19571         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
19572         Don't bother including stddef.h.
19573
19574 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
19575
19576         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
19577         inclusion.
19578         Include <sys/types.h>, for dev_t.
19579         (ME_DUMMY, ME_REMOTE): Move from here....
19580         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
19581         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
19582         Dmitry V. Levin.
19583         Include mountlist.h first, to test the interface.
19584
19585 2005-01-29  Bruno Haible  <bruno@clisp.org>
19586
19587         * lib/progname.c (program_name): Initialize.
19588         Needed when linking statically on MacOS X.
19589
19590 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
19591
19592         Sync from coreutils.
19593         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
19594         (Depends-on): Add c-strtod.
19595         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
19596
19597 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
19598
19599         Sync from coreutils.
19600         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
19601
19602         Remove files that are specific to coreutils.
19603         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
19604
19605 2005-01-28  Bruno Haible  <bruno@clisp.org>
19606
19607         * modules/javacomp: New file.
19608         * MODULES.html.sh (Java): Add javacomp.
19609
19610 2005-01-28  Bruno Haible  <bruno@clisp.org>
19611
19612         * m4/javacomp.m4: New file, from GNU gettext.
19613
19614 2005-01-28  Bruno Haible  <bruno@clisp.org>
19615
19616         * lib/javacomp.sh.in: New file, from GNU gettext.
19617         * lib/javacomp.h: New file, from GNU gettext.
19618         * lib/javacomp.c: New file, from GNU gettext.
19619
19620 2005-01-26  Simon Josefsson  <jas@extundo.com>
19621
19622         * lib/gai_strerror.c: Use GPL in header.
19623
19624 2005-01-26  Bruno Haible  <bruno@clisp.org>
19625
19626         * modules/javaexec: New file.
19627         * MODULES.html.sh (Java): Add javaexec.
19628
19629 2005-01-26  Bruno Haible  <bruno@clisp.org>
19630
19631         * m4/javaexec.m4: New file, from GNU gettext.
19632
19633 2005-01-26  Bruno Haible  <bruno@clisp.org>
19634
19635         * lib/javaexec.sh.in: New file, from GNU gettext.
19636         * lib/javaexec.h: New file, from GNU gettext.
19637         * lib/javaexec.c: New file, from GNU gettext.
19638
19639 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19640
19641         * modules/lchown (Depends-on): Remove lchown.h
19642
19643 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19644
19645         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
19646         must be defined if the header file was not found, in order
19647         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
19648
19649 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19650
19651         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
19652         initializers for struct pentry_state.
19653         (__argp_error): Check return value of __asprintf
19654         (__argp_failure): Translate error message
19655
19656         * lib/argp-parse.c: Removed braces around the expansion of N_()
19657
19658 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
19659
19660         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
19661         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
19662         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
19663         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
19664         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
19665         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
19666         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
19667         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
19668         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
19669         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
19670         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
19671         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
19672         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
19673         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
19674         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
19675         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
19676         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
19677         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
19678         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
19679         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
19680         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
19681         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
19682         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
19683         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
19684         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
19685         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
19686         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
19687         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
19688         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
19689         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
19690         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
19691         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
19692         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
19693         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
19694         xstrtol.m4, xstrtoumax.m4, yesno.m4:
19695         Use an all-permissive copyright notice, recommended by RMS.
19696
19697 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
19698
19699         * modules/chdir-long (Depends-on): Remove mempcpy.
19700
19701 2005-01-21  Jim Meyering  <jim@meyering.net>
19702
19703         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
19704         same value as for Solaris 9.
19705
19706         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
19707         component length.  This included changing the parameter to be
19708         of type `char *' rather than `char const *'.
19709         * lib/chdir-long.h (chdir_long): Update prototype.
19710
19711         * lib/openat.c (fdopendir, fstatat): New functions.
19712         * lib/openat.h: Include headers required for use of DIR and struct
19713         stat.
19714         [AT_SYMLINK_NOFOLLOW]: Define.
19715         (fdopendir, fstatat): Add prototypes.
19716
19717 2005-01-21  Bruno Haible  <bruno@clisp.org>
19718
19719         * modules/classpath: New file.
19720         * MODULES.html.sh (Java): Add classpath.
19721
19722 2005-01-21  Bruno Haible  <bruno@clisp.org>
19723
19724         * lib/classpath.h: New file, from GNU gettext.
19725         * lib/classpath.c: New file, from GNU gettext.
19726
19727 2005-01-20  Simon Josefsson  <jas@extundo.com>
19728
19729         * modules/version-etc-fsf: New file.
19730
19731 2005-01-20  Simon Josefsson  <jas@extundo.com>
19732
19733         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
19734         * lib/version-etc.c: Remove version_etc_copyright.
19735         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
19736         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
19737
19738 2005-01-20  Simon Josefsson  <jas@extundo.com>
19739
19740         * lib/base64.h (isbase64): Add.
19741
19742         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
19743         using a unsigned prototype, don't inline.
19744         (base64_decode): Use it.
19745
19746 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19747
19748         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
19749         it.
19750
19751 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19752
19753         * lib/save-cwd.c (save_cwd): Remove code to support the case
19754         where fchdir is missing or flaky.
19755
19756 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
19757
19758         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
19759
19760 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
19761
19762         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
19763         AC_LIBSOURCES now does this.
19764         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
19765         with new ullong_max module.
19766
19767 2005-01-19  Bruno Haible  <bruno@clisp.org>
19768
19769         * modules/sh-quote: New file.
19770         * MODULES.html.sh (Executing programs): Add sh-quote.
19771
19772 2005-01-19  Bruno Haible  <bruno@clisp.org>
19773
19774         * lib/sh-quote.h: New file, from GNU gettext.
19775         * lib/sh-quote.c: New file, from GNU gettext.
19776
19777 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19778
19779         Merge from coreutils.
19780         * m4/ullong_max.m4: New file.
19781         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
19782         (gl_MACROS): Assume localeconv exists.
19783
19784 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19785
19786         Merge changes from coreutils, as described below in several
19787         changelogs dated today.
19788
19789         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
19790         (O_DIRECTORY): Remove; not needed here, since "." must be
19791         a directory.  All uses removed.
19792         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
19793         universal on Suns, and we also need to test for IRIX.
19794         Revamp code to use 'if' rather than '#if'.
19795         Avoid unnecessary comparison of cwd->desc to 0.
19796
19797         * lib/utimens.c (futimens): Robustify the previous patch, by checking
19798         for known valid error numbers rather than observed invalid ones.
19799
19800 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
19801
19802         * modules/ullong_max: New file.
19803
19804         * modules/chdir-long, modules/openat: New files.
19805         * modules/save-cwd (Depends-on): Depend on chdir-long.
19806         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
19807
19808 2005-01-18  Jim Meyering  <jim@meyering.net>
19809
19810         Merge from coreutils.
19811         * m4/chdir-long.m4, m4/openat.m4: New files.
19812         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
19813         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
19814         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
19815         is sane and DOES follow symlinks.  Besides, testing 20 different
19816         systems found no broken chown implementations.
19817         Prompted by a change in rsync's copy of this macro.
19818         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
19819
19820         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
19821
19822         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
19823         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
19824         NULL-means-set-to-current-time semantics.
19825         Remove temporary file immediately, rather than waiting
19826         for configure's at-exit trap code to do it.
19827
19828 2005-01-18  Jim Meyering  <jim@meyering.net>
19829
19830         * lib/version-etc.c (version_etc_copyright): Update copyright date.
19831
19832         * lib/utimens.c (futimens): Account for the fact that futimes
19833         can also fail with errno == ENOSYS or errno == ENOENT.
19834         Patch from Dmitry V. Levin.
19835
19836         Change the name of the robust chdir function from chdir to chdir_long.
19837         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
19838         (restore_cwd): Use chdir_long, not chdir.
19839         * lib/chdir-long.c: Renamed from chdir.c.
19840         * lib/chdir-long.h: Renamed from chdir.h.
19841         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
19842         Hurd.
19843
19844 2005-01-18  Bruno Haible  <bruno@clisp.org>
19845
19846         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
19847         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
19848         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
19849         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
19850         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
19851         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
19852         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
19853         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
19854         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
19855         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
19856         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
19857         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
19858         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
19859         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
19860         Use an all-permissive copyright notice, recommended by RMS.
19861
19862 2005-01-18  Bob Proulx  <bob@proulx.com>
19863
19864         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
19865         simplify offsetof() macro construct to avoid compile failure with
19866         native HP-UX 11.0 ANSI C compiler.
19867
19868 2005-01-17  Bruno Haible  <bruno@clisp.org>
19869
19870         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
19871         redundant because stpncpy.m4 takes care of it.
19872
19873 2005-01-17  Bruno Haible  <bruno@clisp.org>
19874
19875         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
19876
19877 2005-01-17  Bruno Haible  <bruno@clisp.org>
19878
19879         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
19880         used.
19881
19882 2005-01-17  Bruno Haible  <bruno@clisp.org>
19883
19884         * lib/fwriteerror.h (fwriteerror): Change specification to include
19885         fclose.
19886         * lib/fwriteerror.c: Include <stdbool.h>.
19887         (fwriteerror): At the end, close the file stream. Record whether
19888         stdout was already closed.
19889
19890 2005-01-17  Bruno Haible  <bruno@clisp.org>
19891
19892         * lib/execute.c (environ): Declare if needed.
19893         * lib/pipe.c (environ): Likewise.
19894         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
19895
19896 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19897
19898         * modules/argp: Depend on vsnprintf
19899
19900 2005-01-10  Jim Meyering  <jim@meyering.net>
19901
19902         * modules/closeout (Depends-on): Add atexit.
19903
19904 2005-01-06  Bruno Haible  <bruno@clisp.org>
19905
19906         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
19907
19908 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19909
19910         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
19911         definitions to be after all include files, to avoid collisions.
19912         Problem reported by Bob Proulx.
19913
19914 2005-01-04  Jim Meyering  <jim@meyering.net>
19915
19916         Changes imported from coreutils.
19917         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
19918         as the mkstemp template, use a temporary directory and an
19919         8.3-friendly template to avoid trouble on systems like DJGPP.
19920         Reported by Juan M. Guerrero via Stepan Kasal.
19921         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
19922         close. Remove the temporary directory right away, rather than waiting
19923         for configure's at-exit trap code to do it.
19924         Suggestion from Stepan Kasal.
19925
19926 2005-01-01  Simon Josefsson  <jas@extundo.com>
19927
19928         * gnulib-tool: Print #include directives when --import'ing.
19929
19930 2004-12-28  Simon Josefsson  <jas@extundo.com>
19931
19932         * tests/test-base64.c: Include required header files.  Remove
19933         unused variables.
19934
19935 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19936
19937         * modules/error (Depends-on): Remove gettext.
19938
19939 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19940
19941         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
19942         not needed.  This removes a dependency on the gettext module.
19943         [defined _LIBC]: Do not include <libintl.h>; not needed.
19944
19945 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19946
19947         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
19948         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
19949
19950 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19951
19952         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
19953         HAVE_DECL_STRTOLD.
19954
19955 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19956
19957         * modules/getdate (Depends-on): Remove alloca-opt.
19958
19959 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19960
19961         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
19962
19963 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19964
19965         * lib/argp-parse.c: Include <stddef.h>.
19966         (alignof, alignto): New macros.
19967         (parser_init): Don't assume that void * is aligned sufficiently
19968         for struct option.
19969
19970         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
19971         need to extend the stack.
19972         (YYINITDEPTH): New macro, so that the initial stack isn't overly
19973         large.
19974
19975 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19976
19977         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
19978
19979 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19980
19981         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
19982         (2004-10-24) change.  Apparently this was a false alarm.
19983
19984         * modules/getdate: Depend on alloca-opt, not alloca.
19985
19986 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19987
19988         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
19989         Remove now-obsolete comment about AIX.
19990         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
19991         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
19992         (YYMAXDEPTH): New macro.
19993
19994 2004-12-18  Simon Josefsson  <jas@extundo.com>
19995
19996         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
19997
19998 2004-12-18  Bruno Haible  <bruno@clisp.org>
19999
20000         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
20001
20002 2004-12-18  Bruno Haible  <bruno@clisp.org>
20003
20004         * lib/fatal-signal.c (fatal_signals): Make non-const.
20005         (init_fatal_signals): New function.
20006         (uninstall_handlers, install_handlers): Ignore signals that were set to
20007         SIG_IGN.
20008         (at_fatal_signal): Call init_fatal_signals.
20009         (init_fatal_signal_set): Likewise. Ignore signals that were set to
20010         SIG_IGN.
20011         Reported by Paul Eggert.
20012
20013 2004-12-18  Bruno Haible  <bruno@clisp.org>
20014
20015         * doc/alloca.texi: New file.
20016         * doc/alloca-opt.texi: New file.
20017
20018 2004-12-17  Jim Meyering  <jim@meyering.net>
20019
20020         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
20021         Otherwise, install-sh could exit with improper exit status when
20022         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
20023
20024 2004-12-16  Simon Josefsson  <jas@extundo.com>
20025
20026         * tests/test-base64.c: Add license.
20027
20028 2004-12-15  Stepan Kasal  <address@hidden>
20029
20030         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
20031
20032 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
20033
20034         * modules/getcwd (Files): Add m4/d-ino.m4.
20035         Suggested by Mark D. Baushke.
20036
20037 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
20038
20039         * lib/getdate.y (textint): New member "negative".
20040         (time_zone_hhmm): New function.
20041         Expect 14 shift-reduce conflicts, not 13.
20042         (o_colon_minutes): New rule.
20043         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
20044         (yylex): Set the "negative" member of signed numbers.
20045
20046 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
20047
20048         * doc/getdate.texi (Time of day items, Time zone items):
20049         Describe new formats +00:00, UTC+00:00.
20050
20051 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
20052
20053         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
20054         spurious "-l"s.  Problem reported by Stepan Kasal.
20055
20056 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
20057
20058         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
20059         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
20060
20061 2004-12-04  Simon Josefsson  <jas@extundo.com>
20062
20063         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
20064         Vandoorselaere <yoann@prelude-ids.org>.
20065
20066 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
20067
20068         Changes imported from coreutils.
20069         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
20070         exist.
20071         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
20072
20073 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
20074
20075         Changes imported from coreutils.
20076         * lib/hard-locale.c: Assume <locale.h> exists.
20077         Include "strdup.h".
20078         (GLIBC_VERSION): New macro.
20079         (hard_locale): Assume setlocale exists.
20080         Rewrite to avoid #ifdef.
20081         Use strdup rather than malloc + strcpy.
20082         * lib/human.c: Assume <locale.h> exists.
20083         (human_readable): Assume localeconv exists.
20084
20085 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
20086
20087         * modules/hard-locale (Depends-on): Add strdup.
20088
20089 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
20090
20091         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
20092         convert T2, not T.  (Imported from libc.)
20093
20094 2004-11-30  Simon Josefsson  <jas@extundo.com>
20095
20096         * modules/restrict (License): Change to LGPL.
20097
20098 2004-11-30  Simon Josefsson  <jas@extundo.com>
20099
20100         * m4/restrict.m4: Add copyright and copying conditions.
20101
20102 2004-11-30  Simon Josefsson  <jas@extundo.com>
20103
20104         * m4/base64.m4: New file.
20105
20106 2004-11-30  Simon Josefsson  <jas@extundo.com>
20107
20108         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
20109         base64.
20110
20111         * tests/test-base64.c: New file.
20112
20113         * modules/base64: New file.
20114
20115 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
20116
20117         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
20118         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
20119
20120         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
20121
20122 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
20123
20124         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
20125         (__getcwd.c): Don't restore errno; glibc doesn't.
20126         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
20127         first, falling back to our code only if its results look suspicious.
20128         Ensure that the resulting buffer is only as large as necessary.
20129
20130         * lib/readutmp.c: Include readutmp.h first.
20131         Include <errno.h>, since readutmp.h no longer does that.
20132         * lib/readutmp.h: Don't include <errno.h>,
20133         <sys/param.h>, <time.h>; not needed to establish interface.
20134         (errno): Remove decl.
20135         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
20136         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
20137         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
20138
20139 2004-11-28  Simon Josefsson  <jas@extundo.com>
20140
20141         * lib/base64.h, base64.c: New file.
20142
20143 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
20144
20145         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
20146
20147 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
20148
20149         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
20150         (Depends-on): Remove pathmax, same.  Add mempcpy.
20151         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
20152         (Makefile.am): Append getcwd.h to lib_SOURCES.
20153         (Include): Add getcwd.h.
20154         (Maintainer): Change from Jim Meyering to "all, glibc",
20155         since getdate now uses intended-for-glibc code.
20156         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
20157         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
20158
20159 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
20160
20161         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
20162         HP's ANSI C compiler.
20163         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
20164         Declaring int functions causes warnings on some modern systems and
20165         shouldn't be needed to compile on ancient ones.
20166         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
20167         defined.
20168
20169         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
20170         with the following changes.
20171         (__set_errno): Parenthesize properly.
20172         Include <stdbool.h>.
20173         (MIN, MAX, MATCHING_INO): New macros.
20174         (__getcwd): Define with prototype, not K&R form.
20175         Use heuristics to allocate default buffer on stack if possible.
20176         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
20177         behavior, and to avoid the PATH_MAX limit when computing
20178         ../../../../...
20179         Use MATCHING_INO to compare inode number to file.
20180         Check for arithmetic overflow in size calculations.
20181         Fix bug in reallocation of dot array that caused getcwd to fail
20182         on directories nested deeper than 75.
20183         Be more careful about saving errno on error.
20184         Do not use realloc; use only free+malloc, as this is a bit
20185         more flexible and avoids a needless copy operation.
20186         Do not inspect st_dev and st_ino for symbolic links; POSIX
20187         doesn't specify the latter.
20188         Check for closedir errors.
20189         Avoid needless casts.
20190         Use "#ifdef weak_alias" around weak_alias, to be like other
20191         glibc code.
20192         The following changes to getcwd.c have effect only when used in
20193         gnulib; they have no effect inside glibc proper.
20194         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
20195         as alloca isn't used.
20196         (alloca, __alloca): Likewise.
20197         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
20198         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
20199         unconditionally, as gnulib assumes C89 or better.
20200         Do not include <sys/param.h>.
20201         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
20202         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
20203         better.
20204         (NULL) [!defined NULL]: Remove; we assume C89 or better.
20205         Include <dirent.h> in a way that is compatible with modern Autoconf.
20206         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
20207         New macros, if not already defined.
20208         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
20209         Use "_LIBC", not "defined _LIBC", for consistency.
20210         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
20211         a mempcpy module.
20212         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
20213         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
20214         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
20215         credit only to Jim Meyering and adjust the copyright dates.
20216         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
20217         <stdlib.h>, <unistd.h>, "pathmax.h".
20218         Instead, include "xgetcwd.h" (first) and "getcwd.h".
20219         (INITIAL_BUFFER_SIZE): Remove.
20220         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
20221
20222 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
20223
20224         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
20225         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
20226         Use the _ONCE methods, for efficiency.
20227         Check for fcntl.h.  In test program, include <errno.h>
20228         and <fcntl.h> if available.  Remove old K&R cruft from
20229         test program.  Check for common errors in GNU/Linux,
20230         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
20231         don't do AC_LIBOBJ, as that's getcwd.m4's job.
20232         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
20233         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
20234         name accordingly.
20235         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
20236         accommodate new getcwd.c.
20237         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
20238         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
20239         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
20240         that's all we need now.
20241
20242 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20243
20244         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
20245         argp-parse.c depends on getopt internals, that means we should
20246         always use our getopt, to be on the safe side.
20247         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
20248         order not to spoil the result of an eventual previous invocation
20249         of gl_GETOPT_SUBSTITUTE.
20250
20251 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20252
20253         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
20254         redefinition warnings. To avoid them, include the defines
20255         in `#if !defined __need_getopt ... #endif'. The only place
20256         where __getopt_argv_const is used is in definitions
20257         of getopt_long and getopt_long_only below, which are as well
20258         protected by `#ifndef __need_getopt'.
20259         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
20260         __need_getopt after including <stdio.h> and <unistd.h> These
20261         headers might have defined it.
20262
20263 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
20264
20265         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
20266
20267 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
20268
20269         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
20270         (futimens): New function, which uses futimes if available.
20271         (futimens, utimens): Support timespec==NULL, with same semantics
20272         as utime and utimens.
20273         * lib/utimens.h (futimens): New decl.
20274
20275 2004-11-23  Jim Meyering  <jim@meyering.net>
20276
20277         * lib/getopt_.h: Remove trailing blanks.
20278
20279 2004-11-23  Jim Meyering  <jim@meyering.net>
20280
20281         * lib/__fpending.c: Add comment.
20282
20283 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
20284
20285         * modules/canonicalize (Depends-on): Add xreadlink.
20286         Problem reported by James Youngman.
20287
20288 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
20289
20290         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
20291         New macros.
20292         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
20293         optopt): Use them instead of invoking ## directly; otherwise, the
20294         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
20295
20296 2004-11-19  Bruno Haible  <bruno@clisp.org>
20297
20298         * lib/strtok_r.c: Move comments from here...
20299         * lib/strtok_r.h: ... to here.
20300
20301 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
20302
20303         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
20304         implementations that mishandle size_t overflow.
20305
20306 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
20307
20308         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
20309         might fail.  Problem reported by Yoann Vandoorselaere.
20310         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
20311         implementations that mishandle size_t overflow.
20312
20313 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20314
20315         * modules/canon-host (Depends-on): Add strdup.
20316
20317 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20318
20319         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
20320
20321 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20322
20323         * lib/canon-host.c: Include "strdup.h".
20324         (canon_host): Use getaddrinfo if available, so that IPv6 works.
20325         Use strdup instead of malloc/strcpy to duplicate strings.
20326
20327         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
20328         (human_space_before_unit): New constant.
20329         * lib/human.c (human_readable): Support it.
20330
20331         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
20332         (xgetcwd): Set errno correctly when failing.
20333         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
20334         the failure is actually due to a PATH_MAX problem.
20335
20336         Further getopt changes to make it more likely that glibc will
20337         buy the changes back.
20338         * lib/getopt.c (POSIXLY_CORRECT): New constant.
20339         (getopt): Use it, so to preserve glibc semantic
20340         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
20341         when compiling for libc.
20342         * lib/getopt_.h (__getopt_argv_const): Bring it back.
20343         (getopt_long, getopt_long_only): Use it.
20344
20345         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
20346         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
20347         (getopt): Argv is now char * const *, as per standard.
20348         (_getopt_internal_r, _getopt_internal): Argv is now char **,
20349         not char *__getopt_argv_const *.
20350         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
20351         _getopt_long_only_r): Likewise.
20352         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
20353         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
20354         _getopt_long_r, _getopt_long_only_r): Likewise.
20355         * lib/getopt_.h (__getopt_argv_const): Remove.
20356         (getopt): Argv is now char * const *, as per standard.
20357
20358         * lib/getdate.y (tORDINAL): New token.
20359         (day, relunit): Allow it for relative times.
20360         (relative_time_table): Use tORDINAL for ordinals.
20361
20362 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
20363
20364         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
20365         Document that "second" isn't allowed as an ordinal number.
20366
20367 2004-11-16  Jim Meyering  <jim@meyering.net>
20368
20369         * modules/closeout (Depends-on): Add fpending.
20370
20371 2004-11-15  Jim Meyering  <jim@meyering.net>
20372
20373         * lib/closeout.c: Include "__fpending.h" once again.
20374         Include <stdbool.h>.
20375         (close_stdout): Don't fail just because stdout was closed initially,
20376         since some programs don't write to stdout in the normal course of
20377         operation (other than --version and --help), and we don't want this
20378         function to make e.g. `touch file >&-' fail.
20379         But do fail if it was closed and someone has tried to write to it.
20380         E.g., `printf foo >&-' must fail.
20381
20382 2004-11-13  Jim Meyering  <jim@meyering.net>
20383
20384         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
20385
20386 2004-11-12  Simon Josefsson  <jas@extundo.com>
20387
20388         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
20389         small doc fix is still pending.
20390
20391 2004-11-11  Simon Josefsson  <jas@extundo.com>
20392
20393         * modules/strtok_r: New file.
20394
20395         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20396         strtok_r.
20397
20398 2004-11-11  Simon Josefsson  <jas@extundo.com>
20399
20400         * m4/strtok_r.m4: New file.
20401
20402         * m4/getopt.m4: Replace opterr.
20403
20404 2004-11-11  Simon Josefsson  <jas@extundo.com>
20405
20406         * lib/strtok_r.h, strtok_r.c: New file.
20407
20408 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
20409
20410         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
20411         of replacing opterr, getopt, etc.  This should handle the
20412         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
20413
20414 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
20415
20416         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
20417         we can stop lying to compilers about the constness of argv when we
20418         are compiled outside glibc.
20419         (getopt, getopt_long, getopt_long_only): Use it.
20420         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
20421         _getopt_internal, getopt): Likewise.
20422         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
20423         _getopt_long_only_r): Likewise.
20424         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
20425         _getopt_long_r, _getopt_long_only_r): Likewise.
20426
20427         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
20428         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
20429         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
20430         the other external symbols.
20431         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
20432         declaration, since the above renaming now works around collisions.
20433
20434 2004-11-11  Jim Meyering  <jim@meyering.net>
20435
20436         * lib/linebreak.c: Remove trailing blanks.
20437         * lib/alloca_.h: Likewise.
20438         * lib/acosl.c: Likewise.
20439         * lib/euidaccess.c: Likewise.
20440         * lib/allocsa.h: Likewise.
20441
20442 2004-11-10  Simon Josefsson  <jas@extundo.com>
20443
20444         * m4/getaddrinfo.m4: New file.
20445
20446 2004-11-10  Simon Josefsson  <jas@extundo.com>
20447
20448         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
20449
20450 2004-11-10  Simon Josefsson  <jas@extundo.com>
20451
20452         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20453         getaddrinfo.
20454
20455         * modules/getaddrinfo: New file.
20456
20457 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20458
20459         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
20460
20461 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
20462
20463         * lib/mktime.c (SHR): New macro, which is a portable
20464         substitute for >> that should work even on Crays.
20465         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
20466         Problem reported by Mark D. Baushke in
20467         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
20468         * lib/getdate.y (SHR): Likewise.
20469         (tm_diff): Use it.
20470         * lib/strftime.c (SHR): Likewise.
20471         (tm_diff): Use it.
20472         * lib/quotearg.c (struct quoting_options): Use unsigned int for
20473         quote_these_too, so that right shifts are well defined.  All uses
20474         changed.
20475
20476 2004-11-10  Jim Meyering  <jim@meyering.net>
20477
20478         Ensure that no close failure goes unreported.
20479         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
20480         return early when it seems there's nothing to flush.
20481         Don't include __fpending.h.
20482
20483 2004-11-10  Jim Meyering  <jim@meyering.net>
20484
20485         * modules/closeout (Depends-on): Remove fpending.
20486
20487 2004-11-10  Jim Meyering  <jim@meyering.net>
20488
20489         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
20490
20491 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
20492
20493         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
20494         gl_FUNC_STRFTIME.
20495         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
20496         and AC_REQUIRE when possible, to avoid duplicate checks.
20497         Check for <wchar.h>.
20498
20499 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
20500
20501         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
20502
20503 2004-11-09  Bruno Haible  <bruno@clisp.org>
20504
20505         * m4/sockpfaf.m4: New file.
20506
20507 2004-11-05  Bruno Haible  <bruno@clisp.org>
20508
20509         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
20510         Reported by Mark D. Baushke <mdb@cvshome.org>.
20511
20512 2004-11-04  Bruno Haible  <bruno@clisp.org>
20513
20514         2004-09-11  Bruno Haible  <bruno@clisp.org>
20515                 * allocsa.valgrind: New file.
20516         2004-02-06  Bruno Haible  <bruno@clisp.org>
20517                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
20518                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
20519                 Reported by Christopher Seip <chris.seip@hp.com>.
20520
20521 2004-11-04  Bruno Haible  <bruno@clisp.org>
20522
20523         * modules/allocsa (Files): Add lib/allocsa.valgrind.
20524         (Makefile.am): Distribute it.
20525
20526 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
20527
20528         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
20529         with errno == ERANGE if the buffer is too small.
20530         Problem reported by Mark D. Baushke.
20531
20532 2004-11-03  Albert Chin  <china@thewrittenword.com>
20533             Paul Eggert  <eggert@cs.ucla.edu>
20534
20535         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
20536         equivalent, substitute $ac_type for equivalent type rather than
20537         blindly using uint32_t *always* which won't work if uint32_t is not
20538         available.  Define _UINT32_T to work around typedef of uint32_t if
20539         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
20540         2.5.1.
20541
20542 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20543
20544         * m4/jm-macros.m4: Sync from coreutils.
20545         (gl_MACROS): Check for mbrlen, for pathchk.
20546         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
20547
20548 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20549
20550         * lib/xreadlink.c (MAXSIZE): New macro.
20551         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
20552         size does not exceed MAXSIZE.  Avoid cast.
20553         As suggested by Mark D. Baushke in
20554         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
20555         if readlink fails with buffer size just under MAXSIZE, try again
20556         with MAXSIZE.
20557
20558 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
20559
20560         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
20561
20562 2004-11-02  Derek R. Price  <derek@ximbiot.com>
20563         and  Paul Eggert  <eggert@cs.ucla.edu>
20564
20565         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
20566         (get_date): Overparenthesize to avoid GCC warning.
20567
20568 2004-11-02  Bruno Haible  <bruno@clisp.org>
20569
20570         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
20571         returns void.
20572
20573 2004-11-02  Bruno Haible  <bruno@clisp.org>
20574
20575         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
20576         function returns void.
20577
20578 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
20579
20580         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
20581         fflush_unlocked, flockfile, funlockfile, funlockfile,
20582         fputs_unlocked, putc_unlocked.
20583
20584 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
20585
20586         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
20587         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
20588         already declared.
20589
20590 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20591
20592         * modules/getdate (Files): Add doc/getdate.texi.
20593         (Depends-on): Add setenv, xalloc.
20594
20595 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20596
20597         * lib/getdate.y: Add support for TZ="foo" within a date string.
20598         Fix some bugs near time_t boundaries.  Reject dates with
20599         out-of-range components, e.g., "Sept 31".
20600         Include <stdlib.h>, "setenv.h", "xalloc.h".
20601         (ISDIGIT_LOCALE): Remove; unused.
20602         Note that the TZ and time functions used here are not reentrant.
20603         (mktime_ok, get_tz): New functions.
20604         (TZBUFSIZE): New constant.
20605         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
20606         This requires that we sometimes generate our own TZ="XXX..." setting.
20607
20608 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
20609
20610         * doc/getdate.texi: New file, from coreutils with modifications for
20611         the new TZ parsing.
20612
20613 2004-10-27  Derek R. Price  <derek@ximbiot.com>
20614
20615         * lib/mktime.c (not_equal_tm): Remove redundant check.
20616
20617 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20618
20619         * modules/regex (lib_SOURCES): Add regex.c.
20620         Reported by James Youngman in
20621         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
20622
20623 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20624
20625         * lib/getdate.y: Use Bison 1.875 features, and some minor
20626         code cleanups.  This change does not affect semantics.
20627         Don't include <stdlib.h>; no longer needed.
20628         Don't include unlocked-io.h; only the "#if TEST" code uses
20629         stdio, and performance isn't crucial there.
20630         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
20631         Bison 1.875 features as described below.
20632         All uses of "PC." replaced by "pc->".
20633         (YYSTYPE): Add a forward declaration.
20634         (yylex, yyerror): Use full prototypes in forward decls.
20635         Use "%pure-parser" rather than obsolescent "%pure_parser".
20636         Use %parse-param and %lex-param instead of obsolescent
20637         YYPARSE_PARAM and YYLEX_PARAM.
20638         (meridian_table, month_and_day_table, time_units_table,
20639         relative_time_table, time_zone_table, military_table,
20640         lookup_zone, lookup_word, get_date):
20641         Use NULL instead of 0 where appropriate.
20642         (to_hour): Avoid abort (), to avoid a dependency on
20643         stdlib.h.
20644         (yyerror, yylex): Now accepts parser_control * arg.
20645         (main) [TEST]: Use '\0' rather than 0 for char.
20646
20647 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20648
20649         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
20650
20651 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20652
20653         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
20654         It's now the caller's responsibility to handle the case where
20655         !HAVE_GETPAGESIZE && !defined getpagesize.
20656
20657         * lib/mktime.c (leapyear): Arg is long int, not int.
20658
20659 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
20660
20661         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
20662
20663 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20664
20665         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
20666         missing.  Problem reported by James Youngman.
20667
20668 2004-10-16  Simon Josefsson  <jas@extundo.com>
20669
20670         * gnulib-tool: Fix comments.  Fix parse problem.
20671         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
20672
20673 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
20674
20675         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
20676         implementation of getopt_long.  Problem reported by Alexander Taler in:
20677         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
20678
20679 2004-10-15  Bruno Haible  <bruno@clisp.org>
20680
20681         * gnulib-tool: Untabify. Initialize supplied_libname.
20682         (func_usage): More homogenous output.
20683         (func_modules_transitive_closure, func_modules_to_filelist,
20684         func_emit_lib_Makefile_am): New functions.
20685         (func_import): New function, extracted from big case statement. Use
20686         func_get_license, func_modules_transitive_closure,
20687         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
20688         opt_lgpl. Don't use test -a, as it's not portable.
20689         (func_create_testdir): Use func_modules_transitive_closure,
20690         func_modules_to_filelist, func_emit_lib_Makefile_am.
20691
20692 2004-10-15  Bruno Haible  <bruno@clisp.org>
20693
20694         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
20695
20696 2004-10-15  Bruno Haible  <bruno@clisp.org>
20697
20698         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
20699         the portions belonging to each module.
20700         Suggested by Derek Robert Price <derek@ximbiot.com>.
20701
20702 2004-10-12  Simon Josefsson  <jas@extundo.com>
20703
20704         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
20705         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
20706         to real functions.
20707
20708 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20709
20710         * modules/vsnprintf: New file.
20711
20712 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20713
20714         * m4/vsnprintf.m4: New file.
20715
20716 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20717
20718         * lib/vsnprintf.h: New file.
20719         * lib/vsnprintf.c: New file.
20720
20721 2004-10-11  Bruno Haible  <bruno@clisp.org>
20722
20723         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
20724         vsnprintf.
20725
20726 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
20727
20728         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
20729
20730 2004-10-07  Bruno Haible  <bruno@clisp.org>
20731
20732         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
20733         fits into the provided buffer.
20734
20735 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
20736
20737         * lib/diacrit.c, diacrit.h: Add GPL notice.
20738
20739         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
20740         notice.
20741         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
20742         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
20743         This avoids a potential constant-folding bug.
20744
20745 2004-10-05  Bruno Haible  <bruno@clisp.org>
20746
20747         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
20748         for the declaration of strsep.
20749
20750 2004-10-05  Bruno Haible  <bruno@clisp.org>
20751
20752         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
20753
20754 2004-10-04  Simon Josefsson  <jas@extundo.com>
20755
20756         * modules/memmem: New file.
20757         * tests/test-memmem.c: New file.
20758         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
20759
20760 2004-10-04  Simon Josefsson  <jas@extundo.com>
20761
20762         * m4/memmem.m4: New file.
20763
20764 2004-10-04  Simon Josefsson  <jas@extundo.com>
20765
20766         * lib/memmem.h: New file.
20767         * lib/memmem.c: New file, taken from glibc.
20768
20769 2004-10-04  Simon Josefsson  <jas@extundo.com>
20770
20771         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
20772         '#ifdef USE_UNLOCKED_IO'.
20773
20774 2004-10-04  Simon Josefsson  <jas@extundo.com>
20775
20776         * config/srclist.txt: Add memmem from glibc.
20777
20778 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20779
20780         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
20781
20782         * modules/argmatch, modules/argp, modules/closeout, modules/error,
20783         modules/exclude, modules/getdate, modules/getline,
20784         modules/getndelim2, modules/getpass, modules/getpass-gnu,
20785         modules/getusershell, modules/linebuffer, modules/md5,
20786         modules/mountlist, modules/posixtm, modules/readtokens,
20787         modules/readutmp, modules/regex, modules/sha1,
20788         modules/version-etc, modules/yesno:
20789         Remove dependency on unlocked-io.
20790
20791 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20792
20793         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
20794
20795         * m4/unlocked-io.m4: Add copyright notice.
20796         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
20797
20798 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20799
20800         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
20801         * lib/xmalloc.c (xmemdup): Likewise.
20802         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
20803         XFREE): Remove these long-obsolescent macros.
20804         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
20805         * lib/xstrdup.c: Remove.
20806
20807         * lib/regex.c (re_comp): Cast gettext return value to char *,
20808         Problem reported by Martin Neitzel via Mark D. Baushke.
20809
20810 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
20811
20812         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
20813         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
20814         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
20815         regex.c, sha1.c, version-etc.c, yesno.c:
20816         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
20817         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
20818         the includer's responsibility.
20819
20820         Sync from coreutils.
20821
20822         * lib/modechange.c (mode_compile): Don't decrement a pointer that
20823         points to the start of a string, as the C Standard says the
20824         resulting behavior is undefined.
20825
20826         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
20827         simple -> simple_backups, numbered_existing ->
20828         numbered_existing_backups, numbered -> numbered_backups
20829         to avoid shadowing problems.  All uses changed.
20830         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
20831         * lib/backupfile.c (check_extension, numbered_backup):
20832         Rename locals to avoid shadowing 'basename'.
20833         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
20834         once.
20835
20836         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
20837         * lib/.cvsignore: Add getopt.h.
20838
20839 2004-10-04  Bruno Haible  <bruno@clisp.org>
20840
20841         * modules/README: New file.
20842         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
20843         not a module.
20844
20845 2004-10-02  Jim Meyering  <jim@meyering.net>
20846
20847         * lib/dirfd.h, getpagesize.h: Add copyright notice.
20848
20849 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20850
20851         * modules/strsep: New file.
20852
20853 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20854
20855         * m4/strsep.m4: New file.
20856
20857 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20858
20859         * lib/strsep.h: New file.
20860         * lib/strsep.c: New file.
20861
20862 2004-10-01  Simon Josefsson  <jas@extundo.com>
20863
20864         * lib/snprintf.c (snprintf): Handle size==0.
20865
20866 2004-10-01  Simon Josefsson  <jas@extundo.com>
20867             Bruno Haible  <bruno@clisp.org>
20868
20869         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
20870         (snprintf): Declare 'args'.
20871
20872 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
20873
20874         * lib/snprintf.c: Remove comments as to why each header is needed.
20875
20876 2004-10-01  Bruno Haible  <bruno@clisp.org>
20877
20878         * MODULES.html.sh: Add strsep.
20879
20880 2004-09-30  Simon Josefsson  <jas@extundo.com>
20881
20882         * modules/snprintf: New file.
20883
20884 2004-09-30  Simon Josefsson  <jas@extundo.com>
20885
20886         * m4/snprintf.m4: New file.
20887
20888 2004-09-30  Simon Josefsson  <jas@extundo.com>
20889
20890         * lib/snprintf.h, lib/snprintf.c: New files.
20891
20892 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20893
20894         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
20895         (hol_entry_help): Never translate an empty string.
20896         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
20897         * lib/argp.h (OPTION_NO_TRANS): New option.
20898
20899 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20900
20901         * modules/argp (Maintainer): Replace Simon Josefsson
20902         by Sergey Poznyakoff.
20903
20904 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20905
20906         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
20907         changes merged back into glibc.
20908
20909 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20910
20911         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
20912
20913 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
20914
20915         * lib/xvasprintf.c: Include xalloc.h.
20916         (xvasprintf): Use xalloc_die, not xmalloc_die.
20917
20918 2004-09-29  Bruno Haible  <bruno@clisp.org>
20919
20920         * modules/alloca-opt: New file, derived from modules/alloca.
20921         * modules/allocsa: Depend on alloca-opt instead of alloca.
20922         * modules/setenv: Likewise.
20923         * modules/vasnprintf: Likewise.
20924         * MODULES.html.sh: Add alloca-opt.
20925
20926 2004-09-28  Simon Josefsson  <jas@extundo.com>
20927
20928         * gnulib-tool: New parameter --lgpl, to asseert that modules are
20929         LGPL, and to replace license template from GPL to LGPL.
20930
20931 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20932
20933         * modules/dummy: Change license to LGPL.
20934
20935 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20936
20937         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
20938
20939 2004-09-24  Simon Josefsson  <jas@extundo.com>
20940
20941         * modules/minmax (License): Change from GPL to LGPL.
20942
20943 2004-09-23  Simon Josefsson  <jas@extundo.com>
20944
20945         * gnulib-tool (--import): Typo.
20946
20947 2004-09-23  Simon Josefsson  <jas@extundo.com>
20948
20949         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
20950
20951 2004-09-22  Bruno Haible  <bruno@clisp.org>
20952
20953         * modules/*: Add 'License' field.
20954         * gnulib-tool: Accept --extract-license option.
20955         (func_get_license): New function.
20956
20957 2004-09-21  Bruno Haible  <bruno@clisp.org>
20958
20959         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
20960         Reported by Simon Josefsson.
20961
20962 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20963
20964         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
20965         gl_AC_TYPE_LONG_LONG.
20966
20967 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20968
20969         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
20970
20971 2004-09-18  Simon Josefsson  <jas@extundo.com>
20972         and  Paul Eggert  <eggert@cs.ucla.edu>
20973
20974         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
20975         calls with autoreconf.  Define GL_LIB.
20976
20977 2004-09-14  Karl Berry  <karl@gnu.org>
20978
20979         * config/srclist.txt: unsync setenv.c, sigh.
20980
20981 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20982
20983         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
20984         Problem reported by Bruno Haible in:
20985         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
20986
20987 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20988
20989         * config/srclist.txt: Comment out argp-pvh.c.
20990
20991 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
20992
20993         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
20994         in case some system header has #define'd it.  Problem reported by
20995         Soeren D. Schulze in
20996         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
20997
20998 2004-09-09  Karl Berry  <karl@gnu.org>
20999
21000         * regex.[ch]: delete from the root.  These were supposed to be
21001                 synced with emacs cvs, but this has not happened for about
21002                 a year, and anyway nothing else uses emacs regex.[ch].
21003                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
21004                 lib/regex[.ch] is untouched.
21005
21006 2004-09-09  Bruno Haible  <bruno@clisp.org>
21007
21008         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
21009
21010 2004-09-09  Bruno Haible  <bruno@clisp.org>
21011
21012         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
21013         modifications.
21014         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
21015
21016 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
21017
21018         * modules/xvasprintf: New file.
21019         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
21020
21021 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
21022
21023         * lib/xvasprintf.h: New file.
21024         * lib/xvasprintf.c: New file.
21025         * lib/xasprintf.c: New file.
21026
21027 2004-09-08  Bruno Haible  <bruno@clisp.org>
21028
21029         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
21030
21031 2004-09-08  Bruno Haible  <bruno@clisp.org>
21032
21033         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
21034         length is > INT_MAX.
21035         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
21036         more.
21037
21038 2004-09-08  Bruno Haible  <bruno@clisp.org>
21039
21040         * lib/stdint_.h: New file, taken from GNU clisp.
21041
21042 2004-09-08  Bruno Haible  <bruno@clisp.org>
21043             Oskar Liljeblad  <oskar@osk.mine.nu>
21044
21045         * modules/stdint: New file.
21046         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
21047
21048 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21049
21050         Import from coreutils.
21051         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
21052         strings on unbounded length.  alloca's performance benefits aren't
21053         that important here.
21054         (V_STRDUP): Remove.
21055         (parse_with_separator): New function, with most of the internals
21056         of the old parse_user_spec.  Allow user to omit both user and group,
21057         for compatibility with FreeBSD.
21058         Clone only the user name, not the entire spec.
21059         Do not set *uid, *gid unless entirely successful.
21060         Avoid memory leak in some failing cases.
21061         Fix regression for USER.GROUP reported by Dmitry V. Levin in
21062         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
21063         (parse_user_spec): Rewrite to use parse_with_separator.
21064
21065 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21066
21067         * modules/userspec: Don't depend on alloca.
21068
21069 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21070
21071         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
21072
21073 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
21074
21075         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
21076         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
21077         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
21078
21079 2004-08-16  Simon Josefsson  <jas@extundo.com>
21080
21081         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
21082         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
21083         Add --dry-run for --import.
21084         Let user provided command line parameters override configure.ac
21085         settings.
21086
21087 2004-08-12  Simon Josefsson  <jas@extundo.com>
21088
21089         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
21090         as discussed with Paul Eggert in threads rooted at
21091         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
21092         and
21093         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
21094         Before, the test was empty, and relied on ELIDE_CODE in source
21095         code.)
21096         (gl_PREREQ_GETOPT): New macro.
21097         (gl_GETOPT): Use them.
21098
21099 2004-08-12  Simon Josefsson  <jas@extundo.com>
21100
21101         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
21102         * lib/getopt_.h: Renamed from getopt.h.
21103
21104 2004-08-12  Simon Josefsson  <jas@extundo.com>
21105
21106         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
21107         Change default library name from libfoo to libgnu.
21108         Now, if you have a configure.ac that says:
21109                 gl_SOURCE_BASE(gl)
21110                 gl_M4_BASE(gl/m4)
21111                 gl_MODULES(error getopt etcetera)
21112                 gl_INIT
21113         you can import all you need by running:
21114                 ../gnulib/gnulib-tool --import
21115
21116         * modules/getopt (Files): Rename getopt.h to getopt_.h.
21117         (Makefile.am): Rewrite, use logic from argz.
21118         (Include): Use <getopt.h> instead of "getopt.h".
21119
21120 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
21121
21122         * modules/argp (Files): Add m4/unlocked-io.m4.
21123         (Depends-on): Add extensions.
21124
21125 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
21126
21127         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
21128         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
21129         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
21130         Check for program_invocation_name, program_invocation_short_name,
21131         flockfile, funlockfile, features.h, _getopt_long_only_r.
21132
21133 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
21134
21135         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
21136         its complicated substitute.
21137         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
21138         and program_invocation_name.
21139         (__argp_basename) [!_LIBC]: Remove; the only use was
21140         replaced by its body.
21141         (__argp_short_program_name): Change condition from
21142         !defined __argp_short_program_name to
21143         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
21144         to match argp-namefrob.h.
21145         (__argp_failure): Don't assume strerror_r returns char *.
21146         * lib/argp-parse.c (N_): Define unconditionally.
21147         (argp_default_options): Fill out initializers with 0 to avoid
21148         gcc warnings.
21149
21150 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
21151
21152         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
21153         getopt1.c.
21154
21155 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
21156
21157         Merge from coreutils.
21158
21159         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
21160
21161         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
21162         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
21163
21164 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
21165
21166         Merge from coreutils.
21167
21168         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
21169         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
21170         for Reliant Unix 5.43.
21171
21172         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
21173         (union fooround): Use uintmax_t, not long int.
21174         The rest is a merge from libc:
21175         [defined _LIBC]: Include <shlib-compat.h>.
21176         (_obstack) [defined _LIBC]: Remove after 2.3.4.
21177
21178         * lib/settime.c (settime): Recode to avoid warning with
21179         Sun Forte C 6U2.
21180
21181         * lib/strverscmp.c: Convert to UTF-8.
21182
21183 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
21184
21185         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
21186         m4/uintmax_t.m4.
21187
21188 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21189
21190         * modules/xalloc-die: New file.
21191         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
21192
21193         * modules/md5 (Files): Add m4/uint32_t.m4.
21194         * modules/sha1: Renamed from modules/sha.
21195         (Files):
21196         Rename lib/sha.h to lib/sha1.h.
21197         Rename lib/sha.c to lib/sha1.c.
21198         Rename m4/sha.m4 to m4/sha1.m4.
21199         (lib_SOURCES): Likewise.
21200         (configure.ac): Rename gl_SHA to gl_SHA1.
21201         (Include): sha.h -> sha1.h.
21202
21203 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21204
21205         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
21206         * m4/sha1.m4: Renamed from sha.m4.
21207         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
21208
21209 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21210
21211         * lib/obstack.h (obstack_empty_p):
21212         Don't assume that chunk->contents is suitably aligned.
21213         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
21214         Likewise. Problem reported by Benno in
21215         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
21216
21217         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
21218         readable.  This could be improved further but it'd take some work.
21219
21220 2004-08-08  Simon Josefsson  <jas@extundo.com>
21221
21222         * modules/xgethostname (Depends-on): Remove exit and error (not
21223         used).
21224
21225         * modules/getpass-gnu: Add getpass.h.
21226         (Depends-on): Add stdbool.
21227         * modules/getpass: Add getpass.h.
21228
21229 2004-08-08  Simon Josefsson  <jas@extundo.com>
21230
21231         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
21232         Check getpass declaration.
21233
21234 2004-08-08  Simon Josefsson  <jas@extundo.com>
21235
21236         * lib/xgethostname.c: Don't include error.h (not used).
21237
21238         * lib/getpass.h: Add.
21239         * lib/getpass.c: Include getpass.h first.
21240
21241 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
21242
21243         * lib/xalloc-die.c: New file.
21244         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
21245         All uses removed.
21246         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
21247         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
21248         xalloc-die.c.
21249         (_, N_, xalloc_die): Move to xalloc-die.c.
21250         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
21251         so that we needn't mess with xalloc_msg_memory_exhausted.
21252
21253         * lib/sha1.h: Renamed from sha.h.
21254         (SHA1_H): Renamed from _SHA_H.
21255         (sha1_ctx): Renamed from sha_ctx.
21256         (sha1_init_ctx): Renamed from sha_init_ctx.
21257         (sha1_process_block): Renamed from sha_process_block.
21258         (sha1_process_bytes): Renamed from sha_process_bytes.
21259         (sha1_finish_ctx): Renamed from sha_finish_ctx.
21260         (sha1_read_ctx): Renamed from sha_read_ctx.
21261         (sha1_stream): Renamed from sha_stream.
21262         (sha1_buffer): Renamed from sha_buffer.
21263         * lib/sha1.c: Likewise; renamed from sha.c.
21264         Do not include <sys/types.h>.
21265         Include <stddef.h> rather than <stdlib.h>.
21266
21267 2004-08-08  Bruno Haible  <bruno@clisp.org>
21268
21269         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
21270         FILESYSTEM_PREFIX_LEN.
21271         * lib/progreloc.c: Likewise.
21272         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
21273
21274 2004-08-06  Simon Josefsson  <jas@extundo.com>
21275
21276         * modules/progname (Depends-on): Don't depend on stdbool.
21277
21278 2004-08-06  Simon Josefsson  <jas@extundo.com>
21279
21280         * modules/getsubopt: New file.
21281         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21282         getsubopt.
21283
21284 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21285
21286         More merge from coreutils.
21287
21288         * m4/utimens.m4, m4/utimecmp.m4: New files.
21289         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
21290         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
21291         prereq.m4, sha.m4: Import changes from coreutils.
21292
21293 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21294
21295         More merge from coreutils.
21296         * modules/raise, modules/readtokens0, modules/utimens:
21297         * modules/utimecmp, module/xnanosleep: New files.
21298         * modules/strftime: Add lib/strftime.h.
21299         Change include from <time.h> to "strftime.h".
21300         * modules/yesno: Add lib/yesno.h.
21301         * modules/backupfile: Remove lib/addext.c.
21302         * modules/euidaccess: Add stat-macros.h.
21303         * modules/canonicalize, modules/euidaccess,
21304         modules/filemode, modules/lchown, modules/makepath,
21305         modules/rmdir, modules/stat: Likewise.
21306
21307 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
21308
21309         Merge from tar.
21310         * lib/argp-help.c (make_hol, hol_append): Don't assume that
21311         SIZE_MAX is a valid preprocessor constant.
21312         (__argp_basename): Change from "#ifndef _LIBC"
21313         to "#ifndef __argp_short_program_name", so that
21314         we don't compile these functions for tar.
21315
21316         More merges from coreutils.
21317         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
21318         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
21319         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
21320         * lib/addext.c: Remove; no longer needed.
21321         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
21322         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
21323         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
21324         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
21325         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
21326         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
21327         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
21328         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
21329         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
21330         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
21331         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
21332         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
21333         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
21334         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
21335         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
21336         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
21337         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
21338         Import changes from coreutils.
21339
21340 2004-08-05  Simon Josefsson  <jas@extundo.com>
21341
21342         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
21343
21344 2004-08-05  Simon Josefsson  <jas@extundo.com>
21345
21346         * m4/getsubopt.m4: New file.
21347
21348 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21349
21350         Merge from coreutils.
21351
21352         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
21353         * m4/getcwd-path-max.m4: New files.
21354
21355         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
21356         FILESYSTEM_PREFIX_LEN ->
21357         FILE_SYSTEM_PREFIX_LEN.
21358         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
21359         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
21360         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
21361         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
21362
21363         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
21364         prerequisite modules now handle the DOS stuff.
21365         Don't check for unistd.h.
21366
21367 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21368
21369         Merge from coreutils.
21370
21371         * lib/.gdb-history: Remove; this doesn't belong here.
21372
21373         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
21374         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
21375         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
21376         * lib/getcwd.c: New files.
21377
21378         * lib/dirname.h: Include <stdbool.h>.
21379         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
21380         for consistency with POSIX terminology.  All uses changed.
21381         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
21382         (strip_trailing_slashes): Use bool for booleans.
21383         * lib/stripslash.c (strip_trailing_slashes): Likewise.
21384
21385         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
21386         sometimes returns a positive errno value even when it succeeds.
21387         (print_errno_message) [!LIBC]: Fall back on strerror if
21388         __strerror_r fails.
21389
21390         * lib/path-concat.c (mempcpy): Don't define if a system header defines
21391         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
21392         (longest_relative_suffix): New function.
21393         (path_concat): Use it.  Assume first argument is not NULL.
21394         Port to DOS.  Omit redundant separators.
21395         Report an error instead of returning NULL.
21396         Use mempcpy instead of memcpy.
21397         (xpath_concat): Remove: not declared or used.
21398
21399         * lib/same.h: Include <stdbool.h>
21400         (same_name): Return bool, not int.
21401         * lib/same.c (same_name): Likewise.
21402         (errno): Don't declare; we assume C89 or better now.
21403
21404         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
21405         if not already defined.
21406
21407         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
21408         * lib/dup-safer.c (errno): Likewise.
21409
21410 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
21411
21412         Merge from coreutils.
21413         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
21414         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
21415         * modules/path-concat: Don't depend on strdup.
21416
21417 2004-08-03  Simon Josefsson  <jas@extundo.com>
21418
21419         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
21420         * lib/progname.h: Don't include stdbool.h.
21421
21422 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21423
21424         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
21425         * MODULES.html.sh (func_all_modules): Remove fatal.
21426
21427 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21428
21429         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
21430
21431 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
21432
21433         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
21434         working.
21435
21436 2004-08-02  Simon Josefsson  <jas@extundo.com>
21437
21438         * lib/getsubopt.h: New file, with comments from Bruno Haible.
21439         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
21440         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
21441
21442 2004-08-01  Simon Josefsson  <jas@extundo.com>
21443
21444         * lib/xgetdomainname.c: Include stdlib.h, for free().
21445
21446 2004-07-19  Bruno Haible  <bruno@clisp.org>
21447
21448         * MODULES.html.sh (func_all_modules): Add dummy.
21449
21450 2004-07-16  Simon Josefsson  <jas@extundo.com>
21451
21452         * modules/dummy: New file.
21453
21454 2004-07-16  Simon Josefsson  <jas@extundo.com>
21455
21456         * lib/dummy.c: New file.
21457
21458 2004-07-16  Bruno Haible  <bruno@clisp.org>
21459
21460         * lib/backupfile.h: Add extern "C" for C++.
21461         * lib/closeout.h: Likewise.
21462         * lib/copy-file.h: Likewise.
21463         * lib/findprog.h: Likewise.
21464         * lib/full-write.h: Likewise.
21465         * lib/pathname.h: Likewise.
21466         * lib/progname.h: Likewise.
21467         * lib/stpcpy.h: Likewise.
21468         * lib/stpncpy.h: Likewise.
21469         * lib/strcase.h: Likewise.
21470         * lib/strstr.h: Likewise.
21471         * lib/xalloc.h: Likewise.
21472
21473         * lib/mbswidth.h: Add extern "C" for C++.
21474         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
21475
21476 2004-07-13  Robert Millan  <robertmh@gnu.org>
21477
21478         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
21479
21480 2004-07-09  Simon Josefsson  <jas@extundo.com>
21481
21482         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
21483         failed without this.)
21484
21485 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21486
21487         * modules/chown (Files): Add lib/fchown-stub.c, since
21488         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
21489
21490 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21491
21492         * lib/fchown-stub.c: New file.
21493
21494 2004-06-24  Jim Meyering  <jim@meyering.net>
21495
21496         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
21497
21498 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21499
21500         * modules/argz: Omit "#include".
21501
21502         * MODULES.html.sh (func_all_modules): Add calloc, to match
21503         2004-06-01 addition of calloc module.
21504
21505 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21506
21507         * m4/argz.m4: New file, which is autoupdated from libtool.
21508
21509 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21510
21511         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
21512         libtool.
21513
21514 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21515
21516         * config/srclist-update: Don't insist on "USA." before the
21517         close-comment, as libtool omits the period and puts the */ on a
21518         separate line.
21519         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
21520         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
21521
21522 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
21523
21524         * modules/argz: New file.
21525         * MODULES.html.sh (func_all_modules): Add argz.
21526
21527 2004-06-12  Jim Meyering  <jim@meyering.net>
21528         and  Paul Eggert  <eggert@cs.ucla.edu>
21529
21530         * modules/hash (Files): Add lib/xalloc.h.
21531         * modules/pipe (Depends-on): Add wait-process.
21532         * modules/stat (Depends-on): Add xalloc.
21533         * modules/userspec (Files): Add lib/userspec.h.
21534         * modules/xstrto
21535
21536         Upgrade from gettext-0.13.
21537         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
21538         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
21539         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
21540
21541 2004-06-10  Jim Meyering  <jim@meyering.net>
21542
21543         * lib/calloc.c: New file.
21544
21545 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
21546
21547         * lib/getdate.y (yylex): Allow space between sign and number.
21548         Problem reported by Dan Jacobson.
21549
21550 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
21551
21552         Merge from coreutils CVS.
21553
21554         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
21555         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
21556         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
21557         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
21558         xstrtol.m4: Fix copyright date and/or serial number.
21559
21560         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
21561         See if we need an fchown replacement.
21562         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
21563         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
21564         and use the replacement function if we detect either defect.
21565
21566         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
21567         gl_UTIMECMP.
21568
21569 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
21570         and  Jim Meyering  <jim@meyering.net>
21571
21572         Merge from coreutils CVS.
21573
21574         * lib/stat-macros.h: New file, with contents from file-type.h
21575         and coreutils' system.h.
21576         * lib/file-type.c: Include "stat-macros.h".
21577         * lib/file-type.h (file_type): Move all macro definitions to new file,
21578         stat-macros.h.
21579
21580         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
21581         Wrap old code with this conditional.
21582         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
21583         function that does not dereference symlinks.
21584         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
21585
21586         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
21587         dependency problems.
21588         (xreadlink): Accept new arg SIZE, for efficiency.
21589         All decls and uses changed.
21590         * lib/xreadlink.h: Include <stddef.h>, for size_t.
21591
21592         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
21593         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
21594
21595         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
21596         sysexits.h.
21597
21598 2004-06-01  Jim Meyering  <jim@meyering.net>
21599
21600         * m4/calloc.m4: New file.
21601
21602 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
21603
21604         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
21605         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
21606         Also, fix a typo in a diagnostic.
21607
21608 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
21609
21610         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
21611         or AC_FUNC_REALLOC.
21612
21613 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
21614
21615         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
21616         macros to be defined.
21617         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
21618         the allocator returns NULL because the requested size is zero.
21619
21620 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
21621
21622         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
21623         var.  Add comment explaining why libc still defines it.  This
21624         merges the following patch from glibc:
21625         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
21626
21627 2004-05-20  Andreas Schwab  <schwab@suse.de>
21628
21629         * m4/free.m4: Replace free if it not known to work, not the other
21630         way round.
21631
21632 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21633
21634         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
21635         present in glibc since revision 1.1 of this file.
21636         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
21637         obstack_alignment_mask, obstack_alloc, obstack_base,
21638         obstack_blank, obstack_blank_fast, obstack_chunk_size,
21639         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
21640         obstack_grow0, obstack_init, obstack_int_grow,
21641         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
21642         obstack_next_free, obstack_object_size, obstack_ptr_grow,
21643         obstack_ptr_grow_fast, obstack_room): Remove declarations of
21644         nonexistent functions.
21645
21646 2004-05-18  Karl Berry  <karl@gnu.org>
21647
21648         * config/srclist.txt: break link for vasnprintf.c.
21649
21650 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21651
21652         Port obstack to the AS/400, where pointers are 16 bytes wide and
21653         you cannot cast an integer to a valid pointer.  This patch is
21654         currently waiting to be integrated into glibc; see
21655         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
21656
21657         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
21658         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
21659         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
21660         (struct obstack): temp member is now a union of a pointer and
21661         an integer, instead of an integer.  All integer uses changed.
21662         This does not affect the physical layout of struct obstack,
21663         except on hosts (like the AS/400) where the size or alignment of
21664         void * is greater than that of ptrdiff_t.
21665         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
21666         __STDC__)]: Store temporary in pointer member of union, not
21667         integer member.
21668         * lib/obstack.c: Include <stddef.h>, for offsetof.
21669         (struct fooalign): Remove; it doesn't need a name.
21670         (union fooround): Change double to long double, and add void *.
21671         (DEFAULT_ALIGNMENT): Use offsetof to compute.
21672         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
21673         not a macro.  Hence the values are always int; so remove all
21674         casts-to-int in uses.
21675
21676 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21677
21678         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
21679         we can get this patch merged into glibc.
21680
21681 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21682             Paul Eggert  <eggert@cs.ucla.edu>
21683
21684         * m4/argp: Depend on alloca.
21685
21686 2004-05-17  Derek R. Price  <derek@ximbiot.com>
21687             Paul Eggert  <eggert@cs.ucla.edu>
21688
21689         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
21690         freecoding.
21691
21692 2004-05-17  Bruno Haible  <bruno@clisp.org>
21693
21694         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
21695         precision that consists of a '.' followed by an empty digit string.
21696         Patch by Tor Lillqvist <tml@iki.fi>.
21697
21698 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21699
21700         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
21701         for backward compatibility with older code.  We need our own
21702         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
21703         it under some other name, and our alloca.h will define it.
21704
21705 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21706             Derek Price  <derek@ximbiot.com>
21707
21708         * lib/alloca.c: Include <alloca.h>, to get our interface.
21709         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
21710         include <alloca.h> first.  Use C89 prototype for alloca; this
21711         requires including <stddef.h> for size_t.  Use extern "C" if C++.
21712         Use #elif for simplicity, since we can assume C89 now.
21713         Don't try to source the system alloca.h since it will not be found
21714         and to prevent recursively including its replacement.
21715         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
21716         * lib/regex.c: Likewise.
21717
21718 2004-05-16  Derek Price  <derek@ximbiot.com>
21719             Paul Eggert  <eggert@cs.ucla.edu>
21720
21721         getline cleanup.  This changes the getndelim2 API: both order of
21722         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
21723         no delimiter).
21724
21725         * lib/getline.c: Don't include stddef.h or stdio.h, since our
21726         interface does that.
21727         (getline): Always use getdelim, so that we don't have two
21728         copies of this code.
21729         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
21730         if available.
21731         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
21732         (GETNDELIM2_MAXIMUM): New macro.
21733         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
21734         instead of the old practice of delim2==0.  All callers changed.
21735         Return -1 on overflow, instead of returning junk.
21736         Do not set *linesize unless allocation succeeds.
21737         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
21738         that we include sys/types.h.
21739         * lib/getnline.h: Likewise.
21740         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
21741         (getndelim2): Reorder arguments.
21742         * lib/getnline.c (getnline, getndelim):
21743         Don't discard the NMAX argument.
21744         (getnline): Invoke getndelim, to avoid code duplication.
21745         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
21746         of (size_t) -1 by callers of the getnline family.
21747
21748 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21749
21750         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
21751         Check for gettimeofday.
21752         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
21753         Check for settimeofday, stime.
21754
21755 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
21756
21757         * lib/nanosleep.c (suspended): Change its type from int to
21758         sig_atomic_t volatile.
21759         (first_call): Make it private to rpl_nanosleep, and have it
21760         be zero initially as that's a bit faster.
21761         (my_usleep): Round up fractional times instead of truncating them,
21762         as this is the usual meaning for 'sleep'.
21763
21764         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
21765         doesn't work.
21766         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
21767         (ENOSYS): Define if not defined.
21768         (settime): Fall back on stime if it exists and settimeofday fails.
21769         But don't bother with fallbacks if a method fails with errno == EPERM.
21770
21771 2004-05-11  Jim Meyering  <jim@meyering.net>
21772
21773         Prior to this change, the save_cwd caller required read access to the
21774         current directory on most systems (ones with the fchdir function).
21775
21776         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
21777         fails, try write-only, and finally, resort to using xgetcwd.
21778
21779 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
21780
21781         * lib/obstack.c, obstack.h: Import changes from libc.
21782
21783 2004-04-28  Bruno Haible  <bruno@clisp.org>
21784
21785         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
21786         also implicitly appends .exe to executables.
21787         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
21788         accepts Windows pathnames.
21789         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21790         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21791         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
21792         Treat Cygwin like Windows, since it now accepts Windows pathnames.
21793         Reported by Derek Robert Price <derek@ximbiot.com>.
21794
21795 2004-04-21  Karl Berry  <karl@gnu.org>
21796
21797         * config/srclist.txt (localcharset.c): break sync.
21798
21799 2004-04-20  Paul Eggert  <eggert@twinsun.com>
21800
21801         * m4/host-os.m4: Add a copyright notice.
21802
21803 2004-04-20  Jim Meyering  <jim@meyering.net>
21804
21805         Change UTILS_ to gl_ in AC_DEFINE'd names.
21806         Change utils_- and jm_-prefixed variables, too.
21807         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
21808         UTILS_FUNC_MKDIR_TRAILING_SLASH.
21809         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
21810
21811         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
21812         Don't emit trailing blanks.
21813         Also rename jm_-prefixed variables to have gl_ prefix.
21814
21815         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
21816         Also rename jm_-prefixed variables to have gl_ prefix.
21817
21818         * m4/jm-macros.m4: Reflect the renamings.
21819         * m4/prereq.m4: Likewise.
21820
21821 2004-04-20  Jim Meyering  <jim@meyering.net>
21822
21823         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
21824         memory.
21825
21826 2004-04-20  Jim Meyering  <jim@meyering.net>
21827             Bruno Haible  <bruno@clisp.org>
21828
21829         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
21830         memory when realloc fails.
21831
21832 2004-04-19  Jim Meyering  <jim@meyering.net>
21833
21834         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
21835         now that readutmp.c may call `free (0)'.
21836
21837 2004-04-19  Bruno Haible  <bruno@clisp.org>
21838
21839         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
21840         * m4/inttypes_h.m4: Likewise.
21841         * m4/stdint_h.m4: Likewise.
21842         * m4/intmax_t.m4: Likewise.
21843         * m4/uintmax_t.m4: Likewise.
21844
21845 2004-04-18  Jim Meyering  <jim@meyering.net>
21846
21847         * m4/prereq.m4: Don't forbid jm_ prefix.
21848
21849         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
21850         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
21851         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
21852         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
21853         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
21854         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
21855         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
21856         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
21857         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
21858         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
21859         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
21860         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
21861         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
21862         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
21863         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
21864         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
21865         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
21866         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
21867         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
21868
21869 2004-04-18  Jim Meyering  <jim@meyering.net>
21870
21871         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
21872         failure, don't leak memory and do call END_UTMP_ENT.
21873
21874 2004-04-16  Jim Meyering  <jim@meyering.net>
21875
21876         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
21877         coreutils' stat program.
21878         (gl_PREREQ): Don't require jm_PREREQ_STAT.
21879
21880 2004-04-11  Paul Eggert  <eggert@twinsun.com>
21881
21882         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
21883         C89.
21884         (CHAR_BIT): Remove, since we assume C89.
21885         Include <stdint.h> if available, as per current Autoconf CVS advice.
21886
21887 2004-03-31  Jim Meyering  <jim@meyering.net>
21888
21889         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
21890         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
21891         * m4/xalloc.m4: Likewise.
21892
21893 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21894
21895         Merge from coreutils.
21896
21897         * m4/inttostr.m4: New file.
21898         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
21899         Require AM_STDBOOL_H and gl_TIMESPEC instead.
21900         Require gl_CLOCK_TIME.
21901         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
21902
21903 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21904
21905         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
21906         not bool, to be more consistent with Unix conventions.
21907         Suggested by Bruno Haible.
21908
21909         Merge from coreutils.
21910
21911         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
21912         * lib/umaxtostr.c: New files.
21913
21914         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
21915         the usual <time.h> dance.
21916         (get_date): Change signature to support fractional time stamps.
21917         All callers changed.
21918         * lib/getdate.y: Include "getdate.h" first, as we can now
21919         assume C89 and don't need to worry about 'const'.
21920         Similarly, include "unlocked-io.h" near start, not in middle.
21921         Include <limits.h>.
21922         (textint.value): Use long int rather than int.
21923         (textint.digits): Use size_t rather than int.
21924         (BILLION, LOG10_BILLION): New constants.
21925         (parser_control): New member rel_ns.  Members day_ordinal,
21926         time_zone, month, day, hour, minutes, rel_year, rel_month,
21927         rel_day, rel_hour, rel_minutes, rel_seconds
21928         are now long int, not int.  Member seconds is now struct timespec,
21929         not int.  New member timespec_seen.  Members dates_seen, days_seen,
21930         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
21931         not int.
21932         (%union.intval): Now long int, not int.
21933         New member timespec.
21934         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
21935         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
21936         (spec): Now is a timespec or an item list.
21937         (timespec, items): New nonterminals.
21938         (time, rel, relunit, number, get_date):
21939         Add support for fractional seconds.
21940         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
21941         (gmtime, localtime, mktime): Remove decls; not needed with C89.
21942         (to_hour): First arg is now long int, not int.
21943         (to_year): Returns long int, not int.
21944         Don't treat year -70 like 70.
21945         (tm_diff): Returns long int, not int.
21946         (lookup_word): Use bool instead of int when appropriate.
21947         (yylex): Use size_t for count, not int.
21948         Detect overflow when parsing large integer constants.
21949         Add support for fractions.
21950         (get_date): Make pointers 'const' if possible.
21951         Use more-portable code to detect integer overflow.
21952         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
21953         Don't use ctime; it's not reliable if the year has >4 digits.
21954
21955         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
21956         This is for compatibility with BSD.
21957
21958         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
21959         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
21960         From coreutils' system.h.
21961
21962         * lib/userspec.c: Don't include "posixver.h".
21963         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
21964         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
21965         compatible extension.  Simplify code by removing a boolean int
21966         that was always nonzero if a string was nonnull.
21967
21968 2004-03-30  Jim Meyering  <jim@meyering.net>
21969
21970         Merge from coreutils.
21971
21972         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
21973         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
21974         on some systems one must include <grp.h> before it.
21975         Reported by Christian Krackowizer.
21976
21977 2004-03-30  Jim Meyering  <jim@meyering.net>
21978
21979         Merge from coreutils.
21980
21981         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
21982
21983         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
21984         an empty input stream.
21985
21986         * lib/readtokens.c: Include <stdbool.h>.
21987         (readtoken): Use `size_t' rather than int/long.
21988         All callers adjusted.
21989         Use `bool' rather than `int' where appropriate.
21990         Use memset rather than an explicit loop.
21991         Use x2nrealloc rather than xrealloc.
21992         Allow the use of `\0' as a delimiter.
21993         (readtokens): Likewise.
21994         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
21995
21996 2004-03-30  Jim Meyering  <jim@meyering.net>
21997
21998         * m4/realloc.m4: Remove file, since now it does no more than
21999         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
22000         the `configure.ac' section of module/realloc.
22001         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
22002
22003 2004-03-30  Bruno Haible  <bruno@clisp.org>
22004
22005         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
22006         nonnull.
22007
22008 2004-03-29  Paul Eggert  <eggert@twinsun.com>
22009
22010         Merge changes to getloadavg.c from coreutils and Emacs.
22011
22012         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
22013         Define to an expression, not to the empty string.
22014         Include cloexec.h and xalloc.h.
22015         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
22016         Use set_cloexec_flag rather than rolling our own.
22017         * lib/cloexec.c, lib/cloexec.h: New files.
22018
22019 2004-03-29  Paul Eggert  <eggert@twinsun.com>
22020
22021         * m4/cloexec.m4: New file.
22022
22023 2004-03-18  Paul Eggert  <eggert@twinsun.com>
22024
22025         * lib/getopt.h: Sync with libc CVS.
22026
22027 2004-03-18  Paul Eggert  <eggert@twinsun.com>
22028             Bruno Haible  <bruno@clisp.org>
22029
22030         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
22031         mbswidth.
22032
22033 2004-03-18  Paul Eggert  <eggert@twinsun.com>
22034             Bruno Haible  <bruno@clisp.org>
22035
22036         * lib/mbswidth.h: Include <wchar.h> only if
22037         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
22038         <wchar.h>.
22039         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
22040
22041 2004-03-09  Paul Eggert  <eggert@twinsun.com>
22042
22043         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
22044         Sync with libc CVS.
22045         * lib/getopt_int.h: New file, also synced from libc.
22046
22047 2004-03-09  Paul Eggert  <eggert@twinsun.com>
22048
22049         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
22050         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
22051         Bring back getopt.c, getopt.h, getopt1.c.
22052
22053 2004-03-07  Paul Eggert  <eggert@twinsun.com>
22054
22055         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
22056         All uses changed.  Check for sa_sigaction member; this fixes
22057         a bug first reported by Jason Andrade in
22058         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
22059
22060 2004-03-07  Paul Eggert  <eggert@twinsun.com>
22061
22062         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
22063         '#if' expressions.  Unlike the code it replaces, it does not
22064         depend on (defined _SC_PAGESIZE).  However, it does depend on
22065         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
22066         first reported by Jason Andrade in
22067         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
22068
22069 2004-02-25  Simon Josefsson  <jas@extundo.com>
22070
22071         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
22072
22073 2004-02-25  Simon Josefsson  <jas@extundo.com>
22074
22075         * lib/strdup.h: New file.
22076         * lib/strdup.c: Include it.
22077         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
22078         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
22079
22080 2004-02-23  Karl Berry  <karl@gnu.org>
22081
22082         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
22083         (from fencepost.gnu.org:/gd/gnuorg).
22084
22085 2004-02-23  Karl Berry  <karl@gnu.org>
22086
22087         * config/srclistvars.sh (GNUORG) [karl]: redefine.
22088         * config/srclist.txt: add maintain/standards documents.
22089
22090 2004-02-18  Bruno Haible  <bruno@clisp.org>
22091
22092         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
22093         Reported by Derek Robert Price <derek@ximbiot.com>.
22094
22095 2004-02-16  Karl Berry  <karl@gnu.org>
22096
22097         * config/mkinstalldirs, install-sh: update from automake.
22098
22099 2004-02-06  Karl Berry  <karl@gnu.org>
22100
22101         * m4/po.m4: update from gettext 0.14.1.
22102
22103 2004-02-06  Karl Berry  <karl@gnu.org>
22104
22105         * lib/config.charset: update from gettext 0.14.1.
22106
22107 2004-02-05  Paul Eggert  <eggert@twinsun.com>
22108
22109         Add comments and code, prompted by suggestions from Bruno Haible
22110         for sh-quote.
22111         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
22112         describing the enum quoting_style values.
22113         * lib/quotearg.c (quotearg_alloc): New function.
22114         (quotearg_buffer_restyled): Treat lone { and } as special.
22115         Treat = as special.  Work around bug with older shells
22116         that "see" a '\' that is really the 2nd byte of a multibyte char.
22117         Quote empty string with shell_quoting_style.
22118
22119 2004-02-03  Bruno Haible  <bruno@clisp.org>
22120
22121         * m4/pipe.m4: New file, from GNU gettext.
22122
22123 2004-02-03  Bruno Haible  <bruno@clisp.org>
22124
22125         * lib/pipe.h: New file, from GNU gettext.
22126         * lib/pipe.c: New file, from GNU gettext.
22127
22128 2004-01-27  Bruno Haible  <bruno@clisp.org>
22129
22130         * m4/execute.m4: New file, from GNU gettext.
22131
22132 2004-01-27  Bruno Haible  <bruno@clisp.org>
22133
22134         * lib/execute.h: New file, from GNU gettext.
22135         * lib/execute.c: New file, from GNU gettext.
22136         * lib/w32spawn.h: New file, from GNU gettext.
22137
22138 2004-01-24  Paul Eggert  <eggert@twinsun.com>
22139
22140         Merge from diffutils.
22141
22142         * lib/file-type.c (file_type): Add typed memory objects.
22143         * lib/file-type.h (S_TYPEISTMO): New macro.
22144
22145         * lib/c-stack.h (c_stack_action): Remove argv argument.
22146         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
22147         (die): Don't calculate message unless segv_action returns.
22148         (get_stack_location, min_address_from_argv, max_address_from_argv,
22149         volatile stack_base, volatile_stack_size): Remove.
22150         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
22151         that every segmentation violation is a stack overflow.  (Ouch!)
22152         See Debian bug 136249 (still outstanding) for more info about why
22153         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
22154
22155 2004-01-24  Paul Eggert  <eggert@twinsun.com>
22156
22157         Exit-status fix from coreutils.
22158
22159         Use exit_failure consistently in place of EXIT_FAILURE,
22160         so that program exit statuses are consistent on failure.
22161
22162         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
22163         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
22164         * lib/argmatch.h: Comment fix to match the above.
22165         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
22166         Now a macro referring to exit_failure, instead of a separate
22167         variable.  Include "exitfail.h" to get it.
22168         * lib/xstrtol.h: Include "exitfail.h".
22169         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
22170
22171         * lib/long-options.c (parse_long_options): Use prototype
22172         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
22173         for clarity.
22174
22175 2004-01-21  Jim Meyering  <jim@meyering.net>
22176
22177         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
22178         so as not to conflict with a different-sized __mktime_internal
22179         function in GNU libc.
22180         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
22181         Problem building statically-linked `ls' reported by Michael Brunnbauer.
22182
22183 2004-01-20  Karl Berry  <karl@gnu.org>
22184
22185         * config/config.guess: update from config.
22186
22187         * config/srclistvars.sh: GNUWWWLICENSES for karl.
22188
22189 2004-01-20  Bruno Haible  <bruno@clisp.org>
22190
22191         Safer stack allocation.
22192         * lib/setenv.c: Include allocsa.h.
22193         (alloca): Remove fallback definition.
22194         (freea): Remove macro.
22195         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
22196         instead of freea.
22197
22198 2004-01-20  Bruno Haible  <bruno@clisp.org>
22199
22200         * m4/eealloc.m4: New file, from GNU gettext.
22201
22202 2004-01-20  Bruno Haible  <bruno@clisp.org>
22203
22204         * m4/allocsa.m4: New file, from GNU gettext.
22205
22206 2004-01-20  Bruno Haible  <bruno@clisp.org>
22207
22208         * lib/xallocsa.h: New file, from GNU gettext.
22209         * lib/xallocsa.c: New file, from GNU gettext.
22210
22211 2004-01-20  Bruno Haible  <bruno@clisp.org>
22212
22213         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
22214
22215 2004-01-20  Bruno Haible  <bruno@clisp.org>
22216
22217         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
22218         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
22219         specially.
22220
22221 2004-01-20  Bruno Haible  <bruno@clisp.org>
22222
22223         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
22224         patch.
22225
22226 2004-01-20  Bruno Haible  <bruno@clisp.org>
22227
22228         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
22229
22230 2004-01-20  Bruno Haible  <bruno@clisp.org>
22231
22232         * lib/eealloc.h: New file.
22233
22234 2004-01-20  Bruno Haible  <bruno@clisp.org>
22235
22236         * lib/binary-io.h: Avoid warnings on Cygwin.
22237
22238 2004-01-20  Bruno Haible  <bruno@clisp.org>
22239
22240         * lib/allocsa.h: New file, from GNU gettext.
22241         * lib/allocsa.c: New file, from GNU gettext.
22242
22243 2004-01-18  Karl Berry  <karl@gnu.org>
22244
22245         * doc/gpl.texi, doc/lgpl.texi: new files.
22246
22247 2004-01-18  Karl Berry  <karl@gnu.org>
22248
22249         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
22250         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
22251
22252 2004-01-15  Paul Eggert  <eggert@twinsun.com>
22253
22254         Merge from coreutils.
22255
22256         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
22257         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
22258         (gl_DEFAULT_POSIX2_VERSION): Move
22259         the documentation from 'configure' into 'config.hin',
22260         so that 'configure --help' isn't burdened by it and
22261         we don't have to worry about its formatting there.
22262         Reword the documentation so that it's more succinct
22263         and can be run together into a single paragraph.
22264         * m4/same.m4 (gl_SAME): Check for pathconf.
22265
22266 2004-01-15  Paul Eggert  <eggert@twinsun.com>
22267
22268         Merge from coreutils.
22269
22270         * lib/posixver.c: Include posixver.h.
22271
22272         * lib/same.c: Include <stdbool.h>, <limits.h>.
22273         (_POSIX_NAME_MAX): Define if not defined.
22274         (MIN): New macro.
22275         (same_name): If file names are silently truncated, report
22276         that the file names are the same if they are the same after
22277         the silent truncation.
22278
22279         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
22280         conversion function.
22281         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
22282         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
22283         longer needed.
22284
22285 2004-01-15  Jim Meyering  <jim@meyering.net>
22286
22287         Merge from coreutils.
22288
22289         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
22290         if no library is required.
22291         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
22292         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
22293         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
22294         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
22295         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
22296         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
22297         value, $ac_cv_search_crypt, if it's "none required".
22298         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
22299         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
22300         not gl_FUNC_GETLOADAVG.
22301         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
22302         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
22303
22304 2004-01-15  Jim Meyering  <jim@meyering.net>
22305
22306         Merge from coreutils.
22307
22308         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
22309         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
22310         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
22311
22312         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
22313         optional configure-time default.
22314
22315         * lib/version-etc.c (version_etc_copyright): Update copyright date.
22316
22317         * lib/xreadlink.c (xreadlink): Correct outdated comment.
22318
22319 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
22320
22321         Merge from coreutils.
22322
22323         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
22324         value, $ac_cv_search_nanosleep, if it's "none required".
22325
22326 2004-01-14  Paul Eggert  <eggert@twinsun.com>
22327
22328         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
22329         with like-named macro in fnmatch.c.
22330         (EXT): Use an internal constant instead.
22331
22332         Merge fnmatch patches from glibc.
22333         * lib/fnmatch.c (mbsinit): Remove define.
22334         Add libc_hidden_ver (__fnmatch, fnmatch).
22335         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
22336         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
22337
22338 2004-01-14  Karl Berry  <karl@gnu.org>
22339
22340         * config/install-sh: update from automake.
22341
22342 2004-01-13  Karl Berry  <karl@gnu.org>
22343
22344         * config/install-sh: update from automake.
22345
22346 2004-01-09  Karl Berry  <karl@gnu.org>
22347
22348         * config/install-sh: update from automake.
22349
22350 2004-01-05  Karl Berry  <karl@gnu.org>
22351
22352         * config/config.{sub,guess}: update from config.
22353
22354 2003-12-31  Karl Berry  <karl@gnu.org>
22355
22356         * config/depcomp: update from automake.
22357
22358 2003-12-14  Karl Berry  <karl@gnu.org>
22359
22360         * lib/config.charset: update from gettext-runtime.
22361
22362 2003-12-03  Paul Eggert  <eggert@twinsun.com>
22363
22364         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
22365         Bug reported by Alfred M. Szmidt.
22366
22367 2003-12-03  Bruno Haible  <bruno@clisp.org>
22368
22369         * m4/gettext.m4: Upgrade from gettext-0.13.
22370         * m4/po.m4: Upgrade from gettext-0.13.
22371         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
22372         * m4/intmax.m4: New file, from gettext-0.13.
22373         * m4/printf-posix.m4: New file, from gettext-0.13.
22374
22375 2003-11-29  Karl Berry  <karl@gnu.org>
22376
22377         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
22378
22379 2003-11-25  Paul Eggert  <eggert@twinsun.com>
22380             Bruno Haible  <bruno@clisp.org>
22381
22382         * lib/printf-parse.h: Don't include sys/types.h.
22383         (ARG_NONE): New macro.
22384         (char_directive): Change type of *arg_index fields to size_t.
22385         * lib/printf-parse.c: Don't include sys/types.h.
22386         (SSIZE_MAX): Remove macro.
22387         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
22388         Remove unnecessary overflow check.
22389         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
22390         fields.
22391
22392 2003-11-25  Bruno Haible  <bruno@clisp.org>
22393
22394         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
22395
22396 2003-11-25  Bruno Haible  <bruno@clisp.org>
22397
22398         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
22399         gt_TYPE_SSIZE_T.
22400
22401 2003-11-24  Paul Eggert  <eggert@twinsun.com>
22402
22403         * modules/alloca: Remove dependency on xalloc.
22404
22405 2003-11-24  Paul Eggert  <eggert@twinsun.com>
22406
22407         * lib/alloca.c: Remove dependency on xalloc module.
22408         (xalloc_die): Remove.
22409         (memory_full) [!defined emacs]: New macro.
22410         [!defined emacs]: Don't include xalloc.h.
22411         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
22412         address arithmetic overflows.  Change datatypes a bit to avoid
22413         unnecessary casts.
22414
22415 2003-11-22  Jim Meyering  <jim@meyering.net>
22416
22417         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
22418         s/size/size_t/.
22419
22420 2003-11-21  Karl Berry  <karl@gnu.org>
22421
22422         * config/config.{sub,guess}: update from config.
22423
22424 2003-11-18  Karl Berry  <karl@gnu.org>
22425
22426         * config/config.{sub,guess}: update from config.
22427
22428         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
22429
22430 2003-11-17  Paul Eggert  <eggert@twinsun.com>
22431
22432         * README: Mention that S+T cannot overflow if S is the size of
22433         an existing object and T is sufficiently small.
22434
22435 2003-11-17  Jim Meyering  <jim@meyering.net>
22436
22437         On systems without utime and without a utimes function capable of
22438         dealing with a NULL struct utimbuf* argument, this utime replacement
22439         could -- in unusual circumstances -- leak a file descriptor.
22440         * lib/utime.c: Include <unistd.h> and <errno.h>.
22441         (utime_null): Be sure to close `fd' and to preserve errno.
22442         Reported by Geoff Collyer via Arnold Robbins.
22443
22444 2003-11-17  Bruno Haible  <bruno@clisp.org>
22445
22446         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
22447         (Depends-on): Add xsize.
22448
22449 2003-11-17  Bruno Haible  <bruno@clisp.org>
22450
22451         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
22452
22453 2003-11-17  Bruno Haible  <bruno@clisp.org>
22454
22455         * lib/vasnprintf.c (alloca): Remove fallback definition.
22456         (freea): Remove definition.
22457         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
22458         Reported by Paul Eggert.
22459
22460 2003-11-16  Paul Eggert  <eggert@twinsun.com>
22461             Bruno Haible  <bruno@clisp.org>
22462
22463         Protect against address arithmetic overflow.
22464         * lib/printf-args.h: Include stddef.h.
22465         (arguments): Change type of field 'count' to size_t.
22466         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
22467         'unsigned int' where appropriate.
22468         * lib/printf-parse.h: Include sys/types.h.
22469         (char_directive): Change type of *arg_index fields to ssize_t.
22470         (char_directives): Change type of fields 'count', max_*_length to
22471         size_t.
22472         * lib/printf-parse.c: Include sys/types.h and xsize.h.
22473         (SSIZE_MAX): Define fallback value.
22474         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
22475         instead of 'int' where appropriate. Check a_allocated, d_allocated
22476         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
22477         * lib/vasnprintf.c: Include xsize.h.
22478         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
22479         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
22480         overflow. Avoid wraparound when converting a width or precision from
22481         decimal to binary.
22482
22483 2003-11-16  Bruno Haible  <bruno@clisp.org>
22484
22485         Update from GNU gettext.
22486         * lib/printf-parse.c: Generalize to it can be compiled for wide
22487         strings.
22488         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
22489         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
22490         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
22491         SNPRINTF): New macros.
22492         Don't include <alloca.h> if the file is used inside libintl.
22493         (local_wcslen): New function, for Solaris 2.5.1.
22494         (VASNPRINTF): Use it instead of wcslen.
22495
22496 2003-11-16  Bruno Haible  <bruno@clisp.org>
22497
22498         * lib/xsize.h (xmax): New function.
22499         (xsum, xsum3, xsum4): Declare as "pure" functions.
22500
22501 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22502
22503         * modules/xalloc (Files): Undo latest change, since xalloc.h
22504         no longer needs SIZE_MAX or PTRDIFF_MAX.
22505
22506 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22507
22508         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
22509         gl_PTRDIFF_MAX.
22510
22511 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22512
22513         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
22514         "return", to pacify some unknown compiler.  Problem reported
22515         by Joerg Schilling.
22516
22517 2003-11-12  Paul Eggert  <eggert@twinsun.com>
22518
22519         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
22520         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
22521         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
22522         heuristic is just as accurate as far as we know, and it removes a
22523         dependency on size_max.m4 and ptrdiff_max.m4.
22524
22525 2003-11-11  Bruno Haible  <bruno@clisp.org>
22526
22527         * modules/xsize (Files): Add m4/size_max.m4.
22528         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
22529
22530 2003-11-11  Bruno Haible  <bruno@clisp.org>
22531
22532         * m4/size_max.m4: New file.
22533         * m4/ptrdiff_max.m4: New file.
22534         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
22535         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
22536         (gl_XALLOC): Invoke it.
22537
22538 2003-11-11  Bruno Haible  <bruno@clisp.org>
22539
22540         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
22541         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
22542         defined.
22543
22544 2003-11-10  Paul Eggert  <eggert@twinsun.com>
22545
22546         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
22547         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
22548         rejected some allocations of exactly SIZE_MAX - 2 bytes.
22549         From Bruno Haible.
22550         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
22551         not (size_t) -1, since it's defined here.
22552
22553 2003-11-09  Karl Berry  <karl@gnu.org>
22554
22555         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
22556
22557 2003-11-06  Paul Eggert  <eggert@twinsun.com>
22558
22559         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
22560         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
22561         Reject sizes of exactly SIZE_MAX bytes.
22562         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
22563         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
22564
22565 2003-11-05  Bruno Haible  <bruno@clisp.org>
22566
22567         * lib/xsize.h: Include limits.h, to avoid a possible collision with
22568         SIZE_MAX defined in <limits.h> on Solaris.
22569
22570 2003-11-04  Jim Meyering  <jim@meyering.net>
22571
22572         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
22573         variable names, rather than @VAR@.
22574         * modules/poll: Likewise.
22575
22576 2003-11-04  Bruno Haible  <bruno@clisp.org>
22577
22578         * modules/xsize: New file.
22579         * modules/linebreak: Depend on xsize.
22580         * MODULES.html.sh (func_all_modules): Add xsize.
22581
22582 2003-11-04  Bruno Haible  <bruno@clisp.org>
22583
22584         * m4/xsize.m4: New file.
22585
22586 2003-11-04  Bruno Haible  <bruno@clisp.org>
22587
22588         * lib/xsize.h: New file.
22589         * lib/linebreak.c: Include xsize.h.
22590         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
22591         argument for overflow.
22592         Suggested by Paul Eggert.
22593
22594 2003-11-03  Karl Berry  <karl@gnu.org>
22595
22596         * config/config.{guess,sub}: update from config.
22597
22598 2003-11-03  Jim Meyering  <jim@meyering.net>
22599
22600         * modules/userspec (lib_SOURCES): Add userspec.h.
22601         (Include): Add "userspec.h".
22602         Improve description.
22603
22604 2003-11-03  Jim Meyering  <jim@meyering.net>
22605
22606         * lib/userspec.c: Include "userspec.h".
22607         * lib/userspec.h: New file.
22608
22609 2003-11-03  Bruno Haible  <bruno@clisp.org>
22610
22611         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
22612
22613 2003-11-03  Bruno Haible  <bruno@clisp.org>
22614
22615         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
22616         available, to avoid (extremely rare) race condition.
22617         Suggested by Paul Eggert.
22618
22619 2003-11-02  Karl Berry  <karl@gnu.org>
22620
22621         * config/srclist.txt (vasprintf.c): sync broken, sigh.
22622
22623 2003-10-31  Paul Eggert  <eggert@twinsun.com>
22624
22625         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
22626         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
22627         (read_filesystem_list): Set and use me_type_malloced.
22628         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
22629         whatever the type happens to be), for brevity and consistency.
22630         Check for size calculation overflow on Alphas running OSF/1.
22631
22632 2003-10-31  Jim Meyering  <jim@meyering.net>
22633
22634         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
22635
22636         * lib/linebuffer.c: Include <string.h> for declaration of memset.
22637
22638 2003-10-30  Paul Eggert  <eggert@twinsun.com>
22639             Bruno Haible  <bruno@clisp.org>
22640
22641         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
22642         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
22643
22644 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
22645
22646         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
22647         netbsd*-gnu*.  Suggested by Robert Millan.
22648
22649 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22650
22651         * modules/group-member: Depend on stdbool.
22652
22653 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22654
22655         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
22656
22657 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22658
22659         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
22660         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
22661         after the 'gnu' in these cases.  This fixes some bugs in the
22662         previous change, and is based on suggestions by Robert Millan.
22663
22664 2003-10-29  Paul Eggert  <eggert@twinsun.com>
22665
22666         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
22667         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
22668         no longer needed.
22669         * lib/quotearg.c (quotearg_n_options): Use it.
22670         * lib/group-member.c: Include <stdbool.h>.
22671         (free_group_info): Arg is now const *; don't free arg.
22672         (get_group_info): Now returns bool and accepts struct group_info *,
22673         rather than returning a malloc'ed struct group_info *.
22674         All uses changed.  Check for overflow in internal size calculation.
22675
22676         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
22677         rather than xmalloc/xrealloc.
22678         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
22679         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
22680         conformance bug: the old code used a pointer after freeing the
22681         storage that it addressed.
22682         * lib/hash.c (hash_initialize): Simplify the code by using
22683         xalloc_oversized rather than doing it by hand.
22684         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
22685         the buffer preserved.  Use free and xmalloc instead.
22686         * lib/quotearg.c (quotearg_n_options): Likewise.
22687         Use a simpler test for size overflow.  Don't use xalloc_oversized
22688         because unsigned int might be wider than size_t (!); this suggests
22689         that we should switch from unsigned int to size_t for slot numbers.
22690
22691 2003-10-28  Paul Eggert  <eggert@twinsun.com>
22692
22693         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
22694         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
22695         NetBSD kernels.  Requested by Richard Stallman.
22696
22697 2003-10-27  Paul Eggert  <eggert@twinsun.com>
22698
22699         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
22700         to allocate the returned structure.  Do not allocate a subarray,
22701         as x2nrealloc will do that.
22702         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
22703         instead of xnrealloc.
22704         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
22705
22706 2003-10-27  Bruno Haible  <bruno@clisp.org>
22707
22708         * lib/stdbool_.h: Better support for BeOS.
22709
22710 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22711
22712         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
22713         now uses inline.
22714
22715 2003-10-26  Paul Eggert  <eggert@twinsun.com>
22716
22717         * lib/xalloc.h (xalloc_oversized): New static inline function, for
22718         callers that want to do their own size-overflow checking.  Include
22719         <stdbool.h>, since xalloc_oversized returns bool.
22720         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
22721         to use xalloc_oversized.
22722
22723         Add two functions x2realloc, x2nrealloc, for programs that grow
22724         arrays dynamically by doubling their sizes.
22725         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
22726         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
22727         New functions.
22728
22729         Port to C99 semantics for 'inline' of external functions.
22730         Bug reported by Bruno Haible.
22731         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
22732         with the old contents of xnmalloc.
22733         (xnmalloc, xmalloc): Use it.
22734         (xnrealloc_inline): New static inline function,
22735         with the old contents of xnrealloc.
22736         (xnrealloc, xrealloc): Use it.
22737
22738         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
22739         that.
22740
22741 2003-10-26  Karl Berry  <karl@gnu.org>
22742
22743         * config/srclist.txt (COPYING.DOC): no longer available from
22744         /gd/gnuorg; don't know where the ultimate source is.
22745
22746 2003-10-25  Paul Eggert  <eggert@twinsun.com>
22747
22748         Fix several address-calculation bugs in the hash modules,
22749         plus some minor code cleanup.
22750
22751         * lib/hash.h: Include <stdbool.h>, for bool.
22752         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
22753         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
22754         hash_get_n_entries, hash_get_max_bucket_length,
22755         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
22756         hash_rehash): Use size_t rather than unsigned.
22757         * lib/hash.c (struct hash_table, hash_get_n_buckets,
22758         hash_get_n_buckets_used, hash_get_n_entries,
22759         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
22760         hash_get_entries, hash_do_for_each, hash_string, is_prime,
22761         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
22762         Likewise.
22763         (SIZE_MAX): Define if not defined.
22764         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
22765         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
22766         hash_print):
22767         Use const * when possible.
22768         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
22769         (check_tuning): Fix bug: if tuning parameters were very close to
22770         0 or 1, rounding errors could have caused subscript violations.
22771         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
22772         (hash_initialize): Add 'fail:' label
22773         to free table and return NULL, and use it to simplify code.
22774         Use calloc rather than clearing the storage ourself.
22775         (hash_initialize, hash_rehash): Check for arithmetic overflow in
22776         buffer size calculations.
22777         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
22778         Include <stddef.h>, for size_t.
22779         * lib/hash-pjw.c (hash_pjw): Likewise.
22780         Switch to method described by Bruno Haible.
22781         Include <limits.h>, for CHAR_BIT.
22782         (SIZE_BITS): New macro.
22783
22784 2003-10-23  Paul Eggert  <eggert@twinsun.com>
22785
22786         * m4/getline.m4 (AM_FUNC_GETLINE):
22787         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
22788         hosts.  Problem reported by Derek Robert Price in
22789         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
22790         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
22791         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
22792
22793 2003-10-21  Paul Eggert  <eggert@twinsun.com>
22794
22795         * lib/getndelim2.c (getndelim2): When size calculation overflows,
22796         ceiling the allocation at NMAX bytes rather than silently
22797         discarding input bytes before NMAX is reached.  This makes
22798         a difference only if NMAX exceeds SIZE_MAX / 2.
22799
22800         * lib/obstack.c: Merge from glibc.
22801         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
22802         Add libc_hidden_def (_obstack_newchunk).
22803         (_obstack_free) [! defined _LIBC]: Remove.
22804         [defined _LIBC]: Make a strong alias from obstack_free, rather than
22805         a clone of the function body.
22806         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
22807         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
22808
22809         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
22810         glibc.
22811         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
22812         arg to memcpy.
22813
22814         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
22815         (obstack_ptr_grow_fast, obstack_int_grow_fast):
22816         Don't use lvalue casts, as GCC plans to remove support for them
22817         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
22818         was also present in the non-GCC version, indicating that this
22819         code had always been buggy and had never been widely used.
22820         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
22821         Use the fast variant of each macro, rather than copying the
22822         definiens of the fast variant; that way, we'll be more likely to
22823         catch future bugs in the fast variants.
22824
22825 2003-10-20  Bruno Haible  <bruno@clisp.org>
22826
22827         * modules/wait-process: New file.
22828         * MODULES.html.sh (func_all_modules): Add wait-process.
22829
22830 2003-10-20  Bruno Haible  <bruno@clisp.org>
22831
22832         * m4/wait-process.m4: New file.
22833
22834 2003-10-20  Bruno Haible  <bruno@clisp.org>
22835
22836         * lib/wait-process.h: New file, from GNU gettext.
22837         * lib/wait-process.c: New file, from GNU gettext.
22838
22839 2003-10-19  Jim Meyering  <jim@meyering.net>
22840
22841         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
22842         HPUX 10.20.
22843
22844 2003-10-18  Karl Berry  <karl@gnu.org>
22845
22846         * config/config.guess: update from config.
22847
22848 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22849
22850         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
22851         (getgroups): First arg is int, not size_t.
22852         Don't let 'free' mangle errno.
22853
22854 2003-10-16  Paul Eggert  <eggert@twinsun.com>
22855
22856         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
22857
22858 2003-10-16  Karl Berry  <karl@gnu.org>
22859
22860         * config/config.{guess,sub}: update from config.
22861
22862 2003-10-16  Jim Meyering  <jim@meyering.net>
22863
22864         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
22865         memcpy.
22866
22867 2003-10-15  Paul Eggert  <eggert@twinsun.com>
22868
22869         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
22870         (SIZE_MAX): Remove.
22871         (new_exclude, add_exclude_file): Initial size no longer needs to
22872         be a power of 2.
22873         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
22874         our own address arithmetic overflow checking.
22875
22876         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
22877         (fnmatch): Do not alloca more than 2000 wide characters;
22878         instead, use malloc for large buffers.
22879         Check for address arithmetic overflow, and return -1
22880         with errno set to ENOMEM in that case.
22881         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
22882         (NEW_PATTERN): Do not alloca more than 8000 bytes;
22883         instead, return -1.  Check for address arithmetic overflow.
22884
22885 2003-10-14  Paul Eggert  <eggert@twinsun.com>
22886
22887         Handle invalid suffixes and overflow independently, so that
22888         callers can treat them independently as needed.  Fix some bugs in
22889         suffix handling, e.g., "100k@" was not diagnosed as an invalid
22890         suffix for a human-readable blocksize.  The major caller-visible
22891         change is the addition of a new
22892         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
22893         that both overflow and suffix chars were found.
22894
22895         * lib/human.c (humblock): Don't check separately for invalid suffix
22896         char; that is xstrtoumax's job (now that its bug is fixed).
22897         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
22898         INTMAX_MAX]: New macros.
22899         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
22900         TYPE_MAXIMUM): New macros.
22901         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
22902         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
22903         if overflow occurs, as it's what __strtol does and it's more useful
22904         in practice.
22905         (__xstrtol): If __strtol reports some error other than ERANGE,
22906         reflect it to the caller as LONGINT_INVALID.  If it reports
22907         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
22908         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
22909         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
22910         value.
22911         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
22912         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
22913         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
22914         [defined UINTMAX_MAX]: New macros.
22915
22916 2003-10-14  Bruno Haible  <bruno@clisp.org>
22917
22918         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
22919
22920 2003-10-14  Bruno Haible  <bruno@clisp.org>
22921
22922         * m4/sig_atomic_t: New file, from GNU gettext.
22923         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
22924
22925 2003-10-14  Bruno Haible  <bruno@clisp.org>
22926
22927         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
22928         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
22929         Also use volatile where needed.
22930
22931 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22932
22933         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
22934         Change maintainer from Bruno Haible to 'all'.
22935
22936 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22937
22938         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
22939
22940 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22941
22942         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
22943         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
22944         and define in terms of the other primitives.
22945         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
22946         (SIZE_MAX): Define if not already defined.
22947         (array_size_overflow): New function.
22948         (xalloc_die): Abort instead of exiting if 'error' returns.
22949         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
22950         (xmalloc, xrealloc): Use them.
22951         (xcalloc): Check for address arithmetic overflow.
22952         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
22953         a bit faster than strcpy.
22954
22955 2003-10-10  Simon Josefsson  <jas@extundo.com>
22956
22957         * modules/argp (Depends-on): Add restrict and strcase.
22958
22959 2003-10-10  Simon Josefsson  <jas@extundo.com>
22960
22961         * m4/argp.m4: Add AC_C_INLINE.
22962
22963 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22964
22965         Merge getpass from libc, plus a few fixes.
22966
22967         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
22968         Include <stdbool.h>.
22969         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
22970         __fsetlocking to empty.
22971         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
22972         do include <bits/libc-lock.h>.
22973         Do not include <fcntl.h>; not needed.
22974         [_LIBC]: Include <wchar.h>.
22975         (NOTCANCEL_MODE): New macro.
22976         (flockfile, funlockfile) [_LIBC]: New macros.
22977         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
22978         [!_LIBC]: New macros.
22979         (call_fclose): New function.
22980         (getpass): Use it.  Save tty stream separately; this simplifies the
22981         code and makes it more reliable if stdin happens to equal stdout.
22982         Invoke __fsetlocking on tty.
22983         Handle thread cancellation if needed.
22984         Namespace cleanup (use __tcgetattr, __getline).
22985         Use bool for Booleans.
22986         [USE_IN_LIBIO]: Handle wide streams.
22987         [!_LIBC]: Unconditionally do the fseek, since we don't know what
22988         stream might go where.
22989
22990         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
22991         doesn't have to include <stdio.h> before us.
22992         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
22993         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
22994         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
22995         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
22996         if not declared, so that we can use getpass.c code from libc without
22997         rewriting it.
22998         (flockfile, ftrylockfile, funlockfile): New macros.
22999
23000 2003-10-08  Paul Eggert  <eggert@twinsun.com>
23001
23002         * modules/getpass: Depend on stdbool.
23003
23004 2003-10-08  Paul Eggert  <eggert@twinsun.com>
23005
23006         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
23007
23008 2003-10-07  Karl Berry  <karl@gnu.org>
23009
23010         * config/config.{guess,sub}: update from config.
23011
23012 2003-10-06  Jim Meyering  <jim@meyering.net>
23013             Bruno Haible  <bruno@clisp.org>
23014
23015         This lets translators provide better translations for the
23016         "Written by ..." part of --version output.
23017         * lib/version-etc.h: Include stdarg.h.
23018         (version_etc_copyright): Declare as readonly.
23019         (version_etc): Make this function variadic with a NULL-terminated list
23020         of author name strings.
23021         (version_etc_va): New declaration.
23022         * lib/version-etc.c: Include stdarg.h, stdlib.h.
23023         (version_etc_copyright): Declare as readonly.
23024         (version_etc_va): New function. Provide a different translatable string
23025         for each possible number of authors < 10. Abbreviate when there are 10
23026         authors or more.
23027         (version_etc): Make this function variadic. Call version_etc_va.
23028         Suggestion from Gary V. Vaughan.
23029
23030         * lib/long-options.h (parse_long_options): Change prototype: the
23031         authors string is moved to the end and becomes variadic.
23032         * lib/long-options.c: Include stdarg.h.
23033         (parse_long_options): Make this function variadic, too.
23034         Call version_etc_va, not version_etc.
23035
23036 2003-10-06  Bruno Haible  <bruno@clisp.org>
23037
23038         * modules/version-etc-2: Remove file.
23039         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
23040
23041 2003-10-06  Bruno Haible  <bruno@clisp.org>
23042
23043         * modules/fatal-signal: New file.
23044         * MODULES.html.sh (func_all_modules): Add fatal-signal.
23045
23046 2003-10-06  Bruno Haible  <bruno@clisp.org>
23047
23048         * m4/fatal-signal.m4: New file.
23049         * m4/signalblocking.m4: New file, from GNU gettext.
23050
23051 2003-10-06  Bruno Haible  <bruno@clisp.org>
23052
23053         * lib/version-etc-2.h: Remove file.
23054         * lib/version-etc-2.c: Remove file.
23055
23056 2003-10-06  Bruno Haible  <bruno@clisp.org>
23057
23058         * lib/fatal-signal.h: New file, from GNU gettext.
23059         * lib/fatal-signal.c: New file, from GNU gettext.
23060
23061 2003-10-05  Paul Eggert  <eggert@twinsun.com>
23062
23063         * README: Rework advice for preventing empty .o files.
23064         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
23065         not <sys/types.h>.
23066
23067 2003-10-04  Karl Berry  <karl@gnu.org>
23068
23069         * lib/argp*: update from libc.
23070
23071 2003-10-04  Karl Berry  <karl@gnu.org>
23072
23073         * config/config.{guess,sub}: update from config.
23074
23075 2003-10-02  Bruno Haible  <bruno@clisp.org>
23076
23077         * modules/lchown (Include): Add lchown.h.
23078         * modules/time_r (Include): Use "..." syntax.
23079         * modules/xgetdomainname (Include): Add xgetdomainname.h.
23080
23081 2003-10-01  Simon Josefsson  <jas@extundo.com>
23082
23083         * MODULES.html.sh (func_all_modules): Move gethostname from section
23084         'based on' to section 'lacking' POSIX:2001.
23085
23086 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
23087
23088         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
23089         to output mode on the same stream.
23090
23091 2003-09-29  Paul Eggert  <eggert@twinsun.com>
23092
23093         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
23094         Fix arg typo in previous patch.
23095
23096 2003-09-28  Jim Meyering  <jim@meyering.net>
23097
23098         * lib/error.c: Correct cpp indentation.
23099
23100 2003-09-27  Paul Eggert  <eggert@twinsun.com>
23101
23102         * modules/free: New file.
23103
23104 2003-09-27  Paul Eggert  <eggert@twinsun.com>
23105
23106         * m4/free.m4: New file.
23107
23108 2003-09-27  Paul Eggert  <eggert@twinsun.com>
23109
23110         * lib/minmax.h (MIN, MAX)
23111         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
23112         Omit the special code that used __typeof__, since we worry that
23113         it could be more trouble than it's worth.  See:
23114         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
23115         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
23116
23117         * lib/free.c: New file.
23118
23119 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
23120
23121         Trivial fixes to Makefile.am parts of module listings.
23122         * modules/strstr: Append strstr.h to lib_SOURCES.
23123         * modules/strcase: Likewise, for strcase.h.
23124
23125 2003-09-27  Karl Berry  <karl@gnu.org>
23126
23127         * config/mkinstalldirs: update from automake.
23128
23129 2003-09-26  Paul Eggert  <eggert@twinsun.com>
23130
23131         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
23132         (error_tail): Do not loop, reallocating temporary buffer, since
23133         the output cannot contain more wide characters than the input
23134         contains bytes, the size must be big enough already.  This avoids
23135         one potential size overflow calculation.  Check for size overflow
23136         when calculating temporary buffer size.  Free temporary buffer
23137         when done, if it was allocated with malloc; this plugs a memory
23138         leak.  Remove casts from void * to pointers, that are no longer
23139         needed now that we're assuming C89 or better.
23140
23141         Merge error changes from glibc.
23142
23143         * lib/error.c, error.h: Update copyright notice header to match glibc.
23144         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
23145         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
23146         Disable cancellation while printing error.
23147         * lib/error.h: Prepend __ to parameter names.
23148
23149 2003-09-26  Jim Meyering  <jim@meyering.net>
23150
23151         * lib/error.c (error_tail): Move some declarations
23152         into inner scope where the local variables are used.
23153
23154 2003-09-26  Bruno Haible  <bruno@clisp.org>
23155
23156         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
23157         stpncpy().
23158         Don't define stpncpy through config.h; it's now done through stpncpy.h.
23159
23160 2003-09-26  Bruno Haible  <bruno@clisp.org>
23161
23162         * lib/stpncpy.h (gnu_stpncpy): New declaration.
23163         (stpncpy): Define as alias for gnu_stpncpy.
23164         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
23165
23166 2003-09-25  Simon Josefsson  <jas@extundo.com>
23167
23168         * lib/xgetdomainname.h: New file.
23169         * lib/xgetdomainname.c: New file.
23170
23171 2003-09-25  Simon Josefsson  <jas@extundo.com>
23172             Bruno Haible  <bruno@clisp.org>
23173
23174         * modules/getdomainname: New file.
23175         * modules/xgetdomainname: New file.
23176         * MODULES.html.sh (func_all_modules): Add getdomainname,
23177         xgetdomainname.
23178
23179 2003-09-25  Simon Josefsson  <jas@extundo.com>
23180             Bruno Haible  <bruno@clisp.org>
23181
23182         * m4/getdomainname.m4: New file.
23183
23184 2003-09-25  Simon Josefsson  <jas@extundo.com>
23185             Bruno Haible  <bruno@clisp.org>
23186
23187         * lib/getdomainname.h: New file.
23188         * lib/getdomainname.c: New file.
23189
23190 2003-09-25  Karl Berry  <karl@gnu.org>
23191
23192         * lib/argp-fmtstream.c, argp-help.c: update from libc.
23193
23194 2003-09-25  Karl Berry  <karl@gnu.org>
23195
23196         * config/install-sh: update from automake.
23197
23198 2003-09-25  Bruno Haible  <bruno@clisp.org>
23199
23200         * modules/version-etc-2: New file, from modules/version-etc with
23201         modifications.
23202         * MODULES.html.sh (func_all_modules): Add version-etc-2.
23203
23204 2003-09-25  Bruno Haible  <bruno@clisp.org>
23205
23206         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
23207         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
23208
23209 2003-09-24  Simon Josefsson  <jas@extundo.com>
23210
23211         * modules/xgethostname: Add xgethostname.h.
23212
23213 2003-09-24  Paul Eggert  <eggert@twinsun.com>
23214
23215         * lib/linebuffer.c (freebuffer): Don't free the argument, just
23216         the buffer associated with the argument.  Bug reported by
23217         Simon Josefsson.
23218
23219 2003-09-24  Paul Eggert  <eggert@twinsun.com>
23220
23221         * README: Document assumptions that 'int' is at least 32 bits
23222         wide, that integer arithmetic is 2's complement without overflow,
23223         that there are no holes in integer values, that adding sizes of
23224         two nonoverlapping objects can't overflow, and that all-bits-zero
23225         yields scalar zero.  Fix spelling and capitalization typos.
23226
23227 2003-09-19  Karl Berry  <karl@gnu.org>
23228
23229         * lib/argp.h: update from libc.
23230
23231 2003-09-17  Paul Eggert  <eggert@twinsun.com>
23232
23233         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
23234         to avoid spurious warnings like "AC_RUN_IFELSE was called before
23235         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
23236
23237 2003-09-17  Paul Eggert  <eggert@twinsun.com>
23238
23239         * gnulib-tool: Use "test -h", not "test -L", for portability
23240         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
23241         (tags_regexp): Remove, since \| doesn't conform to POSIX.
23242         (sed_extract_prog): Issue s commands one-by-one, rather than
23243         using \| in one s command.
23244
23245 2003-09-16  Paul Eggert  <eggert@twinsun.com>
23246
23247         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
23248         input error, instead of returning NULL the next time we are called
23249         (and therefore losing track of errno).
23250
23251 2003-09-16  Bruno Haible  <bruno@clisp.org>
23252
23253         * gnulib-tool (func_create_testdir): Warn about duplicated
23254         dependencies.
23255
23256 2003-09-15  Paul Eggert  <eggert@twinsun.com>
23257
23258         * modules/argmatch, modules/fatal, modules/obstack,
23259         modules/xalloc, modules/xgethostname: Sort dependencies by
23260         importance, not alphabetically.
23261
23262 2003-09-15  Paul Eggert  <eggert@twinsun.com>
23263
23264         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
23265         fails, so that the caller gets the proper errno.
23266
23267         * lib/readutmp.c (read_utmp): Likewise.
23268         Check for fstat error.  Close stream and free storage
23269         when failing.
23270
23271 2003-09-14  Karl Berry  <karl@gnu.org>
23272
23273         * config/srclist.txt (strdup.c): disable for c89 changes.
23274
23275 2003-09-14  Jim Meyering  <jim@meyering.net>
23276
23277         * lib/getloadavg.c: Correct cpp indentation.
23278         * lib/strdup.c: Likewise.
23279         * lib/vasnprintf.c: Likewise.
23280
23281 2003-09-14  Bruno Haible  <bruno@clisp.org>
23282
23283         * modules/fwriteerror: New file.
23284         * MODULES.html.sh (func_all_modules): Add fwriteerror.
23285
23286 2003-09-14  Bruno Haible  <bruno@clisp.org>
23287
23288         * lib/fwriteerror.h: New file.
23289         * lib/fwriteerror.c: New file.
23290
23291 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23292
23293         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
23294         modules/xgethostname, modules/xalloc: Depend on exit.
23295
23296 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23297
23298         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
23299
23300         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
23301         and AC_MINIX, too, so that their extensions are available.
23302
23303         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
23304         This macro has been superseded by gl_BACKUPFILE.
23305
23306         More patches to assume C89 or better.
23307
23308         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
23309
23310         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
23311         unconditionally.
23312         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
23313         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
23314         Include <string.h>, <stdlib.h> unconditionally.
23315         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
23316         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
23317         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
23318         headers or for string.h.
23319         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
23320         or strtoul.
23321
23322         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
23323         headers.
23324         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
23325         * m4/userspec.m4 (gl_USERSPEC): Likewise.
23326         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
23327         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
23328         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
23329         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
23330         memcpy, memset.
23331         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
23332         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
23333         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
23334         strtol.
23335         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
23336         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
23337         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
23338         strtoul.
23339
23340 2003-09-12  Paul Eggert  <eggert@twinsun.com>
23341
23342         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
23343         * lib/obstack.c [!defined _LIBC]: Likewise.
23344         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
23345         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
23346         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
23347
23348         More changes to assume C89 or better.
23349
23350         * lib/error.c (error_tail): Assume vprintf.
23351
23352         * lib/argmatch.c (getenv): Remove decl.
23353         * lib/progreloc.c (get_full_program_name): Define via prototype.
23354         * lib/setenv.c (clearenv): Likewise.
23355         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
23356         needed.
23357         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
23358         (malloc, memcpy): Remove decls.
23359         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
23360         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
23361         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
23362         (memcpy): Remove macro.
23363         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
23364         (__P): Remove.  All uses removed.
23365         (PTR): Remove.  All uses changed to void *.
23366         (CHAR_BIT, NULL): Remove.
23367         (spaces, zeros, memset_space, memset_zero)
23368         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
23369         Remove.
23370         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
23371         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
23372         Define with prototype.
23373         Remove now-unnecessary prototype decl.
23374         (extra_args_spec): Assume ANSI C.  All uses changed.
23375         (extra_args_spec_iso): Remove.
23376         (my_strftime, emacs_strftimeu): Define via prototype.
23377         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
23378         unconditionally.
23379         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
23380         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
23381         (strtoul, strtol): Remove decls.
23382         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
23383         LONG_MAX): Remove.
23384         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
23385         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
23386         (LOCALE_PARAM_PROTO): New macro.
23387         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
23388         (INTERNAL (strtol), strtol): Define with a prototype.
23389         (PARAMS): Remove.  All uses removed.
23390         * lib/tempname.c: Include <string.h> unconditionally.
23391         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
23392         * lib/xgethostname.c (main): Define with a prototype.
23393         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
23394         Include <stdlib.h> unconditionally.
23395         (calloc, malloc, realloc, free): Remove decls.
23396         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
23397         Include <stdlib.h> unconditionally.  Sort include file names.
23398         (strtod): Remove.
23399         (xstrtod): Define with a prototype.
23400         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
23401         (strtol, strtoul): Remove decls.
23402
23403 2003-09-11  Paul Eggert  <eggert@twinsun.com>
23404
23405         More patches to assume C89 or better.
23406         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
23407         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
23408         string.h, memchr, STDC_HEADERS.
23409
23410 2003-09-11  Paul Eggert  <eggert@twinsun.com>
23411
23412         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
23413         Include <stdlib.h>, <string.h> unconditionally.
23414         Remove now-unnecessary cast to char *.
23415         * lib/strnlen.c: Include <string.h> unconditionally.
23416         * lib/yesno.c (yesno): Define with a prototype.
23417
23418 2003-09-11  Bruno Haible  <bruno@clisp.org>
23419
23420         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
23421
23422 2003-09-10  Jim Meyering  <jim@meyering.net>
23423
23424         * lib/error.c: Correct indentation of cpp directives.
23425
23426 2003-09-10  Bruno Haible  <bruno@clisp.org>
23427
23428         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
23429         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
23430         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
23431         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
23432         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
23433         <stdlib.h> and <string.h> checks.
23434         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
23435         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
23436
23437 2003-09-10  Bruno Haible  <bruno@clisp.org>
23438
23439         * lib/strcspn.c: Include <string.h> unconditionally.
23440         * lib/strpbrk.c: Include <string.h> unconditionally.
23441         * lib/strstr.c: Include <string.h> unconditionally.
23442         * lib/unicodeio.c: Include <string.h> unconditionally.
23443         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
23444         * lib/unsetenv.c: Likewise.
23445         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
23446         * lib/yesno.c: Include <stdlib.h> unconditionally.
23447         (rpmatch): Add prototype.
23448
23449 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23450
23451         More patches to assume C89 or better.
23452         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
23453         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
23454         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
23455         or for string.h.
23456         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
23457         stdlib.h.
23458         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
23459         C headers.
23460         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
23461         string.h.
23462         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
23463         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
23464         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
23465         or for string.h.
23466         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
23467         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
23468         C headers.
23469         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
23470         memcpy.
23471         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
23472         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
23473         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
23474         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
23475         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
23476         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
23477         string.h, free.
23478         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
23479         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
23480         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
23481         C headers, or for string.h.
23482         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
23483         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
23484         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
23485         headers, memory.h, stdlib.h, string.h, strings.h.
23486         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
23487         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
23488         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
23489         strchr.
23490         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
23491         headers, memory.h, string.h.
23492         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
23493         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
23494         free.
23495         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
23496         headers.
23497         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
23498         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
23499         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
23500         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
23501         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
23502
23503 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23504
23505         More K&R removal.
23506
23507         * lib/acosl.c (main): Use a prototype.
23508         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
23509         tanl.c: Likewise.
23510
23511         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
23512
23513         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
23514         (getopt, etopt_long, getopt_long_only, _getopt_internal)
23515         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
23516         with a prototype.
23517         * lib/getopt.c (const): Remove macro.
23518         Include <string.h> unconditionally.
23519         (my_index): Remove; all uses changed to strchr.
23520         (strlen): Remove decl.
23521         (exchange): Remove forward decl; no longer needed.
23522         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
23523         Define with prototype.
23524         * lib/getopt1.c (const): Remove macro.
23525         (getopt_long, getopt_long_only, main): Define with prototype.
23526
23527         * lib/getugroups.c: Include <string.h> unconditionally.
23528
23529         * lib/getusershell.c: Include <stdlib.h> unconditionally.
23530         (getusershell, setusershell, endusershell, readname, main):
23531         Define with prototypes.
23532
23533         * lib/group-member.c: Include group-member.h first.
23534         Include <stdlib.h> unconditionally.
23535
23536         * lib/hard-locale.c: Include hard-locale.h first.
23537         Include <stdlib.h>, <string.h> unconditionally.
23538
23539         * lib/hash.c (free, malloc): Remove decls.
23540         Include <stdlib.h> unconditionally.
23541
23542         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
23543         (getenv): Do not declare.
23544
23545         * lib/idcache.c: Include <string.h> unconditionally.
23546
23547         * lib/long-options.c: Include long-options.h first, to test interface.
23548         Include <stdlib.h> unconditionally.
23549
23550         * lib/makepath.c: Include makepath.h first, to test interface.
23551         Include <stdlib.h> and <string.h> unconditionally.
23552
23553         * lib/linebuffer.c: Include <stdlib.h>.
23554         (free): Remove decl.
23555
23556         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
23557         stddef.h. rpl_malloc returns void *, not char *.
23558         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
23559         prototype.
23560
23561         * lib/md5.h: Include <limits.h> unconditionally.
23562         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
23563         (__P): Remove; all uses removed.
23564         * lib/md5.c: Include "md5.h" first.
23565         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
23566         md5_buffer, md5_process_bytes, md5_process_block):
23567         Define with prototypes.
23568         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
23569         * lib/sha.c: Include "sha.h" first.
23570         Include <stdlib.h>, <string.h> unconditionally.
23571
23572         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
23573         * lib/memcmp.c (__ptr_t): Likewise.
23574         * lib/memrchr.c (__ptr_t): Likewise.
23575         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
23576         Include <string.h> unconditionally.
23577         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
23578         * lib/memchr.c: Include <stdlib.h> unconditionally.
23579         * lib/memchr.c (LONG_MAX): Remove.
23580         * lib/memrchr.c (LONG_MAX): Likewise.
23581         * lib/memchr.c (__memchr): Define via a prototype.
23582         * lib/memrchr.c (__memrchr): Likewise.
23583         * lib/memcmp.c (__P): Remove, and remove all uses.
23584         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
23585         Remove forward decls; no longer needed.
23586         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
23587         Use types required by C89 in prototype.
23588
23589         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
23590         * lib/savedir.c: Likewise.
23591         * lib/mkdir.c (free): Remove decl.
23592         * lib/rmdir.c (rmdir): Define with a prototype.
23593         * lib/savedir.c: Include savedir.h first, to test interface.
23594
23595         * lib/mktime.c (STDC_HEADERS): Remove.
23596         Include <stdlib.h>, <string.h> unconditionally.
23597
23598         * lib/modechange.c: Include <stdlib.h> unconditionally.
23599         (malloc): Remove decl.
23600
23601         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
23602         (free): Remove decl.
23603
23604         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
23605         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
23606         (This type really should be intptr_t, but that's a C99ism.)
23607         (_obstack_memcpy): Remove: all uses changed to memcpy.
23608         Include <string.h> unconditionally.
23609         (struct obstack): Assume __STDC__ for types of members
23610         chunkfun, freefun, extra_arg.
23611         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
23612         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
23613         obstack_begin, obstack_specify_allocation,
23614         obstack_specify_allocation_with_arg, obstack_chunkfun,
23615         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
23616         Remove unprototyped decls and the macros that use them.
23617         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
23618         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
23619         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
23620         (defined __STDC__ && __STDC__)]:
23621         Remove nonprototyped code.
23622         Include <stdlib.h> unconditionally.
23623         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
23624         _obstack_allocated_p, _obstack_free, obstack_free,
23625         _obstack_memory_used, print_and_abort):
23626         Define using prototypes.
23627         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
23628         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
23629         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
23630         obstack_next_free, obstack_object_size, obstack_room) [0]:
23631         Remove unused, unprototyped code.
23632
23633         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
23634
23635         * lib/physmem.c (physmem_total, physmem_available, main): Define
23636         with prototypes.
23637
23638         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
23639         (main): Define with a prototype.
23640
23641         * lib/posixver.c (getenv): Remove decl.
23642
23643         * lib/putenv.c (malloc): Returns void *, not char *.
23644         Include <string.h> unconditionally.
23645         (strchr, memcpy, NULL): Do not define.
23646
23647         * lib/readtokens.c: Include readtokens.h first, to test interface.
23648         Include <stdlib.h>, <string.h> unconditionally.
23649         (init_tokenbuffer): Define with a prototype.
23650
23651         * lib/regex.c (PARAMS): Remove.  All uses removed.
23652         All uses of _RE_ARGS removed, too.
23653         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
23654         unconditionally.
23655         (bzero): Assume memset exists.
23656         (memcmp, memcpy, NULL): Remove.
23657         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
23658         char, or assignments to local vars of type signed char.
23659         (init_syntax_once, PREFIX(extract_number_and_incr),
23660         PREFIX(print_partial_compiled_pattern),
23661         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
23662         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
23663         PREFIX(regex_grow_registers), PREFIX(regex_compile),
23664         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
23665         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
23666         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
23667         wcs_compile_range, byte_compile_range, truncate_wchar,
23668         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
23669         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
23670         count_mbs_length, wcs_re_match_2_internal,
23671         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
23672         PREFIX(alt_match_null_string_p),
23673         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
23674         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
23675         regfree, PREFIX(extract_number)): Define with prototype.  Remove
23676         now-unnecessary declaration, if any.
23677         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
23678         regcomp, regexec):
23679         Remove now-unnecessary casts among pointer types.
23680         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
23681
23682         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
23683         (free): Remove decl.
23684
23685         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
23686
23687         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
23688         (free): Remove decl.
23689
23690         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
23691         * lib/xgetcwd.c: Likewise.
23692
23693         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
23694         (free): Remove decl.
23695
23696         * lib/strchrnul.c (strchrnul): Define with a prototype.
23697         Fix bug: c_in was not converted to char before searching.
23698
23699         The following changes are not K&R related:
23700
23701         * lib/group-member.h: Include <sys/types.h>, so that this file is
23702         self-contained.
23703         * lib/makepath.h: Likewise.
23704
23705         * lib/getusershell.c (readname, default_index, line_size, readname):
23706         Use size_t, not int, for sizes.
23707         (readname): If the size overflows, report an error instead of
23708         looping forever.
23709
23710 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23711
23712         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
23713         libc.
23714
23715 2003-09-09  Paul Eggert  <eggert@twinsun.com>
23716
23717         * README: New section: portability guidelines.
23718
23719 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23720
23721         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
23722         C89 spec.
23723
23724 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
23725
23726         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
23727
23728 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23729
23730         Assume C89 or better; remove K&R cruft.
23731         A few of these changes were first proposed by Derek Robert Price
23732         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
23733
23734         * lib/addext.c: Include <string.h> unconditionally.
23735         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
23736         Don't declare getenv or malloc.
23737
23738         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
23739         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
23740         (NULL): Remove.
23741         (find_stack_direction, alloca): Use prototypes.
23742
23743         * lib/atexit.c (atexit): Define using a prototype.
23744
23745         * lib/basename.c, dirname.c, stripslash.c:
23746         Include <string.h> unconditionally.
23747
23748         * lib/bcopy.c: Include <stddef.h>.
23749         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
23750
23751         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
23752
23753         * lib/error.h (error, error_at_line, error_print_progname)
23754         [! (defined (__STDC__) && __STDC__)]: Remove decls.
23755         * lib/error.c: Include error.h first, to check interface.
23756         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23757         (VA_START): Remove; all uses changeed to va_start.
23758         (exit, strerror): Remove decls.
23759         (error_print_progname): Prototype uncondionally.
23760         Don't include <errno.h>; no longer needed.
23761         (private_strerror): Remove.
23762         (error_tail): Always define.
23763         (error, error_at_line): Assume C89 or better; always use prototypes.
23764         * lib/fatal.c: Include "fatal.h" first, to test interface.
23765         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
23766         (VA_START): Remove; all uses changed to va_start.
23767         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
23768         this case.
23769         (exit): Remove decl.
23770         (fatal): Prototype unconditionally.  Assume va_start works.
23771         Abort at end, to pacify gcc.
23772
23773         * lib/euidaccess.c (main): Define with a prototype.
23774
23775         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
23776
23777         * lib/exitfail.c: Include <stdlib.h> unconditionally.
23778
23779         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
23780         prototypes.
23781         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
23782         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
23783         (getenv): Remove decl.
23784         (fnmatch): Define using a prototype.
23785         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
23786         (FCT): Define using a prototype.
23787
23788         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
23789
23790         * lib/gethostname.c: Include <stddef.h>.
23791         (gethostname): Define with prototype.  Length is size_t, not int.
23792
23793 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23794
23795         Assume C89 or better; remove K&R cruft.
23796         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
23797         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
23798         string.h, getenv, malloc.
23799         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
23800         headers.
23801         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
23802         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
23803         do not check for strerror.
23804         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
23805         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
23806         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
23807         do not check for doprnt or vprintf.
23808         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
23809         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
23810
23811 2003-09-08  Paul Eggert  <eggert@twinsun.com>
23812
23813         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
23814         getversion.c should have been removed then, but was accidentally
23815         preserved.
23816
23817         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
23818         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
23819
23820 2003-09-08  Karl Berry  <karl@gnu.org>
23821
23822         * config/config.sub, config.guess, srclistvars.sh: update from savannah
23823                 config, forget about prep.
23824
23825         * config/depcomp, missing: update from automake.
23826
23827 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23828
23829         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
23830         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23831
23832 2003-09-07  Paul Eggert  <eggert@twinsun.com>
23833
23834         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
23835         copy_tm_result.  Bug reported by Simon Josefsson in
23836         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
23837
23838 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23839
23840         * m4/time_r.m4: New file.
23841         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
23842         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
23843         is. Check for timegm declaration.
23844         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
23845         Do not check for gmtime_r.
23846         Replace mktime if __mktime_internal does not exist and if mktime
23847         hasn't been replaced already.
23848
23849 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23850
23851         * lib/time_r.c, lib/time_r.h: New files.
23852
23853         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
23854         __localtime_r.
23855         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
23856         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
23857
23858         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
23859         __gmtime_r.
23860         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
23861         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
23862         Include <time_r.h>.
23863
23864         * lib/timegm.c: Switch to glibc implementation, with the following
23865         changes:
23866         [defined HAVE_CONFIG_H]: Include <config.h>.
23867         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
23868         (__mktime_internal) [!defined _LIBC]: New decl.
23869         (__gmtime_r) [!defined _LIBC]: New macro and function.
23870         (timegm): Use a prototype, since gnulib assumes C89.
23871         Do not bother declaring tmp to be const, as it's not really usefu.
23872         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
23873         (timegm): Declare only if HAVE_DECL_TIMEGM.
23874
23875 2003-09-06  Paul Eggert  <eggert@twinsun.com>
23876
23877         * MODULES.html.sh (func_all_modules): Add time_r.
23878         * modules/time_r: New file.
23879         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
23880         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
23881
23882 2003-09-03  Paul Eggert  <eggert@twinsun.com>
23883
23884         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
23885         Bug reported by Lute Kamstra in
23886         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
23887
23888         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
23889         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
23890         course with correspondingly smaller numbers for tomorrow and
23891         yesterday.  From Tadayoshi Funaba.  Originally installed into
23892         sh-utils on 1999-08-07, but the patch got lost (I guess during the
23893         coreutils merge?).
23894
23895 2003-08-31  Simon Josefsson  <jas@extundo.com>
23896
23897         * modules/timegm: New file.
23898         * MODULES.html.sh (func_all_modules): Add timegm.
23899
23900 2003-08-31  Simon Josefsson  <jas@extundo.com>
23901
23902         * m4/timegm.m4: New file.
23903
23904 2003-08-31  Simon Josefsson  <jas@extundo.com>
23905
23906         * lib/timegm.h: New file.
23907         * lib/timegm.c: New file.  Based on
23908         wget-1.8.2/src/http.c:mktime_from_utc.
23909
23910 2003-08-31  Karl Berry  <karl@gnu.org>
23911
23912         * lib/argp.h: update from libc.
23913
23914 2003-08-28  Bruno Haible  <bruno@clisp.org>
23915
23916         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
23917         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
23918         followed by '#define fnmatch fnmatch_posix' gives an error.
23919
23920 2003-08-28  Bruno Haible  <bruno@clisp.org>
23921
23922         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
23923         warning on QNX, which defines O_BINARY to 000000.
23924
23925 2003-08-27  Jim Meyering  <jim@meyering.net>
23926
23927         * m4/mkstemp.m4: Require that the system mkstemp be able to create
23928         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
23929         would fail after 32.  Reported by Danny Levinson.  Details here:
23930         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
23931
23932 2003-08-24  Bruno Haible  <bruno@clisp.org>
23933
23934         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
23935         MSVC7 <stdio.h> is included later.
23936
23937 2003-08-22  Simon Josefsson  <jas@extundo.com>
23938
23939         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
23940
23941 2003-08-20  Karl Berry  <karl@gnu.org>
23942
23943         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
23944
23945 2003-08-20  Bruno Haible  <bruno@clisp.org>
23946
23947         * modules/progname: New file.
23948         * MODULES.html.sh (func_all_modules): Add progname.
23949
23950 2003-08-20  Bruno Haible  <bruno@clisp.org>
23951
23952         * lib/progname.h: New file, from GNU gettext.
23953         * lib/progname.c: New file, from GNU gettext.
23954         * lib/progreloc.c: New file, from GNU gettext.
23955
23956 2003-08-19  Jim Meyering  <jim@meyering.net>
23957
23958         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
23959         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
23960
23961 2003-08-19  Bruno Haible  <bruno@clisp.org>
23962
23963         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
23964         more.
23965
23966 2003-08-19  Bruno Haible  <bruno@clisp.org>
23967
23968         * lib/xstrdup.c: Assume <string.h> exists.
23969
23970 2003-08-18  Paul Eggert  <eggert@twinsun.com>
23971
23972         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
23973         in makefile rules.
23974
23975 2003-08-18  Jim Meyering  <jim@meyering.net>
23976
23977         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
23978         * m4/lib-ld.m4: Likewise.
23979
23980 2003-08-18  Jim Meyering  <jim@meyering.net>
23981
23982         * lib/setenv.h: Indent nested cpp directive.
23983         * lib/vasnprintf.c: Remove trailing blanks.
23984
23985 2003-08-17  Simon Josefsson  <jas@extundo.com>
23986
23987         * modules/xstrndup: New file.
23988         * MODULES.html.sh (func_all_modules): Add xstrndup.
23989
23990 2003-08-17  Simon Josefsson  <jas@extundo.com>
23991
23992         * modules/argp: Fix autoconf macro name. Add more dependencies.
23993
23994 2003-08-17  Simon Josefsson  <jas@extundo.com>
23995
23996         * m4/xstrndup.m4: New file.
23997
23998 2003-08-17  Simon Josefsson  <jas@extundo.com>
23999
24000         * m4/argp.m4: New file.
24001
24002 2003-08-17  Simon Josefsson  <jas@extundo.com>
24003             Bruno Haible  <bruno@clisp.org>
24004
24005         * lib/xstrndup.h: New file.
24006         * lib/xstrndup.c: New file.
24007
24008 2003-08-17  Bruno Haible  <bruno@clisp.org>
24009
24010         * modules/strndup (Files, Include): Add lib/strndup.h.
24011
24012 2003-08-17  Bruno Haible  <bruno@clisp.org>
24013
24014         * modules/euidaccess (Files): Add lib/euidaccess.h.
24015
24016 2003-08-17  Bruno Haible  <bruno@clisp.org>
24017
24018         * lib/strndup.h: New file.
24019
24020 2003-08-17  Bruno Haible  <bruno@clisp.org>
24021
24022         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
24023         like AC_GNU_SOURCE.
24024         * modules/extensions (configure.ac): Comment out the invocation of
24025         gl_USE_SYSTEM_EXTENSIONS.
24026
24027 2003-08-16  Paul Eggert  <eggert@twinsun.com>
24028
24029         Merges from coreutils, etc.
24030         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
24031         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
24032         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
24033         fixing a typo.
24034         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
24035         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
24036
24037 2003-08-16  Paul Eggert  <eggert@twinsun.com>
24038
24039         Document merge from coreutils.
24040         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
24041         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
24042         * modules/utime: Add m4/utimes-null.m4.
24043
24044 2003-08-16  Paul Eggert  <eggert@twinsun.com>
24045
24046         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
24047         space, undoing this 2003-08-12 change:
24048         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
24049
24050 2003-08-16  Paul Eggert  <eggert@twinsun.com>
24051
24052         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
24053         strtoul.c from libc, undoing this 2003-08-12 change:
24054         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
24055
24056 2003-08-16  Jim Meyering  <jim@meyering.net>
24057
24058         Merges from coreutils.
24059         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
24060         prefix.  Adjust cache variables similarly.  Create 500 rather than
24061         just 300 files, to exercise bug on Darwin6.5, too.
24062         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
24063         $missing_dir.
24064         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
24065         AM_SYS_POSIX_TERMIOS.
24066         Reported by mkc@mathdogs.com.
24067         Also change use of $am_cv_sys_posix_termios
24068         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
24069         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
24070         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
24071         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
24072         in /proc/mounts until it finds one with matching device number.  This
24073         is unnecessary when the FILE argument *is* a mount point.  No stat call
24074         is necessary in that case.  So, disable the statvfs-testing code on
24075         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
24076         as RedHat bug# 84846.
24077         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
24078         to 1MB, so as not to render systems with no stack size limit (e.g.,
24079         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
24080         Include <unistd.h>.  On some systems,
24081         it is required for the definition of _SC_PAGESIZE.
24082
24083 2003-08-16  Jim Meyering  <jim@meyering.net>
24084
24085         Merge from coreutils.
24086         * lib/xstrtoimax.c: #else #if -> #elif.
24087         * lib/xstrtoumax.c: Likewise.
24088
24089 2003-08-16  Jim Meyering  <jim@meyering.net>
24090
24091         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
24092         * m4/utimes.m4: Removed.
24093         * m4/utimes-null.m4: Renamed from utimes.m4.
24094
24095         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
24096         to 1MB, so as not to render systems with no stack size limit (e.g.,
24097         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
24098         Include <unistd.h>.  On some systems,
24099         it is required for the definition of _SC_PAGESIZE.
24100
24101 2003-08-16  Jim Meyering  <jim@meyering.net>
24102         and Paul Eggert  <eggert@cs.ucla.edu>
24103
24104         Merges from coreutils, etc.
24105
24106         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
24107         using the latest version from cvs.  This avoids problems with #line
24108         directives using a vendor (Sun) compiler.
24109         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
24110         Don't set GETGROUPS_LIB here; now it's
24111         done via getgroups.m4's wrapper function.
24112         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
24113         rather than just in sh-util/configure.in, so that the
24114         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
24115         same.
24116         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
24117         AC_FUNC_GETLOADAVG where to find getloadavg.c.
24118         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
24119         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
24120         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
24121         Remove code that is now done by the newly-required macros.
24122         Append $(EXEEXT) to DF_PROG.
24123         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
24124         Do not invoke or require the following here,
24125         since prereq.m4 or some gnulib .m4 now does this for us:
24126         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
24127         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
24128         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
24129         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
24130         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
24131         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
24132         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
24133         AC_FUNC_OBSTACK.
24134         Do not replace the following functions, as this is now the job
24135         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
24136         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
24137         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
24138         atexit getpass, strdup, getpagesize.
24139         Replace 'raise'.
24140         Do not check for the following functions, as this is now the job
24141         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
24142         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
24143         setregid.
24144         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
24145         Check for sys/sysctl.h.
24146         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
24147         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
24148         of checking for ssize_t ourselves.
24149
24150         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
24151         Require every macro that gnulib/modules/* suggests for us.
24152         (jm_PREREQ_ADDEXT): New macro.
24153         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
24154         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
24155
24156         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
24157         (gl_PHYSMEM): Use it.
24158         Also check for `table' function.
24159         Check for new headers and functions.
24160         Add check for sys/sysmp.h.
24161         With suggestions from Kaveh Ghazi.
24162         Ignore headers that are present but cannot be compiled.  This
24163         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
24164         C 5.4.
24165
24166 2003-08-15  Paul Eggert  <eggert@twinsun.com>
24167
24168         Document merge from coreutils.
24169         * modules/userspec: Depend on posixver.
24170         * modules/strftime: Depend on tzset.
24171
24172 2003-08-15  Paul Eggert  <eggert@twinsun.com>
24173
24174         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
24175         rather than tab, after '#' in shell-script copyright notices.
24176         Suggested by Bruno Haible.
24177
24178 2003-08-15  Paul Eggert  <eggert@twinsun.com>
24179
24180         * config/srclist-update: Use three spaces, rather than tab, after '#'
24181         in shell-script copyright notices.  Suggested by Bruno Haible.
24182         Remove unnecessary parenthesization in regular expression.
24183
24184 2003-08-15  Jim Meyering  <jim@meyering.net>
24185
24186         Merge from coreutils.
24187         * lib/xgethostname.c: Include <stdlib.h>.
24188         (xghostname): Don't exit for anything other than memory-related
24189         failure; just return NULL.
24190         * lib/userspec.c: Include "posixver.h".
24191         (parse_user_spec): Accept `.' as a separator only
24192         in pre-POSIX-200112 mode.
24193         * lib/strtoimax.c: Use #elif rather than #else #if.
24194         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
24195         Remove function, now that we can rely on a working tzset function.
24196         [!_LIBC]: Ensure that the required autoconf test has been run.
24197         [!defined _NL_CURRENT && HAVE_STRFTIME]:
24198         Use underlying_strftime for %r.
24199         * lib/sha.c: Merge in some clean-up and optimization changes from
24200         glibc.
24201         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
24202         Ensure that it is a multiple of 64.
24203         Rearrange loop exit tests so as to avoid performing an
24204         additional fread after encountering an error or EOF.
24205         * lib/realloc.c: Update copyright date.
24206
24207 2003-08-15  Jim Meyering  <jim@meyering.net>
24208         and Paul Eggert  <eggert@twinsun.com>
24209
24210         Merge from coreutils.
24211         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
24212         member but strut utmpx does not.  Needed for AIX 4.3.3.
24213         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
24214
24215 2003-08-15  Jim Meyering  <jim@meyering.net>
24216         and Paul Eggert  <eggert@cs.ucla.edu>
24217
24218         Merges from coreutils, etc.
24219         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
24220         Require gl_FUNC_TZSET_CLOBBER.
24221         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
24222         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
24223         members.
24224
24225 2003-08-14  Paul Eggert  <eggert@twinsun.com>
24226
24227         Help the merge from coreutils.
24228         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
24229         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
24230         * m4/tzset.m4: Use it too.
24231
24232 2003-08-14  Paul Eggert  <eggert@twinsun.com>
24233
24234         * modules/tzset: New file.
24235
24236 2003-08-14  Jim Meyering  <jim@meyering.net>
24237
24238         Merges from coreutils.
24239         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
24240         variable names, rather than @FNMATCH_H@.
24241         * modules/alloca: Likewise for $(ALLOCA_H).
24242
24243         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
24244         the three copies of the literal target, `fnmatch.h'.
24245         * modules/alloca (alloca.h): Likewise.
24246
24247 2003-08-14  Jim Meyering  <jim@meyering.net>
24248
24249         Merge from coreutils.
24250         * m4/tzset.m4: New file.
24251         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
24252         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
24253         otherwise, AIX 5.1 systems would end up using the latter.
24254         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
24255         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
24256         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
24257         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
24258
24259 2003-08-14  Jim Meyering  <jim@meyering.net>
24260
24261         Merge from coreutils.
24262         * lib/obstack.h: Whitespace changes.
24263         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
24264         and xcalloc return values.
24265         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
24266         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
24267         hang on OSF/1 5.1 for DIR on both local and remote file systems.
24268         Reported by (and fix confirmed by) Nelson H. F. Beebe.
24269         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
24270         error from mntctl.
24271         Use mntctl's return value to drive the entry-processing loop, since
24272         we can't rely on the value of the vmt_length member in the last
24273         entry.  On some systems doing so could result in exhausting
24274         virtual memory.  Based in part on a patch from Mike Jetzer.
24275
24276 2003-08-14  Jim Meyering  <jim@meyering.net>
24277         and Paul Eggert  <eggert@twinsun.com>
24278
24279         Merges from coreutils, plus other fixes.
24280         * lib/physmem.c: Merge in portability changes from gcc/libiberty
24281         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
24282         for credits and details.  Thanks to Kaveh Ghazi for helping
24283         to keep these files in sync.
24284         (ARRAY_SIZE): Define it.
24285         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
24286         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
24287         (memcasecmp): Don't assume size_t fits in unsigned int.
24288         Remove casts and duplicate code.
24289         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
24290         (memcpy): Remove definition.
24291         Merge in some clean-up and optimization changes from glibc.
24292         [BLOCKSIZE]: Move definition to top of file.
24293         Ensure that it is a multiple of 64.
24294         Rearrange loop exit tests so as to avoid performing an
24295         additional fread after encountering an error or EOF.
24296         * lib/md5.h (md5_uintptr): Define.
24297         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
24298         return to the initial working directory.  Preserve errno
24299         for caller.
24300         * lib/idcache.c: Include "xalloc.h".
24301         (xmalloc, xrealloc): Remove decls.
24302         (getuser): Remove casts no longer required in C89.
24303         * lib/human.c: Include stdio.h, for sprintf.
24304         * lib/group-member.c: Include "xalloc.h".
24305         (xmalloc, xrealloc): Remove decls.
24306         (get_group_info): Remove casts no longer required in C89.
24307         * lib/getusershell.c (readname): Remove casts no longer required in
24308         C89.
24309         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
24310         * lib/getline.c: Whitespace fix, from coreutils.
24311
24312 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24313
24314         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
24315         Check for isascii.
24316
24317         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
24318         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
24319         Undo previous (whitespace-only) change.
24320
24321 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24322
24323         * lib/exclude.c: Include <ctype.h>
24324         (IN_CTYPE_DOMAIN): New macro.
24325         (is_space): New fn.
24326         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
24327         and empty lines.
24328
24329         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
24330         Undo previous (whitespace-only) change.
24331
24332 2003-08-13  Paul Eggert  <eggert@twinsun.com>
24333
24334         * config/srclist-update: Change update back to the old behavior,
24335         leaving whitespace alone.  Use one 'sed' command rather than a
24336         pipeline.
24337         (fixlicense): Now a variable, not a function.
24338         (remove_trailing_blanks): Remove.
24339         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
24340         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
24341         Undo previous (whitespace-only) change.
24342
24343 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24344
24345         Merge from coreutils.
24346         * modules/euidaccess: Add lib_SOURCES, include for new
24347         file euidaccess.h
24348
24349 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24350
24351         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
24352         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
24353         Normalize leading white space and remove trailing white space.
24354
24355         Merge from coreutils
24356         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
24357
24358         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
24359         0.12.1.  These files are now being upgraded automatically by
24360         ../config/srclist-update.
24361
24362 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24363
24364         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
24365         Normalize leading white space and remove trailing white space.
24366         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
24367         notice, as per ../config/srclist-update.
24368
24369         Merge from coreutils.
24370         * lib/euidaccess.h: New file.
24371         * lib/euidaccess.c: Include it.
24372         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
24373         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
24374         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
24375
24376 2003-08-12  Paul Eggert  <eggert@twinsun.com>
24377
24378         * config/srclist-update: Add copyright notice.
24379         (remove_id_lines, remove_trailing_blanks): New constants.
24380         (fixfile): Use them to normalize spacing a bit in copied files.
24381         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
24382         Normalize leading white space and remove trailing white space.
24383
24384         * config/texinfo.tex: Sync with texinfo.
24385
24386         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
24387         strtoul.c from libc, to merge coreutils whitespace changes.
24388
24389         * config/srclist.txt: Get the following m4 files from gettext:
24390         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
24391         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
24392         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
24393         wint_t.m4.
24394
24395 2003-08-12  Karl Berry  <karl@gnu.org>
24396
24397         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
24398         been made.
24399
24400 2003-08-11  Paul Eggert  <eggert@twinsun.com>
24401
24402         * modules/gnu-source, m4/gnu-source.m4:
24403         Remove; we're assuming Autoconf 2.54 or later now.
24404         Suggested by Bruno Haible.
24405         * MODULES.html.sh (func_all_modules): Remove gnu-source.
24406
24407 2003-08-11  Bruno Haible  <bruno@clisp.org>
24408
24409         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
24410
24411 2003-08-11  Bruno Haible  <bruno@clisp.org>
24412
24413         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
24414         (vasnprintf): Use it instead of wcslen.
24415
24416 2003-08-11  Bruno Haible  <bruno@clisp.org>
24417
24418         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
24419         value to ensure that _Bool promotes to int. Use #define for _Bool when
24420         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
24421
24422 2003-08-10  Karl Berry  <karl@gnu.org>
24423
24424         * lib/regex.h: update from libc (whitespace fix).
24425
24426 2003-08-09  Paul Eggert  <eggert@twinsun.com>
24427
24428         Merge some files from coreutils.  These changes were
24429         originally made by Jim Meyering.
24430         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
24431         many older Unixes require this.
24432         * lib/alloca.c (alloca): Remove cast to argument of free;
24433         no longer needed in C89.
24434         * lib/alloca_.h, regex.h: Fix white space to match
24435         what GNU indent does.
24436
24437 2003-08-09  Paul Eggert  <eggert@twinsun.com>
24438
24439         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
24440         apparently Emacs's Unicode mode got confused before my 2003-08-05
24441         checkin.
24442
24443 2003-08-08  Paul Eggert  <eggert@twinsun.com>
24444
24445         * m4/extensions.m4: New file.
24446         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
24447         Require gl_USE_SYSTEM_EXTENSIONS.
24448         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
24449         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
24450
24451 2003-08-08  Paul Eggert  <eggert@twinsun.com>
24452
24453         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
24454         * modules/extensions, modules/gnu-source: New files.
24455         * modules/timespec, modules/unlocked-io: Depend on extensions.
24456
24457 2003-08-07  Paul Eggert  <eggert@twinsun.com>
24458
24459         * modules/restrict: New file.
24460         * MODULES.html.sh (func_all_modules): Add restrict.
24461         * modules/regex: Depend on restrict.
24462
24463 2003-08-07  Paul Eggert  <eggert@twinsun.com>
24464
24465         * m4/restrict.m4: New file.
24466         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
24467
24468 2003-08-07  Bruno Haible  <bruno@clisp.org>
24469
24470         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
24471         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
24472
24473 2003-08-07  Bruno Haible  <bruno@clisp.org>
24474
24475         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
24476         makes the module 'getndelim2' compatible with the module 'getline'.
24477
24478 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24479
24480         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
24481         byte with "\201" to avoid glitches when editing that source file
24482         with multi-gnome-terminal.
24483
24484 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24485
24486         * lib/bumpalloc.h: Remove.
24487
24488 2003-08-05  Paul Eggert  <eggert@twinsun.com>
24489
24490         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
24491         * modules/bumpalloc: Remove.
24492
24493 2003-08-04  Paul Eggert  <eggert@twinsun.com>
24494
24495         * lib/getloadavg.c: Change copyright notice and spacing to conform to
24496         GNU coding style.
24497
24498         Merge from coreutils.
24499         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
24500         1. From glibc.
24501         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
24502         from Karl Berry, implemented by Jim Meyering.
24503         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
24504         from Dmitry V. Levin.
24505         Remove anachronistic cast of xrealloc.
24506         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
24507         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
24508         type. Otherwise, it wouldn't compile with at least /bin/cc on
24509         ymp-cray-unicos9.0.2.X.
24510         Combine two mostly-identical uses of alloca into one.
24511         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
24512
24513 2003-08-04  Dave Love  <d.love@dl.ac.uk>
24514
24515         [From Emacs.]
24516
24517         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
24518         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
24519         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
24520         obsolete NLIST_NAME_UNION.
24521         [__GNU__]: Undef BSD and FSCALE.
24522         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
24523
24524 2003-08-03  Paul Eggert  <eggert@twinsun.com>
24525
24526         * lib/stdbool_.h (_Bool): Make it signed char, instead of
24527         an enum type, so that it's guaranteed to promote to int.  See:
24528         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
24529
24530 2003-08-03  Karl Berry  <karl@gnu.org>
24531
24532         * config/depcomp: update from automake.
24533
24534 2003-07-31  Paul Eggert  <eggert@twinsun.com>
24535
24536         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
24537         (strerror): Don't assume that a printable int fits in 14 bytes.
24538
24539 2003-07-31  Bruno Haible  <bruno@clisp.org>
24540
24541         * modules/getpass-gnu: New file.
24542         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
24543
24544 2003-07-31  Bruno Haible  <bruno@clisp.org>
24545
24546         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
24547
24548 2003-07-24  Karl Berry  <karl@gnu.org>
24549
24550         * config/missing: update from automake.
24551
24552 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
24553             Bruno Haible  <bruno@clisp.org>
24554
24555         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
24556         * lib/getline.c (getline, getdelim): Likewise.
24557         Remove _GNU_SOURCE define; now it's defined in config.h through
24558         m4/getline.m4.
24559
24560 2003-07-23  Karl Berry  <karl@gnu.org>
24561
24562         * config/config.sub: update from prep.
24563
24564 2003-07-22  Paul Eggert  <eggert@twinsun.com>
24565
24566         * modules/xalloc (Depends-on): Add exitfail.
24567         * modules/xmemcoll: Likewise.
24568
24569 2003-07-22  Paul Eggert  <eggert@twinsun.com>
24570
24571         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
24572         over-parenthesization in macros.
24573
24574         Sync with coreutils.
24575
24576         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
24577         required by C99.
24578
24579         Use `exit_failure' for xalloc and xmemcoll instead of their own
24580         private exit-failure variables.
24581         * lib/xalloc.h (xalloc_exit_failure): Remove.
24582         * lib/xmalloc.c: Likewise.  Include exitfail.h.
24583         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
24584         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
24585         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
24586         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
24587
24588 2003-07-20  Jim Meyering  <jim@meyering.net>
24589
24590         * modules/closeout (Depends-on): Add exitfail.
24591         Suggestion from Bruno Haible.
24592
24593 2003-07-19  Karl Berry  <karl@gnu.org>
24594
24595         * config/config.sub: update from prep.
24596
24597 2003-07-18  Paul Eggert  <eggert@twinsun.com>
24598
24599         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
24600         Remove.
24601         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
24602         to test that it can stand by itself.  Include "exitfail.h".
24603         Clients should set exit_failure instead.
24604         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
24605
24606 2003-07-18  Bruno Haible  <bruno@clisp.org>
24607
24608         * modules/getndelim2: New file.
24609         * modules/getline: Share files with module getndelim2.
24610         * modules/getnline: Depend on getndelim2 instead of sharing files with
24611         it. Add getnline.c to lib_SOURCES.
24612         * MODULES.html.sh (func_all_modules): Add getndelim2.
24613
24614 2003-07-18  Bruno Haible  <bruno@clisp.org>
24615
24616         * m4/getndelim2.m4: New file.
24617         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
24618         invoke gl_PREREQ_GETNDELIM2.
24619         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
24620         gl_PREREQ_GETNDELIM2.
24621         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
24622         gl_GETNDELIM2.
24623
24624 2003-07-18  Bruno Haible  <bruno@clisp.org>
24625
24626         * lib/getndelim2.h: New file.
24627         * lib/getndelim2.c: Make into a module of its own. Include config.h,
24628         getndelim2.h.
24629         (getndelim2): Make non-static. Change return type to ssize_t.
24630         * lib/getline.h: Change argument names.
24631         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
24632         * lib/getnline.c: Include getndelim2.h.
24633
24634 2003-07-18  Andreas Schwab  <schwab@suse.de>
24635
24636         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
24637
24638 2003-07-17  Karl Berry  <karl@gnu.org>
24639
24640         * config/config.sub: update from prep.
24641
24642 2003-07-17  Bruno Haible  <bruno@clisp.org>
24643
24644         * modules/getnline: New file.
24645         * modules/getline: Add lib/getndelim2.c to source file list.
24646         * MODULES.html.sh (func_all_modules): Add getnline.
24647
24648 2003-07-17  Bruno Haible  <bruno@clisp.org>
24649
24650         * m4/getnline.m4: New file.
24651
24652 2003-07-17  Bruno Haible  <bruno@clisp.org>
24653
24654         * m4/Makefile.am.in: Remove file.
24655         * m4/Makefile.am: Remove file.
24656         * m4/Makefile.in: Remove file.
24657
24658 2003-07-17  Bruno Haible  <bruno@clisp.org>
24659
24660         * lib/getnline.h: New file.
24661         * lib/getnline.c: New file.
24662         * lib/getndelim2.c: New file, extracted from getline.c.
24663         (getndelim2): Renamed from getdelim2, with added nmax argument.
24664         * lib/getline.c: Include getndelim2.c.
24665         (getdelim2): Moved out to getndelim2.c.
24666         (getline, getdelim): Update.
24667
24668 2003-07-17  Bruno Haible  <bruno@clisp.org>
24669
24670         * lib/Makefile.am: Remove file.
24671         * lib/Makefile.in: Remove file.
24672
24673 2003-07-17  Bruno Haible  <bruno@clisp.org>
24674
24675         * configure.in: Remove file.
24676         * Makefile.in: Remove file.
24677
24678 2003-07-17  Bruno Haible  <bruno@clisp.org>
24679
24680         * MODULES.html.sh: Put the </BODY> right before </HTML>.
24681
24682 2003-07-16  Karl Berry  <karl@gnu.org>
24683
24684         * config/srclist-update: was running fixlicense twice, which caused
24685                 texinfo.tex to be nullified for some reason.  Simplify,
24686                 $gplsrc is no longer needed as far as I can see?
24687
24688 2003-07-16  Jim Meyering  <jim@meyering.net>
24689
24690         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
24691
24692 2003-07-15  Paul Eggert  <eggert@twinsun.com>
24693
24694         * config/srclist.txt: Get the following files from gettext-runtime/intl
24695         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
24696         ref-del.sin.  From Bruno Haible.
24697         * config/srclist-update (fixfile): Change grep pattern again, since the
24698         previous fix didn't work (there was another trailing $).  Use
24699         '[$]' to escape the $s.
24700
24701 2003-07-15  Karl Berry  <karl@gnu.org>
24702
24703         * lib/vasnprintf.c: update from gettext.
24704
24705 2003-07-15  Karl Berry  <karl@gnu.org>
24706
24707         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
24708         gets expanded when surrounded by '$'.
24709
24710 2003-07-15  Jim Meyering  <jim@meyering.net>
24711
24712         * modules/save-cwd: Don't depend on error.  From Derek Price.
24713
24714 2003-07-15  Jim Meyering  <jim@meyering.net>
24715
24716         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
24717
24718 2003-07-14  Simon Josefsson  <jas@extundo.com>
24719
24720         * modules/mempcpy: New file.
24721         * MODULES.html.sh (func_all_modules): Add mempcpy.
24722
24723 2003-07-14  Simon Josefsson  <jas@extundo.com>
24724
24725         * m4/mempcpy.m4: New file.
24726
24727 2003-07-14  Simon Josefsson  <jas@extundo.com>
24728
24729         * lib/mempcpy.h: New file.
24730         * lib/mempcpy.c: New file.
24731
24732 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24733
24734         * modules/getdate, modules/posixtm: Depend on mktime.
24735
24736 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24737
24738         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
24739         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
24740         unicodeio.c, unicodeio.h, unlocked-io.h:
24741         Switch from LGPL to GPL.
24742
24743 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24744
24745         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
24746         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
24747         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
24748         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
24749         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
24750         updated automatically by ../config/srclist-update.  This changes
24751         their license from LPGL to GPL.
24752
24753 2003-07-14  Paul Eggert  <eggert@twinsun.com>
24754
24755         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
24756         assumed to refer to the root of the most recent stable gettext version.
24757         * config/srclistvars.sh: Add defaults for eggert.
24758         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
24759         Match "This program" as well as "The program".  This is needed
24760         for gettext.
24761
24762 2003-07-14  Jim Meyering  <jim@meyering.net>
24763
24764         Don't emit diagnostics.  Let callers do that.
24765         * lib/save-cwd.c: Don't include "error.h".
24766         (save_cwd): Don't call error.  Ensure that errno is valid
24767         when returning nonzero.
24768
24769         * lib/save-cwd.h (restore_cwd): Update prototype.
24770         * lib/save-cwd.c (restore_cwd): Remove two parameters.
24771         Simplify.  Don't call error upon failure.  Let callers do that.
24772         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
24773         when auditing is enabled.  But don't bother updating the #if.
24774
24775 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
24776
24777         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
24778         it breaks C++ compilation.
24779         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
24780
24781 2003-07-10  Simon Josefsson  <jas@extundo.com>
24782
24783         * modules/strchrnul (Makefile.am): Add strchrnul.h.
24784
24785 2003-07-10  Jim Meyering  <jim@meyering.net>
24786
24787         * m4/clock_time.m4: Remove trailing blank.
24788         * m4/intmax_t.m4: Likewise.
24789
24790 2003-07-10  Jim Meyering  <jim@meyering.net>
24791
24792         * lib/vasnprintf.c: Remove trailing blanks.
24793         Make cpp indentation consistent.
24794
24795 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24796
24797         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
24798         posixver.c, strftime.c, strnlen.c, strverscmp.c:
24799         Switch from LGPL to GPL.
24800
24801 2003-07-09  Paul Eggert  <eggert@twinsun.com>
24802
24803         * config/srclist.txt: Sort sublists.  Add
24804         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
24805         that differ from gnulib for one reason or another; we'd like this list
24806         to be smaller but for now let's document what we have.
24807
24808 2003-07-08  Paul Eggert  <eggert@twinsun.com>
24809
24810         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
24811         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
24812         and sweeter "eval x=$x".
24813         * config/srclist.txt: Get lib/argp* from glibc.
24814
24815 2003-07-07  Paul Eggert  <eggert@twinsun.com>
24816
24817         * lib/mktime.c: Fix some boundary cases and remove need for floating
24818         point.
24819
24820         Issue a compile-time diagnostic if time_t is floating point, or if
24821         two's complement arithmetic is not in effect, or if arithmetic
24822         right shift does not propagate the sign.  These assumptions were
24823         all in the original code but they weren't checked.
24824
24825         (TIME_T_MIDPOINT, verify): New macros.
24826         (__isleap): Remove; it has integer overflow problems.
24827         (leapyear): New function, without those problems.
24828         (ydhms_tm_diff): Remove; splitting into two parts.
24829         (ydhms_diff): New function, containing the arithmetic part of
24830         the old ydhms_tm_diff function.  Issue a compile-time
24831         diagnostic if we are not using C99 integer division.
24832         Avoid casts when possible.
24833         (guess_time_tm): New function, containing the checking part of
24834         the old ydhms_tm_diff function.  Return the new value, rather than
24835         the difference between it and the old.  Accept a new argument T
24836         so that *T specifies the old value.  Check for overflow in the result.
24837
24838         (__mktime_internal): Use a time_t offset, not a long int offset.
24839         This undoes the 2003-06-04 change, which is no longer needed now
24840         that we have better overflow checking.
24841         (localtime_offset): Likewise.
24842
24843         (__mktime_internal): Avoid harmful overflow on hosts where time_t
24844         and long are 64-bit but int is only 32-bit.
24845         (ydhms_diff): Use long int to store year1 and yday1.
24846         Issue a compile-time diagnostic if long int is not wide enough.
24847
24848         (__mktime_internal): Use long int to store adjusted year and yday.
24849         Use plain C rather than preprocessor commands, if that doesn't
24850         affect efficiency.
24851         Check for overflow (and try to repair) after each probe
24852         rather than checking only at the very end.  This avoids some bugs
24853         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
24854         does not equal GMT offset at maximum time).
24855         Use integer to check for overflow rather than floating point; this
24856         is more portable to non-IEEE hosts, and is a tad faster.
24857         When we detect that we are oscillating between two values,
24858         don't check whether tm_isdst has the requested value, since
24859         we already know the answer.  When tm_isdst has the wrong value,
24860         use a different heuristic to find the right one, based on the
24861         extreme values actually observed in practice in tz2003a,
24862         rather than the (overly optimistic) "previous 3 calendar quarters".
24863
24864         (not_equal_tm, print_tm, check_result): Use "const T" rather than
24865         "T const" to accommodate glibc style.
24866         (check_result): Use less-confusing report format.  "long" -> "long int.
24867         (main): Likewise.
24868         Don't loop if the iteration overflows time_t.
24869         Allow a negative step in the iteration.
24870
24871 2003-07-06  Karl Berry  <karl@gnu.org>
24872
24873         * config/depcomp: update from automake.
24874         * config/config.sub: update from prep.
24875
24876 2003-07-03  Karl Berry  <karl@gnu.org>
24877
24878         * config/config.guess: update from prep.
24879
24880 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24881
24882         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
24883         xreadlink.c now includes it unconditionally.
24884
24885 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24886
24887         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
24888         having it depend on HAVE_SYS_TYPES_H.
24889
24890 2003-07-01  Bruno Haible  <bruno@clisp.org>
24891
24892         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
24893         <sys/types.h> should be sufficient.
24894         Reported by Paul Eggert.
24895
24896 2003-06-26  Karl Berry  <karl@gnu.org>
24897
24898         * config/depcomp: update from automake.
24899
24900 2003-06-26  Bruno Haible  <bruno@clisp.org>
24901
24902         * modules/human: Depend on module stdbool.
24903
24904 2003-06-25  Bruno Haible  <bruno@clisp.org>
24905
24906         * modules/readlink: New file.
24907         * modules/xreadlink: Depend on it.
24908         * MODULES.html.sh (func_all_modules): Add readlink.
24909
24910 2003-06-25  Bruno Haible  <bruno@clisp.org>
24911
24912         * m4/readlink.m4: New file.
24913
24914 2003-06-25  Bruno Haible  <bruno@clisp.org>
24915
24916         * lib/readlink.c: New file.
24917
24918 2003-06-22  Karl Berry  <karl@gnu.org>
24919
24920         * config/srclist.txt: update mkinstalldirs from automake.
24921         * config/mkinstalldirs: update.
24922
24923 2003-06-22  Bruno Haible  <bruno@clisp.org>
24924
24925         Portability to mingw32.
24926         * m4/ssize_t.m4: New file, from GNU gettext.
24927         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
24928         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
24929
24930 2003-06-22  Bruno Haible  <bruno@clisp.org>
24931
24932         * modules/safe-read: Add m4/ssize_t.m4.
24933         * modules/xreadlink: Add m4/ssize_t.m4.
24934
24935 2003-06-20  Bruno Haible  <bruno@clisp.org>
24936
24937         Assume C89, so PARAMS isn't needed.
24938         * lib/unicodeio.h (PARAMS): Remove.
24939         * lib/unicodeio.c: Don't use PARAMS.
24940
24941 2003-06-18  Karl Berry  <karl@gnu.org>
24942
24943         * config/config.{guess,sub}: update from prep.
24944
24945 2003-06-18  Jim Meyering  <jim@meyering.net>
24946
24947         Merge changes from coreutils.
24948         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
24949         Remove explicit declarations of xmalloc and realloc.
24950         Include xalloc.h.
24951         (read_utmp): Remove anachronistic cast of xmalloc.
24952
24953 2003-06-17  Paul Eggert  <eggert@twinsun.com>
24954
24955         Assume C89, so PARAMS isn't needed.
24956         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
24957         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
24958         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
24959         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
24960         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
24961         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
24962         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
24963         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
24964         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
24965         lib/xstrtod.h, lib/xstrtol.h: Likewise.
24966         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
24967         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
24968         no longer needed. Anyway, config.h should always be included before any
24969         other file.
24970
24971 2003-06-11  Simon Josefsson  <jas@extundo.com>
24972
24973         * modules/sysexits: New file.
24974         * MODULES.html.sh (func_all_modules): Add sysexits.
24975
24976 2003-06-11  Simon Josefsson  <jas@extundo.com>
24977
24978         * lib/sysexit_.h: New file.
24979
24980 2003-06-11  Derek Price  <derek@ximbiot.com>
24981
24982         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
24983         necessary.
24984
24985 2003-06-11  Bruno Haible  <bruno@clisp.org>
24986
24987         * m4/sysexits.m4: New file.
24988
24989 2003-06-10  Simon Josefsson  <jas@extundo.com>
24990
24991         * lib/argp.h: New file, from glibc.
24992         * lib/argp-ba.c: New file, from glibc.
24993         * lib/argp-eexst.c: New file, from glibc.
24994         * lib/argp-fmtstream.c: New file, from glibc.
24995         * lib/argp-fmtstream.h: New file, from glibc.
24996         * lib/argp-fs-xinl.c: New file, from glibc.
24997         * lib/argp-help.c: New file, from glibc.
24998         * lib/argp-namefrob.h: New file, from glibc.
24999         * lib/argp-parse.c: New file, from glibc.
25000         * lib/argp-pv.c: New file, from glibc.
25001         * lib/argp-pvh.c: New file, from glibc.
25002         * lib/argp-xinl.c: New file, from glibc.
25003
25004 2003-06-10  Simon Josefsson  <jas@extundo.com>
25005
25006         * modules/strchrnul: New file.
25007
25008 2003-06-10  Simon Josefsson  <jas@extundo.com>
25009
25010         * modules/argp: New file.
25011
25012 2003-06-10  Simon Josefsson  <jas@extundo.com>
25013
25014         * m4/strchrnul.m4: New file.
25015
25016 2003-06-10  Simon Josefsson  <jas@extundo.com>
25017
25018         * lib/strchrnul.h: New file.
25019         * lib/strchrnul.c: New file.
25020
25021 2003-06-10  Bruno Haible  <bruno@clisp.org>
25022
25023         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
25024
25025 2003-06-07  Karl Berry  <karl@gnu.org>
25026
25027         * config/config.{guess,sub}: update from prep.
25028
25029 2003-06-07  Jim Meyering  <jim@meyering.net>
25030
25031         * modules/strtod: Use $(...) notation, not @...@ for
25032         AC_REPLACE'd variables.
25033         * modules/localcharset: Likewise.
25034
25035 2003-06-07  Jim Meyering  <jim@meyering.net>
25036
25037         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
25038         in place of my name in the copyright comment.
25039         Remove definition and uses of __P.
25040
25041         From coreutils.
25042         * lib/stat.c: Don't declare xmalloc explicitly.
25043         Instead, include "xalloc.h".
25044         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
25045         xrealloc, and xcalloc return values.
25046         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
25047         Improve comment.
25048         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
25049
25050 2003-06-07  Bruno Haible  <bruno@clisp.org>
25051
25052         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
25053         avoid AC_CONFIG_LINKS.
25054         * modules/fnmatch (Makefile.am): Use explicit creation rule for
25055         fnmatch.h, to avoid AC_CONFIG_LINKS.
25056         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
25057
25058 2003-06-07  Bruno Haible  <bruno@clisp.org>
25059
25060         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
25061         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
25062         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
25063         directory.
25064         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
25065         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
25066         directory.
25067
25068 2003-06-06  Jim Meyering  <jim@meyering.net>
25069
25070         Merge from coreutils.
25071         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
25072         Consolidate declarations and initializations of *_base* locals.
25073
25074         Merge from coreutils.
25075         This avoids a core dump on systems without GNU putenv,
25076         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
25077         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
25078         (unsetenv): New static function, from GNU libc.
25079         (rpl_putenv): Use it.
25080
25081         * lib/modechange.c: Remove trailing blanks.
25082
25083         Merge from coreutils.
25084         * lib/fsusage.c: Remove declaration of statfs.
25085         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
25086
25087         * lib/posixtm.c: Include <stdbool.h> unconditionally.
25088
25089 2003-06-06  Jim Meyering  <jim@meyering.net>
25090
25091         * lib/stdbool_.h: Renamed from stdbool.h.in.
25092
25093 2003-06-06  Jim Meyering  <jim@meyering.net>
25094             Bruno Haible  <bruno@clisp.org>
25095
25096         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
25097         Adjust Makefile.am snippet not to redirect directly to target.
25098         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
25099
25100 2003-06-05  Paul Eggert  <eggert@twinsun.com>
25101
25102         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
25103         mismatch, look in future quarters as well as past.  This fixes a
25104         bug when processing fall-backwards gaps immediately after a long
25105         period of daylight-saving time.
25106
25107         * lib/mktime.c: Assume freestanding C89 or better.
25108         (HAVE_LIMITS_H): Remove.  Assume it's 1.
25109         (__P): Remove; not used.
25110         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
25111         (mktime, not_equal_tm, print_tm, check_result,
25112         main): Use prototypes.  Use const * where appropriate.
25113         (main): Fix typo in testing code that uncovered by above changes.
25114         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
25115
25116 2003-06-04  Paul Eggert  <eggert@twinsun.com>
25117
25118         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
25119         locale.h, localeconv.  This merges changes from coreutils.
25120
25121         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
25122         It can be removed after the next Autoconf is released.
25123         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
25124         needed.
25125
25126 2003-06-04  Paul Eggert  <eggert@twinsun.com>
25127
25128         * lib/mktime.c: Fix Debian bug 177940
25129         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
25130         (localtime_offset): Now long int, not time_t, because we want it
25131         to be guaranteed to be signed.  All uses changed.
25132         (__mktime_internal): If overflow would occur when adding offset,
25133         don't add it.
25134
25135         Merge 'human' changes from coreutils.  Rewrite to support
25136         locale-specific notations like thousands separators.
25137         * lib/human.c: Simplify authorship notice.
25138         Include human.h immediately after config.h.
25139         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
25140         <limits.h>: Do not include, since human.h does.
25141         (SIZE_MAX, UINTMAX_MAX): New macros.
25142         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
25143         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
25144         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
25145         (power_letter): Renamed from suffixes.
25146         (generate_suffix_backwards): Remove.
25147         (adjust_value): Now takes int style (because of human.h changes)
25148         and long double value (for greater precision on some platforms).
25149         (group_number): New function.
25150         (human_readable): Use it.  Use integer options, not enum.
25151         Put the options before the sizes in the arg list.
25152         Support all the new options.
25153         The old human_readable function has been removed;
25154         use inttostr.h instead.
25155         (human_readable, default_block_size, humblock):
25156         Use uintmax_t, not int, for block sizes.
25157         (human_readable_inexact, block_size_types): Remove.
25158         (block_size_opts): New constant.
25159         (human_options): Renamed from human_block_size, with new signature
25160         that allows block sizes up to UINTMAX_MAX.  All callers changed.
25161         * lib/human.h: Add copyright and authorship notice.
25162         Include <limits.h> and <stdbool.h> unconditionally.
25163         (PARAMS): Remove.  All uses removed.
25164         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
25165         (enum human_inexact_style): Remove tag; now a nameless enum.
25166         (human_floor, human_ceiling, human_round_to_even): Now have
25167         values 2, 0, 1 rather than -1, 1, 0.
25168         (human_group_digits, human_suppress_point_zero, human_autoscale,
25169         human_base_1024, human_SI, human_B): New constants.
25170         (human_readable_inexact, human_block_size): Remove.
25171         (human_readable): Size args are now uintmax_t, not int.
25172         (human_options): New decl.
25173
25174         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
25175         unnecessary now that we assume C89 or better.  This change
25176         imported from coreutils.
25177
25178         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
25179         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
25180         in the 2003-05-30 sync from glibc.
25181
25182         .h files should stand alone, but we shouldn't include <sys/types.h>
25183         if we can get away with just <stddef.h>.
25184
25185         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
25186         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
25187         rather than <sys/types.h>, as we merely need size_t.
25188         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
25189         to get size_t.
25190         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
25191         Include <stdio.h>, to get FILE.
25192         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
25193         memcasecmp.h has included <stddef.h> and all we need is size_t.
25194         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
25195         our interface, instead of including <sys/types.h>
25196
25197 2003-06-04  Paul Eggert  <eggert@twinsun.com>
25198
25199         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
25200         now, as glibc mktime is buggy on non-glibc systems.
25201
25202 2003-06-03  Karl Berry  <karl@gnu.org>
25203
25204         * config/config.sub: update from prep.
25205
25206 2003-06-02  Paul Eggert  <eggert@twinsun.com>
25207
25208         [from coreutils]
25209         Fix some minor time-related bugs with POSIX time arguments.
25210         Some valid time stamps were being rejected (notably -1, and
25211         time stamps before 1900 on 64-bit hosts).  And some invalid
25212         time stamps were being accepted, e.g. September 31.
25213
25214         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
25215         that we can return (time_t) -1 successfully.
25216         * lib/posixtm.c: Likewise.
25217         [HAVE_STDBOOL_H]: Include <stdbool.h>.
25218         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
25219         (t): Remove static var.
25220         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
25221         of static var.  All uses changed.
25222         (year): Do not reject years before 1900; they can occur with
25223         64-bit time_t.
25224         (posix_time_parse): Do not check for out-of-range components;
25225         that is now the caller's responsibility, since our checks were
25226         only approximations.
25227         (posixtime): Use mktime to check for out-of-range components,
25228         since it knows them exactly.
25229         If mktime returns (time_t) -1, check whether an error actually occurred
25230         by invoking localtime on -1.
25231         (main) [TEST_POSIXTIME]: Check for input data errors, and report
25232         posixtime failures better.
25233         Improve the test data (in comments only).
25234
25235 2003-06-02  Karl Berry  <karl@gnu.org>
25236
25237         * config/mkinstalldirs (version): new variable.
25238         (--version): new option.
25239         (usage): improve message.
25240
25241 2003-05-30  Karl Berry  <karl@gnu.org>
25242
25243         * lib/mktime.c: update from libc.
25244
25245 2003-05-30  Bruno Haible  <bruno@clisp.org>
25246
25247         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
25248         * config/config.rpath: Upgrade to gettext-0.12.1.
25249
25250 2003-05-30  Bruno Haible  <bruno@clisp.org>
25251
25252         * m4/gettext.m4: Upgrade to gettext-0.12.1.
25253         * m4/nls.m4: New file, from gettext-0.12.1.
25254         * m4/po.m4: New file, from gettext-0.12.1.
25255         * m4/progtest.m4: Upgrade to gettext-0.12.1.
25256
25257 2003-05-30  Bruno Haible  <bruno@clisp.org>
25258
25259         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
25260         * lib/localcharset.h: Likewise.
25261         * lib/localcharset.c: Likewise.
25262
25263 2003-05-29  Karl Berry  <karl@gnu.org>
25264
25265         * config/config.rpath: update from gettext.
25266
25267 2003-05-28  Paul Eggert  <eggert@twinsun.com>
25268
25269         Assume the headers required for C89 freestanding compilers.
25270         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
25271         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
25272         * m4/human.m4 (gl_HUMAN): Likewise.
25273         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
25274         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
25275         * m4/userspec.m4 (gl_USERSPEC): Likewise.
25276         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
25277         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
25278         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
25279
25280 2003-05-28  Paul Eggert  <eggert@twinsun.com>
25281
25282         Assume the headers required for C89 freestanding compilers.
25283         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
25284         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
25285         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
25286         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
25287         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
25288         define, since <limits.h> is guaranteed to do that.
25289         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
25290         * lib/exclude.c: Include <stdbool.h> unconditionally.
25291         * lib/tempname.c: Include <stddef.h> unconditionally.
25292         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
25293         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
25294         <stddef.h> does that.
25295         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
25296         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
25297         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
25298         needed.
25299         * lib/xstrtol.c: Likewise.
25300         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
25301         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
25302
25303         * lib/addext.c (addext): Use assignment rather than cast, to avoid
25304         warnings on some platforms.
25305
25306         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
25307         arbitrarily.
25308
25309 2003-05-26  Jim Meyering  <jim@meyering.net>
25310
25311         Merge in a change from coreutils:
25312         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
25313         that is guaranteed to be `no'.  Use `no_such_member' to indicate
25314         that condition, rather than `-1' which is slightly misleading.
25315         Change the name of the cache variable to have the gl_ prefix.
25316         Prompted by a patch from Richard Dawe for DJGPP.
25317
25318 2003-05-24  Karl Berry  <karl@gnu.org>
25319
25320         * config/config.guess: update from prep.
25321
25322 2003-05-22  Karl Berry  <karl@gnu.org>
25323
25324         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
25325
25326 2003-05-20  Karl Berry  <karl@gnu.org>
25327
25328         * config/config.guess: update from prep.
25329
25330 2003-05-18  Karl Berry  <karl@gnu.org>
25331
25332         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
25333         might actually be set by the user.
25334
25335         * config/depcomp, install-sh, mdate-sh: update from automake.
25336
25337 2003-05-17  Bruno Haible  <bruno@clisp.org>
25338
25339         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
25340         invalid expansion for AC_EGREP_CPP.
25341         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
25342         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
25343         Suggested by Akim Demaille <akim@epita.fr> in
25344         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
25345
25346 2003-05-12  Jim Meyering  <jim@meyering.net>
25347
25348         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
25349         the space-padded-by-default conversion specifiers, %e, %k, %l.
25350
25351 2003-05-12  Bruno Haible  <bruno@clisp.org>
25352
25353         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
25354         the string is longer than 4 KB.
25355
25356 2003-05-11  Karl Berry  <karl@gnu.org>
25357
25358         * config/config.{guess,sub}: update from prep.
25359
25360 2003-05-09  Bruno Haible  <bruno@clisp.org>
25361
25362         * modules/error: Add m4/strerror_r.m4 to file list.
25363
25364 2003-05-03  Bruno Haible  <bruno@clisp.org>
25365
25366         Upgrade to Unicode-4.0.
25367         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
25368         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
25369         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
25370         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
25371         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
25372         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
25373         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
25374         Change width of U+E0100..U+E01EF from 1 to 0.
25375
25376 2003-04-25  Jim Meyering  <jim@meyering.net>
25377
25378         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
25379         of type size_t, not int.
25380
25381 2003-04-25  Bruno Haible  <bruno@clisp.org>
25382
25383         * lib/copy-file.c: Include <stddef.h>, for size_t.
25384
25385 2003-04-21  Paul Eggert  <eggert@twinsun.com>
25386
25387         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
25388         code which expansion is under static control.  Patch imported from
25389         Akim Demaille's patch to Bison; see
25390         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
25391
25392 2003-04-14  Bruno Haible  <bruno@clisp.org>
25393
25394         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
25395
25396 2003-04-11  Jim Meyering  <jim@meyering.net>
25397
25398         Merge changes from Coreutils.
25399
25400         2003-03-22  Jim Meyering  <jim@meyering.net>
25401
25402         * lib/strftime.c (widen): Cast alloca return value to proper type.
25403
25404         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
25405
25406         From GNU libc.
25407         * lib/strftime.c (my_strftime): Handle very large width
25408         specifications for numeric values correctly.  Improve checks for
25409         overflow.
25410
25411         2003-01-19  Jim Meyering  <jim@meyering.net>
25412
25413         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
25414         definitions.
25415         (nl_get_alt_digit) [! defined my_strftime]: Define.
25416         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
25417         _nl_get_alt_digit and _nl_get_walt_digit.
25418
25419         * lib/strftime.c (my_strftime): Merge in locale-related changes from
25420         libc. These changes have no effect outside of _LIBC.
25421
25422 2003-04-10  Bruno Haible  <bruno@clisp.org>
25423
25424         * modules/findprog: New file.
25425         * MODULES.html.sh (func_all_modules): Add it.
25426
25427 2003-04-10  Bruno Haible  <bruno@clisp.org>
25428
25429         * m4/findprog.m4: New file.
25430         * m4/eaccess.m4: New file.
25431
25432 2003-04-10  Bruno Haible  <bruno@clisp.org>
25433
25434         * lib/findprog.h: New file, from GNU gettext.
25435         * lib/findprog.c: New file, from GNU gettext.
25436
25437 2003-04-05  Jim Meyering  <jim@meyering.net>
25438
25439         Merge changes from Coreutils.
25440
25441         * lib/exclude.h (PARAMS): Remove definition and uses.
25442         * lib/exclude.c: Remove uses of `PARAMS'.
25443
25444         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
25445         Add test-cases for DOS filenames. Declare program_name.
25446         (main): Set up program_name.  Patch by Rich Dawe.
25447
25448         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
25449         error from mntctl.
25450         Use mntctl's return value to drive the entry-processing loop, since
25451         we can't rely on the value of the vmt_length member in the last
25452         entry.  On some systems doing so could result in exhausting
25453         virtual memory.  Based in part on a patch from Mike Jetzer.
25454
25455 2003-04-04  Bruno Haible  <bruno@clisp.org>
25456
25457         * modules/linebreak: New file.
25458         * MODULES.html.sh (func_all_modules): Add it.
25459
25460 2003-04-04  Bruno Haible  <bruno@clisp.org>
25461
25462         * m4/linebreak.m4: New file.
25463
25464 2003-04-04  Bruno Haible  <bruno@clisp.org>
25465
25466         * lib/linebreak.h: New file, from GNU gettext.
25467         * lib/linebreak.c: New file, from GNU gettext with slight
25468         modifications.
25469         * lib/lbrkprop.h: New file, from GNU gettext.
25470
25471 2003-04-03  Bruno Haible  <bruno@clisp.org>
25472
25473         * modules/utf8-ucs4: New file.
25474         * modules/utf16-ucs4: New file.
25475         * modules/ucs4-utf8: New file.
25476         * modules/ucs4-utf16: New file.
25477         * MODULES.html.sh (func_all_modules): Add them.
25478
25479 2003-04-03  Bruno Haible  <bruno@clisp.org>
25480
25481         * m4/utf-ucs4.m4: New file.
25482         * m4/ucs4-utf.m4: New file.
25483
25484 2003-04-03  Bruno Haible  <bruno@clisp.org>
25485
25486         * lib/utf8-ucs4.h: New file, from GNU gettext.
25487         * lib/utf16-ucs4.h: New file, from GNU gettext.
25488         * lib/ucs4-utf8.h: New file, from GNU gettext.
25489         * lib/ucs4-utf16.h: New file, from GNU gettext.
25490
25491 2003-04-02  Bruno Haible  <bruno@clisp.org>
25492
25493         * modules/binary-io: New file.
25494         * MODULES.html.sh (func_all_modules): Add it.
25495
25496 2003-04-02  Bruno Haible  <bruno@clisp.org>
25497
25498         * lib/binary-io.h: New file, from GNU gettext.
25499
25500 2003-04-01  Bruno Haible  <bruno@clisp.org>
25501
25502         * modules/pathname: New file.
25503         * MODULES.html.sh (func_all_modules): Add it.
25504
25505 2003-04-01  Bruno Haible  <bruno@clisp.org>
25506
25507         * lib/pathname.h: New file, from GNU gettext.
25508         * lib/concatpath.c: New file, from GNU gettext.
25509
25510 2003-03-30  Bruno Haible  <bruno@clisp.org>
25511
25512         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
25513
25514 2003-03-30  Bruno Haible  <bruno@clisp.org>
25515
25516         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
25517         function chown() doesn't exist.
25518
25519 2003-03-28  Bruno Haible  <bruno@clisp.org>
25520
25521         * modules/copy-file: New file.
25522         * MODULES.html.sh (func_all_modules): Add it.
25523
25524 2003-03-28  Bruno Haible  <bruno@clisp.org>
25525
25526         * m4/copy-file.m4: New file.
25527
25528 2003-03-28  Bruno Haible  <bruno@clisp.org>
25529
25530         * lib/copy-file.h: New file, from GNU gettext.
25531         * lib/copy-file.c: New file, from GNU gettext.
25532
25533 2003-03-18  Jim Meyering  <jim@meyering.net>
25534
25535         * lib/quote.c (quote_n): Fix typo in comment.
25536
25537 2003-03-18  Bruno Haible  <bruno@clisp.org>
25538
25539         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
25540         checking.
25541         * m4/onceonly_2_57.m4: Likewise.
25542
25543 2003-03-17  Bruno Haible  <bruno@clisp.org>
25544
25545         * m4/onceonly.m4: Require autoconf 2.54 or newer.
25546         (m4_quote): Remove macro.
25547         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
25548
25549 2003-03-14  Jim Meyering  <jim@meyering.net>
25550
25551         Merge changes from Coreutils.
25552         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
25553         to be const, in order to avoid warnings.
25554         (obstack_room): Likewise.
25555         (obstack_empty_p): Likewise.
25556
25557 2003-03-14  Bruno Haible  <bruno@clisp.org>
25558
25559         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
25560         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
25561
25562 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25563
25564         Merge changes from Bison.
25565         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
25566         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
25567         when compiling Bison 1.875's `bitset bset = obstack_alloc
25568         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
25569         * lib/hash.c: Include <stdbool.h> unconditionally.
25570
25571 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25572
25573         * m4/onceonly.m4 (m4_quote): New macro.
25574         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
25575         Quote AC_FOREACH variable-expansions properly.
25576
25577 2003-03-13  Paul Eggert  <eggert@twinsun.com>
25578
25579         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
25580
25581 2003-03-09  Paul Eggert  <eggert@twinsun.com>
25582
25583         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
25584         Reported by Bruce Becker; see:
25585         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
25586
25587 2003-03-03  Paul Eggert  <eggert@twinsun.com>
25588             Bruno Haible  <bruno@clisp.org>
25589
25590         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
25591         Reported by John Hughes, see
25592         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
25593
25594 2003-02-20  Bruno Haible  <bruno@clisp.org>
25595
25596         * MODULES.html.sh (func_all_modules): Add poll.
25597
25598 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25599
25600         * modules/poll: New file.
25601
25602 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25603
25604         * lib/poll_.h: New file.
25605         * lib/poll.c: New file.
25606
25607 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
25608
25609         * m4/poll.m4: New file.
25610
25611 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25612
25613         * modules/mathl: New file.
25614
25615 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25616
25617         * lib/mathl.h: New file.
25618         * lib/acosl.c: New file.
25619         * lib/asinl.c: New file.
25620         * lib/atanl.c: New file.
25621         * lib/ceill.c: New file.
25622         * lib/cosl.c: New file.
25623         * lib/expl.c: New file.
25624         * lib/floorl.c: New file.
25625         * lib/frexpl.c: New file.
25626         * lib/ldexpl.c: New file.
25627         * lib/logl.c: New file.
25628         * lib/sincosl.c: New file.
25629         * lib/sinl.c: New file.
25630         * lib/sqrtl.c: New file.
25631         * lib/tanl.c: New file.
25632         * lib/trigl.c: New file.
25633         * lib/trigl.h: New file.
25634
25635 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
25636
25637         * m4/mathl.m4: New file.
25638
25639 2003-02-18  Bruno Haible  <bruno@clisp.org>
25640
25641         * MODULES.html.sh (func_all_modules): Add mathl.
25642
25643 2003-02-17  Bruno Haible  <bruno@clisp.org>
25644
25645         * modules/mkdtemp: New module.
25646         * MODULES.html.sh (func_all_modules): Add it.
25647
25648 2003-02-17  Bruno Haible  <bruno@clisp.org>
25649
25650         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
25651
25652 2003-02-17  Bruno Haible  <bruno@clisp.org>
25653
25654         * lib/mkdtemp.h: New file, from GNU gettext.
25655         * lib/mkdtemp.c: New file, from GNU gettext.
25656
25657 2003-02-02  Jim Meyering  <jim@meyering.net>
25658
25659         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
25660         e.g. glibc-2.2.93.
25661
25662 2003-01-31  Bruno Haible  <bruno@clisp.org>
25663
25664         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
25665         'rpl_rename'.
25666         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
25667         'rpl_strnlen'.
25668         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
25669         'rpl_strtod'.
25670         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
25671         'rpl_utime'.
25672
25673 2003-01-31  Bruno Haible  <bruno@clisp.org>
25674
25675         * lib/rename.c: #undef rename before defining rpl_rename.
25676         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
25677
25678 2003-01-30  Bruno Haible  <bruno@clisp.org>
25679
25680         * modules/vasnprintf, modules/vasprintf: New modules.
25681         * MODULES.html.sh (func_all_modules): Add them.
25682
25683 2003-01-30  Bruno Haible  <bruno@clisp.org>
25684
25685         * m4/signed.m4: New file, from GNU gettext.
25686         * m4/longdouble.m4: New file, from GNU gettext.
25687         * m4/wchar_t.m4: New file, from GNU gettext.
25688         * m4/wint_t.m4: New file, from GNU gettext.
25689         * m4/vasnprintf.m4: New file.
25690         * m4/vasprintf.m4: New file.
25691
25692 2003-01-30  Bruno Haible  <bruno@clisp.org>
25693
25694         * lib/printf-args.h: New file, from GNU gettext.
25695         * lib/printf-args.c: New file, from GNU gettext.
25696         * lib/printf-parse.h: New file, from GNU gettext.
25697         * lib/printf-parse.c: New file, from GNU gettext.
25698         * lib/vasnprintf.h: New file, from GNU gettext.
25699         * lib/vasnprintf.c: New file, from GNU gettext.
25700         * lib/asnprintf.c: New file, from GNU gettext.
25701         * lib/vasprintf.h: New file, from GNU gettext with modifications.
25702         * lib/vasprintf.c: New file, from GNU gettext.
25703         * lib/asprintf.c: New file, from GNU gettext.
25704
25705 2003-01-29  Bruno Haible  <bruno@clisp.org>
25706
25707         * modules/stpncpy: New module.
25708         * MODULES.html.sh (func_all_modules): Add it.
25709
25710 2003-01-29  Bruno Haible  <bruno@clisp.org>
25711
25712         * m4/stpncpy.m4: New file.
25713
25714 2003-01-29  Bruno Haible  <bruno@clisp.org>
25715
25716         * lib/stpncpy.h: New file, from GNU gettext with modifications.
25717         * lib/stpncpy.c: New file, from GNU gettext with modifications.
25718
25719 2003-01-28  Bruno Haible  <bruno@clisp.org>
25720
25721         * modules/c-ctype: New module.
25722         * MODULES.html.sh (func_all_modules): Add it.
25723
25724 2003-01-28  Bruno Haible  <bruno@clisp.org>
25725
25726         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
25727         Paul Eggert.
25728         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
25729         Paul Eggert.
25730
25731 2003-01-27  Bruno Haible  <bruno@clisp.org>
25732
25733         * modules/xsetenv: New module.
25734         * MODULES.html.sh (func_all_modules): Add it.
25735
25736 2003-01-27  Bruno Haible  <bruno@clisp.org>
25737
25738         * lib/xsetenv.h: New file, from GNU gettext.
25739         * lib/xsetenv.c: New file, from GNU gettext.
25740
25741 2003-01-23  Jim Meyering  <jim@meyering.net>
25742
25743         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
25744         from working on systems without dirfd (at least Irix and OSF1/Tru64).
25745
25746 2003-01-23  Bruno Haible  <bruno@clisp.org>
25747
25748         * modules/minmax: New module.
25749         * MODULES.html.sh (func_all_modules): Add it.
25750
25751 2003-01-23  Bruno Haible  <bruno@clisp.org>
25752
25753         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
25754         Eggert.
25755
25756 2003-01-22  Bruno Haible  <bruno@clisp.org>
25757
25758         * modules/exit: New module.
25759         * MODULES.html.sh (func_all_modules): Add it.
25760
25761 2003-01-22  Bruno Haible  <bruno@clisp.org>
25762
25763         * lib/exit.h: New file, from GNU gettext.
25764
25765 2003-01-19  Bruno Haible  <bruno@clisp.org>
25766
25767         * gnulib-tool: Recognize option --extract-maintainer.
25768         (func_get_maintainer): New function.
25769         * modules/*: Add Maintainer entry.
25770
25771 2003-01-16  Jim Meyering  <jim@meyering.net>
25772
25773         * m4/regex.m4: The `regex' struct is both input and output.
25774         Initialize it before each use.  Patch by Tim Waugh.
25775
25776 2003-01-16  Bruno Haible  <bruno@clisp.org>
25777
25778         * MODULES.html.sh: Add a table of contents. Add the module name as
25779         leftmost column. Add hyperlinks.
25780
25781 2003-01-15  Bruno Haible  <bruno@clisp.org>
25782
25783         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
25784
25785 2003-01-15  Bruno Haible  <bruno@clisp.org>
25786
25787         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
25788         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
25789         suffix.
25790
25791 2003-01-15  Bruno Haible  <bruno@clisp.org>
25792
25793         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
25794
25795 2003-01-15  Bruno Haible  <bruno@clisp.org>
25796
25797         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
25798         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
25799
25800 2003-01-14  Jim Meyering  <jim@meyering.net>
25801
25802         * lib/same.c (same_name): Tweak a comment.
25803
25804 2003-01-14  Bruno Haible  <bruno@clisp.org>
25805
25806         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
25807         when a string comparison is sufficient.
25808
25809 2003-01-14  Bruno Haible  <bruno@clisp.org>
25810
25811         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
25812         'unsigned int'.
25813
25814 2003-01-14  Bruno Haible  <bruno@clisp.org>
25815
25816         * lib/hash-pjw.c: Add comment about low quality of this function.
25817
25818 2003-01-13  Bruno Haible  <bruno@clisp.org>
25819
25820         * modules/stpcpy: Distribute lib/stpcpy.h.
25821         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
25822
25823 2003-01-13  Bruno Haible  <bruno@clisp.org>
25824
25825         * modules/*: Add a description.
25826         * modules/strpbrk: Fix Makefile.am snippet.
25827         * modules/strtoimax: Fix dependencies.
25828         * modules/strtoumax: Likewise.
25829
25830 2003-01-13  Bruno Haible  <bruno@clisp.org>
25831
25832         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
25833         * modules/alloca (Makefile.am): All object files depend on alloca.h.
25834         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
25835
25836 2003-01-13  Bruno Haible  <bruno@clisp.org>
25837
25838         * gnulib-tool (func_create_testdir): Store config/* files in the main
25839         directory.
25840         * config.rpath: Move to ...
25841         * config/config.rpath: ... here.
25842         * modules/gettext: Contains config/config.rpath, not config.rpath.
25843         * modules/iconv: Likewise.
25844
25845 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25846
25847         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25848         to avoid collisions with libcurses and libreadline.
25849
25850         * m4/getstr.m4: Remove.
25851         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
25852
25853 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25854
25855         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25856         to avoid collisions with libcurses and libreadline.
25857
25858         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
25859         * lib/getstr.h, getstr.c: Remove.
25860         * lib/getline.c: Include "getline.h", to check interface.
25861         Move body of old getstr.c here: this defines MIN_CHUNK and
25862         declares getdelim2, which is renamed from getstr.
25863         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
25864
25865         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
25866         All uses changed.
25867         * lib/linebuffer.h: Likewise.
25868         (readline): Remove backward-compatibility macro.
25869
25870 2003-01-12  Paul Eggert  <eggert@twinsun.com>
25871
25872         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
25873         to avoid collisions with libcurses and libreadline.
25874         * getstr: Remove.
25875         * MODULES.html.sh: Remove getstr.
25876         * modules/getline: Depend on unlocked-io, not getstr.
25877
25878 2003-01-12  Jim Meyering  <jim@meyering.net>
25879
25880         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
25881
25882 2003-01-10  Bruno Haible  <bruno@clisp.org>
25883
25884         * modules/alloca: Change Makefile.am requirements. Simplify Include
25885         requirements. Add lib/alloca_.h to file list.
25886
25887 2003-01-10  Bruno Haible  <bruno@clisp.org>
25888
25889         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
25890
25891 2003-01-10  Bruno Haible  <bruno@clisp.org>
25892
25893         * lib/alloca_.h: New file.
25894         * lib/getdate.y: Unconditionally include alloca.h.
25895         * lib/makepath.c: Likewise.
25896         * lib/setenv.c: Likewise.
25897         * lib/userspec.c: Likewise.
25898
25899 2003-01-09  Karl Berry  <karl@gnu.org>
25900
25901         * MODULES.html.sh: include `dirname $0` in PATH, to find
25902         gnulib-tool.
25903
25904 2003-01-09  Bruno Haible  <bruno@clisp.org>
25905
25906         * modules/stdbool: Change configure.ac, Makefile.am requirements.
25907         Simplify Include requirements. Add lib/stdbool.h.in to file list.
25908
25909 2003-01-09  Bruno Haible  <bruno@clisp.org>
25910
25911         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
25912
25913 2003-01-09  Bruno Haible  <bruno@clisp.org>
25914
25915         * lib/stdbool.h.in: New file.
25916
25917 2003-01-09  Bruno Haible  <bruno@clisp.org>
25918
25919         * gnulib-tool (func_all_modules): Ignore files ending in ~.
25920         * MODULES.html.sh: Likewise.
25921
25922 2003-01-08  Jim Meyering  <jim@meyering.net>
25923
25924         * lib/full-write.c: Undefine and define-away `const' after inclusion
25925         of errno.h, not before.  Suggestion from Bruno Haible.
25926
25927 2003-01-08  Bruno Haible  <bruno@clisp.org>
25928
25929         * modules/full-read: Depend on full-write.
25930
25931 2003-01-08  Bruno Haible  <bruno@clisp.org>
25932
25933         * lib/safe-read.c: Include specification header first, to ensure its
25934         selfcontainedness.
25935         * lib/full-write.c: Likewise.
25936
25937 2003-01-07  Jim Meyering  <jim@meyering.net>
25938
25939         * lib/full-write.c: Rework so that it may serve to define full_read,
25940         too.
25941         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
25942
25943 2003-01-07  Bruno Haible  <bruno@clisp.org>
25944
25945         * lib/strtoimax.c: Include <stdint.h> as an alternative to
25946         <inttypes.h>.
25947         * lib/xstrtol.h: Likewise.
25948         * lib/xstrtoimax.c: Likewise.
25949         * lib/xstrtoumax.c: Likewise.
25950         * lib/human.h: Likewise.
25951
25952         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
25953         on systems that have <inttypes.h> but not <stdint.h>.
25954
25955 2003-01-07  Bruno Haible  <bruno@clisp.org>
25956
25957         * MODULES.html.sh: Add copyright notice.
25958         (missed_files): Omit CVS directory entries.
25959         (func_module): Make it work with sed-3.02.
25960         * MODULES.txt: Remove file.
25961
25962 2003-01-06  Jim Meyering  <jim@meyering.net>
25963
25964         * lib/version-etc.c: Update year in translatable copyright string.
25965
25966 2003-01-03  Karl Berry  <karl@gnu.org>
25967
25968         * config/config.{guess,sub}: update from prep.
25969
25970 2003-01-02  Karl Berry  <karl@gnu.org>
25971
25972         * doc/COPYING.DOC: belatedly updated to 1.2.
25973
25974 2003-01-01  Karl Berry  <karl@gnu.org>
25975
25976         * gnulib-tool (func_verify_module): report module name $module in
25977         error message, not $1.
25978         * gnulib-tool (create-testdir): don't complain if destdir couldn't
25979         be created, only if it doesn't exist.
25980         * gnulib-tool (last_checkin_date): don't expand the $Date here.
25981
25982 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25983
25984         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
25985
25986 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25987
25988         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
25989         memcmp if strcoll doesn't work.
25990
25991 2002-12-31  Bruno Haible  <bruno@clisp.org>
25992
25993         * lib/utime.c (utime_null): No need to call ftruncate if the file was
25994         nonempty.
25995
25996 2002-12-31  Bruno Haible  <bruno@clisp.org>
25997
25998         * lib/memcoll.c (STRCOLL): New macro.
25999         (memcoll): Use it.
26000
26001 2002-12-31  Bruno Haible  <bruno@clisp.org>
26002
26003         * lib/localcharset.h: New file.
26004         * lib/localcharset.c: Include it.
26005         * lib/unicodeio.c: Likewise.
26006
26007 2002-12-31  Bruno Haible  <bruno@clisp.org>
26008
26009         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
26010         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
26011
26012 2002-12-31  Bruno Haible  <bruno@clisp.org>
26013
26014         * lib/getline.h: Include <stddef.h>, for size_t.
26015
26016         * lib/unicodeio.h: Include <stddef.h>, for size_t.
26017         * lib/unicodeio.c: Don't include <stddef.h>.
26018
26019 2002-12-31  Bruno Haible  <bruno@clisp.org>
26020
26021         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
26022         HAVE_TM_ZONE.
26023
26024 2002-12-24  Karl Berry  <karl@gnu.org>
26025
26026         * config/config.guess: update from prep.
26027
26028 2002-12-24  Bruno Haible  <bruno@clisp.org>
26029
26030         General infrasructure.
26031         * m4/README: Rewritten.
26032         * m4/onceonly.m4: New file.
26033         * m4/onceonly_2_57.m4: New file.
26034
26035         Module atexit.
26036         * m4/atexit.m4: New file.
26037
26038         Module strtod.
26039         * m4/strtod.m4: New file.
26040
26041         Module strtol.
26042         * m4/strtol.m4: New file.
26043
26044         Module strtoul.
26045         * m4/strtoul.m4: New file.
26046
26047         Module memchr.
26048         * m4/memchr.m4: New file.
26049
26050         Module memcmp.
26051         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
26052         (jm_FUNC_MEMCMP): Invoke it.
26053
26054         Module memcpy.
26055         * m4/memcpy.m4: New file.
26056
26057         Module memmove.
26058         * m4/memmove.m4: New file.
26059
26060         Module memset.
26061         * m4/memset.m4: New file.
26062
26063         Module strcspn.
26064         * m4/strcspn.m4: New file.
26065
26066         Module strpbrk.
26067         * m4/strpbrk.m4: New file.
26068
26069         Module strstr.
26070         * m4/strstr.m4: New file.
26071
26072         Module strerror.
26073         * m4/strerror.m4: New file.
26074
26075         Module mktime.
26076         * m4/mktime.m4: Renamed from jm-mktime.m4.
26077         (gl_PREREQ_MKTIME): New macro.
26078         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
26079
26080         Module malloc.
26081         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
26082         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
26083         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
26084
26085         Module realloc.
26086         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
26087         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
26088         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
26089
26090         Module strftime.
26091         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
26092         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
26093         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
26094         gl_TM_GMTOFF.
26095         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
26096
26097         Module xalloc.
26098         * m4/xalloc.m4: New file.
26099
26100         Module alloca.
26101         * m4/alloca.m4: New file.
26102
26103         Module putenv.
26104         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
26105         (jm_FUNC_PUTENV): Invoke it.
26106
26107         Module setenv.
26108         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
26109         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
26110         when invoked twice.
26111         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
26112         gt_FUNC_SETENV.
26113
26114         Module memrchr.
26115         * m4/memrchr.m4: New file.
26116
26117         Module stpcpy.
26118         * m4/stpcpy.m4: New file.
26119
26120         Module strcase.
26121         * m4/strcase.m4: New file.
26122
26123         Module strdup.
26124         * m4/strdup.m4: New file.
26125
26126         Module strnlen.
26127         * m4/strnlen.m4: New file.
26128
26129         Module strndup.
26130         * m4/strndup.m4: New file.
26131
26132         Module xstrtod.
26133         * m4/xstrtod.m4: New file.
26134
26135         Module xstrtol.
26136         * m4/xstrtol.m4: New file.
26137
26138         Module getdate.
26139         * m4/getdate.m4: New file.
26140
26141         Module unlocked-io.
26142         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
26143         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
26144         * m4/jm-glibc-io.m4n: Remove file.
26145
26146         Module long-options.
26147         * m4/long-options.m4: New file.
26148
26149         Module md5.
26150         * m4/md5.m4: New file.
26151
26152         Module sha.
26153         * m4/sha.m4: New file.
26154
26155         Module getstr.
26156         * m4/getstr.m4: New file.
26157
26158         Module getline.
26159         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
26160         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
26161         <sys/types.h>, for size_t. Use the function name gnu_getline, not
26162         simply getline. Infoke gl_PREREQ_GETLINE.
26163
26164         Module obstack.
26165         * m4/obstack.m4: New file.
26166
26167         Module hash.
26168         * m4/hash.m4: New file.
26169
26170         Module readtokens.
26171         * m4/readtokens.m4: New file.
26172
26173         Module strverscmp.
26174         * m4/strverscmp.m4: New file.
26175
26176         Module stdbool.
26177         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
26178         OSF/1.
26179
26180         Module strtoll.
26181         * m4/strtoll.m4: New file.
26182
26183         Module strtoull.
26184         * m4/strtoull.m4: New file.
26185
26186         Module strtoimax.
26187         * m4/strtoimax.m4: New file.
26188
26189         Module strtoumax.
26190         * m4/strtoumax.m4: New file.
26191
26192         Module xstrtoimax.
26193         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
26194         jm_AC_PREREQ_XSTRTOIMAX.
26195         Moved the strtol prerequisites to strtol.m4.
26196         Moved the strtoll prerequisites to strtoll.m4.
26197         Moved the strtoimax prerequisites to strtoimax.m4.
26198
26199         Module xstrtoumax.
26200         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
26201         jm_AC_PREREQ_XSTRTOUMAX.
26202         Moved the strtoul prerequisites to strtoul.m4.
26203         Moved the strtoull prerequisites to strtoull.m4.
26204         Moved the strtoumax prerequisites to strtoumax.m4.
26205
26206         Module chown.
26207         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
26208         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
26209
26210         Module dup2.
26211         * m4/dup2.m4: New file.
26212
26213         Module ftruncate.
26214         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
26215         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
26216
26217         Module getgroups.
26218         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
26219         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
26220
26221         Module gettimeofday.
26222         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
26223         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
26224         gl_PREREQ_GETTIMEOFDAY.
26225
26226         Module mkdir.
26227         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
26228         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
26229
26230         Module mkstemp.
26231         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
26232         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
26233         jm_AC_TYPE_UINTMAX_T.
26234         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
26235
26236         Module stat.
26237         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
26238         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
26239
26240         Module lstat.
26241         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
26242         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
26243
26244         Module timespec.
26245         * m4/timespec.m4 (gl_TIMESPEC): New macro.
26246         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
26247         * m4/st_mtim.m4: Indentation.
26248
26249         Module nanosleep.
26250         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
26251         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
26252         gl_PREREQ_NANOSLEEP.
26253
26254         Module regex.
26255         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
26256         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
26257         (gl_REGEX): New macro.
26258
26259         Module rename.
26260         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
26261         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
26262
26263         Module rmdir.
26264         * m4/rmdir.m4: New file.
26265
26266         Module utime.
26267         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
26268         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
26269         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
26270
26271         Module dirname.
26272         * m4/dirname.m4: New file.
26273
26274         Module getopt.
26275         * m4/getopt.m4: New file.
26276
26277         Module unistd-safer.
26278         * m4/unistd-safer.m4: New file.
26279
26280         Module fnmatch.
26281         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
26282         declaration.
26283         (gl_PREREQ_FNMATCH_EXTRA): New macro.
26284         (gl_FUNC_FNMATCH_POSIX): New macro.
26285         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
26286         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
26287         simply fnmatch.
26288
26289         Module exclude.
26290         * m4/exclude.m4: New file.
26291
26292         Module human.
26293         * m4/human.m4: New file.
26294
26295         Module acl.
26296         * m4/acl.m4: Nop.
26297
26298         Module backupfile.
26299         * m4/backupfile.m4: New file.
26300         * m4/d-ino.m4: Indentation.
26301
26302         Module fsusage.
26303         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
26304         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
26305         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
26306
26307         Module dirfd.
26308         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
26309         requirements.
26310
26311         Module euidaccess.
26312         * m4/euidaccess.m4: New file.
26313
26314         Module file-type.
26315         * m4/file-type.m4: New file.
26316
26317         Module fileblocks.
26318         * m4/fileblocks.m4: New file.
26319
26320         Module filemode.
26321         * m4/filemode.m4: New file.
26322
26323         Module isdir.
26324         * m4/isdir.m4: New file.
26325
26326         Module lchown.
26327         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
26328         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
26329
26330         Module makepath.
26331         * m4/makepath.m4: New file.
26332
26333         Module modechange.
26334         * m4/modechange.m4: New file.
26335
26336         Module mountlist.
26337         * m4/mountlist.m4: New file.
26338         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
26339         Indentation.
26340
26341         Module path-concat.
26342         * m4/path-concat.m4: New file.
26343
26344         Module pathmax.
26345         * m4/pathmax.m4: New file.
26346
26347         Module same.
26348         * m4/same.m4: New file.
26349
26350         Module save-cwd.
26351         * m4/save-cwd.m4: New file.
26352
26353         Module savedir.
26354         * m4/savedir.m4: New file.
26355
26356         Module xgetcwd.
26357         * m4/xgetcwd.m4: New file.
26358         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
26359
26360         Module xreadlink.
26361         * m4/xreadlink.m4: New file.
26362
26363         Module safe-read.
26364         * m4/safe-read.m4: New file.
26365
26366         Module safe-write.
26367         * m4/safe-write.m4: New file.
26368
26369         Module closeout.
26370         * m4/closeout.m4: New file.
26371
26372         Module stdio-safer.
26373         * m4/stdio-safer.m4: New file.
26374
26375         Module getpass.
26376         * m4/getpass.m4: New file.
26377
26378         Module getugroups.
26379         * m4/getugroups.m4: New file.
26380
26381         Module group-member.
26382         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
26383         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
26384
26385         Module idcache.
26386         * m4/idcache.m4: New file.
26387
26388         Module userspec.
26389         * m4/userspec.m4: New file.
26390
26391         Module gettime.
26392         * m4/clock_time.m4: New file.
26393         * m4/gettime.m4: New file.
26394
26395         Module settime.
26396         * m4/settime.m4: New file.
26397
26398         Module posixtm.
26399         * m4/posixtm.m4: New file.
26400
26401         Module gethostname.
26402         * m4/gethostname.m4: New file.
26403
26404         Module canon-host.
26405         * m4/canon-host.m4: New file.
26406
26407         Module gettext.
26408         * m4/codeset.m4: New file, from gettext-0.11.5.
26409         * m4/gettext.m4: New file, from gettext-0.11.5.
26410         * m4/glibc21.m4: New file, from gettext-0.11.5.
26411         * m4/iconv.m4: New file, from gettext-0.11.5.
26412         * m4/intdiv0.m4: New file, from gettext-0.11.5.
26413         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
26414         * m4/inttypes.m4: New file, from gettext-0.11.5.
26415         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
26416         * m4/isc-posix.m4: New file, from gettext-0.11.5.
26417         * m4/lcmessage.m4: New file, from gettext-0.11.5.
26418         * m4/lib-ld.m4: New file, from gettext-0.11.5.
26419         * m4/lib-link.m4: New file, from gettext-0.11.5.
26420         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
26421         * m4/progtest.m4: New file, from gettext-0.11.5.
26422         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
26423         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
26424         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
26425
26426         Module localcharset.
26427         * m4/localcharset.m4: New file.
26428
26429         Module hard-locale.
26430         * m4/hard-locale.m4: New file.
26431
26432         Module mbswidth.
26433         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
26434         onceonly macros.
26435         * m4/mbrtowc.m4: Add comment.
26436
26437         Module memcasecmp.
26438         * m4/memcasecmp.m4: New file.
26439
26440         Module memcoll.
26441         * m4/memcoll.m4: New file.
26442
26443         Module unicodeio.
26444         * m4/unicodeio.m4: New file.
26445
26446         Module rpmatch.
26447         * m4/rpmatch.m4: New file.
26448
26449         Module yesno.
26450         * m4/yesno.m4: New file.
26451
26452         Module exitfail.
26453         * m4/exitfail.m4: New file.
26454
26455         Module c-stack.
26456         * m4/c-stack.m4 (gl_C_STACK): New macro.
26457         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
26458
26459         Module error.
26460         * m4/error.m4 (gl_ERROR): New macro.
26461         (jm_PREREQ_ERROR): Use onceonly macros.
26462
26463         Module fatal.
26464         * m4/fatal.m4: New file.
26465
26466         Module getloadavg.
26467         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
26468         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
26469
26470         Module getpagesize.
26471         * m4/getpagesize.m4: New file.
26472
26473         Module getusershell.
26474         * m4/getusershell.m4: New file.
26475
26476         Module physmem.
26477         * m4/physmem.m4: New file.
26478
26479         Module posixver.
26480         * m4/posixver.m4: New file.
26481
26482         Module quotearg.
26483         * m4/quotearg.m4: New file.
26484
26485         Module quote.
26486         * m4/quote.m4: New file.
26487
26488         Module readutmp.
26489         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
26490
26491         Module sig2str.
26492         * m4/sig2str.m4: New file.
26493
26494         Other.
26495         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
26496         ulonglong.m4.
26497         * m4/intmax_t.m4: New file.
26498         * m4/d-type.m4: Indentation.
26499         * m4/jm-macros.m4: Update.
26500         * m4/prereq.m4 (jm_PREREQ): Update.
26501         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
26502         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
26503         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
26504         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
26505         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
26506         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
26507         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
26508         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
26509         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
26510         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
26511         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
26512         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
26513         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
26514         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
26515         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
26516         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
26517         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
26518         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
26519         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
26520
26521 2002-12-24  Bruno Haible  <bruno@clisp.org>
26522
26523         * MODULES.txt: Update according to m4/ changes.
26524
26525         Module gettext.
26526         * config.rpath: New file, from gettext-0.11.5.
26527
26528         * modules/*: New module descriptions.
26529         * gnulib-tool: New file.
26530         * MODULES.html.sh: New file.
26531
26532 2002-12-21  Karl Berry  <karl@gnu.org>
26533
26534         * doc/fdl.texi: update to version 1.2.
26535
26536 2002-12-19  Karl Berry  <karl@gnu.org>
26537
26538         * config/config.guess: update from prep.
26539
26540 2002-12-18  Bruno Haible  <bruno@clisp.org>
26541
26542         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
26543         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
26544
26545 2002-12-17  Bruno Haible  <bruno@clisp.org>
26546
26547         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
26548         stdlib.h, string.h.
26549
26550 2002-12-17  Bruno Haible  <bruno@clisp.org>
26551
26552         * lib/canon-host.c (strdup): Remove unused declaration.
26553
26554         * lib/fsusage.c: Include full_read.h.
26555         (get_fs_usage): Use full_read instead of safe_read.
26556
26557         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
26558
26559 2002-12-12  Karl Berry  <karl@gnu.org>
26560
26561         * config/config.guess: update from prep.
26562
26563 2002-12-11  Bruno Haible  <bruno@clisp.org>
26564
26565         * m4/setenv.m4: New file, from gettext-0.11.5.
26566
26567 2002-12-11  Bruno Haible  <bruno@clisp.org>
26568
26569         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
26570         not unsetenv().
26571         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
26572         modifications:
26573
26574         2002-12-11  Bruno Haible  <bruno@clisp.org>
26575
26576                 * setenv.c (alloca): Fall back to malloc.
26577                 (freea): New macro.
26578                 (setenv): Use freea() to free memory allocated with alloca().
26579
26580         2002-11-13  Bruno Haible  <bruno@clisp.org>
26581
26582                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
26583                 function declarations.
26584                 * unsetenv.c (unsetenv): Likewise.
26585
26586         2002-03-04  Bruno Haible  <bruno@clisp.org>
26587
26588                 Portability to AIX 4.3.3.
26589                 * unsetenv.c: New file, extracted from setenv.c.
26590                 * setenv.c: Move the unsetenv() function to unsetenv.c.
26591
26592         2001-12-20  Bruno Haible  <bruno@clisp.org>
26593
26594                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
26595                 use malloc instead. For SunOS 4.
26596
26597         2001-12-11  Bruno Haible  <bruno@clisp.org>
26598
26599                 * setenv.c: Declare alloca.
26600                 (compar_fn_t): New typedef.
26601                 (KNOWN_VALUE, STORE_VALUE): Use it.
26602
26603         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
26604         setenv.h.
26605
26606 2002-12-10  Paul Eggert  <eggert@twinsun.com>
26607
26608         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
26609         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
26610         Choose values that are less likely to collide with system fnmatch
26611         options.
26612         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
26613         defined (e.g., a pure POSIX system).
26614         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
26615         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
26616
26617 2002-12-06  Paul Eggert  <eggert@twinsun.com>
26618
26619         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
26620         a pain in practice to deal with generated m4 files.  This change
26621         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
26622
26623         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
26624         and jm-glibc-io.m4, as they are no longer a special case.
26625         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
26626         kludge and the auto-generation stuff.  Check only whether the
26627         functions are declared, not whether they exist, since older hosts
26628         that don't declare the functions can't use the optimization anyway.
26629
26630 2002-12-06  Jim Meyering  <jim@meyering.net>
26631
26632         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
26633
26634         Merge in changes from libc's misc/error.c, in preparation
26635         for the merge of gnulib's changes back into libc.
26636
26637         * lib/error.c (_): Define only if not already defined.
26638         Move definition to follow all #include directives.
26639         Include unlocked-io.h only if !_LIBC.
26640         [_LIBC]: Include <libio/libioP.h>.
26641         [USE_IN_LIBIO]: Include <libio/iolibio.h>
26642         (fflush): Tweak definition to use INTUSE.
26643         (putc): Define.
26644
26645 2002-12-05  Paul Eggert  <eggert@twinsun.com>
26646
26647         * lib/alloca.c [defined emacs]: Include "lisp.h".
26648         (xalloc_die) [defined emacs]: New macro.
26649         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
26650         [! defined emacs]: Include <xalloc.h>.
26651         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
26652         (pointer): Typedef to POINTER_TYPE *.
26653         (malloc): Remove decl; we now always use xmalloc.
26654         (alloca): Use old-style definition, since Emacs needs this.
26655         Check for arithmetic overflow when computing combined size.
26656
26657 2002-12-04  Paul Eggert  <eggert@twinsun.com>
26658
26659         Do not generate unlocked-io.h automatically, since it's easier to
26660         maintain it by hand.
26661
26662         * lib/unlocked-io.h: New file, from GNU diffutils,
26663         but with proper copyright notice and attribution.
26664         * lib/gen-uio: Remove.
26665         * lib/Makefile.am: Add copyright notice.
26666         (libfetish_a_SOURCES): Add unlocked-io.h.
26667         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
26668         (DISTCLEANFILES, io_functions): Remove macros.
26669         (EXTRA_DIST): Remove gen_uio.
26670         (unlocked-io.h): Remove rule.
26671
26672 2002-12-04  Jim Meyering  <jim@meyering.net>
26673
26674         Reflect the fact that stat.c and lstat.c are no longer generated.
26675         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
26676         (DISTCLEANFILES): Likewise.
26677         (EXTRA_DIST): Likewise.
26678         (all_local): Don't depend on stat.c or lstat.c.
26679         (stat.c, lstat.c): Remove rules.
26680         (EXTRA_DIST): Remove xstat.in.
26681
26682         * lib/xstat.in: Remove file.  Contents moved into stat.c.
26683         * lib/stat.c: New file.  Contents mostly from xstat.in.
26684         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
26685         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
26686
26687         * lib/safe-read.c: Rework so that it may serve to define safe_write,
26688         too.
26689         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
26690
26691 2002-12-03  Jim Meyering  <jim@meyering.net>
26692
26693         * lib/safe-read.c, safe-write.c: Change variable names and comments,
26694         but not semantics, to minimize the differences between these two files.
26695         (safe_read): Change comment to mention SAFE_READ_ERROR.
26696
26697         * lib/safe-read.c (IS_EINTR): Define.
26698         (safe_read): Use IS_EINTR in place of in-function cpp directives.
26699
26700 2002-12-02  Jim Meyering  <jim@meyering.net>
26701
26702         * lib/safe-read.c (EINTR): Define.
26703         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
26704         (INT_MAX): Provide fallback.
26705         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
26706
26707         * lib/safe-read.h (SAFE_READ_ERROR): Define.
26708
26709 2002-12-02  Bruno Haible  <bruno@clisp.org>
26710
26711         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
26712         Define, taken from safe-read.c.
26713         (INT_MAX): Provide fallback.
26714         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
26715         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
26716
26717         * lib/safe-read.c (EINTR): Remove definition.
26718         (safe_read): Don't use EINTR if it is absent.
26719
26720 2002-12-01  Jim Meyering  <jim@meyering.net>
26721
26722         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
26723         zero.
26724         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
26725
26726 2002-11-27  Paul Eggert  <eggert@twinsun.com>
26727
26728         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
26729         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
26730         with `if (! (value < limit)) abort ();', for readability.
26731
26732 2002-11-26  Karl Berry  <karl@gnu.org>
26733
26734         * lib/strdup.c: copy from libc again, with jim's ok.
26735         * lib/.cppi-disable: re-add strdup.c
26736
26737 2002-11-25  Karl Berry  <karl@gnu.org>
26738
26739         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
26740         instead of "strtol.c".
26741
26742 2002-11-25  Karl Berry  <karl@gnu.org>
26743
26744         * config/install-sh: update from automake for variable quoting, $0 in
26745         error msgs, etc.
26746
26747         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
26748         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
26749         entry.
26750
26751 2002-11-25  Jim Meyering  <jim@meyering.net>
26752
26753         * lib/mktime.c: Sync from libc, now that it has the latest fix.
26754
26755 2002-11-24  Karl Berry  <karl@gnu.org>
26756
26757         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
26758         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
26759
26760 2002-11-24  Jim Meyering  <jim@meyering.net>
26761
26762         Update from coreutils:
26763
26764         * lib/mktime.c: Merge in changes from libc.
26765
26766         Avoid a link-time failure on some Linux systems.
26767         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
26768         (otherwise).
26769         (__mon_yday): Declare with the STATIC attribute.
26770         (__mktime_internal): Likewise.
26771         Based on a report from Greg Schafer.
26772
26773 2002-11-23  Jim Meyering  <jim@meyering.net>
26774
26775         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
26776         Use `unsigned', not `int', as type of index.
26777
26778         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
26779
26780         * lib/fsusage.c: Remove unneeded parentheses around operands of
26781         `defined'.
26782
26783 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26784
26785         * lib/quotearg.h: Allow multiple inclusion by surrounding with
26786         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
26787         so that we can be included first.
26788         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
26789         * lib/quotearg.c: Include quotearg.h immediately after config.h.
26790         No need to include stddef.h or sys/types.h any more.
26791         Surround local include files with "", not "<>".
26792         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
26793         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
26794         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
26795         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
26796         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
26797         (ISPRINT): Remove; no longer needed now that we assume C89.
26798
26799         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
26800         Preserve errno.
26801
26802         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
26803         quotearg_char): Use SIZE_MAX rather than
26804         (size_t) -1 when we are talking about "infinity".
26805
26806         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
26807
26808 2002-11-22  Paul Eggert  <eggert@twinsun.com>
26809
26810         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
26811         hint that one should use `if (! x) abort ();' rather than `assert
26812         (x);', and anyway it's one less thing to worry about configuring.
26813         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
26814         hash_rehash, hash_insert): Use abort rather than assert.
26815
26816 2002-11-22  Bruno Haible  <bruno@clisp.org>
26817
26818         * lib/safe-read.h: Assume C89. Add comments.
26819         (safe_read): Change return type to size_t.
26820         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
26821         byte counts > SSIZE_MAX correctly.
26822         * lib/safe-write.h: New file.
26823         * lib/safe-write.c: New file.
26824         * lib/full-read.h: New file.
26825         * lib/full-read.c: New file.
26826         * lib/full-write.h: Assume C89. Add comments.
26827         * lib/full-write.c: Include safe-write.h.
26828         (full_write): Rewritten to use safe_write.
26829         Suggested by Jim Meyering and Paul Eggert.
26830
26831 2002-11-21  Jim Meyering  <jim@meyering.net>
26832
26833         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
26834
26835         Merge in changes from the coreutils.
26836
26837         2002-09-25  Paul Eggert  <eggert@twinsun.com>
26838         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
26839         <stdint.h>.
26840         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
26841         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
26842         int.  Work more efficiently if X is the same width as uintmax_t.
26843         Do not compare X to -1, to avoid bogus compiler warning.
26844         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
26845         Don't assume that f_frsize and f_bsize are the same type.
26846
26847         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
26848         warning on FreeBSD.
26849
26850         * lib/makepath.c (make_path): Restore umask *before* creating the final
26851         component.
26852         (make_path): Minor reformatting.
26853
26854         * lib/xmalloc.c: Adjust to work with new autoconf macros,
26855         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
26856         HAVE_MALLOC/HAVE_REALLOC.
26857
26858         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
26859         dummy ones.  At least on GNU/Linux systems, `auto' means something
26860         else.
26861         From Michael Stone.
26862
26863 2002-11-21  Bruno Haible  <bruno@clisp.org>
26864
26865         Remove case insensitive option matching.
26866         * lib/argmatch.h (argcasematch): Remove declaration.
26867         (ARGCASEMATCH): Remove macro.
26868         (__xargmatch_internal): Remove case_sensitive argument.
26869         (XARGMATCH): Update.
26870         (XARGCASEMATCH): Remove macro.
26871         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
26872         case_sensitive argument.
26873         (argcasematch): Remove function.
26874         (__xargmatch_internal): Remove case_sensitive argument.
26875         (main): Use XARGMATCH instead of XARGCASEMATCH.
26876
26877         * lib/xmalloc.c: Change compile-time error message. Add comment about
26878         required autoconf version.
26879
26880 2002-11-20  Paul Eggert  <eggert@twinsun.com>
26881
26882         Merge argmatch cleanups from Bison.  Assume C89.
26883
26884         * lib/argmatch.c: Include config.h here, not in argmatch.h.
26885         Include stdlib.h, for EXIT_FAILURE.
26886         Always include <string.h>, since we assume C89.
26887         (EXIT_FAILURE): Remove pre-C89 bug workaround.
26888         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
26889         Include <stddef.h> instead, since it's all we need for size_t.
26890         (PARAMS): Remove.  All uses removed.
26891         (ARRAY_CARDINALITY): Do not bother to #undef.
26892         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
26893         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26894         Remove unnecessary parentheses.
26895         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26896         Insert necessary parentheses.
26897         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
26898         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
26899
26900 2002-11-19  Bruno Haible  <bruno@clisp.org>
26901
26902         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
26903         * lib/mbswidth.h: Include <stddef.h>, for size_t.
26904
26905         * lib/mbswidth.h (PARAMS): Remove macro.
26906         (mbswidth, mbsnwidth): Use ANSI C function declarations.
26907         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
26908
26909         * lib/gcd.h (PARAMS): Remove macro.
26910         (gcd): Use ANSI C function declarations.
26911         * lib/gcd.c (gcd): Likewise.
26912
26913 2002-11-15  Bruno Haible  <bruno@clisp.org>
26914
26915         * lib/strcspn.c: Include <stddef.h>.
26916         (strcspn): Use ANSI C function declaration. Change return type to
26917         size_t. Use NULL.
26918         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
26919         (strpbrk): Use NULL.
26920         * lib/strpbrk.h (PARAMS): Remove macro.
26921         (strpbrk): Use ANSI C function declaration.
26922         * lib/strstr.c: Don't include <sys/types.h>.
26923         * lib/strstr.h (PARAMS): Remove macro.
26924         (strstr): Use ANSI C function declarations.
26925
26926 2002-11-14  Karl Berry  <karl@gnu.org>
26927
26928         * config/mkinstalldirs: `do' on separate line, instead of
26929         `for var; do'.
26930
26931 2002-11-06  Bruno Haible  <bruno@clisp.org>
26932
26933         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
26934         * lib/gcd.c (gcd): Likewise.
26935
26936 2002-11-05  Bruno Haible  <bruno@clisp.org>
26937
26938         * lib/gcd.h: New file, from gettext-0.11.5.
26939         * lib/gcd.c: New file, from gettext-0.11.5.
26940
26941 2002-11-05  Bruno Haible  <bruno@clisp.org>
26942
26943         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26944         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26945         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26946         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26947
26948         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
26949         <libintl.h>.
26950         * lib/makepath.c: Include gettext.h instead of <locale.h> and
26951         <libintl.h>.
26952
26953         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
26954         * lib/human.c: Include gettext.h instead of <libintl.h>.
26955         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
26956         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
26957         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
26958         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
26959         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
26960         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
26961         (textdomain): Remove definition.
26962         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
26963
26964         * lib/long-options.c: Remove include of <libintl.h> and definition of
26965         _.
26966         * lib/same.c: Remove include of <libintl.h> and definition of _.
26967
26968 2002-11-04  Owen Taylor  <otaylor@redhat.com>
26969
26970         * lib/config.charset: A few additions for Solaris.
26971
26972 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26973
26974         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
26975         * lib/localcharset.c (locale_charset): Declare as extern "C".
26976
26977 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26978
26979         * lib/config.charset: msdos in uk_UA uses CP1125.
26980
26981 2002-11-04  Bruno Haible  <bruno@clisp.org>
26982
26983         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
26984         * lib/strcase.h: New file, from GNU gettext-0.11.5.
26985         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
26986         * lib/strstr.h: New file, from GNU gettext-0.11.5.
26987         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
26988
26989 2002-11-04  Bruno Haible  <bruno@clisp.org>
26990
26991         * lib/localcharset.c (locale_charset): Don't return an empty string.
26992
26993 2002-11-04  Bruno Haible  <bruno@clisp.org>
26994
26995         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
26996         aliases.
26997
26998 2002-11-04  Bruno Haible  <bruno@clisp.org>
26999
27000         * lib/config.charset: Update for newest glibc. Add canonical names
27001         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
27002
27003 2002-11-04  Bruno Haible  <bruno@clisp.org>
27004
27005         * lib/config.charset: Add support for NetBSD.
27006
27007 2002-11-04  Bruno Haible  <bruno@clisp.org>
27008
27009         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
27010
27011 2002-11-01  Bruno Haible  <bruno@clisp.org>
27012
27013         * configure.in: Add AC_CONFIG_AUX_DIR call.
27014         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
27015         test/Makefile.
27016         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
27017
27018 2002-09-28  Karl Berry  <karl@gnu.org>
27019
27020         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
27021         installed automake until the next release, since changes have been
27022         made.
27023
27024 2002-09-25  Karl Berry  <karl@gnu.org>
27025
27026         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
27027         * lib/getopt*: copy from libc/posix.
27028         * lib/gettext.h: copy from gettext.
27029         * lib/.cppi-disable: add strdup.c, gettext.h.
27030
27031 2002-09-25  Karl Berry  <karl@gnu.org>
27032
27033         * config/srclist.txt: enable gettext.h check.
27034         * config/config.{guess,sub}: update from prep.
27035         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
27036                 from automake 1.6.3.
27037         See srclist*.
27038
27039 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
27040
27041         * regex.c (PATFETCH): Remove the translating fetch.
27042         (PATFETCH_RAW): Rename to PATFETCH.
27043         (set_image_of_range): New fun.
27044         (SET_RANGE_TABLE_WORK_AREA): Use it.
27045         (regex_compile): Don't translate the pattern chars so eagerly.
27046         Only do it when inserting an `exactn' bytecode or when handling
27047         a char-range.
27048         (mutually_exclusive_p): Avoid empty statement.
27049
27050 2002-07-06  Jim Meyering  <meyering@lucent.com>
27051
27052         * m4/README: Don't mention Makefile.am.in.
27053         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
27054
27055 2002-07-01  Jim Meyering  <meyering@lucent.com>
27056
27057         * lib/c-stack.c: Include sys/time.h.
27058         From Volker Borchert.
27059
27060 2002-06-26  Paul Eggert  <eggert@twinsun.com>
27061
27062         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
27063
27064 2002-06-26  Paul Eggert  <eggert@twinsun.com>
27065
27066         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
27067         New macro.  Use it uniformly instead of
27068         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
27069         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
27070         reported by Vin Shelton.
27071
27072 2002-06-22  Paul Eggert  <eggert@twinsun.com>
27073
27074         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
27075         Do not assume SA_SIGINFO behavior.
27076         Bug reported by Jim Meyering on NetBSD 1.5.2.
27077
27078 2002-06-22  Jim Meyering  <meyering@lucent.com>
27079
27080         * m4/c-stack.m4: New file, from diffutils-2.8.2.
27081         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
27082
27083         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
27084         now that configure.ac uses AC_GNU_SOURCE.
27085         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
27086         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
27087
27088         Update to latest tools.  Suggestions from Paul Eggert.
27089         * m4/stdbool.m4: New file, from diffutils-2.8.2.
27090         * m4/gnu-source.m4: Update from diffutils-2.8.2.
27091         * m4/fnmatch.m4: Likewise.
27092         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
27093         to AC_HEADER_STDBOOL
27094
27095 2002-06-22  Jim Meyering  <meyering@lucent.com>
27096
27097         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
27098         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
27099
27100 2002-06-22  Jim Meyering  <meyering@lucent.com>
27101
27102         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
27103
27104         * lib/exitfail.c, exitfail.h: Likewise.
27105         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
27106
27107         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
27108         of fnmatch.h.
27109         (EXTRA_DIST): Add fnmatch_loop.c.
27110         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
27111
27112         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
27113         * lib/fnmatch.c: Update from diffutils-2.8.2.
27114         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
27115         * lib/fnmatch.h: Remove file.
27116
27117 2002-06-21  Jim Meyering  <meyering@lucent.com>
27118
27119         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
27120         * m4/mbrtowc.m4: Likewise.
27121
27122         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
27123         * m4/mbswidth.m4: Reflect name change:
27124         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
27125         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
27126
27127         * m4/lib-link.m4: Update from gettext-0.11.2.
27128         * m4/gettext.m4: Likewise.
27129
27130         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
27131         From Alfred M. Szmidt.
27132
27133 2002-06-18  Paul Eggert  <eggert@twinsun.com>
27134
27135         * lib/file-type.h: Report an error if neither S_ISREG nor
27136         S_IFREG is defined, instead of using a test specific to glibc
27137         2.2.  This should be safe, since POSIX requires S_ISREG and
27138         Unix Version 7 had S_IFREG.  We don't need to check for
27139         <sys/types.h> since we don't use any symbols that it defines.
27140
27141 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
27142
27143         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
27144         $@-t, so that each temporary file name is unique and valid in the first
27145         8 characters, for operation under DOS.
27146
27147 2002-06-15  Paul Eggert  <eggert@twinsun.com>
27148
27149         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
27150
27151 2002-06-15  Jim Meyering  <meyering@lucent.com>
27152
27153         Work even with DJGPP 2.03, which lacks support for symlinks.
27154         From Richard Dawe.
27155         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
27156         is defined.
27157         * lib/lchown.c (S_ISLNK): Likewise.
27158
27159 2002-06-15  Jim Meyering  <meyering@lucent.com>
27160
27161         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
27162         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
27163         have been included before this file.
27164
27165 2002-06-14  Jim Meyering  <meyering@lucent.com>
27166
27167         * lib/file-type.h: Use the version from diffutils-2.8.2.
27168         * lib/file-type.c: Likewise.
27169
27170 2002-06-07  Jim Meyering  <meyering@lucent.com>
27171
27172         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
27173         They're needed at least for NetBSD 1.5.2.
27174         ($statxfs_includes): Include those same headers.
27175         ($statxfs_includes): Include sys/vfs.h if available.
27176         ($statxfs_includes): Likewise for sys/statvfs.h.
27177         Check for the following members in both structs statfs and statvfs:
27178         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
27179
27180 2002-06-01  Jim Meyering  <meyering@lucent.com>
27181
27182         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
27183         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
27184
27185 2002-05-28  Jim Meyering  <meyering@lucent.com>
27186
27187         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
27188         Reported by Volker Borchert.
27189
27190 2002-05-27  Jim Meyering  <meyering@lucent.com>
27191
27192         Fix a problem seen only on nonconforming systems whereby ls.c's
27193         use of localtime, and then of gettimeofday would cause trouble:
27194         the localtime call used to initialize rpl_gettimeofday's save
27195         mechanism would clobber ls's current local time information so
27196         that in any long listing the first file would always be listed
27197         with date 1970-01-01.  Analysis by Volker Borchert.
27198
27199         * lib/gettimeofday.c (localtime): Undefine.
27200         (rpl_localtime): New function.
27201
27202 2002-05-27  Jim Meyering  <meyering@lucent.com>
27203
27204         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
27205         localtime.
27206
27207         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
27208         use the replacement function; it wouldn't resolve at link time.
27209         Reported by Volker Borchert.
27210
27211 2002-05-22  Jim Meyering  <meyering@lucent.com>
27212
27213         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
27214         file-type.h.
27215         * lib/file-type.h: New file.
27216         * lib/file-type.c (file_type): New file/function.  Extracted from
27217         diffutils.
27218
27219 2002-04-30  Jim Meyering  <meyering@lucent.com>
27220
27221         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
27222
27223 2002-04-29  Paul Eggert  <eggert@twinsun.com>
27224
27225         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
27226
27227 2002-04-29  Paul Eggert  <eggert@twinsun.com>
27228
27229         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
27230         Do not check for alloca.h (no longer used) or stdbool.h (was never
27231         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
27232
27233 2002-04-29  Paul Eggert  <eggert@twinsun.com>
27234
27235         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
27236
27237 2002-04-29  Jim Meyering  <meyering@lucent.com>
27238
27239         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
27240         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
27241         Use AC_FUNC_STRNLEN here instead.
27242
27243         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
27244         With autoconf-2.53a, it's part of AC_PROG_CC.
27245
27246 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27247
27248         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
27249         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
27250
27251 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27252
27253         * lib/sig2str.h, lib/sig2str.c: New files.
27254         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
27255
27256 2002-04-28  Paul Eggert  <eggert@twinsun.com>
27257
27258         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
27259         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
27260         of 127, since 64 is the largest conceivable number for ancient
27261         nonstandard hosts.
27262         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
27263
27264 2002-04-28  Jim Meyering  <meyering@lucent.com>
27265
27266         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
27267
27268 2002-04-24  Jim Meyering  <meyering@lucent.com>
27269
27270         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
27271         (jm_PREREQ): Use it.
27272
27273         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
27274         mach/mach.h fcntl.h.
27275         Check for this function: setlocale.
27276
27277 2002-04-24  Jim Meyering  <meyering@lucent.com>
27278
27279         * lib/gettext.h: New file, from Gettext.
27280         * lib/Makefile.am (INCLUDES): Remove -I../intl.
27281         (libfetish_a_SOURCES): Add gettext.h.
27282
27283 2002-04-16  Jim Meyering  <meyering@lucent.com>
27284
27285         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
27286         ut_pid, ut_id, ut_exit.
27287
27288 2002-04-16  Jim Meyering  <meyering@lucent.com>
27289
27290         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
27291         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
27292         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
27293
27294 2002-04-12  Jim Meyering  <meyering@lucent.com>
27295
27296         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
27297         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
27298         existence of the getmntinfo function.  Needed for Darwin 5.3.
27299
27300         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
27301         This is necessary at least on Darwin 5.3.
27302
27303         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
27304         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
27305         strnlen.o in the library, and that makes some versions of ranlib
27306         object.
27307
27308 2002-04-12  Jim Meyering  <meyering@lucent.com>
27309
27310         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
27311
27312 2002-04-09  Jim Meyering  <meyering@lucent.com>
27313
27314         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
27315         to be more precise.  Rather than saying we're checking whether the
27316         function `works', say what we're testing.
27317         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
27318         Reported by Bruno Haible.
27319
27320 2002-03-10  Jim Meyering  <meyering@lucent.com>
27321
27322         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
27323         Suggestion from Santiago Vila.
27324
27325 2002-03-08  Jim Meyering  <meyering@lucent.com>
27326
27327         * lib/rename.c: Mention that this wrapper is needed also on
27328         mips-dec-ultrix4.4 systems.
27329
27330 2002-03-02  Jim Meyering  <meyering@lucent.com>
27331
27332         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
27333         not HAVE_CLOCK_SETTIME.
27334
27335 2002-02-27  Paul Eggert  <eggert@twinsun.com>
27336
27337         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
27338         Check for clock_settime.
27339
27340 2002-02-27  Paul Eggert  <eggert@twinsun.com>
27341
27342         * lib/nanosleep.h: Rename to....
27343         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
27344
27345         * lib/gettime.c: New file.
27346         * lib/settime.c: New file.
27347         * lib/stime.c: Remove.
27348
27349         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
27350         timespec.h.  Remove nanosleep.h.
27351
27352 2002-02-25  Paul Eggert  <eggert@twinsun.com>
27353
27354         * m4/acl.m4: New file.
27355         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
27356         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
27357
27358 2002-02-25  Paul Eggert  <eggert@twinsun.com>
27359
27360         * lib/acl.c, lib/acl.h: New files.
27361         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
27362
27363 2002-02-24  Jim Meyering  <meyering@lucent.com>
27364
27365         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
27366         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
27367         cause trouble.  Reported by Nelson Beebe.
27368
27369 2002-02-23  Paul Eggert  <eggert@twinsun.com>
27370
27371         * lib/path-concat.c (xpath_concat): Reorder code to pacify
27372         compilers that don't know that xalloc_die never returns.
27373
27374 2002-02-20  Jim Meyering  <meyering@lucent.com>
27375
27376         * lib/getdate.c: Regenerate using bison-1.33.
27377
27378 2002-02-17  Jim Meyering  <meyering@lucent.com>
27379
27380         * config/config.guess (main): Don't use `head -1'; it's no longer
27381         portable. Use `sed 1q' instead.
27382
27383 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
27384
27385         * m4/codeset.m4: Upgrade to gettext-0.11.
27386         * m4/gettext.m4: Upgrade to gettext-0.11.
27387         * m4/glibc21.m4: Upgrade to gettext-0.11.
27388         * m4/iconv.m4: Upgrade to gettext-0.11.
27389         * m4/isc-posix.m4: Upgrade to gettext-0.11.
27390         * m4/lcmessage.m4: Upgrade to gettext-0.11.
27391         * m4/lib-ld.m4: New file, from gettext-0.11.
27392         * m4/lib-link.m4: New file, from gettext-0.11.
27393         * m4/lib-prefix.m4: New file, from gettext-0.11.
27394         * m4/progtest.m4: Upgrade to gettext-0.11.
27395
27396 2002-02-15  Paul Eggert  <eggert@twinsun.com>
27397
27398         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
27399         (jm_PREREQ): Use it.
27400
27401 2002-02-15  Paul Eggert  <eggert@twinsun.com>
27402
27403         * lib/posixver.c, lib/posixver.h: New files.
27404         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
27405
27406 2002-02-02  Paul Eggert  <eggert@twinsun.com>
27407             Bruno Haible  <bruno@clisp.org>
27408
27409         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
27410         (fwrite_success_callback): New declaration.
27411         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
27412         print_unicode_char. Call failure callback instead of error.
27413         (fwrite_success_callback): New function.
27414         (exit_failure_callback): New function.
27415         (fallback_failure_callback): New function.
27416         (print_unicode_char): Call unicode_to_mb.
27417
27418 2002-01-26  Jim Meyering  <meyering@lucent.com>
27419
27420         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
27421         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
27422
27423 2002-01-26  Jim Meyering  <meyering@lucent.com>
27424
27425         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
27426
27427 2002-01-22  Paul Eggert  <eggert@twinsun.com>
27428
27429         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
27430
27431 2002-01-22  Jim Meyering  <meyering@lucent.com>
27432
27433         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
27434         Otherwise, some versions of automake would omit the rule that makes
27435         Makefile from Makefile.in.
27436
27437 2002-01-21  Paul Eggert  <eggert@twinsun.com>
27438
27439         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
27440         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
27441         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
27442         (memcoll): Set errno to zero if there is no error.
27443
27444         * lib/quotearg.c (quotearg_buffer_restyled):
27445         Fix bug with quoting buffers containing NUL when backslashing escapes.
27446         This bug was exposed by the other changes in this patch.
27447         (quotearg_n_options): New arg ARGSIZE.
27448         All callers changed.
27449         (quoting_options_from_style): New function.
27450         (quotearg_n_style): Use it.
27451         (quotearg_n_style_mem): New function.
27452
27453         * lib/quotearg.h (quotearg_n_style_mem): New function.
27454
27455 2002-01-19  Jim Meyering  <meyering@lucent.com>
27456
27457         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
27458         Remove useless quotes: DF_PROG="df".
27459         * m4/strnlen.m4: New file.
27460
27461 2002-01-16  Paul Eggert  <eggert@twinsun.com>
27462
27463         * lib/backupfile.c (ISDIGIT): Comment fix.
27464         * lib/getdate.y (ISDIGIT): Likewise.
27465         * lib/posixtm.c (ISDIGIT, year): Likewise.
27466         * lib/strverscmp.c (ISDIGIT): Likewise.
27467         * lib/userspec.c (ISDIGIT): Likewise.
27468
27469 2002-01-16  Jim Meyering  <meyering@lucent.com>
27470
27471         * lib/getdate.y: Add three semicolons, each just before a closing
27472         brace. Bison (as of version 1.31) no longer papers over that mistake.
27473
27474 2002-01-05  Jim Meyering  <meyering@lucent.com>
27475
27476         * lib/version-etc.c (version_etc_copyright): Update copyright year.
27477
27478 2001-12-19  Paul Eggert  <eggert@twinsun.com>
27479
27480         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
27481         not silently exit merely because the output buffer happens to
27482         have nothing pending.
27483
27484 2001-12-18  Paul Eggert  <eggert@twinsun.com>
27485
27486         See the big note in ../ChangeLog.
27487         * lib/human.c (suffixes): Prefer K to k for 1024.
27488         (generate_suffix_backwards): New function.
27489         (human_readable_inexact): Use it.
27490         * lib/xstrtol.c (__xstrtol): If there is no number but there
27491         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
27492         Accept 'K' as well as 'k'.
27493
27494 2001-12-15  Jim Meyering  <meyering@lucent.com>
27495
27496         * lib/regex.h (__restrict_arr): Update from libc.
27497
27498         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
27499         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
27500         (STREQ): Define.
27501
27502 2001-12-14  Jim Meyering  <meyering@lucent.com>
27503
27504         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
27505         Suggestion from Bruno Haible.
27506
27507 2001-12-10  Jim Meyering  <meyering@lucent.com>
27508
27509         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
27510         xrealloc, Instead, include "xalloc.h".
27511         (initbuffer): Don't cast xmalloc return value to char*.
27512         (readline): Reword comment.
27513         Don't cast xrealloc return value to char*
27514         Return NULL, not 0.
27515
27516 2001-12-09  Jim Meyering  <meyering@lucent.com>
27517
27518         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
27519         about `signed and unsigned type in conditional expression'.
27520         * lib/posixtm.c (posix_time_parse): Likewise.
27521
27522         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
27523
27524         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
27525         to avoid a pedantic warning.
27526
27527         * lib/getstr.c: Don't include assert.h.
27528         (getstr): Remove warning-evoking assertions.
27529         Return -1 if offset parameter is out of bounds.
27530         Change the type of a local from int to size_t.
27531
27532         * lib/strftime.c (my_strftime_localtime_r): Include this function
27533         definition in the `#if ! HAVE_TM_GMTOFF' block.
27534
27535         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
27536         Include xalloc.h instead.
27537
27538 2001-12-02  Jim Meyering  <meyering@lucent.com>
27539
27540         * lib/tempname.c: Don't declare getenv, thus reverting the change of
27541         2001-11-18.  It's no longer necessary, now that stdlib.h is always
27542         included.
27543
27544         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
27545         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
27546
27547 2001-11-30  Akim Demaille  <akim@epita.fr>
27548
27549         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
27550         before being defined.
27551
27552 2001-11-27  Paul Eggert  <eggert@twinsun.com>
27553
27554         * lib/quotearg.h (quotearg_n, quotearg_n_style):
27555         First arg is int, not unsigned.
27556         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
27557         (SIZE_MAX, UINT_MAX): New macros.
27558         (quotearg_n_options): Abort if N is negative.
27559         Avoid overflow check on hosts where size_t is 64 bits and int
27560         is 32 bits, as overflow is impossible there.
27561         Fix off-by-one typo that caused unnecessary reallocation.
27562
27563 2001-11-27  Jim Meyering  <meyering@lucent.com>
27564
27565         * lib/tempname.c: Merge with version from libc.
27566         * lib/regex.c: Likewise.
27567
27568         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
27569         systems for which STDC_HEADERS is 0, it was not included, resulting in
27570         a warning about an integer-to-pointer conversion problem with getenv.
27571         Reported by Volker Borchert.
27572
27573 2001-11-26  Jim Meyering  <meyering@lucent.com>
27574
27575         * lib/gtod.h: Remove file.
27576         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
27577         * lib/gettimeofday.c: Don't include gtod.h.
27578         (GTOD_init): Remove function.
27579         (rpl_gettimeofday): Do its job here instead, rather than aborting.
27580         Suggestion from Volker Borchert.
27581
27582 2001-11-23  Jim Meyering  <meyering@lucent.com>
27583
27584         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
27585         it.
27586         * lib/hash.c (struct hash_table): Define it here instead.
27587
27588 2001-11-22  Jim Meyering  <meyering@lucent.com>
27589
27590         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
27591
27592 2001-11-20  Jim Meyering  <meyering@lucent.com>
27593
27594         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
27595         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
27596
27597 2001-11-19  Jim Meyering  <meyering@lucent.com>
27598
27599         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
27600         directory.  Use "conftestXXXXXX" as the template.
27601         Suggestion from Paul Eggert.
27602
27603         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
27604         immediately, so the test doesn't mistakenly hit the max-open-files
27605         limit.
27606
27607 2001-11-18  Paul Eggert  <eggert@twinsun.com>
27608
27609         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
27610         (TEMPORARIES): New macro.
27611         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
27612         removes an artificial limitation (e.g. HP-UX 10.20, where
27613         TMP_MAX is 17576).
27614
27615 2001-11-18  Jim Meyering  <meyering@lucent.com>
27616
27617         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
27618
27619 2001-11-18  Jim Meyering  <meyering@lucent.com>
27620
27621         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
27622         on SunOS 4.
27623
27624         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
27625         files will be created before anything else.
27626
27627 2001-11-17  Paul Eggert  <eggert@twinsun.com>
27628
27629         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
27630         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
27631
27632 2001-11-17  Jim Meyering  <meyering@lucent.com>
27633
27634         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
27635         Prompted by a report from Bob Proulx.
27636
27637         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
27638         Instead, require UTILS_FUNC_MKSTEMP.
27639
27640 2001-11-17  Jim Meyering  <meyering@lucent.com>
27641
27642         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
27643         Now, that's done as part of AC_FUNC_STRTOD.
27644
27645 2001-11-17  Jim Meyering  <meyering@lucent.com>
27646
27647         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
27648         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
27649         rather than group writable.  Patch by Juan F. Codagnone.
27650
27651         * lib/readtokens.c: Remove explicit declarations of xmalloc and
27652         xrealloc, Instead, include "xalloc.h".
27653
27654         * lib/mountlist.c: Include unlocked-io.h after all system headers.
27655         Remove explicit declarations of xmalloc, xrealloc,
27656         and xstrdup.  Instead, include "xalloc.h".
27657
27658         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
27659         unlocked-io.h.
27660         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
27661         Likewise.
27662         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
27663
27664         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
27665         Reported by Padraig Brady.
27666
27667         * lib/mkstemp.c: #undef mkstemp.
27668         Include config.h.
27669         (rpl_mkstemp): Rename from mkstemp.
27670         Protoize.
27671
27672 2001-11-16  Jim Meyering  <meyering@lucent.com>
27673
27674         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
27675         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
27676         determine the amount of total physical memory, use pstat_getstatic.
27677         HPUX-11 doesn't define _SC_PHYS_PAGES.
27678         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
27679         If sysconf couldn't be used to determine the amount of available
27680         physical memory, use both pstat_getstatic and pstat_getdynamic.
27681         Based on a patch from Bob Proulx.
27682
27683 2001-11-10  Jim Meyering  <meyering@lucent.com>
27684
27685         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
27686         (jm_PREREQ): Use it.
27687
27688 2001-11-09  Jim Meyering  <meyering@lucent.com>
27689
27690         * m4/jm-macros.m4: Require autoconf-2.52f.
27691         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
27692         Use these AC_-prefixed names, not the AM_-prefixed ones.
27693
27694         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
27695
27696 2001-11-05  Jim Meyering  <meyering@lucent.com>
27697
27698         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
27699
27700 2001-11-04  Jim Meyering  <meyering@lucent.com>
27701
27702         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
27703         $DEFS.
27704
27705 2001-11-03  Jim Meyering  <meyering@lucent.com>
27706
27707         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
27708         of AC_DEFUN.
27709
27710         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
27711         know the name of the variable in the macro definition.
27712
27713 2001-11-03  Jim Meyering  <meyering@lucent.com>
27714
27715         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
27716         in argmatch_to_argument call.
27717
27718         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
27719         argument.
27720
27721         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
27722         e.g., a fault due to an attempt to free a NULL pointer.
27723
27724 2001-11-01  Jim Meyering  <meyering@lucent.com>
27725
27726         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
27727         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
27728
27729 2001-11-01  Jim Meyering  <meyering@lucent.com>
27730
27731         * lib/dirfd.c, lib/dirfd.h: New files.
27732         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
27733
27734         * lib/hash.c (hash_print) [TESTING]: Clean up.
27735
27736 2001-10-22  Paul Eggert  <eggert@twinsun.com>
27737
27738         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
27739         to avoid a warning if -Wall.
27740
27741 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
27742
27743         * README: New file
27744         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
27745         (per RMS's instructions, this is now the canonical source)
27746         * lgpl/, gpl/: New directories.
27747
27748 2001-10-21  Paul Eggert  <eggert@twinsun.com>
27749
27750         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
27751
27752 2001-10-21  Jim Meyering  <meyering@lucent.com>
27753
27754         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
27755         this code would end up calling gettext even in packages built
27756         with --disable-nls.
27757         * lib/getopt.c (_): Likewise.
27758         * lib/regex.c (_): Likewise.
27759
27760 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27761
27762         * m4/error.m4 (jm_PREREQ_ERROR):
27763         Do not invoke AC_CHECK_FUNCS with strerror_r, as
27764         AC_FUNC_STRERROR_R does that.
27765         Check for strerror declaration.
27766
27767         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
27768         are supposed to have them these days.
27769         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
27770         Merge changes from latest Autoconf CVS.
27771         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
27772         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
27773         POSIX decided to standardize on the int flavor of strerror_r.
27774
27775 2001-10-20  Paul Eggert  <eggert@twinsun.com>
27776
27777         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
27778         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
27779         Use strerror_r that is only a macro, even if it is not a function.
27780         (strerror): Check for HAVE_DECL_STRERROR before declaring.
27781         (private_strerror): Use prototypes, not old-style function definition.
27782         (print_errno_message): New function.
27783         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
27784         char*-flavored one.
27785         (error_tail, error, error_at_line): Use it.
27786
27787 2001-10-11  Jim Meyering  <meyering@lucent.com>
27788
27789         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
27790         and quote_n (1, ... to avoid clobbering a buffer.
27791
27792 2001-10-05  Jim Meyering  <meyering@lucent.com>
27793
27794         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
27795         hash-pjw.h.
27796         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
27797         * lib/hash-pjw.h: New file.
27798
27799 2001-09-30  Jim Meyering  <meyering@lucent.com>
27800
27801         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
27802         `struct fsstat' has the `f_fstypename' member.
27803         Use that to define FS_TYPE, which is now used to make
27804         the getfsstat link test tighter.
27805
27806 2001-09-30  Jim Meyering  <meyering@lucent.com>
27807
27808         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
27809         Include <sys/ucred.h>, for Apple Darwin.
27810         Include sys/mount.h and sys/fs_types.h only if available.
27811         (FS_TYPE): Define.
27812         (read_filesystem_list): Use FS_TYPE.
27813
27814 2001-09-29  Paul Eggert  <eggert@twinsun.com>
27815
27816         * lib/exclude.c (excluded_filename): 0 -> false, since it's
27817         a boolean context.
27818
27819 2001-09-29  Jim Meyering  <meyering@lucent.com>
27820
27821         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27822         [one-argument getmntent function]): Include stdio.h before mntent.h.
27823         SunOS 4.1.x needs it for the declaration of `FILE'.
27824         Patch by Volker Borchert.
27825
27826         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
27827         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
27828         sys/fs_types.h, and make the link-test for getfsstat guard #include
27829         directives with appropriate #if HAVE_*_H tests so that we can
27830         detect getfsstat on Apple Darwin1.3.7 systems.
27831         Reported by Nelson Beebe.
27832         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
27833
27834 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27835
27836         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27837         #defines strtoimax.  Also treat the other strto* functions
27838         like strtoimax.
27839
27840         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27841         Check for strtoul and strtoumax,
27842         as those declarations are made even in the signed case.
27843         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
27844         Likewise, for strtol and strtoimax.
27845
27846 2001-09-28  Paul Eggert  <eggert@twinsun.com>
27847
27848         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
27849         #defines strtoimax.  Also treat the other strto* functions
27850         like strtoimax.
27851
27852         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
27853         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
27854         (strtoimax, strtoumax): Do not declare if already defined as a macro.
27855
27856 2001-09-26  Jim Meyering  <meyering@lucent.com>
27857
27858         Most macros in unlocked-io.h had the wrong number of arguments.
27859         * lib/gen-uio: New script.
27860         (USE_UNLOCKED_IO): Define to 1 if not already defined.
27861         * lib/unlocked-io.hin: Remove file.
27862         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
27863         rather than trying to embed it here.
27864         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
27865         Reported by Padraig Brady.
27866
27867 2001-09-25  Volker Borchert  <bt@teknon.de>
27868
27869         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
27870         `result'.
27871
27872 2001-09-24  Jim Meyering  <meyering@lucent.com>
27873
27874         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
27875
27876 2001-09-23  Jim Meyering  <meyering@lucent.com>
27877
27878         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
27879         instead of the mere test for existence of mntent.h.  The latter
27880         would get a false-positive on AIX 3.4 systems.
27881         In the outer getmntent if-block, don't die if neither of the getmntent
27882         tests succeeds.  Instead, just fall through and continue with the
27883         remaining tests.
27884
27885 2001-09-23  Jim Meyering  <meyering@lucent.com>
27886
27887         * lib/mountlist.c: Remove useless parentheses in #if directives.
27888         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
27889         the deprecated MOUNTED symbol is no longer defined in mntent.h.
27890
27891 2001-09-22  Jim Meyering  <meyering@lucent.com>
27892
27893         * m4/gettext.m4: New file.  From gettext.
27894         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
27895         * m4/progtest.m4: Likewise
27896         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
27897         * m4/glibc21.m4: Likewise.
27898
27899         * m4/libintl.m4: Remove.  No longer used.
27900
27901 2001-09-22  Jim Meyering  <meyering@lucent.com>
27902
27903         * lib/localcharset.c: Update from latest gettext.
27904         * lib/config.charset: Likewise.
27905
27906 2001-09-20  Jim Meyering  <meyering@lucent.com>
27907
27908         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
27909         strtoimax.
27910         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
27911         strtoumax.
27912
27913 2001-09-20  Jim Meyering  <meyering@lucent.com>
27914
27915         * lib/xstrtol.c (strtoimax): Guard declaration with
27916         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
27917         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
27918         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
27919         (strtoumax): Likewise, for completeness (it wasn't necessary).
27920
27921 2001-09-17  Paul Eggert  <eggert@twinsun.com>
27922
27923         * lib/strtoimax.c (HAVE_LONG_LONG):
27924         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
27925         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
27926         to work around bug in IBM C compiler.
27927
27928 2001-09-17  Jim Meyering  <meyering@lucent.com>
27929
27930         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
27931         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
27932         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
27933         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
27934         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
27935         whenever the right hand side need not be expanded by the shell.
27936
27937 2001-09-16  Paul Eggert  <eggert@twinsun.com>
27938
27939         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
27940         library.  It's not correct, as some older glibcs are buggy.
27941         fnmatch wasn't fixed until glibc 2.2.
27942
27943         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
27944         special shell magic here.
27945
27946 2001-09-16  Jim Meyering  <meyering@lucent.com>
27947
27948         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
27949         * m4/jm-macros.m4: Require it.
27950
27951 2001-09-16  Jim Meyering  <meyering@lucent.com>
27952
27953         * lib/mkdir.c: New file.
27954
27955 2001-09-15  Jim Meyering  <meyering@lucent.com>
27956
27957         * m4/jm-macros.m4: Check for help2man.
27958
27959 2001-09-11  Jim Meyering  <meyering@lucent.com>
27960
27961         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
27962         The body, by Paul Eggert, was moved here from configure.in.
27963         * m4/jm-macros.m4: Require UTILS_HOST_OS.
27964
27965 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27966
27967         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
27968         (jm_PREREQ): Use it.
27969
27970 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27971
27972         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
27973         Use ssize_t, not int, to store result of readlink.
27974         Check for ssize_t overflow as well as size_t overflow,
27975         as POSIX says the result of readlink is implementation-defined
27976         when ssize_t overflows.
27977         Remove unnecessary cast to char*.
27978         Use free+malloc instead of realloc, as the storage doesn't need
27979         to be preserved and it's clearer and can be more efficient that way.
27980         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
27981         * lib/xreadlink.h (xreadlink): Update prototype.
27982
27983 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27984
27985         * lib/xgetcwd.c: Revert some of the previous change; intead,
27986         fix the HAVE_GETCWD_NULL code to behave more like the
27987         !HAVE_GETCWD_NULL code used to.
27988
27989         Include "xalloc.h".
27990         (xgetcwd): Do not return NULL when memory is exhausted; instead,
27991         invoke xalloc_die.
27992
27993 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27994
27995         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
27996         sys/param.h, as pathmax.h includes them.
27997
27998 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27999
28000         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
28001         (jm_PREREQ_XGETCWD): New macro.
28002
28003         * m4/getcwd.m4: New file.
28004
28005 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28006
28007         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
28008         like the HAVE_GETCWD_NULL code.
28009         Include pathmax.h if not HAVE_GETCWD.
28010         Do not include xalloc.h.
28011         (INITIAL_BUFFER_SIZE): New symbol.
28012         Do not use xmalloc / xrealloc, since the caller is responsible for
28013         handling errors.  Preserve errno around `free' during failure.
28014         Do not overrun buffer when using getwd.
28015
28016 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28017
28018         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
28019         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
28020         getcwd (NULL, 0).
28021
28022 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28023
28024         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
28025         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
28026         spotted by Jim Meyering.
28027
28028 2001-09-03  Jim Meyering  <meyering@lucent.com>
28029
28030         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
28031         failure.
28032
28033 2001-09-02  Jim Meyering  <meyering@lucent.com>
28034
28035         * lib/error.c: Update from GNU libc.
28036
28037 2001-09-01  Jim Meyering  <meyering@lucent.com>
28038
28039         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
28040         Used by df.
28041
28042 2001-09-01  Jim Meyering  <meyering@lucent.com>
28043
28044         * lib/xreadlink.c: New file.
28045         * lib/xreadlink.h: New file.
28046         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
28047         xreadlink.h.
28048
28049         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
28050         doesn't conflict with sparc Solaris 7's definition in
28051         /usr/include/sys/int_types.h.
28052
28053         * lib/exclude.c: Use `""', not `<>' to #include non-system header
28054         files.
28055         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
28056         and strncasecmp as r-values.  Unixware didn't have declarations.
28057
28058 2001-08-31  Paul Eggert  <eggert@twinsun.com>
28059
28060         * lib/xstrtol.h: Add copyright notice.
28061         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
28062         LONGINT_INVALID_SUFFIX_CHAR.
28063
28064 2001-08-31  Paul Eggert  <eggert@twinsun.com>
28065
28066         * lib/xstrtol.c (strtoimax): New decl.
28067
28068 2001-08-31  Paul Eggert  <eggert@twinsun.com>
28069
28070         * lib/xgetcwd.c: Don't include pathmax.h.
28071         Include stdlib.h and unistd.h if available.
28072         Include xalloc.h.
28073         (xmalloc, xstrdup, free): Remove decls.
28074         (xgetcwd): Don't assume sizes fit in unsigned.
28075         Check for overflow when computing sizes.
28076         Simplify reallocation code.
28077
28078 2001-08-31  Paul Eggert  <eggert@twinsun.com>
28079
28080         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
28081         a directory's st_size can have an arbitrary value, so the old
28082         usage could waste an arbitrary amount of memory.  All uses
28083         changed.
28084         * lib/savedir.h: Update prototype.
28085
28086 2001-08-31  Paul Eggert  <eggert@twinsun.com>
28087
28088         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
28089
28090         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
28091         old strtoimax.c.
28092
28093         Also, make the following further changes to make this file's
28094         configuration more similar to that of strtol.c:
28095         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
28096         (strtoumax, uintmax_t, strtoull, strtol): Remove.
28097         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
28098         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
28099         changed to signed values.
28100
28101         And make the following changes as well:
28102         Fix copyright notice, as 1999 was missing.
28103         (verify): New macro.
28104         (strtoimax): Check sizes at compile-time, not run-time.
28105         Prefer strtol to strtoll if both work.
28106         (main): Remove; it was not that useful and was a pain to maintain.
28107
28108         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
28109
28110 2001-08-31  Jim Meyering  <meyering@lucent.com>
28111
28112         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
28113         Use an initial, malloc'd, buffer of length 128 rather than
28114         a statically allocated one of length 1024.
28115
28116 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28117
28118         Simplify code, partly by assuming autoconf 2.52 semantics.
28119
28120         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
28121
28122         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
28123         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
28124         All uses removed.
28125         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
28126         Move AC_REQUIRE to next-to-top level, to avoid confusion.
28127         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
28128         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
28129         jm_AC_HEADER_INTTYPES_H.
28130         * m4/jm-macros.m4 (jm_MACROS): Likewise.
28131
28132         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
28133
28134         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
28135         Quote first arg of AC_DEFUN.
28136         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
28137         since they are needed to parse the include file even if we need
28138         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
28139         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
28140         but with opposite signedness.
28141
28142 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28143
28144         Merge 'exclude' changes from tar 1.13.22.
28145         This fixes one or two unlikely storage allocation overflow bugs,
28146         but doesn't change user-visible behavior otherwise.
28147
28148 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28149
28150         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
28151         (jm_PREREQ_EXCLUDE): New macro.
28152
28153 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28154
28155         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
28156         tm to be declared.
28157
28158 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28159
28160         * lib/hash.c: Remove '2001' from copyright notice.
28161
28162 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28163
28164         * lib/full-write.h: New file.
28165         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
28166         * lib/full-write.c: Correct credits, as cccp.c no longer
28167         exists and anyway it was so heavily changed from the old cccp
28168         code as to be unrecognizable.  Include full-write.h.
28169         (full_write) Return size_t, with short writes meaning failure.
28170         All callers changed.  This fixes a bug with large buffers
28171         on 64-bit hosts.
28172         * lib/utime.c: Include full-write.h.
28173
28174 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28175
28176         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
28177         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
28178         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
28179         Include if available.
28180         (<xalloc.h>): Include
28181         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
28182         (verify): New macro.  Use it to verify that EXCLUDE macros do not
28183         collide with FNM macros.
28184         (struct patopts): New struct.
28185         (struct exclude): Use it, as exclude patterns now come with options.
28186         (new_exclude): Support above changes.
28187         (new_exclude, add_exclude_file):
28188         Initial size must now be a power of two to simplify overflow checking.
28189         (free_exclude, fnmatch_no_wildcards): New function.
28190         (excluded_filename): No longer requires options arg, as the options
28191         are determined by add_exclude.  Now returns bool, not int.
28192         (excluded_filename, add_exclude):
28193         Add support for the fancy new exclusion options.
28194         (add_exclude, add_exclude_file): Now takes int options arg.
28195         Check for arithmetic overflow when computing sizes.
28196         (add_exclude_file): xrealloc might modify errno, so don't
28197         realloc until after errno might be used.
28198
28199         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
28200         New macros.
28201         (free_exclude): New decl.
28202         (add_exclude, add_exclude_file): Now takes int options arg.
28203         (excluded_filename): No longer requires options arg, as the options
28204         are determined by add_exclude.  Now returns bool, not int.
28205
28206 2001-08-30  Paul Eggert  <eggert@twinsun.com>
28207
28208         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
28209
28210 2001-08-27  Jim Meyering  <meyering@lucent.com>
28211
28212         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
28213
28214         * lib/version-etc.c (N_): Remove definition.
28215         Revert most of last change.
28216         Instead, simply don't mark the `Copyright...' string for translation.
28217         Based on advice from Paul Eggert.
28218
28219         * lib/strtoxmax.c: Tweak comment.
28220
28221 2001-08-26  Jim Meyering  <meyering@lucent.com>
28222
28223         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
28224
28225         * m4/xstrtoimax.m4: New file.
28226         * m4/xstrtoumax.m4: Add comments explaining why we
28227         AC_REPLACE_FUNCS(strtol).
28228
28229 2001-08-26  Jim Meyering  <meyering@lucent.com>
28230
28231         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
28232         of copyright with `%s' so translators don't get an untranslated
28233         message in 2002.
28234         (COPYRIGHT_YEAR): Define.
28235         (version_etc): Use fprintf rather than fputs.
28236         Suggestion from Ulrich Drepper.
28237
28238         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
28239
28240         * lib/strtoll.c: New file, from GNU libc.
28241         * lib/xstrtoimax.c: New file.
28242
28243         * lib/xstrtol.h: Add xstrtoimax.
28244         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
28245         * lib/strtoimax.c: New file.  Likewise, but first define
28246         STRTOUXMAX_SIGNED.
28247
28248         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
28249         ...
28250         * lib/strtoxmax.c: ... then renamed to this.
28251
28252 2001-08-18  Paul Eggert  <eggert@twinsun.com>
28253
28254         * m4/inttypes.m4: Add AC_PREREQ(2.13).
28255         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
28256         (jm_AC_TYPE_INTMAX_T): New macro.
28257         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
28258
28259         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
28260
28261         * m4/longlong.m4: Renamed from ulonglong.m4.
28262         * m4/inttypes.m4: Renamed from inttypes_h.m4.
28263         * m4/uintmax_t.m4: Removed.
28264
28265 2001-08-13  Paul Eggert  <eggert@twinsun.com>
28266
28267         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
28268         Port to Solaris 8, where 'sed' requires a space after the 'r'
28269         command, and where sh dislikes "$/".  Clean up the spacing a bit.
28270         Redirect output to $tmp just once.
28271
28272 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
28273
28274         * lib/addext.c (<errno.h>): Include.
28275         (errno): Declare if not defined.
28276         (addext): Work correctly when pathconf returns -1 and leaves
28277         errno alone because there is no limit.  Also, work even if
28278         pathconf returns a value greater than SIZE_MAX.
28279
28280 2001-08-12  Jim Meyering  <meyering@lucent.com>
28281
28282         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
28283         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
28284         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
28285         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
28286         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
28287         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
28288         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
28289         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
28290         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
28291         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
28292         utime.m4, utimes.m4, xstrtoumax.m4:
28293         Quote the first argument in each use of AC_DEFUN.
28294
28295 2001-08-12  Jim Meyering  <meyering@lucent.com>
28296
28297         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
28298         Simply `return getcwd (NULL, 0);'.
28299         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
28300         Use 1300 as initial value for length, not PATH_MAX.
28301
28302         * lib/pathmax.h: Clean up cpp syntax.
28303
28304 2001-08-12  Jim Meyering  <meyering@lucent.com>
28305
28306         * lib/gettimeofday.c: New file.
28307         * lib/gtod.h: New file.
28308         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
28309
28310 2001-08-05  Jim Meyering  <meyering@lucent.com>
28311
28312         * m4/jm-macros.m4: Require autoconf-2.52.
28313
28314 2001-08-04  Jim Meyering  <meyering@lucent.com>
28315
28316         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
28317         stmt, to get in sync with glibc.
28318
28319 2001-08-03  Paul Eggert  <eggert@twinsun.com>
28320
28321         The following changes are from gettext 0.10.39 as maintained by
28322         Bruno Haible.
28323
28324         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
28325         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
28326         with inverted sense.  All uses changed.
28327
28328         * lib/mbswidth.c: Don't include <limits.h>.
28329         Include <stdlib.h> and <string.h> unconditionally.
28330         (iswcntrl, mbsinit, ISCNTRL): New macros.
28331         (mbsnwidth): Use K&R style function declarations.
28332         Don't bother checking for MB_LEN_MAX == 1, since the compiler
28333         can optimize it when MB_CUR_MAX == 1.
28334         The width of control characters is zero, not 1.
28335
28336 2001-08-03  Paul Eggert  <eggert@twinsun.com>
28337
28338         The following changes are from gettext 0.10.39 as maintained by
28339         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
28340
28341         * m4/codeset.m4: Upgrade to serial AM1.
28342         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
28343         all uses changed.  Quote first arg of AC_DEFUN.
28344         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
28345
28346         * m4/iconv.m4: Upgrade to serial AM2.
28347         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
28348         Add --with-libconv-prefix.
28349         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
28350         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
28351         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
28352         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
28353         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
28354
28355         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
28356         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
28357         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
28358         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
28359         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
28360         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
28361         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
28362         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
28363         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
28364
28365         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
28366         string.h any more.
28367
28368         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
28369         not the default value.
28370
28371         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
28372         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
28373         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
28374         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
28375         Also check for iswcntrl, used for wcwidth fallback.
28376         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
28377         to Autoconf 2.13.
28378
28379 2001-08-03  Jim Meyering  <meyering@lucent.com>
28380
28381         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
28382         as it was in the original.  Reported by Paul Eggert.
28383
28384 2001-07-16  Jim Meyering  <meyering@lucent.com>
28385
28386         * m4/gettimeofday.m4: New file.
28387         Prompted by a report from Bernhard Baehr.
28388
28389 2001-07-15  Jim Meyering  <meyering@lucent.com>
28390
28391         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
28392         stuff. Now it's in ../Makefile.cfg.
28393
28394 2001-07-15  Jim Meyering  <meyering@lucent.com>
28395
28396         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
28397         (BUILT_SOURCES): Add unlocked-io.h.
28398         (io_functions): Define.
28399         (unlocked-io.h): New rule.
28400         (DISTCLEANFILES): Add unlocked-io.h.
28401         (all-local): Depend on unlocked-io.h, to ensure it is created.
28402
28403         * lib/unlocked-io.hin: New file
28404
28405         * lib/regex.c: Update from glibc.
28406
28407 2001-07-05  Jim Meyering  <meyering@lucent.com>
28408
28409         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
28410         recommendation.
28411         (libfetish_a_SOURCES): Put all .h files here instead.
28412         Remove a thus-exposed (better checks in automake) duplicate and
28413         two unnecessary .h files.
28414
28415 2001-07-04  Jim Meyering  <meyering@lucent.com>
28416
28417         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
28418         that generates jm-glibc-io.m4 so that it doesn't trigger any make
28419         distcheck failure.
28420
28421 2001-07-02  Jim Meyering  <meyering@lucent.com>
28422
28423         The following changes were prompted by suggestions from Bruno Haible.
28424
28425         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
28426         is now generated.
28427         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
28428         definition of EXTRA_DIST.
28429         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
28430         ensure that the generated file is created/updated whenever the list
28431         of $(unlocked_functions) is changed.
28432         (jm-glibc-io.m4): New rule.
28433         (unlocked-io.h): New rule -- currently unused.
28434
28435 2001-06-24  Jim Meyering  <meyering@lucent.com>
28436
28437         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
28438         unmatched right bracket, rather than kludging it with an extra,
28439         falsely-matching quote in a comment.  Patch by Akim Demaille.
28440
28441 2001-06-11  Jim Meyering  <meyering@lucent.com>
28442
28443         * lib/regex.c: Update from GNU libc.
28444
28445 2001-05-27  Jim Meyering  <meyering@lucent.com>
28446
28447         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
28448         Check for ut_type in struct utmp.
28449
28450 2001-05-27  Jim Meyering  <meyering@lucent.com>
28451
28452         * lib/readutmp.h (UT_TYPE): Define.
28453
28454 2001-05-24  Jim Meyering  <meyering@lucent.com>
28455
28456         * lib/argmatch.c: Include "quote.h".
28457         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
28458         quote function.  Reported by Göran Uddeborg.
28459
28460 2001-05-22  Jim Meyering  <meyering@lucent.com>
28461
28462         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
28463         now that we use the package-supplied version unconditionally.
28464         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
28465
28466 2001-05-21  Jim Meyering  <meyering@lucent.com>
28467
28468         * m4/regex.m4: Change a couple backticks to single quotes to avoid
28469         shell syntax errors.
28470
28471 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
28472
28473         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
28474
28475 2001-05-20  Paul Eggert  <eggert@twinsun.com>
28476
28477         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
28478         Don't bother to check library strftime, since
28479         we'll be using our own my_strftime function anyway.
28480         Define my_strftime instead of strftime.
28481
28482 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
28483
28484         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
28485         which is not yet declared.
28486
28487 2001-05-15  Jim Meyering  <meyering@lucent.com>
28488
28489         * m4/regex.m4: Use proper quoting so brackets appear in the test
28490         program.
28491         Reported by, and with help from, Bruno Haible.
28492
28493 2001-05-13  Jim Meyering  <meyering@lucent.com>
28494
28495         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
28496         undefined.
28497
28498 2001-05-11  Paul Eggert  <eggert@twinsun.com>
28499
28500         dirname code cleanup.  base_name now behaves more compatibly
28501         with POSIX basename when given file names that have trailing
28502         slashes, and similarly for dir_name.  Add new primitives
28503         base_len and dir_len.  Put the directory-name-related decls
28504         into dirname.h.
28505
28506         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
28507         * lib/backupfile.c (base_name): Likewise.
28508         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
28509         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
28510         * lib/makepath.c (strip_trailing_slashes): Likewise.
28511         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
28512         ISSLASH): Likewise.
28513         * lib/rename.c (strip_trailing_slashes): Likewise.
28514         * lib/same.c (base_name): Likewise.
28515         * lib/stripslash.c (ISSLASH): Likewise.
28516
28517         * lib/addext.c: Include <dirname.h> after size_t is defined.
28518         * lib/backupfile.c: Likewise.
28519
28520         * lib/addext.c (addext): Use base_len to trim redundant
28521         trailing slashes instead of doing it ourselves.
28522         But do not trim the last slash if it is not redundant.
28523
28524         * lib/backupfile.c (find_backup_file_name,
28525         max_backup_version): Use base_len instead of rolling it ourselves.
28526         Handle the case of "" and (on DOS) "C:" correctly.
28527
28528         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
28529         needed. Include <string.h>, <dirname.h>.
28530         (base_name): Allow file names ending in slashes, other than names
28531         that are all slashes.  In this case, return the basename followed
28532         by the slashes.  This is more general, and can be used in places
28533         where the original base_name purposely had an assertion failure.
28534         (base_len): New function.
28535
28536         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
28537         Do not include <assert.h>; no longer needed.
28538         Include xalloc.h.
28539         (memrchr): Remove decl.
28540         (dir_name_r): Remove.
28541         (dir_len): Renamed from dirlen.  All callers changed.
28542         Rewrite in terms of base_name, for simplicity and consistency.
28543         (dir_name): Never return NULL.  All callers changed.
28544         Do not include <stdlib.h> in test program; no longer needed.
28545         return 0; is fine for test program.
28546
28547         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
28548         New macros.
28549         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
28550
28551         * lib/path-concat.c (path_concat): Use base_len to compute
28552         base length, not strlen; this means we cannot rely on memcpy
28553         to null-terminate.
28554
28555         * lib/same.c (STREQ): Remove.
28556         (same_name): Handle the case where the basename ends in trailing '/'.
28557
28558         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
28559         a slash was stripped.  Do not strip the last slash after a
28560         file system prefix.
28561
28562 2001-05-11  Paul Eggert  <eggert@twinsun.com>
28563
28564         * lib/Makefile.am (libfetish_a_SOURCES):
28565         Add strftime.c, since we now compile it on all hosts.
28566
28567         * lib/strftime.c (my_strftime):
28568         Define to nstrftime if emacs, but only if my_strftime is not defined.
28569         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
28570         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
28571         Add one more extra argument: a nanoseconds value.
28572         All uses changed.
28573         (ns): New macro.
28574         (my_strftime function): Add %N format.
28575         (emacs_strftimeu): Renamed from emacs_strftime,
28576         with extra ut argument.
28577
28578 2001-05-09  Paul Eggert  <eggert@twinsun.com>
28579
28580         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
28581
28582 2001-04-21  Jim Meyering  <meyering@lucent.com>
28583
28584         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
28585         doesn't interfere.
28586
28587 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
28588
28589         * m4/ftruncate.m4: Check for chsize.
28590         Link with ftruncate.o unconditionally if ftruncate is missing.
28591         This was required when cross-compiling to i586-mingw32msvc.
28592
28593 2001-04-08  Jim Meyering  <meyering@lucent.com>
28594
28595         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
28596         recomputed; that's necessary when the offset spans a DST transition.
28597         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
28598
28599 2001-04-02  Jim Meyering  <meyering@lucent.com>
28600
28601         * lib/regex.h, regex.c: Update from GNU libc.
28602
28603 2001-03-24  Jim Meyering  <meyering@lucent.com>
28604
28605         * m4/jm-macros.m4: Require autoconf-2.49d.
28606
28607 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
28608
28609         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
28610
28611 2001-03-19  Paul Eggert  <eggert@twinsun.com>
28612
28613         * lib/version-etc.c (version_etc_copyright): Update to 2001.
28614
28615 2001-03-17  Jim Meyering  <meyering@lucent.com>
28616
28617         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
28618         now that the version in autoconf is equivalent.
28619         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
28620
28621         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
28622         Suggestion from Akim Demaille.
28623
28624         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
28625         (jm_PREREQ_TEMPNAME): New function.
28626
28627 2001-03-16  Paul Eggert  <eggert@twinsun.com>
28628
28629         * lib/tempname.c (uint64_t): Define to uintmax_t if
28630         not defined, and if UINT64_MAX is not defined.
28631         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
28632         Reported by John David Anglin.
28633
28634 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
28635
28636         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
28637         resolve alias if codeset is empty.
28638         * lib/config.charset (BeOS): Use wildcard syntax.
28639
28640 2001-03-13  Jim Meyering  <meyering@lucent.com>
28641
28642         * lib/path-concat.c (path_concat)
28643         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
28644         concatenating e.g., `C:' and `foo'.
28645         From Bruno Haible.
28646
28647 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28648
28649         * lib/localcharset.c (locale_charset): Don't use
28650         setlocale(LC_CTYPE,NULL). Don't return NULL.
28651         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
28652
28653 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
28654
28655         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
28656         support for DOS/DJGPP.
28657
28658 2001-03-01  Paul Eggert  <eggert@twinsun.com>
28659
28660         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
28661         lacks mkstemp.  Compile our own tempname.c if we compile our own
28662         mkstemp.c, as mkstemp relies on tempname.
28663
28664 2001-03-01  Jim Meyering  <meyering@lucent.com>
28665
28666         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
28667         AH_VERBATIM really does output its argument verbatim.
28668
28669 2001-02-28  Paul Eggert  <eggert@twinsun.com>
28670
28671         * lib/Makefile.am (libfetish_a_SOURCES):
28672         Add dup-safer.c, fopen-safer.c.
28673         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
28674
28675         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
28676         * lib/unistd-safer.h: New files.
28677
28678 2001-02-25  Paul Eggert  <eggert@twinsun.com>
28679
28680         The mkstemp replacement is taken from glibc 2.2.2, with some
28681         portability fixes for use outside glibc, as follows:
28682
28683         * lib/tempname.c (struct_stat64): New macro.
28684         (direxists, __gen_tempname): Use it.
28685         This avoids a portability problem with Solaris 8.
28686
28687         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
28688         (<stddef.h>, <stdint.h>, <string.h>):
28689         Include only if STDC_HEADERS || _LIBC.
28690         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
28691         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
28692         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
28693         (__set_errno): Define this macro if <errno.h> doesn't.
28694         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
28695         Define these macros if <stdio.h> doesn't.
28696         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
28697         Define these macros if <sys/stat.h>
28698         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
28699         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
28700         __xstat64): Define if not _LIBC.
28701         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
28702         (__gen_tempname): Invoke gettimeofday only if
28703         HAVE_GETTIMEOFDAY || _LIBC;
28704         otherwise, fall back on plain "time".
28705         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
28706
28707         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
28708
28709         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
28710
28711 2001-02-18  Paul Eggert  <eggert@twinsun.com>
28712
28713         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
28714
28715 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28716
28717         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
28718         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
28719         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
28720         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
28721
28722 2001-02-17  Paul Eggert  <eggert@twinsun.com>
28723
28724         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
28725         Remove workaround macros for hosts that have mbrtowc but not
28726         mbstate_t, as we now insist on proper declarations for both
28727         before using mbrtowc.
28728
28729 2001-02-17  Jim Meyering  <meyering@lucent.com>
28730
28731         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
28732         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
28733         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
28734         UnixWare 7.1.1.
28735
28736         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
28737         rather than AC_CACHE_VAL.
28738
28739 2001-02-17  Jim Meyering  <meyering@lucent.com>
28740
28741         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
28742         around included file name.
28743
28744         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
28745
28746         * lib/strftime.c: Update from GNU libc (the only changes were to
28747         comments).
28748
28749 2001-02-17  Jim Meyering  <meyering@lucent.com>
28750
28751         * lib/regex.c: Update from libc.
28752
28753 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
28754
28755         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
28756         clash.
28757
28758 2001-02-16  Paul Eggert  <eggert@twinsun.com>
28759
28760         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
28761         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
28762         Reported by Mark Hounschell via Paul Eggert.
28763
28764 2001-02-07  Jim Meyering  <meyering@lucent.com>
28765
28766         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
28767
28768 2001-02-05  Jim Meyering  <meyering@lucent.com>
28769
28770         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
28771         it includes the patch required for `large file' support with at least
28772         HP-UX's 10.20 /bin/cc.
28773
28774 2001-02-03  Jim Meyering  <meyering@lucent.com>
28775
28776         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
28777         AS_IF, now that it works once again (mysteriously).
28778         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28779
28780 2001-01-30  Jim Meyering  <meyering@lucent.com>
28781
28782         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
28783         * m4/chown.m4: Rename conftestchown to conftest.chown.
28784         * m4/rename.m4: s/conftestdir/conftest.d1/ and
28785         s/conftestdir2/conftest.d2/.
28786         * m4/utimes.m4: s/conftestdata/conftest.data/
28787         Inspired by Pavel Roskin's change in autoconf.
28788
28789 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
28790
28791         * lib/config.charset: Update for FreeBSD 4.2.
28792
28793 2001-01-27  Jim Meyering  <meyering@lucent.com>
28794
28795         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
28796         a use of AS_IF.
28797         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
28798
28799 2001-01-26  Jim Meyering  <meyering@lucent.com>
28800
28801         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
28802         quotearg.c includes it.
28803
28804 2001-01-26  Jim Meyering  <meyering@lucent.com>
28805
28806         * lib/quotearg.c: Include stddef.h.
28807         * lib/quote.c: Include stddef.h.
28808         Reported by Axel Kittenberger.
28809
28810         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
28811         line in double quotes so that it evokes a better diagnostic.
28812         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
28813         Reported by Axel Kittenberger.
28814
28815 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
28816
28817         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
28818         as if it was a `charset'.
28819
28820 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28821
28822         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
28823         has const.
28824
28825 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
28826
28827         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
28828         to avoid a warning.  Add back 'const' to inptr.
28829
28830 2001-01-20  Jim Meyering  <meyering@lucent.com>
28831
28832         Be sure that headers are checked before used in code compiled
28833         for the type checks.
28834         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
28835         In place of that, invoke jm_CHECK_ALL_TYPES.
28836         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
28837         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
28838         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
28839         The check for ssize_t was mistakenly run before the test for unistd.h.
28840
28841         The configure-time check for stdbool.h was missing.
28842         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
28843         (jm_PREREQ_HASH): New function.
28844
28845 2001-01-17  Jim Meyering  <meyering@lucent.com>
28846
28847         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
28848         for autoconf-2.49c.
28849         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
28850
28851 2001-01-16  Jim Meyering  <meyering@lucent.com>
28852
28853         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
28854         From Bruno Haible.
28855
28856 2001-01-14  Jim Meyering  <meyering@lucent.com>
28857
28858         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
28859         foo and bar.  Create conftestdir/ in the script, not in the C code.
28860         Remove directories in the script, not in the C code.
28861         Remove conftestdir{,2} before trying to create the directory.
28862         Make the entire configure script fail if the mkdir fails.
28863
28864 2001-01-14  Jim Meyering  <meyering@lucent.com>
28865
28866         * lib/rename.c: New file.  From Volker Borchert.
28867         Include stdlib.h, string.h or strings.h, and xalloc.h.
28868         Use strip_trailing_slashes rather than open-coding it.
28869
28870 2001-01-03  Paul Eggert  <eggert@twinsun.com>
28871
28872         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
28873
28874 2001-01-03  Jim Meyering  <meyering@lucent.com>
28875
28876         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
28877         of local `inptr' to avoid warning with some system declarations of
28878         iconv.
28879
28880 2001-01-02  Volker Borchert  <bt@teknon.de>
28881
28882         * m4/rename.m4: New file.
28883         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
28884
28885 2001-01-01  Jim Meyering  <meyering@lucent.com>
28886
28887         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
28888         even on systems with utmpx.h.  It's necessary for the declaration of
28889         utmp's ut_user member.  Reported by Andreas Jaeger.
28890
28891         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
28892         available. They are required for the declarations of getgrgid and
28893         getpwuid resp.
28894         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
28895         Reported by Andreas Jaeger.
28896
28897 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
28898
28899         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
28900         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
28901         so `make install' also works in VPATH builds.
28902
28903 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
28904
28905         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
28906         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
28907         can be used in subdirectories.
28908
28909 2000-12-29  Paul Eggert  <eggert@twinsun.com>
28910
28911         * lib/modechange.c: Do not assume that mode_t uses the
28912         traditional octal encoding.  E.g. "chmod 1 FOO" should set
28913         the other-execute bit of FOO even if S_IXOTH != 1.
28914
28915         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
28916         WOTH, XOTH, ALLM): New macros.
28917         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
28918          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
28919         Use them.
28920         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
28921         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
28922         (mode_compile):
28923         No need to use uintmax_t; unsigned long is long enough.
28924         Don't bother to get suffix since we don't use it.
28925
28926 2000-12-26  Jim Meyering  <meyering@lucent.com>
28927
28928         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
28929         better with autoheader.
28930
28931 2000-12-24  Jim Meyering  <meyering@lucent.com>
28932
28933         * lib/hash.c (is_prime): Return explicit boolean values.
28934         (hash_get_first): Return NULL to appease Irix5.6's 89.
28935         Reported by Nelson Beebe.
28936
28937 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
28938
28939         * lib/localcharset.c (locale_charset): Add support for Win32.
28940
28941 2000-12-18  Paul Eggert  <eggert@twinsun.com>
28942
28943         * lib/physmem.h, lib/physmem.c: New files.
28944
28945         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
28946         (noinst_HEADERS): Add physmem.h.
28947
28948         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
28949         't' for compatibility with Solaris 8 sort.
28950
28951 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
28952
28953         * lib/config.charset: Add support for BeOS.
28954
28955 2000-12-17  Jim Meyering  <meyering@lucent.com>
28956
28957         * m4/dos.m4 (jm_AC_DOS): New file and macro.
28958         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
28959
28960 2000-12-16  Jim Meyering  <meyering@lucent.com>
28961
28962         This bug had a serious impact on chown: `chown N:M FILE' (for integer
28963         N and M) would have treated it like `chown N:N FILE'.
28964
28965         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
28966
28967 2000-12-16  Jim Meyering  <meyering@lucent.com>
28968
28969         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
28970         SHELLS_FILE to a file name that's useful on djgpp systems.
28971         Include stdlib.h.
28972         (ADDITIONAL_DEFAULT_SHELLS): Define.
28973         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
28974         Based mostly on a patch from Prashant TR.
28975
28976 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
28977
28978         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
28979         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
28980         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
28981
28982 2000-12-08  Andreas Schwab  <schwab@suse.de>
28983
28984         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
28985         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
28986
28987 2000-12-07  Jim Meyering  <meyering@lucent.com>
28988
28989         * lib/stripslash.c (ISSLASH): Define.
28990         (strip_trailing_slashes): Use ISSLASH rather than comparing against
28991         `/'.
28992         From Prashant TR.
28993
28994         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
28995         (dir_name_r): Declare this function as static.
28996         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
28997         manifest itself on a name containing a mix of slashes and
28998         backslashes.
28999         Make this function work with names starting with a DOS-style
29000         drive letter and colon prefix.
29001         (dir_name): Append `.' if necessary.
29002         Based mostly on patches from Prashant TR and Eli Zaretskii.
29003
29004         * lib/dirname.h (dir_name_r): Remove prototype.
29005
29006 2000-12-06  Paul Eggert  <eggert@twinsun.com>
29007
29008         * m4/off_t-format.m4: Remove this file.
29009         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
29010
29011 2000-12-06  Jim Meyering  <meyering@lucent.com>
29012
29013         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
29014         replacement strtoull, we may well need the replacement strtoul, too.
29015         Check for declarations of strtoul and strtoull.
29016         Check for strtol.  Mainly as a cue to cause automake to include
29017         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
29018         Check for limits.h -- strtol.c needs it.
29019
29020 2000-12-05  Jim Meyering  <meyering@lucent.com>
29021
29022         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
29023
29024 2000-12-04  Jim Meyering  <meyering@lucent.com>
29025
29026         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
29027         Also include memory.h, stdlib.h, unistd.h if appropriate.
29028         Reported by Andreas Jaeger (conflicting declaration of malloc).
29029
29030 2000-12-02  Jim Meyering  <meyering@lucent.com>
29031
29032         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
29033         * m4/jm-macros.m4 (jm_MACROS): require it.
29034
29035 2000-12-02  Jim Meyering  <meyering@lucent.com>
29036
29037         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
29038
29039 2000-12-01  Paul Eggert  <eggert@twinsun.com>
29040
29041         * lib/memrchr.c: Include <config.h> before any system include file.
29042
29043 2000-11-30  Jim Meyering  <meyering@lucent.com>
29044
29045         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
29046
29047 2000-11-30  Jim Meyering  <meyering@lucent.com>
29048
29049         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
29050
29051 2000-11-29  Paul Eggert  <eggert@twinsun.com>
29052
29053         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
29054
29055 2000-11-26  Jim Meyering  <meyering@lucent.com>
29056
29057         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
29058
29059 2000-11-22  Paul Eggert  <eggert@twinsun.com>
29060
29061         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
29062         size of (size_t) -1; it's not portable.
29063
29064 2000-11-17  Jim Meyering  <meyering@lucent.com>
29065
29066         * lib/strstr.c: Update from GNU libc.
29067
29068 2000-11-17  Akim Demaille  <akim@epita.fr>
29069
29070         * lib/obstack.h: Formatting changes.
29071         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
29072         prevent type checking.
29073         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
29074         cast the value to (void *): assigning a `foo *' to a `void *'
29075         variable is valid.
29076         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
29077
29078 2000-11-16  Jim Meyering  <meyering@lucent.com>
29079
29080         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
29081
29082 2000-11-11  Jim Meyering  <meyering@lucent.com>
29083
29084         * lib/error.c: Add a couple #includes, merging from GNU libc version.
29085
29086 2000-11-10  Jim Meyering  <meyering@lucent.com>
29087
29088         * lib/obstack.h: Update from GNU libc.
29089         * lib/obstack.c: Likewise.
29090
29091 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
29092
29093         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
29094
29095 2000-11-06  Paul Eggert  <eggert@twinsun.com>
29096
29097         * lib/getusershell.c (setusershell): Use rewind rather than
29098         fseek/fseeko, to avoid configuration hassles with fseeko.
29099         Don't bother opening SHELLS_FILE if shellstream is NULL;
29100         it's not necessary.
29101
29102 2000-11-05  Jim Meyering  <meyering@lucent.com>
29103
29104         * lib/makepath.h (make_dir): Declare.
29105         * lib/makepath.c (make_dir): Remove `static' attribute.
29106         Tweak a comment.
29107
29108 2000-11-04  Jim Meyering  <meyering@lucent.com>
29109
29110         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
29111
29112 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
29113
29114         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
29115         last one in a bucket, advance to the next bucket.
29116
29117 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
29118
29119         * lib/fnmatch.c: Do not comment out all the code if we are using
29120         the GNU C library, because in some cases we are replacing buggy
29121         code in the GNU C library itself.
29122
29123 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
29124
29125         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
29126         (regex_compile): Catch bogus \(\1\).
29127
29128 2000-10-30  Paul Eggert  <eggert@twinsun.com>
29129
29130         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
29131         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
29132         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
29133
29134 2000-10-30  Paul Eggert  <eggert@twinsun.com>
29135
29136         * lib/error.h, getline.h, modechange.h:
29137         Remove "2000" from Copyright line, as the file hasn't been
29138         changed this year other than in the copyright notice.
29139
29140         * lib/xalloc.h: Add "2000" to Copyright line, as this file
29141         was changed this year.
29142
29143 2000-10-29  Jim Meyering  <meyering@lucent.com>
29144
29145         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
29146         renaming.
29147         * m4/ls-mntd-fs.m4: Likewise
29148
29149 2000-10-29  Jim Meyering  <meyering@lucent.com>
29150
29151         * lib/xstat.in: Fix grammar in comment.
29152
29153 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
29154
29155         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
29156         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
29157         doesn't define __restrict_arr.
29158
29159 2000-10-28  Jim Meyering  <meyering@lucent.com>
29160
29161         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
29162         (jm_PREREQ_MEMCHR): New function.
29163
29164 2000-10-28  Jim Meyering  <meyering@lucent.com>
29165
29166         * lib/memchr.c: Update from libc.
29167         Adjust for portability:
29168         [HAVE_STDLIB_H]: Include stdlib.h.
29169         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
29170         Undef __memchr, too.
29171         [!weak_alias]: Define __memchr to memchr.
29172
29173         * lib/regex.c: Update from libc.
29174         * lib/regex.h: Likewise.
29175         * lib/getopt1.c: Likewise.
29176         * lib/memcmp.c: Likewise.
29177
29178         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
29179         Avoid using fseek, when possible -- it's broken by design.
29180         Patch by Ulrich Drepper.
29181
29182 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
29183
29184         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
29185         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
29186         Giving in to popular pressure to shut up the compiler with casts.
29187
29188 2000-10-26  Jim Meyering  <meyering@lucent.com>
29189
29190         * lib/strftime.c: Update from libc.
29191
29192 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
29193
29194         * regex.c: More `unsigned char' -> `re_char' changes.
29195         Also change several `int' into `re_wchar_t'.
29196         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
29197         (PUSH_FAILURE_POINTER): Don't cast any more.
29198         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
29199         We want GCC to complain, since this piece of code makes
29200         re_match non-reentrant, which *should* be fixed.
29201         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
29202         (EXTEND_BUFFER): Use RETALLOC.
29203         (SET_LIST_BIT): Don't cast.
29204         (re_wchar_t): New type.
29205         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
29206         that those two functions will always properly return.
29207         (IMMEDIATE_QUIT_CHECK): Cast to void.
29208         (analyse_first): Use recursion rather than an explicit stack.
29209         (re_compile_fastmap): Can't fail anymore.
29210         (re_search_2): Don't check re_compile_fastmap for failure.
29211         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
29212         Now also sets the new value (passed in a new argument).
29213         (re_match_2_internal): Use it.
29214         Also, use a new var `reg' of type size_t when looping through regs
29215         rather than reuse the inappropriate `mcnt'.
29216
29217 2000-10-25  Jim Meyering  <meyering@lucent.com>
29218
29219         * lib/obstack.c: Update from libc.
29220
29221 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
29222
29223         * regex.c (regex_compile): Change the way of handling a range from
29224         a char less than 256 to a char not less than 256.
29225
29226 2000-10-24  Andrew Innes  <andrewi@gnu.org>
29227
29228         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
29229         NT-Emacs only.
29230         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
29231         so that re_search functions only quit when callers expect them to.
29232
29233 2000-10-23  Jim Meyering  <meyering@lucent.com>
29234
29235         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
29236         wrong.  That set_locale call must not have any side effects.
29237         From Paul Eggert.
29238
29239 2000-10-22  Jim Meyering  <meyering@lucent.com>
29240
29241         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
29242         [CYCLIC]: Remove now-unused definition.
29243
29244         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
29245         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
29246         Suggestion from Ulrich Drepper.
29247
29248 2000-10-21  Jim Meyering  <meyering@lucent.com>
29249
29250         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
29251         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
29252         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
29253
29254 2000-10-21  Jim Meyering  <meyering@lucent.com>
29255
29256         * lib/dirname.c (memrchr): Declare if necessary.
29257         (dir_name): Remove the restriction that there be no
29258         trailing slashes.  Now, this code skips past them, effectively
29259         ignoring them.
29260         [TEST_DIRNAME] (main): New unit tests.
29261
29262         * lib/memrchr.c: New file from GNU libc.
29263         Undef __memrchr, too.
29264         [!weak_alias]: Define __memrchr to memrchr.
29265         Guard weak_alias use with `#ifdef weak_alias'.
29266
29267 2000-10-21  Jim Meyering  <meyering@lucent.com>
29268
29269         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
29270         (dir_name): Use dir_name_r.
29271         * lib/dirname.h (dir_name_r): Declare it.
29272
29273 2000-10-17  Jim Meyering  <meyering@lucent.com>
29274
29275         * lib/quote.h (PARAMS): Define and use.
29276         Reported by Akim Demaille.
29277
29278         * lib/getopt.c: Update from libc.
29279
29280 2000-10-16  Jim Meyering  <meyering@lucent.com>
29281
29282         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
29283         setlocale.
29284         From Jan Fedak.
29285
29286 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
29287
29288         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
29289
29290 2000-09-25  Jim Meyering  <meyering@lucent.com>
29291
29292         * lib/md5.h (rol): Define (from GnuPG).
29293
29294         * lib/sha.c: Give credit (GnuPG) where due.
29295         (M): Use rol rather than open-coding it.
29296         Add a FIXME comment.
29297
29298 2000-09-21  Jim Meyering  <meyering@lucent.com>
29299
29300         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
29301         Reported by Michael Stone.
29302
29303 2000-09-20  Jim Meyering  <meyering@lucent.com>
29304
29305         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
29306         (noinst_HEADERS): Add sha.h.
29307         Based on code from Scott G. Miller and from GnuPG.
29308
29309 2000-09-18  Jim Meyering  <meyering@lucent.com>
29310
29311         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
29312         LIBS. Otherwise, everyone ends up linking with -lelf for some
29313         configurations.
29314         Reported by Mike Stone.
29315
29316 2000-09-15  Jim Meyering  <meyering@lucent.com>
29317
29318         * lib/regex.c: Update from libc.
29319
29320 2000-09-10  Jim Meyering  <meyering@lucent.com>
29321
29322         * lib/getopt.c (_getopt_internal): Update from glibc.
29323
29324 2000-09-09  Jim Meyering  <meyering@lucent.com>
29325
29326         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
29327         think it should be used as a general replacement for isascii.
29328         * lib/fnmatch.c: Likewise.
29329         * lib/mbswidth.c: Likewise
29330         * lib/regex.c: Likewise.
29331
29332         Don't use atoi.
29333         * lib/userspec.c: Include sys/param.h and limits.h.
29334         Include xstrtol.h.
29335         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
29336         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
29337         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
29338         UID, GID.  Check range.
29339
29340 2000-09-06  Jim Meyering  <meyering@lucent.com>
29341
29342         * lib/getopt.c (_getopt_internal): Update from glibc.
29343
29344 2000-08-30  Jim Meyering  <meyering@lucent.com>
29345
29346         * lib/strftime.c: Merge in changes from GNU libc.
29347
29348 2000-08-26  Jim Meyering  <meyering@lucent.com>
29349
29350         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
29351         * m4/fpending.m4: New file.
29352
29353 2000-08-26  Jim Meyering  <meyering@lucent.com>
29354
29355         * lib/closeout.c: Include "__fpending.h".
29356         (close_stdout_status): Return right away if there's nothing to flush.
29357
29358         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
29359         * lib/__fpending.c: New file.
29360         * lib/__fpending.h: New file.
29361
29362 2000-08-20  Jim Meyering  <meyering@lucent.com>
29363
29364         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
29365         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
29366         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
29367
29368 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
29369
29370         Improve fileutils installation on systems where running
29371         programs (like install) can't be unlinked.
29372         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
29373         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
29374
29375 2000-08-07  Paul Eggert  <eggert@twinsun.com>
29376
29377         Standardize on "memory exhausted" instead of "Memory exhausted"
29378         or "virtual memory exhausted".
29379         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
29380         "virtual memory exhausted".
29381         * lib/same.c (same_name): Invoke xalloc_die instead of printing
29382         our own message.
29383         * lib/userspec.c (parse_user_spec): Likewise.
29384         * lib/bumpalloc.h: comment fix
29385         * lib/same.c, userspec.c: Include xalloc.h.
29386
29387         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
29388         not char *const and pointing to a constant array.
29389         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
29390         (xrealloc): Comment fix.
29391
29392         * lib/userspec.c (parse_user_spec):
29393         Don't translate a message until just before returning,
29394         to avoid unnecessary translation.
29395
29396 2000-08-07  Jim Meyering  <meyering@lucent.com>
29397
29398         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
29399         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
29400         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
29401         getgroups.c, gethostname.c, getopt.h, group-member.c,
29402         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
29403         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
29404         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
29405         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
29406         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
29407         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
29408         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
29409         yesno.c: Back out Copyright date changes for each file with no change
29410         this year.  This eases coordination with other programs using the same
29411         source code modules.  From Paul Eggert.
29412
29413 2000-08-06  Paul Eggert  <eggert@twinsun.com>
29414
29415         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
29416         not char, for compatibility with glibc 2.1.3 strftime.c.
29417
29418 2000-08-03  Greg McGary  <greg@mcgary.org>
29419
29420         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
29421         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
29422         (EXTEND_BUFFER): Use them.
29423
29424 2000-08-01  Jim Meyering  <meyering@lucent.com>
29425
29426         * lib/dirname.c (ISSLASH): Define.
29427         (BACKSLASH_IS_PATH_SEPARATOR): Define.
29428         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
29429         both `\' and `/' may be use as path separators.
29430         Based on a patch from Prashant TR.
29431
29432 2000-07-31  Paul Eggert  <eggert@twinsun.com>
29433
29434         * lib/quotearg.c (quotearg_n_options): Don't make the initial
29435         slot vector a constant, since it might get modified.
29436
29437 2000-07-31  Jim Meyering  <meyering@lucent.com>
29438
29439         * lib/xmalloc.c: Use `virtual memory exhausted', not
29440         `Memory exhausted'.
29441         * lib/obstack.c (print_and_abort): Likewise.
29442
29443 2000-07-30  Paul Eggert  <eggert@twinsun.com>
29444
29445         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
29446         buffer, so that the caller can always quote one small
29447         component of a "memory exhausted" message in slot 0.
29448         From a suggestion by Jim Meyering.
29449
29450 2000-07-30  Jim Meyering  <meyering@lucent.com>
29451
29452         * lib/makepath.c (make_path): Quote the other instance, too.
29453
29454         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
29455         (STATIC_BUF_SIZE): Define.
29456         (quotearg_n_options): Use only statically allocated storage when
29457         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
29458         than STATIC_BUF_SIZE.
29459
29460 2000-07-29  Jim Meyering  <meyering@lucent.com>
29461
29462         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
29463         * lib/dirname.c (dir_name): Likewise.
29464
29465         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
29466         `/'.
29467
29468         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
29469         (dir_name): Assert that there are no trailing slashes.
29470
29471 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
29472
29473         * lib/mbswidth.h (mbswidth): Add a flags argument.
29474         (mbswidth): New declaration.
29475         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
29476         * lib/mbswidth.c (mbswidth): Add a flags argument.
29477         (mbsnwidth): New function.
29478
29479 2000-07-24  Jim Meyering  <meyering@lucent.com>
29480
29481         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
29482
29483 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29484
29485         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
29486
29487 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29488
29489         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
29490         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
29491         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
29492         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
29493         invoke multibyte primitives.
29494
29495 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29496
29497         * lib/quotearg.c:
29498         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
29499         so that mbstate_t is always defined.
29500
29501         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
29502         be 1 in at least one GCC installation, and this configuration
29503         error is likely to be common.  Ignoring MB_LEN_MAX hurts
29504         performance on hosts that have mbrtowc but have only unibyte
29505         locales, but I assume these hosts are rare.
29506
29507 2000-07-23  Paul Eggert  <eggert@twinsun.com>
29508
29509         * lib/mbswidth.c (_XOPEN_SOURCE):
29510         Don't define; this causes problems on Solaris 7.
29511         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
29512
29513 2000-07-23  Jim Meyering  <meyering@lucent.com>
29514
29515         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
29516         too: getgrgid, getpwuid, getuid.
29517
29518 2000-07-23  Jim Meyering  <meyering@lucent.com>
29519
29520         * lib/basename.c (base_name): Add an assertion.
29521
29522 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
29523
29524         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
29525         shadow its mbsinit function.
29526
29527 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
29528
29529         * lib/mbswidth.h: New file.
29530         * lib/mbswidth.c: New file.
29531         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
29532         (noinst_HEADERS): Add mbswidth.h.
29533
29534 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
29535
29536         * lib/config.charset: Add support for FreeBSD. Improve support for
29537         HP-UX and IRIX 6.
29538
29539 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
29540
29541         * m4/mbswidth.m4: New file.
29542         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
29543
29544 2000-07-15  Jim Meyering  <meyering@lucent.com>
29545
29546         * lib/makepath.c: Include quote.h.
29547         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
29548         corresponding argument in a `quote (...)' call.
29549         Give better diagnostics.
29550
29551         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
29552         (noinst_HEADERS): Add quote.h.
29553
29554         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
29555         from tar's src/misc.c.
29556         * lib/quote.h: New file.  Prototypes for same.
29557
29558 2000-07-14  Paul Eggert  <eggert@twinsun.com>
29559
29560         From a suggestion by Bruno Haible.
29561         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
29562         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
29563         to decide whether to define the BeOS workaround macro;
29564         this adjusts to the change to AC_MBSTATE_T.
29565
29566 2000-07-14  Jim Meyering  <meyering@lucent.com>
29567
29568         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
29569         jm_AC_TYPE_UINTMAX_T.
29570
29571 2000-07-13  Paul Eggert  <eggert@twinsun.com>
29572
29573         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
29574
29575         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
29576         quotearg_buffer_restyled): Add support for
29577         clocale_quoting_style.  Undo previous change to
29578         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
29579         and "{RIGHT QUOTATION MARK}" msgids.
29580
29581 2000-07-10  Paul Eggert  <eggert@twinsun.com>
29582
29583         From a suggestion by Bruno Haible.
29584         * m4/mbstate_t.m4 (AC_MBSTATE_T):
29585         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
29586         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
29587         and mbstate_t, to a single-part test that simply defines mbstate_t.
29588         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
29589         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
29590
29591 2000-07-10  Jim Meyering  <meyering@lucent.com>
29592
29593         * m4/strerror_r.m4: Mirror the correction made in autoconf.
29594
29595         * m4/gnu-source.m4: Output to confdefs.h directly.
29596         Suggestion from Akim Demaille.
29597
29598 2000-07-09  Paul Eggert  <eggert@twinsun.com>
29599
29600         The old behavior of quoting `like this' doesn't look good with
29601         newer, ISO-style fonts.  See:
29602         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
29603
29604         Instead, quote "like this" by default.  Let the translator
29605         tailor the locale-specific quoting behavior by providing
29606         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
29607
29608         * lib/quotearg.c (N_): New macro.
29609         (gettext_default): New function.
29610         (quotearg_buffer_restyled): Use
29611         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
29612         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
29613
29614 2000-07-09  Jim Meyering  <meyering@lucent.com>
29615
29616         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
29617         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
29618
29619         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
29620         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
29621
29622 2000-07-09  Jim Meyering  <meyering@lucent.com>
29623
29624         * lib/Most files: Update copyright dates to include 2000.
29625
29626 2000-07-08  Jim Meyering  <meyering@lucent.com>
29627
29628         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
29629         if not defined.
29630         (xgethostname): Remove now-unnecessary #ifdef.
29631         Move declaration of `err' into loop where it's used.
29632
29633 2000-07-05  Paul Eggert  <eggert@twinsun.com>
29634         and Bruno Haible  <haible@clisp.cons.org>
29635
29636         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
29637         only if the test for an object-type mbstate_t fails.  This
29638         prevents us from mistakenly reporting that mbstate_t is a
29639         system object type after we "#define mbstate_t int" to work
29640         around its lack.
29641
29642 2000-07-05  Paul Eggert  <eggert@twinsun.com>
29643         and Bruno Haible  <haible@clisp.cons.org>
29644
29645         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
29646
29647 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29648
29649         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
29650         to strerror_r.
29651         Include <ctype.h> for use of isalpha.
29652
29653 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29654
29655         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
29656         by allocating a larger buffer. Test the gethostname return value for
29657         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
29658         returns an error and ENAMETOOLONG isn't defined.
29659
29660 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
29661
29662         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
29663         dimension.
29664
29665 2000-07-04  Jim Meyering  <meyering@lucent.com>
29666
29667         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
29668         of the deprecated AC_CHECKING.
29669
29670 2000-07-04  Jim Meyering  <meyering@lucent.com>
29671
29672         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
29673         Reported by Bruno Haible.
29674
29675 2000-07-04  Jim Meyering  <meyering@lucent.com>
29676
29677         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
29678         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
29679         lacks mbrtowc.
29680
29681 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29682
29683         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
29684         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
29685
29686 2000-07-03  Paul Eggert  <eggert@twinsun.com>
29687         and Bruno Haible  <haible@clisp.cons.org>
29688
29689         * lib/quotearg.c (mbrtowc):
29690         Assign to *pwc, and return 1 only if result is nonzero.
29691         (iswprint): Use ISPRINT when substituting our own mbrtowc.
29692
29693 2000-07-03  Jim Meyering  <meyering@lucent.com>
29694
29695         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
29696
29697 2000-07-03  Jim Meyering  <meyering@lucent.com>
29698
29699         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
29700         This is necessary to get a definition of e.g., UTMP_FILE on
29701         HP-UX 10.20.
29702         From Bob Proulx.
29703
29704 2000-07-02  Jim Meyering  <meyering@lucent.com>
29705
29706         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
29707
29708         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
29709         AC_LIBOBJ(function_name).
29710         * m4/chown.m4: Likewise.
29711         * m4/fnmatch.m4: Likewise.
29712         * m4/ftruncate.m4: Likewise.
29713         * m4/getgroups.m4: Likewise.
29714         * m4/getline.m4: Likewise.
29715         * m4/group-member.m4: Likewise.
29716         * m4/jm-macros.m4: Likewise.
29717         * m4/lstat.m4: Likewise.
29718         * m4/malloc.m4: Likewise.
29719         * m4/memcmp.m4: Likewise.
29720         * m4/nanosleep.m4: Likewise.
29721         * m4/putenv.m4: Likewise.
29722         * m4/realloc.m4: Likewise.
29723         * m4/regex.m4: Likewise.
29724         * m4/stat.m4: Likewise.
29725         * m4/strftime.m4: Likewise.
29726
29727 2000-07-02  Jim Meyering  <meyering@lucent.com>
29728
29729         * lib/quotearg.c (mbstate_t): Don't define here.
29730
29731 2000-07-02  Jim Meyering  <meyering@lucent.com>
29732
29733         * lib/nanosleep.c (SIGCONT): Define if not already defined.
29734
29735 2000-07-01  Jim Meyering  <meyering@lucent.com>
29736
29737         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
29738
29739 2000-07-01  Jim Meyering  <meyering@lucent.com>
29740
29741         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
29742         problem.
29743
29744 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29745
29746         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
29747         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
29748
29749 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
29750
29751         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
29752         per change in ../m4/ls-mntd-fs.m4.
29753         (read_filesystem_list): Ignore symbolic links.
29754
29755 2000-06-29  Jim Meyering  <meyering@lucent.com>
29756
29757         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
29758         for declaration of strcmp.
29759
29760         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
29761
29762         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
29763         Avoid warning by casting result to `char *' to remove `const'.
29764
29765 2000-06-28  Jim Meyering  <meyering@lucent.com>
29766
29767         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
29768         included by quotearg.c, for which we perform this test.  From
29769         Bruno Haible.
29770
29771 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29772
29773         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
29774         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
29775         <utmpx.h> exists, put readutmp.o into LIBOBJS.
29776
29777 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
29778
29779         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
29780
29781 2000-06-26  Paul Eggert  <eggert@twinsun.com>
29782
29783         savedir now sets errno on failure and invokes xmalloc to get memory.
29784         Fix a couple of other minor bugs while we're at it.
29785
29786         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
29787         (NAMLEN): Remove macro.
29788         (malloc, realloc): Remove decls.
29789         (stpcpy): Likewise.
29790         ("xalloc.h"): Include.
29791         (NAME_SIZE_DEFAULT): New macro.
29792         (savedir): Use xmalloc / xrealloc to allocate memory.
29793         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
29794         Skip "" directory entries.
29795         Use strlen to calculate directory entry length, since the old method
29796         is rarely used these days and isn't worth supporting.
29797         Don't use a pointer after freeing it.
29798         Check for integer overflow when calculating allocation size.
29799         Use memcpy to copy entries, instead of stpcpy.
29800         Set errno properly when returning NULL.
29801         Check for readdir error.
29802
29803 2000-06-26  Jim Meyering  <meyering@lucent.com>
29804
29805         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
29806
29807 2000-06-25  Jim Meyering  <meyering@lucent.com>
29808
29809         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
29810         Linux header bug when _XOPEN_SOURCE is defined to 500.
29811
29812 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29813
29814         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
29815         deficiency.
29816
29817 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
29818
29819         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
29820         Include xalloc.h.
29821         Don't include <stdlib.h>.  Don't declare malloc, realloc.
29822
29823 2000-06-24  Jim Meyering  <meyering@lucent.com>
29824
29825         * m4/strerror_r.m4: Revive this file -- to try out an experimental
29826         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
29827         for which strerror does return char*, but which lacks a conveniently
29828         accessible declaration of the function.  If the compile-test says
29829         strerror_r doesn't work, then resort to a `run'-test that works on
29830         BeOS and segfaults on DEC Unix.
29831
29832 2000-06-24  Jim Meyering  <meyering@lucent.com>
29833
29834         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
29835
29836 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29837
29838         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
29839         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
29840
29841 2000-06-23  Paul Eggert  <eggert@twinsun.com>
29842
29843         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
29844         (mbrtowc, mbstate_t): Define substitutes if
29845         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
29846         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
29847         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
29848
29849 2000-06-23  Jim Meyering  <meyering@lucent.com>
29850
29851         * m4/afs.m4: Add missing AC_MSG_RESULT.
29852         Reported by Bruno Haible.
29853
29854         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
29855         Suggestion from Bruno Haible.
29856
29857 2000-06-23  Jim Meyering  <meyering@lucent.com>
29858
29859         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
29860
29861 2000-06-21  Jim Meyering  <meyering@lucent.com>
29862
29863         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
29864
29865 2000-06-21  Jim Meyering  <meyering@lucent.com>
29866
29867         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
29868         (noinst_HEADERS): Add getstr.h.
29869
29870         * lib/getline.c (getstr): Move into a separate file.
29871         * lib/getstr.c (getstr): New file, extracted from getline.c, with
29872         the following changes: new parameter, delim2; both delim[12]
29873         parameters have type `int', not `char'.  The latter would lose
29874         with 8-bit delimiters.
29875         * lib/getstr.h: New file.
29876
29877 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29878
29879         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
29880         than 1024, return a memory chunk of least possible size, instead
29881         of size PATH_MAX + 2. In the loop, increment the size proportionally.
29882         Use free/xmalloc instead of xrealloc to avoid copying for very long
29883         paths.
29884
29885 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29886
29887         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
29888         the empty string.
29889
29890 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29891
29892         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
29893         address, not strdup.  Include <stdlib.h> and don't declare free().
29894
29895 2000-06-19  Jim Meyering  <meyering@lucent.com>
29896
29897         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
29898
29899 2000-06-18  Jim Meyering  <meyering@lucent.com>
29900
29901         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
29902
29903         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
29904         `checking whether...' message to be consistent with that of the
29905         lstat test.
29906
29907 2000-06-18  Jim Meyering  <meyering@lucent.com>
29908
29909         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
29910         Besides, these days every porting target provides a mkdir function.
29911
29912         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
29913         needed. (this snippet comes from src/system.h).
29914
29915 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
29916
29917         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
29918
29919 2000-06-15  Paul Eggert  <eggert@twinsun.com>
29920
29921         * lib/human.c (adjust_value): New function.
29922         (human_readable_inexact): Apply rounding style even when
29923         printing approximate values.
29924
29925 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29926
29927         * lib/human.c (human_readable_inexact): Allow an input block
29928         size that is not a multiple of the output block size, and vice versa.
29929         Reported by Piergiorgio Sartor.
29930
29931 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29932
29933         * lib/getdate.y (get_date): Apply relative times after time
29934         zone indicator, not before.  Reported by Todd A. Jacobs.
29935
29936 2000-06-13  Jim Meyering  <meyering@lucent.com>
29937
29938         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
29939
29940         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
29941
29942 2000-06-12  Paul Eggert  <eggert@twinsun.com>
29943
29944         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
29945
29946 2000-06-12  Jim Meyering  <meyering@lucent.com>
29947
29948         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
29949         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
29950         optional argument.
29951         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
29952         the optional argument, `lib'.
29953
29954 2000-06-08  Jim Meyering  <meyering@lucent.com>
29955
29956         * m4/largefile.m4: Remove file (now that it's part of autoconf).
29957
29958 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29959
29960         Rewrite largefile configuration so that we don't need to run
29961         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
29962         AC_CANONICAL_HOST in configure.in -- jmm]
29963
29964         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
29965         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
29966         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
29967         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
29968         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
29969         All uses changed.
29970         Instead of inspecting the output of getconf, try to compile the
29971         test program without and with the macro definition.
29972         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
29973         for getconf.  Instead, check for the needed flags by compiling
29974         test programs.
29975
29976 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29977
29978         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
29979
29980 2000-06-04  Jim Meyering  <meyering@lucent.com>
29981
29982         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
29983         SunOS 4.1.4 for which gid_t is an unsigned type.
29984
29985 2000-06-03  Jim Meyering  <meyering@lucent.com>
29986
29987         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
29988         now that autoconf requires that.
29989
29990         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
29991         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
29992         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
29993
29994 2000-06-03  Jim Meyering  <meyering@lucent.com>
29995
29996         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
29997
29998 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29999
30000         * m4/glibc21.m4: New file.
30001         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
30002
30003 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
30004
30005         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
30006         newer, don't install charset.alias.
30007         * lib/config.charset: Change the Linux/glibc rules so they become empty
30008         on glibc-2.1 or newer.
30009
30010 2000-06-02  Jim Meyering  <meyering@lucent.com>
30011
30012         * lib/mountlist.c: Back out last change.  Instead, do this...
30013         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
30014         me_dummy member using the same `ignore'-testing code.
30015         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
30016         fs_type strings.
30017         From Mark D. Roth.
30018
30019 2000-05-29  Jim Meyering  <meyering@lucent.com>
30020
30021         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
30022         mounts with the `ignore' attribute.  Based on a patch from
30023         Mark D. Roth.
30024
30025 2000-05-28  Jim Meyering  <meyering@lucent.com>
30026
30027         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
30028         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30029         * m4/stat.m4: Likewise.
30030         * m4/lstat.m4: Likewise.
30031         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
30032
30033         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
30034         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
30035
30036 2000-05-26  Jim Meyering  <meyering@lucent.com>
30037
30038         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
30039
30040 2000-05-24  Jim Meyering  <meyering@lucent.com>
30041
30042         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
30043         autoconf requires that.
30044         * m4/lib-check.m4: Likewise.
30045         * m4/jm-macros.m4: Likewise.
30046         * m4/strftime.m4: Likewise.
30047
30048         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
30049         AC_CHECK_DECLS, now that autoconf requires that.
30050
30051 2000-05-22  Jim Meyering  <meyering@lucent.com>
30052
30053         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30054         * m4/lstat.m4: Likewise.
30055
30056 2000-05-22  Jim Meyering  <meyering@lucent.com>
30057
30058         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
30059
30060 2000-05-20  Jim Meyering  <meyering@lucent.com>
30061
30062         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
30063         (jm_PREREQ): Use it.
30064
30065 2000-05-18  Jim Meyering  <meyering@lucent.com>
30066
30067         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
30068         back, too, since it may have been modified by allocate_entry.
30069         (hash_delete): Rewrite to use neither the assignment operator
30070         nor the comma operator in an if-expression.
30071
30072 2000-05-15  Paul Eggert  <eggert@twinsun.com>
30073
30074         * lib/closeout.c:
30075         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
30076         Remove; no longer needed.
30077         "quotearg.h": Add include.
30078         (file_name): Do not bother to explicitly initialize to NULL; it's less
30079         efficient on some hosts.
30080         (close_stdout_status): Remove test as to whether stdout was already
30081         closed; it breaks for the case "echo x | sort >&-".
30082         Quote file name colons.
30083         Do not assume that _("write error") lacks format strings.
30084
30085 2000-05-15  Jim Meyering  <meyering@lucent.com>
30086
30087         * lib/version-etc.c (version_etc_copyright): Update the copyright
30088         string used in all --version output.
30089
30090 2000-05-14  Jim Meyering  <meyering@lucent.com>
30091
30092         * lib/closeout.c (close_stdout_set_file_name): New function.
30093         (close_stdout_status): Use new file-scoped global.
30094         Return right away if fstat says the stdout file descriptor is invalid.
30095         * lib/closeout.h (close_stdout_set_file_name): Declare.
30096
30097 2000-05-10  Jim Meyering  <meyering@lucent.com>
30098
30099         * lib/closeout.c [default_exit_status]: New file-scoped variable.
30100         (close_stdout_set_status): New function.
30101         * lib/closeout.h (close_stdout_set_status): Declare.
30102
30103 2000-05-09  Jim Meyering  <meyering@lucent.com>
30104
30105         * m4/gettext.m4: Rename this...
30106         * m4/libintl.m4: ...to this.
30107
30108 2000-05-08  Jim Meyering  <meyering@lucent.com>
30109
30110         * lib/long-options.c: Don't include closeout.h.
30111         (parse_long_options): Don't call close_stdout for --version.
30112
30113 2000-05-06  Paul Eggert  <eggert@twinsun.com>
30114
30115         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
30116         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
30117         2.1.3 bug.  This avoids a clash when files like regex.c define
30118         _GNU_SOURCE.
30119
30120 2000-05-06  Jim Meyering  <meyering@lucent.com>
30121
30122         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
30123         (AC_REPLACE_FUNCS): Add strnlen.
30124
30125         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
30126         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
30127
30128         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
30129         AC_SEARCH_LIBS call for nanosleep.
30130         (LIB_NANOSLEEP): Set and AC_SUBST.
30131
30132 2000-05-06  Jim Meyering  <meyering@lucent.com>
30133
30134         * lib/strnlen.c: Undefine __strnlen and strnlen.
30135         [!weak_alias]: Define __strnlen to strnlen.
30136
30137         * lib/atexit.c: New file, from libiberty.
30138
30139 2000-05-06  Jim Meyering  <meyering@lucent.com>
30140
30141         * lib/closeout.c (close_stdout_status): Also check for errors on the
30142         stderr stream.
30143
30144 2000-05-05  Jim Meyering  <meyering@lucent.com>
30145
30146         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
30147         AC_SEARCH_LIBS call for clock_gettime.
30148         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
30149
30150         * m4/search-libs.m4: Update from autoconf.
30151
30152         su doesn't work on Solaris 2.6.
30153         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
30154         <shadow.h>.  Reported by Dragos Harabor.
30155
30156 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
30157
30158         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
30159         memcpy instead of xmalloc, xrealloc, path_concat.
30160         (locale_charset): Treat empty environment variables as absent.
30161         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
30162
30163 2000-05-04  Jim Meyering  <meyering@lucent.com>
30164
30165         * lib/getopt.c: Update from glibc.
30166         * lib/obstack.c: Likewise.
30167         * lib/obstack.h: Likewise.
30168         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
30169         file
30170
30171         * lib/regex.h: Likewise.
30172         * lib/strndup.c: Likewise.
30173         * lib/strnlen.c: New file, from glibc.
30174
30175 2000-05-03  Jim Meyering  <meyering@lucent.com>
30176
30177         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
30178
30179 2000-05-02  Paul Eggert  <eggert@twinsun.com>
30180
30181         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
30182         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
30183         compile-time test, rather than inspecting host and OS, to
30184         decide whether to define _LARGEFILE_SOURCE.
30185
30186 2000-05-01  Jim Meyering  <meyering@lucent.com>
30187
30188         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
30189
30190         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
30191         Based on a patch from Bruno Haible.
30192
30193 2000-05-01  Jim Meyering  <meyering@lucent.com>
30194
30195         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
30196
30197 2000-04-29  Jim Meyering  <meyering@lucent.com>
30198
30199         * lib/path-concat.c: Declare strdup only if it's not defined.
30200         * lib/canon-host.c: Likewise.
30201
30202 2000-04-28  Jim Meyering  <meyering@lucent.com>
30203
30204         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
30205         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
30206         is included first, then limits.h is included by locale.h by libintl.h.
30207         From John David Anglin.
30208
30209 2000-04-25  Jim Meyering  <meyering@lucent.com>
30210
30211         * lib/makepath.c (S_IRWXUGO): Define.
30212         (make_path): Always perform explicit chmod if MODE specifies any
30213         of the `special' permission bits.  Prompted by a bug report against
30214         install from Mate Wierdl and Joost van Baal.
30215
30216 2000-04-18  Jim Meyering  <meyering@lucent.com>
30217
30218         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
30219         (jm_PREREQ): Use it.
30220
30221 2000-04-18  Jim Meyering  <meyering@lucent.com>
30222
30223         * lib/README: New file.
30224
30225         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
30226         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
30227
30228 2000-04-17  Jim Meyering  <meyering@lucent.com>
30229
30230         Get it right :-)
30231         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
30232         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
30233         Suggestion from Akim Demaille.
30234
30235 2000-04-17  Jim Meyering  <meyering@lucent.com>
30236
30237         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
30238         the definition of it to rpl_strftime also defined-away the system's
30239         declaration.
30240
30241 2000-04-15  Jim Meyering  <meyering@lucent.com>
30242
30243         Use `C' to denote so-called `contiguous' files, the same way
30244         that tar does.
30245         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
30246         (ftypelet): Use S_ISCTG.
30247         From Michael Deutschmann.
30248
30249 2000-04-14  Jim Meyering  <meyering@lucent.com>
30250
30251         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
30252         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
30253         clobbered.
30254
30255 2000-04-14  Jim Meyering  <meyering@lucent.com>
30256
30257         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
30258
30259 2000-04-13  Jim Meyering  <meyering@lucent.com>
30260
30261         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
30262         AH_VERBATIM to insert required #ifndef into config.h.in.
30263         Suggestion from Akim Demaille.
30264
30265 2000-04-12  Jim Meyering  <meyering@lucent.com>
30266
30267         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
30268         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
30269         Christian Krackowizer.
30270
30271         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
30272         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
30273         (AC_SYS_LARGEFILE): Require.
30274         (AM_C_PROTOTYPES): Require.
30275
30276 2000-04-08  Jim Meyering  <meyering@lucent.com>
30277
30278         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
30279         names don't conflict.  Reported by Eli Zaretskii.
30280
30281 2000-04-07  Jim Meyering  <meyering@lucent.com>
30282
30283         * lib/putenv.c: Move inclusion of errno.h so it follows that of
30284         sys/types.h, to work around system header problems on AIX 3.2.5.
30285         From Bruno Haible.
30286
30287 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
30288
30289         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
30290         bug.  Deal with the different error behavior of Irix iconv.
30291
30292 2000-04-05  Paul Eggert  <eggert@twinsun.com>
30293
30294         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
30295         IRIX if the installer said otherwise.
30296
30297 2000-04-05  Jim Meyering  <meyering@lucent.com>
30298
30299         Portability tweaks required for ultrix4.3.
30300         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
30301         (jm_CHECK_DECLS): Add getutent to the list of functions.
30302         (_jm_DECL_HEADERS): Add utmpx.h.
30303         From John David Anglin.
30304
30305         * m4/strftime.m4: Back out the 2000-04-02 change.
30306         Instead of that change, simply undefine putenv in the test program.
30307
30308 2000-04-05  Jim Meyering  <meyering@lucent.com>
30309
30310         Portability tweaks required for ultrix4.3.
30311         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
30312         getutent.
30313         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
30314         * lib/canon-host.c: Declare strdup.
30315         * lib/path-concat.c: Likewise.
30316         From John David Anglin.
30317
30318 2000-04-04  Jim Meyering  <meyering@lucent.com>
30319
30320         Be more DOS 8.3-friendly.
30321         * lib/ref-add.sin: Renamed from ref-add.sed.in.
30322         * lib/ref-del.sin: Renamed from ref-del.sed.in.
30323         * lib/Makefile.am: Reflect renaming.
30324         Reported by Eli Zaretskii.
30325
30326         Use a temporary file name that won't clash with `charset.alias'
30327         in the DOS 8.3 name space.
30328         * lib/Makefile.am (charset_tmp): Define.
30329         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
30330         (uninstall-local): Likewise.
30331         Reported by Eli Zaretskii.
30332
30333 2000-04-03  Jim Meyering  <meyering@lucent.com>
30334
30335         * m4/gettext.m4: Fix typo in comment.
30336
30337         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
30338         textutils/configure.in).  Suggestion from Paul Eggert.
30339         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
30340
30341 2000-04-02  Paul Eggert  <eggert@twinsun.com>
30342
30343         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
30344         variable in the shell rather than using putenv, which isn't
30345         portable.  This avoids the configure-time inter-test dependency
30346         on the potentially-renamed putenv function.
30347
30348 2000-03-30  Paul Eggert  <eggert@twinsun.com>
30349
30350         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
30351         before checking struct stat.st_blksize, so that
30352         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
30353
30354 2000-03-29  Paul Eggert  <eggert@twinsun.com>
30355
30356         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
30357         since strftime.c uses HAVE_STRFTIME to decide whether to use
30358         the underlying strftime.
30359
30360 2000-03-29  Paul Eggert  <eggert@twinsun.com>
30361
30362         * lib/time/strftime.c (my_strftime): Make sure we call the system
30363         strftime, not ourselves, when invoking the underlying strftime.
30364
30365 2000-03-24  Jim Meyering  <meyering@lucent.com>
30366
30367         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
30368         (charset_alias): Define.
30369         (install-exec-local): Factor out common code.
30370         (uninstall-local): Split lines longer than 80.
30371         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
30372         (SUFFIXES): Define.
30373         (.sed.in.sed): New rule.  Don't redirect directly to $@.
30374         (CLEANFILES): Add ref-add.sed and ref-del.sed.
30375
30376 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
30377
30378         * lib/config.charset: Output a line containing "Packages using this
30379         file".
30380         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
30381         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
30382         ref-del.sed): New rules.
30383
30384 2000-03-17  Jim Meyering  <meyering@lucent.com>
30385
30386         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
30387         Otherwise, include <strings.h>
30388
30389 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
30390
30391         * lib/unicodeio.c (utf8_wctomb): New function.
30392         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
30393         format instead of in UCS-4 with platform dependent endianness.
30394
30395 2000-03-10  Jim Meyering  <meyering@lucent.com>
30396
30397         * m4/lib-check.m4: Look for getspnam in -lgen, too.
30398         From Marco Franzen.
30399
30400 2000-03-07  Paul Eggert  <eggert@twinsun.com>
30401
30402         * lib/savedir.c (savedir): Work even if directory size is
30403         negative; this can happen with some screwy NFS configurations.
30404
30405 2000-03-06  Jim Meyering  <meyering@lucent.com>
30406
30407         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
30408         if it's NULL (because we ran out of memory).  From Bruno Haible.
30409
30410 2000-03-05  Jim Meyering  <meyering@lucent.com>
30411
30412         * lib/localcharset.c ("path-concat.h"): Include.
30413         (get_charset_aliases): Use path_concat instead of ANSI string
30414         concatenation.
30415
30416         * lib/unicodeio.h (PARAMS): Define.
30417         Use it to guard prototype.
30418
30419 2000-03-04  Jim Meyering  <meyering@lucent.com>
30420
30421         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
30422         for lib/localcharset.c.
30423
30424 2000-03-04  Jim Meyering  <meyering@lucent.com>
30425
30426         * lib/Makefile.am (install-exec-local): Create $(libdir) before
30427         installing into it.
30428         (uninstall-local): Uncomment this rule so `make distcheck' works
30429         once again.
30430
30431         * lib/unicodeio.c (<errno.h>): Include it.
30432         (errno): Declare if not defined.
30433
30434         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
30435
30436         * lib/config.charset: New version, incorporating remarks from a linux
30437         i18n mailing list.  From Bruno Haible.
30438
30439 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
30440
30441         * m4/codeset.m4: New file.
30442         * m4/iconv.m4: New file.
30443         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
30444
30445 2000-03-03  Jim Meyering  <meyering@lucent.com>
30446
30447         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
30448
30449 2000-03-02  Jim Meyering  <meyering@lucent.com>
30450
30451         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
30452         the messages come out on separate lines.
30453
30454         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
30455         rather than jm_CHECK_DECLARATIONS.
30456         * m4/decl.m4: Remove now-unused file.
30457
30458         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
30459         geteuid.
30460
30461 2000-03-02  Jim Meyering  <meyering@lucent.com>
30462
30463         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
30464
30465 2000-03-01  Jim Meyering  <meyering@lucent.com>
30466
30467         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
30468         * lib/unicodeio.c: Likewise.
30469
30470 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
30471
30472         * lib/config.charset: New file.
30473         * lib/localcharset.c: New file.
30474         * lib/unicodeio.h, lib/unicodeio.c: New files.
30475         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
30476         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
30477         (noinst_HEADERS): Add unicodeio.h.
30478         (all-local, install-exec-local, charset.alias): New targets.
30479
30480 2000-02-28  Paul Eggert  <eggert@twinsun.com>
30481
30482         * lib/quotearg.c (ALERT_CHAR): New macro.
30483         (quotearg_buffer_restyled): Use it.
30484
30485 2000-02-27  Jim Meyering  <meyering@lucent.com>
30486
30487         * m4/check-decl.m4: Add getenv to the list.
30488
30489 2000-02-27  Jim Meyering  <meyering@lucent.com>
30490
30491         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
30492         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
30493
30494         * lib/backupfile.c: Guard inclusion of stdlib.h with
30495         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
30496         Declare malloc if needed.
30497
30498         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
30499         `#ifndef HAVE_DECL..'
30500         now that autoconf always defines the HAVE_DECL_ symbols.
30501         * lib/human.c: Likewise.
30502         * lib/same.c: Likewise.
30503         * lib/strtoumax.c: Likewise.
30504
30505         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
30506         declaration check was not run.
30507         * lib/hash.c: Likewise.
30508         * lib/human.c: Likewise.
30509         * lib/same.c: Likewise.
30510         * lib/strtoumax.c: Likewise.
30511
30512         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
30513         `.', then first look up the entire `.'-containing string as a login
30514         name.
30515
30516 2000-02-23  Jim Meyering  <meyering@lucent.com>
30517
30518         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
30519         in place of my hack.
30520
30521 2000-02-18  Paul Eggert  <eggert@twinsun.com>
30522
30523         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
30524         (textint): New typedef.
30525         (parser_control): Member year changed from int to textint.
30526         All uses changed.
30527         (YYSTYPE): Removed; replaced by %union with int and textint members.
30528         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
30529         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
30530         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
30531         (tSNUMBER, tUNUMBER): Now of type <textintval>.
30532         (date, number, to_year): Use width of number in digits, not its value,
30533         to determine whether it's a 2-digit year, or a 2-digit time.
30534         (yylex): Store number of digits of numeric tokens.
30535         Reported by John Kendall.
30536
30537         (parser_control): Changed from struct parser_control to typedef (for
30538         consistency).  All uses changed.
30539
30540         (tID): Removed; not used.
30541         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
30542
30543 2000-02-14  Paul Eggert  <eggert@twinsun.com>
30544
30545         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
30546         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
30547
30548 2000-02-12  Jim Meyering  <meyering@lucent.com>
30549
30550         * lib/userspec.c (ISDIGIT): Define it.
30551         (isdigit): Remove definition.
30552         (is_number): Use ISDIGIT, not isdigit.
30553         <libintl.h>: Include.
30554         (_ and N_): Define.
30555         (parse_user_spec): Mark translatable strings.
30556
30557 2000-02-10  Jim Meyering  <meyering@lucent.com>
30558
30559         With these changes, nanosleep.[ch] are finally enough like the other
30560         lib/* replacement files to compile on a few more losing systems.
30561
30562         * lib/nanosleep.h: Don't include config.h.
30563         Remove prototype from declaration of nanosleep.
30564         (PARAMS): Remove now-unneeded definition.
30565         * lib/nanosleep.c: #undef nanosleep.
30566         (rpl_nanosleep): Rename from nanosleep.
30567
30568 2000-02-10  Jim Meyering  <meyering@lucent.com>
30569
30570         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
30571         gnu_nanosleep to rpl_nanosleep.
30572
30573 2000-02-09  Jim Meyering  <meyering@lucent.com>
30574
30575         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
30576         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
30577
30578 2000-02-08  Akim Demaille  <akim@epita.fr>
30579
30580         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
30581         `[' and `]' and remove uses of `changequote'.
30582         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
30583         (AC_SYS_LARGEFILE): Likewise.
30584         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
30585         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
30586         of changequote.
30587         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
30588         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
30589         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
30590         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
30591
30592 2000-02-05  Jim Meyering  <meyering@lucent.com>
30593
30594         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
30595         Remove explicit use of AC_HEADER_TIME.  It is required by
30596         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
30597         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
30598         in autoconf whereby the expansion of the latter ended up preceding
30599         the expansion of its prerequisite, AC_HEADER_TIME.
30600         Reported by Volker Borchert.
30601
30602 2000-02-03  Jim Meyering  <meyering@lucent.com>
30603
30604         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
30605
30606 2000-02-03  Jim Meyering  <meyering@lucent.com>
30607
30608         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
30609         rather than with `#if HAVE_UTMPNAME'.
30610
30611 2000-02-02  Jim Meyering  <meyering@lucent.com>
30612
30613         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
30614         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
30615         Reported by Eli Zaretskii.
30616
30617 2000-02-01  Jim Meyering  <meyering@lucent.com>
30618
30619         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
30620
30621 2000-01-31  Jim Meyering  <meyering@lucent.com>
30622
30623         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
30624         functions.  Add the time.h and sys/time.h headers along with the
30625         AC_REQUIRE'ment of AC_HEADER_TIME.
30626
30627 2000-01-31  Jim Meyering  <meyering@lucent.com>
30628
30629         * lib/nanosleep.h (nanosleep): Guard declaration with
30630         `#if ! HAVE_DECL_NANOSLEEP'.
30631         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
30632         the declaration in that vendor's sys/timers.h.
30633         Reported by Christian Krackowizer.
30634
30635         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
30636         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
30637         (ISPRINT): Likewise.
30638         Reported by Tom Tromey.
30639
30640 2000-01-30  Jim Meyering  <meyering@lucent.com>
30641
30642         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
30643
30644         * m4/prereq.m4 (utmp_includes): Define.
30645         Check for ut_user and ut_name members in both struct utmpx
30646         and struct utmp.
30647
30648 2000-01-30  Jim Meyering  <meyering@lucent.com>
30649
30650         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
30651         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
30652         header files where only utmpx.ut_user is declared.
30653
30654         * lib/readutmp.h (UT_USER): Define.
30655
30656 2000-01-29  Jim Meyering  <meyering@lucent.com>
30657
30658         * m4/lib-check.m4: New file containing library-related checks from
30659         fileutils and sh-utils (textutils had none).
30660
30661 2000-01-28  Jim Meyering  <meyering@lucent.com>
30662
30663         * m4/perl.m4: Change format of warning message to look more like that
30664         from the missing script.  Suggestion from François Pinard.
30665
30666 2000-01-25  Jim Meyering  <meyering@lucent.com>
30667
30668         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
30669         well as time.h in the compile check.
30670         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
30671         Fix typo in cross-compiling case: s/yes/no/.
30672
30673 2000-01-23  Jim Meyering  <meyering@lucent.com>
30674
30675         * m4/jm-macros.m4: Move df-related tests here from
30676         fileutils/configure.in
30677
30678         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
30679         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
30680
30681         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
30682         s/space/ac_fsusage_space/.
30683         (jm_FILE_SYSTEM_USAGE): Take two parameters.
30684
30685         * m4/ftruncate.m4: New file (derived from part of
30686         fileutils/configure.in).
30687         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
30688         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
30689
30690         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
30691         AC_SUBST these here, rather than just in sh-util/configure.in, so
30692         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
30693         all the same.
30694         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
30695         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
30696         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
30697         (AC_SUBST(POW_LIBM)): Likewise.
30698         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
30699
30700 2000-01-23  Jim Meyering  <meyering@lucent.com>
30701
30702         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
30703         obstack.c.
30704
30705 2000-01-22  Jim Meyering  <meyering@lucent.com>
30706
30707         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
30708
30709         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
30710
30711         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
30712         configure.in
30713         (AC_CHECK_HEADERS): Likewise for sh-utils.
30714         (AC_CHECK_HEADERS): Likewise for textutils.
30715         Merge the three lists of headers.
30716
30717         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
30718         from fileutils' configure.in.
30719
30720         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
30721         code. Moved tests into their own function (_jm_DECL_HEADERS) in
30722         check-decl.m4.
30723
30724         * m4/check-decl.m4: Use #if rather than #ifdef.
30725         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
30726         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
30727         (_jm_DECL_HEADERS): Define new function.
30728         (jm_CHECK_DECLARATIONS): Require it.
30729
30730 2000-01-22  Jim Meyering  <meyering@lucent.com>
30731
30732         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
30733         [! HAVE_DECL_STRTOULL]: Declare strtoull.
30734         Required for some AIX systems.  Reported by Christian Krackowizer.
30735         [TESTING] (main): New function.
30736
30737         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
30738         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
30739         letters.
30740
30741         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
30742         iswprint.
30743
30744         * lib/strverscmp.c (ISDIGIT): Define.
30745         (strverscmp): Use ISDIGIT, not isdigit.
30746
30747 2000-01-19  Jim Meyering  <meyering@lucent.com>
30748
30749         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
30750         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
30751         defines `struct timespec' in <sys/time.h>
30752
30753         * m4/c-bs-a.m4: Remove uses of changequote altogether.
30754         Thanks to Akim for explaining.
30755
30756 2000-01-17  Paul Eggert  <eggert@twinsun.com>
30757
30758         * lib/nanosleep.c (nanosleep):
30759         Don't use SA_INTERRUPT to decide whether to call sigaction, as
30760         POSIX.1 doesn't require SA_INTERRUPT and some systems
30761         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
30762         it's been part of POSIX.1 since day 1 (in 1988).
30763
30764 2000-01-17  Jim Meyering  <meyering@lucent.com>
30765
30766         * lib/interlock: Remove unused file.  Reported by François Pinard.
30767
30768 2000-01-16  Paul Eggert  <eggert@twinsun.com>
30769
30770         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
30771         alert, backslash, formfeed, and vertical tab unnecessarily in
30772         shell quoting style.
30773
30774 2000-01-16  Jim Meyering  <meyering@lucent.com>
30775
30776         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
30777         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
30778         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
30779         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
30780
30781 2000-01-16  Jim Meyering  <meyering@lucent.com>
30782
30783         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
30784         because the latter didn't work.
30785
30786 2000-01-15  Jim Meyering  <meyering@lucent.com>
30787
30788         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
30789         (AC_REPLACE_FUNCS): Add memcpy and memset.
30790         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
30791         Add strpbrk.
30792         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
30793
30794 2000-01-12  Jim Meyering  <meyering@lucent.com>
30795
30796         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
30797         (jm_PREREQ): Use it.
30798         (jm_PREREQ_READUTMP): New macro.
30799         (jm_PREREQ): Use it.
30800
30801 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30802
30803         Quote multibyte characters correctly.
30804         * m4/c-bs-a.m4: New file.
30805         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
30806         (jm_PREREQ): Use it.
30807
30808 2000-01-11  Paul Eggert  <eggert@twinsun.com>
30809
30810         * m4/uintmax_t.m4: Port to autoconf 2.13.
30811
30812 2000-01-08  Jim Meyering  <meyering@ascend.com>
30813
30814         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
30815         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
30816
30817 2000-01-04  Jim Meyering  <meyering@ascend.com>
30818
30819         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
30820         jm_STRUCT_DIRENT_D_TYPE.
30821         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
30822         jm_STRUCT_DIRENT_D_INO.
30823         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
30824         jm_STRUCT_UTIMBUF.
30825         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
30826         renamings.
30827         * m4/utime.m4: Likewise.
30828
30829         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
30830         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
30831
30832 2000-01-03  Paul Eggert  <eggert@twinsun.com>
30833
30834         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
30835         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
30836
30837 2000-01-02  Jim Meyering  <meyering@ascend.com>
30838
30839         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
30840         remember if this is necessary.
30841
30842 1999-12-26  Jim Meyering  <meyering@ascend.com>
30843
30844         * m4/jm-macros.m4: Use it here.
30845         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
30846
30847 1999-12-23  Jim Meyering  <meyering@ascend.com>
30848
30849         * m4/jm-macros.m4: Check for clock_gettime (moved from
30850         fileutils/configure.in)
30851         Check for gettimeofday.
30852
30853 1999-12-20  Jim Meyering  <meyering@ascend.com>
30854
30855         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
30856         autoconf-2.14a-1999-12-20.
30857
30858 1999-12-19  Jim Meyering  <meyering@ascend.com>
30859
30860         * m4/lstat-slash.m4: New file.
30861         * m4/jm-macros.m4: Use the new macro:
30862         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30863
30864 1999-12-07  Jim Meyering  <meyering@ascend.com>
30865
30866         * m4/perl.m4: Require that File::Compare be available, too.
30867         Too many systems seem to lack it.
30868
30869         * m4/strftime.m4: Add checks for most of the cpp macros tested in
30870         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
30871
30872 1999-11-18  Paul Eggert  <eggert@twinsun.com>
30873
30874         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
30875         problem with the QNX 4.25 shell, which doesn't propagate exit
30876         status of failed commands inside shell assignments.
30877
30878 1999-11-17  Jim Meyering  <meyering@ascend.com>
30879
30880         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
30881
30882 1999-11-07  Jim Meyering  <meyering@ascend.com>
30883
30884         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
30885
30886 1999-11-06  Jim Meyering  <meyering@ascend.com>
30887
30888         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
30889         * m4/jm-macros.m4 (jm_MACROS): Use it here.
30890
30891 1999-11-05  Jim Meyering  <meyering@ascend.com>
30892
30893         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
30894         configure.in of textutils, fileutils, and sh-utils into this one
30895         (shared between those packages) file.
30896         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
30897         AC_STRUCT_ST_BLKSIZE.
30898
30899 1999-11-03  Jim Meyering  <meyering@ascend.com>
30900
30901         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
30902         of AC_CHECK_TYPE checks includes unistd.h.
30903         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
30904         Suggestion from Akim Demaille.
30905
30906 1999-10-30  Jim Meyering  <meyering@ascend.com>
30907
30908         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
30909         m4-quoted string.
30910         * m4/ls-mntd-fs.m4: Likewise.
30911         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
30912         * m4/jm-winsz1.m4: Likewise.
30913
30914         * m4/const.m4: Remove file, since the fix made it into the experimental
30915         version of autoconf.
30916         * m4/mktime.m4: Likewise.
30917
30918         * m4/check-type.m4: Remove file, now that the latest version of
30919         AC_CHECK_TYPE takes a third arg to specify additional #includes.
30920
30921         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
30922         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
30923         AC_CHECK_TYPE.
30924
30925 1999-10-04  Jim Meyering  <meyering@ascend.com>
30926
30927         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
30928
30929 1999-09-22  Paul Eggert  <eggert@twinsun.com>
30930
30931         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
30932         2.95.1 bug with HP-UX 10.20.
30933
30934 1999-09-17  Jim Meyering  <meyering@ascend.com>
30935
30936         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
30937         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
30938         due to missing strdup (against sh-utils-2.0).
30939
30940 1999-08-29  Jim Meyering  <meyering@ascend.com>
30941
30942         * m4/jm-macros.m4: Require jm_BISON.
30943         * m4/bison.m4: New file.
30944
30945 1999-08-17  Paul Eggert  <eggert@twinsun.com>
30946
30947         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
30948         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
30949
30950 1999-08-05  Jim Meyering  <meyering@ascend.com>
30951
30952         * m4/getline.m4: Rename test file from conftestdata to conftest.data
30953         to avoid conflicts with `conftest' on 8+3 filesystems.
30954         Suggestion from Eli Zaretskii.
30955
30956 1999-08-04  Jim Meyering  <meyering@ascend.com>
30957
30958         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
30959         fileutils and sh-utils (textutils's getline test was inadequate).
30960         (AM_FUNC_GETLINE): Run this test.
30961         (AC_CHECK_FUNCS): Check for getdelim.
30962         Reported by Bob Proulx.
30963
30964 1999-08-02  Jim Meyering  <meyering@ascend.com>
30965
30966         * m4/jm-macros.m4: Add a comment.
30967
30968 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30969
30970         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
30971         <inttypes.h> defines strtoumax as a macro (and not as a
30972         function).
30973
30974 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30975
30976         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
30977         that we can shift, multiply and divide unsigned long long
30978         values; Ultrix cc can't do it.
30979
30980 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30981
30982         * m4/mktime.m4: New file, which is a preview of what should appear
30983         in the next public autoconf release.
30984
30985 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30986
30987         * m4/lfs.m4: Remove this file.
30988         * m4/largefile.m4: New file.  It contains the old contents of
30989         lfs.m4, except that all names with prefix AC_LFS have been
30990         changed to use the prefix AC_SYS_LARGEFILE instead, to be
30991         compatible with future autoconf versions.  Also, some minor m4
30992         quoting problems have been fixed.
30993
30994 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30995
30996         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
30997         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
30998         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
30999         and simplify the shell code.
31000
31001 1999-08-01  Jim Meyering  <meyering@ascend.com>
31002
31003         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
31004         m4.
31005
31006 1999-07-20  Jim Meyering  <meyering@ascend.com>
31007
31008         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
31009
31010 1999-07-15  Jim Meyering  <meyering@ascend.com>
31011
31012         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
31013
31014 1999-05-22  Jim Meyering  <meyering@ascend.com>
31015
31016         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
31017
31018 1999-05-20  Jim Meyering  <meyering@ascend.com>
31019
31020         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
31021         Add a colon after each `then' in case $4 is empty.
31022
31023 1999-05-16  Jim Meyering  <meyering@ascend.com>
31024
31025         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
31026
31027 1999-05-10  Jim Meyering  <meyering@ascend.com>
31028
31029         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
31030
31031         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
31032         AC_FUNC_MKTIME.
31033
31034 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
31035
31036         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
31037
31038 1999-05-04  Paul Eggert  <eggert@twinsun.com>
31039
31040         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
31041         not CPPFLAGS, so that linking works correctly in IRIX.
31042
31043 1999-04-30  Paul Eggert  <eggert@twinsun.com>
31044
31045         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
31046
31047 1999-04-20  Paul Eggert  <eggert@twinsun.com>
31048
31049         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
31050         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
31051         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
31052         jm_AC_TYPE_UNSIGNED_LONG_LONG.
31053         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
31054
31055         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
31056
31057 1999-04-20  Jim Meyering  <meyering@ascend.com>
31058
31059         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
31060         AC_REPLACE xstroull if necessary.  From Paul Eggert.
31061         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
31062
31063 1999-04-18  Jim Meyering  <meyering@ascend.com>
31064
31065         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
31066         * m4/jm-macros.m4: Use it.
31067
31068 1999-04-06  Jim Meyering  <meyering@ascend.com>
31069
31070         * m4/strftime.m4: Remove test for %f.
31071
31072 1999-03-29  Jim Meyering  <meyering@ascend.com>
31073
31074         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
31075         superset of the AC_TYPE_* checks in the textutils, fileutils,
31076         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
31077         AC_TYPE_PID_T.
31078
31079 1999-03-28  Jim Meyering  <meyering@ascend.com>
31080
31081         * m4/jm-macros.m4: Define GNU_PACKAGE here.
31082         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
31083         replaced e.g., in the *.sh files of the sh-utils.
31084
31085 1999-03-20  Jim Meyering  <meyering@ascend.com>
31086
31087         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
31088         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
31089         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
31090
31091 1999-03-19  Jim Meyering  <meyering@ascend.com>
31092
31093         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
31094
31095 1999-03-12  Jim Meyering  <meyering@ascend.com>
31096
31097         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
31098
31099 1999-03-07  Jim Meyering  <meyering@ascend.com>
31100
31101         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
31102         declared.
31103
31104 1999-02-17  Jim Meyering  <meyering@ascend.com>
31105
31106         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
31107         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
31108
31109 1999-02-07  Jim Meyering  <meyering@ascend.com>
31110
31111         * m4/group-member.m4: New file -- extracted from sh-utils'
31112         configure.in.
31113
31114         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
31115         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
31116
31117 1999-02-06  Jim Meyering  <meyering@ascend.com>
31118
31119         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
31120         * m4/fnmatch.m4: Likewise.
31121         * m4/getgroups.m4: Likewise.
31122         * m4/lstat.m4: Likewise.
31123         * m4/malloc.m4: Likewise.
31124         * m4/putenv.m4: Likewise.
31125         * m4/realloc.m4: Likewise.
31126         * m4/regex.m4: Likewise.
31127         * m4/stat.m4: Likewise.
31128         * m4/strftime.m4: Likewise.
31129         Suggestion from Alain Magloire.
31130
31131         * m4/chown.m4: Use `.$ac_objext', not `.o'.
31132         * m4/fnmatch.m4: Likewise.
31133         * m4/getgroups.m4: Likewise.
31134         * m4/getline.m4: Likewise.
31135         * m4/lstat.m4: Likewise.
31136         * m4/malloc.m4: Likewise.
31137         * m4/memcmp.m4: Likewise.
31138         * m4/putenv.m4: Likewise.
31139         * m4/realloc.m4: Likewise.
31140         * m4/regex.m4: Likewise.
31141         * m4/stat.m4: Likewise.
31142         * m4/strftime.m4: Likewise.
31143         Suggestion from Alain Magloire.
31144
31145         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
31146         an argument.
31147
31148         * m4/regex.m4: Add a run-time Test for proper operation of
31149         re_compile_pattern.
31150
31151 1999-01-31  Jim Meyering  <meyering@ascend.com>
31152
31153         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
31154
31155 1999-01-30  Jim Meyering  <meyering@ascend.com>
31156
31157         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
31158
31159         * m4/jm-mktime.m4: Make this a wrapper around the official
31160         AM_FUNC_MKTIME rather than my private copy, now that the official one
31161         is up to date.
31162         * m4/mktime.m4: Remove file.
31163
31164         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
31165         * m4/uptime.m4: Likewise.
31166         * m4/uintmax_t.m4: Likewise.
31167
31168 1999-01-28  Jim Meyering  <meyering@ascend.com>
31169
31170         * m4/jm-macros.m4: Use jm_AFS.
31171         * m4/afs.m4: New file (from fileutils' configure.in).
31172
31173         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
31174         * m4/chown.m4: Likewise.
31175         * m4/d-ino.m4: Likewise.
31176         * m4/d-type.m4: Likewise.
31177         * m4/fnmatch.m4: Likewise.
31178         * m4/getgroups.m4: Likewise.
31179         * m4/gettext.m4: Likewise.
31180         * m4/jm-mktime.m4: Likewise.
31181         * m4/jm-winsz2.m4: Likewise.
31182         * m4/lcmessage.m4: Likewise.
31183         * m4/ls-mntd-fs.m4: Likewise.
31184         * m4/malloc.m4: Likewise.
31185         * m4/memcmp.m4: Likewise.
31186         * m4/putenv.m4: Likewise.
31187         * m4/realloc.m4: Likewise.
31188         * m4/st_mtim.m4: Likewise.
31189         * m4/strftime.m4: Likewise.
31190
31191 1999-01-16  Jim Meyering  <meyering@ascend.com>
31192
31193         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
31194         (ARGMATCH_DIE_DECL): Define.
31195
31196 1999-01-12  Jim Meyering  <meyering@ascend.com>
31197
31198         * m4/Makefile.am.in: Rewrite to avoid using fmt.
31199         Reported by Lars Hecking.
31200
31201 1999-01-10  Jim Meyering  <meyering@ascend.com>
31202
31203         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
31204         gross kludge.
31205         * m4/inttypes_h.m4: Likewise.
31206         * m4/lstat.m4: Likewise.
31207         * m4/malloc.m4: Likewise.
31208         * m4/readdir.m4: Likewise.
31209         * m4/realloc.m4: Likewise.
31210         * m4/st_dm_mode.m4: Likewise.
31211         * m4/stat.m4: Likewise.
31212         * m4/utimbuf.m4: Likewise.
31213         * m4/utimes.m4: Likewise.
31214
31215         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
31216         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
31217         comments in config.h.in are meaningful.
31218
31219         * m4/jm-macros.m4: Require autoconf-2.13 here.
31220
31221         * m4/regex.m4: By default, don't use the included regex.c on systems
31222         with glibc 2.  Suggestion from Uli Drepper.
31223
31224 1999-01-02  Jim Meyering  <meyering@ascend.com>
31225
31226         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
31227
31228 1998-12-18  Jim Meyering  <meyering@ascend.com>
31229
31230         * m4/Makefile.am.in (Makefile.am): Simplify rule.
31231         Based on a suggestion from Lars Hecking.
31232
31233 1998-11-16  Paul Eggert  <eggert@twinsun.com>
31234
31235         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
31236
31237 1998-11-16  Jim Meyering  <meyering@ascend.com>
31238
31239         * m4/lfs.m4: Double-quote the `uname...` expression.
31240
31241 1998-11-14  Jim Meyering  <meyering@ascend.com>
31242
31243         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
31244         * m4/stat.m4: Likewise.
31245
31246 1998-11-03  Jim Meyering  <meyering@ascend.com>
31247
31248         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
31249         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
31250
31251 1998-10-18  Jim Meyering  <meyering@ascend.com>
31252
31253         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
31254
31255 1998-10-17  Jim Meyering  <meyering@ascend.com>
31256
31257         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
31258         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
31259         calls for those previously hard-coded headers.  Instead, take a new
31260         parameter.
31261         (jm_CHECK_DECLARATIONS): Reflect interface change.
31262         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
31263         (jm_CHECK_DECL_LOCALTIME_R): New macro.
31264
31265         * m4/mktime.m4: Test for spring-forward gap before long-running test.
31266
31267 1998-10-14  Jim Meyering  <meyering@ascend.com>
31268
31269         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
31270         instead of "TZ=America/Vancouver".  From Paul Eggert.
31271
31272 1998-10-11  Jim Meyering  <meyering@ascend.com>
31273
31274         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
31275         This adds a test for a recently added compatibility fix for mktime.c.
31276         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
31277
31278 1998-09-27  Jim Meyering  <meyering@ascend.com>
31279
31280         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
31281
31282         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
31283         ../configure.in, including a change from Gordon Matzigkeit to allow
31284         cross-compiling for the Hurd.
31285
31286         * m4/glibc.m4: New file/macro to test for the GNU C Library
31287         versions 1 and 2.  From Gordon Matzigkeit.
31288         Indent.
31289
31290 1998-09-21  Jim Meyering  <meyering@ascend.com>
31291
31292         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
31293
31294 1998-08-18  Paul Eggert  <eggert@twinsun.com>
31295
31296         Port nanosecond-resolution times to UnixWare 2.1.2 and
31297         pedantic Solaris 2.6.
31298
31299         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
31300         AC_STRUCT_ST_MTIM.
31301         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
31302         Generate name of ns member, instead of just 1 or undef.
31303         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
31304
31305 1998-08-15  Jim Meyering  <meyering@ascend.com>
31306
31307         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
31308         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
31309         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
31310         instead of jm_TYPE_SSIZE_T.
31311
31312 1998-08-12  Jim Meyering  <meyering@ascend.com>
31313
31314         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
31315
31316 1998-08-02  Jim Meyering  <meyering@ascend.com>
31317
31318         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
31319         in acconfig.h manually.
31320
31321 1998-07-31  Paul Eggert  <eggert@twinsun.com>
31322
31323         * m4/st_mtim.m4: New file.
31324
31325 1998-07-28  Jim Meyering  <meyering@ascend.com>
31326
31327         * m4/utimes.m4: Undef stat.
31328
31329 1998-07-25  Jim Meyering  <meyering@ascend.com>
31330
31331         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
31332         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
31333
31334 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
31335
31336         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
31337         uid and gid actually remain unchanged.
31338
31339 1998-07-07  Jim Meyering  <meyering@ascend.com>
31340
31341         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
31342
31343 1998-07-04  Jim Meyering  <meyering@ascend.com>
31344
31345         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
31346         to prove that this macro can be used in packages without regex.c.
31347
31348 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
31349
31350         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
31351         is to be used.
31352
31353 1998-07-03  Jim Meyering  <meyering@ascend.com>
31354
31355         * m4/gettext.m4: Add -lintl if it's found to be necessary.
31356
31357         * m4/gettext.m4: New file -- from gettext-0.10.35.
31358         * m4/lcmessage.m4: Likewise.
31359         * m4/progtest.m4: Likewise.
31360
31361         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
31362         * m4/jm-macros.m4: Require the new macro.
31363
31364 1998-06-29  Jim Meyering  <meyering@ascend.com>
31365
31366         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
31367         for the definition of NGROUPS (used in a system header included
31368         by sys/mount.h).
31369
31370 1998-06-28  Jim Meyering  <meyering@ascend.com>
31371
31372         * m4/ls-mntd-fs.m4: New file.
31373         * m4/fstypename.m4: New file.
31374
31375         * m4/jm-macros.m4: Require the new macro.
31376         * m4/jm-glibc-io.m4: New file.
31377
31378 1998-05-19  Jim Meyering  <meyering@ascend.com>
31379
31380         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
31381         * m4/lchown.m4: New file.
31382
31383         * m4/Makefile.am.in: New file.
31384         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
31385
31386 1998-05-14  Jim Meyering  <meyering@ascend.com>
31387
31388         * m4/Makefile.am (EXTRA_DIST): Add them.
31389         * m4/jm-macros.m4: New file.
31390         * m4/utimbuf.m4: New file.
31391
31392 1998-05-12  Jim Meyering  <meyering@ascend.com>
31393
31394         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
31395
31396 1998-05-11  Jim Meyering  <meyering@ascend.com>
31397
31398         * m4/isc-posix.m4: New file.
31399
31400 1998-05-10  Jim Meyering  <meyering@ascend.com>