New module 'ceil'.
[gnulib.git] / ChangeLog
1 2007-10-20  Bruno Haible  <bruno@clisp.org>
2
3         * modules/ceil: New file.
4         * m4/ceil.m4: New file.
5         * doc/functions/ceil.texi: Mention the 'ceil' module.
6
7 2007-10-20  Bruno Haible  <bruno@clisp.org>
8
9         * modules/floor: New file.
10         * m4/floor.m4: New file.
11         * doc/functions/floor.texi: Mention the 'floor' module.
12
13 2007-10-20  Bruno Haible  <bruno@clisp.org>
14
15         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
16         of %a.
17         * modules/floorf-tests (Depends-on): Likewise.
18         * modules/truncf-tests (Depends-on): Likewise.
19         * modules/trunc-tests (Depends-on): Likewise.
20         Reported by Ben Pfaff.
21
22 2007-10-19  Jim Meyering  <meyering@redhat.com>
23
24         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
25         Don't bother testing specific errno values.  Just test ferror.
26
27         New module: xprintf
28         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
29
30 2007-10-19  Bruno Haible  <bruno@clisp.org>
31
32         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
33         syntax.
34         * modules/javaexec (Makefile.am): Likewise.
35         * modules/relocatable-prog (Makefile.am): Likewise.
36         Suggested by Jim Meyering.
37
38 2007-10-18  Bruno Haible  <bruno@clisp.org>
39
40         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
41         Reported by Jim Meyering.
42
43 2007-10-18  Eric Blake  <ebb9@byu.net>
44
45         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
46
47 2007-10-18  Bruno Haible  <bruno@clisp.org>
48
49         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
50         the format string into writable memory. Needed in Fortify conditions.
51
52 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
53             Bruno Haible  <bruno@clisp.org>
54
55         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
56         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
57         * modules/trim (Depends-on): Add mbchar.
58         (configure.ac): Add gl_FUNC_MBRTOWC.
59         (Makefile.am): Augment lib_SOURCES.
60
61 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
62
63         Modify glob.c to use fstatat and dirfd, to simplify it.
64         Suggested by Eric Blake.
65         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
66         Don't include <stdbool.h>; not used.
67         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
68         (link_exists_p): Simplify implementation, since we can now assume
69         dirfd and fstatat.
70         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
71
72 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
73
74         * gnulib-tool (func_get_dependencies): Fix sed script to
75         match only tests.
76
77 2007-10-17  Bruno Haible  <bruno@clisp.org>
78
79         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
80         allow locale names without encoding suffix.
81         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
82         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
83
84 2007-10-16  Bruno Haible  <bruno@clisp.org>
85
86         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
87         * lib/getgroups.c (getgroups): Likewise.
88         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
89
90 2007-10-16  Bruno Haible  <bruno@clisp.org>
91
92         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
93         * modules/malloc-posix (License): Likewise.
94         * modules/realloc-posix (License): Likewise.
95         * modules/calloc-posix (License): Likewise.
96         * modules/intprops (License): Change from GPL to LGPL, with
97         Paul Eggert's approval.
98
99 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
100
101         Merge glibc changes into lib/glob.c.
102
103         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
104         2007-10-15 04:59:03 UTC.  Here are the changes:
105
106         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
107
108         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
109
110         * lib/glob.c: Add some branch prediction throughout.
111
112         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
113
114         [BZ #5103]
115         * lib/glob.c (glob): Recognize patterns starting \/.
116
117         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
118
119         [BZ #3996]
120         * lib/glob.c (attribute_hidden): Define if not defined.
121         (glob): Unescape dirname, filename or username when needed and not
122         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
123         is NULL.  Handle unescaped [ in pattern without closing ].
124         Don't pass GLOB_CHECK down to recursive glob for directories.
125         (__glob_pattern_type): New function.
126         (__glob_pattern_p): Implement using __glob_pattern_type.
127         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
128         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
129         Remove unreachable code.
130
131         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
132
133         * lib/glob.c (glob_in_dir): Add some comments and asserts to
134         explain why there are no leaks.
135
136         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
137
138         [BZ #3253]
139         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
140         time, rather allocate increasingly bigger arrays of pointers, if
141         possible with alloca, if too large with malloc.
142
143 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
144
145         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
146         Problem reported by H.Merijn Brand in
147         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
148         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
149         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
150
151 2007-10-15  Bruno Haible  <bruno@clisp.org>
152
153         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
154         with explicit rpl_ prefix.
155         * lib/fopen.c (fopen): Likewise.
156         * lib/freopen.c (freopen): Likewise.
157         * lib/iconv.c (iconv): Likewise.
158         * lib/iconv_close.c (iconv_close): Likewise.
159
160 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
161
162         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
163
164 2007-10-15  Bruno Haible  <bruno@clisp.org>
165
166         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
167         <stddef.h> instead of <stdlib.h> since we only need NULL.
168         Reported by Ben Pfaff <blp@cs.stanford.edu>.
169
170 2007-10-15  Bruno Haible  <bruno@clisp.org>
171
172         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
173         Replace paragraph talking about LIBOBJS.
174         Reported by Colin Watson <cjwatson@debian.org>.
175
176 2007-10-15  Bruno Haible  <bruno@clisp.org>
177
178         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
179         <stdlib.h> before using NULL.
180
181 2007-10-15  Simon Josefsson  <simon@josefsson.org>
182
183         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
184         Reported by Albert Chin <china@thewrittenword.com>.
185
186 2007-10-14  Bruno Haible  <bruno@clisp.org>
187
188         * modules/iconv_open-utf-tests: New file.
189         * tests/test-iconv-utf.c: New file.
190
191         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
192         * modules/iconv_open-utf: New file.
193         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
194         (iconv, iconv_close): New declarations.
195         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
196         be defined.
197         (iconv_open): Add special handling of conversion between UTF-8 and
198         UTF-{16,32}{BE,LE}.
199         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
200         * lib/iconv_close.c: New file.
201         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
202         gl_FUNC_ICONV_OPEN.
203         (gl_FUNC_ICONV_OPEN): Use it.
204         (gl_FUNC_ICONV_OPEN_UTF): New macro.
205         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
206         and REPLACE_ICONV_UTF.
207         * modules/iconv_open (Depends-on): Add c-strcase.
208         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
209         ICONV_CONST.
210         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
211
212 2007-10-13  Albert Chin  <china@thewrittenword.com>
213             Bruno Haible  <bruno@clisp.org>
214
215         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
216         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
217
218 2007-10-13  Bruno Haible  <bruno@clisp.org>
219
220         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
221         defined, use the ISO C99 inline semantics.
222         * lib/argp.h (ARGP_EI): Likewise.
223
224 2007-10-13  Bruno Haible  <bruno@clisp.org>
225
226         Handle 'inline' change in gcc 4.3.0.
227         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
228         argp_fmtstream_write, argp_fmtstream_set_lmargin,
229         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
230         argp_fmtstream_point): Disable 'extern' declaration if the function
231         definition is going to be provided inline.
232         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
233         semantics, not the ISO C99 inline semantics.
234         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
235         'extern' declaration if the function definition is going to be provided
236         inline.
237         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
238         the GNU C inline semantics, not the ISO C99 inline semantics. With
239         GCC 4.2, avoid a warning.
240
241 2007-10-13  Bruno Haible  <bruno@clisp.org>
242
243         * lib/freading.h (freading): Enable the use of __freading for
244         glibc >= 2.7.
245         * lib/freading.c (freading): Likewise.
246
247 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
248
249         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
250         "warning: C99 inline functions are not supported; using GNU89".
251
252 2007-10-12  Bruno Haible  <bruno@clisp.org>
253
254         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
255         of 2.
256         * tests/test-ceilf2.c: New file.
257         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
258
259         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
260         * modules/ceilf-tests: Update.
261
262 2007-10-12  Bruno Haible  <bruno@clisp.org>
263
264         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
265         of 2.
266         * tests/test-floorf2.c: New file.
267         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
268
269         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
270         * modules/floorf-tests: Update.
271
272 2007-10-12  Bruno Haible  <bruno@clisp.org>
273
274         * tests/test-trunc2.c: New file.
275         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
276
277         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
278         * modules/trunc-tests: Update.
279
280 2007-10-12  Bruno Haible  <bruno@clisp.org>
281
282         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
283         of 2.
284         * tests/test-truncf2.c: New file.
285         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
286
287         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
288         * modules/truncf-tests: Update.
289
290 2007-10-11  Eric Blake  <ebb9@byu.net>
291
292         Don't claim strerror is broken on Interix.
293         * doc/functions/strerror.texi (strerror): Known broken systems are
294         now Solaris 8, and not Interix.
295         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
296         Interix on cross-compile.
297         Reported by Martin Koeppe in
298         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
299
300 2007-10-11  Bruno Haible  <bruno@clisp.org>
301
302         * modules/i-ring-tests: New file.
303         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
304         instead of assert.
305
306 2007-10-11  Bruno Haible  <bruno@clisp.org>
307
308         * modules/filenamecat-tests: New file.
309         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
310         * lib/filenamecat.c: Remove test code.
311
312 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
313
314         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
315
316         * lib/strerror.c: Include <string.h> always, to test interface,
317         and to remove the need for the dummy.
318         Include intprops.h to compute width instead of doing it ourselves
319         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
320         (strerror): Define it to return NULL if there's no system strerror.
321         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
322         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
323         ancient pre-strerror Unix systems well any more.  Saying "unknown
324         system error" is enough.
325         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
326         simpler strerror.c implementation.
327         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
328         Simplify the tests to reflect the simpler strerror implementation.
329         * modules/strerror (Depends-on): Add intprops.
330
331 2007-10-09  Eric Blake  <ebb9@byu.net>
332
333         Silence test-fpending.
334         * modules/fpending-tests (Files): Add wrapper script.
335         * tests/test-fpending.sh: New file.
336
337 2007-10-09  Bruno Haible  <bruno@clisp.org>
338
339         * MODULES.html.sh (func_module): Don't create a hyperlink for
340         function names like 'printf_frexp'.
341         (Misc): Add crc, memxor.
342         (Characteristics of floating types): New section.
343         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
344         isnanf-nolibm, signbit, trunc, truncf, truncl.
345         (Enhancements for ISO C 99 functions): New subsection Input/output.
346         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
347         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
348         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
349         (Compatibility checks for POSIX:2001 functions): Add clock-time.
350         (Enhancements for POSIX:2001 functions): Add chdir-long.
351         (File system functions): Add areadlink, chdir-safer, read-file.
352         Remove cycle-check.
353         (File system as inode set): New section.
354         (Date and time): Add gethrxtime.
355         (Multithreading): Add openmp.
356         (Internationalization functions): Add localename.
357         (Unicode string functions): Add unistr/u*-mbsnlen.
358         (Support for maintaining and releasing projects): Add git-version-gen.
359         (Lone files): Remove directories.
360
361 2007-10-08  Ben Pfaff  <blp@gnu.org>
362
363         * lib/xmalloca.h: Fix typo in comment.
364
365 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
366
367         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
368         when avoiding problems with integer overflow.  Use a portable test
369         instead.
370
371 2007-10-08  Simon Josefsson  <simon@josefsson.org>
372
373         * modules/dummy (License): Change to LGPLv2+.
374         * modules/float (License): Likewise
375         * modules/realloc (License): Likewise
376         * modules/stdlib (License): Likewise
377
378 2007-10-07  Bruno Haible  <bruno@clisp.org>
379
380         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
381         * floor.c (TWO_MANT_DIG): Likewise.
382         * ceil.c (TWO_MANT_DIG): Likewise.
383         Reported by Ben Pfaff.
384
385 2007-10-07  Bruno Haible  <bruno@clisp.org>
386
387         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
388         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
389         * lib/frexp.c (FUNC): Likewise.
390         * lib/printf-frexp.h (printf_frexp): Likewise.
391         * lib/printf-frexpl.h (printf_frexpl): Likewise.
392         * lib/printf-frexp.c (FUNC): Likewise.
393         Suggested by Jim Meyering.
394
395 2007-10-07  Jim Meyering  <meyering@redhat.com>
396
397         Make xnanosleep's integer overflow test more robust.
398         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
399         so that gcc-4.3.0 doesn't optimize away this test for overflow.
400
401 2007-10-07  Bruno Haible  <bruno@clisp.org>
402
403         * NEWS: Mention the license change.
404
405         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
406         abbreviations in the modules files.
407
408         Change copyright notice from GPLv2+ to GPLv3+.
409         * README: Change copyright notice.
410         * MODULES.html.sh: Likewise.
411         * build-aux/bootstrap.conf: Likewise.
412         * build-aux/config.libpath: Likewise.
413         * build-aux/csharpcomp.sh.in: Likewise.
414         * build-aux/csharpexec.sh.in: Likewise.
415         * build-aux/install-reloc: Likewise.
416         * build-aux/javacomp.sh.in: Likewise.
417         * build-aux/javaexec.sh.in: Likewise.
418         * build-aux/ldd.sh.in: Likewise.
419         * build-aux/reloc-ldflags: Likewise.
420         * build-aux/relocatable.sh.in: Likewise.
421         * build-aux/x-to-1.in: Likewise.
422         * check-module: Likewise.
423         * config/srclistvars.sh: Likewise.
424         * gnulib-tool: Likewise.
425         * lib/acl-internal.h: Likewise.
426         * lib/acl.c: Likewise.
427         * lib/acl.h: Likewise.
428         * lib/acl_entries.c: Likewise.
429         * lib/areadlink-with-size.c: Likewise.
430         * lib/areadlink.c: Likewise.
431         * lib/areadlink.h: Likewise.
432         * lib/argmatch.c: Likewise.
433         * lib/argmatch.h: Likewise.
434         * lib/argp-ba.c: Likewise.
435         * lib/argp-eexst.c: Likewise.
436         * lib/argp-fmtstream.c: Likewise.
437         * lib/argp-fmtstream.h: Likewise.
438         * lib/argp-fs-xinl.c: Likewise.
439         * lib/argp-help.c: Likewise.
440         * lib/argp-namefrob.h: Likewise.
441         * lib/argp-parse.c: Likewise.
442         * lib/argp-pin.c: Likewise.
443         * lib/argp-pv.c: Likewise.
444         * lib/argp-pvh.c: Likewise.
445         * lib/argp-xinl.c: Likewise.
446         * lib/argp.h: Likewise.
447         * lib/at-func.c: Likewise.
448         * lib/atanl.c: Likewise.
449         * lib/backupfile.c: Likewise.
450         * lib/backupfile.h: Likewise.
451         * lib/basename.c: Likewise.
452         * lib/binary-io.h: Likewise.
453         * lib/byteswap.in.h: Likewise.
454         * lib/c-stack.c: Likewise.
455         * lib/c-stack.h: Likewise.
456         * lib/c-strcasestr.c: Likewise.
457         * lib/c-strcasestr.h: Likewise.
458         * lib/c-strstr.c: Likewise.
459         * lib/c-strstr.h: Likewise.
460         * lib/c-strtod.c: Likewise.
461         * lib/calloc.c: Likewise.
462         * lib/canon-host.c: Likewise.
463         * lib/canon-host.h: Likewise.
464         * lib/canonicalize-lgpl.c: Likewise.
465         * lib/canonicalize.c: Likewise.
466         * lib/canonicalize.h: Likewise.
467         * lib/ceil.c: Likewise.
468         * lib/ceilf.c: Likewise.
469         * lib/ceill.c: Likewise.
470         * lib/chdir-long.c: Likewise.
471         * lib/chdir-long.h: Likewise.
472         * lib/chdir-safer.c: Likewise.
473         * lib/chdir-safer.h: Likewise.
474         * lib/chown.c: Likewise.
475         * lib/classpath.c: Likewise.
476         * lib/classpath.h: Likewise.
477         * lib/clean-temp.c: Likewise.
478         * lib/clean-temp.h: Likewise.
479         * lib/cloexec.c: Likewise.
480         * lib/close-stream.c: Likewise.
481         * lib/closein.c: Likewise.
482         * lib/closein.h: Likewise.
483         * lib/closeout.c: Likewise.
484         * lib/closeout.h: Likewise.
485         * lib/concat-filename.c: Likewise.
486         * lib/copy-file.c: Likewise.
487         * lib/copy-file.h: Likewise.
488         * lib/count-one-bits.h: Likewise.
489         * lib/crc.c: Likewise.
490         * lib/crc.h: Likewise.
491         * lib/creat-safer.c: Likewise.
492         * lib/csharpcomp.c: Likewise.
493         * lib/csharpcomp.h: Likewise.
494         * lib/csharpexec.c: Likewise.
495         * lib/csharpexec.h: Likewise.
496         * lib/cycle-check.c: Likewise.
497         * lib/cycle-check.h: Likewise.
498         * lib/diacrit.c: Likewise.
499         * lib/diacrit.h: Likewise.
500         * lib/diffseq.h: Likewise.
501         * lib/dirchownmod.c: Likewise.
502         * lib/dirent.in.h: Likewise.
503         * lib/dirfd.c: Likewise.
504         * lib/dirfd.h: Likewise.
505         * lib/dirname.c: Likewise.
506         * lib/dirname.h: Likewise.
507         * lib/dummy.c: Likewise.
508         * lib/dup-safer.c: Likewise.
509         * lib/dup2.c: Likewise.
510         * lib/eealloc.h: Likewise.
511         * lib/error.c: Likewise.
512         * lib/error.h: Likewise.
513         * lib/euidaccess.c: Likewise.
514         * lib/exclude.c: Likewise.
515         * lib/exclude.h: Likewise.
516         * lib/execute.c: Likewise.
517         * lib/execute.h: Likewise.
518         * lib/exitfail.c: Likewise.
519         * lib/exitfail.h: Likewise.
520         * lib/expl.c: Likewise.
521         * lib/fatal-signal.c: Likewise.
522         * lib/fatal-signal.h: Likewise.
523         * lib/fbufmode.c: Likewise.
524         * lib/fbufmode.h: Likewise.
525         * lib/fchdir.c: Likewise.
526         * lib/fchmodat.c: Likewise.
527         * lib/fchownat.c: Likewise.
528         * lib/fcntl--.h: Likewise.
529         * lib/fcntl-safer.h: Likewise.
530         * lib/fcntl.in.h: Likewise.
531         * lib/fd-safer.c: Likewise.
532         * lib/fflush.c: Likewise.
533         * lib/file-has-acl.c: Likewise.
534         * lib/file-set.c: Likewise.
535         * lib/file-type.c: Likewise.
536         * lib/file-type.h: Likewise.
537         * lib/fileblocks.c: Likewise.
538         * lib/filemode.c: Likewise.
539         * lib/filemode.h: Likewise.
540         * lib/filename.h: Likewise.
541         * lib/filenamecat.c: Likewise.
542         * lib/filenamecat.h: Likewise.
543         * lib/findprog.c: Likewise.
544         * lib/findprog.h: Likewise.
545         * lib/float.in.h: Likewise.
546         * lib/floor.c: Likewise.
547         * lib/floorf.c: Likewise.
548         * lib/floorl.c: Likewise.
549         * lib/fopen-safer.c: Likewise.
550         * lib/fopen.c: Likewise.
551         * lib/fpending.c: Likewise.
552         * lib/fpending.h: Likewise.
553         * lib/fprintf.c: Likewise.
554         * lib/fprintftime.h: Likewise.
555         * lib/fpucw.h: Likewise.
556         * lib/fpurge.c: Likewise.
557         * lib/fpurge.h: Likewise.
558         * lib/freadable.c: Likewise.
559         * lib/freadable.h: Likewise.
560         * lib/freadahead.c: Likewise.
561         * lib/freadahead.h: Likewise.
562         * lib/freading.c: Likewise.
563         * lib/freading.h: Likewise.
564         * lib/free.c: Likewise.
565         * lib/freopen.c: Likewise.
566         * lib/frexp.c: Likewise.
567         * lib/frexpl.c: Likewise.
568         * lib/fseek.c: Likewise.
569         * lib/fseterr.c: Likewise.
570         * lib/fseterr.h: Likewise.
571         * lib/fstatat.c: Likewise.
572         * lib/fstrcmp.c: Likewise.
573         * lib/fstrcmp.h: Likewise.
574         * lib/fsusage.c: Likewise.
575         * lib/fsusage.h: Likewise.
576         * lib/ftell.c: Likewise.
577         * lib/ftello.c: Likewise.
578         * lib/fts-cycle.c: Likewise.
579         * lib/fts.c: Likewise.
580         * lib/fts_.h: Likewise.
581         * lib/full-read.c: Likewise.
582         * lib/full-read.h: Likewise.
583         * lib/full-write.c: Likewise.
584         * lib/full-write.h: Likewise.
585         * lib/fwritable.c: Likewise.
586         * lib/fwritable.h: Likewise.
587         * lib/fwriteerror.c: Likewise.
588         * lib/fwriteerror.h: Likewise.
589         * lib/fwriting.c: Likewise.
590         * lib/fwriting.h: Likewise.
591         * lib/gcd.c: Likewise.
592         * lib/gcd.h: Likewise.
593         * lib/getcwd.c: Likewise.
594         * lib/getdate.h: Likewise.
595         * lib/getdate.y: Likewise.
596         * lib/getdomainname.c: Likewise.
597         * lib/getdomainname.h: Likewise.
598         * lib/getgroups.c: Likewise.
599         * lib/gethostname.c: Likewise.
600         * lib/gethrxtime.c: Likewise.
601         * lib/gethrxtime.h: Likewise.
602         * lib/getloadavg.c: Likewise.
603         * lib/getndelim2.c: Likewise.
604         * lib/getndelim2.h: Likewise.
605         * lib/getnline.c: Likewise.
606         * lib/getnline.h: Likewise.
607         * lib/getopt.c: Likewise.
608         * lib/getopt.in.h: Likewise.
609         * lib/getopt1.c: Likewise.
610         * lib/getopt_int.h: Likewise.
611         * lib/getpagesize.h: Likewise.
612         * lib/getsubopt.c: Likewise.
613         * lib/gettime.c: Likewise.
614         * lib/getugroups.c: Likewise.
615         * lib/getugroups.h: Likewise.
616         * lib/getusershell.c: Likewise.
617         * lib/gl_anyavltree_list1.h: Likewise.
618         * lib/gl_anyavltree_list2.h: Likewise.
619         * lib/gl_anyhash_list1.h: Likewise.
620         * lib/gl_anyhash_list2.h: Likewise.
621         * lib/gl_anylinked_list1.h: Likewise.
622         * lib/gl_anylinked_list2.h: Likewise.
623         * lib/gl_anyrbtree_list1.h: Likewise.
624         * lib/gl_anyrbtree_list2.h: Likewise.
625         * lib/gl_anytree_list1.h: Likewise.
626         * lib/gl_anytree_list2.h: Likewise.
627         * lib/gl_anytree_oset.h: Likewise.
628         * lib/gl_anytreehash_list1.h: Likewise.
629         * lib/gl_anytreehash_list2.h: Likewise.
630         * lib/gl_array_list.c: Likewise.
631         * lib/gl_array_list.h: Likewise.
632         * lib/gl_array_oset.c: Likewise.
633         * lib/gl_array_oset.h: Likewise.
634         * lib/gl_avltree_list.c: Likewise.
635         * lib/gl_avltree_list.h: Likewise.
636         * lib/gl_avltree_oset.c: Likewise.
637         * lib/gl_avltree_oset.h: Likewise.
638         * lib/gl_avltreehash_list.c: Likewise.
639         * lib/gl_avltreehash_list.h: Likewise.
640         * lib/gl_carray_list.c: Likewise.
641         * lib/gl_carray_list.h: Likewise.
642         * lib/gl_linked_list.c: Likewise.
643         * lib/gl_linked_list.h: Likewise.
644         * lib/gl_linkedhash_list.c: Likewise.
645         * lib/gl_linkedhash_list.h: Likewise.
646         * lib/gl_list.c: Likewise.
647         * lib/gl_list.h: Likewise.
648         * lib/gl_oset.c: Likewise.
649         * lib/gl_oset.h: Likewise.
650         * lib/gl_rbtree_list.c: Likewise.
651         * lib/gl_rbtree_list.h: Likewise.
652         * lib/gl_rbtree_oset.c: Likewise.
653         * lib/gl_rbtree_oset.h: Likewise.
654         * lib/gl_rbtreehash_list.c: Likewise.
655         * lib/gl_rbtreehash_list.h: Likewise.
656         * lib/gl_sublist.c: Likewise.
657         * lib/gl_sublist.h: Likewise.
658         * lib/group-member.c: Likewise.
659         * lib/group-member.h: Likewise.
660         * lib/hard-locale.c: Likewise.
661         * lib/hard-locale.h: Likewise.
662         * lib/hash-pjw.c: Likewise.
663         * lib/hash-pjw.h: Likewise.
664         * lib/hash-triple.c: Likewise.
665         * lib/hash.c: Likewise.
666         * lib/hash.h: Likewise.
667         * lib/human.c: Likewise.
668         * lib/human.h: Likewise.
669         * lib/i-ring.c: Likewise.
670         * lib/i-ring.h: Likewise.
671         * lib/idcache.c: Likewise.
672         * lib/imaxabs.c: Likewise.
673         * lib/imaxdiv.c: Likewise.
674         * lib/inet_pton.c: Likewise.
675         * lib/inet_pton.h: Likewise.
676         * lib/intprops.h: Likewise.
677         * lib/inttostr.c: Likewise.
678         * lib/inttostr.h: Likewise.
679         * lib/inttypes.in.h: Likewise.
680         * lib/isapipe.c: Likewise.
681         * lib/isdir.c: Likewise.
682         * lib/isnan.c: Likewise.
683         * lib/isnan.h: Likewise.
684         * lib/isnanf.c: Likewise.
685         * lib/isnanf.h: Likewise.
686         * lib/isnanl-nolibm.h: Likewise.
687         * lib/isnanl.c: Likewise.
688         * lib/isnanl.h: Likewise.
689         * lib/javacomp.c: Likewise.
690         * lib/javacomp.h: Likewise.
691         * lib/javaexec.c: Likewise.
692         * lib/javaexec.h: Likewise.
693         * lib/javaversion.c: Likewise.
694         * lib/javaversion.h: Likewise.
695         * lib/javaversion.java: Likewise.
696         * lib/lbrkprop.h: Likewise.
697         * lib/lchmod.h: Likewise.
698         * lib/lchown.c: Likewise.
699         * lib/ldexpl.c: Likewise.
700         * lib/linebreak.c: Likewise.
701         * lib/linebreak.h: Likewise.
702         * lib/linebuffer.c: Likewise.
703         * lib/linebuffer.h: Likewise.
704         * lib/locale.in.h: Likewise.
705         * lib/logl.c: Likewise.
706         * lib/long-options.c: Likewise.
707         * lib/long-options.h: Likewise.
708         * lib/lstat.c: Likewise.
709         * lib/lstat.h: Likewise.
710         * lib/math.in.h: Likewise.
711         * lib/mbchar.c: Likewise.
712         * lib/mbchar.h: Likewise.
713         * lib/mbfile.h: Likewise.
714         * lib/mbiter.h: Likewise.
715         * lib/mbscasecmp.c: Likewise.
716         * lib/mbscasestr.c: Likewise.
717         * lib/mbschr.c: Likewise.
718         * lib/mbscspn.c: Likewise.
719         * lib/mbslen.c: Likewise.
720         * lib/mbsncasecmp.c: Likewise.
721         * lib/mbsnlen.c: Likewise.
722         * lib/mbspbrk.c: Likewise.
723         * lib/mbspcasecmp.c: Likewise.
724         * lib/mbsrchr.c: Likewise.
725         * lib/mbssep.c: Likewise.
726         * lib/mbsspn.c: Likewise.
727         * lib/mbsstr.c: Likewise.
728         * lib/mbstok_r.c: Likewise.
729         * lib/mbswidth.c: Likewise.
730         * lib/mbswidth.h: Likewise.
731         * lib/mbuiter.h: Likewise.
732         * lib/memcasecmp.c: Likewise.
733         * lib/memcasecmp.h: Likewise.
734         * lib/memchr.c: Likewise.
735         * lib/memcmp.c: Likewise.
736         * lib/memcoll.c: Likewise.
737         * lib/memcoll.h: Likewise.
738         * lib/memcpy.c: Likewise.
739         * lib/memrchr.c: Likewise.
740         * lib/mkancesdirs.c: Likewise.
741         * lib/mkdir-p.c: Likewise.
742         * lib/mkdir-p.h: Likewise.
743         * lib/mkdir.c: Likewise.
744         * lib/mkdirat.c: Likewise.
745         * lib/mkdtemp.c: Likewise.
746         * lib/mkstemp-safer.c: Likewise.
747         * lib/mkstemp.c: Likewise.
748         * lib/modechange.c: Likewise.
749         * lib/modechange.h: Likewise.
750         * lib/mountlist.c: Likewise.
751         * lib/mountlist.h: Likewise.
752         * lib/mpsort.c: Likewise.
753         * lib/nanosleep.c: Likewise.
754         * lib/obstack.c: Likewise.
755         * lib/obstack.h: Likewise.
756         * lib/open-safer.c: Likewise.
757         * lib/open.c: Likewise.
758         * lib/openat-die.c: Likewise.
759         * lib/openat-priv.h: Likewise.
760         * lib/openat-proc.c: Likewise.
761         * lib/openat.c: Likewise.
762         * lib/openat.h: Likewise.
763         * lib/pagealign_alloc.c: Likewise.
764         * lib/pagealign_alloc.h: Likewise.
765         * lib/physmem.c: Likewise.
766         * lib/physmem.h: Likewise.
767         * lib/pipe-safer.c: Likewise.
768         * lib/pipe.c: Likewise.
769         * lib/pipe.h: Likewise.
770         * lib/posixtm.c: Likewise.
771         * lib/posixtm.h: Likewise.
772         * lib/posixver.c: Likewise.
773         * lib/printf-frexp.c: Likewise.
774         * lib/printf-frexp.h: Likewise.
775         * lib/printf-frexpl.c: Likewise.
776         * lib/printf-frexpl.h: Likewise.
777         * lib/printf.c: Likewise.
778         * lib/progname.c: Likewise.
779         * lib/progname.h: Likewise.
780         * lib/progreloc.c: Likewise.
781         * lib/putenv.c: Likewise.
782         * lib/quote.c: Likewise.
783         * lib/quote.h: Likewise.
784         * lib/quotearg.c: Likewise.
785         * lib/quotearg.h: Likewise.
786         * lib/raise.c: Likewise.
787         * lib/readline.c: Likewise.
788         * lib/readline.h: Likewise.
789         * lib/readlink.c: Likewise.
790         * lib/readtokens.c: Likewise.
791         * lib/readtokens.h: Likewise.
792         * lib/readtokens0.c: Likewise.
793         * lib/readtokens0.h: Likewise.
794         * lib/readutmp.c: Likewise.
795         * lib/readutmp.h: Likewise.
796         * lib/realloc.c: Likewise.
797         * lib/relocwrapper.c: Likewise.
798         * lib/rename-dest-slash.c: Likewise.
799         * lib/rename.c: Likewise.
800         * lib/rmdir.c: Likewise.
801         * lib/rpmatch.c: Likewise.
802         * lib/safe-read.c: Likewise.
803         * lib/safe-read.h: Likewise.
804         * lib/safe-write.c: Likewise.
805         * lib/safe-write.h: Likewise.
806         * lib/same-inode.h: Likewise.
807         * lib/same.c: Likewise.
808         * lib/same.h: Likewise.
809         * lib/save-cwd.c: Likewise.
810         * lib/save-cwd.h: Likewise.
811         * lib/savedir.c: Likewise.
812         * lib/savedir.h: Likewise.
813         * lib/savewd.c: Likewise.
814         * lib/savewd.h: Likewise.
815         * lib/search.in.h: Likewise.
816         * lib/setenv.c: Likewise.
817         * lib/setenv.h: Likewise.
818         * lib/settime.c: Likewise.
819         * lib/sh-quote.c: Likewise.
820         * lib/sh-quote.h: Likewise.
821         * lib/sig2str.c: Likewise.
822         * lib/sig2str.h: Likewise.
823         * lib/signal.in.h: Likewise.
824         * lib/signbitd.c: Likewise.
825         * lib/signbitf.c: Likewise.
826         * lib/signbitl.c: Likewise.
827         * lib/sigprocmask.c: Likewise.
828         * lib/sincosl.c: Likewise.
829         * lib/sleep.c: Likewise.
830         * lib/sprintf.c: Likewise.
831         * lib/sqrtl.c: Likewise.
832         * lib/stat-time.h: Likewise.
833         * lib/stdio--.h: Likewise.
834         * lib/stdio-safer.h: Likewise.
835         * lib/stdlib--.h: Likewise.
836         * lib/stdlib-safer.h: Likewise.
837         * lib/stdlib.in.h: Likewise.
838         * lib/stpcpy.c: Likewise.
839         * lib/stpncpy.c: Likewise.
840         * lib/strchrnul.c: Likewise.
841         * lib/strcspn.c: Likewise.
842         * lib/strerror.c: Likewise.
843         * lib/strftime.c: Likewise.
844         * lib/strftime.h: Likewise.
845         * lib/striconveh.c: Likewise.
846         * lib/striconveh.h: Likewise.
847         * lib/striconveha.c: Likewise.
848         * lib/striconveha.h: Likewise.
849         * lib/stripslash.c: Likewise.
850         * lib/strnlen1.c: Likewise.
851         * lib/strnlen1.h: Likewise.
852         * lib/strtod.c: Likewise.
853         * lib/strtoimax.c: Likewise.
854         * lib/strtok_r.c: Likewise.
855         * lib/strtol.c: Likewise.
856         * lib/strtoll.c: Likewise.
857         * lib/strtoul.c: Likewise.
858         * lib/strtoull.c: Likewise.
859         * lib/sysexits.in.h: Likewise.
860         * lib/tempname.c: Likewise.
861         * lib/tempname.h: Likewise.
862         * lib/timespec.h: Likewise.
863         * lib/tls.c: Likewise.
864         * lib/tls.h: Likewise.
865         * lib/tmpdir.c: Likewise.
866         * lib/tmpdir.h: Likewise.
867         * lib/tmpfile-safer.c: Likewise.
868         * lib/tmpfile.c: Likewise.
869         * lib/trigl.c: Likewise.
870         * lib/trigl.h: Likewise.
871         * lib/trim.c: Likewise.
872         * lib/trim.h: Likewise.
873         * lib/trunc.c: Likewise.
874         * lib/truncf.c: Likewise.
875         * lib/truncl.c: Likewise.
876         * lib/tsearch.c: Likewise.
877         * lib/unicodeio.c: Likewise.
878         * lib/unicodeio.h: Likewise.
879         * lib/unistd--.h: Likewise.
880         * lib/unistd-safer.h: Likewise.
881         * lib/unistdio/ulc-fprintf.c: Likewise.
882         * lib/unistdio/ulc-vfprintf.c: Likewise.
883         * lib/unlinkdir.c: Likewise.
884         * lib/unlinkdir.h: Likewise.
885         * lib/unlocked-io.h: Likewise.
886         * lib/unsetenv.c: Likewise.
887         * lib/userspec.c: Likewise.
888         * lib/utime.c: Likewise.
889         * lib/utimecmp.c: Likewise.
890         * lib/utimecmp.h: Likewise.
891         * lib/utimens.c: Likewise.
892         * lib/verify.h: Likewise.
893         * lib/verror.c: Likewise.
894         * lib/verror.h: Likewise.
895         * lib/version-etc-fsf.c: Likewise.
896         * lib/version-etc.c: Likewise.
897         * lib/version-etc.h: Likewise.
898         * lib/vfprintf.c: Likewise.
899         * lib/vprintf.c: Likewise.
900         * lib/vsprintf.c: Likewise.
901         * lib/w32spawn.h: Likewise.
902         * lib/wait-process.c: Likewise.
903         * lib/wait-process.h: Likewise.
904         * lib/wcwidth.c: Likewise.
905         * lib/write-any-file.c: Likewise.
906         * lib/xalloc-die.c: Likewise.
907         * lib/xalloc.h: Likewise.
908         * lib/xasprintf.c: Likewise.
909         * lib/xgetcwd.c: Likewise.
910         * lib/xgetcwd.h: Likewise.
911         * lib/xgetdomainname.c: Likewise.
912         * lib/xgetdomainname.h: Likewise.
913         * lib/xgethostname.c: Likewise.
914         * lib/xmalloc.c: Likewise.
915         * lib/xmalloca.c: Likewise.
916         * lib/xmalloca.h: Likewise.
917         * lib/xmemcoll.c: Likewise.
918         * lib/xnanosleep.c: Likewise.
919         * lib/xreadlink.c: Likewise.
920         * lib/xreadlink.h: Likewise.
921         * lib/xsetenv.c: Likewise.
922         * lib/xsetenv.h: Likewise.
923         * lib/xstriconv.c: Likewise.
924         * lib/xstriconv.h: Likewise.
925         * lib/xstrndup.c: Likewise.
926         * lib/xstrndup.h: Likewise.
927         * lib/xstrtod.c: Likewise.
928         * lib/xstrtod.h: Likewise.
929         * lib/xstrtol-error.c: Likewise.
930         * lib/xstrtol.c: Likewise.
931         * lib/xstrtol.h: Likewise.
932         * lib/xtime.h: Likewise.
933         * lib/xvasprintf.c: Likewise.
934         * lib/xvasprintf.h: Likewise.
935         * lib/yesno.c: Likewise.
936         * lib/yesno.h: Likewise.
937         * posix-modules: Likewise.
938         * tests/test-alloca-opt.c: Likewise.
939         * tests/test-arcfour.c: Likewise.
940         * tests/test-arctwo.c: Likewise.
941         * tests/test-argmatch.c: Likewise.
942         * tests/test-argp-2.sh: Likewise.
943         * tests/test-argp.c: Likewise.
944         * tests/test-arpa_inet.c: Likewise.
945         * tests/test-array_list.c: Likewise.
946         * tests/test-array_oset.c: Likewise.
947         * tests/test-atexit.c: Likewise.
948         * tests/test-avltree_list.c: Likewise.
949         * tests/test-avltree_oset.c: Likewise.
950         * tests/test-avltreehash_list.c: Likewise.
951         * tests/test-base64.c: Likewise.
952         * tests/test-binary-io.c: Likewise.
953         * tests/test-byteswap.c: Likewise.
954         * tests/test-c-ctype.c: Likewise.
955         * tests/test-c-strcasecmp.c: Likewise.
956         * tests/test-c-strcasestr.c: Likewise.
957         * tests/test-c-strncasecmp.c: Likewise.
958         * tests/test-c-strstr.c: Likewise.
959         * tests/test-canonicalize-lgpl.c: Likewise.
960         * tests/test-canonicalize.c: Likewise.
961         * tests/test-carray_list.c: Likewise.
962         * tests/test-ceilf.c: Likewise.
963         * tests/test-ceill.c: Likewise.
964         * tests/test-count-one-bits.c: Likewise.
965         * tests/test-crc.c: Likewise.
966         * tests/test-dirname.c: Likewise.
967         * tests/test-fbufmode.c: Likewise.
968         * tests/test-fcntl.c: Likewise.
969         * tests/test-fflush.c: Likewise.
970         * tests/test-floorf.c: Likewise.
971         * tests/test-floorl.c: Likewise.
972         * tests/test-fopen.c: Likewise.
973         * tests/test-fprintf-posix.c: Likewise.
974         * tests/test-fprintf-posix.h: Likewise.
975         * tests/test-fpurge.c: Likewise.
976         * tests/test-freadable.c: Likewise.
977         * tests/test-freadahead.c: Likewise.
978         * tests/test-freading.c: Likewise.
979         * tests/test-freopen.c: Likewise.
980         * tests/test-frexp.c: Likewise.
981         * tests/test-frexpl.c: Likewise.
982         * tests/test-fseek.c: Likewise.
983         * tests/test-fseeko.c: Likewise.
984         * tests/test-fseterr.c: Likewise.
985         * tests/test-fstrcmp.c: Likewise.
986         * tests/test-ftell.c: Likewise.
987         * tests/test-ftello.c: Likewise.
988         * tests/test-fwritable.c: Likewise.
989         * tests/test-fwriting.c: Likewise.
990         * tests/test-getaddrinfo.c: Likewise.
991         * tests/test-getpass.c: Likewise.
992         * tests/test-gettimeofday.c: Likewise.
993         * tests/test-hmac-md5.c: Likewise.
994         * tests/test-hmac-sha1.c: Likewise.
995         * tests/test-iconv.c: Likewise.
996         * tests/test-iconvme.c: Likewise.
997         * tests/test-inttypes.c: Likewise.
998         * tests/test-isnan.c: Likewise.
999         * tests/test-isnanf.c: Likewise.
1000         * tests/test-isnanl-nolibm.c: Likewise.
1001         * tests/test-isnanl.c: Likewise.
1002         * tests/test-isnanl.h: Likewise.
1003         * tests/test-ldexpl.c: Likewise.
1004         * tests/test-linked_list.c: Likewise.
1005         * tests/test-linkedhash_list.c: Likewise.
1006         * tests/test-locale.c: Likewise.
1007         * tests/test-localename.c: Likewise.
1008         * tests/test-lock.c: Likewise.
1009         * tests/test-lseek.c: Likewise.
1010         * tests/test-malloca.c: Likewise.
1011         * tests/test-math.c: Likewise.
1012         * tests/test-mbscasecmp.c: Likewise.
1013         * tests/test-mbscasestr1.c: Likewise.
1014         * tests/test-mbscasestr2.c: Likewise.
1015         * tests/test-mbscasestr3.c: Likewise.
1016         * tests/test-mbscasestr4.c: Likewise.
1017         * tests/test-mbschr.c: Likewise.
1018         * tests/test-mbscspn.c: Likewise.
1019         * tests/test-mbsncasecmp.c: Likewise.
1020         * tests/test-mbspbrk.c: Likewise.
1021         * tests/test-mbspcasecmp.c: Likewise.
1022         * tests/test-mbsrchr.c: Likewise.
1023         * tests/test-mbsspn.c: Likewise.
1024         * tests/test-mbsstr1.c: Likewise.
1025         * tests/test-mbsstr2.c: Likewise.
1026         * tests/test-mbsstr3.c: Likewise.
1027         * tests/test-md5.c: Likewise.
1028         * tests/test-memmem.c: Likewise.
1029         * tests/test-netinet_in.c: Likewise.
1030         * tests/test-open.c: Likewise.
1031         * tests/test-printf-frexp.c: Likewise.
1032         * tests/test-printf-frexpl.c: Likewise.
1033         * tests/test-printf-posix.c: Likewise.
1034         * tests/test-printf-posix.h: Likewise.
1035         * tests/test-rbtree_list.c: Likewise.
1036         * tests/test-rbtree_oset.c: Likewise.
1037         * tests/test-rbtreehash_list.c: Likewise.
1038         * tests/test-read-file.c: Likewise.
1039         * tests/test-rijndael.c: Likewise.
1040         * tests/test-search.c: Likewise.
1041         * tests/test-signbit.c: Likewise.
1042         * tests/test-sleep.c: Likewise.
1043         * tests/test-snprintf-posix.c: Likewise.
1044         * tests/test-snprintf-posix.h: Likewise.
1045         * tests/test-snprintf.c: Likewise.
1046         * tests/test-sprintf-posix.c: Likewise.
1047         * tests/test-sprintf-posix.h: Likewise.
1048         * tests/test-stat-time.c: Likewise.
1049         * tests/test-stdbool.c: Likewise.
1050         * tests/test-stdint.c: Likewise.
1051         * tests/test-stdio.c: Likewise.
1052         * tests/test-stdlib.c: Likewise.
1053         * tests/test-stpncpy.c: Likewise.
1054         * tests/test-strcasestr.c: Likewise.
1055         * tests/test-striconv.c: Likewise.
1056         * tests/test-striconveh.c: Likewise.
1057         * tests/test-striconveha.c: Likewise.
1058         * tests/test-string.c: Likewise.
1059         * tests/test-sys_select.c: Likewise.
1060         * tests/test-sys_socket.c: Likewise.
1061         * tests/test-sys_stat.c: Likewise.
1062         * tests/test-sys_time.c: Likewise.
1063         * tests/test-sysexits.c: Likewise.
1064         * tests/test-time.c: Likewise.
1065         * tests/test-tls.c: Likewise.
1066         * tests/test-trunc.c: Likewise.
1067         * tests/test-truncf.c: Likewise.
1068         * tests/test-truncl.c: Likewise.
1069         * tests/test-unistd.c: Likewise.
1070         * tests/test-vasnprintf-posix.c: Likewise.
1071         * tests/test-vasnprintf-posix2.c: Likewise.
1072         * tests/test-vasnprintf.c: Likewise.
1073         * tests/test-vasprintf-posix.c: Likewise.
1074         * tests/test-vasprintf.c: Likewise.
1075         * tests/test-verify.c: Likewise.
1076         * tests/test-vfprintf-posix.c: Likewise.
1077         * tests/test-vprintf-posix.c: Likewise.
1078         * tests/test-vsnprintf-posix.c: Likewise.
1079         * tests/test-vsnprintf.c: Likewise.
1080         * tests/test-vsprintf-posix.c: Likewise.
1081         * tests/test-wchar.c: Likewise.
1082         * tests/test-wctype.c: Likewise.
1083         * tests/test-wcwidth.c: Likewise.
1084         * tests/test-xstrtol.c: Likewise.
1085         * tests/test-xvasprintf.c: Likewise.
1086         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
1087         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
1088         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
1089         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
1090         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
1091         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
1092         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
1093         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
1094         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
1095         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
1096         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
1097         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
1098         * tests/uniname/test-uninames.c: Likewise.
1099         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
1100         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
1101         * tests/unistdio/test-u16-printf1.h: Likewise.
1102         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
1103         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
1104         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
1105         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
1106         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
1107         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
1108         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
1109         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
1110         * tests/unistdio/test-u32-printf1.h: Likewise.
1111         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
1112         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
1113         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
1114         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
1115         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
1116         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
1117         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
1118         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
1119         * tests/unistdio/test-u8-printf1.h: Likewise.
1120         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
1121         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
1122         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
1123         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
1124         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
1125         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
1126         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
1127         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
1128         * tests/unistdio/test-ulc-printf1.h: Likewise.
1129         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
1130         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
1131         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
1132         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
1133         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
1134         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
1135         * tests/uniwidth/test-u16-strwidth.c: Likewise.
1136         * tests/uniwidth/test-u16-width.c: Likewise.
1137         * tests/uniwidth/test-u32-strwidth.c: Likewise.
1138         * tests/uniwidth/test-u32-width.c: Likewise.
1139         * tests/uniwidth/test-u8-strwidth.c: Likewise.
1140         * tests/uniwidth/test-u8-width.c: Likewise.
1141         * tests/uniwidth/test-uc_width.c: Likewise.
1142         * config/srclist-update: Likewise.
1143         (fixlicense): Update to GPLv3+.
1144
1145         Change copyright notice from LGPLv2.1+ to LGPLv3+.
1146         * tests/test-tsearch.c: Change copyright notice.
1147
1148         Change copyright notice from LGPLv2.0+ to LGPLv3+.
1149         * lib/c-strcaseeq.h: Change copyright notice.
1150         * lib/streq.h: Likewise.
1151         * lib/uniconv.h: Likewise.
1152         * lib/uniconv/u-conv-from-enc.h: Likewise.
1153         * lib/uniconv/u-conv-to-enc.h: Likewise.
1154         * lib/uniconv/u-strconv-from-enc.h: Likewise.
1155         * lib/uniconv/u-strconv-to-enc.h: Likewise.
1156         * lib/uniconv/u16-conv-from-enc.c: Likewise.
1157         * lib/uniconv/u16-conv-to-enc.c: Likewise.
1158         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
1159         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
1160         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
1161         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
1162         * lib/uniconv/u32-conv-from-enc.c: Likewise.
1163         * lib/uniconv/u32-conv-to-enc.c: Likewise.
1164         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
1165         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
1166         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
1167         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
1168         * lib/uniconv/u8-conv-from-enc.c: Likewise.
1169         * lib/uniconv/u8-conv-to-enc.c: Likewise.
1170         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
1171         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
1172         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
1173         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
1174         * lib/uniname.h: Likewise.
1175         * lib/uniname/uniname.c: Likewise.
1176         * lib/unistdio.h: Likewise.
1177         * lib/unistdio/u-asnprintf.h: Likewise.
1178         * lib/unistdio/u-asprintf.h: Likewise.
1179         * lib/unistdio/u-printf-args.c: Likewise.
1180         * lib/unistdio/u-printf-args.h: Likewise.
1181         * lib/unistdio/u-printf-parse.h: Likewise.
1182         * lib/unistdio/u-snprintf.h: Likewise.
1183         * lib/unistdio/u-sprintf.h: Likewise.
1184         * lib/unistdio/u-vasprintf.h: Likewise.
1185         * lib/unistdio/u-vsnprintf.h: Likewise.
1186         * lib/unistdio/u-vsprintf.h: Likewise.
1187         * lib/unistdio/u16-asnprintf.c: Likewise.
1188         * lib/unistdio/u16-asprintf.c: Likewise.
1189         * lib/unistdio/u16-printf-parse.c: Likewise.
1190         * lib/unistdio/u16-snprintf.c: Likewise.
1191         * lib/unistdio/u16-sprintf.c: Likewise.
1192         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
1193         * lib/unistdio/u16-u16-asprintf.c: Likewise.
1194         * lib/unistdio/u16-u16-snprintf.c: Likewise.
1195         * lib/unistdio/u16-u16-sprintf.c: Likewise.
1196         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
1197         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
1198         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
1199         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
1200         * lib/unistdio/u16-vasnprintf.c: Likewise.
1201         * lib/unistdio/u16-vasprintf.c: Likewise.
1202         * lib/unistdio/u16-vsnprintf.c: Likewise.
1203         * lib/unistdio/u16-vsprintf.c: Likewise.
1204         * lib/unistdio/u32-asnprintf.c: Likewise.
1205         * lib/unistdio/u32-asprintf.c: Likewise.
1206         * lib/unistdio/u32-printf-parse.c: Likewise.
1207         * lib/unistdio/u32-snprintf.c: Likewise.
1208         * lib/unistdio/u32-sprintf.c: Likewise.
1209         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
1210         * lib/unistdio/u32-u32-asprintf.c: Likewise.
1211         * lib/unistdio/u32-u32-snprintf.c: Likewise.
1212         * lib/unistdio/u32-u32-sprintf.c: Likewise.
1213         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
1214         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
1215         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
1216         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
1217         * lib/unistdio/u32-vasnprintf.c: Likewise.
1218         * lib/unistdio/u32-vasprintf.c: Likewise.
1219         * lib/unistdio/u32-vsnprintf.c: Likewise.
1220         * lib/unistdio/u32-vsprintf.c: Likewise.
1221         * lib/unistdio/u8-asnprintf.c: Likewise.
1222         * lib/unistdio/u8-asprintf.c: Likewise.
1223         * lib/unistdio/u8-printf-parse.c: Likewise.
1224         * lib/unistdio/u8-snprintf.c: Likewise.
1225         * lib/unistdio/u8-sprintf.c: Likewise.
1226         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
1227         * lib/unistdio/u8-u8-asprintf.c: Likewise.
1228         * lib/unistdio/u8-u8-snprintf.c: Likewise.
1229         * lib/unistdio/u8-u8-sprintf.c: Likewise.
1230         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
1231         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
1232         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
1233         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
1234         * lib/unistdio/u8-vasnprintf.c: Likewise.
1235         * lib/unistdio/u8-vasprintf.c: Likewise.
1236         * lib/unistdio/u8-vsnprintf.c: Likewise.
1237         * lib/unistdio/u8-vsprintf.c: Likewise.
1238         * lib/unistdio/ulc-asnprintf.c: Likewise.
1239         * lib/unistdio/ulc-asprintf.c: Likewise.
1240         * lib/unistdio/ulc-printf-parse.c: Likewise.
1241         * lib/unistdio/ulc-snprintf.c: Likewise.
1242         * lib/unistdio/ulc-sprintf.c: Likewise.
1243         * lib/unistdio/ulc-vasnprintf.c: Likewise.
1244         * lib/unistdio/ulc-vasprintf.c: Likewise.
1245         * lib/unistdio/ulc-vsnprintf.c: Likewise.
1246         * lib/unistdio/ulc-vsprintf.c: Likewise.
1247         * lib/unistr.h: Likewise.
1248         * lib/unistr/u-cpy-alloc.h: Likewise.
1249         * lib/unistr/u-cpy.h: Likewise.
1250         * lib/unistr/u-endswith.h: Likewise.
1251         * lib/unistr/u-move.h: Likewise.
1252         * lib/unistr/u-set.h: Likewise.
1253         * lib/unistr/u-startswith.h: Likewise.
1254         * lib/unistr/u-stpcpy.h: Likewise.
1255         * lib/unistr/u-stpncpy.h: Likewise.
1256         * lib/unistr/u-strcat.h: Likewise.
1257         * lib/unistr/u-strcpy.h: Likewise.
1258         * lib/unistr/u-strcspn.h: Likewise.
1259         * lib/unistr/u-strdup.h: Likewise.
1260         * lib/unistr/u-strlen.h: Likewise.
1261         * lib/unistr/u-strncat.h: Likewise.
1262         * lib/unistr/u-strncpy.h: Likewise.
1263         * lib/unistr/u-strnlen.h: Likewise.
1264         * lib/unistr/u-strpbrk.h: Likewise.
1265         * lib/unistr/u-strspn.h: Likewise.
1266         * lib/unistr/u-strstr.h: Likewise.
1267         * lib/unistr/u-strtok.h: Likewise.
1268         * lib/unistr/u16-check.c: Likewise.
1269         * lib/unistr/u16-chr.c: Likewise.
1270         * lib/unistr/u16-cmp.c: Likewise.
1271         * lib/unistr/u16-cpy-alloc.c: Likewise.
1272         * lib/unistr/u16-cpy.c: Likewise.
1273         * lib/unistr/u16-endswith.c: Likewise.
1274         * lib/unistr/u16-mblen.c: Likewise.
1275         * lib/unistr/u16-mbsnlen.c: Likewise.
1276         * lib/unistr/u16-mbtouc-aux.c: Likewise.
1277         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
1278         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
1279         * lib/unistr/u16-mbtouc.c: Likewise.
1280         * lib/unistr/u16-mbtoucr.c: Likewise.
1281         * lib/unistr/u16-move.c: Likewise.
1282         * lib/unistr/u16-next.c: Likewise.
1283         * lib/unistr/u16-prev.c: Likewise.
1284         * lib/unistr/u16-set.c: Likewise.
1285         * lib/unistr/u16-startswith.c: Likewise.
1286         * lib/unistr/u16-stpcpy.c: Likewise.
1287         * lib/unistr/u16-stpncpy.c: Likewise.
1288         * lib/unistr/u16-strcat.c: Likewise.
1289         * lib/unistr/u16-strchr.c: Likewise.
1290         * lib/unistr/u16-strcmp.c: Likewise.
1291         * lib/unistr/u16-strcpy.c: Likewise.
1292         * lib/unistr/u16-strcspn.c: Likewise.
1293         * lib/unistr/u16-strdup.c: Likewise.
1294         * lib/unistr/u16-strlen.c: Likewise.
1295         * lib/unistr/u16-strmblen.c: Likewise.
1296         * lib/unistr/u16-strmbtouc.c: Likewise.
1297         * lib/unistr/u16-strncat.c: Likewise.
1298         * lib/unistr/u16-strncmp.c: Likewise.
1299         * lib/unistr/u16-strncpy.c: Likewise.
1300         * lib/unistr/u16-strnlen.c: Likewise.
1301         * lib/unistr/u16-strpbrk.c: Likewise.
1302         * lib/unistr/u16-strrchr.c: Likewise.
1303         * lib/unistr/u16-strspn.c: Likewise.
1304         * lib/unistr/u16-strstr.c: Likewise.
1305         * lib/unistr/u16-strtok.c: Likewise.
1306         * lib/unistr/u16-to-u32.c: Likewise.
1307         * lib/unistr/u16-to-u8.c: Likewise.
1308         * lib/unistr/u16-uctomb-aux.c: Likewise.
1309         * lib/unistr/u16-uctomb.c: Likewise.
1310         * lib/unistr/u32-check.c: Likewise.
1311         * lib/unistr/u32-chr.c: Likewise.
1312         * lib/unistr/u32-cmp.c: Likewise.
1313         * lib/unistr/u32-cpy-alloc.c: Likewise.
1314         * lib/unistr/u32-cpy.c: Likewise.
1315         * lib/unistr/u32-endswith.c: Likewise.
1316         * lib/unistr/u32-mblen.c: Likewise.
1317         * lib/unistr/u32-mbsnlen.c: Likewise.
1318         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
1319         * lib/unistr/u32-mbtouc.c: Likewise.
1320         * lib/unistr/u32-mbtoucr.c: Likewise.
1321         * lib/unistr/u32-move.c: Likewise.
1322         * lib/unistr/u32-next.c: Likewise.
1323         * lib/unistr/u32-prev.c: Likewise.
1324         * lib/unistr/u32-set.c: Likewise.
1325         * lib/unistr/u32-startswith.c: Likewise.
1326         * lib/unistr/u32-stpcpy.c: Likewise.
1327         * lib/unistr/u32-stpncpy.c: Likewise.
1328         * lib/unistr/u32-strcat.c: Likewise.
1329         * lib/unistr/u32-strchr.c: Likewise.
1330         * lib/unistr/u32-strcmp.c: Likewise.
1331         * lib/unistr/u32-strcpy.c: Likewise.
1332         * lib/unistr/u32-strcspn.c: Likewise.
1333         * lib/unistr/u32-strdup.c: Likewise.
1334         * lib/unistr/u32-strlen.c: Likewise.
1335         * lib/unistr/u32-strmblen.c: Likewise.
1336         * lib/unistr/u32-strmbtouc.c: Likewise.
1337         * lib/unistr/u32-strncat.c: Likewise.
1338         * lib/unistr/u32-strncmp.c: Likewise.
1339         * lib/unistr/u32-strncpy.c: Likewise.
1340         * lib/unistr/u32-strnlen.c: Likewise.
1341         * lib/unistr/u32-strpbrk.c: Likewise.
1342         * lib/unistr/u32-strrchr.c: Likewise.
1343         * lib/unistr/u32-strspn.c: Likewise.
1344         * lib/unistr/u32-strstr.c: Likewise.
1345         * lib/unistr/u32-strtok.c: Likewise.
1346         * lib/unistr/u32-to-u16.c: Likewise.
1347         * lib/unistr/u32-to-u8.c: Likewise.
1348         * lib/unistr/u32-uctomb.c: Likewise.
1349         * lib/unistr/u8-check.c: Likewise.
1350         * lib/unistr/u8-chr.c: Likewise.
1351         * lib/unistr/u8-cmp.c: Likewise.
1352         * lib/unistr/u8-cpy-alloc.c: Likewise.
1353         * lib/unistr/u8-cpy.c: Likewise.
1354         * lib/unistr/u8-endswith.c: Likewise.
1355         * lib/unistr/u8-mblen.c: Likewise.
1356         * lib/unistr/u8-mbsnlen.c: Likewise.
1357         * lib/unistr/u8-mbtouc-aux.c: Likewise.
1358         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
1359         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
1360         * lib/unistr/u8-mbtouc.c: Likewise.
1361         * lib/unistr/u8-mbtoucr.c: Likewise.
1362         * lib/unistr/u8-move.c: Likewise.
1363         * lib/unistr/u8-next.c: Likewise.
1364         * lib/unistr/u8-prev.c: Likewise.
1365         * lib/unistr/u8-set.c: Likewise.
1366         * lib/unistr/u8-startswith.c: Likewise.
1367         * lib/unistr/u8-stpcpy.c: Likewise.
1368         * lib/unistr/u8-stpncpy.c: Likewise.
1369         * lib/unistr/u8-strcat.c: Likewise.
1370         * lib/unistr/u8-strchr.c: Likewise.
1371         * lib/unistr/u8-strcmp.c: Likewise.
1372         * lib/unistr/u8-strcpy.c: Likewise.
1373         * lib/unistr/u8-strcspn.c: Likewise.
1374         * lib/unistr/u8-strdup.c: Likewise.
1375         * lib/unistr/u8-strlen.c: Likewise.
1376         * lib/unistr/u8-strmblen.c: Likewise.
1377         * lib/unistr/u8-strmbtouc.c: Likewise.
1378         * lib/unistr/u8-strncat.c: Likewise.
1379         * lib/unistr/u8-strncmp.c: Likewise.
1380         * lib/unistr/u8-strncpy.c: Likewise.
1381         * lib/unistr/u8-strnlen.c: Likewise.
1382         * lib/unistr/u8-strpbrk.c: Likewise.
1383         * lib/unistr/u8-strrchr.c: Likewise.
1384         * lib/unistr/u8-strspn.c: Likewise.
1385         * lib/unistr/u8-strstr.c: Likewise.
1386         * lib/unistr/u8-strtok.c: Likewise.
1387         * lib/unistr/u8-to-u16.c: Likewise.
1388         * lib/unistr/u8-to-u32.c: Likewise.
1389         * lib/unistr/u8-uctomb-aux.c: Likewise.
1390         * lib/unistr/u8-uctomb.c: Likewise.
1391         * lib/unitypes.h: Likewise.
1392         * lib/uniwidth.h: Likewise.
1393         * lib/uniwidth/cjk.h: Likewise.
1394         * lib/uniwidth/u16-strwidth.c: Likewise.
1395         * lib/uniwidth/u16-width.c: Likewise.
1396         * lib/uniwidth/u32-strwidth.c: Likewise.
1397         * lib/uniwidth/u32-width.c: Likewise.
1398         * lib/uniwidth/u8-strwidth.c: Likewise.
1399         * lib/uniwidth/u8-width.c: Likewise.
1400         * lib/uniwidth/width.c: Likewise.
1401
1402 2007-10-07  Bruno Haible  <bruno@clisp.org>
1403
1404         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
1405         The file is still under LGPL (see modules/inttypes).
1406
1407 2007-10-06  Bruno Haible  <bruno@clisp.org>
1408
1409         * modules/trunc (Dependencies): Add 'extensions'.
1410         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
1411         Reported by Ben Pfaff <blp@gnu.org>.
1412
1413 2007-10-06  Bruno Haible  <bruno@clisp.org>
1414
1415         * modules/freopen-tests: New file.
1416         * tests/test-freopen.c: New file.
1417
1418         * modules/fopen-tests: New file.
1419         * tests/test-fopen.c: New file.
1420
1421         * modules/fopen: New file.
1422         * lib/fopen.c: New file.
1423         * m4/fopen.m4: New file.
1424         * modules/freopen: New file.
1425         * lib/freopen.c: New file.
1426         * m4/freopen.m4: New file.
1427         * lib/stdio.in.h (fopen, freopen): New declarations.
1428         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
1429         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
1430         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
1431         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
1432         * doc/functions/fopen.texi: Mention the 'fopen' module.
1433         * doc/functions/freopen.texi: Mention the 'freopen' module.
1434
1435 2007-10-06  Bruno Haible  <bruno@clisp.org>
1436
1437         * modules/open-tests: New file.
1438         * tests/test-open.c: New file.
1439
1440         * modules/open: New file.
1441         * lib/open.c: New file.
1442         * m4/open.m4: New file.
1443         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
1444         lib/open.c does.
1445         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
1446         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
1447         macros.
1448         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
1449         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
1450         REPLACE_OPEN.
1451         * doc/functions/open.texi: Mention the 'open' module.
1452
1453 2007-10-04  Bruno Haible  <bruno@clisp.org>
1454
1455         * modules/ceill-tests: New file.
1456         * tests/test-ceill.c: New file.
1457
1458         * modules/ceill: New file.
1459         * lib/ceill.c: Replace entire file.
1460         * m4/ceill.m4: New file.
1461         * lib/math.in.h (ceill): Replace declaration.
1462         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
1463         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
1464         * doc/functions/ceill.texi: Mention the 'ceill' module.
1465         * modules/mathl (Files): Remove lib/ceill.c.
1466         (Depends-on): Add ceill.
1467
1468 2007-10-04  Bruno Haible  <bruno@clisp.org>
1469
1470         * modules/ceilf-tests: New file.
1471         * tests/test-ceilf.c: New file.
1472
1473         * modules/ceilf: New file.
1474         * lib/ceil.c: New file.
1475         * lib/ceilf.c: New file.
1476         * m4/ceilf.m4: New file.
1477         * lib/math.in.h (ceilf): New declaration.
1478         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
1479         HAVE_DECL_CEILF.
1480         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
1481         HAVE_DECL_CEILF.
1482         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
1483
1484 2007-10-04  Bruno Haible  <bruno@clisp.org>
1485
1486         * modules/floorl-tests: New file.
1487         * tests/test-floorl.c: New file.
1488
1489         * modules/floorl: New file.
1490         * lib/floorl.c: Replace entire file.
1491         * m4/floorl.m4: New file.
1492         * lib/math.in.h (floorl): Replace declaration.
1493         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
1494         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
1495         * doc/functions/floorl.texi: Mention the 'floorl' module.
1496         * modules/mathl (Files): Remove lib/floorl.c.
1497         (Depends-on): Add floorl.
1498
1499 2007-10-04  Bruno Haible  <bruno@clisp.org>
1500
1501         * modules/floorf-tests: New file.
1502         * tests/test-floorf.c: New file.
1503
1504         * modules/floorf: New file.
1505         * lib/floor.c: New file.
1506         * lib/floorf.c: New file.
1507         * m4/floorf.m4: New file.
1508         * lib/math.in.h (floorf): New declaration.
1509         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
1510         HAVE_DECL_FLOORF.
1511         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
1512         HAVE_DECL_FLOORF.
1513         * doc/functions/floorf.texi: Mention the 'floorf' module.
1514
1515 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
1516             Bruno Haible  <bruno@clisp.org>
1517
1518         Advertise for the Git server instead of the CVS server.
1519         * doc/gnulib-intro.texi (Steady Development): Mention the Git
1520         repository instead of the CVS one.
1521         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
1522         about all VCS systems generically.
1523         * doc/gnulib.texi (Introduction): Capitalize `Git'.
1524
1525 2007-10-04  Bruno Haible  <bruno@clisp.org>
1526
1527         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
1528         means.
1529         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
1530
1531 2007-10-04  Bruno Haible  <bruno@clisp.org>
1532
1533         * modules/truncl-tests: New file.
1534         * tests/test-truncl.c: New file.
1535
1536         * modules/truncl: New file.
1537         * lib/truncl.c: New file.
1538         * m4/truncl.m4: New file.
1539         * lib/math.in.h (truncl): New declaration.
1540         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
1541         HAVE_DECL_TRUNCL.
1542         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
1543         HAVE_DECL_TRUNCL.
1544         * doc/functions/truncl.texi: Mention the 'truncl' module.
1545
1546 2007-10-04  Bruno Haible  <bruno@clisp.org>
1547
1548         * modules/truncf-tests: New file.
1549         * tests/test-truncf.c: New file.
1550
1551         * modules/truncf: New file.
1552         * lib/trunc.c: Make paramerizable through USE_* macros.
1553         * lib/truncf.c: New file.
1554         * m4/truncf.m4: New file.
1555         * lib/math.in.h (truncf): New declaration.
1556         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
1557         HAVE_DECL_TRUNCF.
1558         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
1559         HAVE_DECL_TRUNCF.
1560         * doc/functions/truncf.texi: Mention the 'truncf' module.
1561
1562 2007-10-03  Bruno Haible  <bruno@clisp.org>
1563
1564         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
1565         augmentation also for tests modules.
1566         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
1567         * modules/atexit-tests (Makefile.am): Likewise.
1568         * modules/binary-io-tests (Makefile.am): Likewise.
1569         * modules/c-strcase-tests (Makefile.am): Likewise.
1570         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
1571         * modules/canonicalize-tests (Makefile.am): Likewise.
1572         * modules/closein-tests (Makefile.am): Likewise.
1573         * modules/fprintf-posix-tests (Makefile.am): Likewise.
1574         * modules/freadahead-tests (Makefile.am): Likewise.
1575         * modules/fseek-tests (Makefile.am): Likewise.
1576         * modules/fseeko-tests (Makefile.am): Likewise.
1577         * modules/ftell-tests (Makefile.am): Likewise.
1578         * modules/ftello-tests (Makefile.am): Likewise.
1579         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
1580         * modules/isnanl-tests (Makefile.am): Likewise.
1581         * modules/lseek-tests (Makefile.am): Likewise.
1582         * modules/mbscasecmp-tests (Makefile.am): Likewise.
1583         * modules/mbscasestr-tests (Makefile.am): Likewise.
1584         * modules/mbschr-tests (Makefile.am): Likewise.
1585         * modules/mbscspn-tests (Makefile.am): Likewise.
1586         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
1587         * modules/mbspbrk-tests (Makefile.am): Likewise.
1588         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
1589         * modules/mbsrchr-tests (Makefile.am): Likewise.
1590         * modules/mbsspn-tests (Makefile.am): Likewise.
1591         * modules/mbsstr-tests (Makefile.am): Likewise.
1592         * modules/printf-posix-tests (Makefile.am): Likewise.
1593         * modules/snprintf-posix-tests (Makefile.am): Likewise.
1594         * modules/sprintf-posix-tests (Makefile.am): Likewise.
1595         * modules/tsearch-tests (Makefile.am): Likewise.
1596         * modules/uniname/uniname-tests (Makefile.am): Likewise.
1597         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
1598         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
1599         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
1600         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
1601         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
1602         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
1603         * modules/vprintf-posix-tests (Makefile.am): Likewise.
1604         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
1605         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
1606         * modules/xstrtoimax-tests (Makefile.am): Likewise.
1607         * modules/xstrtol-tests (Makefile.am): Likewise.
1608         * modules/xstrtoumax-tests (Makefile.am): Likewise.
1609         * modules/yesno-tests (Makefile.am): Likewise.
1610
1611 2007-10-03  Bruno Haible  <bruno@clisp.org>
1612
1613         * modules/trunc-tests: New file.
1614         * tests/test-trunc.c: New file.
1615
1616         * modules/trunc: New file.
1617         * lib/trunc.c: New file.
1618         * m4/trunc.m4: New file.
1619         * lib/math.in.h (trunc): New declaration.
1620         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
1621         HAVE_DECL_TRUNC.
1622         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
1623         HAVE_DECL_TRUNC.
1624         * doc/functions/trunc.texi: Mention the 'trunc' module.
1625
1626 2007-10-03  Bruno Haible  <bruno@clisp.org>
1627
1628         * tests/test-fpending.c: New file, mostly copied
1629         from coreutils/lib/t-fpending.c.
1630         * modules/fpending-tests: New file.
1631
1632 2007-10-03  Bruno Haible  <bruno@clisp.org>
1633
1634         Port the stdio extensions to QNX (untested).
1635         * lib/fseterr.c (fseterr): Add support for QNX.
1636         * lib/fbufmode.c (fbufmode): Likewise.
1637         * lib/freadable.c (freadable): Likewise.
1638         * lib/fwritable.c (fwritable): Likewise.
1639         * lib/freading.c (freading): Likewise.
1640         * lib/fwriting.c (fwriting): Likewise.
1641         * lib/freadahead.c (freadahed): Likewise.
1642         * lib/fpurge.c (fpurge): Likewise.
1643         * lib/fseeko.c (rpl_fseeko): Likewise.
1644
1645 2007-10-03  Bruno Haible  <bruno@clisp.org>
1646             Jim Meyering  <jim@meyering.net>
1647             Eric Blake  <ebb9@byu.net>
1648
1649         * doc/relocatable.texi: Use @command instead of @program.
1650
1651 2007-10-02  Jim Meyering  <jim@meyering.net>
1652
1653         Perform one more "_.h" -> ".in.h" substitution.
1654         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
1655         instead of unistd_.h here, too.
1656
1657 2007-10-01  Bruno Haible  <bruno@clisp.org>
1658
1659         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
1660         Needed for the alloca-opt module.
1661
1662 2007-09-30  Bruno Haible  <bruno@clisp.org>
1663
1664         * lib/alloca.in.h: Renamed from lib/alloca_.h.
1665         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
1666         alloca_.h.
1667         * lib/argz.in.h: Renamed from lib/argz_.h.
1668         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
1669         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
1670         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
1671         byteswap_.h.
1672         * lib/dirent.in.h: Renamed from lib/dirent_.h.
1673         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
1674         dirent_.h.
1675         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
1676         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
1677         fcntl_.h.
1678         * lib/float.in.h: Renamed from lib/float_.h.
1679         * modules/float (Files, Makefile.am): Use float.in.h instead of
1680         float_.h.
1681         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
1682         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
1683         fnmatch_.h.
1684         * lib/getopt.in.h: Renamed from lib/getopt_.h.
1685         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
1686         getopt_.h.
1687         * lib/glob.in.h: Renamed from lib/glob_.h.
1688         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
1689         * lib/iconv.in.h: Renamed from lib/iconv_.h.
1690         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
1691         iconv_.h.
1692         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
1693         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
1694         inttypes_.h.
1695         * lib/locale.in.h: Renamed from lib/locale_.h.
1696         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
1697         locale_.h.
1698         * lib/math.in.h: Renamed from lib/math_.h.
1699         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
1700         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
1701         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
1702         of netinet_in_.h. Add dependency.
1703         * lib/poll.in.h: Renamed from lib/poll_.h.
1704         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
1705         * lib/search.in.h: Renamed from lib/search_.h.
1706         * modules/search (Files, Makefile.am): Use search.in.h instead of
1707         search_.h.
1708         * lib/signal.in.h: Renamed from lib/signal_.h.
1709         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
1710         _signal.h.
1711         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
1712         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
1713         stdbool_.h.
1714         * lib/stdint.in.h: Renamed from lib/stdint_.h.
1715         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
1716         stdint_.h.
1717         * lib/stdio.in.h: Renamed from lib/stdio_.h.
1718         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
1719         stdio_.h.
1720         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
1721         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
1722         stdlib_.h.
1723         * lib/string.in.h: Renamed from lib/string_.h.
1724         * modules/string (Files, Makefile.am): Use string.in.h instead of
1725         string_.h.
1726         * doc/gnulib-tool.texi (Initial import): Update.
1727         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
1728         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
1729         of sys_select_.h. Add dependency.
1730         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
1731         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
1732         of sys_socket_.h.
1733         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
1734         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
1735         sys_stat_.h.
1736         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
1737         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
1738         sys_time_.h.
1739         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
1740         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
1741         sysexits_.h.
1742         * lib/time.in.h: Renamed from lib/time_.h.
1743         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
1744         * lib/unistd.in.h: Renamed from lib/unistd_.h.
1745         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
1746         unistd_.h.
1747         * lib/wchar.in.h: Renamed from lib/wchar_.h.
1748         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
1749         wchar_.h.
1750         * lib/wctype.in.h: Renamed from lib/wctype_.h.
1751         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
1752         wctype_.h.
1753         * build-aux/bootstrap (slurp): Update.
1754         * lib/.cppi-disable: Update.
1755
1756 2007-09-30  Bruno Haible  <bruno@clisp.org>
1757
1758         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
1759         Needed on BeOS.
1760
1761 2007-09-30  Bruno Haible  <bruno@clisp.org>
1762
1763         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
1764
1765 2007-09-29  Bruno Haible  <bruno@clisp.org>
1766
1767         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
1768
1769 2007-09-29  Bruno Haible  <bruno@clisp.org>
1770
1771         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
1772         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
1773         * build-aux/install-reloc: Compile also areadlink.c.
1774         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
1775
1776 2007-09-29  Bruno Haible  <bruno@clisp.org>
1777
1778         * gnulib-tool (func_emit_initmacro_done): Indentation.
1779
1780 2007-09-29  Bruno Haible  <bruno@clisp.org>
1781
1782         * README: Add CVS checkout update instructions.
1783         Info from Bob Proulx <bob@proulx.com>.
1784
1785 2007-09-28  Eric Blake  <ebb9@byu.net>
1786
1787         Provide move-if-change.
1788         * build-aux/move-if-change: New file, based on best practice
1789         rather than any canonical upstream location.
1790
1791 2007-09-28  Jim Meyering  <jim@meyering.net>
1792
1793         Fix canonicalize loop-detection corner case.
1794         Do not attempt to stat the symlink values stored via seen_triple.
1795         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
1796         on linux-2.6.18, (but not 2.6.22).
1797         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
1798         triple_compare.  The former compares dev,ino,filename, while the latter
1799         would actually stat dirname(filename) when dev and ino were equal.
1800         * lib/hash-triple.c: Install <string.h>.
1801         (STREQ): Define.
1802         (triple_compare_ino_str): New function.
1803         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
1804
1805 2007-09-28  Eric Blake  <ebb9@byu.net>
1806
1807         Enforce that AC_REPLACE_FUNCS files exist.
1808         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
1809         override check for typos.
1810
1811         Fix test-closein on Solaris 10.
1812         * tests/test-closein.c (main): Don't assume stdin can be inherited
1813         closed on all systems.
1814         * tests/test-closein.sh: Likewise.
1815         Reported by Piotr Tarnowski.
1816
1817 2007-09-28  Jim Meyering  <jim@meyering.net>
1818
1819         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
1820
1821 2007-09-27  Jim Meyering  <jim@meyering.net>
1822
1823         canonicalize: Avoid a false-positive cycle failure.
1824         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
1825         Sort.  Remove cycle-check.
1826         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
1827         not cycle-check.h.
1828         (seen_triple): New function.
1829         (canonicalize_filename_mode): Use it instead of cycle-check.
1830         * tests/test-canonicalize.c: Add a test for this bug.
1831         * tests/test-canonicalize.sh: Set up and run the test.
1832
1833         New module, file-set, from coreutils.
1834         * modules/file-set: Define it.
1835         * lib/file-set.c, lib/file-set.h: Implement.
1836
1837         New module, hash-triple, from coreutils.
1838         * modules/hash-triple: Define it.
1839         * lib/hash-triple.c, lib/hash-triple.h: Implement.
1840
1841 2007-09-25  Eric Blake  <ebb9@byu.net>
1842
1843         Fix strerror on Interix.
1844         * lib/string_.h (strerror): Declare replacement.
1845         * doc/functions/strerror.texi (strerror): Document the Interix
1846         shortcoming.
1847         * modules/string (Makefile.am): Support new hooks.
1848         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
1849         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
1850         gl_FUNC_STRERROR_SEPARATE.
1851         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
1852         * lib/strerror.c (rpl_strerror): Provide replacement.
1853         * modules/strerror (Depends-on): Add string.
1854         (configure.ac): Detect use of module.
1855         * tests/test-strerror.c: New file.
1856         * modules/strerror-tests: New test module.
1857         * modules/argp (Depends-on): Add strerror.
1858         * modules/error (Depends-on): Likewise.
1859         Reported by Martin Koeppe.
1860
1861 2007-09-24  Bruno Haible  <bruno@clisp.org>
1862
1863         * README: Update git instructions.
1864
1865 2007-09-24  Eric Blake  <ebb9@byu.net>
1866
1867         Revert fpending breakage from 2007-09-08.
1868         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
1869         __fpending.c.
1870
1871 2007-09-24  Jim Meyering  <jim@meyering.net>
1872
1873         filenamecat.c: Add a test.
1874         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
1875         showing how the function works when DIR is the empty string.
1876
1877 2007-09-21  Simon Josefsson  <simon@josefsson.org>
1878
1879         * tests/test-canonicalize.sh: Turn on executable bit.
1880
1881 2007-09-19  Eric Blake  <ebb9@byu.net>
1882
1883         * README: Update CVS instructions.
1884
1885 2007-09-18  Bruno Haible  <bruno@clisp.org>
1886
1887         * modules/areadlink: New file.
1888         * lib/areadlink.h (areadlink): New declaration.
1889         * lib/areadlink.c: New file, based on lib/xreadlink.c.
1890
1891 2007-09-17  Jim Meyering  <jim@meyering.net>
1892
1893         * lib/savewd.c (ESTALE) [!defined]: Define.
1894         Reported to be required on Interix by Martin Koeppe.
1895
1896 2007-09-17  Bruno Haible  <bruno@clisp.org>
1897
1898         * gnulib-tool (func_version): Use $version.
1899
1900 2007-09-16  Bruno Haible  <bruno@clisp.org>
1901
1902         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
1903         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
1904         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
1905         Reported by Greg Schafer <gschafer@zip.com.au>.
1906
1907 2007-09-15  Bruno Haible  <bruno@clisp.org>
1908
1909         * gnulib-tool (sed): Try a little harder to make bash understand the
1910         alias.
1911         Reported by Bruce Korb <bruce.korb@gmail.com>.
1912
1913 2007-09-13  Eric Blake  <ebb9@byu.net>
1914
1915         * ChangeLog: Remove conflict markers.
1916
1917 2007-09-13  Simon Josefsson  <simon@josefsson.org>
1918
1919         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
1920         Reported by Bruno Haible <bruno@clisp.org>.
1921
1922 2007-09-12  Bruno Haible  <bruno@clisp.org>
1923
1924         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
1925         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
1926         is not defined.
1927
1928 2007-09-12  Eric Blake  <ebb9@byu.net>
1929
1930         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
1931         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
1932         Autoconf definition.
1933         * modules/euidaccess (Depends-on): Add extensions, for
1934         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
1935         * modules/fnmatch (Depends-on): Likewise.
1936         * modules/getaddrinfo (Depends-on): Likewise.
1937         * modules/getdelim (Depends-on): Likewise.
1938         * modules/getline (Depends-on): Likewise.
1939         * modules/getsubopt (Depends-on): Likewise.
1940         * modules/gettext (Depends-on): Likewise.
1941         * modules/group-member (Depends-on): Likewise.
1942         * modules/mbchar (Depends-on): Likewise.
1943         * modules/memmem (Depends-on): Likewise.
1944         * modules/mempcpy (Depends-on): Likewise.
1945         * modules/memrchr (Depends-on): Likewise.
1946         * modules/pagealign_alloc (Depends-on): Likewise.
1947         * modules/readutmp (Depends-on): Likewise.
1948         * modules/stpcpy (Depends-on): Likewise.
1949         * modules/stpncpy (Depends-on): Likewise.
1950         * modules/strchrnul (Depends-on): Likewise.
1951         * modules/strndup (Depends-on): Likewise.
1952         * modules/strsep (Depends-on): Likewise.
1953         * modules/strverscmp (Depends-on): Likewise.
1954         * modules/vasprintf (Depends-on): Likewise.
1955         * modules/wcwidth (Depends-on): Likewise.
1956         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
1957         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
1958         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
1959         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
1960         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
1961         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
1962         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
1963         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
1964         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
1965         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
1966         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
1967         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
1968         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
1969         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
1970         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
1971         * m4/readutmp.m4 (gl_READUTMP): Likewise.
1972         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1973         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
1974         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
1975         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
1976         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
1977         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
1978         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
1979         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
1980         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
1981         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1982         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
1983         so that lock.m4 can be used in gettext without extensions module.
1984
1985 2007-09-11  Bruno Haible  <bruno@clisp.org>
1986
1987         * m4/isc-posix.m4: Remove file.
1988         Suggested by Eric Blake.
1989
1990 2007-09-11  Eric Blake  <ebb9@byu.net>
1991
1992         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
1993
1994 2007-09-10  Bruno Haible  <bruno@clisp.org>
1995
1996         * posix-modules: Fix typo in error message.
1997         Reported by Matt <mkraai@beckman.com>.
1998
1999 2007-09-09  Bruno Haible  <bruno@clisp.org>
2000
2001         * doc/functions/getdelim.texi: Update list of platforms lacking the
2002         function.
2003         * doc/functions/getline.texi: Likewise.
2004
2005 2007-09-09  Jim Meyering  <jim@meyering.net>
2006
2007         * lib/hash.c (hash_initialize): Detect calloc failure.
2008         Reported by Bruno Haible.
2009
2010 2007-09-09  Bruno Haible  <bruno@clisp.org>
2011
2012         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
2013         malloc or realloc fails.
2014
2015 2007-09-09  Bruno Haible  <bruno@clisp.org>
2016
2017         * modules/getcwd (Depends-on): Add malloc-posix.
2018         * modules/glob (Depends-on): Likewise.
2019         * modules/putenv (Depends-on): Likewise.
2020         * modules/strdup (Depends-on): Likewise.
2021         * modules/getdelim (Depends-on): Add realloc-posix.
2022         * modules/read-file (Depends-on): Likewise.
2023
2024 2007-09-09  Bruno Haible  <bruno@clisp.org>
2025
2026         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
2027         (gl_FUNC_MALLOC_POSIX): Require it.
2028         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
2029         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
2030         * modules/realloc (Files): Add m4/malloc.m4.
2031         * modules/calloc (Files): Likewise.
2032
2033 2007-09-09  Bruno Haible  <bruno@clisp.org>
2034
2035         * modules/malloc-posix: New file.
2036         * modules/malloc (Depends-on): Add malloc-posix.
2037         * lib/malloc.c: Include errno.h.
2038         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
2039         and a POSIX-compatible malloc into a single function. Set ENOMEM
2040         when returning NULL.
2041         * m4/malloc.m4: New file.
2042         * doc/functions/malloc.texi: Mention the malloc-posix module.
2043         * lib/stdlib_.h (malloc): New declaration.
2044         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
2045         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
2046         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
2047         and HAVE_MALLOC_POSIX.
2048
2049 2007-09-09  Bruno Haible  <bruno@clisp.org>
2050
2051         * modules/realloc-posix: New file.
2052         * modules/realloc (Depends-on): Add realloc-posix.
2053         * lib/realloc.c: Include errno.h.
2054         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
2055         and a POSIX-compatible realloc into a single function. Set ENOMEM
2056         when returning NULL.
2057         * m4/realloc.m4: New file.
2058         * doc/functions/realloc.texi: Mention the realloc-posix module.
2059         * lib/stdlib_.h (realloc): New declaration.
2060         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
2061         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
2062         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
2063         and HAVE_REALLOC_POSIX.
2064
2065 2007-09-09  Bruno Haible  <bruno@clisp.org>
2066
2067         * modules/calloc-posix: New file.
2068         * modules/calloc (Depends-on): Add calloc-posix.
2069         * lib/calloc.c: Include errno.h.
2070         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
2071         and a POSIX-compatible calloc into a single function. Set ENOMEM
2072         when returning NULL.
2073         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
2074         * doc/functions/calloc.texi: Mention the calloc-posix module.
2075         * lib/stdlib_.h (calloc): New declaration.
2076         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
2077         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
2078         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
2079         and HAVE_CALLOC_POSIX.
2080
2081 2007-09-09  Bruno Haible  <bruno@clisp.org>
2082
2083         Allow for modules to show an arbitrary notice.
2084         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
2085         * gnulib-tool: New option --extract-notice.
2086         (func_usage): Document it.
2087         (sed_extract_prog): Update.
2088         (func_get_notice): New function.
2089         (func_modules_notice): New function.
2090         (func_import, func_create_testdir): Invoke it.
2091         Suggested by Jim Meyering.
2092
2093 2007-09-09  Bruno Haible  <bruno@clisp.org>
2094
2095         * gnulib-tool: New options --verbose, --quiet.
2096         (func_usage): Document them.
2097         (verbose): New variable.
2098         (func_execute_command): New function.
2099         (func_import): Don't show the module list and the file list if
2100         $verbose < 0.
2101         (func_create_testdir): Likewise. Use func_execute_command.
2102         (func_create_megatestdir): Use func_execute_command.
2103
2104 2007-09-08  Bruno Haible  <bruno@clisp.org>
2105
2106         * gnulib-tool (func_import): Prefer rsync over wget when available,
2107         for fetching the PO files.
2108
2109 2007-09-08  Bruno Haible  <bruno@clisp.org>
2110
2111         * posix-modules: New file. Portions copied from gnulib-tool.
2112         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
2113
2114 2007-09-08  Jim Meyering  <jim@meyering.net>
2115
2116         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
2117         * lib/fpending.h: Rename from __fpending.h.
2118         * lib/fpending.c: Rename from __fpending.c.
2119         Include "fpending.h", not "__fpending.h".
2120         * lib/__fpending.h, lib/__fpending.c: Remove files.
2121         * modules/fpending (Files): Reflect new file names.
2122         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
2123
2124 2007-09-08  Bruno Haible  <bruno@clisp.org>
2125
2126         * m4/inttypes-h.m4: Remove stub file.
2127
2128 2007-09-07  Simon Josefsson  <simon@josefsson.org>
2129
2130         * doc/headers/stdint.texi: Discuss #include_next issue.
2131
2132 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
2133
2134         * build-aux/bootstrap: Remove obsolete comment about wget --help.
2135
2136 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2137
2138         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
2139         in variable name.
2140
2141 2007-09-03  Jim Meyering  <jim@meyering.net>
2142
2143         New module: git-version-gen.
2144         * modules/git-version-gen: New file.
2145
2146         Import changes from coreutils for bootstrap script.
2147
2148         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
2149
2150         bootstrap: uses rsync to download the .po files
2151         * build-aux/bootstrap (po_download_command_format): New global.
2152         (download_po_files): Use rsync.
2153         (update_po_files): Don't remove .po files after download,
2154         so future rsync runs can take advantage of the copies.
2155
2156         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
2157
2158         Solve the unnecessary-.po-file-regeneration problem once and for all.
2159         * build-aux/bootstrap (download_po_files): New function, renamed from
2160         get_translations.  Now, downloads, but doesn't update LINGUAS.
2161         (update_po_files): New function.
2162
2163         bootstrap: Ignore more.
2164         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
2165         uniwidth to e.g., lib/.gitignore.
2166         (slurp): Handle the sys_stat_.h -> sys mapping, too.
2167
2168         * build-aux/bootstrap: New setting: vc_ignore.
2169         (insert_sorted_if_absent): Create $file if absent.
2170         Adapt to new, possibly empty, list: $vc_ignore.
2171
2172         bootstrap: generate more ignorable names
2173         * build-aux/bootstrap (slurp): When generating ignorable names,
2174         also map .sin to .sed, .gperf to .c, and .y to .c.
2175
2176 2007-09-03  Jim Meyering  <jim@meyering.net>
2177
2178         * build-aux/git-version-gen: New file, from coreutils.  For details, see
2179         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
2180
2181 2007-09-02  Bruno Haible  <bruno@clisp.org>
2182
2183         Fix mis-recognition of 'mcs' on QNX 6.
2184         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
2185         output contains the string "Mono".
2186         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
2187         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
2188
2189 2007-09-01  Bruno Haible  <bruno@clisp.org>
2190
2191         Fix collision between uniwidth/* and linebreak modules.
2192         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
2193         u32_width): Remove declarations.
2194         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
2195         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
2196         streq3, streq2, streq1, streq0): Remove functions.
2197         (STREQ): Remove macro.
2198         (is_cjk_encoding): Remove function.
2199         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
2200         (uc_width, u8_width, u16_width, u32_width): Remove functions.
2201         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
2202         * NEWS: Document the change.
2203
2204 2007-09-01  Bruno Haible  <bruno@clisp.org>
2205
2206         * lib/streq.h: Add double-inclusion guard.
2207
2208 2007-09-01  Karl Berry  <karl@gnu.org>
2209
2210         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
2211
2212 2007-08-28  Jim Meyering  <jim@meyering.net>
2213
2214         Rename mreadlink_with_size to areadlink_with_size.
2215         * NEWS: Document the change.
2216         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
2217         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
2218         * lib/mreadlink.h: Rename this to...
2219         * lib/areadlink.h: ...this.
2220         * modules/mreadlink-with-size: Rename this to...
2221         * modules/areadlink-with-size: ...this.
2222         * lib/canonicalize.c: Reflect the renaming.
2223         * modules/canonicalize: Likewise.
2224
2225 2007-08-26  Bruno Haible  <bruno@clisp.org>
2226
2227         * gnulib-tool (func_import): When deciding which files to remove,
2228         consider also dangling symbolic links.
2229         Reported by Eric Blake.
2230
2231 2007-08-26  Bruno Haible  <bruno@clisp.org>
2232
2233         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
2234
2235 2007-08-23  Simon Josefsson  <simon@josefsson.org>
2236
2237         * lib/readline.c: Don't include getline.h, the prototype is now
2238         found in stdio.h.
2239
2240 2007-08-23  Jim Meyering  <jim@meyering.net>
2241
2242         Getdelim touchup.
2243         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
2244         around the funlockfile call, since funlockfile never sets errno.
2245         Don't set errno upon failed realloc.
2246
2247 2007-08-22  Eric Blake  <ebb9@byu.net>
2248
2249         Getline touchups.
2250         * lib/getdelim.c (getdelim): Revert regression that required *n to
2251         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
2252         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
2253         getdelim, rather than whether implementation is missing.
2254         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
2255         * lib/stdio_.h (getline): Also declare if replacement is
2256         required.
2257         * doc/functions/getdelim.texi: New file.
2258         * doc/functions/getline.texi: Likewise.
2259         * doc/gnulib.texi (Function Substitutes): Add new files.
2260         Reported by Bruno Haible.
2261
2262 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
2263
2264         * users.txt: Add Guile.
2265
2266 2007-08-22  Eric Blake  <ebb9@byu.net>
2267
2268         * tests/test-getdelim.c (main): Use remove, not unlink.
2269         * tests/test-getline.c (main): Likewise.
2270
2271         Move getline and getdelim into stdio.h, per POSIX 200x.
2272         * modules/getline (Files): Remove getline.h.
2273         (Depends-on): Add stdio.
2274         (configure.ac): Add module indicator.
2275         * modules/getdelim (Files): Remove getdelim.h.
2276         (Depends-on): Add stdio.
2277         (configure.ac): Add module indicator.
2278         * modules/stdio (Makefile.am): Work with new indicators.
2279         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
2280         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
2281         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
2282         * lib/getdelim.h: Delete.
2283         * lib/getline.h: Delete.
2284         * lib/stdio_.h (getdelim, getline): Declare.
2285         * modules/getdelim-tests: New module.
2286         * modules/getline-tests: Likewise.
2287         * tests/test-getdelim.c: New file.
2288         * tests/test-getline.c: Likewise.
2289         * NEWS: Document the change.
2290         * lib/getline.c: Update choice of header.
2291         * lib/csharpcomp.c: Likewise.
2292         * lib/getpass.c: Likewise.
2293         * lib/javacomp.c: Likewise.
2294         * lib/javaversion.c: Likewise.
2295         * lib/yesno.c: Likewise.
2296         * lib/getdelim.c: Likewise.
2297         (getdelim): Set errno on failure, and avoid memory leak.
2298
2299 2007-08-19  Bruno Haible  <bruno@clisp.org>
2300
2301         * modules/closein (Depends-on): Add freadahead.
2302         * lib/closein.c: Include freadahead.h.
2303         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
2304         is zero.
2305
2306 2007-08-19  Bruno Haible  <bruno@clisp.org>
2307
2308         * modules/freadahead-tests: New file.
2309         * tests/test-freadahead.sh: New file.
2310         * tests/test-freadahead.c: New file.
2311
2312         * modules/freadahead: New file.
2313         * lib/freadahead.h: New file.
2314         * lib/freadahead.c: New file.
2315         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
2316         fbufmode, fpurge, freadable, fwritable.
2317
2318 2007-08-19  Eric Blake  <ebb9@byu.net>
2319
2320         Test yesno in combination with closein.
2321         * lib/yesno.c (yesno): Document use of stdin.
2322         * modules/yesno-tests (Files): New module.
2323         * tests/test-yesno.c (main): New file.
2324         * tests/test-yesno.sh: Likewise.
2325
2326 2007-08-19  Bruno Haible  <bruno@clisp.org>
2327
2328         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
2329         * lib/fseeko.c (rpl_fseeko): Likewise.
2330         * lib/fseterr.c (fseterr): Likewise.
2331
2332 2007-08-19  Bruno Haible  <bruno@clisp.org>
2333
2334         * tests/test-lseek.c (main): Disable a test for BeOS.
2335         * doc/functions/lseek.texi: Document the BeOS bug.
2336
2337 2007-08-19  Bruno Haible  <bruno@clisp.org>
2338             Eric Blake  <ebb9@byu.net>
2339
2340         * lib/lseek.c: Include <sys/stat.h>.
2341         (rpl_lseek): Add workaround code also for Unix platforms.
2342         Needed for BeOS.
2343         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
2344         * doc/functions/lseek.texi: Document BeOS definiency.
2345
2346 2007-08-18  Bruno Haible  <bruno@clisp.org>
2347
2348         * modules/fstrcmp-tests: New file.
2349         * tests/test-fstrcmp.c: New file.
2350
2351 2007-08-18  Bruno Haible  <bruno@clisp.org>
2352
2353         * modules/fstrcmp: New file, from GNU gettext with modifications.
2354         * lib/fstrcmp.h: New file, from GNU gettext.
2355         * lib/fstrcmp.c: New file, from GNU gettext.
2356         * MODULES.html.sh (String handling): Add fstrcmp.
2357
2358 2007-08-18  Bruno Haible  <bruno@clisp.org>
2359
2360         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
2361         'bool'.
2362         (diag, compareseq): Remove const from the ctxt argument.
2363         (USE_HEURISTIC): Undefine at the end.
2364
2365 2007-08-18  Jim Meyering  <jim@meyering.net>
2366
2367         New file: lib/idcache.h
2368         * NEWS: Mention the addition.
2369         * modules/idcache (Files): Add lib/idcache.h
2370         * lib/idcache.c: Include "idcache.h".
2371         Don't include <sys/types.h>.
2372         Add a FIXME comment.
2373         Move file-scoped "static" declarations to the top.
2374         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
2375
2376 2007-08-17  Bruno Haible  <bruno@clisp.org>
2377         and Paul Eggert  <eggert@cs.ucla.edu>
2378
2379         * MODULES.html.sh: Add diffseq.
2380         * modules/diffseq: New file.
2381         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
2382         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
2383
2384 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2385
2386         Import changes from coreutils for bootstrap script.
2387
2388         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
2389
2390         * build-aux/bootstrap (slurp): Work even in environments where
2391         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
2392         current code does not slurp files whose names start with ".", and
2393         this looks like it might be a troublesome area.
2394
2395         2007-07-11  Jim Meyering  <jim@meyering.net>
2396
2397         If there's a GPL vN copyright comment, require that N == 3.
2398
2399         2007-07-08  Jim Meyering  <jim@meyering.net>
2400
2401         Run the coreutils-specific code only if tests/Makefile.am.in exists.
2402         * build-aux/bootstrap (mam_template): Move definition out of loop.
2403
2404         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
2405
2406         * build-aux/bootstrap (symlink_to_dir): Rename function from
2407         symlink_to_gnulib.  Add a directory parameter.  Update all
2408         callers.
2409         (cp_mark_as_generated): Also check for -- and link to -- files in
2410         gl/.
2411
2412         2007-07-08  Jim Meyering  <jim@meyering.net>
2413
2414         Adapt to deeper hierarchy in gnulib.
2415         * build-aux/bootstrap (symlink_to_dir): If the destination
2416         directory doesn't exist, create it. This is required at least for
2417         "lib/uniwidth/cjk.h".
2418
2419         2007-05-15  Jim Meyering  <jim@meyering.net>
2420
2421         * build-aux/bootstrap: Now that generated Makefile.am files
2422         are no longer under version control, they must be created at
2423         bootstrap time.
2424
2425 2007-08-14  Ben Pfaff  <blp@gnu.org>
2426
2427         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
2428
2429 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
2430
2431         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
2432         given the changes below.
2433         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
2434         even on hosts that have padding bits beyond the supported 64.
2435
2436 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
2437
2438         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
2439         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
2440         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
2441         depends on it.
2442         (xstrtol_error): Remove.
2443         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
2444         but with a different signature.
2445         (ATTRIBUTE_NORETURN, __attribute__): New macros.
2446         * lib/xstrtol-error.c: Include exitfail.h.
2447         (xstrtol_fatal): New function, with a different signature from the
2448         old xstrtol_error, so that the caller need not worry about passing
2449         in an exit status, or about storage management of the option argument.
2450         (xstrtol_error): Now a static function.  Redo signature to
2451         implement xstrtol_fatal.  Output the correct number of hyphens in
2452         front of the option so that the caller need not worry about
2453         storage management.
2454         (N_): New macro.
2455         (_): Remove; not used now.
2456         * modules/xstrtol: Depend on getopt.
2457         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
2458         of old STRTOL_FATAL_ERROR macro.
2459         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
2460         of test program.
2461         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
2462         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
2463
2464 2007-08-08  Eric Blake  <ebb9@byu.net>
2465
2466         * lib/xstrtol-error.c: Add missing include.
2467
2468         Move xstrtol messages into gnulib domain, when --pobase is used.
2469         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
2470         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
2471         * modules/xstrtol (Files): Distribute new file.
2472         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
2473         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
2474         * tests/test-xstrtol.c: ...into new file.
2475         * tests/test-xstrtoul.c: Also test xstrtoul.
2476         * tests/test-xstrtoimax.c: Also test xstrtoimax.
2477         * tests/test-xstrtoumax.c: Also test xstrtoumax.
2478         * tests/test-xstrtol.sh: Drive the tests.
2479         * tests/test-xstrtoimax.sh: Likewise.
2480         * tests/test-xstrtoumax.sh: Likewise.
2481         * modules/xstrtol-tests: New module.
2482         * modules/xstrtoimax-tests: Likewise.
2483         * modules/xstrtoumax-tests: Likewise.
2484
2485 2007-08-08  Jim Meyering  <jim@meyering.net>
2486
2487         New function: mfile_name_concat.
2488         * lib/filenamecat.c (mfile_name_concat): New function, just like
2489         file_name_concat, but return NULL upon failure rather than exiting
2490         with a diagnostic.
2491         * lib/filenamecat.h: Declare it.
2492
2493 2007-08-07  Bruno Haible  <bruno@clisp.org>
2494
2495         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
2496         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
2497         warning from gcc.
2498         Reported by Eric Blake.
2499
2500 2007-08-07  Simon Josefsson  <simon@josefsson.org>
2501
2502         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
2503         * modules/crypto/arcfour (License): Likewise.
2504         * modules/crypto/des-tests (License): Likewise.
2505         * modules/crypto/gc-arctwo-tests (License): Likewise.
2506         * modules/crypto/gc-des-tests (License): Likewise.
2507         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
2508         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
2509         * modules/crypto/gc-md2-tests (License): Likewise.
2510         * modules/crypto/gc-md4-tests (License): Likewise.
2511         * modules/crypto/gc-md5-tests (License): Likewise.
2512         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
2513         * modules/crypto/gc-rijndael-tests (License): Likewise.
2514         * modules/crypto/gc-sha1-tests (License): Likewise.
2515         * modules/crypto/gc-tests (License): Likewise.
2516         * modules/crypto/hmac-md5 (License): Likewise.
2517         * modules/crypto/hmac-sha1 (License): Likewise.
2518         * modules/crypto/md2-tests (License): Likewise.
2519         * modules/crypto/md4-tests (License): Likewise.
2520         * modules/crypto/md5 (License): Likewise.
2521         * modules/crypto/rijndael (License): Likewise.
2522         * modules/crypto/sha1 (License): Likewise.
2523         * modules/memxor (License): Likewise.
2524
2525 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
2526         and Bruno Haible  <bruno@clisp.org>
2527
2528         * NEWS: Describe interface changes to human, xstrtol.
2529         * lib/human.h: Include <xstrtol.h>.
2530         (human_options): Return enum strtol_error, not int.  Remove
2531         bool arg; take int * instead.
2532         * lib/human.c: Don't include "gettext.h".
2533         (_): Remove; no longer used.
2534         Don't include <xstrtol.h>, since human.h does it.
2535         (human_options): Adjust to abovementioned interface changes.
2536         Do not report error to stderr; that's now the caller's
2537         responsibility.
2538         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
2539         interface change.
2540         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
2541         Str, Argument_type_string.  All uses changed.  Put " argument"
2542         in diagnostics to make them clearer.  Change wording of suffix
2543         message for clarity.
2544         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
2545         Argument_type_string.
2546         (STRTOL_FATAL_WARN): Remove; no longer used.
2547         * modules/human (Depends-on): Remove gettext-h.
2548
2549 2007-08-06  Simon Josefsson  <simon@josefsson.org>
2550
2551         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
2552
2553 2007-07-31  Bruno Haible  <bruno@clisp.org>
2554
2555         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
2556         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
2557         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
2558
2559 2007-07-31  Bruno Haible  <bruno@clisp.org>
2560
2561         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
2562         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
2563
2564 2007-07-30  Bruno Haible  <bruno@clisp.org>
2565
2566         * modules/base64 (License): Use the synonymous term "LGPLv2+".
2567         * modules/c-ctype (License): Likewise.
2568         * modules/c-strcase (License): Likewise.
2569         * modules/check-version (License): Likewise.
2570         * modules/iconv (License): Likewise.
2571         * modules/iconv_open (License): Likewise.
2572         * modules/read-file (License): Likewise.
2573         * modules/striconv (License): Likewise.
2574         * modules/strverscmp (License): Likewise.
2575         * modules/vasprintf (License): Likewise.
2576         * modules/crypto/des (License): Likewise.
2577         * modules/crypto/gc (License): Likewise.
2578         * modules/crypto/gc-arcfour (License): Likewise.
2579         * modules/crypto/gc-arctwo (License): Likewise.
2580         * modules/crypto/gc-des (License): Likewise.
2581         * modules/crypto/gc-hmac-md5 (License): Likewise.
2582         * modules/crypto/gc-hmac-sha1 (License): Likewise.
2583         * modules/crypto/gc-md2 (License): Likewise.
2584         * modules/crypto/gc-md4 (License): Likewise.
2585         * modules/crypto/gc-md5 (License): Likewise.
2586         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
2587         * modules/crypto/gc-random (License): Likewise.
2588         * modules/crypto/gc-rijndael (License): Likewise.
2589         * modules/crypto/gc-sha1 (License): Likewise.
2590         * modules/crypto/md2 (License): Likewise.
2591         * modules/crypto/md4 (License): Likewise.
2592
2593 2007-07-30  Jim Meyering  <jim@meyering.net>
2594
2595         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
2596         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
2597         it has valid stat data.  This bug would cause du not to count the
2598         sizes of inaccessible directories.
2599         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
2600         in <http://bugzilla.redhat.com/250077>.
2601
2602 2007-07-25  Peter O'Gorman  <peter@pogma.com>
2603             Bruno Haible  <bruno@clisp.org>
2604
2605         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
2606         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
2607         #include_next, gives a diagnostic about it, but reports no error in
2608         the exit code.
2609         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
2610
2611 2007-07-24  Ben Pfaff  <blp@gnu.org>
2612
2613         Improve name: "count-one-bits" is better than "popcount".
2614         * MODULES.html.sh: Update name.
2615         * lib/popcount.h: Renamed lib/count-one-bits.h.
2616         (popcount): Renamed count_one_bits.
2617         (popcountl): Renamed count_one_bits_l.
2618         (popcountll): Renamed count_one_bits_ll.
2619         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
2620         * modules/popcount: Renamed module/count-one-bits.
2621         * modules/popcount-tests: Renamed module/count-one-bits-tests.
2622         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
2623
2624 2007-07-23  Ben Pfaff  <blp@gnu.org>
2625
2626         * lib/popcount.h (popcount32): Reduce size of constants, to allow
2627         better code generation, and add U to large constants to avoid
2628         warnings, in non-GCC case.
2629         Suggested by Bruno Haible.
2630
2631 2007-07-23  Ben Pfaff  <blp@gnu.org>
2632
2633         * lib/popcount.h: Use verify_true instead of if...abort.
2634         * modules/popcount: Depend on verify module.
2635         Suggested by Jim Meyering.
2636
2637 2007-07-23  Bruno Haible  <bruno@clisp.org>
2638
2639         * gnulib-tool (func_import): Create a .cvsignore file also when the
2640         directory is not yet in CVS but the toplevel directory is. When
2641         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
2642         Reported by Karl Berry.
2643
2644 2007-07-22  Ben Pfaff  <blp@gnu.org>
2645
2646         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
2647         case.
2648         Suggested by Eric Blake.
2649
2650 2007-07-22  Ben Pfaff  <blp@gnu.org>
2651
2652         New module: popcount.
2653         * MODULES.html.sh: Add popcount.
2654         * modules/popcount: New file.
2655         * modules/popcount-tests: New file.
2656         * tests/test-popcount.c: New file.
2657         * lib/popcount.h: New file.
2658         * m4/popcount.m4: New file.
2659
2660 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
2661
2662         * build-aux/announce-gen: Update to GPLv3.
2663
2664         * build-aux/config.guess: Update from config.
2665
2666 2007-07-21  Bruno Haible  <bruno@clisp.org>
2667
2668         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
2669         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
2670
2671 2007-07-20  Jim Meyering  <jim@meyering.net>
2672
2673         * check-module: Diagnose a self-dependency.
2674
2675 2007-07-19  Bruno Haible  <bruno@clisp.org>
2676
2677         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
2678         empty.
2679         Reported by Eric Blake.
2680
2681 2007-07-18  Bruno Haible  <bruno@clisp.org>
2682
2683         * gnulib-tool: New options --po-base, --po-domain.
2684         (func_usage): Document them.
2685         (pobase, po_domain): New variables.
2686         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
2687         DEFAULT_TEXT_DOMAIN.
2688         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
2689         (func_import): Consider pobase and po_domain. Create a po/ directory.
2690         (func_create_testdir): Set pobase and po_domain to empty.
2691         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
2692         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
2693
2694 2007-07-18  Bruno Haible  <bruno@clisp.org>
2695
2696         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2697         EXTRA_DIST augmentation for files in build-aux/.
2698
2699 2007-07-16  Bruno Haible  <bruno@clisp.org>
2700
2701         * modules/lseek (License): Use the synonymous term "LGPLv2+".
2702         * modules/getdelim (License): Likewise.
2703
2704 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2705
2706         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
2707         * modules/d-type (License): Likewise.
2708         * modules/extensions (License): Likewise.
2709         * modules/fnmatch (License): Likewise.
2710         * modules/fseeko (License): Likewise.
2711         * modules/getaddrinfo (License): Likewise.
2712         * modules/getline (License): Likewise.
2713         * modules/getlogin_r (License): Likewise.
2714         * modules/getpass (License): Likewise.
2715         * modules/gettimeofday (License): Likewise.
2716         * modules/glob (License): Likewise.
2717         * modules/inet_ntop (License): Likewise.
2718         * modules/malloc (License): Likewise.
2719         * modules/malloca (License): Likewise.
2720         * modules/memmem (License): Likewise.
2721         * modules/mempcpy (License): Likewise.
2722         * modules/memset (License): Likewise.
2723         * modules/minmax (License): Likewise.
2724         * modules/mktime (License): Likewise.
2725         * modules/netinet_in (License): Likewise.
2726         * modules/pathmax (License): Likewise.
2727         * modules/poll (License): Likewise.
2728         * modules/regex (License): Likewise.
2729         * modules/snprintf (License): Likewise.
2730         * modules/stdbool (License): Likewise.
2731         * modules/stdint (License): Likewise.
2732         * modules/stdio (License): Likewise.
2733         * modules/strcase (License): Likewise.
2734         * modules/strcasestr (License): Likewise.
2735         * modules/strdup (License): Likewise.
2736         * modules/string (License): Likewise.
2737         * modules/strndup (License): Likewise.
2738         * modules/strnlen (License): Likewise.
2739         * modules/strpbrk (License): Likewise.
2740         * modules/strptime (License): Likewise.
2741         * modules/strsep (License): Likewise.
2742         * modules/sys_select (License): Likewise.
2743         * modules/sys_socket (License): Likewise.
2744         * modules/sys_stat (License): Likewise.
2745         * modules/sys_time (License): Likewise.
2746         * modules/time (License): Likewise.
2747         * modules/time_r (License): Likewise.
2748         * modules/timegm (License): Likewise.
2749         * modules/unistd (License): Likewise.
2750         * modules/vsnprintf (License): Likewise.
2751         * modules/wctype (License): Likewise.
2752
2753 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2754
2755         * modules/argz (License): LGPLv2+.
2756
2757 2007-07-15  Karl Berry  <karl@gnu.org>
2758
2759         * doc/gnulib.texi: revise node structure per new fdl.texi.
2760
2761 2007-07-14  Bruno Haible  <bruno@clisp.org>
2762
2763         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
2764         the output file.
2765         * lib/uniname/uninames.h: Regenerated.
2766
2767 2007-07-14  Karl Berry  <karl@gnu.org>
2768
2769         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
2770         omitting sectioning and index commands.
2771
2772 2007-07-13  Bruno Haible  <bruno@clisp.org>
2773
2774         New gnulib-tool option --more-symlinks.
2775         * gnulib-tool (func_usage): Document --more-symlinks.
2776         (do_copyrights): New variable.
2777         Recognize option --more-symlinks.
2778         (func_import): Don't add a copyright notice transform to
2779         sed_transform_lib_file if do_copyrights is empty.
2780
2781 2007-07-13  Bruno Haible  <bruno@clisp.org>
2782
2783         * lib/vasnprintf.c (decimal_point_char): Define also if
2784         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
2785         && !NEED_PRINTF_DIRECTIVE_A.
2786         Reported by Clemens Koller <clemens.koller@anagramm.de> via
2787         Gary V. Vaughan <gary@gnu.org>.
2788
2789 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
2790
2791         * lib/inttypes_.h: Undo previous change, since it was fixed
2792         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
2793
2794 2007-07-13  Bruno Haible  <bruno@clisp.org>
2795
2796         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
2797         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
2798
2799 2007-07-13  Jim Meyering  <jim@meyering.net>
2800
2801         df: Don't fail for Tru64's "file-on-file mount".
2802         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
2803         so we fall through and use statfs instead.  Details here:
2804         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
2805         Reported by Albert Chin.
2806
2807 2007-07-13  Bruno Haible  <bruno@clisp.org>
2808
2809         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
2810         * modules/configmake (License): Likewise.
2811         * modules/gettext (License): Likewise.
2812         * modules/gettext-h (License): Likewise.
2813         * modules/include_next (License): Likewise.
2814         * modules/link-warning (License): Likewise.
2815         * modules/localcharset (License): Likewise.
2816         * modules/localename (License): Likewise.
2817         * modules/lock (License): Likewise.
2818         * modules/relocatable-lib-lgpl (License): Likewise.
2819         * modules/size_max (License): Likewise.
2820         * modules/vasnprintf (License): Likewise.
2821         * modules/wchar (License): Likewise.
2822         * modules/xsize (License): Likewise.
2823
2824 2007-07-13  Bruno Haible  <bruno@clisp.org>
2825
2826         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
2827         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
2828
2829 2007-07-12  Bruno Haible  <bruno@clisp.org>
2830
2831         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
2832         in the modules files.
2833
2834 2007-07-11  Karl Berry  <karl@gnu.org>
2835
2836         * MODULES.html.sh (func_module): use
2837          sed -e '\|^'"${includefile}"'$|d'
2838          instead of /.../d, to avoid errors on $includefile's containing /.
2839
2840 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
2841
2842         * gnulib-tool (func_import): Avoid duplication of --avoid
2843         statements
2844         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
2845         names to `_' in variable names.
2846
2847 2007-07-10  Eric Blake  <ebb9@byu.net>
2848
2849         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
2850         * NEWS: Document this change.
2851
2852 2007-07-08  Bruno Haible  <bruno@clisp.org>
2853
2854         Update to Unicode 5.0.
2855         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
2856         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
2857         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
2858         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
2859         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
2860         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
2861         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
2862         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
2863         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
2864         U+10A3F, U+1D242..U+1D244.
2865         (nonspacing_table_ind): Update.
2866         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
2867         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
2868
2869 2007-07-08  Bruno Haible  <bruno@clisp.org>
2870
2871         Update to Unicode 5.0.
2872         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
2873         code transform. Extend the name index field of unicode_name_to_code and
2874         unicode_code_to_name from 16 to 24 bits.
2875         * lib/uniname/uniname.c (unicode_character_name,
2876         unicode_name_character): Add the range 0x12xxx to the code transform.
2877         * lib/uniname/uninames.h: Regenerated.
2878         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
2879
2880 2007-07-07  Bruno Haible  <bruno@clisp.org>
2881
2882         * modules/wcwidth-tests: New file.
2883         * tests/test-wcwidth.c: New file.
2884
2885         Work around MacOS X wcwidth() bug.
2886         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
2887         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
2888         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
2889         original wcwidth in non-UTF-8 locales.
2890         * modules/wcwidth (Depends-on): Add localcharset, streq,
2891         uniwidth/width.
2892         * doc/functions/wcwidth.texi: Update.
2893
2894 2007-07-07  Bruno Haible  <bruno@clisp.org>
2895
2896         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
2897         (wcwidth): New declaration.
2898         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
2899         macros.
2900         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
2901         here. Prepare for creating <wchar.h> unconditionally.
2902         * modules/wchar (Depends-on): Add link-warning.
2903         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
2904         REPLACE_WCWIDTH, and GL_LINK_WARNING.
2905         * lib/wcwidth.h: Remove file.
2906         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
2907         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
2908         * modules/wcwidth (Files): Remove lib/wcwidth.h.
2909         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
2910         (Include): Replace wcwidth.h with <wchar.h>.
2911         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
2912         * lib/mbchar.h: Don't include wcwidth.h.
2913         * lib/mbswidth.c: Likewise.
2914         * NEWS: Mention the change.
2915
2916 2007-07-07  Bruno Haible  <bruno@clisp.org>
2917
2918         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
2919         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
2920         definition with an external declaration.
2921         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
2922         defined as a function. Remove AC_C_INLINE requirement.
2923         * modules/wcwidth (Files): Add lib/wcwidth.c.
2924         (Makefile.am): Remove redundant statement.
2925
2926 2007-07-07  Bruno Haible  <bruno@clisp.org>
2927
2928         * MODULES.html.sh (Unicode string functions): Add the new modules.
2929
2930         * tests/uniwidth/test-u32-strwidth.c: New file.
2931         * modules/uniwidth/u32-strwidth-tests: New file.
2932
2933         * lib/uniwidth/u32-strwidth.c: New file.
2934         * modules/uniwidth/u32-strwidth: New file.
2935
2936         * tests/uniwidth/test-u16-strwidth.c: New file.
2937         * modules/uniwidth/u16-strwidth-tests: New file.
2938
2939         * lib/uniwidth/u16-strwidth.c: New file.
2940         * modules/uniwidth/u16-strwidth: New file.
2941
2942         * tests/uniwidth/test-u8-strwidth.c: New file.
2943         * modules/uniwidth/u8-strwidth-tests: New file.
2944
2945         * lib/uniwidth/u8-strwidth.c: New file.
2946         * modules/uniwidth/u8-strwidth: New file.
2947
2948         * tests/uniwidth/test-u32-width.c: New file.
2949         * modules/uniwidth/u32-width-tests: New file.
2950
2951         * lib/uniwidth/u32-width.c: New file.
2952         * modules/uniwidth/u32-width: New file.
2953
2954         * tests/uniwidth/test-u16-width.c: New file.
2955         * modules/uniwidth/u16-width-tests: New file.
2956
2957         * lib/uniwidth/u16-width.c: New file.
2958         * modules/uniwidth/u16-width: New file.
2959
2960         * tests/uniwidth/test-u8-width.c: New file.
2961         * modules/uniwidth/u8-width-tests: New file.
2962
2963         * lib/uniwidth/u8-width.c: New file.
2964         * modules/uniwidth/u8-width: New file.
2965
2966         * tests/uniwidth/test-uc_width.c: New file.
2967         * modules/uniwidth/width-tests: New file.
2968
2969         * lib/uniwidth/width.c: New file, from GNU libiconv.
2970         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
2971         * modules/uniwidth/width: New file.
2972
2973         * lib/uniwidth.h: New file, from GNU libiconv.
2974         * modules/uniwidth/base: New file.
2975
2976 2007-07-07  Bruno Haible  <bruno@clisp.org>
2977
2978         * lib/uniname.h: New file, from GNU gettext.
2979         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
2980         * lib/uniname/uninames.h: New file, from GNU gettext.
2981         * lib/uniname/uniname.c: New file, from GNU gettext.
2982         * tests/uniname/test-uninames.sh: New file.
2983         * tests/uniname/test-uninames.c: New file, from GNU gettext.
2984         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
2985         * modules/uniname/base: New file.
2986         * modules/uniname/uniname: New file.
2987         * modules/uniname/uniname-tests: New file.
2988         * MODULES.html.sh (Unicode string functions): Add the new modules.
2989
2990 2007-07-06  Bruno Haible  <bruno@clisp.org>
2991
2992         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
2993
2994 2007-07-06  Bruno Haible  <bruno@clisp.org>
2995
2996         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
2997         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
2998         includes <cygwin/sys_time.h> which includes <sys/select.h> which
2999         include <sys/time.h>.
3000         Reported by Eric Blake.
3001
3002 2007-07-06  Eric Blake  <ebb9@byu.net>
3003
3004         Fix testing canonicalize on cygwin.
3005         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
3006         Revert patch from 2007-06-19.
3007         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
3008         canonicalize module is also in use.
3009         * tests/test-canonicalize.c: New file.
3010         * tests/test-canonicalize.sh: Likewise.
3011         * modules/canonicalize-tests: Likewise.
3012
3013 2007-07-06  Jim Meyering  <jim@meyering.net>
3014
3015         * lib/getugroups.c (getugroups): Detect getgrent failure.
3016         Adjust comment to reflect reality: this function may return -1.
3017
3018 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
3019
3020         * build-aux/bootstrap (TP_URL,get_translations): Update to use
3021         the new TP address.
3022         (usage): Fix typo
3023         (gnulib_mk): New variable.
3024
3025 2007-07-05  Jim Meyering  <jim@meyering.net>
3026
3027         Don't let endgrent clobber errno, no matter how improbable.
3028         * lib/getugroups.c (getugroups): Save and restore errno around
3029         endgrent call.
3030
3031         Close the group DB even when failing with 2^31 or more members.
3032         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
3033
3034 2007-07-04  Jim Meyering  <jim@meyering.net>
3035
3036         * lib/getugroups.h: New file.
3037         * lib/getugroups.c: Include "getugroups.h".
3038         Remove uses of "register" keyword.
3039         Move local variable, "cp", down into scope where used.
3040         Give "username" parameter the "const" attribute.
3041         * modules/getugroups (Files): Add lib/getugroups.h
3042
3043 2007-07-04  Karl Berry  <karl@gnu.org>
3044
3045         * MODULES.html.sh (func_all_modules): Complete rename of
3046         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
3047
3048 2007-07-02  Bruno Haible  <bruno@clisp.org>
3049
3050         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
3051         mode, when inttypes.h comes from gnulib.
3052         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
3053
3054 2007-07-02  Simon Josefsson  <simon@josefsson.org>
3055
3056         * NEWS: Mention lgpl module name change.
3057
3058         * modules/lgpl-2.1: Renamed from lgpl.
3059
3060         * NEWS: Mention gpl module name change.
3061
3062         * modules/gpl-3.0: New file, based on gpl-2.0.
3063
3064         * modules/gpl-2.0: Renamed from gpl.
3065
3066         * modules/gpl: Fix filename, doc/gpl.texi is now found at
3067         doc/gpl-2.0.texi.
3068
3069 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
3070
3071         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
3072         #define __STDC_LIMIT_MACROS temporarily while including
3073         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
3074         Problem reported by Joel E. Denny in
3075         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
3076
3077 2007-07-01  Bruno Haible  <bruno@clisp.org>
3078
3079         * lib/unistdio.h: New file.
3080         * lib/unistdio/u-asnprintf.h: New file.
3081         * lib/unistdio/u-asprintf.h: New file.
3082         * lib/unistdio/u-printf-args.c: New file.
3083         * lib/unistdio/u-printf-args.h: New file.
3084         * lib/unistdio/u-printf-parse.h: New file.
3085         * lib/unistdio/u-snprintf.h: New file.
3086         * lib/unistdio/u-sprintf.h: New file.
3087         * lib/unistdio/u-vasprintf.h: New file.
3088         * lib/unistdio/u-vsnprintf.h: New file.
3089         * lib/unistdio/u-vsprintf.h: New file.
3090         * lib/unistdio/ulc-asnprintf.c: New file.
3091         * lib/unistdio/ulc-asprintf.c: New file.
3092         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
3093         * lib/unistdio/ulc-printf-parse.c: New file.
3094         * lib/unistdio/ulc-snprintf.c: New file.
3095         * lib/unistdio/ulc-sprintf.c: New file.
3096         * lib/unistdio/ulc-vasnprintf.c: New file.
3097         * lib/unistdio/ulc-vasprintf.c: New file.
3098         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
3099         * lib/unistdio/ulc-vsnprintf.c: New file.
3100         * lib/unistdio/ulc-vsprintf.c: New file.
3101         * lib/unistdio/u8-asnprintf.c: New file.
3102         * lib/unistdio/u8-asprintf.c: New file.
3103         * lib/unistdio/u8-printf-parse.c: New file.
3104         * lib/unistdio/u8-snprintf.c: New file.
3105         * lib/unistdio/u8-sprintf.c: New file.
3106         * lib/unistdio/u8-vasnprintf.c: New file.
3107         * lib/unistdio/u8-vasprintf.c: New file.
3108         * lib/unistdio/u8-vsnprintf.c: New file.
3109         * lib/unistdio/u8-vsprintf.c: New file.
3110         * lib/unistdio/u8-u8-asnprintf.c: New file.
3111         * lib/unistdio/u8-u8-asprintf.c: New file.
3112         * lib/unistdio/u8-u8-snprintf.c: New file.
3113         * lib/unistdio/u8-u8-sprintf.c: New file.
3114         * lib/unistdio/u8-u8-vasnprintf.c: New file.
3115         * lib/unistdio/u8-u8-vasprintf.c: New file.
3116         * lib/unistdio/u8-u8-vsnprintf.c: New file.
3117         * lib/unistdio/u8-u8-vsprintf.c: New file.
3118         * lib/unistdio/u16-asnprintf.c: New file.
3119         * lib/unistdio/u16-asprintf.c: New file.
3120         * lib/unistdio/u16-printf-parse.c: New file.
3121         * lib/unistdio/u16-snprintf.c: New file.
3122         * lib/unistdio/u16-sprintf.c: New file.
3123         * lib/unistdio/u16-vasnprintf.c: New file.
3124         * lib/unistdio/u16-vasprintf.c: New file.
3125         * lib/unistdio/u16-vsnprintf.c: New file.
3126         * lib/unistdio/u16-vsprintf.c: New file.
3127         * lib/unistdio/u16-u16-asnprintf.c: New file.
3128         * lib/unistdio/u16-u16-asprintf.c: New file.
3129         * lib/unistdio/u16-u16-snprintf.c: New file.
3130         * lib/unistdio/u16-u16-sprintf.c: New file.
3131         * lib/unistdio/u16-u16-vasnprintf.c: New file.
3132         * lib/unistdio/u16-u16-vasprintf.c: New file.
3133         * lib/unistdio/u16-u16-vsnprintf.c: New file.
3134         * lib/unistdio/u16-u16-vsprintf.c: New file.
3135         * lib/unistdio/u32-asnprintf.c: New file.
3136         * lib/unistdio/u32-asprintf.c: New file.
3137         * lib/unistdio/u32-printf-parse.c: New file.
3138         * lib/unistdio/u32-snprintf.c: New file.
3139         * lib/unistdio/u32-sprintf.c: New file.
3140         * lib/unistdio/u32-vasnprintf.c: New file.
3141         * lib/unistdio/u32-vasprintf.c: New file.
3142         * lib/unistdio/u32-vsnprintf.c: New file.
3143         * lib/unistdio/u32-vsprintf.c: New file.
3144         * lib/unistdio/u32-u32-asnprintf.c: New file.
3145         * lib/unistdio/u32-u32-asprintf.c: New file.
3146         * lib/unistdio/u32-u32-snprintf.c: New file.
3147         * lib/unistdio/u32-u32-sprintf.c: New file.
3148         * lib/unistdio/u32-u32-vasnprintf.c: New file.
3149         * lib/unistdio/u32-u32-vasprintf.c: New file.
3150         * lib/unistdio/u32-u32-vsnprintf.c: New file.
3151         * lib/unistdio/u32-u32-vsprintf.c: New file.
3152         * tests/unistdio/test-ulc-asnprintf1.c: New file.
3153         * tests/unistdio/test-ulc-asnprintf1.h: New file.
3154         * tests/unistdio/test-ulc-printf1.h: New file.
3155         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
3156         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
3157         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
3158         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
3159         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
3160         * tests/unistdio/test-ulc-vasprintf1.c: New file.
3161         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
3162         * tests/unistdio/test-ulc-vsprintf1.c: New file.
3163         * tests/unistdio/test-u8-asnprintf1.c: New file.
3164         * tests/unistdio/test-u8-asnprintf1.h: New file.
3165         * tests/unistdio/test-u8-printf1.h: New file.
3166         * tests/unistdio/test-u8-vasnprintf1.c: New file.
3167         * tests/unistdio/test-u8-vasnprintf2.c: New file.
3168         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
3169         * tests/unistdio/test-u8-vasnprintf3.c: New file.
3170         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
3171         * tests/unistdio/test-u8-vasprintf1.c: New file.
3172         * tests/unistdio/test-u8-vsnprintf1.c: New file.
3173         * tests/unistdio/test-u8-vsprintf1.c: New file.
3174         * tests/unistdio/test-u16-asnprintf1.c: New file.
3175         * tests/unistdio/test-u16-asnprintf1.h: New file.
3176         * tests/unistdio/test-u16-printf1.h: New file.
3177         * tests/unistdio/test-u16-vasnprintf1.c: New file.
3178         * tests/unistdio/test-u16-vasnprintf2.c: New file.
3179         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
3180         * tests/unistdio/test-u16-vasnprintf3.c: New file.
3181         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
3182         * tests/unistdio/test-u16-vasprintf1.c: New file.
3183         * tests/unistdio/test-u16-vsnprintf1.c: New file.
3184         * tests/unistdio/test-u16-vsprintf1.c: New file.
3185         * tests/unistdio/test-u32-asnprintf1.c: New file.
3186         * tests/unistdio/test-u32-asnprintf1.h: New file.
3187         * tests/unistdio/test-u32-printf1.h: New file.
3188         * tests/unistdio/test-u32-vasnprintf1.c: New file.
3189         * tests/unistdio/test-u32-vasnprintf2.c: New file.
3190         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
3191         * tests/unistdio/test-u32-vasnprintf3.c: New file.
3192         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
3193         * tests/unistdio/test-u32-vasprintf1.c: New file.
3194         * tests/unistdio/test-u32-vsnprintf1.c: New file.
3195         * tests/unistdio/test-u32-vsprintf1.c: New file.
3196         * modules/unistdio/base: New file.
3197         * modules/unistdio/u-printf-args: New file.
3198         * modules/unistdio/ulc-asnprintf: New file.
3199         * modules/unistdio/ulc-asprintf: New file.
3200         * modules/unistdio/ulc-fprintf: New file.
3201         * modules/unistdio/ulc-printf-parse: New file.
3202         * modules/unistdio/ulc-snprintf: New file.
3203         * modules/unistdio/ulc-sprintf: New file.
3204         * modules/unistdio/ulc-vasnprintf: New file.
3205         * modules/unistdio/ulc-vasprintf: New file.
3206         * modules/unistdio/ulc-vfprintf: New file.
3207         * modules/unistdio/ulc-vsnprintf: New file.
3208         * modules/unistdio/ulc-vsprintf: New file.
3209         * modules/unistdio/u8-asnprintf: New file.
3210         * modules/unistdio/u8-asprintf: New file.
3211         * modules/unistdio/u8-printf-parse: New file.
3212         * modules/unistdio/u8-snprintf: New file.
3213         * modules/unistdio/u8-sprintf: New file.
3214         * modules/unistdio/u8-vasnprintf: New file.
3215         * modules/unistdio/u8-vasprintf: New file.
3216         * modules/unistdio/u8-vsnprintf: New file.
3217         * modules/unistdio/u8-vsprintf: New file.
3218         * modules/unistdio/u8-u8-asnprintf: New file.
3219         * modules/unistdio/u8-u8-asprintf: New file.
3220         * modules/unistdio/u8-u8-snprintf: New file.
3221         * modules/unistdio/u8-u8-sprintf: New file.
3222         * modules/unistdio/u8-u8-vasnprintf: New file.
3223         * modules/unistdio/u8-u8-vasprintf: New file.
3224         * modules/unistdio/u8-u8-vsnprintf: New file.
3225         * modules/unistdio/u8-u8-vsprintf: New file.
3226         * modules/unistdio/u16-asnprintf: New file.
3227         * modules/unistdio/u16-asprintf: New file.
3228         * modules/unistdio/u16-printf-parse: New file.
3229         * modules/unistdio/u16-snprintf: New file.
3230         * modules/unistdio/u16-sprintf: New file.
3231         * modules/unistdio/u16-vasnprintf: New file.
3232         * modules/unistdio/u16-vasprintf: New file.
3233         * modules/unistdio/u16-vsnprintf: New file.
3234         * modules/unistdio/u16-vsprintf: New file.
3235         * modules/unistdio/u16-u16-asnprintf: New file.
3236         * modules/unistdio/u16-u16-asprintf: New file.
3237         * modules/unistdio/u16-u16-snprintf: New file.
3238         * modules/unistdio/u16-u16-sprintf: New file.
3239         * modules/unistdio/u16-u16-vasnprintf: New file.
3240         * modules/unistdio/u16-u16-vasprintf: New file.
3241         * modules/unistdio/u16-u16-vsnprintf: New file.
3242         * modules/unistdio/u16-u16-vsprintf: New file.
3243         * modules/unistdio/u32-asnprintf: New file.
3244         * modules/unistdio/u32-asprintf: New file.
3245         * modules/unistdio/u32-printf-parse: New file.
3246         * modules/unistdio/u32-snprintf: New file.
3247         * modules/unistdio/u32-sprintf: New file.
3248         * modules/unistdio/u32-vasnprintf: New file.
3249         * modules/unistdio/u32-vasprintf: New file.
3250         * modules/unistdio/u32-vsnprintf: New file.
3251         * modules/unistdio/u32-vsprintf: New file.
3252         * modules/unistdio/u32-u32-asnprintf: New file.
3253         * modules/unistdio/u32-u32-asprintf: New file.
3254         * modules/unistdio/u32-u32-snprintf: New file.
3255         * modules/unistdio/u32-u32-sprintf: New file.
3256         * modules/unistdio/u32-u32-vasnprintf: New file.
3257         * modules/unistdio/u32-u32-vasprintf: New file.
3258         * modules/unistdio/u32-u32-vsnprintf: New file.
3259         * modules/unistdio/u32-u32-vsprintf: New file.
3260         * modules/unistdio/ulc-asnprintf-tests: New file.
3261         * modules/unistdio/ulc-vasnprintf-tests: New file.
3262         * modules/unistdio/ulc-vasprintf-tests: New file.
3263         * modules/unistdio/ulc-vsnprintf-tests: New file.
3264         * modules/unistdio/ulc-vsprintf-tests: New file.
3265         * modules/unistdio/u8-asnprintf-tests: New file.
3266         * modules/unistdio/u8-vasnprintf-tests: New file.
3267         * modules/unistdio/u8-vasprintf-tests: New file.
3268         * modules/unistdio/u8-vsnprintf-tests: New file.
3269         * modules/unistdio/u8-vsprintf-tests: New file.
3270         * modules/unistdio/u16-asnprintf-tests: New file.
3271         * modules/unistdio/u16-vasnprintf-tests: New file.
3272         * modules/unistdio/u16-vasprintf-tests: New file.
3273         * modules/unistdio/u16-vsnprintf-tests: New file.
3274         * modules/unistdio/u16-vsprintf-tests: New file.
3275         * modules/unistdio/u32-asnprintf-tests: New file.
3276         * modules/unistdio/u32-vasnprintf-tests: New file.
3277         * modules/unistdio/u32-vasprintf-tests: New file.
3278         * modules/unistdio/u32-vsnprintf-tests: New file.
3279         * modules/unistdio/u32-vsprintf-tests: New file.
3280         * MODULES.html.sh (Unicode string functions): Add the new modules.
3281
3282 2007-07-01  Bruno Haible  <bruno@clisp.org>
3283
3284         * lib/sprintf.c (sprintf): Limit the available length estimation,
3285         to avoid address wraparound.
3286         * lib/vsprintf.c (vsprintf): Likewise.
3287         * modules/sprintf-posix (Dependencies): Add stdint.
3288         * modules/vsprintf-posix (Dependencies): Likewise.
3289
3290 2007-07-01  Bruno Haible  <bruno@clisp.org>
3291
3292         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
3293         Windows PATH as well. Conservative double-quoting. Comments.
3294
3295 2007-07-01  Bruno Haible  <bruno@clisp.org>
3296             Eric Blake  <ebb9@byu.net>
3297             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3298
3299         * gnulib-tool (self_abspathname): Fix algorithm to cope with
3300         empty components in $PATH, denoting '.'.
3301
3302 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3303
3304         * gnulib-tool: Fix indentation.
3305         (func_create_megatestdir): Likewise.
3306         Report by Bruno Haible.
3307
3308 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3309
3310         Sync from Automake.
3311         * build-aux/gnupload: Fix shell portability issues with for loops.
3312         Report by Karl Berry.
3313
3314 2007-06-29  Simon Josefsson  <simon@josefsson.org>
3315
3316         * build-aux/maint.mk (POURL): Use translationproject.org.
3317
3318 2007-06-27  Simon Josefsson  <simon@josefsson.org>
3319             Bruno Haible  <bruno@clisp.org>
3320
3321         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
3322         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
3323         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
3324         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
3325         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
3326
3327 2007-06-27  Bruno Haible  <bruno@clisp.org>
3328
3329         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
3330         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
3331
3332 2007-06-26  Karl Berry  <karl@gnu.org>
3333
3334         * MODULES.html.sh: remove xreadlink-with-size.
3335
3336 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
3337
3338         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
3339         method that I hope also handles the double-include problem noted
3340         by Bruno Haible in
3341         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
3342
3343 2007-06-23  Bruno Haible  <bruno@clisp.org>
3344
3345         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3346         Don't let the 'mostlyclean' target fail if the last subdirectory could
3347         not be removed.
3348         Reported by Karl Berry.
3349
3350 2007-06-23  Bruno Haible  <bruno@clisp.org>
3351
3352         * gnulib-tool (echo): Add a speedier workaround for ksh.
3353         * tests/test-echo.sh: Likewise.
3354
3355 2007-06-23  Bruno Haible  <bruno@clisp.org>
3356
3357         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
3358         * tests/test-echo.sh: Likewise.
3359
3360 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3361
3362         * gnulib-tool (IFS): Initialize early, so we don't set it to
3363         empty later.
3364         (self_abspathname): Rewrite algorithm to set it, reindent.
3365         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
3366         (func_create_megatestdir): Merge some sed scripts.
3367
3368 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
3369
3370         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
3371         exposed by Sun Studio 11 cc on Solaris 8.
3372
3373 2007-06-22  Bruno Haible  <bruno@clisp.org>
3374
3375         * gnulib-tool (echo): Ensure the echo primitive does not interpret
3376         backslashes.
3377         * tests/test-echo.sh: New file.
3378
3379 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3380
3381         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
3382         simplify `sed_replace_build_aux' scripts, they are portable but
3383         echoing them with `echo' is not.
3384         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
3385
3386 2007-06-21  Karl Berry  <karl@gnu.org>
3387
3388         * config/srclist.txt: guess we can't handle the licenses via
3389         srclist at the moment.
3390
3391 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
3392
3393         * MODULES.html.sh: Add include_next.
3394         * modules/include_next: New file.
3395
3396 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
3397
3398         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
3399         INCLUDE_NEXT.
3400         (gl_CHECK_NEXT_HEADERS): New macro.
3401         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
3402         the obsolescent gl_ABSOLUTE_HEADER.
3403         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
3404         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
3405         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
3406         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
3407         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
3408         * m4/math_h.m4 (gl_MATH_H): Likewise.
3409         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
3410         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
3411         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
3412         * m4/stdint.m4 (gl_STDINT_H): Likewise.
3413         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
3414         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
3415         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
3416         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
3417         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
3418         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
3419         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
3420         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
3421         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
3422         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
3423         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
3424         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
3425         * m4/inttypes.m4 (gl_INTTYPES_H): Define
3426         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
3427         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
3428         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
3429         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
3430         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
3431         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
3432         * lib/float_.h: Likewise.
3433         * lib/inttypes_.h: Likewise.
3434         * lib/math_.h: Likewise.
3435         * lib/search_.h: Likewise.
3436         * lib/signal_.h: Likewise.
3437         * lib/stdint_.h: Likewise.
3438         * lib/stdio_.h: Likewise.
3439         * lib/stdlib_.h: Likewise.
3440         * lib/string_.h: Likewise.
3441         * lib/sys_stat_.h: Likewise.
3442         * lib/sys_time_.h: Likewise.
3443         * lib/time_.h: Likewise.
3444         * lib/unistd_.h: Likewise.
3445         * lib/wchar_.h: Likewise.
3446         * lib/wctype_.h: Likewise.
3447         * lib/dirent_.h: Likewise.
3448         * lib/iconv_.h: Likewise.
3449         * lib/locale_.h: Likewise.
3450         * lib/netinet_in_.h: Likewise.
3451         * lib/sys_select_.h: Likewise.
3452         * lib/sys_socket_.h: Likewise.
3453         * lib/sysexits_.h: Likewise.
3454         * modules/fcntl (Depends-on): Depend on include_next, not
3455         absolute_header.
3456         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
3457         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
3458         * modules/fchdir: Likewise.
3459         * modules/float: Likewise.
3460         * modules/iconv_open: Likewise.
3461         * modules/inttypes: Likewise.
3462         * modules/locale: Likewise.
3463         * modules/math: Likewise.
3464         * modules/netinet_in: Likewise.
3465         * modules/search: Likewise.
3466         * modules/signal: Likewise.
3467         * modules/stdint: Likewise.
3468         * modules/stdio: Likewise.
3469         * modules/stdlib: Likewise.
3470         * modules/string: Likewise.
3471         * modules/sys_select: Likewise.
3472         * modules/sys_socket: Likewise.
3473         * modules/sys_stat: Likewise.
3474         * modules/sys_time: Likewise.
3475         * modules/sysexits: Likewise.
3476         * modules/time: Likewise.
3477         * modules/unistd: Likewise.
3478         * modules/wchar: Likewise.
3479         * modules/wctype: Likewise.
3480         * modules/sys_stat: Change maintainer to "all".
3481         * modules/unistd: Likewise.
3482
3483 2007-06-20  Karl Berry  <karl@gnu.org>
3484
3485         * config/srclist.txt: track www changes in license files.
3486
3487 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
3488
3489         * build-aux/bootstrap: Remove stray dot.
3490         Make sure build_aux settings are honored when linking
3491         gnulib_extra_files.
3492
3493 2007-06-19  Eric Blake  <ebb9@byu.net>
3494
3495         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
3496         Allow compilation on cygwin.
3497
3498 2007-06-19  Jim Meyering  <jim@meyering.net>
3499
3500         xreadlink-with-size: Remove module.  No longer used.
3501         Ex-callers now use xreadlink or mreadlink-with-size.
3502         * modules/xreadlink-with-size: Remove module.
3503         * lib/xreadlink-with-size.c: Remove file.
3504         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
3505         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
3506         just before the function definition *is* accurate.
3507
3508         Eliminate one way canonicalize_filename_mode could exit.
3509         * lib/canonicalize.c (canonicalize_filename_mode):
3510         Use mreadlink_with_size, not xreadlink_with_size.
3511
3512 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
3513
3514         Detect porting problems to FreeBSD/arm, which has time_t wider than
3515         long int.  Original problem reported for GNU diff by Xin Li in
3516         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
3517         * modules/getdate (Depends-on): Add intprops, verify.
3518         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
3519         is an integer type no wider than long int.
3520
3521 2007-06-18  Jim Meyering  <jim@meyering.net>
3522
3523         New module: mreadlink-with-size.
3524         * MODULES.html.sh: Add mreadlink-with-size.
3525         * modules/mreadlink-with-size: New module
3526         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
3527         not xreadlink-with-size.
3528         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
3529
3530 2007-06-16  Bruno Haible  <bruno@clisp.org>
3531
3532         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
3533         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
3534         Reported by Gary V. Vaughan <gary@gnu.org>.
3535
3536 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
3537
3538         Revamp lchown so that it lives in unistd.h where it belongs.
3539         * lib/lchown.h: Remove.
3540         * lib/dirchownmod.c: Don't include lib/lchown.h.
3541         * lib/fchownat.c: Likewise.
3542         * lib/openat.c: Likewise.
3543         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
3544         does not follow symlinks.
3545         (EOPNOTSUPP): Define if not defined.
3546         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
3547         is defined to 0.
3548         (lchown): New decl.
3549         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
3550         Do not check for lchown decl.
3551         Set REPLACE_LCHOWN.
3552         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
3553         REPLACE_LCHOWN.
3554         * modules/chown: Make it clear it follows symlinks.
3555         * modules/lchown: Make it clear it doesn't follow symlinks.
3556         (Files): Remove lib/lchown.h
3557         (Depends-on): Add unistd.
3558         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
3559         (Include): Include <unistd.h>, not "lchown.h".
3560         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
3561         REPLACE_LCHOWN.
3562
3563 2007-06-15  Jim Meyering  <jim@meyering.net>
3564
3565         Change license (GPL to LGPL) of fsusage and dependents.
3566         * modules/fsusage (License): Change to LGPL.
3567         * modules/full-read (License): Likewise.
3568         * modules/full-write (License): Likewise.
3569         * modules/safe-read (License): Likewise.
3570         * modules/safe-write (License): Likewise.
3571
3572 2007-06-14  Ben Pfaff  <blp@gnu.org>
3573
3574         Missing part of allocsa -> malloca transition.
3575         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
3576         gl_MALLOCA.
3577
3578 2007-06-12  Bruno Haible  <bruno@clisp.org>
3579
3580         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
3581         to ia64, x86_64, i386.
3582         Reported by Eric Blake.
3583
3584 2007-06-12  Bruno Haible  <bruno@clisp.org>
3585
3586         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
3587         cross-compiling to x86_64.
3588
3589 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
3590
3591         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
3592         glitch reported by Ralf Wildenhues in
3593         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
3594
3595         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
3596         Vin Shelton.
3597
3598 2007-06-11  Bruno Haible  <bruno@clisp.org>
3599
3600         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
3601         replacement string.
3602         Reported by Eric Blake.
3603
3604 2007-06-10  Bruno Haible  <bruno@clisp.org>
3605
3606         Prepare vasnprintf code for use with Unicode strings.
3607         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
3608         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
3609         TYPE_U32_STRING.
3610         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
3611         a_u32_string variants.
3612         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
3613         * lib/printf-args.c: Don't include config.h and the specification
3614         header if PRINTF_FETCHARGS is already defined.
3615         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
3616         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
3617         TYPE_U16_STRING, TYPE_U32_STRING.
3618         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
3619         u16_directive, u16_directives, u32_directive, u32_directives): New
3620         types.
3621         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
3622         New declarations.
3623         * lib/printf-parse.c: Don't include config.h and the specification
3624         header if PRINTF_PARSE is already defined. Eliminate the set of
3625         parameters for WIDE_CHAR_VERSION; the user of this file must provide
3626         them now. Include c-ctype.h.
3627         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
3628         directive and CHAR_T_ONLY_ASCII.
3629         * lib/vasnprintf.c: Don't include config.h and the specification header
3630         if VASNPRINTF is already defined.
3631         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
3632         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
3633         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
3634         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
3635         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
3636         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
3637         code accordingly.
3638         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
3639         pad_ourselves also in this case, with the 'c' and 's' directives, and
3640         with a different notion of "width".
3641         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
3642
3643 2007-06-10  Bruno Haible  <bruno@clisp.org>
3644
3645         * modules/unistr/u32-mbsnlen: New file.
3646         * lib/unistr/u32-mbsnlen.c: New file.
3647
3648         * modules/unistr/u16-mbsnlen: New file.
3649         * lib/unistr/u16-mbsnlen.c: New file.
3650
3651         * modules/unistr/u8-mbsnlen: New file.
3652         * lib/unistr/u8-mbsnlen.c: New file.
3653
3654         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
3655         declarations.
3656
3657 2007-06-10  Bruno Haible  <bruno@clisp.org>
3658
3659         * lib/string_.h (mbsnlen): New declaration.
3660         * lib/mbsnlen.c: New file.
3661         * m4/mbsnlen.m4: New file.
3662         * modules/mbsnlen: New file.
3663         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
3664         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
3665         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
3666
3667 2007-06-10  Bruno Haible  <bruno@clisp.org>
3668
3669         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
3670
3671 2007-06-10  Bruno Haible  <bruno@clisp.org>
3672
3673         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
3674         * lib/mbuiter.h: Likewise.
3675
3676 2007-06-10  Bruno Haible  <bruno@clisp.org>
3677
3678         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
3679         declaration.
3680
3681 2007-06-10  Karl Berry  <karl@gnu.org>
3682
3683         * config/srclist.txt: remove gettext entries, Bruno prefers
3684         to update individually.
3685
3686 2007-06-10  Bruno Haible  <bruno@clisp.org>
3687
3688         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
3689         'maxlen'. Ensure only length + width bytes are allocated, not
3690         length + 1 + width.
3691
3692 2007-06-09  Bruno Haible  <bruno@clisp.org>
3693
3694         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
3695         (CHAR_T): Remove macro.
3696         (VASNPRINTF): Update.
3697
3698 2007-06-09  Bruno Haible  <bruno@clisp.org>
3699
3700         * MODULES.html.sh (Unicode string functions): Add the new modules.
3701
3702         * modules/uniconv/u32-conv-to-enc: New file.
3703         * lib/uniconv/u32-conv-to-enc.c: New file.
3704         * modules/uniconv/u32-conv-to-enc-tests: New file.
3705         * tests/uniconv/test-u32-conv-to-enc.c: New file.
3706
3707         * modules/uniconv/u16-conv-to-enc: New file.
3708         * lib/uniconv/u16-conv-to-enc.c: New file.
3709         * lib/uniconv/u-conv-to-enc.h: New file.
3710         * modules/uniconv/u16-conv-to-enc-tests: New file.
3711         * tests/uniconv/test-u16-conv-to-enc.c: New file.
3712
3713         * modules/uniconv/u8-conv-to-enc: New file.
3714         * lib/uniconv/u8-conv-to-enc.c: New file.
3715         * modules/uniconv/u8-conv-to-enc-tests: New file.
3716         * tests/uniconv/test-u8-conv-to-enc.c: New file.
3717
3718         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
3719         u32_conv_to_encoding): New declarations.
3720
3721 2007-06-09  Bruno Haible  <bruno@clisp.org>
3722
3723         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
3724
3725 2007-06-09  Bruno Haible  <bruno@clisp.org>
3726
3727         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
3728         * modules/malloca: Renamed from modules/allocsa, updated.
3729         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
3730         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
3731         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
3732         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
3733         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
3734         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
3735         * modules/xmalloca: Renamed from modules/xallocsa, updated.
3736         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
3737         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
3738         * modules/c-strcasestr (Depends-on): Update.
3739         * lib/c-strcasestr.c: Update.
3740         * modules/c-strstr (Depends-on): Update.
3741         * lib/c-strstr.c: Update.
3742         * modules/canonicalize-lgpl (Depends-on): Update.
3743         * lib/canonicalize-lgpl.c: Update.
3744         * modules/clean-temp (Depends-on): Update.
3745         * lib/clean-temp.c: Update.
3746         * modules/csharpcomp (Depends-on): Update.
3747         * lib/csharpcomp.c: Update.
3748         * modules/csharpexec (Depends-on): Update.
3749         * lib/csharpexec.c: Update.
3750         * modules/javacomp (Depends-on): Update.
3751         * lib/javacomp.c: Update.
3752         * modules/javaexec (Depends-on): Update.
3753         * lib/javaexec.c: Update.
3754         * modules/mbscasestr (Depends-on): Update.
3755         * lib/mbscasestr.c: Update.
3756         * modules/mbsstr (Depends-on): Update.
3757         * lib/mbsstr.c: Update.
3758         * modules/setenv (Depends-on): Update.
3759         * lib/setenv.c: Update.
3760         * modules/strcasestr (Depends-on): Update.
3761         * lib/strcasestr.c: Update.
3762         * modules/striconveha (Depends-on): Update.
3763         * lib/striconveha.c: Update.
3764         * modules/relocatable-prog-wrapper (Files): Update.
3765         * lib/relocwrapper.c: Update.
3766         * build-aux/install-reloc: Update.
3767         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
3768
3769 2007-06-08  Bruno Haible  <bruno@clisp.org>
3770
3771         Port to uClibc.
3772         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
3773         * lib/fpurge.c (fpurge): Likewise.
3774         * lib/freading.c (freading): Likewise.
3775         * lib/fseeko.c (rpl_fseeko): Likewise.
3776         * lib/fseterr.c (fseterr): Likewise.
3777         * lib/fwriting.c (fwriting): Likewise.
3778         * tests/test-fflush.c (main): Avoid a failure on uClibc.
3779
3780 2007-06-08  Bruno Haible  <bruno@clisp.org>
3781
3782         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
3783         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
3784         * modules/gettext (Files): Add m4/intlmacosx.m4.
3785
3786 2007-06-07  Bruno Haible  <bruno@clisp.org>
3787
3788         * modules/localename-tests: New file.
3789         * tests/test-localename.c: New file.
3790
3791         New module 'localename'.
3792         * lib/localename.h: New file.
3793         * lib/localename.c: New file, from GNU gettext.
3794         * m4/localename.m4: New file.
3795         * modules/localename: New file.
3796
3797 2007-06-07  Bruno Haible  <bruno@clisp.org>
3798
3799         Work around the lack of <wchar.h> on some builds of uClibc.
3800         * doc/headers/wchar.texi: Update.
3801         * lib/wchar_.h: Include <wchar.h> only if it exists.
3802         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
3803         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
3804         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
3805         doesn't exist.
3806         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
3807         * modules/mbfile (Depends-on): Add wchar.
3808         * modules/mbiter (Depends-on): Likewise.
3809         * modules/mbuiter (Depends-on): Likewise.
3810         Reported by Simon Josefsson.
3811
3812 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
3813
3814         Work around problem reported by Steven M. Schweda in
3815         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
3816         Tru64 5.1B with the Compaq compiler environment installed declares
3817         an 'isblank' function but does not define it in the C library.
3818         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
3819         * lib/regex_internal.h (isblank): Likewise.
3820         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
3821         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
3822
3823 2007-06-05  Bruno Haible  <bruno@clisp.org>
3824
3825         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
3826         ia64.
3827         * modules/printf-safe: New file.
3828         * modules/fprintf-posix (Depends-on): Add printf-safe.
3829         * modules/printf-posix (Depends-on): Likewise.
3830         * modules/snprintf-posix (Depends-on): Likewise.
3831         * modules/sprintf-posix (Depends-on): Likewise.
3832         * modules/vasnprintf-posix (Depends-on): Likewise.
3833         * modules/vasprintf-posix (Depends-on): Likewise.
3834         * modules/vfprintf-posix (Depends-on): Likewise.
3835         * modules/vprintf-posix (Depends-on): Likewise.
3836         * modules/vsnprintf-posix (Depends-on): Likewise.
3837         * modules/vsprintf-posix (Depends-on): Likewise.
3838         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
3839         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
3840         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
3841         "no" on i386, x86_64, ia64.
3842         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
3843         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
3844         on i386, x86_64, ia64.
3845         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
3846         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
3847         on i386, x86_64, ia64.
3848         * tests/test-vasnprintf-posix.c: Include float.h.
3849         (LDBL80_WORDS): New macro.
3850         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
3851         on i386, x86_64, ia64.
3852         * tests/test-vasprintf-posix.c: Include float.h.
3853         (LDBL80_WORDS): New macro.
3854         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
3855         on i386, x86_64, ia64.
3856         * tests/test-snprintf-posix.c: Include float.h.
3857         * tests/test-sprintf-posix.c: Likewise.
3858         * tests/test-vsnprintf-posix.c: Likewise.
3859         * tests/test-vsprintf-posix.c: Likewise.
3860
3861 2007-06-05  Bruno Haible  <bruno@clisp.org>
3862
3863         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
3864         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
3865         non-IEEE numbers on i386, x86_64, ia64.
3866         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
3867         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
3868         * tests/test-isnanl.h: Include float.h.
3869         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
3870
3871 2007-06-05  Bruno Haible  <bruno@clisp.org>
3872
3873         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
3874         also the %a / %A. Handle the %a / %A code before this extra handling.
3875
3876 2007-06-05  Bruno Haible  <bruno@clisp.org>
3877
3878         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
3879         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
3880
3881 2007-06-05  Bruno Haible  <bruno@clisp.org>
3882
3883         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
3884         typo in variable name.
3885
3886 2007-06-05  Eric Blake  <ebb9@byu.net>
3887
3888         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
3889         Reported by Simon Josefsson.
3890
3891 2007-06-04  Bruno Haible  <bruno@clisp.org>
3892
3893         Avoid test failures on some PowerPC platforms.
3894         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
3895         Define differently for PowerPC.
3896         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
3897         Reported by Gary V. Vaughan <gary@gnu.org>.
3898
3899 2007-06-02  Bruno Haible  <bruno@clisp.org>
3900
3901         Fix test-stdint failure on FreeBSD/ia64.
3902         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
3903         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
3904         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
3905         * doc/headers/stdint.texi: Update.
3906
3907 2007-06-01  Bruno Haible  <bruno@clisp.org>
3908
3909         * tests/test-binary-io.c (main): Pass a third argument to open().
3910         Reported by Gary V. Vaughan <gary@gnu.org>.
3911
3912 2007-06-01  Bruno Haible  <bruno@clisp.org>
3913
3914         * doc/functions/frexpl.texi: Update for mingw.
3915
3916 2007-06-01  Bruno Haible  <bruno@clisp.org>
3917
3918         * tests/test-lseek.c (main): Disable test of errno for invalid third
3919         argument.
3920         * doc/functions/lseek.texi: Update.
3921         Reported by Gary V. Vaughan <gary@gnu.org>.
3922
3923 2007-05-28  Bruno Haible  <bruno@clisp.org>
3924
3925         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
3926
3927 2007-05-31  Eric Blake  <ebb9@byu.net>
3928
3929         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
3930         cross compiling.
3931
3932 2007-05-30  Eric Blake  <ebb9@byu.net>
3933         and Bruno Haible  <bruno@clisp.org>
3934
3935         Work around mingw test failures exposed by m4-1.4.9b.
3936         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
3937         * tests/test-unistd.c: Disable uid_t and git_t tests for the
3938         moment.
3939
3940 2007-05-30  Bruno Haible  <bruno@clisp.org>
3941
3942         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
3943         assuming that they are closed. Needed on HP-UX 11.
3944
3945 2007-05-29  Bruno Haible  <bruno@clisp.org>
3946
3947         Fix a problem with #include_next.
3948         * lib/dirent_.h: Split the double-inclusion guard.
3949         * lib/fcntl_.h: Likewise.
3950         * lib/float_.h: Likewise.
3951         * lib/iconv_.h: Likewise.
3952         * lib/inttypes_.h: Likewise.
3953         * lib/locale_.h: Likewise.
3954         * lib/math_.h: Likewise.
3955         * lib/netinet_in_.h: Likewise.
3956         * lib/search_.h: Likewise.
3957         * lib/signal_.h: Likewise.
3958         * lib/stdint_.h: Likewise.
3959         * lib/stdio_.h: Likewise.
3960         * lib/stdlib_.h: Likewise.
3961         * lib/string_.h: Likewise.
3962         * lib/sys_select_.h: Likewise.
3963         * lib/sys_socket_.h: Likewise.
3964         * lib/sys_stat_.h: Likewise.
3965         * lib/sys_time_.h: Likewise.
3966         * lib/sysexits_.h: Likewise.
3967         * lib/time_.h: Likewise.
3968         * lib/unistd_.h: Likewise.
3969         * lib/wchar_.h: Likewise.
3970         * lib/wctype_.h: Likewise.
3971
3972 2007-05-29  Bruno Haible  <bruno@clisp.org>
3973
3974         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
3975         for the moment.
3976
3977 2007-05-29  Bruno Haible  <bruno@clisp.org>
3978
3979         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
3980         invocation.
3981         Reported by Eric Blake.
3982
3983 2007-05-29  Bruno Haible  <bruno@clisp.org>
3984
3985         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
3986         compiling case.
3987
3988 2007-05-29  Eric Blake  <ebb9@byu.net>
3989             Bruno Haible  <bruno@clisp.org>
3990
3991         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
3992         cross compiles.
3993
3994 2007-05-28  Eric Blake  <ebb9@byu.net>
3995
3996         * modules/closein-tests (test_closein_LDADD): Support test on
3997         cygwin with libtool.
3998
3999 2007-05-28  Bruno Haible  <bruno@clisp.org>
4000
4001         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
4002         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
4003         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
4004         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
4005         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
4006         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
4007         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
4008         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
4009         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
4010
4011 2007-05-28  Eric Blake  <ebb9@byu.net>
4012
4013         Unconditionally include <config.h> in unit tests.
4014         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
4015         * tests/test-allocsa.c, tests/test-arcfour.c,
4016         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
4017         tests/test-array_list.c, tests/test-array_oset.c,
4018         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
4019         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
4020         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
4021         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
4022         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
4023         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
4024         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
4025         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
4026         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
4027         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
4028         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
4029         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
4030         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
4031         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
4032         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
4033         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
4034         test-md5.c, test-memmem.c, test-printf-posix.c,
4035         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
4036         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
4037         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
4038         test-strcasestr.c, test-striconv.c, test-striconveh.c,
4039         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
4040         test-vasnprintf-posix2.c, test-vasnprintf.c,
4041         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
4042         test-vfprintf-posix.c, test-vprintf-posix.c,
4043         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
4044         test-xvasprintf.c: Likewise.
4045
4046 2007-05-28  Bruno Haible  <bruno@clisp.org>
4047
4048         * gnulib-tool (func_import): Remember the --with-tests command-line
4049         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
4050         Reported by Eric Blake.
4051
4052 2007-05-28  Bruno Haible  <bruno@clisp.org>
4053
4054         * modules/ftell-tests: New file.
4055         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
4056         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
4057
4058         * lib/ftell.c: New file.
4059         * modules/ftell: New file.
4060         * m4/ftell.m4: New file.
4061         * doc/functions/ftell.texi: Update.
4062         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
4063         REPLACE_FTELL.
4064         * lib/stdio_.h (rpl_ftell): New declaration.
4065         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
4066         REPLACE_FTELL.
4067
4068 2007-05-28  Eric Blake  <ebb9@byu.net>
4069
4070         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
4071
4072 2007-05-28  Bruno Haible  <bruno@clisp.org>
4073
4074         * modules/fseek-tests: New file.
4075         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
4076         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
4077
4078         * lib/fseek.c: New file.
4079         * modules/fseek: New file.
4080         * m4/fseek.m4: New file.
4081         * doc/functions/fseek.texi: Update.
4082         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
4083         REPLACE_FSEEK.
4084         * lib/stdio_.h (rpl_fseek): New declaration.
4085         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
4086         REPLACE_FSEEK.
4087
4088 2007-05-28  Bruno Haible  <bruno@clisp.org>
4089
4090         * lib/stdio_.h (fflush): More comments.
4091
4092 2007-05-28  Bruno Haible  <bruno@clisp.org>
4093
4094         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
4095         runtime test.
4096
4097 2007-05-28  Eric Blake  <ebb9@byu.net>
4098
4099         Improve lseek module.
4100         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
4101         * lib/unistd_.h (lseek): Scale back link warning message.
4102         * tests/test-lseek.c: Beef up test.
4103         * tests/test-lseek.sh: Exercise more facets of lseek.
4104         Reported by Bruno Haible.
4105
4106 2007-05-28  Bruno Haible  <bruno@clisp.org>
4107
4108         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
4109         to define.
4110
4111 2007-05-27  Bruno Haible  <bruno@clisp.org>
4112
4113         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
4114
4115 2007-05-27  Bruno Haible  <bruno@clisp.org>
4116
4117         * modules/openmp: New file.
4118         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
4119         Noah Misch.
4120
4121 2007-05-26  Bruno Haible  <bruno@clisp.org>
4122
4123         * modules/chdir-long (Depends-on): Add fchdir.
4124         * modules/chdir-safer (Depends-on): Likewise.
4125         * modules/fts (Depends-on): Likewise.
4126         * modules/fts-lgpl (Depends-on): Likewise.
4127         * modules/openat (Depends-on): Likewise.
4128         * modules/savewd (Depends-on): Likewise.
4129
4130 2007-05-24  Eric Blake  <ebb9@byu.net>
4131
4132         Fix lseek on mingw.
4133         * modules/lseek: New module.
4134         * m4/lseek.m4: New file.
4135         * lib/lseek.c: New file.
4136         * modules/lseek-tests: New file.
4137         * tests/test-lseek.c: New file.
4138         * tests/test-lseek.sh: New file.
4139         * MODULES.html.sh: Document lseek module.
4140         * modules/fflush (Depends-on): Add lseek, fseeko.
4141         * modules/fseeko (Depends-on): Likewise.
4142         * modules/ftello (Depends-on): Likewise.
4143         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
4144         broken.
4145         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
4146         broken.
4147         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
4148         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
4149         * lib/ftello.c (rpl_ftello): Likewise.
4150         * tests/test-fseeko.c (main): Test this.
4151         * tests/test-fseeko.sh: Likewise.
4152         * tests/test-ftello.c (main): Likewise.
4153         * tests/test-ftello.sh: Likewise.
4154         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
4155         implies replacing fseek.
4156         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
4157         HAVE_FTELLO.
4158         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
4159         * modules/unistd (Makefile.am): Likewise.
4160         * lib/unistd_.h (lseek): Declare a replacement.
4161         * doc/functions/lseek.texi (lseek): Document this fix.
4162         * doc/functions/fseek.texi (fseek): Likewise.
4163         * doc/functions/ftell.texi (ftell): Likewise.
4164
4165 2007-05-24  Bruno Haible  <bruno@clisp.org>
4166
4167         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
4168         in the printed representation of a NaN.
4169         * tests/test-vasprintf-posix.c (test_function): Likewise.
4170         * tests/test-snprintf-posix.h (test_function): Likewise.
4171         * tests/test-sprintf-posix.h (test_function): Likewise.
4172         Reported by Eric Blake.
4173
4174 2007-05-23  Eric Blake  <ebb9@byu.net>
4175
4176         Fix fseeko/ftello on cygwin 1.5.24.
4177         * doc/functions/fseeko.texi (fseeko): Document the fix.
4178         * doc/functions/ftello.texi (ftello): Document the fix.
4179         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
4180         * doc/functions/stdout.text (stdout): New file.
4181         * doc/functions/stderr.text (stderr): New file.
4182         * doc/gnulib.texi (Function Substitutes): Use new files.
4183         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
4184         prior to 1.7.0.
4185         * tests/test-ftello.c (main): Likewise for ftello.
4186         * tests/test-fseeko.sh: New file.
4187         * tests/test-ftello.sh: New file.
4188         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
4189         with seekable stdin.
4190         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
4191         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
4192         (gl_REPLACE_FSEEKO): New macro.
4193         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
4194         * modules/fseeko (Files): Distribute fseeko.c.
4195         * modules/ftello (Files): Distribute ftello.c.
4196         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
4197         mode.
4198         * lib/ftello.c (rpl_ftello): New file.
4199         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
4200         fseeko, ftello.
4201         (gl_STDIN_LARGE_OFFSET): New macro.
4202         * modules/stdio (Makefile.am): Perform the replacement.
4203         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
4204
4205 2007-05-23  Bruno Haible  <bruno@clisp.org>
4206
4207         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
4208         GNULIB_POSIXCHECK is defined.
4209
4210 2007-05-21  Bruno Haible  <bruno@clisp.org>
4211
4212         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
4213         Check also the output for NaN arguments. When cross-compiling, guess
4214         no on IRIX.
4215         * lib/vasnprintf.c: Update comments.
4216         * tests/test-vasnprintf-posix.c (strisnan): New function.
4217         (test_function): Use it.
4218         * tests/test-vasprintf-posix.c (strisnan): New function.
4219         (test_function): Use it.
4220         * tests/test-snprintf-posix.h (strisnan): New function.
4221         (test_function): Use it.
4222         * tests/test-sprintf-posix.h (strisnan): New function.
4223         (test_function): Use it.
4224         Reported by Eric Blake.
4225
4226 2007-05-20  Bruno Haible  <bruno@clisp.org>
4227
4228         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
4229         numbers that fails on BeOS.
4230         * doc/functions/frexpl.texi: Update.
4231
4232 2007-05-20  Jim Meyering  <jim@meyering.net>
4233
4234         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
4235         forced upon us by glibc-2.6.
4236
4237 2007-05-20  Bruno Haible  <bruno@clisp.org>
4238
4239         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
4240         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
4241         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
4242         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
4243         NEED_PRINTF_INFINITE.
4244         (is_infinitel): New function.
4245         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
4246         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
4247         gl_PREREQ_VASNPRINTF_INFINITE.
4248         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
4249         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4250         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
4251         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
4252         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
4253         gl_PREREQ_VASNPRINTF_INFINITE.
4254         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4255         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4256         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4257         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4258         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4259         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4260         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4261         * doc/functions/fprintf.texi: Update.
4262         * doc/functions/printf.texi: Update.
4263         * doc/functions/snprintf.texi: Update.
4264         * doc/functions/sprintf.texi: Update.
4265         * doc/functions/vfprintf.texi: Update.
4266         * doc/functions/vprintf.texi: Update.
4267         * doc/functions/vsnprintf.texi: Update.
4268         * doc/functions/vsprintf.texi: Update.
4269
4270 2007-05-20  Bruno Haible  <bruno@clisp.org>
4271
4272         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
4273         was not found in libc.
4274         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
4275
4276 2007-05-20  Bruno Haible  <bruno@clisp.org>
4277
4278         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
4279         printed as "-nan" instead of "nan".
4280         * tests/test-vasprintf-posix.c (test_function): Likewise.
4281         * tests/test-snprintf-posix.h (test_function): Likewise.
4282         * tests/test-sprintf-posix.h (test_function): Likewise.
4283         Needed for HP-UX 11.
4284
4285 2007-05-20  Jim Meyering  <jim@meyering.net>
4286
4287         Fix buggy test for the fchownat-deref bug.
4288         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
4289         symlink required for the run-test.  Without it, this test would
4290         always declare that fchownat doesn't work, and client code would
4291         unnecessarily use the replacement function with fixed libc.
4292         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
4293         Reported by Greg Schafer.
4294
4295 2007-05-19  Bruno Haible  <bruno@clisp.org>
4296
4297         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
4298         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
4299         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
4300         Needed for IRIX 6.5 and Solaris 2.5.1.
4301
4302 2007-05-19  Bruno Haible  <bruno@clisp.org>
4303
4304         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
4305         (test_function): Skip tests involving -0.0 on platforms where
4306         -0.0 = 0.0.
4307         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
4308         (test_function): Skip tests involving -0.0 on platforms where
4309         -0.0 = 0.0.
4310         * tests/test-snprintf-posix.h (have_minus_zero): New function.
4311         (test_function): Skip tests involving -0.0 on platforms where
4312         -0.0 = 0.0.
4313         * tests/test-sprintf-posix.h (have_minus_zero): New function.
4314         (test_function): Skip tests involving -0.0 on platforms where
4315         -0.0 = 0.0.
4316         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
4317         tests.
4318         * tests/test-printf-posix.h (test_function): Likewise.
4319         * tests/test-printf-posix.output: Remove all -0.0 related results.
4320         Needed for IRIX 6.5.
4321
4322 2007-05-19  Bruno Haible  <bruno@clisp.org>
4323
4324         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
4325         printed as "nan0x7fffffff" instead of "nan".
4326         * tests/test-vasprintf-posix.c (test_function): Likewise.
4327         * tests/test-snprintf-posix.h (test_function): Likewise.
4328         * tests/test-sprintf-posix.h (test_function): Likewise.
4329         * tests/test-fprintf-posix.h (NaN): Remove macro.
4330         (test_function): Remove all NaN related tests.
4331         * tests/test-printf-posix.h (NaN): Remove macro.
4332         (test_function): Remove all NaN related tests.
4333         * tests/test-printf-posix.output: Remove all NaN related results.
4334         Needed for IRIX 6.5.
4335
4336 2007-05-19  Bruno Haible  <bruno@clisp.org>
4337
4338         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
4339         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
4340
4341 2007-05-19  Bruno Haible  <bruno@clisp.org>
4342
4343         * lib/float_.h: New file.
4344         * m4/float_h.m4: New file.
4345         * modules/float: New file.
4346         * modules/isnanl (Dependencies): Add float.
4347         * modules/isnanl-nolibm (Dependencies): Likewise.
4348         * modules/mathl (Dependencies): Likewise.
4349         * modules/printf-frexpl (Dependencies): Likewise.
4350         * modules/signbit (Dependencies): Likewise.
4351         * modules/vasnprintf (Dependencies): Likewise.
4352         * doc/headers/float.texi: Update.
4353
4354 2007-05-19  Jim Meyering  <jim@meyering.net>
4355
4356         * lib/utimens.c (gl_futimens): Rename from futimens,
4357         now that glibc-2.6 declares futimens.
4358         * lib/utimens.h: Likewise.
4359
4360 2007-05-19  Bruno Haible  <bruno@clisp.org>
4361
4362         Avoid test failures on mingw.
4363         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
4364         * tests/test-printf-posix.sh: Likewise.
4365         * tests/test-vfprintf-posix.sh: Likewise.
4366         * tests/test-vprintf-posix.sh: Likewise.
4367
4368 2007-05-19  Bruno Haible  <bruno@clisp.org>
4369
4370         Fix *printf result for NaN, Inf, -0.0 on mingw.
4371         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
4372         * lib/vasnprintf.c: Include math.h and isnan.h.
4373         (is_infinite_or_zero): New function.
4374         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
4375         values in the %f, %F, %e, %E, %g, %G directives.
4376         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
4377         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4378         gl_PRINTF_INFINITE and test its result. Invoke
4379         gl_PREREQ_VASNPRINTF_INFINITE.
4380         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4381         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4382         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4383         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4384         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4385         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4386         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4387         * doc/functions/fprintf.texi: Update.
4388         * doc/functions/printf.texi: Update.
4389         * doc/functions/snprintf.texi: Update.
4390         * doc/functions/sprintf.texi: Update.
4391         * doc/functions/vfprintf.texi: Update.
4392         * doc/functions/vprintf.texi: Update.
4393         * doc/functions/vsnprintf.texi: Update.
4394         * doc/functions/vsprintf.texi: Update.
4395
4396 2007-05-19  Bruno Haible  <bruno@clisp.org>
4397
4398         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
4399         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
4400         Instead of multiplying with 10^k, set extra_zeroes to k.
4401         (scale10_round_long_double): Remove function.
4402
4403 2007-05-18  Bruno Haible  <bruno@clisp.org>
4404
4405         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
4406         introduced on 2007-05-06.
4407
4408 2007-05-18  Bruno Haible  <bruno@clisp.org>
4409
4410         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
4411         %g directives.
4412         * tests/test-vasprintf-posix.c (test_function): Likewise.
4413         * tests/test-snprintf-posix.h (test_function): Likewise.
4414         * tests/test-sprintf-posix.h (test_function): Likewise.
4415
4416 2007-05-18  Bruno Haible  <bruno@clisp.org>
4417
4418         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
4419         (strmatch): New function.
4420         (test_function): Test the %f directive on numbers of various exponents.
4421         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
4422         (strmatch): New function.
4423         (test_function): Test the %f directive on numbers of various exponents.
4424         * tests/test-snprintf-posix.h (strmatch): New function.
4425         (test_function): Test the %f directive on numbers of various exponents.
4426         * tests/test-sprintf-posix.h (strmatch): New function.
4427         (test_function): Test the %f directive on numbers of various exponents.
4428         * tests/test-snprintf-posix.c (SIZEOF): New macro.
4429         * tests/test-sprintf-posix.c (SIZEOF): New macro.
4430         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
4431         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
4432
4433 2007-05-18  Bruno Haible  <bruno@clisp.org>
4434
4435         Add support for 'long double' number output.
4436         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
4437         * lib/vasnprintf.c: Include math.h and float+.h.
4438         (mp_limb_t): New type.
4439         (GMP_LIMB_BITS): New macro.
4440         (mp_twolimb_t): New type.
4441         (GMP_TWOLIMB_BITS): New macro.
4442         (mpn_t): New type.
4443         (multiply, divide, convert_to_decimal, decode_long_double,
4444         scale10_round_long_double, scale10_round_decimal_long_double,
4445         floorlog10l): New functions.
4446         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
4447         for the %f, %F, %e, %E, %g, %G directives.
4448         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
4449         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4450         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
4451         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
4452         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4453         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4454         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4455         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4456         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4457         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4458         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4459         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
4460         * modules/snprintf-posix (Depends-on): Likewise.
4461         * modules/sprintf-posix (Depends-on): Likewise.
4462         * modules/vasnprintf-posix (Depends-on): Likewise.
4463         * modules/vasprintf-posix (Depends-on): Likewise.
4464         * modules/vfprintf-posix (Depends-on): Likewise.
4465         * modules/vsnprintf-posix (Depends-on): Likewise.
4466         * modules/vsprintf-posix (Depends-on): Likewise.
4467         * modules/vasnprintf (Files): Add lib/float+.h.
4468         * doc/functions/fprintf.texi: Update.
4469         * doc/functions/printf.texi: Update.
4470         * doc/functions/snprintf.texi: Update.
4471         * doc/functions/sprintf.texi: Update.
4472         * doc/functions/vfprintf.texi: Update.
4473         * doc/functions/vprintf.texi: Update.
4474         * doc/functions/vsnprintf.texi: Update.
4475         * doc/functions/vsprintf.texi: Update.
4476
4477 2007-05-18  Bruno Haible  <bruno@clisp.org>
4478
4479         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
4480
4481 2007-05-18  Bruno Haible  <bruno@clisp.org>
4482
4483         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
4484         for printing 64-bit integers. Needed for mingw.
4485
4486 2007-05-18  Bruno Haible  <bruno@clisp.org>
4487
4488         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
4489         gl_FUNC_FREXPL_WORKS.
4490         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
4491
4492 2007-05-18  Bruno Haible  <bruno@clisp.org>
4493
4494         * modules/frexpl-nolibm-tests: New file.
4495
4496         * modules/frexpl-nolibm: New file.
4497         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
4498
4499 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
4500
4501         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
4502         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
4503         GCC 4.2, which otherwise issues a lot of warnings.
4504         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
4505         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
4506         Likewise.
4507         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
4508         * modules/iconv_open (iconv.h): Likewise.
4509         * modules/locale (locale.h): Likewise.
4510         * modules/netinet_in (netinet/in.h): Likewise.
4511         * modules/sys_select (sys_select.h): Likewise.
4512         * modules/sys_socket (sys/socket.h): Likewise.
4513         * modules/sys_stat (sys/stat.h): Likewise.
4514         * modules/sysexits (sysexits.h): Likewise.
4515         * modules/unistd (unistd.h): Likewise.
4516
4517 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4518
4519         * modules/closein-tests (Makefile.am): Distribute
4520         `test-closein.sh'.
4521
4522 2007-05-17  Bruno Haible  <bruno@clisp.org>
4523
4524         * tests/test-printf-posix.output: Renamed from
4525         tests/test-fprintf-posix.out.
4526         * modules/fprintf-posix-tests: Update.
4527         * modules/printf-posix-tests: Update.
4528         * modules/vfprintf-posix-tests: Update.
4529         * modules/vprintf-posix-tests: Update.
4530         * tests/test-fprintf-posix.sh: Update.
4531         * tests/test-printf-posix.sh: Update.
4532         * tests/test-vfprintf-posix.sh: Update.
4533         * tests/test-vprintf-posix.sh: Update.
4534         Reported by Ralf Wildenhues.
4535
4536 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
4537
4538         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
4539         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
4540         GCC 4.2, which otherwise issues a lot of warnings.
4541         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
4542         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
4543         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
4544         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
4545         it should no longer be needed.
4546         * lib/string_.h: Likewise.
4547         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
4548         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
4549         * modules/inttypes (inttypes.h): Likewise.
4550         * modules/math (math.h): Likewise.
4551         * modules/search (search.h): Likewise.
4552         * modules/signal (signal.h): Likewise.
4553         * modules/stdint (stdint.h): Likewise.
4554         * modules/stdio (stdio.h): Likewise.
4555         * modules/stdlib (stdlib.h): Likewise.
4556         * modules/string (string.h): Likewise.
4557         * modules/sys_time (sys/time.h): Likewise.
4558         * modules/time (time.h): Likewise.
4559         * modules/wchar (wchar.h): Likewise.
4560         * modules/wctype (wtype.h): Likewise.
4561
4562 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
4563
4564         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
4565
4566 2007-05-13  Bruno Haible  <bruno@clisp.org>
4567
4568         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
4569         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
4570         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
4571         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4572         (gl_PREREQ_STRTOK_R): Don't require it here.
4573
4574 2007-05-13  Bruno Haible  <bruno@clisp.org>
4575
4576         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
4577         when used in C++ mode.
4578
4579 2007-05-12  Bruno Haible  <bruno@clisp.org>
4580
4581         * lib/linebuffer.h: Tweak doc.
4582         * lib/linebuffer.c: Likewise.
4583
4584 2007-05-12  James Youngman  <jay@gnu.org>
4585
4586         * lib/linebuffer.c (readlinebuffer_delim): New function,
4587         like readlinebuffer, but use a caller-specified delimiter.
4588         (readlinebuffer): Just call readlinebuffer_delim with '\n'
4589         as the delimiter.
4590         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
4591
4592 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4593
4594         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
4595         * modules/openat (Files): Remove openat-die.c.
4596         (Depends-on): Add openat-die.
4597         * modules/openat-die: New module.
4598
4599 2007-05-06  Bruno Haible  <bruno@clisp.org>
4600
4601         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
4602         Update with info about Cygwin.
4603         * doc/functions/fprintf.texi: Update.
4604         * doc/functions/printf.texi: Update.
4605         * doc/functions/snprintf.texi: Update.
4606         * doc/functions/sprintf.texi: Update.
4607         * doc/functions/vfprintf.texi: Update.
4608         * doc/functions/vprintf.texi: Update.
4609         * doc/functions/vsnprintf.texi: Update.
4610         * doc/functions/vsprintf.texi: Update.
4611         Reported by Eric Blake.
4612
4613 2007-05-06  Bruno Haible  <bruno@clisp.org>
4614
4615         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
4616         padding ourselves for the floating-point directives.
4617         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
4618         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
4619         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
4620         gl_PRINTF_FLAG_ZERO and test its result. Invoke
4621         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
4622         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4623         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
4624         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4625         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4626         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4627         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4628         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4629         * tests/test-snprintf-posix.h (test_function): Also check the width
4630         and some flags in the %f directive.
4631         * tests/test-sprintf-posix.h (test_function): Likewise.
4632         * tests/test-vasnprintf-posix.c (test_function): Likewise.
4633         * tests/test-vasprintf-posix.c (test_function): Likewise.
4634         * doc/functions/fprintf.texi: Update.
4635         * doc/functions/printf.texi: Update.
4636         * doc/functions/snprintf.texi: Update.
4637         * doc/functions/sprintf.texi: Update.
4638         * doc/functions/vfprintf.texi: Update.
4639         * doc/functions/vprintf.texi: Update.
4640         * doc/functions/vsnprintf.texi: Update.
4641         * doc/functions/vsprintf.texi: Update.
4642
4643 2007-05-06  Bruno Haible  <bruno@clisp.org>
4644
4645         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
4646         pass the ' flag character to sprintf or snprintf.
4647         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
4648         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
4649         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
4650         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
4651         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
4652         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4653         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
4654         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4655         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4656         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4657         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4658         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4659         * tests/test-snprintf-posix.h (test_function): Also check the grouping
4660         flag.
4661         * tests/test-sprintf-posix.h (test_function): Likewise.
4662         * tests/test-vasnprintf-posix.c (test_function): Likewise.
4663         * tests/test-vasprintf-posix.c (test_function): Likewise.
4664         * doc/functions/fprintf.texi: Update.
4665         * doc/functions/printf.texi: Update.
4666         * doc/functions/snprintf.texi: Update.
4667         * doc/functions/sprintf.texi: Update.
4668         * doc/functions/vfprintf.texi: Update.
4669         * doc/functions/vprintf.texi: Update.
4670         * doc/functions/vsnprintf.texi: Update.
4671         * doc/functions/vsprintf.texi: Update.
4672
4673 2007-05-01  Bruno Haible  <bruno@clisp.org>
4674
4675         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
4676
4677 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
4678
4679         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
4680         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
4681
4682 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
4683
4684         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
4685         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
4686         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
4687
4688 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
4689
4690         * lib/argp-help.c (struct hol_entry): New member `ord'.
4691         (HOL_ENTRY_PTRCMP): Use ord for comparison
4692         (hol_sort): Initialize ord.
4693
4694 2007-05-01  Bruno Haible  <bruno@clisp.org>
4695
4696         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
4697         Reported by Eric Blake.
4698         * doc/gnulib.texi (Function Substitutes): Update.
4699
4700 2007-05-01  Bruno Haible  <bruno@clisp.org>
4701
4702         * doc/functions.texi: Remove file, now redundant through
4703         doc/functions/*.texi.
4704
4705 2007-05-01  Bruno Haible  <bruno@clisp.org>
4706
4707         * modules/argp (Depends-on): Add sleep.
4708
4709 2007-05-01  Bruno Haible  <bruno@clisp.org>
4710
4711         * modules/sleep-tests: New file.
4712         * tests/test-sleep.c: New file.
4713
4714         * modules/sleep: New file.
4715         * lib/sleep.c: New file.
4716         * m4/sleep.m4: New file.
4717         * lib/unistd_.h (sleep): New declaration.
4718         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
4719         HAVE_SLEEP.
4720         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
4721         * doc/functions/sleep.texi: Document the sleep module.
4722
4723 2007-05-01  Bruno Haible  <bruno@clisp.org>
4724
4725         * lib/sigprocmask.h: Remove file.
4726         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
4727         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
4728         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
4729         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
4730         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
4731         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
4732         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
4733         HAVE_SIGSET_T as a shell variable.
4734         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
4735         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
4736         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
4737         (Depends-on): Add signal. Remove verify.
4738         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
4739         (Include): Mention <signal.h> instead of sigprocmask.h.
4740         * NEWS: Mention the change.
4741         * lib/fatal-signal.c: Don't include sigprocmask.h.
4742
4743 2007-05-01  Bruno Haible  <bruno@clisp.org>
4744
4745         * modules/signal: New file.
4746         * lib/signal_.h: New file.
4747         * m4/signal_h.m4: New file.
4748
4749 2007-05-01  Bruno Haible  <bruno@clisp.org>
4750
4751         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
4752         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
4753         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
4754         HAVE_WCTYPE_CTMP_BUG into wctype.h.
4755
4756 2007-05-01  Bruno Haible  <bruno@clisp.org>
4757
4758         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
4759         configure time.
4760         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
4761         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
4762         * modules/sys_stat (Makefile.am): Substitute their values into
4763         sys/stat.h.
4764
4765 2007-05-01  Bruno Haible  <bruno@clisp.org>
4766
4767         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
4768         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
4769         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
4770
4771 2007-05-01  Bruno Haible  <bruno@clisp.org>
4772
4773         * doc/header/assert.texi: Undo last change: don't mention the gnulib
4774         'assert' module here.
4775
4776 2007-05-01  Bruno Haible  <bruno@clisp.org>
4777
4778         * doc/functions/*.texi: New files.
4779         * doc/functions/google-ranking.txt: New file.
4780         * doc/gnulib.texi (Function Substitutes): New chapter.
4781         (ctime, inet_ntoa): Remove sections.
4782         * doc/ctime.texi: Remove file.
4783         * doc/inet_ntoa.texi: Remove file.
4784         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
4785         dependencies.
4786         (%.info): New rule, specifying a --reference-limit.
4787
4788 2007-05-01  Bruno Haible  <bruno@clisp.org>
4789
4790         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
4791
4792 2007-05-01  Bruno Haible  <bruno@clisp.org>
4793
4794         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
4795         the portability of 'mkdir' to mingw systems.
4796
4797 2007-05-01  Bruno Haible  <bruno@clisp.org>
4798
4799         * doc/headers/google-ranking.txt: New file.
4800
4801 2007-04-30  Eric Blake  <ebb9@byu.net>
4802
4803         Prefer fseeko to fseek.
4804         * modules/getpass (Depends-on): Add fseeko.
4805         * lib/getpass.c (getpass): Use fseeko, not fseek.
4806
4807 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
4808
4809         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
4810         assumes the sorting is stable, while most qsort implementations
4811         are not.  Use argument addresses to ensure they never compare as
4812         equal.
4813
4814         * tests/test-argp-2.sh (usage-indent test): Fix output
4815         (func_compare): Restore diff options
4816         * tests/test-argp.c: Restore #include "progname.h"
4817
4818 2007-04-29  Bruno Haible  <bruno@clisp.org>
4819
4820         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
4821         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
4822         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
4823         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4824         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
4825         (configure.ac): Define CHECK_SNPRINTF_POSIX.
4826         (TESTS, check_PROGRAMS): Add test-snprintf.
4827         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
4828         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
4829         (TESTS, check_PROGRAMS): Add test-vsnprintf.
4830         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
4831         assertions that fail on HP-UX, OSF/1, or IRIX.
4832         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
4833
4834 2007-04-29  Bruno Haible  <bruno@clisp.org>
4835
4836         * MODULES.html.sh (posix_functions): Remove 'contents'.
4837
4838 2007-04-29  Karl Berry  <karl@gnu.org>
4839
4840         * config/srclist.txt (gendocs_template_min): new entry.
4841
4842 2007-04-29  Bruno Haible  <bruno@clisp.org>
4843
4844         Work around fpurge bug on BSD systems.
4845         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
4846         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
4847         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
4848         fpurge to rpl_fpurge if the system already has this function.
4849         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
4850         the case where the system already has this function. Correct invariants
4851         on BSD systems.
4852         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
4853         BSD systems.
4854
4855 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
4856
4857         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
4858         proposed by Sven Verdoolaege.
4859
4860         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
4861         options.
4862         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
4863         (usage and help tests): Update
4864
4865 2007-04-29  Bruno Haible  <bruno@clisp.org>
4866
4867         * tests/test-fflush.c (main): Use a file of size 17, not 10.
4868         Print more information in case of failure. Disable a test on BeOS.
4869
4870 2007-04-29  Bruno Haible  <bruno@clisp.org>
4871
4872         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
4873         This helps debugging on systems on which no gdb is available.
4874
4875 2007-04-29  Bruno Haible  <bruno@clisp.org>
4876
4877         * lib/freading.h: Improve comments.
4878         * lib/fwriting.h: Likewise.
4879         * tests/test-freading.c (main): Don't check freading immediately after
4880         repositioning. Needed for glibc.
4881
4882 2007-04-29  Bruno Haible  <bruno@clisp.org>
4883
4884         * lib/freading.c (freading): Trivial simplification.
4885
4886 2007-04-28  Bruno Haible  <bruno@clisp.org>
4887
4888         * tests/test-fwriting.c (main): Also test the interaction between
4889         fflush and fwriting.
4890         * modules/fwriting-tests (Depends-on): Add fflush.
4891
4892         * tests/test-freading.c (main): Also test the interaction between
4893         fflush and freading.
4894         * modules/freading-tests (Depends-on): Add fflush.
4895
4896 2007-04-28  Bruno Haible  <bruno@clisp.org>
4897
4898         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
4899         fseeko and ftello.
4900         Suggested by Eric Blake.
4901
4902 2007-04-28  Jim Meyering  <jim@meyering.net>
4903
4904         Avoid false-negative in gl_STDINT_H's C99 conformance test.
4905         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
4906         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
4907
4908 2007-04-27  Eric Blake  <ebb9@byu.net>
4909
4910         * doc/headers/assert.texi (assert.h): Document assert module use.
4911
4912 2007-04-27  Bruno Haible  <bruno@clisp.org>
4913
4914         * doc/headers/*.texi: New files.
4915         * doc/gnulib.texi (Header File Substitutes): New chapter.
4916         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
4917         dependencies.
4918         (standards.info ,standards.html, standards.dvi): Update dependencies.
4919         (mostlyclean, clean): New targets.
4920
4921 2007-04-27  Bruno Haible  <bruno@clisp.org>
4922
4923         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
4924         * modules/sysexits (Files, Makefile.am): Update.
4925
4926         * lib/sys_socket_.h: Renamed from lib/socket_.h.
4927         * modules/sys_socket (Files, Makefile.am): Update.
4928
4929         * lib/sys_stat_.h: Renamed from lib/stat_.h.
4930         * modules/sys_stat (Files, Makefile.am): Update.
4931
4932 2007-04-27  Eric Blake  <ebb9@byu.net>
4933
4934         * lib/freading.h: Improve comments.
4935         * lib/fwriting.h: Likewise.
4936         * lib/fflush.c: Likewise.
4937
4938         Fix closein for mingw.
4939         * modules/closein-tests: Add tests for closein.
4940         * tests/test-closein.c: New file.
4941         * tests/test-closein.sh: Likewise.
4942         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
4943         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
4944
4945 2007-04-27  Bruno Haible  <bruno@clisp.org>
4946
4947         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
4948         version is < 6.
4949         * lib/math_.h [__DECC]: Likewise.
4950         * lib/stdio_.h [__DECC]: Likewise.
4951         * lib/stdlib_.h [__DECC]: Likewise.
4952         * lib/string_.h [__DECC]: Likewise.
4953         * lib/time_.h [__DECC]: Likewise.
4954         * lib/wchar_.h [__DECC]: Likewise.
4955         * lib/wctype_.h [__DECC]: Likewise.
4956
4957 2007-04-27  Bruno Haible  <bruno@clisp.org>
4958
4959         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
4960
4961 2007-04-27  Bruno Haible  <bruno@clisp.org>
4962
4963         * lib/fflush.c: Add comments.
4964         * modules/fpurge-tests (Depends-on): Add fflush.
4965         * modules/freadable-tests (Depends-on): Likewise.
4966         * modules/fwritable-tests (Depends-on): Likewise.
4967
4968 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
4969
4970         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
4971         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
4972         Report by Bruno Haible <bruno@clisp.org>.
4973
4974 2007-04-26  Eric Blake  <ebb9@byu.net>
4975
4976         Fix fflush on mingw.
4977         * modules/fflush (Depends-on): Add freading.
4978         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
4979         but unread data.
4980
4981 2007-04-26  Eric Blake  <ebb9@byu.net>
4982         and Bruno Haible  <bruno@clisp.org>
4983
4984         Implement freading and fwriting.
4985         * lib/freading.c: New file.
4986         * lib/freading.h: Likewise.
4987         * m4/freading.m4: Likewise.
4988         * modules/freading: Likewise.
4989         * modules/freading-tests: Likewise.
4990         * tests/test-freading.c: Likewise.
4991         * lib/fwriting.c: New file.
4992         * lib/fwriting.h: Likewise.
4993         * m4/fwriting.m4: Likewise.
4994         * modules/fwriting: Likewise.
4995         * modules/fwriting-tests: Likewise.
4996         * tests/test-fwriting.c: Likewise.
4997         * MODULES.html.sh (File stream based Input/Output): Mention them.
4998
4999 2007-04-26  Bruno Haible  <bruno@clisp.org>
5000
5001         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
5002         'long' when we assume it.
5003         Suggested by Eric Blake.
5004
5005 2007-04-26  Bruno Haible  <bruno@clisp.org>
5006
5007         Ensure fseeko, ftello are declared on glibc systems.
5008         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
5009         * modules/fseeko (configure.ac-early): Likewise.
5010         * modules/ftello (configure.ac-early): Likewise.
5011         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
5012         AC_FUNC_FSEEKO for this.
5013         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
5014         (gl_CHECK_FSEEKO): Remove macro.
5015
5016 2007-04-26  Bruno Haible  <bruno@clisp.org>
5017
5018         * tests/test-fflush.c (main): Also check the ftell result after
5019         fflush and fseek/fseeko.
5020         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
5021         file descriptor position cache in the stream.
5022         * lib/fseeko.c (rpl_fseeko): Likewise.
5023
5024 2007-04-26  Bruno Haible  <bruno@clisp.org>
5025
5026         * modules/fflush-tests (Depends-on): Add fseeko.
5027
5028 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
5029             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5030
5031         * lib/argz_.h: ensure error_t definition is obtained in same
5032         mechanism system argz.h would have.
5033         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
5034         argz facilities are known bad.  Err on the side of caution if
5035         cross-compiling.
5036
5037 2007-04-25  Eric Blake  <ebb9@byu.net>
5038
5039         * lib/fpurge.c (includes): Use stdlib.h for free.
5040         * tests/test-fflush.c (main): Also test fflush-fseeko.
5041
5042 2007-04-25  Bruno Haible  <bruno@clisp.org>
5043
5044         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
5045         * lib/fseeko.c: New file.
5046         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
5047         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
5048         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
5049         gl_FUNC_FSEEKO.
5050         (gl_FUNC_FSEEKO): Invoke it.
5051         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
5052         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
5053         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
5054
5055 2007-04-25  Bruno Haible  <bruno@clisp.org>
5056
5057         * modules/fflush (Depends-on): Add ftello.
5058
5059 2007-04-25  Bruno Haible  <bruno@clisp.org>
5060
5061         * modules/ftello-tests: New file.
5062         * tests/test-ftello.c: New file.
5063
5064         * modules/ftello: New file.
5065         * m4/ftello.m4: New file.
5066         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
5067         HAVE_FTELLO.
5068         * lib/stdio_.h (ftello): New declaration.
5069         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
5070         HAVE_FTELLO.
5071
5072 2007-04-25  Bruno Haible  <bruno@clisp.org>
5073
5074         * modules/fseeko-tests: New file.
5075         * tests/test-fseeko.c: New file.
5076
5077         * modules/fseeko: New file.
5078         * m4/fseeko.m4: New file.
5079         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
5080         HAVE_FSEEKO.
5081         * lib/stdio_.h (fseeko): New declaration.
5082         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
5083         HAVE_FSEEKO.
5084
5085 2007-04-25  Bruno Haible  <bruno@clisp.org>
5086
5087         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
5088
5089 2007-04-25  Bruno Haible  <bruno@clisp.org>
5090
5091         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
5092         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
5093         * tests/test-unistd.c: Likewise.
5094         * tests/test-fcntl.c: Likewise.
5095
5096 2007-04-23  Eric Blake  <ebb9@byu.net>
5097
5098         * lib/fflush.c: Fix missing include.
5099         Reported by Bruno Haible.
5100
5101 2007-04-23  Bruno Haible  <bruno@clisp.org>
5102
5103         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
5104         Reported by Eric Blake.
5105
5106 2007-04-23  Bruno Haible  <bruno@clisp.org>
5107
5108         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
5109
5110 2007-04-23  Bruno Haible  <bruno@clisp.org>
5111
5112         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
5113
5114 2007-04-23  Bruno Haible  <bruno@clisp.org>
5115
5116         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
5117         Needed on HP-UX 11.
5118
5119 2007-04-16  Eric Blake  <ebb9@byu.net>
5120
5121         Make fflush rely on fpurge.
5122         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
5123         open coding all variants.
5124         * modules/fflush (Depends-on): Add fpurge and unistd.
5125         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
5126         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
5127
5128         Fix --with-tests compilation on cygwin.
5129         * modules/argmatch-tests (Makefile.am): List gnulib library first
5130         in LDADD.
5131         * modules/argp-tests (Makefile.am): Likewise.
5132         * modules/array-list-tests (Makefile.am): Likewise.
5133         * modules/array-oset-tests (Makefile.am): Likewise.
5134         * modules/avltree-list-tests (Makefile.am): Likewise.
5135         * modules/avltree-oset-tests (Makefile.am): Likewise.
5136         * modules/avltreehash-list-tests (Makefile.am): Likewise.
5137         * modules/carray-list-tests (Makefile.am): Likewise.
5138         * modules/dirname-tests (Makefile.am): Likewise.
5139         * modules/frexp-tests (Makefile.am): Likewise.
5140         * modules/isnanl-tests (Makefile.am): Likewise.
5141         * modules/linked-list-tests (Makefile.am): Likewise.
5142         * modules/linkedhash-list-tests (Makefile.am): Likewise.
5143         * modules/lock-tests (Makefile.am): Likewise.
5144         * modules/rbtree-list-tests (Makefile.am): Likewise.
5145         * modules/rbtree-oset-tests (Makefile.am): Likewise.
5146         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
5147         * modules/tls-tests (Makefile.am): Likewise.
5148         * modules/tsearch-tests (Makefile.am): Likewise.
5149         * modules/xvasprintf-tests (Makefile.am): Likewise.
5150
5151         Fix fpurge for cygwin.
5152         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
5153         value.
5154         * modules/fpurge-tests (Depends-on): Clean up trash.
5155
5156 2007-04-16  Simon Josefsson  <simon@josefsson.org>
5157
5158         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
5159
5160         * m4/autobuild.m4: Re-indent.
5161
5162 2007-04-13  Bruno Haible  <bruno@clisp.org>
5163
5164         * modules/fpurge-tests: New file.
5165         * tests/test-fpurge.c: New file.
5166
5167         * modules/fpurge: New file.
5168         * lib/fpurge.h: New file.
5169         * lib/fpurge.c: New file.
5170         * m4/fpurge.m4: New file.
5171
5172 2007-04-13  Bruno Haible  <bruno@clisp.org>
5173
5174         * modules/fbufmode-tests: New file.
5175         * tests/test-fbufmode.c: New file.
5176
5177         * modules/fbufmode: New file.
5178         * lib/fbufmode.h: New file.
5179         * lib/fbufmode.c: New file.
5180         * m4/fbufmode.m4: New file.
5181
5182 2007-04-13  Bruno Haible  <bruno@clisp.org>
5183
5184         * modules/fwritable-tests: New file.
5185         * tests/test-fwritable.c: New file.
5186
5187         * modules/fwritable: New file.
5188         * lib/fwritable.h: New file.
5189         * lib/fwritable.c: New file.
5190         * m4/fwritable.m4: New file.
5191
5192 2007-04-13  Bruno Haible  <bruno@clisp.org>
5193
5194         * modules/freadable-tests: New file.
5195         * tests/test-freadable.c: New file.
5196
5197         * modules/freadable: New file.
5198         * lib/freadable.h: New file.
5199         * lib/freadable.c: New file.
5200         * m4/freadable.m4: New file.
5201
5202 2007-04-13  Bruno Haible  <bruno@clisp.org>
5203
5204         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
5205         MOSTLYCLEANFILES.
5206
5207 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5208
5209         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
5210         gzip bootstrap.conf to avoid dragging in i18n machinery.
5211         (gnulib_tool_option): Use it.
5212
5213 2007-04-13  Bruno Haible  <bruno@clisp.org>
5214
5215         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
5216         %F directives.
5217         * tests/test-vasprintf-posix.c (test_function): Likewise.
5218         * tests/test-snprintf-posix.h (test_function): Likewise.
5219         * tests/test-sprintf-posix.h (test_function): Likewise.
5220         * tests/test-fprintf-posix.h (test_function): Likewise.
5221         * tests/test-printf-posix.h (test_function): Likewise.
5222         * tests/test-fprintf-posix.out: Likewise.
5223
5224 2007-04-13  Bruno Haible  <bruno@clisp.org>
5225
5226         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
5227         * modules/tls-tests (configure.ac): Likewise.
5228         Reported by Arto C. Nirkko <anirkko@insel.ch>.
5229
5230 2007-04-13  Bruno Haible  <bruno@clisp.org>
5231
5232         * lib/tls.c (glthread_tls_get): Fix return type.
5233         Patch by Arto C. Nirkko <anirkko@insel.ch>.
5234
5235 2007-04-12  Eric Blake  <ebb9@byu.net>
5236
5237         * modules/gettime (Depends-on): Remove gettime.
5238         Reported by Dmitry V. Levin.
5239
5240 2007-04-12  Bruno Haible  <bruno@clisp.org>
5241
5242         * modules/fflush (Include): Mention <stdio.h>.
5243         * modules/strtoimax (Include): Mention <inttypes.h>.
5244         * modules/strtoumax (Include): Likewise.
5245
5246 2007-04-12  Eric Blake  <ebb9@byu.net>
5247
5248         * .cvsignore: New file.
5249         * .gitignore: Likewise.
5250
5251 2007-04-12  Bruno Haible  <bruno@clisp.org>
5252
5253         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
5254         not before, since $(LDADD) often contains libgnu.a.
5255         * modules/striconv-tests (test_striconv_LDADD): Likewise.
5256         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
5257         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
5258         Needed on Cygwin.
5259
5260 2007-04-12  Eric Blake  <ebb9@byu.net>
5261
5262         Work around glibc's failure to flush stdin on fclose.
5263         * lib/closein.c (close_stdin): Flush stdin before closing.
5264
5265         Work around glibc's failure to reset seekable stdin on exit.
5266         * modules/closein: New module.
5267         * lib/closein.c: New file.
5268         * lib/closein.h: Likewise.
5269         * m4/closein.m4: Likewise.
5270         * MODULES.html.sh (File stream based Input/Output): Document it.
5271
5272 2007-04-12  Simon Josefsson  <simon@josefsson.org>
5273
5274         * gnulib-tool: Rename generated 'autobuild' script to
5275         'do-autobuild' in --create-megatestdir output.
5276
5277         * doc/gnulib.texi (Build robot for gnulib): Fix.
5278
5279 2007-04-12  Simon Josefsson  <simon@josefsson.org>
5280
5281         * modules/sysexits (Depends-on): Add absolute-header.
5282
5283 2007-04-12  Eric Blake  <ebb9@byu.net>
5284
5285         No need to preserve errno on success.
5286         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
5287         Reported by Bruno Haible.
5288
5289 2007-04-12  Simon Josefsson  <simon@josefsson.org>
5290
5291         * MODULES.html.sh (Support for maintaining and releasing
5292         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
5293
5294 2007-04-12  Simon Josefsson  <simon@josefsson.org>
5295
5296         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
5297
5298 2007-04-12  Simon Josefsson  <simon@josefsson.org>
5299
5300         * modules/autobuild: New module.
5301
5302         * m4/autobuild.m4: New file.
5303
5304 2007-04-11  Bruno Haible  <bruno@clisp.org>
5305
5306         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
5307         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
5308         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
5309         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
5310         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5311         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5312         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5313         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
5314         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5315         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5316         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
5317         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5318         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5319         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
5320         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5321         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5322         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
5323         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5324         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5325         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
5326         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5327         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5328         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
5329         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5330         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5331         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
5332         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
5333         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
5334         Reported by Eric Blake.
5335
5336 2007-04-11  Bruno Haible  <bruno@clisp.org>
5337
5338         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
5339
5340 2007-04-10  Bruno Haible  <bruno@clisp.org>
5341
5342         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
5343         for NaN and Infinity. Needed on FreeBSD 6.1.
5344         * tests/test-vasnprintf-posix.c (test_function): Undo last change
5345         regarding results for "%010a" of Infinity and NaN.
5346         * tests/test-vasprintf-posix.c (test_function): Likewise.
5347         * tests/test-snprintf-posix.h (test_function): Likewise.
5348         * tests/test-sprintf-posix.h (test_function): Likewise.
5349         * tests/test-fprintf-posix.h (test_function): Likewise.
5350         * tests/test-printf-posix.h (test_function): Likewise.
5351         * tests/test-fprintf-posix.out: Likewise.
5352
5353 2007-04-10  Bruno Haible  <bruno@clisp.org>
5354
5355         * modules/locale-tests: New file.
5356         * tests/test-locale.c: New file.
5357
5358         * modules/locale: New file.
5359         * lib/locale_.h: New file.
5360         * m4/locale_h.m4: New file.
5361
5362 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5363             Bruno Haible  <bruno@clisp.org>
5364
5365         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
5366         be determined, test for availability of the copysignf, copysign,
5367         copysignl functions.
5368         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
5369         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
5370         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
5371
5372 2007-04-09  Eric Blake  <ebb9@byu.net>
5373
5374         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
5375         * modules/stdio (Makefile.am): Support fflush.
5376         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
5377         * modules/fflush: New file.
5378         * lib/fflush.c: Likewise.
5379         * m4/fflush.m4: Likewise.
5380         * modules/fflush-tests: New test.
5381         * tests/test-fflush.c: Likewise.
5382         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
5383
5384 2007-04-06  Bruno Haible  <bruno@clisp.org>
5385
5386         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
5387         (VASNPRINTF): Use signbit for faster determination whether to print a
5388         minus sign.
5389         * modules/vasnprintf (Files): Remove lib/float+.h.
5390         * modules/fprintf-posix (Depends-on): Add signbit.
5391         * modules/snprintf-posix (Depends-on): Likewise.
5392         * modules/sprintf-posix (Depends-on): Likewise.
5393         * modules/vasnprintf-posix (Depends-on): Likewise.
5394         * modules/vasprintf-posix (Depends-on): Likewise.
5395         * modules/vfprintf-posix (Depends-on): Likewise.
5396         * modules/vsnprintf-posix (Depends-on): Likewise.
5397         * modules/vsprintf-posix (Depends-on): Likewise.
5398
5399 2007-04-06  Bruno Haible  <bruno@clisp.org>
5400
5401         * tests/test-frexp.c (main): Test also the sign bit of zero results.
5402         * tests/test-frexpl.c (main): Likewise.
5403         * tests/test-ldexpl.c (main): Likewise.
5404         * modules/frexp-tests (Depends-on): Add signbit.
5405         * modules/frexpl-tests (Depdends-on): Likewise.
5406         * modules/ldexpl-tests (Depdends-on): Likewise.
5407
5408 2007-04-06  Bruno Haible  <bruno@clisp.org>
5409
5410         * modules/signbit-tests: New file.
5411         * tests/test-signbit.c: New file.
5412
5413         * modules/signbit: New file.
5414         * lib/signbitf.c: New file.
5415         * lib/signbitd.c: New file.
5416         * lib/signbitl.c: New file.
5417         * m4/signbit.m4: New file.
5418         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
5419         (signbit): New macro.
5420         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
5421         REPLACE_SIGNBIT.
5422         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
5423         REPLACE_FREXPL into math.h.
5424
5425 2007-04-06  Bruno Haible  <bruno@clisp.org>
5426
5427         * modules/isnanf-nolibm-tests: New file.
5428         * tests/test-isnanf.c: New file.
5429
5430         * modules/isnanf-nolibm: New file.
5431         * lib/isnanf.h: New file.
5432         * lib/isnanf.c: New file.
5433         * lib/isnan.c: Consider the USE_FLOAT macro.
5434         * m4/isnanf.m4: New file.
5435
5436 2007-04-06  Bruno Haible  <bruno@clisp.org>
5437
5438         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
5439         (Link): New section.
5440
5441         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
5442
5443 2007-04-06  Bruno Haible  <bruno@clisp.org>
5444
5445         Assume the 'long double' type.
5446         * m4/longdouble.m4: Remove file.
5447         * config/srclist.txt: Don't mention longdouble.m4.
5448         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
5449         * lib/float+.h: Likewise.
5450         * lib/frexp.c: Likewise.
5451         * lib/printf-args.h: Likewise.
5452         * lib/printf-args.c: Likewise.
5453         * lib/printf-frexp.c: Likewise.
5454         * lib/printf-parse.c: Likewise.
5455         * lib/vasnprintf.c: Likewise.
5456         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
5457         * m4/intl.m4: Likewise.
5458         * m4/isnanl.m4: Likewise.
5459         * m4/printf.m4: Likewise.
5460         * m4/printf-frexpl.m4: Likewise.
5461         * m4/vasnprintf.m4: Likewise.
5462         * modules/allocsa (Files): Remove m4/longdouble.m4.
5463         * modules/gettext (Files): Likewise.
5464         * modules/relocatable-prog-wrapper (Files): Likewise.
5465         * modules/vasnprintf (Files): Likewise.
5466         * modules/isnanl (Files): Likewise.
5467         (Include): Simplify.
5468         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
5469         (Include): Simplify.
5470         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
5471         (Include): Simplify.
5472         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
5473         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5474         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
5475         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5476         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
5477         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5478         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
5479         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5480         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
5481         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5482         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
5483         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
5484         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
5485         * tests/test-isnanl.c: Likewise.
5486         * tests/test-snprintf-posix.h: Likewise.
5487         * tests/test-sprintf-posix.h: Likewise.
5488         * tests/test-vasnprintf-posix.c: Likewise.
5489         * tests/test-vasnprintf-posix2.c: Likewise.
5490         * tests/test-vasprintf-posix.c: Likewise.
5491
5492 2007-04-06  Bruno Haible  <bruno@clisp.org>
5493
5494         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
5495         * lib/math_.h [__DECC]: Include the overridden include file through
5496         #include_next, outside the double-inclusion guard.
5497         * lib/stdio_.h [__DECC]: Likewise.
5498         * lib/stdlib_.h [__DECC]: Likewise.
5499         * lib/string_.h [__DECC]: Likewise.
5500         * lib/time_.h [__DECC]: Likewise.
5501         * lib/wchar_.h [__DECC]: Likewise.
5502         * lib/wctype_.h [__DECC]: Likewise.
5503         * lib/inttypes_.h [__DECC]: Likewise.
5504         Reported by Albert Chin <china@thewrittenword.com> in
5505         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
5506
5507 2007-04-04  Eric Blake  <ebb9@byu.net>
5508
5509         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
5510         1.5.x.
5511
5512 2007-04-04  Bruno Haible  <bruno@clisp.org>
5513
5514         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
5515         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
5516
5517 2007-04-04  Bruno Haible  <bruno@clisp.org>
5518
5519         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
5520         results for "%010a" of Infinity and NaN.
5521         * tests/test-vasprintf-posix.c (test_function): Likewise.
5522         * tests/test-snprintf-posix.h (test_function): Likewise.
5523         * tests/test-sprintf-posix.h (test_function): Likewise.
5524         * tests/test-fprintf-posix.h (test_function): Remove these tests.
5525         * tests/test-printf-posix.h (test_function): Likewise.
5526         * tests/test-fprintf-posix.out: Update.
5527         Needed for FreeBSD 6.1.
5528
5529 2007-04-04  Bruno Haible  <bruno@clisp.org>
5530
5531         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
5532         directly used by the gnulib modules nor by gnulib-tool.
5533
5534 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
5535
5536         * DEPENDENCIES: Give overall description of version dependency
5537         desirability.  Use more-typical names for apps.
5538         Add shell, coreutils, diffutils, grep, tar, gzip.
5539
5540 2007-04-04  Simon Josefsson  <simon@josefsson.org>
5541
5542         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
5543
5544 2007-04-04  Karl Berry  <karl@gnu.org>
5545
5546         * MODULES.html.sh (func_module): missing '.
5547
5548 2007-04-03  Bruno Haible  <bruno@clisp.org>
5549
5550         * modules/argmatch-tests (Makefile.am): New variable
5551         test_argmatch_LDADD.
5552         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
5553         * modules/array-list-tests (Makefile.am): New variable
5554         test_array_list_LDADD.
5555         * modules/array-oset-tests (Makefile.am): New variable
5556         test_array_oset_LDADD.
5557         * modules/avltree-list-tests (Makefile.am): New variable
5558         test_avltree_list_LDADD.
5559         * modules/avltree-oset-tests (Makefile.am): New variable
5560         test_avltree_oset_LDADD.
5561         * modules/avltreehash-list-tests (Makefile.am): New variable
5562         test_avltreehash_list_LDADD.
5563         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
5564         test_canonicalize_lgpl_LDADD.
5565         * modules/carray-list-tests (Makefile.am): New variable
5566         test_carray_list_LDADD.
5567         * modules/dirname-tests (Makefile.am): New variable
5568         test_dirname_LDADD.
5569         * modules/linked-list-tests (Makefile.am): New variable
5570         test_linked_list_LDADD.
5571         * modules/linkedhash-list-tests (Makefile.am): New variable
5572         test_linkedhash_list_LDADD.
5573         * modules/rbtree-list-tests (Makefile.am): New variable
5574         test_rbtree_list_LDADD.
5575         * modules/rbtree-oset-tests (Makefile.am): New variable
5576         test_rbtree_oset_LDADD.
5577         * modules/rbtreehash-list-tests (Makefile.am): New variable
5578         test_rbtreehash_list_LDADD.
5579         * modules/xvasprintf-tests (Makefile.am): New variable
5580         test_xvasprintf_LDADD.
5581         Reported by Eric Blake.
5582
5583 2007-04-03  Eric Blake  <ebb9@byu.net>
5584
5585         * DEPENDENCIES: Weaken m4 requirements.
5586
5587 2007-04-03  Bruno Haible  <bruno@clisp.org>
5588
5589         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
5590         * modules/isnanl-tests (configure.ac): Likewise.
5591
5592 2007-04-03  Ben Pfaff  <blp@gnu.org>
5593
5594         * modules/iconv_open: Add $(srcdir)/ to source directory
5595         references in Makefile fragments that call gperf, to fix VPATH
5596         builds.
5597
5598 2007-04-03  Bruno Haible  <bruno@clisp.org>
5599
5600         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
5601         * lib/ldexpl.c: Undo last change.
5602
5603 2007-04-03  Bruno Haible  <bruno@clisp.org>
5604
5605         * modules/printf-frexpl (Depends-on): Undo last change.
5606         (Files): Add m4/ldexpl.m4.
5607
5608 2007-04-03  Bruno Haible  <bruno@clisp.org>
5609
5610         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
5611         * modules/isnanl (Link): New section.
5612
5613         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
5614         * modules/frexp (Link): New section.
5615
5616         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
5617         * modules/frexpl (Link): New section.
5618
5619         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
5620         * modules/ldexpl (Link): New section.
5621
5622 2007-04-03  Bruno Haible  <bruno@clisp.org>
5623
5624         * modules/TEMPLATE-EXTENDED: New file.
5625         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
5626
5627 2007-04-03  Bruno Haible  <bruno@clisp.org>
5628
5629         * DEPENDENCIES: New file.
5630         Suggested by Simon Josefsson.
5631
5632 2007-04-03  Bruno Haible  <bruno@clisp.org>
5633
5634         * doc/gnulib.texi: Escape @.
5635
5636 2007-04-03  James Youngman  <jay@gnu.org>
5637         and Paul Eggert  <eggert@cs.ucla.edu>
5638
5639         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
5640         birthtime on all systems that have birthtime, not just those which
5641         use st_birthtimensec rather than st_birthtim.  Putting zero in
5642         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
5643         that the birth time is not available for files on an NFS mount.
5644
5645 2007-04-03  Simon Josefsson  <simon@josefsson.org>
5646
5647         * modules/memxor: Move back from crypto/, suggested by Bruno.
5648         * modules/crypto/hmac-sha1: Fix memxor dependency.
5649
5650         * modules/crypto/gc: Moved from ../.
5651
5652 2007-04-02  Eric Blake  <ebb9@byu.net>
5653
5654         * lib/ldexpl.c (includes): Avoid libm.
5655
5656         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
5657
5658 2007-04-02  Bruno Haible  <bruno@clisp.org>
5659
5660         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
5661         on IRIX.
5662
5663 2007-04-02  Bruno Haible  <bruno@clisp.org>
5664
5665         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
5666         x86 or x86_64 platforms running MacOS X.
5667         Reported by Ryan Schmidt <@ryandesign.com>.
5668
5669 2007-04-02  Bruno Haible  <bruno@clisp.org>
5670
5671         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
5672         i386.
5673
5674 2007-04-01  Simon Josefsson  <simon@josefsson.org>
5675
5676         * modules/crypto/arcfour: Moved from ../.
5677         * modules/crypto/arcfour-tests: Moved from ../.
5678         * modules/crypto/arctwo: Moved from ../.
5679         * modules/crypto/arctwo-tests: Moved from ../.
5680         * modules/crypto/des: Moved from ../.
5681         * modules/crypto/des-tests: Moved from ../.
5682         * modules/crypto/gc-arcfour: Moved from ../.
5683         * modules/crypto/gc-arcfour-tests: Moved from ../.
5684         * modules/crypto/gc-arctwo: Moved from ../.
5685         * modules/crypto/gc-arctwo-tests: Moved from ../.
5686         * modules/crypto/gc-des: Moved from ../.
5687         * modules/crypto/gc-des-tests: Moved from ../.
5688         * modules/crypto/gc-hmac-md5: Moved from ../.
5689         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
5690         * modules/crypto/gc-hmac-sha1: Moved from ../.
5691         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
5692         * modules/crypto/gc-md2: Moved from ../.
5693         * modules/crypto/gc-md2-tests: Moved from ../.
5694         * modules/crypto/gc-md4: Moved from ../.
5695         * modules/crypto/gc-md4-tests: Moved from ../.
5696         * modules/crypto/gc-md5: Moved from ../.
5697         * modules/crypto/gc-md5-tests: Moved from ../.
5698         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
5699         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
5700         * modules/crypto/gc-random: Moved from ../.
5701         * modules/crypto/gc-rijndael: Moved from ../.
5702         * modules/crypto/gc-rijndael-tests: Moved from ../.
5703         * modules/crypto/gc-sha1: Moved from ../.
5704         * modules/crypto/gc-sha1-tests: Moved from ../.
5705         * modules/crypto/gc-tests: Moved from ../.
5706         * modules/crypto/hmac-md5: Moved from ../.
5707         * modules/crypto/hmac-md5-tests: Moved from ../.
5708         * modules/crypto/hmac-sha1: Moved from ../.
5709         * modules/crypto/hmac-sha1-tests: Moved from ../.
5710         * modules/crypto/md2: Moved from ../.
5711         * modules/crypto/md2-tests: Moved from ../.
5712         * modules/crypto/md4: Moved from ../.
5713         * modules/crypto/md4-tests: Moved from ../.
5714         * modules/crypto/md5: Moved from ../.
5715         * modules/crypto/md5-tests: Moved from ../.
5716         * modules/crypto/memxor: Moved from ../.
5717         * modules/crypto/rijndael: Moved from ../.
5718         * modules/crypto/rijndael-tests: Moved from ../.
5719         * modules/crypto/sha1: Moved from ../.
5720
5721 2007-03-30  James Youngman  <jay@gnu.org>
5722
5723         * tests/test-stat-time.c (prepare_test): use chmod() rather than
5724         rename() to change the ctime of a file (because ctime is unaffected
5725         by rename on jfs2 on AIX 5.1).
5726         (main): Start by doing cleanup, in case a previous run failed leaving
5727         test files behind.
5728
5729 2007-03-31  Bruno Haible  <bruno@clisp.org>
5730
5731         Support old proprietary implementations of iconv.
5732         * modules/iconv_open: New file.
5733         * lib/iconv_.h: New file.
5734         * m4/iconv_h.m4: New file.
5735         * lib/iconv_open.c: New file.
5736         * lib/iconv_open-aix.gperf: New file.
5737         * lib/iconv_open-hpux.gperf: New file.
5738         * lib/iconv_open-irix.gperf: New file.
5739         * lib/iconv_open-osf.gperf: New file.
5740         * m4/iconv_open.m4: New file.
5741         * modules/linebreak (Depends-on): Add iconv_open.
5742         * modules/striconv (Depends-on): Likewise.
5743         * modules/striconveh (Depends-on): Likewise.
5744         * modules/unicodeio (Depends-on): Likewise.
5745         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
5746         (iconv_t)(-1).
5747         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
5748         conversion if cd is (iconv_t)(-1).
5749         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
5750         is not possible.
5751
5752 2007-03-31  Bruno Haible  <bruno@clisp.org>
5753
5754         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
5755         work on Solaris either. Protect also second use of "autodetect_jp".
5756
5757 2007-03-31  Bruno Haible  <bruno@clisp.org>
5758
5759         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
5760         the function is not present.
5761
5762 2007-03-31  Bruno Haible  <bruno@clisp.org>
5763
5764         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
5765         the function is not present.
5766
5767 2007-03-31  Bruno Haible  <bruno@clisp.org>
5768
5769         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
5770         a bug in HP-UX iconv_open().
5771
5772 2007-03-31  Bruno Haible  <bruno@clisp.org>
5773
5774         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
5775         (Mathematics <math.h>): New section, add fpieee.
5776         (Input/output <stdio.h>): Add fseterr.
5777         (Mathematics <math.h>): New section, add printf-frexp.
5778         (Container data structures): Add sublist.
5779         (Core language properties): Add fpucw, inline.
5780         (Functions for greatest-width integer types <inttypes.h>): Add
5781         imaxabs, imaxdiv, inttypes.
5782         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
5783         isnanl-nolibm, ldexp.
5784         (Mathematics <math.h>): New section, add printf-frexpl.
5785         (Support for systems lacking POSIX:2001): Add fprintf-posix,
5786         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
5787         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
5788         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
5789         (Unicode string functions): Add unistr/u*-mbtoucr.
5790         (Java): Add javacomp-script, javaexec-script.
5791         (C#): Add csharpcomp-script, csharpexec-script.
5792         (Support for building libraries and executables): Add havelib,
5793         relocatable-*.
5794         (Support for maintaining and releasing projects): Renamed from
5795         'Support for maintaining and release projects'. Add announce-gen.
5796
5797 2007-03-31  Bruno Haible  <bruno@clisp.org>
5798
5799         * README: Talk primarily about git.
5800         (git and CVS): Renamed from CVS.
5801         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
5802         gnulib is available through git.
5803         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
5804
5805 2007-03-30  Bruno Haible  <bruno@clisp.org>
5806
5807         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
5808         * lib/poll_.h: Likewise.
5809         * lib/stat_.h: Likewise.
5810         * lib/sys_time_.h: Likewise.
5811         * lib/sysexit_.h: Likewise.
5812         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
5813         * lib/stdbool_.h: Likewise.
5814         * lib/byteswap_.h: Add double-inclusion guard.
5815
5816 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
5817
5818         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
5819
5820 2007-03-30  Karl Berry  <karl@gnu.org>
5821
5822         * config/srclist-update: double space after USA in the license
5823         substitution, since that's how it's usually (?) written.
5824
5825 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
5826
5827         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
5828         reported by Bruno Haible.
5829
5830 2007-03-29  Bruno Haible  <bruno@clisp.org>
5831
5832         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
5833         a bug in AIX iconv().
5834
5835 2007-03-29  Bruno Haible  <bruno@clisp.org>
5836
5837         * modules/ldexpl-tests: New file.
5838         * tests/test-ldexpl.c: New file.
5839
5840 2007-03-29  Bruno Haible  <bruno@clisp.org>
5841
5842         * lib/ldexpl.c: Include fpucw.h.
5843         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
5844         multiplication.
5845         * modules/ldexpl (Depends-on): Add fpucw.
5846
5847 2007-03-29  Bruno Haible  <bruno@clisp.org>
5848
5849         * modules/ldexpl: New file.
5850         * m4/ldexpl.m4: New file.
5851         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
5852         set.
5853         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
5854         REPLACE_LDEXPL.
5855         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
5856         REPLACE_LDEXPL.
5857         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
5858         gl_FUNC_LDEXPL_WORKS.
5859         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
5860         * modules/mathl (Files): Remove lib/ldexpl.c.
5861         (Depends-on): Add ldexpl.
5862
5863 2007-03-29  Bruno Haible  <bruno@clisp.org>
5864
5865         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
5866
5867 2007-03-29  Bruno Haible  <bruno@clisp.org>
5868
5869         * tests/test-striconveh.c (main): Don't assume that a direct conversion
5870         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
5871         and possibly also HP-UX.
5872         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
5873         work on AIX, IRIX, HP-UX, OSF/1.
5874         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5875         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5876         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5877         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5878         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
5879         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5880
5881 2007-03-29  Bruno Haible  <bruno@clisp.org>
5882
5883         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
5884
5885 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
5886
5887         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
5888         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
5889
5890 2007-03-29  Eric Blake  <ebb9@byu.net>
5891
5892         * lib/acl-internal.h: Remove redundant include.
5893         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
5894         Cygwin when a file is locked.
5895
5896 2007-03-29  Bruno Haible  <bruno@clisp.org>
5897
5898         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
5899         file.
5900         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
5901
5902 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
5903
5904         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
5905         try to remove a parent directory if the child couldn't be removed
5906         (except for the first rmdir, which could fail because the child
5907         doesn't exist).  Problem reported by Jeff Blaine in
5908         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
5909
5910 2007-03-28  Bruno Haible  <bruno@clisp.org>
5911
5912         * lib/striconveh.c (utf8conv_carefully): New function.
5913         (mem_cd_iconveh_internal): Invoke it.
5914
5915 2007-03-28  Bruno Haible  <bruno@clisp.org>
5916
5917         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
5918         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
5919         input.
5920         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
5921         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
5922         unistr/u8-uctomb.
5923
5924 2007-03-28  Bruno Haible  <bruno@clisp.org>
5925
5926         * modules/unistr/u8-mbtoucr: New file.
5927         * lib/unistr/u8-mbtoucr.c: New file.
5928         * modules/unistr/u16-mbtoucr: New file.
5929         * lib/unistr/u16-mbtoucr.c: New file.
5930         * modules/unistr/u16-mbtoucr: New file.
5931         * lib/unistr/u16-mbtoucr.c: New file.
5932         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
5933
5934 2007-03-27  Simon Josefsson  <simon@josefsson.org>
5935             Bruno Haible  <bruno@clisp.org>
5936
5937         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
5938         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
5939         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
5940
5941         * m4/stdio_h.m4: Add stubs for vasprintf too.
5942
5943         * modules/stdio: Support vasprintf in sed command.
5944
5945         * modules/vasprintf: Depend on stdio for prototypes.  Remove
5946         vasprintf.h.  Add stdio module indicator.
5947
5948         * lib/stdio_.h: Declare asprintf and vasprintf, based on
5949         vasprintf.h.
5950
5951         * lib/vasprintf.h: File removed.
5952
5953         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
5954         * lib/vasprintf.c: Ditto.
5955         * lib/xvasprintf.c: Ditto.
5956         * tests/test-vasprintf-posix.c: Ditto.
5957         * tests/test-vasprintf.c: Ditto.
5958
5959 2007-03-27  Bruno Haible  <bruno@clisp.org>
5960
5961         Make vasnprintf multithread-safe.
5962         * lib/vasnprintf.c (decimal_point_char): New function.
5963         (VASNPRINTF): Use it.
5964         Suggested by Simon Josefsson.
5965
5966 2007-03-27  Eric Blake  <ebb9@byu.net>
5967
5968         Support sub-second birthtime on cygwin.
5969         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
5970         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
5971         (get_stat_birthtime): Also work with st_birthtim.
5972
5973 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
5974
5975         * lib/stat-time.h (USE_BIRTHTIME): Remove.
5976         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
5977         (get_stat_birthtime_ns): Do not try to use "spare" fields.
5978         (get_stat_birthtime_ns): Simplify compile-time tests.
5979         (get_stat_birthtime): Change the API to look like
5980         get_stat_mtime etc., except return a negative tv_nsec on error.
5981         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
5982         Don't check for "spare" fields.
5983         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
5984         or for struct stat.st_birthtime, as these tests aren't used.
5985         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
5986
5987 2007-03-27  Bruno Haible  <bruno@clisp.org>
5988
5989         * lib/stat-time.h: Include <sys/stat.h>.
5990
5991 2007-03-27  James Youngman  <jay@gnu.org>
5992
5993         * lib/stat-time.h (get_stat_birthtime): New function for
5994           retrieving st_birthtime as provided by UFS2 (hence *BSD).
5995         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
5996           and its variants.
5997         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
5998         * modules/stat-time-test: New file.
5999         * tests/test-stat-time.c: New test, devised by Bruno Haible.
6000
6001 2007-03-26  Bruno Haible  <bruno@clisp.org>
6002
6003         Better support of signalling NaNs.
6004         * lib/atanl.c: Include isnanl.h.
6005         (atanl): Perform test for NaN at the beginning of the function and
6006         through a call to isnanl.
6007         * lib/cosl.c: Include isnanl.h.
6008         (cosl): Perform test for NaN at the beginning of the function and
6009         through a call to isnanl.
6010         * lib/ldexpl.c: Include isnanl.h.
6011         (ldexpl): Perform test for NaN through a call to isnanl.
6012         * lib/logl.c: Include isnanl.h.
6013         (logl): Perform test for NaN at the beginning of the function and
6014         through a call to isnanl.
6015         * lib/sinl.c: Include isnanl.h.
6016         (sinl): Perform test for NaN at the beginning of the function and
6017         through a call to isnanl.
6018         * lib/sqrtl.c: Include isnanl.h.
6019         (sqrtl): Perform test for NaN at the beginning of the function and
6020         through a call to isnanl.
6021         * lib/tanl.c: Include isnanl.h.
6022         (tanl): Perform test for NaN at the beginning of the function and
6023         through a call to isnanl.
6024         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
6025         * modules/mathl (Depends-on): Add isnanl.
6026
6027 2007-03-26  Eric Blake  <ebb9@byu.net>
6028
6029         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
6030         regression in logic sense of previous patch.
6031
6032 2007-03-26  Bruno Haible  <bruno@clisp.org>
6033
6034         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
6035         unportable shell command "if ! ...".
6036         Reported by Ralf Wildenhues.
6037
6038 2007-03-25  Bruno Haible  <bruno@clisp.org>
6039
6040         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
6041         <sysexits.h> file, and only add EX_CONFIG.
6042         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
6043         absolute file name and whether it is sufficient. Substitute also
6044         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
6045         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
6046         ABSOLUTE_SYSEXITS_H into sysexits.h.
6047
6048 2007-03-25  Bruno Haible  <bruno@clisp.org>
6049
6050         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
6051         hints is NULL.
6052
6053 2007-03-25  Bruno Haible  <bruno@clisp.org>
6054
6055         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
6056         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
6057
6058 2007-03-25  Bruno Haible  <bruno@clisp.org>
6059
6060         * lib/vasnprintf.c: Include langinfo.h.
6061         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
6062         multithread-safe.
6063         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
6064         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
6065         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6066         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6067         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6068         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6069         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6070         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
6071         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6072         Reported by Simon Josefsson.
6073
6074 2007-03-25  Bruno Haible  <bruno@clisp.org>
6075
6076         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
6077         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
6078         * modules/vasnprintf (Depends-on): Add stdint.
6079
6080 2007-03-25  Bruno Haible  <bruno@clisp.org>
6081
6082         * modules/fpieee: New file.
6083         * m4/fpieee.m4: New file.
6084         * modules/isnan-nolibm (Depends-on): Add fpieee.
6085         * modules/isnanl-nolibm (Depends-on): Add fpieee.
6086         * modules/isnanl (Depends-on): Add fpieee.
6087
6088 2007-03-25  Bruno Haible  <bruno@clisp.org>
6089
6090         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
6091
6092 2007-03-25  Bruno Haible  <bruno@clisp.org>
6093
6094         Avoid test failures on IRIX 6.5.
6095         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
6096         (main): Use it.
6097         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
6098         macros.
6099         (main): Use them.
6100
6101 2007-03-25  Bruno Haible  <bruno@clisp.org>
6102
6103         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
6104         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
6105         exists but doesn't work.
6106         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
6107         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
6108         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
6109         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
6110
6111 2007-03-25  Bruno Haible  <bruno@clisp.org>
6112
6113         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
6114         returns inf. Needed on IRIX 6.5.
6115
6116 2007-03-25  Bruno Haible  <bruno@clisp.org>
6117
6118         * tests/test-frexpl.c: Include isnanl-nolibm.h.
6119         (main): Use isnanl instead of x != x idiom.
6120         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
6121
6122         * tests/test-frexp.c: Include isnan.h.
6123         (main): Use isnan instead of x != x idiom.
6124         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
6125
6126 2007-03-25  Bruno Haible  <bruno@clisp.org>
6127
6128         * tests/test-frexp.c (NaN): New function/macro.
6129         (main): Use it instead of 0.0 / 0.0.
6130         * tests/test-isnan.c (NaN): New function/macro.
6131         (main): Use it instead of 0.0 / 0.0.
6132         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
6133         (test_function): Use it instead of 0.0 / 0.0.
6134         * tests/test-vasprintf-posix.c (NaN): New function/macro.
6135         (test_function): Use it instead of 0.0 / 0.0.
6136         * tests/test-snprintf-posix.h (NaN): New function/macro.
6137         (test_function): Use it instead of 0.0 / 0.0.
6138         * tests/test-sprintf-posix.h (NaN): New function/macro.
6139         (test_function): Use it instead of 0.0 / 0.0.
6140         * tests/test-fprintf-posix.h (NaN): New function/macro.
6141         (test_function): Use it instead of 0.0 / 0.0.
6142         * tests/test-printf-posix.h (NaN): New function/macro.
6143         (test_function): Use it instead of 0.0 / 0.0.
6144
6145         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
6146
6147 2007-03-25  Bruno Haible  <bruno@clisp.org>
6148
6149         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
6150
6151 2007-03-25  Bruno Haible  <bruno@clisp.org>
6152
6153         * lib/regexec.c (merge_state_with_log): Make static.
6154
6155 2007-03-25  Bruno Haible  <bruno@clisp.org>
6156
6157         * lib/trigl.c (kernel_rem_pio2): Make static.
6158
6159 2007-03-25  Bruno Haible  <bruno@clisp.org>
6160
6161         * lib/sincosl.c (sincosl_table): Make static.
6162
6163 2007-03-25  Bruno Haible  <bruno@clisp.org>
6164
6165         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
6166         if the compiler does not support C99.
6167
6168 2007-03-25  Bruno Haible  <bruno@clisp.org>
6169
6170         * modules/time (Makefile.am): Ensure all rule action lines start with a
6171         tab.
6172
6173 2007-03-24  Bruno Haible  <bruno@clisp.org>
6174
6175         * modules/tsearch-tests: New file.
6176         * tests/test-tsearch.sh: New file.
6177         * tests/test-tsearch.c: New file, mostly copied from glibc.
6178
6179         * modules/search-tests: New file.
6180         * tests/test-search.c: New file.
6181
6182         * modules/search: New file.
6183         * lib/search_.h: New file, incorporating lib/tsearch.h.
6184         * m4/search_h.m4: New file.
6185         * lib/tsearch.h: Remove file.
6186         * lib/tsearch.c: Include search.h instead of tsearch.h.
6187         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
6188         HAVE_TSEARCH.
6189         * modules/tsearch (Files): Remove lib/tsearch.h.
6190         (Depends-on): Add search.
6191         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
6192         (Include): Change tsearch.h into search.h.
6193
6194 2007-03-24  Bruno Haible  <bruno@clisp.org>
6195
6196         * modules/fpucw: New file.
6197         * lib/fpucw.h: New file.
6198         * lib/frexp.c: Include fpucw.h.
6199         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
6200         (FUNC): Use them.
6201         * lib/printf-frexp.c: Include fpucw.h.
6202         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
6203         (FUNC): Use them.
6204         * lib/vasnprintf.c: Include fpucw.h.
6205         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
6206         'long double' calculations.
6207         * tests/test-frexpl.c: Include fpucw.h.
6208         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
6209         * tests/test-printf-frexpl.c: Include fpucw.h.
6210         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
6211         * modules/frexpl (Depends-on): Add fpucw.
6212         * modules/printf-frexpl (Depends-on): Likewise.
6213         * modules/fprintf-posix (Depends-on): Likewise.
6214         * modules/snprintf-posix (Depends-on): Likewise.
6215         * modules/sprintf-posix (Depends-on): Likewise.
6216         * modules/vasnprintf-posix (Depends-on): Likewise.
6217         * modules/vasprintf-posix (Depends-on): Likewise.
6218         * modules/vfprintf-posix (Depends-on): Likewise.
6219         * modules/vsnprintf-posix (Depends-on): Likewise.
6220         * modules/vsprintf-posix (Depends-on): Likewise.
6221         * modules/frexpl-tests (Depends-on): Likewise.
6222         * modules/printf-frexpl-tests (Depends-on): Likewise.
6223
6224 2007-03-24  Bruno Haible  <bruno@clisp.org>
6225
6226         * lib/float+.h: New file.
6227         * lib/isnan.c: Include float+.h.
6228         (SIZE): New macro.
6229         (FUNC): Compare only SIZE bytes of the value.
6230         * lib/vasnprintf.c: Include float+.h.
6231         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
6232         SIZEOF_LDBL or SIZEOF_DBL bytes.
6233         * modules/isnan-nolibm (Files): Add lib/float+.h.
6234         * modules/isnanl-nolibm (Files): Add lib/float+.h.
6235         * modules/isnanl (Files): Add lib/float+.h.
6236         * modules/vasnprintf (Files): Add lib/float+.h.
6237
6238 2007-03-24  Bruno Haible  <bruno@clisp.org>
6239
6240         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
6241         include isnanl-nolibm.h.
6242
6243 2007-03-24  Bruno Haible  <bruno@clisp.org>
6244
6245         * tests/test-read-file.c (main): Don't produce spurious output for
6246         expected situations. Make the test fail if it encountered unexpected
6247         results.
6248
6249 2007-03-24  Bruno Haible  <bruno@clisp.org>
6250
6251         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
6252         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
6253
6254 2007-03-24  Bruno Haible  <bruno@clisp.org>
6255
6256         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
6257
6258 2007-03-24  Bruno Haible  <bruno@clisp.org>
6259
6260         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
6261         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
6262
6263         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
6264         * modules/utf8-ucs4: Turn into a symbolic link to module
6265         unistr/u8-mbtouc.
6266
6267         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
6268         utf8-ucs4-unsafe.
6269         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
6270         unistr/u8-mbtouc-unsafe.
6271
6272         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
6273         * modules/utf16-ucs4: Turn into a symbolic link to module
6274         unistr/u16-mbtouc.
6275
6276         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
6277         utf16-ucs4-unsafe.
6278         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
6279         unistr/u16-mbtouc-unsafe.
6280
6281         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
6282         * modules/ucs4-utf8: Turn into a symbolic link to module
6283         unistr/u8-ubtomb.
6284
6285         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
6286         * modules/ucs4-utf16: Turn into a symbolic link to module
6287         unistr/u16-ubtomb.
6288
6289 2007-03-24  Bruno Haible  <bruno@clisp.org>
6290
6291         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
6292         Enable the function only if HAVE_INLINE.
6293         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
6294         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
6295         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
6296         Enable the function only if HAVE_INLINE.
6297         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
6298         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
6299         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
6300         Enable the function only if HAVE_INLINE.
6301         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
6302         Enable the function only if HAVE_INLINE.
6303         * modules/utf8-ucs4: Update.
6304         * modules/utf8-ucs4-unsafe: Update.
6305         * modules/utf16-ucs4: Update.
6306         * modules/utf16-ucs4-unsafe: Update.
6307         * modules/ucs4-utf8: Update.
6308         * modules/ucs4-utf16: Update.
6309
6310 2007-03-24  Bruno Haible  <bruno@clisp.org>
6311
6312         * lib/utf8-ucs4.h: Remove file.
6313         * lib/utf8-ucs4-unsafe.h: Remove file.
6314         * lib/utf16-ucs4.h: Remove file.
6315         * lib/utf16-ucs4-unsafe.h: Remove file.
6316         * lib/ucs4-utf8.h: Remove file.
6317         * lib/ucs4-utf16.h: Remove file.
6318         * lib/unistr.h: Include their previous contents.
6319         * m4/utf-ucs4.m4: Remove file.
6320         * m4/ucs4-utf.m4: Remove file.
6321         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
6322         (Depends-on): Add unistr/base.
6323         (configure.ac): Remove gl_UTF_UCS4.
6324         (Makefile.am): Update.
6325         (Include): Change to unistr.h.
6326         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
6327         (Depends-on): Add unistr/base.
6328         (configure.ac): Remove gl_UTF_UCS4.
6329         (Makefile.am): Update.
6330         (Include): Change to unistr.h.
6331         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
6332         (Depends-on): Add unistr/base.
6333         (configure.ac): Remove gl_UTF_UCS4.
6334         (Makefile.am): Update.
6335         (Include): Change to unistr.h.
6336         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
6337         (Depends-on): Add unistr/base.
6338         (configure.ac): Remove gl_UTF_UCS4.
6339         (Makefile.am): Update.
6340         (Include): Change to unistr.h.
6341         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
6342         (Depends-on): Add unistr/base.
6343         (configure.ac): Remove gl_UCS4_UTF.
6344         (Makefile.am): Update.
6345         (Include): Change to unistr.h.
6346         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
6347         (Depends-on): Add unistr/base.
6348         (configure.ac): Remove gl_UCS4_UTF.
6349         (Makefile.am): Update.
6350         (Include): Change to unistr.h.
6351         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
6352         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
6353         utf8-ucs4-unsafe.h.
6354         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
6355         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
6356         utf16-ucs4-unsafe.h.
6357         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
6358         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
6359         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
6360         * lib/unistr/u8-strchr.c: Likewise.
6361         * lib/unistr/u8-strrchr.c: Likewise.
6362         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
6363         * lib/unistr/u16-strchr.c: Likewise.
6364         * lib/unistr/u16-strrchr.c: Likewise.
6365         * lib/striconveh.c: Update.
6366         * lib/linebreak.c: Update.
6367
6368 2007-03-24  Bruno Haible  <bruno@clisp.org>
6369
6370         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
6371         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
6372
6373 2007-03-22  Bruno Haible  <bruno@clisp.org>
6374
6375         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
6376
6377 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
6378
6379         * MODULES.html.sh (File system functions): New module write-any-file.
6380         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
6381         * m4/write-any-file.m4: New files.
6382
6383 2007-03-23  Eric Blake  <ebb9@byu.net>
6384
6385         * gnulib-tool: Rearrange space-tab sequences, since some editors
6386         like to eat them.
6387
6388 2007-03-23  Eric Blake  <ebb9@byu.net>
6389
6390         * lib/version-etc.c (version_etc_va): Update license wording to
6391         be more concise.  Recommended by Richard Stallman.
6392
6393 2007-03-22  Bruno Haible  <bruno@clisp.org>
6394
6395         * lib/poll.c (MSG_PEEK): New fallback definition.
6396
6397 2007-03-22  Bruno Haible  <bruno@clisp.org>
6398
6399         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
6400         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
6401         (main): Update.
6402         Fixes a compilation error on BeOS.
6403
6404 2007-03-22  Bruno Haible  <bruno@clisp.org>
6405
6406         * modules/frexpl-tests: New file.
6407         * tests/test-frexpl.c: New file.
6408
6409         * modules/frexpl: New file.
6410         * m4/frexpl.m4: New file.
6411         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
6412         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
6413         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
6414         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
6415         (Depends-on): Add frexpl. Remove isnanl-nolibm.
6416         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
6417
6418 2007-03-22  Bruno Haible  <bruno@clisp.org>
6419
6420         * lib/frexpl.c: Share code with lib/frexp.c.
6421         * modules/mathl (Files): Add lib/frexp.c.
6422         (Depends-on): Add isnanl-nolibm.
6423
6424 2007-03-22  Bruno Haible  <bruno@clisp.org>
6425
6426         * modules/printf-frexp (Files): Add m4/frexp.m4.
6427         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
6428         only if the found frexp function actually works.
6429
6430 2007-03-22  Bruno Haible  <bruno@clisp.org>
6431
6432         * lib/frexp.c: Remove older implementation that uses divisions.
6433
6434 2007-03-21  Bruno Haible  <bruno@clisp.org>
6435
6436         * modules/frexp-tests: New file.
6437         * tests/test-frexp.c: New file.
6438
6439         * modules/frexp: New file.
6440         * lib/frexp.c: New file.
6441         * m4/frexp.m4: New file.
6442         * lib/math_.h (frexp): New declaration.
6443         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
6444         REPLACE_FREXP.
6445         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
6446
6447 2007-03-21  Bruno Haible  <bruno@clisp.org>
6448
6449         * modules/isnanl-tests: New file.
6450         * tests/test-isnanl.c: New file.
6451
6452         * modules/isnanl: New file.
6453         * lib/isnanl.h: New file.
6454         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
6455         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
6456         gl_FUNC_ISNANL_WORKS.
6457         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
6458         New macros.
6459
6460 2007-03-21  Bruno Haible  <bruno@clisp.org>
6461
6462         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
6463         lib/isnanl.h.
6464         (Include): Update.
6465         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
6466         * lib/vasnprintf.c: Update.
6467         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
6468         tests/test-isnanl.h, remove tests/test-isnanl.c.
6469         (Makefile.am): Update.
6470         * tests/test-isnanl-nolibm.c: New file.
6471         * tests/test-isnanl.h: New file.
6472         * tests/test-isnanl.c: Remove file.
6473
6474 2007-03-21  Jim Meyering  <jim@meyering.net>
6475
6476         When trying to open ".", treat ESTALE like EACCES.
6477         * lib/savewd.c (savewd_save): Resort to forking not just upon
6478         failure with EACCES, but also when errno is ESTALE.
6479
6480 2007-03-20  Bruno Haible  <bruno@clisp.org>
6481
6482         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
6483         Needed on AIX 5.1. Reported by Matthew Woehlke.
6484
6485 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
6486
6487         Suggestions by Bruno Haible:
6488         * lib/acl-internal.h: Include "gettext.h" rather than rolling
6489         our own.
6490         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
6491         * modules/acl (Depends-on): Add gettext.
6492
6493 2007-03-19  Bruno Haible  <bruno@clisp.org>
6494
6495         * modules/iconvme: Remove file.
6496         * lib/iconvme.h: Remove file.
6497         * lib/iconvme.c: Remove file.
6498         * m4/iconvme.m4: Remove file.
6499
6500 2007-03-19  Bruno Haible  <bruno@clisp.org>
6501
6502         * doc/relocatable-maint.texi: Break long shell script line.
6503         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
6504
6505 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
6506
6507         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
6508         handle file_has_acl.
6509         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
6510         * lib/acl.c: Move header inclusions and related macro defns into
6511         lib/acl-internal.h.
6512         (S_ISLNK): Remove defn, since that's now done for us.
6513         (file_has_acl): Move to lib/file-has-acl.c.
6514         Call acl_trivial if available.  This is the crucial part of the fix.
6515         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
6516         shared within the library.  Rewrite a bit, partly to make it compatible
6517         with the GNU coding style.
6518         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
6519         Remove unnecessary double-quotes.
6520         Don't test for acl_to_text; the build will catch that.
6521         Replace acl_entries if it doesn't exist and it is needed.
6522         Check for -lsec and acl_trivial (as used on Solaris 10).
6523         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
6524         lib/file-has-acl.c.
6525         (Depends-on): Add sys_stat, for S_ISLNK.
6526
6527 2007-03-19  Ben Pfaff  <blp@gnu.org>
6528
6529         * doc/gnulib.texi: Fix typos.
6530         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
6531
6532 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
6533
6534         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
6535         If size is zero here, buf must be zero.
6536
6537 2007-03-19  Simon Josefsson  <simon@josefsson.org>
6538
6539         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
6540         <bruno@clisp.org>.
6541
6542 2007-03-18  Bruno Haible  <bruno@clisp.org>
6543
6544         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
6545         Suggested by Eric Blake.
6546
6547 2007-03-18  Ben Pfaff  <blp@gnu.org>
6548
6549         * doc/relocatable.texi: Recommend using as prefix a directory
6550         that does not exist and will never be created.  Based on
6551         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
6552         and others.
6553
6554 2007-03-17  Bruno Haible  <bruno@clisp.org>
6555
6556         * lib/fchownat.c: Include lchown.h.
6557
6558 2007-03-17  Bruno Haible  <bruno@clisp.org>
6559
6560         Fix endless loop when the given allocated size was > INT_MAX.
6561         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
6562         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
6563         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
6564         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
6565         * lib/sprintf.c (sprintf): Likewise.
6566
6567 2007-03-17  Bruno Haible  <bruno@clisp.org>
6568
6569         * tests/test-argp-2.sh (func_compare): Output a context diff.
6570
6571 2007-03-17  Bruno Haible  <bruno@clisp.org>
6572
6573         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
6574         locale's decimal-point character.
6575
6576 2007-03-17  Bruno Haible  <bruno@clisp.org>
6577
6578         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
6579         before comparing it. Needed because on some platforms (e.g. x86) a
6580         'long double' occupies less bytes than sizeof (long double).
6581
6582 2007-03-17  Bruno Haible  <bruno@clisp.org>
6583
6584         * tests/test-crc.c (main): Make printf statements 64-bit clean.
6585         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
6586         * tests/test-getaddrinfo.c (simple): Likewise.
6587         * tests/test-read-file.c (main): Likewise.
6588
6589 2007-03-17  Bruno Haible  <bruno@clisp.org>
6590
6591         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
6592
6593 2007-03-17  Bruno Haible  <bruno@clisp.org>
6594
6595         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
6596         unused variable.
6597
6598 2007-03-17  Bruno Haible  <bruno@clisp.org>
6599
6600         * tests/test-c-strcasecmp.c: Include c-strcase.h.
6601         * tests/test-c-strncasecmp.c: Likewise.
6602
6603 2007-03-17  Bruno Haible  <bruno@clisp.org>
6604
6605         * modules/stdlib (Depends-on): Add unistd.
6606         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
6607         Needed for MacOS X 10.3.
6608
6609 2007-03-17  Bruno Haible  <bruno@clisp.org>
6610
6611         * lib/unistr/u-strdup.h: Include <stdlib.h>.
6612
6613 2007-03-17  Bruno Haible  <bruno@clisp.org>
6614
6615         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
6616
6617 2007-03-17  Bruno Haible  <bruno@clisp.org>
6618
6619         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
6620         to reflect files copied from gnulib (with or without modifications).
6621         Suggested by Jim Meyering.
6622
6623 2007-03-17  Eric Blake  <ebb9@byu.net>
6624
6625         * NEWS: Document stdlib change from 2007-02-18.
6626
6627 2007-03-17  Jim Meyering  <jim@meyering.net>
6628
6629         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
6630         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
6631         someone uses a name containing shell meta-characters.
6632         Reported by Alfred M. Szmidt.
6633
6634         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
6635
6636 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
6637
6638         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
6639         and copy gettext configuration files only if configure.ac contains
6640         a use of AM_GNU_GETTEXT_VERSION.
6641
6642 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
6643
6644         * build-aux/bootstrap (gnulib_name): New variable.
6645         (gnulib_tool_options): Use it.
6646
6647 2007-03-13  Simon Josefsson  <simon@josefsson.org>
6648
6649         * tests/test-des.c: Use new namespace.
6650
6651 2007-03-15  Bruno Haible  <bruno@clisp.org>
6652
6653         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
6654         Reported by James Youngman <jay@gnu.org>.
6655
6656 2007-03-15  Bruno Haible  <bruno@clisp.org>
6657
6658         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
6659         declared prototype. Needed with cc on OSF/1 5.1.
6660
6661 2007-03-15  Bruno Haible  <bruno@clisp.org>
6662
6663         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
6664         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
6665         (struct gl_list_implementation): Add dispose_fn argument to the
6666         'create_empty', 'create' methods.
6667         (struct gl_list_impl_base): Add field 'dispose_fn'.
6668         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
6669         argument.
6670         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
6671         dispose_fn argument.
6672         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
6673         dispose_fn on the dropped values.
6674         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
6675         dispose_fn argument.
6676         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
6677         dropped values.
6678         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
6679         (gl_tree_remove_node): Call dispose_fn on the dropped value.
6680         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
6681         (gl_tree_remove_node): Call dispose_fn on the dropped value.
6682         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
6683         argument.
6684         (gl_tree_list_free): Call dispose_fn on the dropped values.
6685         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
6686         the dropped values.
6687         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
6688         Add dispose_fn argument.
6689         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
6690         Call dispose_fn on the dropped values.
6691         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
6692         Add dispose_fn argument.
6693         (gl_sublist_create): Initialize the 'dispose_fn' field.
6694         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
6695         * tests/test-array_list.c (main): Update.
6696         * tests/test-carray_list.c (main): Update.
6697         * tests/test-avltree_list.c (main): Update.
6698         * tests/test-rbtree_list.c (main): Update.
6699         * tests/test-avltreehash_list.c (main): Update.
6700         * tests/test-rbtreehash_list.c (main): Update.
6701         * tests/test-linked_list.c (main): Update.
6702         * tests/test-linkedhash_list.c (main): Update.
6703         * tests/test-array_oset.c (main): Update.
6704
6705 2007-03-15  Bruno Haible  <bruno@clisp.org>
6706
6707         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
6708         (gl_oset_create_empty): Add dispose_fn argument.
6709         (struct gl_oset_implementation): Add dispose_fn argument to
6710         'create_empty' method.
6711         (struct gl_oset_impl_base): Add dispose_fn field.
6712         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
6713         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
6714         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
6715         values.
6716         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
6717         (gl_tree_oset_free): Call dispose_fn on the dropped values.
6718         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
6719         dropped value.
6720         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
6721         dropped value.
6722         * tests/test-array_oset.c (main): Update.
6723         * tests/test-avltree_oset.c (main): Update.
6724         * tests/test-rbtree_oset.c (main): Update.
6725         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
6726
6727 2007-03-13  Bruno Haible  <bruno@clisp.org>
6728
6729         * tests/test-stdbool.c (i): Update after last patch.
6730
6731 2007-03-12  Bruno Haible  <bruno@clisp.org>
6732
6733         * lib/quotearg.c: Include <wctype.h> early, before the definition of
6734         the iswprint macro. Needed on Solaris 2.5.1.
6735
6736 2007-03-12  Bruno Haible  <bruno@clisp.org>
6737
6738         * tests/test-printf-frexp.c (main): Declare x as volatile.
6739
6740 2007-03-12  Simon Josefsson  <simon@josefsson.org>
6741
6742         * doc/gnulib.texi (Build robot for gnulib): New section.
6743
6744 2007-03-12  Jim Meyering  <jim@meyering.net>
6745
6746         * build-aux/bootstrap: New file.
6747         * build-aux/bootstrap.conf: New file, from coreutils.
6748
6749 2007-03-11  Bruno Haible  <bruno@clisp.org>
6750
6751         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
6752
6753 2007-03-12  Simon Josefsson  <simon@josefsson.org>
6754
6755         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
6756         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
6757         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
6758
6759 2007-03-11  Bruno Haible  <bruno@clisp.org>
6760
6761         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
6762         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
6763
6764 2007-03-11  Bruno Haible  <bruno@clisp.org>
6765
6766         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
6767         formula. Needed for SunPRO C 5.0.
6768
6769 2007-03-11  Bruno Haible  <bruno@clisp.org>
6770
6771         * modules/long-options (Depends-on): Add getopt.
6772
6773 2007-03-11  Bruno Haible  <bruno@clisp.org>
6774
6775         * modules/modechange (Depends-on): Add stdbool.
6776
6777 2007-03-11  Bruno Haible  <bruno@clisp.org>
6778
6779         * modules/i-ring (Depends-on): Add stdbool.
6780
6781 2007-03-11  Bruno Haible  <bruno@clisp.org>
6782
6783         * modules/gc-des (Depends-on): Add stdbool.
6784
6785 2007-03-11  Bruno Haible  <bruno@clisp.org>
6786
6787         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
6788
6789 2007-03-11  Bruno Haible  <bruno@clisp.org>
6790
6791         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
6792
6793 2007-03-11  Bruno Haible  <bruno@clisp.org>
6794
6795         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
6796
6797 2007-03-11  Bruno Haible  <bruno@clisp.org>
6798
6799         * lib/vasnprintf.c (sprintf): Undefine.
6800
6801 2007-03-11  Bruno Haible  <bruno@clisp.org>
6802
6803         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
6804         initializers in SunPRO C and Compaq C compilers.
6805
6806 2007-03-11  Bruno Haible  <bruno@clisp.org>
6807
6808         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
6809         decrementing code ANSI C compliant.
6810
6811 2007-03-11  Bruno Haible  <bruno@clisp.org>
6812
6813         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
6814         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
6815
6816 2007-03-11  Bruno Haible  <bruno@clisp.org>
6817
6818         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
6819         <stdbool.h> substitute doesn't pass.
6820
6821 2007-03-11  Bruno Haible  <bruno@clisp.org>
6822
6823         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
6824
6825 2007-03-11  Bruno Haible  <bruno@clisp.org>
6826
6827         * gnulib-tool (func_create_megatestdir): Create also an autobuild
6828         script, for submission to autobuild.josefsson.org.
6829
6830 2007-03-10  Bruno Haible  <bruno@clisp.org>
6831
6832         * modules/canonicalize-lgpl-tests: New file.
6833         * tests/test-canonicalize-lgpl.sh: New file.
6834         * tests/test-canonicalize-lgpl.c: New file.
6835
6836         * modules/c-strcase-tests: New file.
6837         * tests/test-c-strcase.sh: New file.
6838         * tests/test-c-strcasecmp.c: New file.
6839         * tests/test-c-strncasecmp.c: New file.
6840
6841         * modules/atexit-tests: New file.
6842         * tests/test-atexit.sh: New file.
6843         * tests/test-atexit.c: New file.
6844
6845 2007-03-10  Bruno Haible  <bruno@clisp.org>
6846
6847         * tests/test-binary-io.sh: Use temporary filenames that are not so
6848         likely to clash with those of other tests (in a parallel make).
6849         * tests/test-binary-io.c: Likewise.
6850
6851 2007-03-10  Bruno Haible  <bruno@clisp.org>
6852
6853         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
6854         fallback; use #error instead.
6855         Suggested by Simon Josefsson.
6856
6857 2007-03-10  Bruno Haible  <bruno@clisp.org>
6858
6859         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
6860         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
6861         first and the last.
6862
6863 2007-03-10  Bruno Haible  <bruno@clisp.org>
6864
6865         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
6866
6867 2007-03-10  Bruno Haible  <bruno@clisp.org>
6868
6869         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
6870         "make distcheck".
6871         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
6872         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
6873         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
6874
6875 2007-03-10  Bruno Haible  <bruno@clisp.org>
6876
6877         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
6878         variable.
6879         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
6880         variable.
6881
6882 2007-03-09  Eric Blake  <ebb9@byu.net>
6883         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
6884
6885         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
6886         types are not being provided by gnulib.
6887         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
6888         types are supported.
6889
6890 2007-03-10  Bruno Haible  <bruno@clisp.org>
6891
6892         * lib/stdio_.h (__attribute__): New macro.
6893         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
6894         vsprintf): Specify __attribute__ __format__ for GCC.
6895         Suggested by Eric Blake.
6896
6897 2007-03-09  Bruno Haible  <bruno@clisp.org>
6898
6899         * modules/printf-posix-tests: New file.
6900         * tests/test-printf-posix.sh: New file.
6901         * tests/test-printf-posix.c: New file.
6902
6903         * modules/printf-posix: New file.
6904         * lib/printf.c: New file.
6905         * m4/printf-posix-rpl.m4: New file.
6906         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
6907         REPLACE_PRINTF.
6908         * lib/stdio_.h (printf): New declaration.
6909         (format, __format__, ____printf____, ____scanf____, ____strftime____,
6910         ____strfmon____): New macros.
6911         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
6912         REPLACE_PRINTF.
6913
6914 2007-03-09  Bruno Haible  <bruno@clisp.org>
6915
6916         * tests/test-vasnprintf-posix2.sh: New file.
6917         * tests/test-vasnprintf-posix2.c: New file.
6918         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
6919         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
6920         (Makefile.am): Activate test-vasnprintf-posix2.sh.
6921
6922         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
6923         a locale dependent decimal point, rather than always '.'.
6924
6925 2007-03-09  Eric Blake  <ebb9@byu.net>
6926
6927         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
6928         spite of platforms like Tandem/NSK that define it to -1.
6929
6930 2007-03-08  Bruno Haible  <bruno@clisp.org>
6931
6932         * modules/vprintf-posix-tests: New file.
6933         * tests/test-vprintf-posix.sh: New file.
6934         * tests/test-vprintf-posix.c: New file.
6935         * tests/test-printf-posix.h: New file.
6936
6937         * modules/vprintf-posix: New file.
6938         * lib/vprintf.c: New file.
6939         * m4/vprintf-posix.m4: New file.
6940         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
6941         REPLACE_VPRINTF.
6942         * lib/stdio_.h (vprintf): New declaration.
6943         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
6944         REPLACE_VPRINTF.
6945
6946 2007-03-08  Bruno Haible  <bruno@clisp.org>
6947
6948         * modules/fprintf-posix-tests: New file.
6949         * tests/test-fprintf-posix.sh: New file.
6950         * tests/test-fprintf-posix.c: New file.
6951
6952         * modules/fprintf-posix: New file.
6953         * lib/fprintf.c: New file.
6954         * m4/fprintf-posix.m4: New file.
6955         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
6956         REPLACE_FPRINTF.
6957         * lib/stdio_.h (fprintf): New declaration.
6958         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
6959         REPLACE_FPRINTF.
6960
6961 2007-03-08  Bruno Haible  <bruno@clisp.org>
6962
6963         * modules/vfprintf-posix-tests: New file.
6964         * tests/test-vfprintf-posix.sh: New file.
6965         * tests/test-vfprintf-posix.c: New file.
6966         * tests/test-fprintf-posix.h: New file.
6967         * tests/test-fprintf-posix.out: New file.
6968
6969         * modules/vfprintf-posix: New file.
6970         * lib/vfprintf.c: New file.
6971         * m4/vfprintf-posix.m4: New file.
6972         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
6973         REPLACE_VFPRINTF.
6974         * lib/stdio_.h (vfprintf): New declaration.
6975         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
6976         REPLACE_VFPRINTF.
6977
6978 2007-03-08  Bruno Haible  <bruno@clisp.org>
6979
6980         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
6981
6982 2007-03-08  Bruno Haible  <bruno@clisp.org>
6983
6984         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
6985         instead of 'expr' invocations.
6986         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6987         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6988         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6989         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6990         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6991         Suggested by Paul Eggert.
6992
6993 2007-03-08  Bruno Haible  <bruno@clisp.org>
6994
6995         * modules/fseterr-tests: New file.
6996         * tests/test-fseterr.c: New file.
6997
6998         * modules/fseterr: New file.
6999         * lib/fseterr.h: New file.
7000         * lib/fseterr.c: New file.
7001
7002 2007-03-08  Bruno Haible  <bruno@clisp.org>
7003
7004         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
7005         * lib/getopt_.h: Likewise.
7006         * lib/mbswidth.h: Likewise.
7007         * lib/setenv.h: Likewise.
7008         * lib/vasnprintf.h: Likewise.
7009         * lib/vasprintf.h: Likewise.
7010         * lib/verror.h: Likewise.
7011         * lib/xsetenv.h: Likewise.
7012         * lib/xvasprintf.h: Likewise.
7013
7014 2007-03-08  Jim Meyering  <jim@meyering.net>
7015
7016         * users.txt: Add parted.
7017
7018         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
7019
7020 2007-03-07  Bruno Haible  <bruno@clisp.org>
7021
7022         * m4/printf.m4: Make the shell script snippets copy&pastable.
7023
7024 2007-03-02  Bruno Haible  <bruno@clisp.org>
7025
7026         * lib/netinet_in_.h: New file.
7027         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
7028         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
7029         * modules/netinet_in (Files): Add lib/netinet_in_.h.
7030         (Depends-on): Add absolute-header.
7031         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
7032         into netinet/in.h.
7033
7034 2007-03-03  Bruno Haible  <bruno@clisp.org>
7035
7036         * lib/sys_select_.h: New file.
7037         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
7038         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
7039         * modules/sys_select (Files): Add lib/sys_select_.h.
7040         (Depends-on): Add absolute-header.
7041         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
7042         into sys/select.h.
7043
7044 2007-03-02  Bruno Haible  <bruno@clisp.org>
7045
7046         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
7047         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
7048         values.
7049         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
7050         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
7051         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
7052         * modules/sys_socket (Depends-on): Add absolute-header.
7053         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
7054         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
7055         (Include): Remove requirement of inclusion of <sys/types.h>.
7056
7057 2007-03-02  Bruno Haible  <bruno@clisp.org>
7058
7059         * lib/byteswap_.h (bswap_32): Fix formula.
7060
7061 2007-03-06  Bruno Haible  <bruno@clisp.org>
7062
7063         * modules/sprintf-posix-tests: New file.
7064         * tests/test-sprintf-posix.c: New file.
7065
7066         * modules/sprintf-posix: New file.
7067         * lib/sprintf.c: New file.
7068         * m4/sprintf-posix.m4: New file.
7069         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
7070         REPLACE_SPRINTF.
7071         * lib/stdio_.h (sprintf): New declaration.
7072         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
7073         REPLACE_SPRINTF.
7074
7075 2007-03-06  Bruno Haible  <bruno@clisp.org>
7076
7077         * modules/vsprintf-posix-tests: New file.
7078         * tests/test-vsprintf-posix.c: New file.
7079         * tests/test-sprintf-posix.h: New file.
7080
7081         * modules/vsprintf-posix: New file.
7082         * lib/vsprintf.c: New file.
7083         * m4/vsprintf-posix.m4: New file.
7084         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
7085         REPLACE_VSPRINTF.
7086         * lib/stdio_.h (vsprintf): New declaration.
7087         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
7088         REPLACE_VSPRINTF.
7089
7090 2007-03-06  Bruno Haible  <bruno@clisp.org>
7091
7092         * modules/vsnprintf (Depend-on): Remove minmax.
7093
7094 2007-03-06  Bruno Haible  <bruno@clisp.org>
7095
7096         * modules/snprintf-posix-tests: New file.
7097         * tests/test-snprintf-posix.c: New file.
7098
7099         * modules/snprintf-posix: New file.
7100         * m4/snprintf-posix.m4: New file.
7101         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
7102         gl_FUNC_SNPRINTF.
7103         (gl_FUNC_SNPRINTF): Invoke it.
7104         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
7105         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
7106         is set.
7107         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
7108
7109 2007-03-06  Bruno Haible  <bruno@clisp.org>
7110
7111         * modules/vsnprintf-posix-tests: New file.
7112         * tests/test-vsnprintf-posix.c: New file.
7113         * tests/test-snprintf-posix.h: New file.
7114
7115         * modules/vsnprintf-posix: New file.
7116         * m4/vsnprintf-posix.m4: New file.
7117         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
7118         gl_FUNC_VSNPRINTF.
7119         (gl_FUNC_VSNPRINTF): Invoke it.
7120         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
7121         * lib/stdio_.h (vsnprintf): Define as a replacement if
7122         REPLACE_VSNPRINTF is set.
7123         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
7124
7125 2007-03-06  Bruno Haible  <bruno@clisp.org>
7126
7127         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
7128         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
7129
7130 2007-03-06  Bruno Haible  <bruno@clisp.org>
7131
7132         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
7133         (asinl): Declare also if HAVE_DECL_ASINL is set.
7134         (atanl): Declare also if HAVE_DECL_ATANL is set.
7135         (ceill): Declare also if HAVE_DECL_CEILL is set.
7136         (cosl): Declare also if HAVE_DECL_COSL is set.
7137         (expl): Declare also if HAVE_DECL_EXPL is set.
7138         (floorl): Declare also if HAVE_DECL_FLOORL is set.
7139         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
7140         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
7141         (logl): Declare also if HAVE_DECL_LOGL is set.
7142         (sinl): Declare also if HAVE_DECL_SINL is set.
7143         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
7144         (tanl): Declare also if HAVE_DECL_TANL is set.
7145         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
7146         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
7147         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
7148         declaration of frexpl, ldexpl.
7149         * modules/printf-frexpl (Depends-on): Add math.
7150         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
7151
7152 2007-03-05  Bruno Haible  <bruno@clisp.org>
7153
7154         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
7155         frexpl and ldexpl are declared.
7156         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
7157
7158 2007-03-05  Bruno Haible  <bruno@clisp.org>
7159
7160         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
7161         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
7162
7163 2007-03-05  Bruno Haible  <bruno@clisp.org>
7164
7165         * lib/stdio_.h: Include <stddef.h>.
7166
7167 2007-03-05  Bruno Haible  <bruno@clisp.org>
7168
7169         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
7170
7171 2007-03-05  Bruno Haible  <bruno@clisp.org>
7172
7173         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
7174         NetBSD 4, from Ralf Wildenhues.
7175
7176 2007-03-04  Bruno Haible  <bruno@clisp.org>
7177
7178         * lib/vasprintf.h: Update #if logic for the case when the functions
7179         exist but are overridden.
7180
7181 2007-03-04  Bruno Haible  <bruno@clisp.org>
7182
7183         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
7184         implementations: glibc-2.4 and MacOS X 10.3.
7185         * tests/test-vasnprintf-posix.c (test_function): Test also the case
7186         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
7187         * tests/test-vasprintf-posix.c (test_function): Likewise.
7188
7189 2007-03-04  Bruno Haible  <bruno@clisp.org>
7190
7191         * modules/vasprintf-posix-tests: New file.
7192         * tests/test-vasprintf-posix.c: New file.
7193
7194         * modules/vasprintf-posix: New file.
7195         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
7196         defined.
7197         * m4/vasprintf-posix.m4: New file.
7198         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
7199         gl_FUNC_VASPRINTF.
7200         (gl_FUNC_VASPRINTF): Invoke it.
7201         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
7202         here.
7203         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
7204
7205 2007-03-04  Bruno Haible  <bruno@clisp.org>
7206
7207         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
7208         REPLACE_GETTIMEOFDAY.
7209         * modules/sys_time (Makefile.am): Likewise.
7210         * m4/sys_time_h.m4: Likewise.
7211         * m4/gettimeofday.m4: Likewise.
7212
7213 2007-03-04  Bruno Haible  <bruno@clisp.org>
7214
7215         * modules/vasnprintf-posix-tests: New file.
7216         * tests/test-vasnprintf-posix.c: New file.
7217
7218         * modules/vasnprintf-posix: New file.
7219         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
7220         printf-frexpl.h.
7221         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
7222         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
7223         REPLACE_VASNPRINTF is defined.
7224         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
7225         gl_FUNC_VASNPRINTF.
7226         (gl_FUNC_VASNPRINTF): Invoke it.
7227         * m4/vasnprintf-posix.m4: New file.
7228         * m4/printf.m4: New file.
7229
7230 2007-03-04  Bruno Haible  <bruno@clisp.org>
7231
7232         Compile progreloc.c only if --enable-relocatable is specified.
7233         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
7234         if --enable-relocatable was specified.
7235         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
7236         lib_SOURCES.
7237
7238 2007-03-04  Jim Meyering  <jim@meyering.net>
7239
7240         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
7241         Use it consistently, rather than enumerating errno constants.
7242
7243 2007-03-04  Bruno Haible  <bruno@clisp.org>
7244
7245         * modules/xvasprintf-tests: New file.
7246         * tests/test-xvasprintf.c: New file.
7247
7248         * modules/vasprintf-tests: New file.
7249         * tests/test-vasprintf.c: New file.
7250
7251         * modules/vasnprintf-tests: New file.
7252         * tests/test-vasnprintf.c: New file.
7253
7254         * modules/vsnprintf-tests: New file.
7255         * tests/test-vsnprintf.c: New file.
7256
7257         * modules/snprintf-tests: New file.
7258         * tests/test-snprintf.c: New file.
7259
7260 2007-03-04  Bruno Haible  <bruno@clisp.org>
7261
7262         Compile relocatable.c only if --enable-relocatable is specified.
7263         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
7264         gl_RELOCATABLE_LIBRARY.
7265         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
7266         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
7267         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
7268         gl_RELOCATABLE_LIBRARY.
7269         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
7270         (Makefile.am): Remove lib_SOURCES.
7271         * modules/relocatable-lib-lgpl (configure.ac): Invoke
7272         gl_RELOCATABLE_LIBRARY.
7273         (Makefile.am): Remove lib_SOURCES.
7274         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
7275         always.
7276         * modules/relocatable-prog-wrapper (configure.ac): Invoke
7277         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
7278
7279 2007-03-04  Bruno Haible  <bruno@clisp.org>
7280
7281         * modules/argmatch-tests: New file.
7282         * tests/test-argmatch.c: New file.
7283
7284         * tests/test-allocsa.c (main): Halve the number of loop runs.
7285
7286         * modules/alloca-opt-tests: New file.
7287         * tests/test-alloca-opt.c: New file.
7288
7289 2007-03-04  Jim Meyering  <jim@meyering.net>
7290
7291         Work around difference between Linux ACLs and Solaris 10 ZFS.
7292         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
7293         for EINVAL.
7294
7295 2007-03-03  Bruno Haible  <bruno@clisp.org>
7296
7297         * modules/relocatable-prog (Depends-on): Add back progreloc's
7298         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
7299
7300 2007-03-03  Bruno Haible  <bruno@clisp.org>
7301
7302         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
7303         * modules/relocatable-lib: New file.
7304
7305 2007-03-03  Bruno Haible  <bruno@clisp.org>
7306
7307         * modules/relocatable-prog: Renamed from modules/relocatable.
7308         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
7309
7310 2007-03-03  Bruno Haible  <bruno@clisp.org>
7311
7312         * modules/relocatable-script (Files): Add doc/relocatable.texi,
7313         m4/relocatable-lib.m4.
7314         (Depends-on): Remove 'relocatable'.
7315         (configure.ac): Add gl_RELOCATABLE_NOP.
7316
7317 2007-03-03  Bruno Haible  <bruno@clisp.org>
7318
7319         * modules/relocatable-prog-wrapper: New file.
7320         * modules/relocatable (Depends-on): Add it. Remove all other
7321         dependencies except progname.
7322         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
7323
7324         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
7325         (gl_FUNC_STRERROR): Nop.
7326         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
7327
7328         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
7329         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
7330
7331         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
7332         (gl_FUNC_READLINK): Update.
7333
7334         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
7335
7336 2007-03-03  Bruno Haible  <bruno@clisp.org>
7337
7338         * lib/xreadlink.c: Include <unistd.h> unconditionally.
7339         * modules/xreadlink (Depends-on): Add unistd.
7340         * modules/xreadlink-with-size (Depends-on): Likewise.
7341
7342 2007-03-03  Bruno Haible  <bruno@clisp.org>
7343
7344         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
7345         extracted from gt_FUNC_SETENV.
7346         (gt_FUNC_SETENV): Remove macro.
7347         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
7348         remove gt_FUNC_SETENV.
7349
7350 2007-03-03  Bruno Haible  <bruno@clisp.org>
7351
7352         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
7353         ENABLE_RELOCATABLE here.
7354         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
7355
7356 2007-03-03  Bruno Haible  <bruno@clisp.org>
7357
7358         * modules/rbtreehash-list-tests (Depends-on): Add progname.
7359         * tests/test-rbtreehash_list.c: Include progname.h.
7360         (main): Call set_program_name.
7361
7362         * modules/rbtree-oset-tests (Depends-on): Add progname.
7363         * tests/test-rbtree_oset.c: Include progname.h.
7364         (main): Call set_program_name.
7365
7366         * modules/rbtree-list-tests (Depends-on): Add progname.
7367         * tests/test-rbtree_list.c: Include progname.h.
7368         (main): Call set_program_name.
7369
7370         * modules/linked-list-tests (Depends-on): Add progname.
7371         * tests/test-linked_list.c: Include progname.h.
7372         (main): Call set_program_name.
7373
7374 2007-03-03  Bruno Haible  <bruno@clisp.org>
7375
7376         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
7377         All uses of __restrict changed to _Restrict_.
7378         * lib/glob_.h (__restrict): Remove macro.
7379
7380 2007-03-02  Bruno Haible  <bruno@clisp.org>
7381
7382         * modules/gettext (configure.ac): Require gettext infrastructure
7383         from version 0.16.1.
7384
7385 2007-03-02  Bruno Haible  <bruno@clisp.org>
7386
7387         * modules/linkedhash-list-tests (Depends-on): Add progname.
7388         * tests/test-linkedhash_list.c: Include progname.h.
7389         (main): Call set_program_name.
7390
7391         * modules/carray-list-tests (Depends-on): Add progname.
7392         * tests/test-carray_list.c: Include progname.h.
7393         (main): Call set_program_name.
7394
7395         * modules/avltreehash-list-tests (Depends-on): Add progname.
7396         * tests/test-avltreehash_list.c: Include progname.h.
7397         (main): Call set_program_name.
7398
7399         * modules/avltree-oset-tests (Depends-on): Add progname.
7400         * tests/test-avltree_oset.c: Include progname.h.
7401         (main): Call set_program_name.
7402
7403         * modules/avltree-list-tests (Depends-on): Add progname.
7404         * tests/test-avltree_list.c: Include progname.h.
7405         (main): Call set_program_name.
7406
7407         * modules/array-oset-tests (Depends-on): Add progname.
7408         * tests/test-array_oset.c: Include progname.h.
7409         (main): Call set_program_name.
7410
7411         * modules/array-list-tests (Depends-on): Add progname.
7412         * tests/test-array_list.c: Include progname.h.
7413         (main): Call set_program_name.
7414
7415         * modules/argp-tests (Depends-on): Add progname.
7416         * tests/test-argp.c: Include argp.h first. Include progname.h.
7417         (main): Call set_program_name.
7418
7419 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
7420
7421         * doc/gnulib-tool.texi (Initial import): Reword description of
7422         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
7423         limited effect even if defined after the first system include.
7424
7425 2007-03-01  Bruno Haible  <bruno@clisp.org>
7426
7427         * build-aux/config.libpath: Update to libtool-1.5.22.
7428         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
7429
7430 2007-03-01  Bruno Haible  <bruno@clisp.org>
7431
7432         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
7433         foo_CFLAGS.
7434         Reported by Ralf Wildenhues.
7435
7436 2007-03-01  Bruno Haible  <bruno@clisp.org>
7437
7438         * build-aux/install-reloc: Remove object files left over by some
7439         compilers.
7440         Reported by Ralf Wildenhues.
7441
7442 2007-03-01  Bruno Haible  <bruno@clisp.org>
7443
7444         * build-aux/install-reloc: Break long lines.
7445
7446 2007-03-01  Bruno Haible  <bruno@clisp.org>
7447
7448         * doc/relocatable.texi: Document that it may not work on OpenBSD.
7449         Reported by Ralf Wildenhues.
7450
7451 2007-03-01  Bruno Haible  <bruno@clisp.org>
7452
7453         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
7454         include ordering constraints.
7455
7456 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7457
7458         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
7459         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
7460         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
7461         as another example.
7462         * lib/time_.h: Fix misspelling.
7463         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
7464         Require gl_HEADER_TIME_H_DEFAULTS.
7465         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
7466         * m4/time_r.m4 (gl_TIME_R): Likewise.
7467         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
7468
7469 2007-03-01  Bruno Haible  <bruno@clisp.org>
7470
7471         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
7472         * m4/utimens.m4 (gl_UTIMENS): Likewise.
7473
7474 2007-03-01  Jim Meyering  <jim@meyering.net>
7475
7476         * modules/xreadlink (Maintainer): Add my name.
7477         * modules/xreadlink-with-size (Depends-on): Alphabetize.
7478
7479 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
7480             Bruno Haible  <bruno@clisp.org>
7481
7482         * build-aux/install-reloc: Compile also c-ctype.c.
7483         * build-aux/relocatable.sh.in: New file.
7484         * doc/relocatable.texi: New file.
7485         * doc/relocatable-maint.texi: New file.
7486         * doc/gnulib.texi: Include relocatable-maint.texi.
7487         * lib/progreloc.c: Include unistd.h unconditionally.
7488         * lib/relocwrapper.c: Include unistd.h unconditionally.
7489         Include c-ctype.h.
7490         (add_dotbin): Use c_tolower.
7491         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
7492         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
7493         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
7494         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
7495         to m4/relocatable-lib.m4.
7496         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
7497         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
7498         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
7499         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
7500         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
7501         * modules/relocatable: New file.
7502         * modules/relocatable-lib: New file.
7503         * modules/relocatable-script: New file.
7504
7505 2007-02-28  Bruno Haible  <bruno@clisp.org>
7506
7507         Import --enable-relocatable infrastructure.
7508         * build-aux/config.libpath: New file, from GNU gettext.
7509         * build-aux/install-reloc: New file, from GNU gettext.
7510         * build-aux/reloc-ldflags: New file, from GNU gettext.
7511         * lib/relocatable.h: New file, from GNU gettext.
7512         * lib/relocatable.c: New file, from GNU gettext.
7513         * lib/relocwrapper.c: New file, from GNU gettext.
7514         * m4/relocatable.m4: New file, from GNU gettext.
7515
7516 2007-02-28  Bruno Haible  <bruno@clisp.org>
7517
7518         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
7519
7520         * modules/xreadlink: New file, from GNU gettext with modifications.
7521         * lib/xreadlink.c: New file, from GNU gettext.
7522         * lib/xreadlink.h: Add comments.
7523         (xreadlink): New declaration.
7524
7525         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
7526         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
7527         lib/xreadlink-with-size.c.
7528         (configure.ac): Remove gl_XREADLINK invocation.
7529         (Makefile.am): Augment lib_SOURCES.
7530         * m4/xreadlink.m4: Remove file.
7531         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
7532         (xreadlink_with_size): Renamed from xreadink.
7533         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
7534         * modules/canonicalize (Depends-on): Replace xreadlink with
7535         xreadlink-with-size.
7536         * lib/canonicalize.c (canonicalize_filename_mode): Update.
7537
7538 2007-02-25  Jim Meyering  <jim@meyering.net>
7539
7540         * build-aux/announce-gen: When complaining about excess arguments,
7541         list them.
7542
7543 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
7544
7545         * README: Document signed integer overflow situation more
7546         accurately.
7547
7548 2007-02-25  Bruno Haible  <bruno@clisp.org>
7549
7550         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
7551         'a' or 'A' conversion.
7552
7553 2007-02-25  Bruno Haible  <bruno@clisp.org>
7554
7555         * modules/filename: Renamed from modules/pathname.
7556         (Files): Replace lib/pathname.h with lib/filename.h. Replace
7557         lib/concatpath.c with lib/concat-filename.c.
7558         (Makefile.am): Update.
7559         (Include): Replace pathname.h with filename.h.
7560         * lib/filename.h: Renamed from lib/pathname.h.
7561         (concatenated_filename): Renamed from concatenated_pathname.
7562         * lib/concat-filename.c: Renamed from lib/concatpath.c.
7563         (concatenated_filename): Renamed from concatenated_pathname.
7564         * lib/findprog.c: Include filename.h instead of pathname.h.
7565         (find_in_path): Update.
7566         * lib/javacomp.c: Include filename.h instead of pathname.h.
7567         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
7568         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
7569         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
7570         is_oldgcj_14_13_usable, is_javac_usable): Update.
7571         * lib/javaexec.c: Include filename.h instead of pathname.h.
7572         (execute_java_class): Update.
7573         * modules/findprog: Update.
7574         * modules/javacomp: Update.
7575         * modules/javaexec: Update.
7576         * MODULES.html.sh (File system functions): Add 'filename', remove
7577         'pathname'.
7578
7579 2007-02-25  Bruno Haible  <bruno@clisp.org>
7580
7581         * modules/printf-frexpl-tests: New file.
7582         * tests/test-printf-frexpl.c: New file.
7583
7584         * modules/printf-frexpl: New file.
7585         * lib/printf-frexpl.h: New file.
7586         * lib/printf-frexpl.c: New file.
7587         * m4/printf-frexpl.m4: New file.
7588
7589 2007-02-25  Bruno Haible  <bruno@clisp.org>
7590
7591         * modules/printf-frexp-tests: New file.
7592         * tests/test-printf-frexp.c: New file.
7593
7594         * modules/printf-frexp: New file.
7595         * lib/printf-frexp.h: New file.
7596         * lib/printf-frexp.c: New file.
7597         * m4/printf-frexp.m4: New file.
7598
7599 2007-02-25  Bruno Haible  <bruno@clisp.org>
7600
7601         Assume automake >= 1.10 for the tests.
7602         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
7603         * modules/arctwo-tests: Likewise.
7604         * modules/argp-tests: Likewise.
7605         * modules/avltree-list-tests: Likewise.
7606         * modules/avltree-oset-tests: Likewise.
7607         * modules/avltreehash-list-tests: Likewise.
7608         * modules/carray-list-tests: Likewise.
7609         * modules/crc-tests: Likewise.
7610         * modules/des-tests: Likewise.
7611         * modules/gc-arcfour-tests: Likewise.
7612         * modules/gc-arctwo-tests: Likewise.
7613         * modules/gc-des-tests: Likewise.
7614         * modules/gc-hmac-md5-tests: Likewise.
7615         * modules/gc-hmac-sha1-tests: Likewise.
7616         * modules/gc-md2-tests: Likewise.
7617         * modules/gc-md4-tests: Likewise.
7618         * modules/gc-md5-tests: Likewise.
7619         * modules/gc-pbkdf2-sha1-tests: Likewise.
7620         * modules/gc-rijndael-tests: Likewise.
7621         * modules/gc-sha1-tests: Likewise.
7622         * modules/gc-tests: Likewise.
7623         * modules/getaddrinfo-tests: Likewise.
7624         * modules/hmac-md5-tests: Likewise.
7625         * modules/hmac-sha1-tests: Likewise.
7626         * modules/linked-list-tests: Likewise.
7627         * modules/linkedhash-list-tests: Likewise.
7628         * modules/lock-tests: Likewise.
7629         * modules/md2-tests: Likewise.
7630         * modules/md4-tests: Likewise.
7631         * modules/md5-tests: Likewise.
7632         * modules/rbtree-list-tests: Likewise.
7633         * modules/rbtree-oset-tests: Likewise.
7634         * modules/rbtreehash-list-tests: Likewise.
7635         * modules/read-file-tests: Likewise.
7636         * modules/rijndael-tests: Likewise.
7637         * modules/stdint-tests: Likewise.
7638         * modules/tls-tests: Likewise.
7639
7640 2007-02-24  Bruno Haible  <bruno@clisp.org>
7641
7642         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
7643         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
7644         function; instead check whether isnan with a double argument links.
7645         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
7646         function; instead check whether isnan with a 'long double' argument
7647         links.
7648         Reported by Eric Blake <ebb9@byu.net>.
7649
7650 2007-02-24  Bruno Haible  <bruno@clisp.org>
7651
7652         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
7653         defined.
7654         * lib/isnanl.c: Remove all code. Just include isnan.c.
7655         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
7656
7657 2007-02-25  Jim Meyering  <jim@meyering.net>
7658
7659         Avoid conflicting types for 'unsetenv' on FreeBSD.
7660         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
7661         conflicting with FreeBSD's (5.0 and 6.1) function declaration
7662         in stdlib.h.
7663
7664 2007-02-24  Bruno Haible  <bruno@clisp.org>
7665
7666         * modules/isnanl-nolibm-tests: New file.
7667         * tests/test-isnanl.c: New file.
7668
7669         * modules/isnanl-nolibm: New file.
7670         * lib/isnanl.h: New file.
7671         * lib/isnanl.c: New file.
7672         * m4/isnanl.m4: New file.
7673
7674 2007-02-24  Bruno Haible  <bruno@clisp.org>
7675
7676         * modules/isnan-nolibm-tests: New file.
7677         * tests/test-isnan.c: New file.
7678
7679         * modules/isnan-nolibm: New file.
7680         * lib/isnan.h: New file.
7681         * lib/isnan.c: New file.
7682         * m4/isnan.m4: New file.
7683
7684 2007-02-24  Bruno Haible  <bruno@clisp.org>
7685
7686         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
7687         assume that an exponent fits in 20 bits.
7688
7689 2007-02-24  Jim Meyering  <jim@meyering.net>
7690
7691         * m4/regex.m4: Update the description of the configure-time option,
7692         --without-included-regex, to state accurately what the defaults are,
7693         and perhaps to give people an idea why using this option is risky.
7694
7695 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
7696
7697         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
7698         loops on small arguments.  This attempts to avoid the problem
7699         Bruno Haible reported for AIX 4.3.2 in
7700         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
7701
7702 2007-02-23  Bruno Haible  <bruno@clisp.org>
7703
7704         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
7705         Needed for help2man.
7706
7707 2007-02-23  Karl Berry  <karl@gnu.org>
7708
7709         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
7710         exists, foo.h should be cvs-ignored, not committed.
7711
7712 2007-02-23  Eric Blake  <ebb9@byu.net>
7713
7714         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
7715         * lib/stat-time.h (includes): Likewise.
7716         * lib/utimecmp.c (includes): Likewise.
7717         * lib/utimens.h (includes): Likewise.
7718         * lib/getdate.y (includes): Also include "timespec.h" for use
7719         internal to the module.
7720         * modules/utimens (Depends-on): Revert yesterday's patch.
7721         * modules/nanosleep (Depends-on): Add missing dependency.
7722
7723 2007-02-22  Bruno Haible  <bruno@clisp.org>
7724
7725         * lib/glob.c: Don't include getlogin_r.h.
7726
7727 2007-02-22  Jim Meyering  <jim@meyering.net>
7728
7729         * modules/utimens (Depends-on): Add timespec, required for
7730         utimens.h's inclusion of timespec.h.
7731
7732 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
7733
7734         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
7735         long unreadable paths in GNU/Linux.  Problem reported by Andreas
7736         Schwab in
7737         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
7738         I'll try to think of a better way to fix the Solaris problem.
7739
7740         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
7741         like glibc; on Solaris 10, it fails with errno == EINVAL.
7742         POSIX says the behavior is unspecified if the first argument is NULL,
7743         so play it safe and never pass NULL to the system getcwd.
7744
7745 2007-02-21  Jim Meyering  <jim@meyering.net>
7746
7747         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
7748         of gettimeofday.  It would conflict with the one now always
7749         provided via sys_time_.h.  Reported by Matthew Woehlke, as
7750         an IRIX 6.5 build failure.
7751
7752 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
7753
7754         Minor fixups to port to Solaris 10 with Sun C 5.8.
7755         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
7756         * modules/getcwd (Depends-on): Add dirfd.
7757         * lib/putenv.c (putenv): #undef it.
7758         (rpl_putenv): New decl.
7759         (malloc, free): Include <stdlib.h> rather than prototyping separately.
7760
7761 2007-02-20  Bruno Haible  <bruno@clisp.org>
7762
7763         * modules/stdio-tests: New file.
7764         * tests/test-stdio.c: New file.
7765
7766         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
7767         (Depends-on): Add stdio.
7768         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
7769         (Include): Use <stdio.h> instead of vsnprintf.h.
7770         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
7771         HAVE_DECL_VSNPRINTF.
7772         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
7773
7774         * modules/snprintf (Files): Remove lib/snprintf.h.
7775         (Depends-on): Add stdio.
7776         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
7777         (Include): Use <stdio.h> instead of snprintf.h.
7778         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
7779         HAVE_DECL_SNPRINTF.
7780         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
7781         * lib/getaddrinfo.c: Likewise.
7782
7783         * modules/stdio: New file.
7784         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
7785         * lib/snprintf.h: Remove file.
7786         * lib/vsnprintf.h: Remove file.
7787         * lib/.cppi-disable: Remove snprintf.h.
7788         * m4/stdio_h.m4: New file.
7789         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
7790
7791 2007-02-20  Jim Meyering  <jim@meyering.net>
7792
7793         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
7794         used by e.g., mingw.  From Bruno Haible.
7795
7796 2007-02-19  Bruno Haible  <bruno@clisp.org>
7797
7798         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
7799         warnings.
7800         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7801
7802 2007-02-19  Bruno Haible  <bruno@clisp.org>
7803
7804         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
7805         from mingw users.
7806
7807 2007-02-19  Bruno Haible  <bruno@clisp.org>
7808
7809         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
7810         warnings.
7811         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
7812
7813 2007-02-19  Jim Meyering  <jim@meyering.net>
7814
7815         Don't use FD after a successful "fdopendir (fd)".
7816         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
7817         Reset it by calling dirfd on the just-obtained DIR*.
7818
7819         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
7820         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
7821
7822 2007-02-18  Bruno Haible  <bruno@clisp.org>
7823
7824         * lib/readlink.c: Include <unistd.h>.
7825         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
7826         HAVE_READLINK.
7827         * modules/readlink (Depends-on): Add unistd.
7828         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7829         (Include): Add <unistd.h>.
7830
7831         * lib/getlogin_r.h: Remove file.
7832         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
7833         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
7834         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
7835         HAVE_DECL_GETLOGIN_R.
7836         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
7837         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7838         (Include): Use <unistd.h> instead of getlogin_r.h.
7839
7840         * lib/getcwd.h: Remove file.
7841         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
7842         * lib/xgetcwd.c: Likewise.
7843         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
7844         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
7845         * modules/getcwd (Files): Remove lib/getcwd.h.
7846         (Depends-on): Add unistd.
7847         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7848         (Include): Use <unistd.h> instad of getcwd.h.
7849
7850         * lib/ftruncate.c: Include <unistd.h> first.
7851         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
7852         Set HAVE_FTRUNCATE.
7853         * modules/ftruncate (Depends-on): Add unistd.
7854         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7855
7856         * lib/fchdir.c: Include <unistd.h> first.
7857         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
7858         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
7859         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
7860         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7861         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
7862
7863         * lib/dup2.c: Include <unistd.h> first.
7864         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
7865         HAVE_DUP2.
7866         * modules/dup2 (Depends-on): Add unistd.
7867         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7868
7869         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
7870         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
7871         REPLACE_CHOWN. Don't define chown as a macro here.
7872         * modules/chown (Depends-on): Add unistd.
7873         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7874
7875         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
7876         Add definition for GL_LINK_WARNING.
7877         (chown, dup2): New declarations.
7878         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
7879         link warning.
7880         (ftruncate): New declaration.
7881         (getcwd): New declaration, taken from old getcwd.h.
7882         (getlogin_r): New declaration, taken from old getlogin_r.h.
7883         (readlink): New declaration.
7884         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
7885         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
7886         (gl_PREREQ_UNISTD): Remove macro.
7887         (gl_UNISTD_MODULE_INDICATOR): New macro.
7888         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
7889         many new variables. Don't set UNISTD_H.
7890         * modules/unistd (Description): Change.
7891         (Depends-on): Add link-warning.
7892         (configure.ac): Update.
7893         (Makefile.am): Create unistd.h always. Substitute many new variables
7894         into it.
7895
7896 2007-02-18  Bruno Haible  <bruno@clisp.org>
7897
7898         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
7899         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
7900         HAVE_GETSUBOPT.
7901         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
7902         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
7903         * lib/getsubopt.h: Remove file.
7904         * modules/getsubopt (Files): Remove lib/getsubopt.h.
7905         (Depends-on): Add stdlib.
7906         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7907         (Includes): Use <stdlib.h> instead of getsubopt.h.
7908         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
7909         Set HAVE_GETSUBOPT.
7910         * lib/getsubopt.c: Don't include getsubopt.h.
7911
7912 2007-02-18  Bruno Haible  <bruno@clisp.org>
7913
7914         * modules/fchdir (Depends-on): Add dup2.
7915
7916 2007-02-18  Bruno Haible  <bruno@clisp.org>
7917
7918         * lib/stdlib_.h: Handle glibc's special invocation convention
7919         specially.
7920
7921 2007-02-18  Bruno Haible  <bruno@clisp.org>
7922
7923         * modules/stdlib-tests: New file.
7924         * tests/test-stdlib.c: New file.
7925
7926         * modules/mkstemp (Files): Remove lib/mkstemp.h.
7927         (Depends-on): Add stdlib.
7928         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7929         (Includes): Use <stdlib.h> instead of mkstemp.h.
7930         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
7931         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
7932         * lib/mkstemp.c: Don't include mkstemp.h.
7933         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
7934         * lib/stdlib--.h: Don't include mkstemp.h.
7935
7936         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
7937         (Depends-on): Add stdlib.
7938         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7939         (Includes): Use <stdlib.h> instead of mkdtemp.h.
7940         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
7941         HAVE_MKDTEMP.
7942         * lib/mkdtemp.c: Don't include mkdtemp.h.
7943         * lib/clean-temp.c: Don't include mkdtemp.h.
7944
7945         * modules/exit (Files): Remove lib/exit.h.
7946         (Depends-on): Add stdlib.
7947         (Makefile.am): Remove lib_SOURCES.
7948         (Include): Use <stdlib.h> instead of exit.h.
7949         * lib/argmatch.c: Don't include exit.h.
7950         * lib/execute.c: Likewise.
7951         * lib/pagealign_alloc.c: Likewise.
7952         * lib/pipe.c: Likewise.
7953         * lib/wait-process.c: Likewise.
7954         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
7955         * lib/exitfail.c: Likewise.
7956         * lib/savewd.c: Likewise.
7957         * lib/xsetenv.c: Likewise.
7958
7959         * modules/stdlib: New file.
7960         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
7961         and extra comments about mkstemp().
7962         * lib/exit.h: Remove file.
7963         * lib/mkdtemp.h: Remove file.
7964         * lib/mkstemp.h: Remove file.
7965         * m4/stdlib_h.m4: New file.
7966         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
7967
7968 2007-02-18  Bruno Haible  <bruno@clisp.org>
7969
7970         * modules/math-tests: New file.
7971         * tests/test-math.c: New file.
7972
7973         * modules/math: New file.
7974         * modules/mathl (Files): Remove lib/mathl.h.
7975         (Depends-on): Add math.
7976         (Makefile.am): Don't mention mathl.h.
7977         (Include): Use <math.h> instead of mathl.h.
7978         * lib/math_.h: New file.
7979         * lib/mathl.h: Remove file.
7980         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
7981         mathl.h.
7982         * lib/asinl.c: Likewise.
7983         * lib/atanl.c: Likewise.
7984         * lib/ceill.c: Likewise.
7985         * lib/cosl.c: Likewise.
7986         * lib/expl.c: Likewise.
7987         * lib/floorl.c: Likewise.
7988         * lib/frexpl.c: Likewise.
7989         * lib/ldexpl.c: Likewise.
7990         * lib/logl.c: Likewise.
7991         * lib/sincosl.c: Likewise.
7992         * lib/sinl.c: Likewise.
7993         * lib/sqrtl.c: Likewise.
7994         * lib/tanl.c: Likewise.
7995         * lib/trigl.c: Likewise.
7996         * m4/math_h.m4: New file.
7997         * MODULES.html.sh (Mathematics): Add math.
7998
7999 2007-02-17  Bruno Haible  <bruno@clisp.org>
8000
8001         * modules/wctype-tests: New file.
8002         * tests/test-wctype.c: New file.
8003
8004         * modules/wchar-tests: New file.
8005         * tests/test-wchar.c: New file.
8006
8007         * modules/unistd-tests: New file.
8008         * tests/test-unistd.c: New file.
8009
8010         * modules/time-tests: New file.
8011         * tests/test-time.c: New file.
8012
8013         * modules/sysexits-tests: New file.
8014         * tests/test-sysexits.c: New file.
8015
8016         * modules/sys_time-tests: New file.
8017         * tests/test-sys_time.c: New file.
8018
8019         * modules/sys_stat-tests: New file.
8020         * tests/test-sys_stat.c: New file.
8021
8022         * modules/sys_socket-tests: New file.
8023         * tests/test-sys_socket.c: New file.
8024
8025         * modules/sys_select-tests: New file.
8026         * tests/test-sys_select.c: New file.
8027
8028         * modules/string-tests: New file.
8029         * tests/test-string.c: New file.
8030
8031         * modules/stdbool-tests: New file.
8032         * tests/test-stdbool.c: New file.
8033
8034         * modules/netinet_in-tests: New file.
8035         * tests/test-netinet_in.c: New file.
8036
8037         * modules/inttypes-tests: New file.
8038         * tests/test-inttypes.c: New file.
8039
8040         * modules/fcntl-tests: New file.
8041         * tests/test-fcntl.c: New file.
8042
8043         * modules/byteswap-tests: New file.
8044         * tests/test-byteswap.c: New file.
8045
8046         * modules/arpa_inet-tests: New file.
8047         * tests/test-arpa_inet.c: New file.
8048
8049 2007-02-17  Bruno Haible  <bruno@clisp.org>
8050
8051         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
8052         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
8053         if the corresponding module is not enabled. Emit link warnings if
8054         the function is used nevertheless.
8055         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
8056         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
8057         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
8058         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
8059         * modules/inttypes (Depends-on): Add link-warning.
8060         (Makefile.am): Copy the contents of build-aux/link-warning.h into
8061         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
8062         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
8063         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
8064         * modules/imaxdiv (configure.ac): Likewise.
8065         * modules/strtoimax (configure.ac): Likewise.
8066         * modules/strtoumax (configure.ac): Likewise.
8067
8068 2007-02-17  Bruno Haible  <bruno@clisp.org>
8069
8070         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
8071         gl_STRING_MODULE_INDICATOR_DEFAULTS.
8072         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
8073         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
8074
8075 2007-02-17  Bruno Haible  <bruno@clisp.org>
8076
8077         * modules/link-warning: New file.
8078         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
8079         * lib/string_.h (GL_LINK_WARNING): Remove definition.
8080         * modules/string (Depends-on): Add link-warning.
8081         (Makefile.am): Copy the contents of build-aux/link-warning.h into
8082         string.h.
8083         * MODULES.html.sh (Support for building libraries and executables): Add
8084         link-warning.
8085
8086 2007-02-17  Bruno Haible  <bruno@clisp.org>
8087
8088         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
8089         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
8090         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
8091         long lines.
8092
8093 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
8094             Bruno Haible  <bruno@clisp.org>
8095
8096         * modules/tmpfile: New file.
8097         * lib/tmpfile.c: New file.
8098         * m4/tmpfile.m4: New file.
8099         * MODULES.html.sh (func_all_modules): New section "Input/output".
8100
8101 2007-02-15  Bruno Haible  <bruno@clisp.org>
8102
8103         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
8104         (supports_delete_on_close): New function.
8105         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
8106
8107 2007-02-14  Bruno Haible  <bruno@clisp.org>
8108
8109         * modules/mbspcasecmp-tests: New file.
8110         * tests/test-mbspcasecmp.sh: New file.
8111         * tests/test-mbspcasecmp.c: New file.
8112
8113         New module mbspcasecmp.
8114         * modules/mbspcasecmp: New file.
8115         * lib/mbspcasecmp.c: New file.
8116         * lib/string_.h (strncasecmp): Change warning message.
8117         (mbspcasecmp): New declaration.
8118         * m4/mbspcasecmp.m4: New file.
8119         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8120         GNULIB_MBSPCASECMP.
8121         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
8122         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
8123
8124 2007-02-14  Bruno Haible  <bruno@clisp.org>
8125
8126         * modules/mbsncasecmp-tests: New file.
8127         * tests/test-mbsncasecmp.sh: New file.
8128         * tests/test-mbsncasecmp.c: New file.
8129
8130         New module mbsncasecmp.
8131         * modules/mbsncasecmp: New file.
8132         * lib/mbsncasecmp.c: New file.
8133         * lib/string_.h (mbsncasecmp): New declaration.
8134         * m4/mbsncasecmp.m4: New file.
8135         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8136         GNULIB_MBSNCASECMP.
8137         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
8138         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
8139
8140 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8141
8142         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
8143         Verify that it doesn't overlap with our flags.
8144         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
8145         do not have the desired effect in multibyte locales; instead, use
8146         mbscasecmp.
8147         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
8148         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
8149         we don't require GNU fnmatch ourselves (if our users require it, they
8150         should do so explicitly).
8151
8152         Fix regex code so it doesn't rely on strcasecmp.
8153         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
8154         Otherwise, include gnulib's langinfo.h.
8155         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
8156         undesirable behavior in non-C locales.  Instead, rely on localecharset.
8157         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
8158         * modules/regex (FILES): Remove m4/codeset.m4.
8159         (Depends-on): Add localcharset.  Remove strcase.
8160
8161 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8162
8163         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
8164         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
8165
8166 2007-02-13  Bruno Haible  <bruno@clisp.org>
8167
8168         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
8169         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8170
8171 2007-02-12  Bruno Haible  <bruno@clisp.org>
8172
8173         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
8174         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
8175         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
8176         time warning rather than a link error.
8177
8178 2007-02-12  Bruno Haible  <bruno@clisp.org>
8179
8180         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
8181         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
8182         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8183
8184 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
8185
8186         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
8187         args, not 2.
8188
8189 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
8190
8191         New module 'time', so that apps can include <time.h> as per
8192         POSIX and GNU instead of separate include files like time_r.h
8193         and timegm.h.  This implementation tries out a simpler approach
8194         for replacing decls in standard include files (as compared to
8195         the string module), somewhat as an experiment.
8196
8197         * config/srclist.txt: Comment out mktime.c for now.
8198         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
8199         since it doesn't apply any more.  Use generic wording instead.
8200         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
8201         'time'.
8202         * lib/time_.h, m4/time_h.m4, modules/time: New files.
8203         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
8204         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
8205         Don't include <sys/types.h>; no longer needed since we assume C89.
8206         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
8207         * lib/strftime.c: Likewise.
8208         * lib/time_r.c: Likewise.
8209         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
8210         * lib/nanosleep.c: Include <time.h> first, to check interface.
8211         * lib/strptime.c: Likewise.
8212         * lib/time_r.c: Likewise.
8213         * lib/timegm.c: Likewise.
8214         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
8215         needed.
8216         * lib/timegm.c: Don't include timegm.h; no longer needed.
8217         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
8218         time.h now handles any problems in that area.
8219         (struct timespec, nanosleep): Remove; time.h now arranges for these.
8220         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
8221         that time.h defines struct timespec.
8222         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
8223         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
8224         handles that.
8225         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
8226         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
8227         needed.  Set REPLACE_LOCALTIME.
8228         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
8229         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
8230         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
8231         nanosleep; time_h.m4 now does that.  Don't require
8232         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
8233         module handles this now.
8234         * modules/getdate (Depends-on): Remove timespec.  Add time.
8235         * modules/nanosleep (Depends-on): Likewise.
8236         * modules/stat-time (Depends-on): Likewise.
8237         * modules/nanosleep (Include): Include time.h, not timespec.h.
8238         * modules/strptime (Files): Remove lib/strptime.h.
8239         (Depends-on): Add extensions, time.
8240         (Include): Include time.h, not strptime.h.
8241         * modules/time_r (Files): Remove lib/time_r.h.
8242         (Depends-on): Add time.
8243         (Include): Include time.h, not time_r.h.
8244         * modules/timegm: Likewise.
8245         * modules/timespec (Description): Now does timespec-related decls
8246         of our own, instead of struct timespec itself.
8247         (Depends-on): Add time; remove extensions.
8248         (Maintainer): Add self.
8249         * modules/utimecmp (Depends-on): Add time; remove timespec.
8250         * modules/utimens (Depends-on): Likewise.
8251         * modules/xnanosleep (Depends-on): Likewise.
8252
8253 2007-02-11  Bruno Haible  <bruno@clisp.org>
8254
8255         * lib/c-strstr.c: Include allocsa.h.
8256         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
8257         * lib/c-strcasestr.c: Include allocsa.h.
8258         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
8259         * lib/strcasestr.c: Include allocsa.h.
8260         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
8261         * lib/mbsstr.c: Include allocsa.h.
8262         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
8263         allocsa/freesa instead of malloc/free.
8264         * lib/mbscasestr.c: Include allocsa.h.
8265         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
8266         allocsa/freesa instead of malloc/free.
8267         * modules/c-strstr (Depends-on): Add allocsa.
8268         * modules/c-strcasestr (Depends-on): Likewise.
8269         * modules/strcasestr (Depends-on): Likewise.
8270         * modules/mbsstr (Depends-on): Likewise.
8271         * modules/mbscasestr (Depends-on): Likewise.
8272
8273 2007-02-11  Bruno Haible  <bruno@clisp.org>
8274
8275         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
8276
8277         * modules/mbsspn-tests: New file.
8278         * tests/test-mbsspn.sh: New file.
8279         * tests/test-mbsspn.c: New file.
8280
8281 2007-02-11  Bruno Haible  <bruno@clisp.org>
8282
8283         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
8284
8285         * modules/mbspbrk-tests: New file.
8286         * tests/test-mbspbrk.sh: New file.
8287         * tests/test-mbspbrk.c: New file.
8288
8289 2007-02-11  Bruno Haible  <bruno@clisp.org>
8290
8291         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
8292         unneeded cast.
8293
8294         * modules/mbscspn-tests: New file.
8295         * tests/test-mbscspn.sh: New file.
8296         * tests/test-mbscspn.c: New file.
8297
8298 2007-02-11  Bruno Haible  <bruno@clisp.org>
8299
8300         * modules/mbscasecmp-tests: New file.
8301         * tests/test-mbscasecmp.sh: New file.
8302         * tests/test-mbscasecmp.c: New file.
8303
8304 2007-02-11  Bruno Haible  <bruno@clisp.org>
8305
8306         Ensure O(n) worst-case complexity of mbscasestr.
8307         * lib/mbscasestr.c: Include stdbool.h.
8308         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
8309         functions.
8310         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
8311         the bookkeeping indicates that it's worth it.
8312         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
8313
8314         * modules/mbscasestr-tests: New file.
8315         * tests/test-mbscasestr1.c: New file.
8316         * tests/test-mbscasestr2.sh: New file.
8317         * tests/test-mbscasestr2.c: New file.
8318         * tests/test-mbscasestr3.sh: New file.
8319         * tests/test-mbscasestr3.c: New file.
8320         * tests/test-mbscasestr4.sh: New file.
8321         * tests/test-mbscasestr4.c: New file.
8322         * m4/locale-tr.m4: New file.
8323
8324 2007-02-11  Bruno Haible  <bruno@clisp.org>
8325
8326         Ensure O(n) worst-case complexity of mbsstr.
8327         * lib/mbsstr.c: Include stdbool.h.
8328         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
8329         functions.
8330         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
8331         bookkeeping indicates that it's worth it.
8332         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
8333
8334         * modules/mbsstr-tests: New file.
8335         * tests/test-mbsstr1.c: New file.
8336         * tests/test-mbsstr2.sh: New file.
8337         * tests/test-mbsstr2.c: New file.
8338         * tests/test-mbsstr3.sh: New file.
8339         * tests/test-mbsstr3.c: New file.
8340         * m4/locale-fr.m4: New file.
8341
8342 2007-02-11  Bruno Haible  <bruno@clisp.org>
8343
8344         * lib/mbsrchr.c (mbsrchr): Fix bug.
8345
8346         * modules/mbsrchr-tests: New file.
8347         * tests/test-mbsrchr.sh: New file.
8348         * tests/test-mbsrchr.c: New file.
8349
8350 2007-02-11  Bruno Haible  <bruno@clisp.org>
8351
8352         * lib/mbschr.c (mbschr): Fix bug.
8353
8354         * modules/mbschr-tests: New file.
8355         * tests/test-mbschr.sh: New file.
8356         * tests/test-mbschr.c: New file.
8357         * m4/locale-zh.m4: New file.
8358
8359 2007-02-11  Bruno Haible  <bruno@clisp.org>
8360
8361         Support for copying multibyte string iterators.
8362         * lib/mbiter.h: Include <string.h>.
8363         (mbiter_multi_copy): New function.
8364         (mbi_copy): New macro.
8365         * lib/mbuiter.h: Include <string.h>.
8366         (mbuiter_multi_copy): New function.
8367         (mbui_copy): New macro.
8368
8369 2007-02-11  Bruno Haible  <bruno@clisp.org>
8370
8371         New module mbslen.
8372         * modules/mbslen: New file.
8373         * lib/mbslen.c: New file.
8374         * lib/string_.h (mbslen): New declaration.
8375         * m4/mbslen.m4: New file.
8376         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8377         GNULIB_MBSLEN.
8378         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
8379         * MODULES.html.sh (Internationalization functions): Add mbslen.
8380
8381 2007-02-11  Bruno Haible  <bruno@clisp.org>
8382
8383         Ensure O(n) worst-case complexity of strcasestr substitute.
8384         * lib/strcasestr.c: Include stdbool.h.
8385         (knuth_morris_pratt): New function.
8386         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
8387         bookkeeping indicates that it's worth it.
8388         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
8389
8390         * modules/strcasestr-tests: New file.
8391         * tests/test-strcasestr.c: New file.
8392
8393 2007-02-11  Bruno Haible  <bruno@clisp.org>
8394
8395         Ensure O(n) worst-case complexity of c_strcasestr.
8396         * lib/c-strcasestr.c: Include stdbool.h, string.h.
8397         (knuth_morris_pratt): New function.
8398         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
8399         the bookkeeping indicates that it's worth it.
8400         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
8401
8402         * modules/c-strcasestr-tests: New file.
8403         * tests/test-c-strcasestr.c: New file.
8404
8405 2007-02-11  Bruno Haible  <bruno@clisp.org>
8406
8407         Ensure O(n) worst-case complexity of c_strstr.
8408         * lib/c-strstr.c: Include stdbool.h, string.h.
8409         (knuth_morris_pratt): New function.
8410         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
8411         bookkeeping indicates that it's worth it.
8412         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
8413
8414         * lib/c-strstr.c: Complete rewrite for maintainability.
8415
8416         * modules/c-strstr-tests: New file.
8417         * tests/test-c-strstr.c: New file.
8418
8419 2007-02-11  Bruno Haible  <bruno@clisp.org>
8420
8421         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
8422         5.2.1 and earlier, whereby \055 was treated just like the range
8423         delimiter '-'.
8424         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
8425
8426 2007-02-08  Bruno Haible  <bruno@clisp.org>
8427
8428         * modules/regex (Depends-on): Add stdbool.
8429         Reported by Dalibor Topic <robilad@kaffe.org>.
8430
8431 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8432
8433         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
8434         Prefer returning from main to exiting from it.
8435         Remove unnecessary parens after sizeof.
8436
8437 2007-02-05  Bruno Haible  <bruno@clisp.org>
8438
8439         New module mbssep.
8440         * modules/mbssep: New file.
8441         * lib/mbssep.c: New file.
8442         * lib/string_.h (strsep): Add a conditional link warning.
8443         (mbssep): New declaration.
8444         * m4/mbssep.m4: New file.
8445         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8446         GNULIB_MBSSEP.
8447         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
8448         * MODULES.html.sh (Internationalization functions): Add mbssep.
8449
8450 2007-02-05  Bruno Haible  <bruno@clisp.org>
8451
8452         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
8453         Optimize search in case of 1 delimiter.
8454
8455 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
8456
8457         * lib/acl.h: Include sys/types.h before sys/acl.h.
8458
8459 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
8460
8461         Merge upstream fix for glibc bugzilla #3957:
8462
8463         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
8464
8465         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
8466         bit for RE_HAT_LISTS_NOT_NEWLINE.
8467         (build_charclass_op): Remove bogus comment.
8468
8469 2007-02-05  Simon Josefsson  <simon@josefsson.org>
8470
8471         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
8472
8473 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
8474
8475         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
8476         * lib/memmem.c [!defined _LIBC]: Include config.h.
8477
8478 2007-02-04  Bruno Haible  <bruno@clisp.org>
8479
8480         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
8481         warning message.
8482
8483 2007-02-04  Bruno Haible  <bruno@clisp.org>
8484
8485         New module mbstok_r.
8486         * modules/mbstok_r: New file.
8487         * lib/mbstok_r.c: New file.
8488         * lib/string_.h (strtok_r): Change argument names to match the
8489         comments. Add a conditional link warning.
8490         (mbstok_r): New declaration.
8491         * m4/mbstok_r.m4: New file.
8492         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8493         GNULIB_MBSTOK_R.
8494         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
8495         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
8496
8497 2007-02-04  Bruno Haible  <bruno@clisp.org>
8498
8499         New module mbsspn.
8500         * modules/mbsspn: New file.
8501         * lib/mbsspn.c: New file.
8502         * lib/string_.h (strspn): Add a conditional link warning.
8503         (mbsspn): New declaration.
8504         * m4/mbsspn.m4: New file.
8505         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8506         GNULIB_MBSSPN.
8507         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
8508         * MODULES.html.sh (Internationalization functions): Add mbsspn.
8509
8510 2007-02-04  Bruno Haible  <bruno@clisp.org>
8511
8512         New module mbspbrk.
8513         * modules/mbspbrk: New file.
8514         * lib/mbspbrk.c: New file.
8515         * lib/string_.h (strpbrk): Add a conditional link warning.
8516         (mbspbrk): New declaration.
8517         * m4/mbspbrk.m4: New file.
8518         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8519         GNULIB_MBSPBRK.
8520         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
8521         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
8522
8523 2007-02-04  Bruno Haible  <bruno@clisp.org>
8524
8525         New module mbscspn.
8526         * modules/mbscspn: New file.
8527         * lib/mbscspn.c: New file.
8528         * lib/string_.h (strcspn): Add a conditional link warning.
8529         (mbscspn): New declaration.
8530         * m4/mbscspn.m4: New file.
8531         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8532         GNULIB_MBSCSPN.
8533         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
8534         * MODULES.html.sh (Internationalization functions): Add mbscspn.
8535
8536 2007-02-04  Bruno Haible  <bruno@clisp.org>
8537
8538         New module mbscasestr, reduced goal of strcasestr.
8539         * modules/mbscasestr: New file.
8540         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
8541         (mbscasestr): Renamed from strcasestr.
8542         * lib/strcasestr.c: Don't include mbuiter.h.
8543         (strcasestr): Remove support for multibyte locales.
8544         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
8545         Change the conditional link warning.
8546         (mbscasestr): New declaration.
8547         * m4/mbscasestr.m4: New file.
8548         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
8549         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
8550         REPLACE_STRCASESTR.
8551         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
8552         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
8553         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
8554         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
8555         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
8556         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
8557         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
8558         (Depends-on): Remove mbuiter.
8559         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
8560
8561 2007-02-04  Bruno Haible  <bruno@clisp.org>
8562
8563         Simplify handling of strncasecmp.
8564         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
8565         the conditional link warning.
8566         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
8567         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
8568         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
8569         * modules/strcase (configure.ac): Don't invoke
8570         gl_STRING_MODULE_INDICATOR.
8571         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
8572
8573 2007-02-04  Bruno Haible  <bruno@clisp.org>
8574
8575         New module mbscasecmp, reduced goal of strcasecmp.
8576         * modules/mbscasecmp: New file.
8577         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
8578         (mbscasecmp): Renamed from strcasecmp.
8579         * lib/strcasecmp.c: Don't include mbuiter.h.
8580         (strcasecmp): Remove support for multibyte locales.
8581         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
8582         Change the conditional link warning.
8583         (mbscasecmp): New declaration.
8584         * m4/mbscasecmp.m4: New file.
8585         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
8586         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
8587         REPLACE_STRCASECMP.
8588         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
8589         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8590         GNULIB_MBSCASECMP.
8591         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
8592         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
8593         * modules/strcase (Files): Remove m4/mbrtowc.m4.
8594         (Depends-on): Remove mbuiter.
8595         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
8596
8597 2007-02-04  Bruno Haible  <bruno@clisp.org>
8598
8599         New module mbsstr. Remove module strstr.
8600         * modules/mbsstr: New file.
8601         * modules/strstr: Remove file.
8602         * lib/mbsstr.c: Renamed from lib/strstr.c.
8603         (mbsstr): Renamed from strstr.
8604         * lib/string_.h (strstr): Remove declaration. Change the conditional
8605         link warning.
8606         (mbsstr): New declaration.
8607         * m4/mbsstr.m4: New file.
8608         * m4/strstr.m4: Remove file.
8609         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
8610         REPLACE_STRSTR.
8611         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
8612         Don't initialize GNULIB_STRSTR.
8613         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
8614         substitute GNULIB_STRSTR and REPLACE_STRSTR.
8615         * MODULES.html.sh (Internationalization functions): Add mbsstr.
8616         (Support for systems lacking ANSI C 89): Remove strstr.
8617
8618 2007-02-04  Bruno Haible  <bruno@clisp.org>
8619
8620         New module mbsrchr.
8621         * modules/mbsrchr: New file.
8622         * lib/mbsrchr.c: New file.
8623         * lib/string_.h (strrchr): Add a conditional link warning.
8624         (mbsrchr): New declaration.
8625         * m4/mbsrchr.m4: New file.
8626         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8627         GNULIB_MBSRCHR.
8628         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
8629         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
8630
8631 2007-02-04  Bruno Haible  <bruno@clisp.org>
8632
8633         New module mbschr.
8634         * modules/mbschr: New file.
8635         * lib/mbschr.c: New file.
8636         * lib/string_.h (strchr): Add a conditional link warning.
8637         (mbschr): New declaration.
8638         * m4/mbschr.m4: New file.
8639         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
8640         GNULIB_MBSCHR.
8641         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
8642         * MODULES.html.sh (Internationalization functions): Add mbschr.
8643
8644 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
8645
8646         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
8647
8648         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
8649
8650 2007-02-04  Bruno Haible  <bruno@clisp.org>
8651
8652         New module description section 'configure.ac-early'.
8653         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
8654         (func_get_autoconf_early_snippet): New function.
8655         (func_import, func_create_testdir): Use it. Remove special cases for
8656         modules 'extensions' and 'lock'.
8657         * modules/extensions (configure.ac-early): Require
8658         gl_USE_SYSTEM_EXTENSIONS.
8659         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
8660
8661 2007-02-04  Bruno Haible  <bruno@clisp.org>
8662
8663         Make use of gcj-4.3's -fsource and -ftarget option.
8664         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
8665         and if so try the options -fsource and -ftarget.
8666         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
8667         source_version, ftarget_option, target_version arguments.
8668         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
8669         (is_envjavac_oldgcj_14_14_usable): Renamed from
8670         is_envjavac_gcj_14_14_usable.
8671         (is_envjavac_oldgcj_14_13_usable): Renamed from
8672         is_envjavac_gcj_14_13_usable.
8673         (is_gcj_present): Update.
8674         (is_gcj_43, is_gcj43_usable): New functions.
8675         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
8676         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
8677         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
8678         try the options -fsource and -ftarget.
8679
8680 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
8681
8682         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
8683         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
8684         larger value.
8685
8686 2007-02-03  Jim Meyering  <jim@meyering.net>
8687
8688         Give tools a better chance to allocate space for very large buffers.
8689         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
8690
8691         Make pwd and readlink work also when run with an unreadable parent dir
8692         on systems with openat support.
8693         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
8694         provided getcwd function, even when we have openat support.
8695         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
8696
8697 2007-02-02  Bruno Haible  <bruno@clisp.org>
8698
8699         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
8700         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
8701         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
8702         portability problems if one of these functions is only used on specific
8703         platforms.
8704         Reported by Paul Eggert.
8705
8706 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
8707
8708         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
8709         is causing more trouble than it's curing.
8710         * lib/regex_internal.h (__mempcpy): Remove.
8711         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
8712         (and make the code a tad smaller to boot).
8713         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
8714
8715 2007-02-02  Jim Meyering  <jim@meyering.net>
8716
8717         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
8718         section, not in the Makefile.am: one.
8719
8720 2007-02-02  Eric Blake  <ebb9@byu.net>
8721
8722         * lib/strchrnul.c: Always include config.h first.
8723
8724         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
8725         gnulib strstr is not necessary here.
8726
8727 2007-02-02  Simon Josefsson  <simon@josefsson.org>
8728
8729         * m4/socklen.m4: Fix typo.
8730
8731 2007-02-02  Eric Blake  <ebb9@byu.net>
8732
8733         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
8734         * modules/netinet_in (Makefile.am): Likewise.
8735
8736 2007-02-01  Bruno Haible  <bruno@clisp.org>
8737
8738         * lib/string_.h (GL_LINK_WARNING): New macro.
8739         (strcasecmp, strstr, strcasestr): If provided by the system,
8740         conditionally define as a macro that leads to a warning instead of to
8741         an error.
8742         (strncasecmp): Conditionally define as a macro that leads to a warning.
8743
8744 2007-02-01  Karl Berry  <karl@gnu.org>
8745
8746         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
8747
8748 2007-02-01  Bruno Haible  <bruno@clisp.org>
8749
8750         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
8751         renamings.
8752
8753 2007-02-01  Eric Blake  <ebb9@byu.net>
8754
8755         * modules/regex (Depends-on): Revert dependence on mempcpy.
8756         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
8757         module's definition of mempcpy.
8758         Reported by Paul Eggert.
8759
8760 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
8761
8762         * lib/string_.h: If the gnulib module XYZ is not present, undefine
8763         the symbol XYZ before redefining it.  This fixes a problem with
8764         programs that don't use XYZ, when compiled on systems that define
8765         XYZ to something else.
8766
8767 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
8768
8769         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
8770         occurs when "mkdir -m foo" creates a setgid directory that is (1)
8771         writeable to group or other and (2) is intended to have a special
8772         mode bit that is set or cleared.  In such a case, the directory
8773         should be neither group- nor other-writeable until the special
8774         mode bits are right.
8775
8776 2007-01-31  Eric Blake  <ebb9@byu.net>
8777
8778         * modules/mountlist (Depends-on): Add strstr.
8779
8780         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
8781         bug.
8782         * modules/string (Makefile.am): Remove redundant replacement.
8783         * modules/regex (Depends-on): Add mempcpy.
8784
8785 2007-01-31  Bruno Haible  <bruno@clisp.org>
8786
8787         New module description field 'Link'.
8788         * gnulib-tool (func_usage): Document --extract-link-directive.
8789         (sed_extract_prog): Recognize 'Link' directive.
8790         (func_get_link_directive): New function.
8791         (func_import): Show summary of link directives.
8792         Handle --extract-link-directive option.
8793         * modules/acl (Link): New section.
8794         * modules/clock-time (Link): New section.
8795         * modules/euidaccess (Link): New section.
8796         * modules/gettext (Link): New section.
8797         * modules/iconv (Link): New section.
8798         * modules/lock (Link): New section.
8799         * modules/nanosleep (Link): New section.
8800         * modules/readline (Link): New section.
8801
8802 2007-01-27  Bruno Haible  <bruno@clisp.org>
8803
8804         Enforce the use of gnulib modules for unportable <string.h> functions.
8805         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
8806         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
8807         (gl_HEADER_STRING_H_BODY): Require it.
8808         * lib/string_.h: If the gnulib module XYZ is not present, redefine
8809         the symbol XYZ to one that gives a link error.
8810         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
8811         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
8812         * modules/mempcpy (configure.ac): Likewise.
8813         * modules/memrchr (configure.ac): Likewise.
8814         * modules/stpcpy (configure.ac): Likewise.
8815         * modules/stpncpy (configure.ac): Likewise.
8816         * modules/strcase (configure.ac): Likewise.
8817         * modules/strcasestr (configure.ac): Likewise.
8818         * modules/strchrnul (configure.ac): Likewise.
8819         * modules/strdup (configure.ac): Likewise.
8820         * modules/strndup (configure.ac): Likewise.
8821         * modules/strnlen (configure.ac): Likewise.
8822         * modules/strpbrk (configure.ac): Likewise.
8823         * modules/strsep (configure.ac): Likewise.
8824         * modules/strstr (configure.ac): Likewise.
8825         * modules/strtok_r (configure.ac): Likewise.
8826
8827 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
8828
8829         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
8830
8831 2007-01-30  Jim Meyering  <jim@meyering.net>
8832
8833         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
8834
8835 2007-01-29  Bruno Haible  <bruno@clisp.org>
8836
8837         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
8838         * lib/execute.c: Likewise.
8839         * lib/pipe.c: Likewise.
8840         * lib/printf-args.h: Likewise.
8841         * lib/printf-args.c: Likewise.
8842         * lib/printf-parse.c: Likewise.
8843         * lib/vasnprintf.c: Likewise.
8844
8845 2007-01-29  Eric Blake  <ebb9@byu.net>
8846
8847         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
8848         declaration.
8849
8850 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
8851
8852         * lib/strptime.h (strptime): Use 'restrict' for args where
8853         POSIX requires this.
8854         * lib/strptime.c (strptime): Likewise.
8855         Change license notice from LGPL to GPL, since gnulib-tool will
8856         change this as needed.
8857         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
8858         defined.
8859         Include "strptime.h" first, to check interface.
8860         Do not #undef _LIBC and _NL_CURRENT.
8861         Do not include <stdlib.h>; no longer needed.
8862         Include "time_r.h" and declare ptime_locale_status
8863         only if _LIBC is not defined.
8864         (__P): Remove unused macro.
8865         (match_string): Bring back glibc version, but use it only if _LIBC
8866         is defined.
8867         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
8868         Remove unnecessary assertion and abort() call.
8869         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
8870         * m4/strptime.m4: Fix serial number comment.
8871         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
8872         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
8873         (Depends-on): Add time_r.
8874
8875 2007-01-29  Bruno Haible  <bruno@clisp.org>
8876
8877         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
8878         strptime.
8879         * modules/strptime (Depends-on): Add stdbool.
8880         * lib/strptime.h: Include <time.h> always. Add comments.
8881
8882 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
8883
8884         * modules/strptime: New file.
8885         * lib/strptime.h: New file.
8886         * lib/strptime.c: New file.
8887         * m4/strptime.m4: New file.
8888
8889 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
8890
8891         * MODULES.html.sh: New module mpsort.
8892         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
8893
8894         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
8895         a circularity problem with HP-UX ia64 reported by Bob Proulx in
8896         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
8897         All uses changed.
8898         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
8899         All uses changed.
8900         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
8901         to _Restrict_.
8902         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
8903         the parameter matches the prototype.
8904
8905 2007-01-28  Jim Meyering  <jim@meyering.net>
8906
8907         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
8908         sys/time.h here, reverting that part of the previous patch:
8909         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
8910
8911 2007-01-28  Bruno Haible  <bruno@clisp.org>
8912
8913         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
8914         value of $(SYS_TIME_H).
8915         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
8916         remove it conditionally, too. [added by Jim Meyering]
8917         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
8918         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
8919         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
8920         GETTIMEOFDAY_REPLACEMENT to 1.
8921
8922 2007-01-28  Bruno Haible  <bruno@clisp.org>
8923
8924         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
8925         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
8926         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
8927         Set UNISTD_H instead of UNISTD_H2.
8928         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
8929
8930 2007-01-28  Bruno Haible  <bruno@clisp.org>
8931
8932         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
8933         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
8934
8935 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8936
8937         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
8938         (func_create_testdir): Ensure C locale for `grep' and `tr'
8939         character ranges.
8940         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
8941         ACLOCAL_AMFLAGS parsing state machine.
8942
8943 2007-01-27  Bruno Haible  <bruno@clisp.org>
8944
8945         * modules/unistr/base: Update.
8946
8947 2007-01-27  Bruno Haible  <bruno@clisp.org>
8948
8949         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
8950         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
8951         * modules/unistr/u32-mbtouc-unsafe: Renamed from
8952         modules/unistr/u32-mbtouc.
8953         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
8954         * lib/unistr.h: Update.
8955         * lib/linebreak.c: Update.
8956         * modules/unistr/u32-mbtouc: Renamed from
8957         modules/unistr/u32-mbtouc-safe.
8958         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
8959         * lib/unistr.h: Update.
8960         * lib/unistr/u32-to-u8.c: Update.
8961         * lib/unistr/u32-to-u16.c: Update.
8962
8963 2007-01-27  Bruno Haible  <bruno@clisp.org>
8964
8965         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
8966         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
8967         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
8968         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
8969         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
8970         * modules/unistr/u16-mbtouc-unsafe: Renamed from
8971         modules/unistr/u16-mbtouc.
8972         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
8973         * lib/unistr.h: Update.
8974         * lib/linebreak.c: Update.
8975         * modules/linebreak: Update.
8976         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
8977         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
8978         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
8979         * modules/unistr/u16-mbtouc: Renamed from
8980         modules/unistr/u16-mbtouc-safe.
8981         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
8982         * lib/unistr.h: Update.
8983         * lib/unistr/u16-to-u8.c: Update.
8984         * modules/unistr/u16-to-u8: Update.
8985         * lib/unistr/u16-to-u32.c: Update.
8986         * modules/unistr/u16-to-u32: Update.
8987
8988 2007-01-27  Bruno Haible  <bruno@clisp.org>
8989
8990         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
8991         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
8992         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
8993         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
8994         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
8995         * modules/unistr/u8-mbtouc-unsafe: Renamed from
8996         modules/unistr/u8-mbtouc.
8997         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
8998         * lib/unistr.h: Update.
8999         * lib/striconveh.c: Update.
9000         * modules/striconveh: Update.
9001         * lib/linebreak.c: Update.
9002         * modules/linebreak: Update.
9003         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
9004         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
9005         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
9006         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
9007         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
9008         * lib/unistr.h: Update.
9009         * lib/striconveh.c: Update.
9010         * modules/striconveh: Update.
9011         * lib/unistr/u8-to-u16.c: Update.
9012         * modules/unistr/u8-to-u16: Update.
9013         * lib/unistr/u8-to-u32.c: Update.
9014         * modules/unistr/u8-to-u32: Update.
9015
9016 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9017
9018         Sync from Libtool.
9019         * lib/argz.c: Do not include strings.h nor memory.h, include
9020         string.h unconditionally.  Patch by Simon Josefsson.
9021
9022 2007-01-27  Bruno Haible  <bruno@clisp.org>
9023
9024         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
9025         from gl_HEADER_STRING_H_BODY.
9026         (gl_HEADER_STRING_H_BODY): Require it.
9027         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
9028         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
9029         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
9030         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
9031         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
9032         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
9033         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
9034         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
9035         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
9036         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
9037         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
9038         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
9039         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
9040         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
9041         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
9042
9043 2007-01-27  Bruno Haible  <bruno@clisp.org>
9044
9045         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
9046         check_PROGRAMS into noinst_PROGRAMS.
9047         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
9048         check_PROGRAMS in this case.
9049         (func_import): Set for_test to false.
9050         (func_create_testdir): Set for_test to true.
9051
9052 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
9053             Bruno Haible  <bruno@clisp.org>
9054
9055         * modules/strcasestr (Files): Remove lib/strcasestr.h.
9056         (Depends-on): Add string.
9057         (Includes): Use <string.h> instead of strcasestr.h.
9058         * modules/string (Makefile.am): Also substitute the value of
9059         REPLACE_STRCASESTR.
9060         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
9061         assume strcasestr is declared in <string.h> not <strings.h>. Also
9062         set REPLACE_STRCASESTR.
9063         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
9064         REPLACE_STRCASESTR.
9065         * lib/strcasestr.h: Remove file.
9066         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
9067         * lib/string_.h (strcasestr): New declaration.
9068
9069 2007-01-27  Bruno Haible  <bruno@clisp.org>
9070
9071         * lib/string_.h: Use 'extern'.
9072
9073 2007-01-27  Jim Meyering  <jim@meyering.net>
9074
9075         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
9076         of set-but-not-used local, "q".
9077
9078         * lib/mempcpy.c: Include <config.h> before <string.h>.
9079         This fixes a compilation error on HP-UX, due to the system's
9080         "restrict"-using mempcpy prototype.
9081
9082 2007-01-26  Bruno Haible  <bruno@clisp.org>
9083
9084         Small optimization.
9085         * lib/javacomp.c: Include c-strstr.h.
9086          (is_envjavac_gcj): Use c_strstr instead of strstr.
9087         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
9088
9089 2007-01-26  Bruno Haible  <bruno@clisp.org>
9090
9091         * MODULES.html.sh (Unicode string functions): Add the new modules.
9092
9093         * modules/uniconv/u32-strconv-to-locale: New file.
9094         * lib/uniconv/u32-strconv-to-locale.c: New file.
9095
9096         * modules/uniconv/u16-strconv-to-locale: New file.
9097         * lib/uniconv/u16-strconv-to-locale.c: New file.
9098
9099         * modules/uniconv/u8-strconv-to-locale: New file.
9100         * lib/uniconv/u8-strconv-to-locale.c: New file.
9101
9102         * modules/uniconv/u32-strconv-from-locale: New file.
9103         * lib/uniconv/u32-strconv-from-locale.c: New file.
9104
9105         * modules/uniconv/u16-strconv-from-locale: New file.
9106         * lib/uniconv/u16-strconv-from-locale.c: New file.
9107
9108         * modules/uniconv/u8-strconv-from-locale: New file.
9109         * lib/uniconv/u8-strconv-from-locale.c: New file.
9110
9111         * modules/uniconv/u32-strconv-to-enc: New file.
9112         * lib/uniconv/u32-strconv-to-enc.c: New file.
9113         * modules/uniconv/u32-strconv-to-enc-tests: New file.
9114         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
9115
9116         * modules/uniconv/u16-strconv-to-enc: New file.
9117         * lib/uniconv/u16-strconv-to-enc.c: New file.
9118         * lib/uniconv/u-strconv-to-enc.h: New file.
9119         * modules/uniconv/u16-strconv-to-enc-tests: New file.
9120         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
9121
9122         * modules/uniconv/u8-strconv-to-enc: New file.
9123         * lib/uniconv/u8-strconv-to-enc.c: New file.
9124         * modules/uniconv/u8-strconv-to-enc-tests: New file.
9125         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
9126
9127         * modules/uniconv/u32-strconv-from-enc: New file.
9128         * lib/uniconv/u32-strconv-from-enc.c: New file.
9129         * modules/uniconv/u32-strconv-from-enc-tests: New file.
9130         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
9131
9132         * modules/uniconv/u16-strconv-from-enc: New file.
9133         * lib/uniconv/u16-strconv-from-enc.c: New file.
9134         * modules/uniconv/u16-strconv-from-enc-tests: New file.
9135         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
9136
9137         * modules/uniconv/u8-strconv-from-enc: New file.
9138         * lib/uniconv/u8-strconv-from-enc.c: New file.
9139         * lib/uniconv/u-strconv-from-enc.h: New file.
9140         * modules/uniconv/u8-strconv-from-enc-tests: New file.
9141         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
9142
9143         * modules/uniconv/u32-conv-from-enc: New file.
9144         * lib/uniconv/u32-conv-from-enc.c: New file.
9145         * modules/uniconv/u32-conv-from-enc-tests: New file.
9146         * tests/uniconv/test-u32-conv-from-enc.c: New file.
9147
9148         * modules/uniconv/u16-conv-from-enc: New file.
9149         * lib/uniconv/u16-conv-from-enc.c: New file.
9150         * lib/uniconv/u-conv-from-enc.h: New file.
9151         * modules/uniconv/u16-conv-from-enc-tests: New file.
9152         * tests/uniconv/test-u16-conv-from-enc.c: New file.
9153
9154         * modules/uniconv/u8-conv-from-enc: New file.
9155         * lib/uniconv/u8-conv-from-enc.c: New file.
9156         * modules/uniconv/u8-conv-from-enc-tests: New file.
9157         * tests/uniconv/test-u8-conv-from-enc.c: New file.
9158
9159         * modules/uniconv/base: New file.
9160         * lib/uniconv.h: New file.
9161
9162 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9163
9164         * doc/gnulib-tool.texi (Initial import): Update to match current
9165         behavior with strdup module.
9166         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
9167         * lib/memmem.h: Remove; all uses removed.  This is now done
9168         by <string.h>.
9169         * lib/mempcpy.h: Likewise.
9170         * lib/memrchr.h: Likewise.
9171         * lib/stpcpy.h: Likewise.
9172         * lib/stpncpy.h: Likewise.
9173         * lib/strcase.h: Likewise.
9174         * lib/strchrnul.h: Likewise.
9175         * lib/strdup.h: Likewise.
9176         * lib/strndup.h: Likewise.
9177         * lib/strnlen.h: Likewise.
9178         * lib/strpbrk.h: Likewise.
9179         * lib/strsep.h: Likewise.
9180         * lib/strstr.h: Likewise.
9181         * lib/strtok_r.h: Likewise.
9182         * lib/string_.h: New file.
9183         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
9184         Rely on <string.h> instead.
9185         * lib/canon-host.c: Likewise.
9186         * lib/chdir-long.c: Likewise.
9187         * lib/concatpath.c: Likewise.
9188         * lib/exclude.c: Likewise.
9189         * lib/fchdir.c: Likewise.
9190         * lib/getaddrinfo.c: Likewise.
9191         * lib/getcwd.c: Likewise.
9192         * lib/getsubopt.c: Likewise.
9193         * lib/glob.c: Likewise.
9194         * lib/hard-locale.c: Likewise.
9195         * lib/iconvme.c: Likewise.
9196         * lib/javacomp.c: Likewise.
9197         * lib/mempcpy.c: Likewise.
9198         * lib/memrchr.c: Likewise.
9199         * lib/regex_internal.h: Likewise.
9200         * lib/stpncpy.c: Likewise.
9201         * lib/strcasecmp.c: Likewise.
9202         * lib/strchrnul.c: Likewise.
9203         * lib/strdup.c: Likewise.
9204         * lib/striconv.c: Likewise.
9205         * lib/striconveh.c: Likewise.
9206         * lib/striconveha.c: Likewise.
9207         * lib/strncasecmp.c: Likewise.
9208         * lib/strndup.c: Likewise.
9209         * lib/strnlen.c: Likewise.
9210         * lib/strsep.c: Likewise.
9211         * lib/strstr.c: Likewise.
9212         * lib/strtok_r.c: Likewise.
9213         * lib/userspec.c: Likewise.
9214         * lib/w32spawn.h: Likewise.
9215         * lib/xstrndup.c: Likewise.
9216         * lib/mountlist.c (strstr): Remove decl.
9217         * m4/string_h.m4: New file.
9218         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
9219         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
9220         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
9221         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
9222         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
9223         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
9224         Set REPLACE_STRCASECMP if necessary.
9225         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
9226         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
9227         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
9228         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
9229         HAVE_DECL_STRDUP if necessary.
9230         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
9231         since gl_FUNC_STRNDUP does that now.
9232         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
9233         Check for decl here...
9234         (gl_PREREQ_STRNLEN): ... not here.
9235         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
9236         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
9237         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
9238         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
9239         necessary.
9240         * modules/string: New file.
9241         * modules/memmem (Files): Remove special-purpose include file.
9242         (Depends-on): Add string.
9243         (Include): Include <string.h>, not the removed file.
9244         * modules/mempcpy: Likewise.
9245         * modules/memrchr: Likewise.
9246         * modules/stpcpy: Likewise.
9247         * modules/stpncpy: Likewise.
9248         * modules/strcase: Likewise.
9249         * modules/strchrnul: Likewise.
9250         * modules/strdup: Likewise.
9251         * modules/strndup: Likewise.
9252         * modules/strnlen: Likewise.
9253         * modules/strpbrk: Likewise.
9254         * modules/strsep: Likewise.
9255         * modules/strstr: Likewise.
9256         * modules/strtok_r: Likewise.
9257         * tests/test-dirname.c: Don't include "strdup.h", since
9258         <string.h> now suffices.
9259         * tests/test-memmem.c: Don't include "memmem.h", since
9260         <string.h> now suffices.
9261
9262 2007-01-25  Bruno Haible  <bruno@clisp.org>
9263
9264         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
9265         *resultp is 0.
9266
9267         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
9268         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
9269         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
9270         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
9271
9272         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
9273         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
9274         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
9275         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
9276         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
9277         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
9278
9279 2007-01-24  Bruno Haible  <bruno@clisp.org>
9280
9281         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
9282         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
9283         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
9284         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
9285         gl_FUNC_FTS_CORE.
9286         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
9287         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
9288         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
9289         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
9290         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
9291         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
9292         gl_FUNC_FCHOWNAT.
9293         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
9294         gl_FUNC_STRFTIME.
9295         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
9296         Reported by Ralf Wildenhues.
9297
9298 2007-01-24  Bruno Haible  <bruno@clisp.org>
9299
9300         Drop AC_REQUIRE calls that are redundant with the module dependencies.
9301         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
9302         gl_GETADDRINFO.
9303         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
9304         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
9305         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
9306
9307 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
9308
9309         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
9310         Don't use 'exit'; just return from 'main'.
9311         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
9312
9313         * lib/fnmatch_.h: Readjust white space and comments to match
9314         glibc, to avoid spurious diffs.
9315
9316 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9317
9318         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
9319         2004-12-01 change by Jakub Jelinek, since this code won't compile
9320         if !LIBC.  Problem reported by Bob Proulx.
9321
9322 2007-01-23  Bruno Haible  <bruno@clisp.org>
9323
9324         * lib/striconveh.c: Include c-strcaseeq.h.
9325         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
9326         * modules/striconveh (Depends-on): Add c-strcaseeq.
9327
9328 2007-01-23  Bruno Haible  <bruno@clisp.org>
9329
9330         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
9331
9332         * modules/c-strcaseeq: New file.
9333         * lib/c-strcaseeq.h: New file.
9334
9335         * modules/streq: New file.
9336         * lib/streq.h: New file.
9337
9338 2007-01-23  Bruno Haible  <bruno@clisp.org>
9339
9340         * modules/striconveha-tests: New file.
9341         * tests/test-striconveha.c: New file.
9342
9343         * lib/striconveha.h: Include <stdbool.h>.
9344         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
9345         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
9346         (mem_iconveha_notranslit): Renamed from mem_iconveha.
9347         (mem_iconveha): New function.
9348         (str_iconveha_notranslit): Renamed from str_iconveha.
9349         (str_iconveha): New function.
9350         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
9351         c-strcase.
9352
9353 2007-01-23  Bruno Haible  <bruno@clisp.org>
9354
9355         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
9356         encodings without forgiving before trying any encoding with handler.
9357         (str_iconveha): Try all encodings without forgiving before trying any
9358         encoding with handler.
9359
9360 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9361
9362         Import the following changes from libc.
9363
9364         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
9365
9366         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
9367
9368         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
9369
9370         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
9371         normal_bracket label.
9372
9373         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
9374
9375         [BZ #361]
9376         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
9377         to normal_bracket after fetching the next character.
9378
9379 2007-01-22  Bruno Haible  <bruno@clisp.org>
9380
9381         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
9382         argument.
9383         * lib/striconveh.c (iconv_carefully_1): New function.
9384         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
9385         argument.
9386         (str_cd_iconveh): Update.
9387         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
9388         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
9389         * tests/test-striconveh.c (MAGIC): New macro.
9390         (new_offsets): New function.
9391         (main): Test call with and without offsets.
9392
9393 2007-01-22  Bruno Haible  <bruno@clisp.org>
9394
9395         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
9396         * modules/sys_select (Makefile.am): Likewise.
9397         * modules/sys_socket (Makefile.am): Likewise.
9398         * modules/sys_time (Makefile.am): Likewise.
9399
9400 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9401
9402         * modules/gettimeofday (License): Change from GPL to LGPL, since
9403         gettimeofday is a library function.
9404
9405 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9406
9407         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
9408
9409 2007-01-21  Bruno Haible  <bruno@clisp.org>
9410
9411         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
9412
9413 2007-01-21  Bruno Haible  <bruno@clisp.org>
9414
9415         * modules/striconveha: New file.
9416         * lib/striconveha.h: New file.
9417         * lib/striconveha.c: New file.
9418         * MODULES.html.sh (Internationalization functions): Add striconveha.
9419         * lib/striconv.c (str_iconv): Optimize the case of an empty input
9420         string.
9421         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
9422
9423 2007-01-21  Bruno Haible  <bruno@clisp.org>
9424
9425         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
9426         * lib/striconveh.c (str_iconveh): Likewise.
9427
9428 2007-01-21  Bruno Haible  <bruno@clisp.org>
9429
9430         * lib/striconveh.h (mem_iconveh): New declaration.
9431         * lib/striconveh.c (mem_iconveh): New function.
9432         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
9433
9434 2007-01-21  Bruno Haible  <bruno@clisp.org>
9435
9436         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
9437
9438         * lib/striconveh.h (mem_cd_iconveh): Change specification.
9439         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
9440         original result buffer.
9441         (str_cd_iconveh): Update.
9442         * tests/test-striconveh.c (main): Update.
9443
9444         * lib/striconv.h (mem_cd_iconv): Change specification.
9445         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
9446         result buffer.
9447         (str_cd_iconv): Update.
9448         * tests/test-striconv.c (main): Update.
9449
9450 2007-01-21  Bruno Haible  <bruno@clisp.org>
9451
9452         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
9453
9454 2007-01-20  Jim Meyering  <jim@meyering.net>
9455
9456         * lib/userspec.c (parse_with_separator): If a user or group string
9457         starts with "+", skip the corresponding name-to-ID look-up, since
9458         such a look-up must fail: user and group names may not include "+".
9459
9460 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
9461
9462         * lib/poll.c: Include sys/time.h and time.h unconditionally,
9463         since we now assume the sys_time module.
9464         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
9465         check for sys/time.h; no longer needed.
9466         * modules/poll (Depends-on): Depend on sys_time.
9467
9468 2007-01-18  Bruno Haible  <bruno@clisp.org>
9469
9470         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
9471         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
9472
9473         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
9474         gettimeofday.
9475
9476         * tests/test-gettimeofday.c: Include <time.h>.
9477         (dummy): Remove variable.
9478
9479         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
9480         gl_HEADER_SYS_TIME_H.
9481         (gl_HEADER_SYS_TIME_H): New macro.
9482
9483         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
9484         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9485         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
9486         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
9487         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9488         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
9489         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
9490         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9491         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
9492         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
9493         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9494
9495         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
9496         last change; it caused a compilation error when cross-compiling to
9497         Cygwin.
9498
9499 2007-01-18  Jim Meyering  <jim@meyering.net>
9500
9501         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
9502         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
9503         than the race-prone "test -d sys || mkdir sys".
9504         (configure.ac): Use AC_PROG_MKDIR_P.
9505         * modules/sys_select: Likewise.
9506         * modules/sys_socket: Likewise.
9507         * modules/sys_time: Likewise.
9508
9509 2007-01-18  Eric Blake  <ebb9@byu.net>
9510
9511         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
9512         replace gettimeofday.
9513         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
9514         name, to avoid infinite recursion.
9515
9516 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
9517
9518         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
9519         module sys_time.
9520         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
9521         assume timespec.h defines struct timeval.
9522         * lib/settime.c: Likewise.
9523         * lib/utimens.c: Likewise.
9524         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
9525         since we now assume the gettimeofday module.
9526         * lib/tempname.c (__gen_tempname): Likewise.
9527         * lib/gettimeofday.h: Remove.
9528         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
9529         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
9530         Include <time.h>, for 'time()'.
9531         (localtime_buffer_addr): Also use this workaround if
9532         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
9533         to simplify the uses.  All uses changed.
9534         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
9535         that #undef is inside {}, and 'const' follows type name consistently.
9536         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
9537         (gettimeofday): Do not use the maximum possible value for
9538         tv->tv_usec, since that might break usages other than ls.c.
9539         Instead, we'll leave ls.c alone.  This undoes today's patch
9540         by Bruno.  Add a compile-time warning for 1s-clock resolution;
9541         we've never observed the problem but might as well keep the
9542         canary.
9543         * lib/nanosleep.c: Include timespec.h first, for interface check.
9544         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
9545         now assume the sys_time module.
9546         * lib/tempname.c: Likewise.
9547         * lib/timespec.h: Likewise.
9548         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
9549         needed.
9550         * lib/strftime.c: Likewise.
9551         * lib/timespec.h: Likewise.
9552         * lib/posixtm.c: Include posixtm.h first, for interface check.
9553         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
9554         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
9555         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
9556         * lib/sys_time_.h: New file.
9557         * lib/timespec.h (struct timespec): Use long int, not long.
9558         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
9559         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
9560         Remove obsolescent call to AC_HEADER_TIME.
9561         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
9562         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9563         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
9564         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
9565         Likewise.
9566         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
9567         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
9568         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
9569         into the sys_time module.  Check for gettimeofday just once.
9570         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
9571         for gettimeofday signature to just check the signature.  Merely
9572         compile it, since linking doesn't test signature.  Improve test for
9573         whether gettimeofday.o is actually needed.
9574         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
9575         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
9576         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
9577         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9578         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
9579         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
9580         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
9581         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
9582         than worrying about sys/time.h.
9583         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
9584         Don't bother worrying about TIME_WITH_SYS_TIME.
9585         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
9586         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
9587         * m4/sys_time_h.m4: New file.
9588         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
9589         Don't include sys/time.h.  Return from main rather than exiting.
9590         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
9591         all uses changed.
9592         * modules/gethrxtime (Depends-on): Add sys_time.
9593         * modules/gettime (Depends-on): Likewise.
9594         * modules/gettimeofday (Depends-on): Likewise.
9595         * modules/nanosleep (Depends-on): Likewise.
9596         * modules/settime (Depends-on): Likewise.
9597         * modules/tempname (Depends-on): Likewise.
9598         * modules/utimens (Depends-on): Likewise.
9599         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
9600         (Include:) Change back to <sys/time.h>.
9601         (Maintainer:) Add self.
9602         * modules/sys_time: New file.
9603         * modules/tempname (Depends-on): Add gettimeofday.
9604         * tests/test-gettimeofday.c: Include <sys/time.h>
9605         rather than gettimeofday.h.
9606
9607 2007-01-17  Bruno Haible  <bruno@clisp.org>
9608
9609         * gnulib-tool (func_get_license): Revert last patch. Instead, let
9610         the license default to GPL.
9611         (func_create_testdir): Don't complain if a module is LGPL and its
9612         tests module depends on GPLed modules.
9613
9614 2007-01-17  Bruno Haible  <bruno@clisp.org>
9615
9616         * lib/gettimeofday.c (gettimeofday): Add code for the case
9617         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
9618         maximum possible value for tv->tv_usec, rather than the minimum one.
9619
9620 2005-10-08  Martin Lambers  <marlam@marlam.de>
9621 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
9622 2007-01-16  Bruno Haible  <bruno@clisp.org>
9623
9624         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
9625         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
9626         gl_FUNC_GETTIMEOFDAY.
9627         (Include): Add gettimeofday.h.
9628         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
9629         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
9630         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
9631         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
9632         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
9633         * lib/gettimeofday.h: New file.
9634         * lib/gettimeofday.c: Include <sys/timeb.h>.
9635         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
9636         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
9637         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
9638         fall back on time().
9639
9640         * tests/test-gettimeofday.c: New file.
9641         * modules/gettimeofday-tests: New file.
9642
9643 2007-01-16  Eric Blake  <ebb9@byu.net>
9644
9645         * modules/fnmatch (Depends-on): Depend on wchar.
9646         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
9647         * m4/fnmatch.m4: Likewise.
9648         * modules/mbchar (Makefile.am): Assume <wchar.h>.
9649         * m4/mbchar.m4: Likewise.
9650         * modules/mbswidth (Depends-on): Depend on wchar.
9651         * lib/mbswidth.c: Assume <wchar.h>.
9652         * m4/mbswidth.m4: Likewise.
9653         * modules/quotearg (Depends-on): Depend on wchar.
9654         * lib/quotearg.c: Assume <wchar.h>.
9655         * m4/quotearg.m4: Likewise.
9656         * modules/regex (Depends-on): Depend on wchar.
9657         * lib/regex_internal.h: Assume <wchar.h>.
9658         * m4/regex.m4: Likewise.
9659         * modules/stdint (Depends-on): Depend on wchar.
9660         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
9661         * m4/stdint.m4: Likewise.
9662         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
9663         * modules/strftime (Depends-on): Depend on wchar.
9664         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
9665         * modules/strtol (Depends-on): Depend on wchar.
9666         * lib/strtol.c: Assume <wchar.h>.
9667         * modules/wcwidth (Depends-on): Depend on wchar.
9668         * lib/wcwidth.h: Assume <wchar.h>.
9669         * m4/wcwidth.m4: Likewise.
9670
9671 2007-01-16  Bruno Haible  <bruno@clisp.org>
9672
9673         * modules/csharpexec-script: New, created from...
9674         * modules/csharpexec: ... this.
9675
9676 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
9677
9678         * modules/javaexec-script: New, created from...
9679         * modules/javaexec: ... this.
9680
9681 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9682
9683         * modules/poll (Dependencies): Add sys_select.
9684
9685 2007-01-15  Jim Meyering  <jim@meyering.net>
9686
9687         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
9688         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
9689         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
9690         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
9691
9692 2007-01-15  Bruno Haible  <bruno@clisp.org>
9693
9694         * modules/striconveh: New file.
9695         * lib/striconveh.h: New file.
9696         * lib/striconveh.c: New file.
9697         * MODULES.html.sh (Internationalization functions): Add striconveh.
9698
9699         * modules/striconveh-tests: New file.
9700         * tests/test-striconveh.c: New file.
9701
9702 2007-01-15  Bruno Haible  <bruno@clisp.org>
9703
9704         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
9705         not from GNU libiconv or GNU libc.
9706
9707 2007-01-15  Bruno Haible  <bruno@clisp.org>
9708
9709         * doc/gnulib-intro.texi (Copyright): Explain the different license
9710         terms for module descriptions, autoconf macros, tests, documentation.
9711
9712 2007-01-14  Bruno Haible  <bruno@clisp.org>
9713
9714         * modules/striconv-tests: New file.
9715         * tests/test-striconv.c: New file.
9716
9717 2007-01-14  Bruno Haible  <bruno@clisp.org>
9718
9719         * modules/iconv-tests: New file.
9720         * tests/test-iconv.c: New file.
9721
9722 2007-01-14  Bruno Haible  <bruno@clisp.org>
9723
9724         * gnulib-tool (func_get_license): For test modules, use the license of
9725         the main module.
9726
9727 2007-01-14  Bruno Haible  <bruno@clisp.org>
9728
9729         * modules/iconv (Include): Clarify that <iconv.h> can only be included
9730         if iconv is found to exist.
9731
9732 2007-01-14  Bruno Haible  <bruno@clisp.org>
9733
9734         * modules/c-ctype-tests: New file.
9735         * tests/test-c-ctype.c: New file.
9736
9737 2007-01-14  Bruno Haible  <bruno@clisp.org>
9738
9739         * modules/binary-io-tests: New file.
9740         * tests/test-binary-io.sh: New file.
9741         * tests/test-binary-io.c: New file.
9742
9743 2007-01-14  Bruno Haible  <bruno@clisp.org>
9744
9745         * modules/array-oset-tests: New file.
9746         * tests/test-array_oset.c: New file.
9747
9748 2007-01-14  Bruno Haible  <bruno@clisp.org>
9749
9750         * modules/array-list-tests: New file.
9751         * tests/test-array_list.c: New file.
9752
9753 2007-01-14  Bruno Haible  <bruno@clisp.org>
9754
9755         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
9756         and make.
9757         Reported by Simon Josefsson in
9758         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
9759
9760 2007-01-14  Bruno Haible  <bruno@clisp.org>
9761
9762         * modules/allocsa-tests: New file.
9763         * tests/test-allocsa.c: New file.
9764
9765 2007-01-14  Bruno Haible  <bruno@clisp.org>
9766
9767         * modules/fchdir (Depends-on): Add absolute-header.
9768         * modules/unistd (Depends-on): Likewise.
9769
9770 2006-12-30  Bruno Haible  <bruno@clisp.org>
9771
9772         * modules/fchdir: New file.
9773         * modules/unistd (Files): Add lib/unistd_.h.
9774         (Makefile.am): Generate unistd.h from unistd_.h.
9775         * lib/fchdir.c: New file.
9776         * lib/dirent_.h: New file.
9777         * lib/unistd_.h: New file.
9778         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
9779         * m4/fchdir.m4: New file.
9780         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
9781         (gl_HEADER_UNISTD): Invoke it.
9782         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
9783         function.
9784         * lib/backupfile.c (opendir, closedir): Undefine.
9785         * lib/chown.c (open, close): Undefine.
9786         * lib/clean-temp.c (open, close): Undefine.
9787         * lib/copy-file.c (open, close): Undefine.
9788         * lib/execute.c (open, close): Undefine.
9789         * lib/fsusage.c (open, close): Undefine.
9790         * lib/gc-gnulib.c (open, close): Undefine.
9791         * lib/getcwd.c (opendir, closedir): Undefine.
9792         * lib/glob.c (opendir, closedir): Undefine.
9793         * lib/javacomp.c (open, close): Undefine.
9794         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
9795         * lib/openat-proc.c (open, close): Undefine.
9796         * lib/pagealign_alloc.c (open, close): Undefine.
9797         * lib/pipe.c (open, close): Undefine.
9798         * lib/progreloc.c (open, close): Undefine.
9799         * lib/savedir.c (opendir, closedir): Undefine.
9800         * lib/utime.c (open, close): Undefine.
9801         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
9802
9803 2007-01-10  Bruno Haible  <bruno@clisp.org>
9804
9805         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
9806
9807 2007-01-12  Eric Blake  <ebb9@byu.net>
9808
9809         Provide a robust <wchar.h>.  Further simplifications are now
9810         possible in other modules, but not included here.
9811         * modules/wchar: New module.
9812         * m4/wchar.m4: New file.
9813         * lib/wchar_.h: Likewise.
9814         * modules/mbchar (Depends-on): Depend on wchar, as the first use
9815         of the new module.
9816         * MODULES.html.sh (Extended multibyte and wide character utilities):
9817         New section.
9818
9819 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
9820
9821         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
9822         to a reasonable default for memory allocation.
9823         (xreadlink): Don't allocate a huge buffer, to work around a buggy
9824         file system that reports garbage st_size values for symlinks.
9825         Problem reported by Liyang Hu.
9826
9827 2007-01-11  Simon Josefsson  <simon@josefsson.org>
9828
9829         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
9830         Emacs .#* auto-save files).
9831
9832 2007-01-11  Bruno Haible  <bruno@clisp.org>
9833
9834         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
9835         directory.
9836
9837 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9838
9839         Use @...@ consistently in lib/wctype_.h.
9840         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
9841         on it being set to 1 or 0.
9842         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
9843         go back to AC_SUBSTing it.
9844         * modules/wctype (Makefile.am): Undo previous change.
9845
9846 2007-01-10  Eric Blake  <ebb9@byu.net>
9847
9848         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
9849         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
9850         * modules/wctype (Makefile.am): Likewise.
9851         Reported by Chris McGuire.
9852
9853 2007-01-10  Jim Meyering  <jim@meyering.net>
9854
9855         fts.c: a small readability/maintainability improvement
9856         * lib/fts.c (fts_read): Make this code slightly more readable and
9857         maintainable by hoisting the "sp->fts_cur = p" assignments to
9858         immediately follow the statements that set P.  Derived from
9859         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
9860
9861 2007-01-10  Eric Blake  <ebb9@byu.net>
9862
9863         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
9864         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
9865         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
9866         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
9867         Reported by Chris McGuire.
9868
9869 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9870
9871         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
9872         in sed script.
9873
9874 2007-01-09  Bruno Haible  <bruno@clisp.org>
9875
9876         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
9877         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
9878         variables.
9879         (func_module): Use them.
9880
9881 2007-01-09  Bruno Haible  <bruno@clisp.org>
9882
9883         * modules/unistr/base: New file.
9884         * lib/unistr.h: New file.
9885
9886         * modules/unistr/u8-to-u16: New file.
9887         * lib/unistr/u8-to-u16.c: New file.
9888
9889         * modules/unistr/u8-to-u32: New file.
9890         * lib/unistr/u8-to-u32.c: New file.
9891
9892         * modules/unistr/u16-to-u8: New file.
9893         * lib/unistr/u16-to-u8.c: New file.
9894
9895         * modules/unistr/u16-to-u32: New file.
9896         * lib/unistr/u16-to-u32.c: New file.
9897
9898         * modules/unistr/u32-to-u8: New file.
9899         * lib/unistr/u32-to-u8.c: New file.
9900
9901         * modules/unistr/u32-to-u16: New file.
9902         * lib/unistr/u32-to-u16.c: New file.
9903
9904         * modules/unistr/u8-check: New file.
9905         * modules/unistr/u16-check: New file.
9906         * modules/unistr/u32-check: New file.
9907         * lib/unistr/u8-check.c: New file.
9908         * lib/unistr/u16-check.c: New file.
9909         * lib/unistr/u32-check.c: New file.
9910
9911         * modules/unistr/u8-chr: New file.
9912         * modules/unistr/u16-chr: New file.
9913         * modules/unistr/u32-chr: New file.
9914         * lib/unistr/u8-chr.c: New file.
9915         * lib/unistr/u16-chr.c: New file.
9916         * lib/unistr/u32-chr.c: New file.
9917
9918         * modules/unistr/u8-cmp: New file.
9919         * modules/unistr/u16-cmp: New file.
9920         * modules/unistr/u32-cmp: New file.
9921         * lib/unistr/u8-cmp.c: New file.
9922         * lib/unistr/u16-cmp.c: New file.
9923         * lib/unistr/u32-cmp.c: New file.
9924
9925         * modules/unistr/u8-cpy: New file.
9926         * modules/unistr/u16-cpy: New file.
9927         * modules/unistr/u32-cpy: New file.
9928         * lib/unistr/u8-cpy.c: New file.
9929         * lib/unistr/u16-cpy.c: New file.
9930         * lib/unistr/u32-cpy.c: New file.
9931         * lib/unistr/u-cpy.h: New file.
9932
9933         * modules/unistr/u8-cpy-alloc: New file.
9934         * modules/unistr/u16-cpy-alloc: New file.
9935         * modules/unistr/u32-cpy-alloc: New file.
9936         * lib/unistr/u8-cpy-alloc.c: New file.
9937         * lib/unistr/u16-cpy-alloc.c: New file.
9938         * lib/unistr/u32-cpy-alloc.c: New file.
9939         * lib/unistr/u-cpy-alloc.h: New file.
9940
9941         * modules/unistr/u8-endswith: New file.
9942         * modules/unistr/u16-endswith: New file.
9943         * modules/unistr/u32-endswith: New file.
9944         * lib/unistr/u8-endswith.c: New file.
9945         * lib/unistr/u16-endswith.c: New file.
9946         * lib/unistr/u32-endswith.c: New file.
9947         * lib/unistr/u-endswith.h: New file.
9948
9949         * modules/unistr/u8-mblen: New file.
9950         * modules/unistr/u16-mblen: New file.
9951         * modules/unistr/u32-mblen: New file.
9952         * lib/unistr/u8-mblen.c: New file.
9953         * lib/unistr/u16-mblen.c: New file.
9954         * lib/unistr/u32-mblen.c: New file.
9955
9956         * modules/unistr/u8-mbtouc: New file.
9957         * modules/unistr/u16-mbtouc: New file.
9958         * modules/unistr/u32-mbtouc: New file.
9959         * lib/unistr/u8-mbtouc.c: New file.
9960         * lib/unistr/u16-mbtouc.c: New file.
9961         * lib/unistr/u32-mbtouc.c: New file.
9962
9963         * modules/unistr/u8-mbtouc-safe: New file.
9964         * modules/unistr/u16-mbtouc-safe: New file.
9965         * modules/unistr/u32-mbtouc-safe: New file.
9966         * lib/unistr/u8-mbtouc-safe.c: New file.
9967         * lib/unistr/u16-mbtouc-safe.c: New file.
9968         * lib/unistr/u32-mbtouc-safe.c: New file.
9969
9970         * modules/unistr/u8-move: New file.
9971         * modules/unistr/u16-move: New file.
9972         * modules/unistr/u32-move: New file.
9973         * lib/unistr/u8-move.c: New file.
9974         * lib/unistr/u16-move.c: New file.
9975         * lib/unistr/u32-move.c: New file.
9976         * lib/unistr/u-move.h: New file.
9977
9978         * modules/unistr/u8-next: New file.
9979         * modules/unistr/u16-next: New file.
9980         * modules/unistr/u32-next: New file.
9981         * lib/unistr/u8-next.c: New file.
9982         * lib/unistr/u16-next.c: New file.
9983         * lib/unistr/u32-next.c: New file.
9984
9985         * modules/unistr/u8-prev: New file.
9986         * modules/unistr/u16-prev: New file.
9987         * modules/unistr/u32-prev: New file.
9988         * lib/unistr/u8-prev.c: New file.
9989         * lib/unistr/u16-prev.c: New file.
9990         * lib/unistr/u32-prev.c: New file.
9991
9992         * modules/unistr/u8-set: New file.
9993         * modules/unistr/u16-set: New file.
9994         * modules/unistr/u32-set: New file.
9995         * lib/unistr/u8-set.c: New file.
9996         * lib/unistr/u16-set.c: New file.
9997         * lib/unistr/u32-set.c: New file.
9998         * lib/unistr/u-set.h: New file.
9999
10000         * modules/unistr/u8-startswith: New file.
10001         * modules/unistr/u16-startswith: New file.
10002         * modules/unistr/u32-startswith: New file.
10003         * lib/unistr/u8-startswith.c: New file.
10004         * lib/unistr/u16-startswith.c: New file.
10005         * lib/unistr/u32-startswith.c: New file.
10006         * lib/unistr/u-startswith.h: New file.
10007
10008         * modules/unistr/u8-stpcpy: New file.
10009         * modules/unistr/u16-stpcpy: New file.
10010         * modules/unistr/u32-stpcpy: New file.
10011         * lib/unistr/u8-stpcpy.c: New file.
10012         * lib/unistr/u16-stpcpy.c: New file.
10013         * lib/unistr/u32-stpcpy.c: New file.
10014         * lib/unistr/u-stpcpy.h: New file.
10015
10016         * modules/unistr/u8-stpncpy: New file.
10017         * modules/unistr/u16-stpncpy: New file.
10018         * modules/unistr/u32-stpncpy: New file.
10019         * lib/unistr/u8-stpncpy.c: New file.
10020         * lib/unistr/u16-stpncpy.c: New file.
10021         * lib/unistr/u32-stpncpy.c: New file.
10022         * lib/unistr/u-stpncpy.h: New file.
10023
10024         * modules/unistr/u8-strcat: New file.
10025         * modules/unistr/u16-strcat: New file.
10026         * modules/unistr/u32-strcat: New file.
10027         * lib/unistr/u8-strcat.c: New file.
10028         * lib/unistr/u16-strcat.c: New file.
10029         * lib/unistr/u32-strcat.c: New file.
10030         * lib/unistr/u-strcat.h: New file.
10031
10032         * modules/unistr/u8-strchr: New file.
10033         * modules/unistr/u16-strchr: New file.
10034         * modules/unistr/u32-strchr: New file.
10035         * lib/unistr/u8-strchr.c: New file.
10036         * lib/unistr/u16-strchr.c: New file.
10037         * lib/unistr/u32-strchr.c: New file.
10038
10039         * modules/unistr/u8-strcmp: New file.
10040         * modules/unistr/u16-strcmp: New file.
10041         * modules/unistr/u32-strcmp: New file.
10042         * lib/unistr/u8-strcmp.c: New file.
10043         * lib/unistr/u16-strcmp.c: New file.
10044         * lib/unistr/u32-strcmp.c: New file.
10045
10046         * modules/unistr/u8-strcpy: New file.
10047         * modules/unistr/u16-strcpy: New file.
10048         * modules/unistr/u32-strcpy: New file.
10049         * lib/unistr/u8-strcpy.c: New file.
10050         * lib/unistr/u16-strcpy.c: New file.
10051         * lib/unistr/u32-strcpy.c: New file.
10052         * lib/unistr/u-strcpy.h: New file.
10053
10054         * modules/unistr/u8-strcspn: New file.
10055         * modules/unistr/u16-strcspn: New file.
10056         * modules/unistr/u32-strcspn: New file.
10057         * lib/unistr/u8-strcspn.c: New file.
10058         * lib/unistr/u16-strcspn.c: New file.
10059         * lib/unistr/u32-strcspn.c: New file.
10060         * lib/unistr/u-strcspn.h: New file.
10061
10062         * modules/unistr/u8-strdup: New file.
10063         * modules/unistr/u16-strdup: New file.
10064         * modules/unistr/u32-strdup: New file.
10065         * lib/unistr/u8-strdup.c: New file.
10066         * lib/unistr/u16-strdup.c: New file.
10067         * lib/unistr/u32-strdup.c: New file.
10068         * lib/unistr/u-strdup.h: New file.
10069
10070         * modules/unistr/u8-strlen: New file.
10071         * modules/unistr/u16-strlen: New file.
10072         * modules/unistr/u32-strlen: New file.
10073         * lib/unistr/u8-strlen.c: New file.
10074         * lib/unistr/u16-strlen.c: New file.
10075         * lib/unistr/u32-strlen.c: New file.
10076         * lib/unistr/u-strlen.h: New file.
10077
10078         * modules/unistr/u8-strmblen: New file.
10079         * modules/unistr/u16-strmblen: New file.
10080         * modules/unistr/u32-strmblen: New file.
10081         * lib/unistr/u8-strmblen.c: New file.
10082         * lib/unistr/u16-strmblen.c: New file.
10083         * lib/unistr/u32-strmblen.c: New file.
10084
10085         * modules/unistr/u8-strmbtouc: New file.
10086         * modules/unistr/u16-strmbtouc: New file.
10087         * modules/unistr/u32-strmbtouc: New file.
10088         * lib/unistr/u8-strmbtouc.c: New file.
10089         * lib/unistr/u16-strmbtouc.c: New file.
10090         * lib/unistr/u32-strmbtouc.c: New file.
10091
10092         * modules/unistr/u8-strncat: New file.
10093         * modules/unistr/u16-strncat: New file.
10094         * modules/unistr/u32-strncat: New file.
10095         * lib/unistr/u8-strncat.c: New file.
10096         * lib/unistr/u16-strncat.c: New file.
10097         * lib/unistr/u32-strncat.c: New file.
10098         * lib/unistr/u-strncat.h: New file.
10099
10100         * modules/unistr/u8-strncmp: New file.
10101         * modules/unistr/u16-strncmp: New file.
10102         * modules/unistr/u32-strncmp: New file.
10103         * lib/unistr/u8-strncmp.c: New file.
10104         * lib/unistr/u16-strncmp.c: New file.
10105         * lib/unistr/u32-strncmp.c: New file.
10106
10107         * modules/unistr/u8-strncpy: New file.
10108         * modules/unistr/u16-strncpy: New file.
10109         * modules/unistr/u32-strncpy: New file.
10110         * lib/unistr/u8-strncpy.c: New file.
10111         * lib/unistr/u16-strncpy.c: New file.
10112         * lib/unistr/u32-strncpy.c: New file.
10113         * lib/unistr/u-strncpy.h: New file.
10114
10115         * modules/unistr/u8-strnlen: New file.
10116         * modules/unistr/u16-strnlen: New file.
10117         * modules/unistr/u32-strnlen: New file.
10118         * lib/unistr/u8-strnlen.c: New file.
10119         * lib/unistr/u16-strnlen.c: New file.
10120         * lib/unistr/u32-strnlen.c: New file.
10121         * lib/unistr/u-strnlen.h: New file.
10122
10123         * modules/unistr/u8-strpbrk: New file.
10124         * modules/unistr/u16-strpbrk: New file.
10125         * modules/unistr/u32-strpbrk: New file.
10126         * lib/unistr/u8-strpbrk.c: New file.
10127         * lib/unistr/u16-strpbrk.c: New file.
10128         * lib/unistr/u32-strpbrk.c: New file.
10129         * lib/unistr/u-strpbrk.h: New file.
10130
10131         * modules/unistr/u8-strrchr: New file.
10132         * modules/unistr/u16-strrchr: New file.
10133         * modules/unistr/u32-strrchr: New file.
10134         * lib/unistr/u8-strrchr.c: New file.
10135         * lib/unistr/u16-strrchr.c: New file.
10136         * lib/unistr/u32-strrchr.c: New file.
10137
10138         * modules/unistr/u8-strspn: New file.
10139         * modules/unistr/u16-strspn: New file.
10140         * modules/unistr/u32-strspn: New file.
10141         * lib/unistr/u8-strspn.c: New file.
10142         * lib/unistr/u16-strspn.c: New file.
10143         * lib/unistr/u32-strspn.c: New file.
10144         * lib/unistr/u-strspn.h: New file.
10145
10146         * modules/unistr/u8-strstr: New file.
10147         * modules/unistr/u16-strstr: New file.
10148         * modules/unistr/u32-strstr: New file.
10149         * lib/unistr/u8-strstr.c: New file.
10150         * lib/unistr/u16-strstr.c: New file.
10151         * lib/unistr/u32-strstr.c: New file.
10152         * lib/unistr/u-strstr.h: New file.
10153
10154         * modules/unistr/u8-strtok: New file.
10155         * modules/unistr/u16-strtok: New file.
10156         * modules/unistr/u32-strtok: New file.
10157         * lib/unistr/u8-strtok.c: New file.
10158         * lib/unistr/u16-strtok.c: New file.
10159         * lib/unistr/u32-strtok.c: New file.
10160         * lib/unistr/u-strtok.h: New file.
10161
10162         * modules/unistr/u8-uctomb: New file.
10163         * modules/unistr/u16-uctomb: New file.
10164         * modules/unistr/u32-uctomb: New file.
10165         * lib/unistr/u8-uctomb.c: New file.
10166         * lib/unistr/u16-uctomb.c: New file.
10167         * lib/unistr/u32-uctomb.c: New file.
10168
10169         * MODULES.html.sh (Unicode string functions): Add the new modules.
10170
10171 2007-01-08  Bruno Haible  <bruno@clisp.org>
10172
10173         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
10174         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
10175         subdirectories.
10176
10177 2007-01-08  Karl Berry  <karl@gnu.org>
10178
10179         * doc/error.texi: mention that main() fns must set program_name
10180         when progname is used.
10181
10182 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
10183
10184         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
10185         WCTYPE_H is empty, for the benefit of builds from non-distclean
10186         directories.  Problem reported by Eric Blake in
10187         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
10188
10189 2007-01-08  Bruno Haible  <bruno@clisp.org>
10190
10191         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
10192         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
10193         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
10194         PROVIDE_CANONICALIZE_FILENAME_MODE.
10195         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
10196
10197 2007-01-08  Bruno Haible  <bruno@clisp.org>
10198
10199         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
10200         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
10201         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
10202         * lib/fts.c: Likewise.
10203         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
10204
10205 2006-12-25  Bruno Haible  <bruno@clisp.org>
10206
10207         * modules/utf8-ucs4-safe: New file.
10208         * lib/utf8-ucs4-safe.h: New file.
10209         * lib/unistr/utf8-ucs4-safe.c: New file.
10210
10211         * modules/utf16-ucs4-safe: New file.
10212         * lib/utf16-ucs4-safe.h: New file.
10213         * lib/unistr/utf16-ucs4-safe.c: New file.
10214
10215         * MODULES.html.sh (Unicode string functions): Add the new modules.
10216
10217 2007-01-08  Bruno Haible  <bruno@clisp.org>
10218
10219         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
10220         (Depends-on): Add unitypes.
10221         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
10222         (u8_mbtouc_aux): Move out to separate file.
10223         (u8_mbtouc): Use ucs4_t, uint8_t types.
10224         * lib/unistr/utf8-ucs4.c: New file.
10225
10226         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
10227         (Depends-on): Add unitypes.
10228         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
10229         (u16_mbtouc_aux): Move out to separate file.
10230         (u16_mbtouc): Use ucs4_t, uint16_t types.
10231         * lib/unistr/utf16-ucs4.c: New file.
10232
10233         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
10234         (Depends-on): Add unitypes.
10235         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
10236         (u8_uctomb_aux): Move out to separate file.
10237         (u8_uctomb): Use ucs4_t, uint8_t types.
10238         * lib/unistr/ucs4-utf8.c: New file.
10239
10240         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
10241         (Depends-on): Add unitypes.
10242         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
10243         (u16_uctomb_aux): Move out to separate file.
10244         (u16_uctomb): Use ucs4_t, uint16_t types.
10245         * lib/unistr/ucs4-utf16.c: New file.
10246
10247 2006-12-25  Bruno Haible  <bruno@clisp.org>
10248
10249         * modules/unitypes: New file.
10250         * lib/unitypes.h: New file.
10251         * MODULES.html.sh (func_all_modules): New section "Unicode string
10252         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
10253         this section. Add unitypes.
10254
10255 2007-01-08  Bruno Haible  <bruno@clisp.org>
10256
10257         Avoid variable names that conflict with those from libtool.
10258         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
10259         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
10260         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
10261         library_names_spec to acl_library_names_spec, hardcode_* to
10262         acl_hardcode_*.
10263         Reported by Ralf Wildenhues.
10264
10265 2007-01-08  Bruno Haible  <bruno@clisp.org>
10266
10267         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
10268         definition.
10269         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
10270         definition.
10271         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
10272         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
10273         definition.
10274         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
10275         definition.
10276         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
10277         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
10278         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
10279         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
10280         definition.
10281         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
10282         definition.
10283         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
10284         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
10285         GC_USE_<algorithm>.
10286         * lib/gc-libgcrypt.c: Likewise.
10287         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
10288         * modules/gc-arctwo (configure.ac): Likewise.
10289         * modules/gc-des (configure.ac): Likewise.
10290         * modules/gc-hmac-md5 (configure.ac): Likewise.
10291         * modules/gc-hmac-sha1 (configure.ac): Likewise.
10292         * modules/gc-md2 (configure.ac): Likewise.
10293         * modules/gc-md4 (configure.ac): Likewise.
10294         * modules/gc-md5 (configure.ac): Likewise.
10295         * modules/gc-random (configure.ac): Likewise.
10296         * modules/gc-rijndael (configure.ac): Likewise.
10297         * modules/gc-sha1 (configure.ac): Likewise.
10298
10299 2007-01-08  Bruno Haible  <bruno@clisp.org>
10300
10301         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
10302         macro definition.
10303         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
10304         definition.
10305         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
10306         definition.
10307         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
10308         * modules/fcntl-safer (configure.ac): Likewise.
10309         * modules/fopen-safer (configure.ac): Likewise.
10310         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
10311         GNULIB_FWRITEERROR macro definition.
10312
10313 2007-01-08  Bruno Haible  <bruno@clisp.org>
10314
10315         * m4/gnulib-common.m4: New file.
10316         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
10317         (func_get_filelist): Add m4/gnulib-common.m4.
10318
10319 2007-01-08  Bruno Haible  <bruno@clisp.org>
10320
10321         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
10322         command.
10323
10324 2007-01-08  Jim Meyering  <jim@meyering.net>
10325
10326         Use a more robust test for a "can't happen" condition.
10327         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
10328         narrowed the st_size value.  Presuming the "can't happen" condition
10329         is true, that narrowing could conceivably convert an invalid st_size
10330         value into a valid one.  Instead, use a change based on Matthew
10331         Woehlke's original patch.
10332
10333         Slight readability improvement: use an assert-like macro
10334         in place of literal "abort ()" uses.
10335         * lib/fts.c (fts_assert): Define.
10336         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
10337         Use this macro instead of a bare 'abort'.
10338
10339 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
10340
10341         Don't worry about using IRIX 5.3's wctype.h broken definitions;
10342         simply work around them.
10343         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
10344         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
10345         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
10346         declaring.
10347         Don't bother to define as macros, since the standard doesn't require it.
10348         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
10349         longer worry about IRIX 5.3.
10350         (HAVE_WCTYPE_CTMP_BUG): Remove.
10351
10352 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10353
10354         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
10355         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
10356         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10357         Problems reported by Georg Schwarz for IRIX 5.3.
10358
10359         * gnulib-tool (autoconf_minversion): Take the maximum version number
10360         found, not the minimum.  Problem reported by James Youngman.
10361
10362 2007-01-03  Karl Berry  <karl@gnu.org>
10363
10364         * doc/error.texi: new file, explaining interaction with progname.
10365         * doc/gnulib.texi: include it.  Update copyright.
10366
10367 2007-01-03  Simon Josefsson  <simon@josefsson.org>
10368
10369         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
10370         AC_CANONICAL_HOST, to improve autobuild outputs.
10371
10372 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
10373             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
10374
10375         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
10376         sockets, server sockets, and other file descriptors.  Count errors
10377         to compute the return value.  Reorder the code a bit to be easier
10378         to follow.  Don't set event bits that were not requested (except
10379         POLLERR and POLLHUP).
10380
10381 2007-01-01  Bruno Haible  <bruno@clisp.org>
10382
10383         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
10384
10385 2007-01-03  Jim Meyering  <jim@meyering.net>
10386
10387         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
10388
10389 2007-01-02  Bruno Haible  <bruno@clisp.org>
10390
10391         * modules/settime (Include): Require timespec.h.
10392         * modules/nanosleep (Include): Likewise.
10393
10394 2007-01-01  Bruno Haible  <bruno@clisp.org>
10395
10396         * gnulib-tool (func_emit_copyright_notice): Bump year.
10397         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
10398
10399 2007-01-01  Bruno Haible  <bruno@clisp.org>
10400
10401         Improve support for OpenBSD.
10402         * build-aux/config.rpath (libname_spec): Export.
10403         (library_names_spec): New variable. Export.
10404         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
10405         library_names_spec from the config.rpath output. Locate shared library
10406         through the name pattern in library_names_spec.
10407
10408 2007-01-01  Eric Blake  <ebb9@byu.net>
10409
10410         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
10411
10412 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
10413
10414         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
10415         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
10416         assume the C locale, and avoid an "eval" that could cause trouble.
10417         Problem with SORT reported by Bob Proulx.
10418
10419         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
10420         Define.  Trivial patch from Henning Nielsen Lund, originally
10421         sent to bug-grep@gnu.org today.
10422
10423 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
10424
10425         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
10426         struct stat.  Problem reported by Henning Nielsen Lund.
10427         * lib/acl.c: Include acl.h first, to check interface.  Don't
10428         bother to include sys/types.h and sys/stat.h again.
10429
10430 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
10431
10432         Import the following change from libc; problem reported by
10433         Sven Verdoolaege.
10434
10435         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
10436
10437         [BZ #1373]
10438         * lib/argp.h: Remove __NTH for __argp_usage inline function.
10439
10440 2006-12-28  Jim Meyering  <jim@meyering.net>
10441
10442         * build-aux/announce-gen: Do not assume that the package
10443         builds any of tar.gz, tar.bz2, and .xdelta files.
10444         Suggestion from Simon Josefsson.
10445
10446 2006-12-28  Simon Josefsson  <simon@josefsson.org>
10447
10448         * modules/announce-gen: New file.
10449
10450 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
10451
10452         * lib/mbchar.h: Just include <wctype.h>; the wctype module
10453         handles its gotchas now.
10454         * lib/mbswidth.c: Likewise.
10455         * lib/wcwidth.h: Likewise.
10456         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
10457         and iswcntrl; the wctype module does this stuff now.
10458         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
10459         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
10460         * modules/mbchar (Depends-on): Add wctype.
10461         * modules/mbswidth (Depends-on): Likewise.
10462         * modules/wcwidth (Depends-on): Likewise.
10463
10464 2006-12-27  Eric Blake  <ebb9@byu.net>
10465
10466         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
10467         module uses more than what <wctype.h> is required to provide.
10468
10469 2006-12-26  Eric Blake  <ebb9@byu.net>
10470
10471         * gnulib-tool (sed_extract_prog): Avoid space-tab.
10472
10473 2006-12-26  Eric Blake  <ebb9@byu.net>
10474
10475         * modules/absolute-header: New module.
10476         * modules/fcntl (Depends-on): Depend on it.
10477         * modules/inttypes (Depends-on): Likewise.
10478         * modules/stdint (Depends-on): Likewise.
10479         * modules/sys_stat (Depends-on): Likewise.
10480         * modules/wctype (Depends-on): Likewise.
10481         * MODULES.html.sh (Support for building libraries and
10482         executables): Document it.
10483
10484 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
10485
10486         * gnulib-tool (SED): Remove, undoing previous change.
10487         The problem was that it broke coreutils on Solaris, because
10488         "sed --posix" leaked into a makefile.
10489         (sed): New alias, if 'alias' and GNU sed.
10490
10491 2006-12-24  Jim Meyering  <jim@meyering.net>
10492
10493         Work around an fchownat bug in glibc-2.4:
10494         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
10495         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
10496         in spite of the -P option.
10497         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
10498         New macros.
10499         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
10500         * modules/openat (Files): Add lib/fchownat.c.
10501         * lib/openat.c (fchownat): Don't define here.  Move to...
10502         * lib/fchownat.c: ...this new file.
10503
10504 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
10505
10506         Fix bug reported by Bruno Haible in
10507         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
10508         where quotearg.c didn't compile on Mac OS X 10.2 because it
10509         lacks <wchar.h> and wint_t.
10510         * lib/wctype_.h (__wctype_wint_t): New type.
10511         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
10512         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
10513         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
10514         Arg is now of type __wctype_wint_t, not wint_t.
10515         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
10516         substitute HAVE_WINT_T.
10517         * modules/wctype (Files): Add m4/wint_t.m4.
10518         (wctype.h): Substitute HAVE_WINT_T.
10519
10520 2006-12-23  Bruno Haible  <bruno@clisp.org>
10521
10522         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
10523
10524 2006-12-23  Bruno Haible  <bruno@clisp.org>
10525
10526         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
10527         S_ISLNK.
10528         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
10529         mingw.
10530
10531 2006-12-22  Bruno Haible  <bruno@clisp.org>
10532
10533         * lib/copy-file.c: Include acl.h.
10534         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
10535         Close the file descriptors only after being done with copy_acl.
10536         * modules/copy-file (Depends-on): Add acl.
10537
10538 2006-12-22  Bruno Haible  <bruno@clisp.org>
10539
10540         * gnulib-tool (SED): New variable.
10541         Use $SED instead of sed everywhere.
10542
10543 2006-12-22  Bruno Haible  <bruno@clisp.org>
10544
10545         * modules/no-c++: New file.
10546         * m4/no-c++.m4: New file.
10547         * MODULES.html.sh (Support for building libraries and executables):
10548         Add no-c++.
10549
10550 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
10551
10552         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
10553         Include <limits.h>, and use its INT_MAX to rewrite the
10554         j loop so that it does not overflow 'int'.  Problem reported by
10555         Ralf Wildenhues in
10556         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
10557         Play it safe by shifting left by 1 rather than multiplying by 2,
10558         as GCC is less likely to optimize this away when the value
10559         is signed (when it assumes overflow leads to undefined behavior).
10560         Also, don't assume time_t uses two's complement.
10561
10562 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
10563
10564         * MODULES.html.sh: New module wctype.
10565         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
10566         * lib/fnmatch.c: Don't bother to include <wchar.h> before
10567         <wctype.h>, since the new wctype module should fix this.
10568         * lib/quotearg.c: Include <wctype.h> unconditionally, since
10569         the wctype module should arrange for it.
10570         * lib/regex_internal.h: Likewise.
10571         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
10572         since the wctype module should handle this now.
10573         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
10574         * modules/fnmatch (Depends-on): Add wctype.
10575         * modules/quotearg (Depends-on): Likewise.
10576         * modules/regex (Depends-on): Likewise.
10577
10578 2006-12-19  Bruno Haible  <bruno@clisp.org>
10579
10580         * lib/strdup.h [C++]: Wrap definitions in extern "C".
10581         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
10582
10583 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10584
10585         * modules/savewd (Depends-on): Fix dependency on fcntl.
10586
10587 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
10588
10589         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
10590         conforms to C99, rather than relying on the user's environment
10591         setting of STDINT_H.
10592
10593 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
10594         and Eric Blake  <ebb9@byu.net>
10595
10596         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
10597         This is more consistent with the other defines here.
10598         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
10599         Port to z/OS.  Problem reported by Paul Gilmartin.
10600         Change local vars to use gl_ prefix rather than ac_.
10601         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
10602         with other defines.
10603         * modules/double-slash-root: New module.
10604         * modules/dirname (Files): Remove m4/double-slash-root.m4.
10605         (Depends-on): Add double-slash-root.
10606         * MODULES.html.sh (File system functions): Mention new module.
10607
10608 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
10609
10610         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
10611         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
10612         This is for the benefit of gzip, which doesn't do i18n.
10613
10614 2006-12-12  Jim Meyering  <jim@meyering.net>
10615
10616         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
10617         Reported by Andreas Schwab <schwab@suse.de>.
10618
10619 2006-12-12  Bruno Haible  <bruno@clisp.org>
10620
10621         Merge these changes.
10622         2006-09-05  Bruno Haible  <bruno@clisp.org>
10623         * lib/iconvme.c (iconv_string): No need to save and restore errno when
10624         iconv_alloc succeeded.
10625         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
10626         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
10627         test for " && dest " at the end - dest is always != NULL there. Call
10628         iconv with 4xNULL arguments initially, to reset the state. Call iconv
10629         with 2xNULL arguments, also to flush the state storage. Handle the
10630         IRIX iconv behaviour. Realloc the final result, to throw away unused
10631         memory.
10632
10633 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
10634
10635         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
10636         and fchmodat unconditionally, since glibc 2.4 has them.
10637         Problem reported by Arkadiusz Miskiewicz.
10638
10639 2006-12-10  Bruno Haible  <bruno@clisp.org>
10640
10641         * gnulib-tool (func_import): Show the include files only for those
10642         modules that are copied and specified.
10643         Reported by Karl Berry.
10644
10645 2006-12-08  Jim Meyering  <jim@meyering.net>
10646
10647         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
10648         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
10649
10650         * build-aux/announce-gen: Add two new options, both optional:
10651         --bootstrap-tools=TOOL_LIST
10652               a comma-separated list of tools, e.g.,
10653               autoconf,automake,bison,gnulib
10654         --gnulib-snapshot-date=DATE
10655               if gnulib is in the bootstrap tool list,
10656               then report this as the snapshot date.
10657               If not specified, use the current date/time.
10658               If you specify a date here, be sure it's UTC.
10659
10660 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10661
10662         * tests/test-argp-2.sh: Fix test to match actual output.
10663         (func_compare): Fix sed script to be portable.
10664
10665 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
10666
10667         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
10668         workaround for this case.  It is not autoconfigured now; offhand
10669         it's hard to see how to autoconfigure it.
10670
10671 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
10672
10673         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
10674         a directory that is about to be chowned.  Such a directory's
10675         initial file permissions should permit the owner only and this
10676         should not be changed until after the chown, since the group and
10677         other bits would be incorrect if they granted permission before
10678         the chown.
10679
10680         Fix porting problem for iswctype reported by Georg Schwarz in:
10681         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
10682         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
10683         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
10684         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
10685         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10686
10687 2006-12-03  Jim Meyering  <jim@meyering.net>
10688
10689         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
10690         p->fts_statp may not yet be defined.
10691         (fts_read): Instead, set it in the caller, once p->fts_statp is
10692         sure to be defined, and corresponds to a top-level directory.
10693         This bug made du -x fail.  Here's the coreutils test case:
10694         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
10695         Reported by Mike Frysinger.
10696
10697 2006-12-01  Jim Meyering  <jim@meyering.net>
10698
10699         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
10700         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
10701         Reported by Simon Josefsson.
10702
10703 2006-11-30  Jim Meyering  <jim@meyering.net>
10704
10705         * m4/warning.m4: Use the all-permissive copyright notice
10706         recommended by RMS (rather than LGPL).
10707         * m4/vararrays.m4: Likewise.
10708         * m4/flexmember.m4: Likewise.
10709
10710 2006-11-29  Bruno Haible  <bruno@clisp.org>
10711
10712         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
10713         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
10714         using +=.
10715         Reported by Simon Josefsson <simon@josefsson.org>.
10716
10717 2006-11-28  James Youngman <jay@gnu.org>
10718
10719         * README: Advise users that they might find the bug-gnulib@gnu.org
10720         and autotools-announce@gnu.org mailing lists useful.
10721
10722 2006-11-28  Bruno Haible  <bruno@clisp.org>
10723
10724         * m4/ptrdiff_max.m4: Remove file.
10725
10726 2006-11-21  Bruno Haible  <bruno@clisp.org>
10727
10728         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
10729         _AC_COMPUTE_INT.
10730         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
10731         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
10732         _AC_COMPUTE_INT.
10733         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
10734         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
10735         _AC_COMPUTE_INT.
10736         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
10737
10738 2006-11-28  Jim Meyering  <jim@meyering.net>
10739
10740         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
10741         warning from "gcc -Wshadow" about shadowing the builtin.
10742
10743 2006-11-27  Bruno Haible  <bruno@clisp.org>
10744
10745         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
10746         _AC_COMPUTE_INT.
10747         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
10748
10749 2006-11-27  Bruno Haible  <bruno@clisp.org>
10750             Paul Eggert  <eggert@cs.ucla.edu>
10751
10752         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
10753
10754 2006-11-26  Bruno Haible  <bruno@clisp.org>
10755
10756         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
10757         noinst_LTLIBRARIES.
10758
10759 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
10760             Bruno Haible  <bruno@clisp.org>
10761
10762         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
10763         if compiling with "gcc -ansi".
10764
10765 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
10766
10767         Fix some incompatibilities with gcc -ansi -pedantic.
10768         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
10769         if compiling pedantically with GCC, unless it's C99 or later.
10770         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
10771         it mishandles gcc -ansi -pedantic as well.
10772         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
10773         if gcc -pedantic.
10774         * lib/regexec.c (check_node_accept_bytes): Don't use auto
10775         initializers for struct if -pedantic, unless it's C99 or later.
10776
10777 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
10778
10779         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
10780         Don't close an fd more than once. Identical atimes indicate
10781         success, not failure.
10782
10783 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
10784
10785         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
10786
10787 2006-11-23  Jim Meyering  <jim@meyering.net>
10788
10789         * build-aux/announce-gen: New file.  From coreutils.
10790
10791 2006-11-22  Jim Meyering  <jim@meyering.net>
10792
10793         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
10794         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
10795         (fts_read): Use a temporary to narrow the overused st_size member
10796         before using it in a switch statement.  Reported by Matthew Woehlke.
10797
10798         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
10799         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
10800
10801 2006-11-20  Bruno Haible  <bruno@clisp.org>
10802
10803         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
10804         changequote instead of pairs of brackets.
10805         Reported by Andreas Schwab <schwab@suse.de>.
10806
10807 2006-11-21  Jim Meyering  <jim@meyering.net>
10808
10809         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
10810         so as to remain compatible with older compilers.
10811         Patch from Michael Deutschmann.
10812
10813 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
10814
10815         * MODULES.html.sh (File system functions): Add openat.
10816
10817         * lib/openat.h (rpl_fstatat): New macro, if
10818         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
10819         (fstatat): Define to rpl_fstatat under the same conditions,
10820         unless COMPILING_FSTATAT.
10821         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
10822         seems to have the bug.
10823         * lib/fstatat.c: New file.
10824         * modules/openat (Files): Add it.
10825
10826 2006-11-20  Bruno Haible  <bruno@clisp.org>
10827
10828         * Makefile: New file.
10829
10830 2006-11-20  Jim Meyering  <jim@meyering.net>
10831
10832         The beginnings of syntax-related checks for gnulib.
10833         * lib/Makefile: New file.
10834         * lib/t-idcache: New script.  Ensure that the two halves of
10835         idcache.c stay in sync.
10836
10837         * lib/idcache.c: Adjust comments in user- and group- portions to
10838         be more accurate, and to be consistent with one another.
10839
10840 2006-11-20  Jim Meyering  <jim@meyering.net>
10841
10842         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
10843         continue using the flexible array member (thus, this module performs
10844         half as many malloc calls), with the addition that...
10845         (getgroup, getuser): Consistently record a non-match via an empty
10846         "name" string, and map an empty string match to a NULL return value.
10847         * modules/idcache (Depends-on): Re-add flexmember.
10848
10849         * lib/idcache.c (getuser): Remove all uses of the register keyword.
10850         (getuidbyname, getgroup, getgidbyname): Likewise.
10851
10852         Use cleaner syntax: NULL rather than 0.
10853         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
10854
10855 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
10856
10857         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
10858         It mishandled the case where the group was missing.
10859         Problem reported by Greg Schafer.
10860         * modules/idcache: Likewise.
10861
10862 2006-11-18  Jim Meyering  <jim@meyering.net>
10863
10864         * check-module (%exempt_header): Add exception for some
10865         conditionally-included headers.
10866
10867         * modules/i-ring (Depends-on): Add verify.
10868         (License): Change to LGPL.
10869
10870 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
10871
10872         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
10873         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
10874         and inttostr.h.  Use snprintf rather than uinttostr, so that
10875         LGPLed code doesn't depend on GPLed.
10876
10877 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
10878
10879         * modules/inline (License): Change from GPL to LGPL.
10880
10881 2006-11-17  Jim Meyering  <jim@meyering.net>
10882
10883         * modules/d-type (License): Switch to LGPL.
10884
10885 2006-11-15  Bruno Haible  <bruno@clisp.org>
10886
10887         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
10888
10889 2006-11-15  Eric Blake  <ebb9@byu.net>
10890
10891         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
10892         the module dependency.
10893
10894 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10895             Bruno Haible  <bruno@clisp.org>
10896
10897         * gnulib-tool (func_create_testdir): Add license consistency check.
10898
10899 2006-11-15  Eric Blake  <ebb9@byu.net>
10900
10901         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
10902         random "(cached)" in configure output.
10903
10904 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10905
10906         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
10907         test for conforming inttypes.h is both announced and cached.
10908
10909         * MODULES.html.sh (seen_modules, seen_files): New variables.
10910         (func_module): Rewrite to use a few less gnulib-tool and sed
10911         invocations.  Avoid a couple of quadratic algorithms for ...
10912         (missed_modules, missed_files): ... these, with ...
10913         (func_append, func_tmpdir): ... these new functions, from
10914         gnulib-tool.  Analogously, install traps for cleanup.
10915
10916         * tests/test-gc.c (main): Remove unused variables.
10917         * tests/test-read-file.c: Include stdlib.h, for 'free'.
10918
10919 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
10920
10921         * modules/inttostr (License): Change to LGPL.
10922
10923 2006-11-14  Eric Blake  <ebb9@byu.net>
10924
10925         * modules/tempname (License): Change to LGPL.
10926
10927 2006-11-14  Eric Blake  <ebb9@byu.net>
10928
10929         * doc/functions.texi (Function Portability): *printf functions on
10930         Cygwin now understand all POSIX size specifiers.
10931
10932 2006-11-14  Bruno Haible  <bruno@clisp.org>
10933
10934         * modules/c-ctype (License): Change to LGPL.
10935
10936 2006-11-12  Bruno Haible  <bruno@clisp.org>
10937
10938         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
10939         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
10940         for GNOME libraries, for which the include files are installed in
10941         subdirectories of $prefix/include.
10942
10943 2006-11-12  Bruno Haible  <bruno@clisp.org>
10944
10945         * m4/lib-link.m4: Require at least autoconf-2.54.
10946         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
10947         name to underscores for the --with option.
10948
10949 2006-11-13  Bruno Haible  <bruno@clisp.org>
10950
10951         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
10952         the tests directory.
10953         Reported by Ralf Wildenhues.
10954
10955 2006-11-13  Bruno Haible  <bruno@clisp.org>
10956
10957         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
10958         (func_emit_initmacro_end): Undo the override here.
10959         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
10960         Works around the famous automake error in coreutils.
10961
10962 2006-11-13  Eric Blake  <ebb9@byu.net>
10963
10964         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
10965         element, not its node.
10966
10967 2006-11-12  Bruno Haible  <bruno@clisp.org>
10968
10969         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
10970         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
10971
10972 2006-11-12  Bruno Haible  <bruno@clisp.org>
10973
10974         * gnulib-tool: New option --local-symlink.
10975         (func_usage): Document it.
10976         (lsymbolic): New variable.
10977         (func_import, func_create_testdir): If --symlink was not specified,
10978         test whether --local-symlink was specified and the file comes from
10979         the local_gnulib_dir.
10980
10981 2006-11-12  Bruno Haible  <bruno@clisp.org>
10982
10983         * gnulib-tool (func_ln): New function.
10984         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
10985
10986 2006-11-12  Bruno Haible  <bruno@clisp.org>
10987
10988         Finish support for source files in subdirectories.
10989         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
10990         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
10991         AUTOMAKE_OPTIONS.
10992         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
10993
10994 2006-11-12  Bruno Haible  <bruno@clisp.org>
10995
10996         * gnulib-tool (func_get_automake_snippet): Synthesize also an
10997         EXTRA_lib_SOURCES augmentation.
10998         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
10999
11000 2006-11-12  Jim Meyering  <jim@meyering.net>
11001
11002         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
11003         file descriptors.  This also averts a failure on systems with
11004         native openat support when a traversed directory lacks "x" access.
11005         * lib/fts_.h: Include "i-ring.h"
11006         (struct FTS) [fts_fd_ring]: New member.
11007         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
11008         (FCHDIR): Add parentheses.
11009         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
11010         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
11011         When descending, rather than simply closing the previous
11012         fts_cwd_fd value, push that file descriptor onto the ring.
11013         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
11014         (fts_open): Initialize the new fd_ring member.
11015         (fts_close): Clear the ring.
11016         (fts_safe_changedir): When possible, use our new fd_ring to skip
11017         the diropen and fstat and dev/ino comparison that would normally
11018         accompany a virtual `chdir ("..")'.
11019
11020         * modules/fts (Depends-on): Add i-ring.
11021         * modules/i-ring: New module.
11022         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
11023         * m4/i-ring.m4: New file.
11024
11025 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11026
11027         * gnulib-tool (func_create_testdir): Fix replacement of
11028         `build-aux' in configure.ac.  Run autotools in gltests
11029         subdirectory.
11030         (func_create_testdir, func_create_megatestdir, test): There is
11031         no need for '--force' in most autotool invocations in a new
11032         tree.  Actually fail the whole test if any of the tools, or the
11033         configure or make stages fail.
11034
11035         Sync from Automake.
11036         * build-aux/gnupload: Revert last change.  Add pointer to upload
11037         instructions of the GNU Maintenance Instructions.
11038         Suggestion by Karl Berry.
11039
11040 2006-11-10  Jim Meyering  <jim@meyering.net>
11041
11042         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
11043
11044 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
11045
11046         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
11047         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
11048         (bind_textdomain_codeset) [! ENABLE_NLS]:
11049         Evaluate all the arguments.  That way, callers get compatible behavior
11050         if the arguments have side effects.  Also, it avoids some GCC
11051         diagnostics in some cases; Joel E. Denny reported problems when Bison
11052         was configured with --enable-gcc-warnigs.
11053
11054 2006-11-10  Jim Meyering  <jim@meyering.net>
11055
11056         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
11057         relevant options in CFLAGS (like -O, -fno-inline) are taken into
11058         account.
11059
11060 2006-11-10  Jim Meyering  <jim@meyering.net>
11061
11062         * modules/inline: New file/module.
11063         * modules/xalloc (Files): Remove m4/inline.m4.
11064         (Depends-on): Add inline, instead.
11065         * modules/oset: Likewise.
11066         * modules/list: Likewise.
11067
11068 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
11069
11070         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
11071         Problem reported by Matthew Woehlke.
11072
11073 2006-11-09  Bruno Haible  <bruno@clisp.org>
11074
11075         * lib/tempname.c (gen_tempname): Remove variant that invokes
11076         __gen_tempname.
11077         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
11078         __gen_tempname.
11079
11080 2006-11-08  Bruno Haible  <bruno@clisp.org>
11081
11082         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
11083         to 'yes' instead of 'cross-compiling'.
11084
11085 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
11086
11087         * lib/quotearg.h (quotearg_free): New decl.
11088         * lib/quotearg.c (quotearg_free): New function.
11089         (slot0, nslots, slotvec0, slotvec):
11090         Now file-scope so that quotearg_free can get at them.
11091
11092 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11093
11094         Sync from Automake.
11095         * build-aux/gnupload: Add missing 'gnu' to example URL.
11096         Report by Karl Berry.
11097
11098 2006-11-08  Bruno Haible  <bruno@clisp.org>
11099
11100         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
11101         Suggested by Paul Eggert.
11102
11103 2006-11-08  Jim Meyering  <jim@meyering.net>
11104
11105         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
11106         It's already included if !_LIBC.
11107         (fts_safe_changedir): Add a comment.
11108
11109 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
11110
11111         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
11112         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
11113         Matthew Woehlke.
11114
11115         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
11116         definitions up, to avoid colliding with change below.
11117         (static_inline) [HAVE_INLINE]: New macro.
11118         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
11119         Provide extern decls when !HAVE_INLINE.  Do not define unless
11120         static_inline is defined, either by us or by xmalloc.c.  Use
11121         static_inline rather than static inline.
11122         (XCALLOC): Optimize sizeof(T) = 1 case.
11123         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
11124
11125 2006-11-07  Bruno Haible  <bruno@clisp.org>
11126
11127         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
11128         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
11129         AC_C_INLINE.
11130         * modules/xalloc (Files): Add m4/inline.m4.
11131
11132 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11133
11134         * README: Fix typo.
11135         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
11136         (Miscellanous Notes): ...from this.
11137
11138 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
11139
11140         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
11141         Mention that offsetof should be used instead of sizeof.
11142         From Bruno Haible.
11143
11144 2006-11-07  Bruno Haible  <bruno@clisp.org>
11145
11146         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
11147
11148 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
11149
11150         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
11151         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
11152         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
11153         (gl_tree_add_before, gl_tree_add_after):
11154         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
11155         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
11156         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
11157         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
11158         (gl_linked_add_after, gl_linked_add_at): Likewise.
11159         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
11160         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
11161         (gl_tree_add_before, gl_tree_add_after): Likewise.
11162         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
11163         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
11164         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
11165
11166 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11167
11168         * lib/gl_oset.h: Use C comment style, not C++ comment style.
11169
11170 2006-11-06  Bruno Haible  <bruno@clisp.org>
11171
11172         * m4/inline.m4: New file.
11173         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
11174         * modules/list (Files): Add m4/inline.m4.
11175         * modules/oset (Files): Likewise.
11176
11177 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
11178
11179         * lib/idcache.c: Include <stddef.h>, for offsetof.
11180         (struct userid.name): Change from char * to a flexible array member.
11181         All uses changed.
11182         * modules/idcache (Depends-on): Add flexmember.
11183
11184         * MODULES.html.sh (Core language properties): New module flexmember.
11185         * modules/flexmember, m4/flexmember.m4: New files.
11186
11187         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
11188         inline functions that are identical with the old xnmalloc_inline,
11189         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
11190         that we can avoid some unnecessary integer multiplications and
11191         divisions in the common case where the element size is known at
11192         compile time.
11193         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
11194         needed.
11195         (xnboundedmalloc): Remove.
11196         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
11197         arguments, for consistency with rest of this header.
11198         (xcharalloc): Rewrite using XNMALLOC.
11199         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
11200         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
11201         versions have been moved to lib/xalloc.h and renamed to be the
11202         non-*_inline versions.
11203         (xmalloc, xrealloc): Implement without reference to the xnmalloc
11204         and xnrealloc functions, since those functions are now inline and
11205         now call us.
11206         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
11207         renaming described above.
11208         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
11209         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
11210         captures the dependency in AC_C_INLINE.
11211
11212         New module canonicalize-lgpl, proposed by Charles Wilson in
11213         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
11214         with a few small changes afterwards.
11215         * MODULES.html.sh (File system functions): New module
11216         canonicalize-lgpl.
11217         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
11218         and canonicalize_file_name.
11219         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
11220         * modules/canonicalize-lgpl: New files.
11221
11222 2006-11-05  Bruno Haible  <bruno@clisp.org>
11223
11224         * gnulib-tool (func_import, func_create_testdir): Create directories
11225         also for files in subdirectories of lib/.
11226
11227 2006-11-05  Bruno Haible  <bruno@clisp.org>
11228
11229         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
11230         ANSI C compliant.
11231
11232 2006-11-03  Bruno Haible  <bruno@clisp.org>
11233
11234         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
11235         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
11236         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
11237         (xnboundedmalloc): New inline function.
11238         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
11239         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
11240         xmalloc.
11241         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
11242         xmalloc.
11243         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
11244         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
11245         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
11246         xmalloc.
11247         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
11248         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
11249         xmalloc.
11250         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
11251         gl_tree_add_after): Use XMALLOC instead of xmalloc.
11252         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
11253         xmalloc.
11254         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
11255         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
11256         gl_tree_add_after): Use XMALLOC instead of xmalloc.
11257         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
11258         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
11259         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
11260         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
11261
11262 2006-11-03  Bruno Haible  <bruno@clisp.org>
11263
11264         * lib/c-ctype.h [C++]: Define functions without name mangling.
11265         * lib/fwriteerror.h [C++]: Likewise.
11266         * lib/gcd.h [C++]: Likewise.
11267         * lib/linebreak.h [C++]: Likewise.
11268
11269 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
11270
11271         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
11272         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
11273         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
11274         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
11275         Check for functions and headers just once.
11276         Check for declaration of canonicalize_file_name.
11277         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
11278
11279 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
11280
11281         * gnulib-tool (func_import): Fix typo in actioncmd.
11282
11283 2006-11-02  Bruno Haible  <bruno@clisp.org>
11284
11285         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
11286         newline sequence in the Makefile.am snippet as a space, like "make"
11287         does.
11288         Reported by Roger Persson <perrog@gmail.com>.
11289
11290 2006-11-01  Bruno Haible  <bruno@clisp.org>
11291
11292         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
11293         already declared in <string.h>.
11294         * lib/strcase.h (strncasecmp): Don't declare it if yes.
11295
11296 2006-11-01  Bruno Haible  <bruno@clisp.org>
11297
11298         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
11299         * lib/strcase.h: Include <string.h>.
11300         (strcasecmp): Define to rpl_strcasecmp here.
11301
11302 2006-11-01  Bruno Haible  <bruno@clisp.org>
11303
11304         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
11305
11306 2006-11-01  Eric Blake  <ebb9@byu.net>
11307
11308         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
11309
11310         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
11311
11312 2006-10-29  Bruno Haible  <bruno@clisp.org>
11313
11314         Make it compile in C++ mode.
11315         * lib/full-write.c (full_rw): Add a cast.
11316
11317 2006-11-01  Bruno Haible  <bruno@clisp.org>
11318
11319         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
11320         be POSIX compliant.
11321         Reported by Roger Persson <perrog@gmail.com>.
11322
11323 2006-11-01  Eric Blake  <ebb9@byu.net>
11324
11325         * lib/getopt_.h: Fix comments.
11326
11327 2006-10-31  Eric Blake  <ebb9@byu.net>
11328
11329         * modules/tmpdir (Depends-on): Add sys_stat.
11330         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
11331         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
11332         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
11333         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
11334         tempname.
11335
11336 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
11337
11338         Avoid some C++ diagnostics reported by Bruno Haible.
11339         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
11340         xmalloc.
11341         (quotearg_alloc): Use xcharalloc rather than xmalloc.
11342         (struct slotvec): Move to top level.
11343         (quotearg_n_options): Rewrite to avoid xmalloc.
11344         * lib/xalloc.h (xcharalloc): New function.
11345         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
11346         [defined __cplusplus]: Add function template that provides result
11347         type propagation.  This part of the change is from Bruno Haible.
11348
11349 2006-10-29  Bruno Haible  <bruno@clisp.org>
11350
11351         Make it compile in C++ mode.
11352         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
11353         * lib/strnlen1.c (strnlen1): Cast memchr result.
11354         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
11355         * lib/clean-temp.c (string_equals, string_hash): Add casts.
11356         (create_temp_dir): Rename local variable 'template'.
11357         (compile_csharp_using_sscli): Add cast.
11358         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
11359         * lib/findprog.c (find_in_path): Likewise.
11360         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
11361         * lib/wait-process.c (register_slave_subprocess): Likewise.
11362
11363 2006-10-22  Bruno Haible  <bruno@clisp.org>
11364
11365         * modules/tsearch: New file.
11366         * lib/tsearch.h: New file.
11367         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
11368         * m4/tsearch.m4: New file.
11369         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
11370
11371 2006-10-29  Eric Blake  <ebb9@byu.net>
11372
11373         * lib/arcfour.c: Assume config.h.
11374         * lib/arctwo.c: Likewise.
11375         * lib/base64.c: Likewise.
11376         * lib/check-version.c: Likewise.
11377         * lib/crc.c: Likewise.
11378         * lib/des.c: Likewise.
11379         * lib/gc-gnulib.c: Likewise.
11380         * lib/gc-libgcrypt.c: Likewise.
11381         * lib/gc-pbkdf2-sha1.c: Likewise.
11382         * lib/getaddrinfo.c: Likewise.
11383         * lib/getdelim.c: Likewise.
11384         * lib/getline.c: Likewise.
11385         * lib/hmac-md5.c: Likewise.
11386         * lib/hmac-sha1.c: Likewise.
11387         * lib/iconvme.c: Likewise.
11388         * lib/md2.c: Likewise.
11389         * lib/md4.c: Likewise.
11390         * lib/memxor.c: Likewise.
11391         * lib/read-file.c: Likewise.
11392         * lib/readline.c: Likewise.
11393         * lib/rijndael-alg-fst.c: Likewise.
11394         * lib/rijndael-api-fst.c: Likewise.
11395         * lib/xgetdomainname.c: Likewise.
11396
11397 2006-10-28  Eric Blake  <ebb9@byu.net>
11398
11399         * lib/xstrndup.c: Assume config.h.
11400
11401 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
11402
11403         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
11404         stat-macros.h is now for our own macros, whereas stat_h is for
11405         macros in the <sys/stat.h> name space.
11406         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
11407         (STAT_MACROS_H): Remove.
11408         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
11409         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
11410         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
11411         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
11412         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
11413         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
11414         Move these macros to ...
11415         * lib/stat_.h: here.  Don't include stat-macros.h.
11416         * lib/canonicalize.c: Don't include stat-macros.h.
11417         * lib/chown.c: Likewise.
11418         * lib/euidaccess.c: Likewise.
11419         * lib/file-type.c: Likewise.
11420         * lib/filemode.c: Likewise.
11421         * lib/glob.c: Likewise.
11422         * lib/isapipe.c: Likewise.
11423         * lib/lchown.c: Likewise.
11424         * lib/lstat.c: Likewise.
11425         * lib/mkdir-p.c: Likewise.
11426         * lib/rmdir.c: Likewise.
11427         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
11428         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
11429         unless mkdir isn't declared, to speed up 'configure'.
11430         Always create sys/stat.h, since it's unlikely any real sys/stat.h
11431         would define all the S_* symbols.
11432         * modules/canonicalize (Depends-on):
11433         Depend on sys_stat, not stat-macros.
11434         * modules/chown: Likewise.
11435         * modules/euidaccess: Likewise.
11436         * modules/filemode: Likewise.
11437         * modules/file-type: Likewise.
11438         * modules/glob: Likewise.
11439         * modules/isapipe: Likewise.
11440         * modules/lchown: Likewise.
11441         * modules/lstat: Likewise.
11442         * modules/mkancesdirs: Likewise.
11443         * modules/rmdir: Likewise.
11444         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
11445         * modules/modechange: Likewise.
11446         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
11447         (configure.ac): Remove gl_STAT_MACROS.
11448         * modules/sys_stat (Depends-on): Remove stat-macros.
11449
11450 2006-10-27  Bruno Haible  <bruno@clisp.org>
11451
11452         * m4/signed.m4: Remove file.
11453         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
11454         invocation.
11455         * modules/vasnprintf (Files): Remove m4/signed.m4.
11456
11457 2006-10-27  Bruno Haible  <bruno@clisp.org>
11458
11459         Update to GNU gettext 0.16.
11460         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
11461         m4/inttypes-h.m4, m4/signed.m4.
11462         * m4/gettext.m4: Update to GNU gettext 0.16.
11463         * m4/intl.m4: New file, from GNU gettext.
11464         * m4/intldir.m4: New file, from GNU gettext.
11465         * config/srclist.txt: Update
11466
11467 2006-10-27  Eric Blake  <ebb9@byu.net>
11468
11469         * MODULES.html.sh: Document tempname.
11470         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
11471         dependencies.
11472         (Files): Move lib/tempname.c...
11473         * modules/tempname: ...to this new module.
11474         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
11475         (gl_PREREQ_TEMPNAME): Move...
11476         * m4/tempname.m4: ...to this new file.
11477         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
11478         * modules/sys_stat (Depends-on): Add stat-macros.
11479         * lib/stat_.h (includes): Pick up stat macros.
11480         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
11481         if stat macros are broken.
11482         * lib/tempname.c (includes): No need to include "stat-macros.h".
11483         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
11484         (direxists, __path_search) [!_LIBC]: Don't compile these in
11485         gnulib; the tmpdir module covers that.
11486         * lib/tempname.h: New file.
11487
11488 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
11489
11490         * COPYING: Explain how gnulib-tool converts licence headers.
11491         Almost all wording by Eric Blake.
11492
11493 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
11494
11495         * lib/mbchar.h (is_basic_table): Make read-only.
11496         * lib/mbchar.c (is_basic_table): Likewise.
11497         Reported by John Darrington.
11498
11499 2006-10-25  Bruno Haible  <bruno@clisp.org>
11500
11501         * lib/progname.h (set_program_name): Undefine before defining.
11502
11503 2006-10-25  Bruno Haible  <bruno@clisp.org>
11504
11505         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
11506         false for non-gcc C++ compilers.
11507         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
11508
11509 2006-10-24  Bruno Haible  <bruno@clisp.org>
11510
11511         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
11512         iconv implementations like Irix iconv.
11513
11514 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
11515
11516         * modules/vararrays: New file.
11517         * m4/vararrays.m4: New file, taken from diffutils.
11518         * MODULES.html.sh: New module vararrays.
11519
11520 2006-10-24  Karl Berry  <karl@gnu.org>
11521
11522         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
11523         Don't call GNU Unix.
11524
11525 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11526
11527         * users.txt: Add Libtool.
11528
11529         Sync from Libtool:
11530
11531         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
11532
11533         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
11534         to gnulib's policy of including config.h unconditionally.
11535
11536 2006-10-24  Bruno Haible  <bruno@clisp.org>
11537
11538         * modules/wcwidth (Files): Add m4/wint_t.m4.
11539         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
11540         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
11541
11542 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
11543
11544         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
11545         to pacify GCC with some -W flags enabled.  Problem reported by
11546         Bruno Haible.
11547
11548 2006-10-24  Jim Meyering  <jim@meyering.net>
11549
11550         * MODULES.html.sh: Remove uinttostr.  It's not a module.
11551         Reported by Karl Berry.
11552
11553 2006-10-23  Bruno Haible  <bruno@clisp.org>
11554
11555         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
11556
11557 2006-10-24  Bruno Haible  <bruno@clisp.org>
11558
11559         * lib/gl_list.h: Use C comment style, not C++ comment style.
11560
11561 2006-10-23  Eric Blake  <ebb9@byu.net>
11562
11563         * lib/getaddrinfo.c (includes): Add missing include.
11564
11565 2006-10-23  Bruno Haible  <bruno@clisp.org>
11566             Paul Eggert  <eggert@cs.ucla.edu>
11567
11568         Ability to rename obstack_free.
11569         * lib/obstack.h (__obstack_free): New macro. Declare instead of
11570         obstack_free.
11571         (obstack_free): Invoke the __obstack_free macro.
11572         * lib/obstack.c (obstack_free): Use __obstack_free macro.
11573
11574 2006-10-23  Bruno Haible  <bruno@clisp.org>
11575             Paul Eggert  <eggert@cs.ucla.edu>
11576
11577         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
11578         __argc, __argv from the declaration. (They are defined as macros on
11579         mingw.)
11580
11581 2006-10-22  Bruno Haible  <bruno@clisp.org>
11582
11583         * doc/gnulib-intro.texi: New file.
11584         * doc/gnulib.texi: Include it.
11585
11586 2006-10-21  Bruno Haible  <bruno@clisp.org>
11587
11588         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
11589         "Introduction", "Miscellanous Notes", "Particular Modules".
11590
11591 2006-10-21  Bruno Haible  <bruno@clisp.org>
11592
11593         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11594         Change mostlyclean-local rule to avoid sh syntax error from bash
11595         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
11596
11597 2006-10-23  Jim Meyering  <jim@meyering.net>
11598
11599         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
11600         in place of snprintf.
11601
11602         * modules/inttostr (Files): Add lib/uinttostr.c.
11603         * lib/uinttostr.c (inttostr): New file/function.
11604         * lib/inttostr.h (uinttostr): Declare.
11605         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
11606         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
11607         Add uinttostr.
11608         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
11609
11610 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
11611
11612         * lib/canonicalize.c (ELOOP): Define if not already defined.
11613         Problem reported by Bruno Haible in
11614         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
11615
11616 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
11617
11618         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
11619         Problem reported by Perry Smith and Ville Laurikari.
11620
11621         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
11622         uses.
11623
11624 2006-10-19  Bruno Haible  <bruno@clisp.org>
11625
11626         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
11627         for mingw.
11628
11629 2006-10-19  Bruno Haible  <bruno@clisp.org>
11630
11631         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
11632         Needed for mingw.
11633
11634 2006-10-19  Bruno Haible  <bruno@clisp.org>
11635
11636         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
11637
11638 2006-10-19  Bruno Haible  <bruno@clisp.org>
11639
11640         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
11641         it.
11642
11643 2006-10-19  Bruno Haible  <bruno@clisp.org>
11644
11645         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
11646         invocation.
11647
11648 2006-10-19  Bruno Haible  <bruno@clisp.org>
11649
11650         * gnulib-tool (func_create_testdir): Don't include ftruncate and
11651         mountlist by default.
11652
11653 2006-10-16  Bruno Haible  <bruno@clisp.org>
11654
11655         * lib/c-strstr.c: Include c-strstr.h.
11656
11657 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
11658
11659         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
11660         in a slash.
11661
11662 2006-10-18  Bruno Haible  <bruno@clisp.org>
11663
11664         * lib/lock.h [C++]: Wrap definitions in extern "C".
11665
11666 2006-10-18  Bruno Haible  <bruno@clisp.org>
11667
11668         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
11669         gl_LIBOBJS list.
11670
11671 2006-10-18  Bruno Haible  <bruno@clisp.org>
11672
11673         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
11674
11675 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
11676
11677         * lib/xstrtol.h: Include gettext.h.
11678         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
11679         Problem reported by Eric Blake.
11680         * modules/xstrtol (Depends-on): Add gettext-h.
11681
11682 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
11683
11684         * lib/strftime.c (advance): New macro.
11685         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
11686         incomplete type, so you can't add 0 to it.  Problem and patch
11687         reported by Eelco Dolstra for dietlibc.
11688
11689 2006-10-18  Jim Meyering  <jim@meyering.net>
11690
11691         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
11692         type for a local, and rename it: s/up/user_proc/.
11693
11694 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
11695
11696         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
11697         READ_UTMP_USER_PROCESS.
11698         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
11699
11700 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
11701
11702         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
11703         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
11704
11705 2006-10-17  Eric Blake  <ebb9@byu.net>
11706
11707         * lib/sigprocmask.c (sigprocmask): Fix typo.
11708
11709         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
11710
11711         * modules/clean-temp (Makefile.am): Don't add to make output...
11712         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
11713         config.h.
11714
11715 2006-10-17  Bruno Haible  <bruno@clisp.org>
11716
11717         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
11718         differently if DEFAULT_TEXT_DOMAIN is set.
11719
11720 2006-10-16  Bruno Haible  <bruno@clisp.org>
11721
11722         * lib/clean-temp.c: Include fwriteerror.h.
11723
11724 2006-10-16  Bruno Haible  <bruno@clisp.org>
11725
11726         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
11727
11728 2006-10-16  Bruno Haible  <bruno@clisp.org>
11729
11730         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
11731         * lib/sigprocmask.h: Include <sys/types.h>.
11732         (sigset_t): Use the system's definition if present.
11733
11734 2006-10-17  Eric Blake  <ebb9@byu.net>
11735
11736         * lib/xvasprintf.c (includes): Assume config.h.
11737         * lib/xasprintf.c (includes): Likewise.
11738
11739 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
11740
11741         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
11742         at least as wide as intmax_t.
11743
11744 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
11745
11746         (Imported from Automake.)
11747         * build-aux/gnupload: Update to version 1.1 of directive file.
11748
11749 2006-10-16  Eric Blake  <ebb9@byu.net>
11750
11751         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
11752         match Automake 1.10a.
11753
11754 2006-10-14  Bruno Haible  <bruno@clisp.org>
11755
11756         * modules/sigprocmask: New file.
11757         * lib/sigprocmask.h: New file.
11758         * lib/sigprocmask.c: New file.
11759         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
11760         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
11761         request sigprocmask.o.
11762         (gl_PREREQ_SIGPROCMASK): New macro.
11763         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
11764         (Depends-on): Add sigprocmask.
11765         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
11766         gt_SIGNALBLOCKING. Test for 'raise' only once.
11767         * lib/fatal-signal.c: Include sigprocmask.h.
11768         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
11769         unblock_fatal_signals): Define always.
11770         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11771         sigprocmask.
11772
11773 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
11774
11775         Sync from Automake.
11776         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
11777         which incorrectly sets the mode of an existing destination
11778         directory.  In some cases the unpatched install-sh could do the
11779         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
11780         system.  We hope this is rare in practice, but it's clearly worth
11781         fixing.  Problem reported by Alex Unleashed in
11782         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
11783         Also, don't bother to check for -m bugs unless we're using -m;
11784         suggested by Stepan Kasal.
11785
11786 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11787
11788         Sync from Automake.
11789         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
11790         `-c' flag, so they appear at the same position as in %FASTDEP%
11791         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
11792         which ignores unknown options only after the first non-option.
11793         Bug report against M4 by Nelson H. F. Beebe.
11794
11795 2006-10-13  Jim Meyering  <jim@meyering.net>
11796
11797         Fix a bug in yesterday's change.
11798         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
11799         p->fts_statp->st_dev would be used uninitialized.
11800         Ensures that we always call fts_stat on the very first entry.
11801         Miklos Szeredi reported that find -xdev stopped working.
11802
11803 2006-10-12  Bruno Haible  <bruno@clisp.org>
11804
11805         * gnulib-tool (func_get_automake_snippet): Append an automatically
11806         computed EXTRA_DIST augmentation.
11807         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
11808         * modules/alloca-opt (Makefile.am): Likewise.
11809         * modules/allocsa (Makefile.am): Likewise.
11810         * modules/arcfour (Makefile.am): Likewise.
11811         * modules/arctwo (Makefile.am): Likewise.
11812         * modules/argmatch (Makefile.am): Likewise.
11813         * modules/argz (Makefile.am): Likewise.
11814         * modules/atexit (Makefile.am): Likewise.
11815         * modules/backupfile (Makefile.am): Likewise.
11816         * modules/byteswap (Makefile.am): Likewise.
11817         * modules/c-strtod (Makefile.am): Likewise.
11818         * modules/c-strtold (Makefile.am): Likewise.
11819         * modules/calloc (Makefile.am): Likewise.
11820         * modules/canon-host (Makefile.am): Likewise.
11821         * modules/canonicalize (Makefile.am): Likewise.
11822         * modules/chdir-long (Makefile.am): Likewise.
11823         * modules/chdir-safer (Makefile.am): Likewise.
11824         * modules/check-version (Makefile.am): Likewise.
11825         * modules/chown (Makefile.am): Likewise.
11826         * modules/cloexec (Makefile.am): Likewise.
11827         * modules/close-stream (Makefile.am): Likewise.
11828         * modules/closeout (Makefile.am): Likewise.
11829         * modules/crc (Makefile.am): Likewise.
11830         * modules/csharpexec (Makefile.am): Likewise.
11831         * modules/cycle-check (Makefile.am): Likewise.
11832         * modules/des (Makefile.am): Likewise.
11833         * modules/dev-ino (Makefile.am): Likewise.
11834         * modules/dirfd (Makefile.am): Likewise.
11835         * modules/dirname (Makefile.am): Likewise.
11836         * modules/dup2 (Makefile.am): Likewise.
11837         * modules/eealloc (Makefile.am): Likewise.
11838         * modules/error (Makefile.am): Likewise.
11839         * modules/euidaccess (Makefile.am): Likewise.
11840         * modules/exclude (Makefile.am): Likewise.
11841         * modules/exitfail (Makefile.am): Likewise.
11842         * modules/fcntl-safer (Makefile.am): Likewise.
11843         * modules/fcntl (Makefile.am): Likewise.
11844         * modules/file-type (Makefile.am): Likewise.
11845         * modules/fileblocks (Makefile.am): Likewise.
11846         * modules/filemode (Makefile.am): Likewise.
11847         * modules/filenamecat (Makefile.am): Likewise.
11848         * modules/fnmatch (Makefile.am): Likewise.
11849         * modules/fopen-safer (Makefile.am): Likewise.
11850         * modules/fpending (Makefile.am): Likewise.
11851         * modules/fprintftime (Makefile.am): Likewise.
11852         * modules/free (Makefile.am): Likewise.
11853         * modules/fsusage (Makefile.am): Likewise.
11854         * modules/ftruncate (Makefile.am): Likewise.
11855         * modules/fts (Makefile.am): Likewise.
11856         * modules/gc-arcfour (Makefile.am): Likewise.
11857         * modules/gc-des (Makefile.am): Likewise.
11858         * modules/gc-hmac-md5 (Makefile.am): Likewise.
11859         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
11860         * modules/gc-md4 (Makefile.am): Likewise.
11861         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
11862         * modules/gc-sha1 (Makefile.am): Likewise.
11863         * modules/gc (Makefile.am): Likewise.
11864         * modules/getaddrinfo (Makefile.am): Likewise.
11865         * modules/getcwd (Makefile.am): Likewise.
11866         * modules/getdelim (Makefile.am): Likewise.
11867         * modules/getdomainname (Makefile.am): Likewise.
11868         * modules/getgroups (Makefile.am): Likewise.
11869         * modules/gethostname (Makefile.am): Likewise.
11870         * modules/gethrxtime (Makefile.am): Likewise.
11871         * modules/getline (Makefile.am): Likewise.
11872         * modules/getloadavg (Makefile.am): Likewise.
11873         * modules/getlogin_r (Makefile.am): Likewise.
11874         * modules/getndelim2 (Makefile.am): Likewise.
11875         * modules/getopt (Makefile.am): Likewise.
11876         * modules/getpagesize (Makefile.am): Likewise.
11877         * modules/getpass-gnu (Makefile.am): Likewise.
11878         * modules/getpass (Makefile.am): Likewise.
11879         * modules/getsubopt (Makefile.am): Likewise.
11880         * modules/gettime (Makefile.am): Likewise.
11881         * modules/gettimeofday (Makefile.am): Likewise.
11882         * modules/getugroups (Makefile.am): Likewise.
11883         * modules/getusershell (Makefile.am): Likewise.
11884         * modules/glob (Makefile.am): Likewise.
11885         * modules/group-member (Makefile.am): Likewise.
11886         * modules/hard-locale (Makefile.am): Likewise.
11887         * modules/hash (Makefile.am): Likewise.
11888         * modules/hmac-md5 (Makefile.am): Likewise.
11889         * modules/hmac-sha1 (Makefile.am): Likewise.
11890         * modules/human (Makefile.am): Likewise.
11891         * modules/idcache (Makefile.am): Likewise.
11892         * modules/imaxabs (Makefile.am): Likewise.
11893         * modules/imaxdiv (Makefile.am): Likewise.
11894         * modules/inet_ntop (Makefile.am): Likewise.
11895         * modules/inet_pton (Makefile.am): Likewise.
11896         * modules/intprops (Makefile.am): Likewise.
11897         * modules/inttostr (Makefile.am): Likewise.
11898         * modules/inttypes (Makefile.am): Likewise.
11899         * modules/isapipe (Makefile.am): Likewise.
11900         * modules/javaversion (Makefile.am): Likewise.
11901         * modules/lchmod (Makefile.am): Likewise.
11902         * modules/lchown (Makefile.am): Likewise.
11903         * modules/localcharset (Makefile.am): Likewise.
11904         * modules/long-options (Makefile.am): Likewise.
11905         * modules/lstat (Makefile.am): Likewise.
11906         * modules/malloc (Makefile.am): Likewise.
11907         * modules/mathl (Makefile.am): Likewise.
11908         * modules/mbchar (Makefile.am): Likewise.
11909         * modules/md2 (Makefile.am): Likewise.
11910         * modules/md4 (Makefile.am): Likewise.
11911         * modules/md5 (Makefile.am): Likewise.
11912         * modules/memcasecmp (Makefile.am): Likewise.
11913         * modules/memchr (Makefile.am): Likewise.
11914         * modules/memcmp (Makefile.am): Likewise.
11915         * modules/memcoll (Makefile.am): Likewise.
11916         * modules/memcpy (Makefile.am): Likewise.
11917         * modules/memmem (Makefile.am): Likewise.
11918         * modules/memmove (Makefile.am): Likewise.
11919         * modules/mempcpy (Makefile.am): Likewise.
11920         * modules/memrchr (Makefile.am): Likewise.
11921         * modules/memset (Makefile.am): Likewise.
11922         * modules/memxor (Makefile.am): Likewise.
11923         * modules/mkancesdirs (Makefile.am): Likewise.
11924         * modules/mkdir-p (Makefile.am): Likewise.
11925         * modules/mkdir (Makefile.am): Likewise.
11926         * modules/mkdtemp (Makefile.am): Likewise.
11927         * modules/mkstemp (Makefile.am): Likewise.
11928         * modules/mktime (Makefile.am): Likewise.
11929         * modules/modechange (Makefile.am): Likewise.
11930         * modules/mountlist (Makefile.am): Likewise.
11931         * modules/nanosleep (Makefile.am): Likewise.
11932         * modules/obstack (Makefile.am): Likewise.
11933         * modules/openat (Makefile.am): Likewise.
11934         * modules/pagealign_alloc (Makefile.am): Likewise.
11935         * modules/pathmax (Makefile.am): Likewise.
11936         * modules/physmem (Makefile.am): Likewise.
11937         * modules/poll (Makefile.am): Likewise.
11938         * modules/posixtm (Makefile.am): Likewise.
11939         * modules/posixver (Makefile.am): Likewise.
11940         * modules/putenv (Makefile.am): Likewise.
11941         * modules/quote (Makefile.am): Likewise.
11942         * modules/quotearg (Makefile.am): Likewise.
11943         * modules/raise (Makefile.am): Likewise.
11944         * modules/read-file (Makefile.am): Likewise.
11945         * modules/readline (Makefile.am): Likewise.
11946         * modules/readlink (Makefile.am): Likewise.
11947         * modules/readtokens (Makefile.am): Likewise.
11948         * modules/readutmp (Makefile.am): Likewise.
11949         * modules/realloc (Makefile.am): Likewise.
11950         * modules/regex (Makefile.am): Likewise.
11951         * modules/rename-dest-slash (Makefile.am): Likewise.
11952         * modules/rename (Makefile.am): Likewise.
11953         * modules/rijndael (Makefile.am): Likewise.
11954         * modules/rmdir (Makefile.am): Likewise.
11955         * modules/rpmatch (Makefile.am): Likewise.
11956         * modules/safe-read (Makefile.am): Likewise.
11957         * modules/safe-write (Makefile.am): Likewise.
11958         * modules/same-inode (Makefile.am): Likewise.
11959         * modules/same (Makefile.am): Likewise.
11960         * modules/save-cwd (Makefile.am): Likewise.
11961         * modules/savedir (Makefile.am): Likewise.
11962         * modules/setenv (Makefile.am): Likewise.
11963         * modules/settime (Makefile.am): Likewise.
11964         * modules/sha1 (Makefile.am): Likewise.
11965         * modules/sig2str (Makefile.am): Likewise.
11966         * modules/snprintf (Makefile.am): Likewise.
11967         * modules/stat-macros (Makefile.am): Likewise.
11968         * modules/stat-time (Makefile.am): Likewise.
11969         * modules/stdbool (Makefile.am): Likewise.
11970         * modules/stdint (Makefile.am): Likewise.
11971         * modules/stdlib-safer (Makefile.am): Likewise.
11972         * modules/stpcpy (Makefile.am): Likewise.
11973         * modules/stpncpy (Makefile.am): Likewise.
11974         * modules/strcase (Makefile.am): Likewise.
11975         * modules/strcasestr (Makefile.am): Likewise.
11976         * modules/strchrnul (Makefile.am): Likewise.
11977         * modules/strcspn (Makefile.am): Likewise.
11978         * modules/strdup (Makefile.am): Likewise.
11979         * modules/strerror (Makefile.am): Likewise.
11980         * modules/strftime (Makefile.am): Likewise.
11981         * modules/strndup (Makefile.am): Likewise.
11982         * modules/strnlen (Makefile.am): Likewise.
11983         * modules/strpbrk (Makefile.am): Likewise.
11984         * modules/strsep (Makefile.am): Likewise.
11985         * modules/strstr (Makefile.am): Likewise.
11986         * modules/strtod (Makefile.am): Likewise.
11987         * modules/strtoimax (Makefile.am): Likewise.
11988         * modules/strtok_r (Makefile.am): Likewise.
11989         * modules/strtol (Makefile.am): Likewise.
11990         * modules/strtoll (Makefile.am): Likewise.
11991         * modules/strtoul (Makefile.am): Likewise.
11992         * modules/strtoull (Makefile.am): Likewise.
11993         * modules/strtoumax (Makefile.am): Likewise.
11994         * modules/strverscmp (Makefile.am): Likewise.
11995         * modules/sys_socket (Makefile.am): Likewise.
11996         * modules/sys_stat (Makefile.am): Likewise.
11997         * modules/sysexits (Makefile.am): Likewise.
11998         * modules/time_r (Makefile.am): Likewise.
11999         * modules/timegm (Makefile.am): Likewise.
12000         * modules/timespec (Makefile.am): Likewise.
12001         * modules/tmpfile-safer (Makefile.am): Likewise.
12002         * modules/trim (Makefile.am): Likewise.
12003         * modules/unistd-safer (Makefile.am): Likewise.
12004         * modules/unlinkdir (Makefile.am): Likewise.
12005         * modules/unlocked-io (Makefile.am): Likewise.
12006         * modules/userspec (Makefile.am): Likewise.
12007         * modules/utime (Makefile.am): Likewise.
12008         * modules/utimecmp (Makefile.am): Likewise.
12009         * modules/utimens (Makefile.am): Likewise.
12010         * modules/vasnprintf (Makefile.am): Likewise.
12011         * modules/vasprintf (Makefile.am): Likewise.
12012         * modules/vsnprintf (Makefile.am): Likewise.
12013         * modules/xalloc (Makefile.am): Likewise.
12014         * modules/xgetcwd (Makefile.am): Likewise.
12015         * modules/xnanosleep (Makefile.am): Likewise.
12016         * modules/xreadlink (Makefile.am): Likewise.
12017         * modules/xstrtod (Makefile.am): Likewise.
12018         * modules/xstrtol (Makefile.am): Likewise.
12019         * modules/xstrtold (Makefile.am): Likewise.
12020         * modules/yesno (Makefile.am): Likewise.
12021         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
12022
12023 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
12024
12025         * modules/error (Makefile.am): Distribute files through
12026         EXTRA_DIST, not lib_SOURCES.
12027
12028 2006-10-12  Eric Blake  <ebb9@byu.net>
12029
12030         * modules/error (Makefile.am): Distribute files in /lib.
12031         * modules/obstack (Makefile.am): Likewise.
12032
12033 2006-10-12  Bruno Haible  <bruno@clisp.org>
12034
12035         * modules/acl (Makefile.am): Distribute all files in lib/ through
12036         EXTRA_DIST.
12037         * modules/arcfour (Makefile.am): Likewise.
12038         * modules/arctwo (Makefile.am): Likewise.
12039         * modules/argmatch (Makefile.am): Likewise.
12040         * modules/argz (Makefile.am): Likewise.
12041         * modules/atexit (Makefile.am): Likewise.
12042         * modules/backupfile (Makefile.am): Likewise.
12043         * modules/c-strtod (Makefile.am): Likewise.
12044         * modules/c-strtold (Makefile.am): Likewise.
12045         * modules/calloc (Makefile.am): Likewise.
12046         * modules/canon-host (Makefile.am): Likewise.
12047         * modules/canonicalize (Makefile.am): Likewise.
12048         * modules/chdir-long (Makefile.am): Likewise.
12049         * modules/chdir-safer (Makefile.am): Likewise.
12050         * modules/check-version (Makefile.am): Likewise.
12051         * modules/chown (Makefile.am): Likewise.
12052         * modules/cloexec (Makefile.am): Likewise.
12053         * modules/close-stream (Makefile.am): Likewise.
12054         * modules/closeout (Makefile.am): Likewise.
12055         * modules/crc (Makefile.am): Likewise.
12056         * modules/cycle-check (Makefile.am): Likewise.
12057         * modules/des (Makefile.am): Likewise.
12058         * modules/dirfd (Makefile.am): Likewise.
12059         * modules/dirname (Makefile.am): Likewise.
12060         * modules/dup2 (Makefile.am): Likewise.
12061         * modules/euidaccess (Makefile.am): Likewise.
12062         * modules/exclude (Makefile.am): Likewise.
12063         * modules/exitfail (Makefile.am): Likewise.
12064         * modules/fcntl-safer (Makefile.am): Likewise.
12065         * modules/file-type (Makefile.am): Likewise.
12066         * modules/fileblocks (Makefile.am): Likewise.
12067         * modules/filemode (Makefile.am): Likewise.
12068         * modules/filenamecat (Makefile.am): Likewise.
12069         * modules/fnmatch (Makefile.am): Likewise.
12070         * modules/fopen-safer (Makefile.am): Likewise.
12071         * modules/fpending (Makefile.am): Likewise.
12072         * modules/fprintftime (Makefile.am): Likewise.
12073         * modules/free (Makefile.am): Likewise.
12074         * modules/fsusage (Makefile.am): Likewise.
12075         * modules/ftruncate (Makefile.am): Likewise.
12076         * modules/fts (Makefile.am): Likewise.
12077         * modules/gc (Makefile.am): Likewise.
12078         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
12079         * modules/getaddrinfo (Makefile.am): Likewise.
12080         * modules/getcwd (Makefile.am): Likewise.
12081         * modules/getdelim (Makefile.am): Likewise.
12082         * modules/getdomainname (Makefile.am): Likewise.
12083         * modules/getgroups (Makefile.am): Likewise.
12084         * modules/gethostname (Makefile.am): Likewise.
12085         * modules/gethrxtime (Makefile.am): Likewise.
12086         * modules/getline (Makefile.am): Likewise.
12087         * modules/getloadavg (Makefile.am): Likewise.
12088         * modules/getlogin_r (Makefile.am): Likewise.
12089         * modules/getopt (Makefile.am): Likewise.
12090         * modules/getpass (Makefile.am): Likewise.
12091         * modules/getpass-gnu (Makefile.am): Likewise.
12092         * modules/getsubopt (Makefile.am): Likewise.
12093         * modules/gettime (Makefile.am): Likewise.
12094         * modules/gettimeofday (Makefile.am): Likewise.
12095         * modules/getugroups (Makefile.am): Likewise.
12096         * modules/getusershell (Makefile.am): Likewise.
12097         * modules/glob (Makefile.am): Likewise.
12098         * modules/group-member (Makefile.am): Likewise.
12099         * modules/hard-locale (Makefile.am): Likewise.
12100         * modules/hash (Makefile.am): Likewise.
12101         * modules/hmac-md5 (Makefile.am): Likewise.
12102         * modules/hmac-sha1 (Makefile.am): Likewise.
12103         * modules/human (Makefile.am): Likewise.
12104         * modules/idcache (Makefile.am): Likewise.
12105         * modules/imaxabs (Makefile.am): Likewise.
12106         * modules/imaxdiv (Makefile.am): Likewise.
12107         * modules/inet_ntop (Makefile.am): Likewise.
12108         * modules/inet_pton (Makefile.am): Likewise.
12109         * modules/inttostr (Makefile.am): Likewise.
12110         * modules/isapipe (Makefile.am): Likewise.
12111         * modules/lchown (Makefile.am): Likewise.
12112         * modules/long-options (Makefile.am): Likewise.
12113         * modules/lstat (Makefile.am): Likewise.
12114         * modules/malloc (Makefile.am): Likewise.
12115         * modules/mathl (Makefile.am): Likewise.
12116         * modules/mbchar (Makefile.am): Likewise.
12117         * modules/md2 (Makefile.am): Likewise.
12118         * modules/md4 (Makefile.am): Likewise.
12119         * modules/md5 (Makefile.am): Likewise.
12120         * modules/memcasecmp (Makefile.am): Likewise.
12121         * modules/memchr (Makefile.am): Likewise.
12122         * modules/memcmp (Makefile.am): Likewise.
12123         * modules/memcoll (Makefile.am): Likewise.
12124         * modules/memcpy (Makefile.am): Likewise.
12125         * modules/memmem (Makefile.am): Likewise.
12126         * modules/memmove (Makefile.am): Likewise.
12127         * modules/mempcpy (Makefile.am): Likewise.
12128         * modules/memrchr (Makefile.am): Likewise.
12129         * modules/memset (Makefile.am): Likewise.
12130         * modules/memxor (Makefile.am): Likewise.
12131         * modules/mkancesdirs (Makefile.am): Likewise.
12132         * modules/mkdir (Makefile.am): Likewise.
12133         * modules/mkdir-p (Makefile.am): Likewise.
12134         * modules/mkdtemp (Makefile.am): Likewise.
12135         * modules/mkstemp (Makefile.am): Likewise.
12136         * modules/mktime (Makefile.am): Likewise.
12137         * modules/modechange (Makefile.am): Likewise.
12138         * modules/mountlist (Makefile.am): Likewise.
12139         * modules/nanosleep (Makefile.am): Likewise.
12140         * modules/openat (Makefile.am): Likewise.
12141         * modules/pagealign_alloc (Makefile.am): Likewise.
12142         * modules/physmem (Makefile.am): Likewise.
12143         * modules/poll (Makefile.am): Likewise.
12144         * modules/posixtm (Makefile.am): Likewise.
12145         * modules/posixver (Makefile.am): Likewise.
12146         * modules/putenv (Makefile.am): Likewise.
12147         * modules/quote (Makefile.am): Likewise.
12148         * modules/quotearg (Makefile.am): Likewise.
12149         * modules/raise (Makefile.am): Likewise.
12150         * modules/read-file (Makefile.am): Likewise.
12151         * modules/readline (Makefile.am): Likewise.
12152         * modules/readlink (Makefile.am): Likewise.
12153         * modules/readtokens (Makefile.am): Likewise.
12154         * modules/readutmp (Makefile.am): Likewise.
12155         * modules/realloc (Makefile.am): Likewise.
12156         * modules/regex (Makefile.am): Likewise.
12157         * modules/rename (Makefile.am): Likewise.
12158         * modules/rename-dest-slash (Makefile.am): Likewise.
12159         * modules/rijndael (Makefile.am): Likewise.
12160         * modules/rmdir (Makefile.am): Likewise.
12161         * modules/rpmatch (Makefile.am): Likewise.
12162         * modules/safe-read (Makefile.am): Likewise.
12163         * modules/safe-write (Makefile.am): Likewise.
12164         * modules/same (Makefile.am): Likewise.
12165         * modules/save-cwd (Makefile.am): Likewise.
12166         * modules/savedir (Makefile.am): Likewise.
12167         * modules/setenv (Makefile.am): Likewise.
12168         * modules/settime (Makefile.am): Likewise.
12169         * modules/sha1 (Makefile.am): Likewise.
12170         * modules/sig2str (Makefile.am): Likewise.
12171         * modules/snprintf (Makefile.am): Likewise.
12172         * modules/stdlib-safer (Makefile.am): Likewise.
12173         * modules/stpcpy (Makefile.am): Likewise.
12174         * modules/stpncpy (Makefile.am): Likewise.
12175         * modules/strcase (Makefile.am): Likewise.
12176         * modules/strcasestr (Makefile.am): Likewise.
12177         * modules/strchrnul (Makefile.am): Likewise.
12178         * modules/strcspn (Makefile.am): Likewise.
12179         * modules/strdup (Makefile.am): Likewise.
12180         * modules/strerror (Makefile.am): Likewise.
12181         * modules/strftime (Makefile.am): Likewise.
12182         * modules/strndup (Makefile.am): Likewise.
12183         * modules/strnlen (Makefile.am): Likewise.
12184         * modules/strpbrk (Makefile.am): Likewise.
12185         * modules/strsep (Makefile.am): Likewise.
12186         * modules/strstr (Makefile.am): Likewise.
12187         * modules/strtod (Makefile.am): Likewise.
12188         * modules/strtoimax (Makefile.am): Likewise.
12189         * modules/strtok_r (Makefile.am): Likewise.
12190         * modules/strtol (Makefile.am): Likewise.
12191         * modules/strtoll (Makefile.am): Likewise.
12192         * modules/strtoul (Makefile.am): Likewise.
12193         * modules/strtoull (Makefile.am): Likewise.
12194         * modules/strtoumax (Makefile.am): Likewise.
12195         * modules/strverscmp (Makefile.am): Likewise.
12196         * modules/time_r (Makefile.am): Likewise.
12197         * modules/timegm (Makefile.am): Likewise.
12198         * modules/tmpfile-safer (Makefile.am): Likewise.
12199         * modules/unistd-safer (Makefile.am): Likewise.
12200         * modules/unlinkdir (Makefile.am): Likewise.
12201         * modules/userspec (Makefile.am): Likewise.
12202         * modules/utime (Makefile.am): Likewise.
12203         * modules/utimecmp (Makefile.am): Likewise.
12204         * modules/utimens (Makefile.am): Likewise.
12205         * modules/vasnprintf (Makefile.am): Likewise.
12206         * modules/vasprintf (Makefile.am): Likewise.
12207         * modules/vsnprintf (Makefile.am): Likewise.
12208         * modules/xalloc (Makefile.am): Likewise.
12209         * modules/xgetcwd (Makefile.am): Likewise.
12210         * modules/xnanosleep (Makefile.am): Likewise.
12211         * modules/xreadlink (Makefile.am): Likewise.
12212         * modules/xstrtod (Makefile.am): Likewise.
12213         * modules/xstrtol (Makefile.am): Likewise.
12214         * modules/xstrtold (Makefile.am): Likewise.
12215         * modules/yesno (Makefile.am): Likewise.
12216
12217 2006-10-12  Jim Meyering  <jim@meyering.net>
12218
12219         * m4/getloadavg.m4: Revert the change below.
12220
12221         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
12222         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
12223         fail with a symlink, which is what coreutils' ./bootstrap now
12224         creates by default.
12225
12226 2006-10-12  Bruno Haible  <bruno@clisp.org>
12227
12228         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
12229         mingw.
12230         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
12231         MSVC and mingw explicitly.
12232
12233 2006-10-11  Simon Josefsson  <jas@extundo.com>
12234             Bruno Haible  <bruno@clisp.org>
12235
12236         Add support for multiple gnulib-tool invocations in the scope of a
12237         single configure.ac file.
12238         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
12239         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
12240         with the same contents as the _LIBADD variable.
12241         (func_emit_initmacro_start, func_emit_initmacro_end,
12242         func_emit_initmacro_done): New functions.
12243         (func_import, func_create_testdir): Invoke them. Allow the identifiers
12244         gl_LIBOBJS and gl_LTLIBOBJS.
12245
12246 2006-10-11  Bruno Haible  <bruno@clisp.org>
12247
12248         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
12249         (func_create_testdir): Don't create po/Makefile.am, don't invoke
12250         autoreconf. Instead, invoke autopoint explicitly but move back the
12251         *.m4 files from gnulib.
12252
12253 2006-10-11  Bruno Haible  <bruno@clisp.org>
12254
12255         * gnulib-tool (func_usage): Make module names after --create-testdir
12256         optional.
12257         (func_create_testdir): If no module was specified, use nearly all
12258         modules.
12259
12260 2006-10-12  Jim Meyering  <jim@meyering.net>
12261
12262         Big performance improvement for fts-based tools that use FTS_NOSTAT.
12263         Avoid spurious inode-mismatch problems on non-POSIX file systems.
12264         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
12265         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
12266         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
12267         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
12268         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
12269         (fts_set_stat_required): New function.
12270         (fts_open): Defer the calls to fts_stat, if possible or requested.
12271         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
12272         into fts_stat itself.
12273         (fts_read): Perform any required (deferred) fts_stat call.
12274         (fts_build): Likewise, for the directory we're about to open and read.
12275         In the readdir loop, carefully decide whether each entry will require
12276         an eventual call to fts_stat, using dirent.d_type info if available.
12277         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
12278         a command line argument into this function.  Update all callers.
12279         Map a return value of FTS_DOT to FTS_D for a command line argument.
12280         * modules/fts (Depends-on): Add d-type.  Alphabetize.
12281         Thanks to Miklos Szeredi for his tenacity and for the initial
12282         bug report about "find" failing on a FUSE-based file system.
12283
12284         * lib/fts.c (fts_open): Use consistent indentation.
12285
12286 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
12287
12288         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
12289         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
12290         reported by Jim Meyering.  All uses of cache variables renamed
12291         to match Autoconf's.
12292         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
12293         the other one.
12294
12295         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
12296         Fix misspelling in diagnostic.
12297
12298 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
12299
12300         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
12301         defined.  Problem reported by Matthew Woehlke.
12302
12303         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
12304         Add support for Tandem NonStop R series.
12305         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
12306         Use new macro.
12307
12308         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
12309         (has_trailing_slash): Omit size arg; all callers changed.
12310         Omit 'inline', since it doesn't help performance and we'd
12311         need to configure it.
12312         Don't count //, ///, etc. as having a trailing slash.
12313         As a side effect, this removes a C99ism reported by Matthew Woehlke.
12314         (rpl_rename_dest_slash): On failure, use rename's errno rather
12315         than (in some cases) an incorrect or junk errno.
12316         Simplify code by removing need to compute length; this does
12317         cause it to make two passes instead of one over the file name,
12318         but it's worth it.
12319
12320         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
12321         change, since Autoconf's version may no longer be appropriate now
12322         that we are using CVS Autoconf's version.  Add support for Tandem.
12323
12324 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
12325             Bruno Haible  <bruno@clisp.org>
12326
12327         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
12328         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
12329         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
12330         gl_AC_TYPE_LONG_LONG.
12331
12332         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
12333         instead of HAVE_LONG_LONG.
12334         * lib/printf-args.c (printf_fetchargs): Likewise.
12335         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
12336         * lib/vasnprintf.c (VASNPRINTF): Likewise.
12337         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
12338         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
12339         gl_AC_TYPE_LONG_LONG.
12340
12341 2006-10-11  Bruno Haible  <bruno@clisp.org>
12342
12343         * m4/longlong.m4: Add comments.
12344         * m4/ulonglong.m4: Likewise.
12345
12346 2006-10-10  Bruno Haible  <bruno@clisp.org>
12347
12348         Make it possible to #define stpcpy, strdup to aliases.
12349         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
12350         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
12351
12352 2006-10-10  Bruno Haible  <bruno@clisp.org>
12353
12354         Make it possible to #define gcd to an alias.
12355         * lib/gcd.c: Include config.h.
12356
12357 2006-10-10  Bruno Haible  <bruno@clisp.org>
12358
12359         Make it possible to #define c_isascii to an alias.
12360         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
12361         defined. Undefine the macros before defining them, to avoid gcc
12362         warnings.
12363         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
12364         define NO_C_CTYPE_MACROS early.
12365
12366 2006-10-10  Bruno Haible  <bruno@clisp.org>
12367
12368         Make it possible to #define set_program_name to an alias.
12369         * lib/progname.c: Don't undefine set_program_name; instead, undefine
12370         ENABLE_RELOCATABLE early.
12371
12372 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
12373
12374         Port to Tandem NSK OSS, which has 64-bit signed int but at most
12375         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
12376         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
12377         More generally, don't assume that 64-bit signed int is available
12378         if unsigned int is, and vice versa.
12379         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
12380         unsigned symbols, not on their signed counterparts.
12381         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
12382         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
12383         (UINT64_C, UINTMAX_C):
12384         Likewise.
12385         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
12386         unsigned counterparts.
12387         (Have_long_long, Unsigned): New macros.
12388         (Int): Renamed from INT.
12389         (strtoimax): Use the new macros.
12390         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
12391         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
12392         * modules/inttypes (inttypes.h): Substitute
12393         HAVE_UNSIGNED_LONG_LONG_INT.
12394         * modules/stdint (stdint.h): Likewise.
12395         (Files): Add m4/ulonglong.m4.
12396
12397 2006-10-10  Bruno Haible  <bruno@clisp.org>
12398
12399         Fix a gcc -Wshadow warning.
12400         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
12401         to 'bucket'.
12402         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
12403         gl_linked_indexof_from_to): Likewise.
12404         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
12405         Likewise.
12406         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
12407         Likewise.
12408         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
12409         Reported by Eric Blake.
12410
12411 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
12412
12413         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
12414         for NetBSD.  Problem reported by Bruno Haible.
12415
12416 2006-10-09  Jim Meyering  <jim@meyering.net>
12417
12418         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
12419         Patch from Bruno Haible.
12420
12421 2006-10-09  Jim Meyering  <jim@meyering.net>
12422
12423         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
12424         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
12425         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
12426
12427 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
12428
12429         Don't include <config.h> twice; this doesn't work in some cases,
12430         e.g., when config.h has "#define intmax_t long long int" and
12431         we include <config.h>, <inttypes.h>, <config.h> in that order.
12432         Problem reported by Matthew Woehlke in:
12433         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
12434         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
12435         * lib/fts-cycle.c: Don't include config.h.
12436         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
12437         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
12438         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
12439         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
12440         inttypes.h.
12441         * lib/xstrtoumax.c: Likewise.
12442         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
12443         __strtol and the like, so that this module is more like its siblings.
12444         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
12445         Remove; no longer needed now that we assume gnulib inttypes.h.
12446
12447 2006-10-08  Bruno Haible  <bruno@clisp.org>
12448
12449         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
12450         option.
12451
12452 2006-10-07  Jim Meyering  <jim@meyering.net>
12453
12454         * modules/inttypes (inttypes.h): Revert what seems to have been
12455         an inadvertent part of today's change: use "|", not "/" in the
12456         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
12457
12458 2006-10-07  Bruno Haible  <bruno@clisp.org>
12459
12460         * modules/sublist: New file.
12461
12462 2006-10-07  Bruno Haible  <bruno@clisp.org>
12463
12464         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
12465         * modules/argz (argz.h): Likewise.
12466         * modules/arpa_inet (arpa/inet.h): Likewise.
12467         * modules/byteswap (byteswap.h): Likewise.
12468         * modules/configmake (configmake.h): Likewise.
12469         * modules/fcntl (fcntl.h): Likewise.
12470         * modules/fnmatch (fnmatch.h): Likewise.
12471         * modules/getopt (getopt.h): Likewise.
12472         * modules/glob (glob.h): Likewise.
12473         * modules/inttypes (inttypes.h): Likewise.
12474         * modules/netinet_in (netinet/in.h): Likewise.
12475         * modules/poll (poll.h): Likewise.
12476         * modules/stdbool (stdbool.h): Likewise.
12477         * modules/stdint (stdint.h): Likewise.
12478         * modules/sys_select (sys/select.h): Likewise.
12479         * modules/sys_socket (sys/socket.h): Likewise.
12480         * modules/sys_stat (sys/stat.h): Likewise.
12481         * modules/sysexits (sysexits.h): Likewise.
12482         * modules/unistd (unistd.h): Likewise.
12483         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12484         Add a "DO NOT EDIT" comment to the generated file.
12485         (func_import): Likewise for gnulib-comp.m4.
12486
12487 2006-10-07  Bruno Haible  <bruno@clisp.org>
12488
12489         * lib/gl_sublist.h: New file.
12490         * lib/gl_sublist.c: New file.
12491
12492 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
12493
12494         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
12495         name (relative to the original working directory) and the file
12496         name component (relative to the temporary working directory).  All
12497         callers changed.
12498         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
12499         * lib/mkdir-p.c (make_dir_parents): Likewise.
12500         * lib/mkdir-p.h (make_dir_parents): Likewise.
12501
12502 2006-10-06  Eric Blake  <ebb9@byu.net>
12503
12504         Define several macros for use by the clean-temp module.
12505         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
12506         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
12507         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
12508
12509         * lib/clean-temp.h (close_stream_temp): New declaration.
12510         * lib/clean-temp.c (includes): Pull in headers according to what
12511         other modules are in use.
12512         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
12513
12514 2006-10-06  Bruno Haible  <bruno@clisp.org>
12515
12516         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
12517         instead of fopen, fwriteerror.
12518
12519 2006-10-06  Bruno Haible  <bruno@clisp.org>
12520
12521         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
12522         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
12523         int.
12524         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
12525         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
12526         Return an error indicator.
12527         Suggested by Eric Blake.
12528
12529 2006-10-06  Bruno Haible  <bruno@clisp.org>
12530
12531         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
12532         Reported by Eric Blake.
12533
12534 2006-10-06  Bruno Haible  <bruno@clisp.org>
12535
12536         * modules/closeout (Description): Mention stderr too.
12537
12538 2006-10-06  Bruno Haible  <bruno@clisp.org>
12539         and Paul Eggert  <eggert@cs.ucla.edu>
12540
12541         * lib/closeout.c (close_stdout): Also close stderr.
12542         * lib/closeout.h: Update comment.
12543
12544 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
12545
12546         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
12547         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
12548         * lib/dirchownmod.c: Include lchown.h.
12549         * lib/lchown.c: Don't include files that lchown.h now includes.
12550         Don't declare chown, since lchown.h now does that.
12551         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
12552         (lchown): Define to rpl_chown if lchown is declared but
12553         does not exist.  Declare using a prototype if lchown is not
12554         declared.  Add a copyright notice.
12555         * lib/mkstemp.h: Include <unistd.h>.
12556         * lib/openat.c: Include lchown.h.
12557
12558         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
12559         we now test for that separately.
12560         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
12561         rather than O_NOFOLLOW, when testing whether it's possible to
12562         avoid a race condition reliably.
12563         * lib/savewd.c (savewd_chdir): Likewise.
12564
12565         Remove macros that are no longer needed now that stdint.h is
12566         reliable.
12567         * lib/fsusage.c (UINTMAX_MAX): Remove.
12568         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
12569         * lib/utimecmp.c (SIZE_MAX): Remove.
12570
12571         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
12572
12573         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
12574         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
12575         O_NOATIME works.
12576
12577 2006-10-05  Bruno Haible  <bruno@clisp.org>
12578
12579         * lib/gl_list.h (gl_sortedlist_search_from_to,
12580         gl_sortedlist_indexof_from_to): New declarations.
12581         (gl_list_implementation): New fields sortedlist_search_from_to,
12582         sortedlist_indexof_from_to.
12583         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
12584         inline functions.
12585         * lib/gl_list.c (gl_sortedlist_search_from_to,
12586         gl_sortedlist_indexof_from_to): New functions.
12587         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
12588         function.
12589         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
12590         (gl_array_sortedlist_search_from_to): New function.
12591         (gl_array_list_implementation): Update.
12592         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
12593         function.
12594         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
12595         (gl_carray_sortedlist_search_from_to): New function.
12596         (gl_carray_list_implementation): Update.
12597         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
12598         gl_linked_sortedlist_indexof_from_to): New functions.
12599         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
12600         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
12601         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
12602         gl_tree_sortedlist_indexof_from_to): New functions.
12603         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
12604         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
12605         Update.
12606         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
12607         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
12608         Update.
12609
12610 2006-10-05  Bruno Haible  <bruno@clisp.org>
12611
12612         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
12613         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
12614         (struct gl_list_implementation): Add fields search_from_to,
12615         indexof_from_to. Remove fields search, indexof.
12616         (gl_list_search): Use the search_from_to method.
12617         (gl_list_search_from, gl_list_search_from_to): New functions.
12618         (gl_list_indexof): Use the indexof_from_to method.
12619         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
12620         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
12621         (gl_list_search_from, gl_list_search_from_to): New functions.
12622         (gl_list_indexof): Use the indexof_from_to method.
12623         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
12624         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
12625         gl_array_indexof. Add start_index, end_index arguments.
12626         (gl_array_search_from_to): Renamed from gl_array_search. Add
12627         start_index, end_index arguments.
12628         (gl_array_remove, gl_array_list_implementation): Update.
12629         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
12630         gl_carray_indexof. Add start_index, end_index arguments.
12631         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
12632         start_index, end_index arguments.
12633         (gl_carray_remove, gl_carray_list_implementation): Update.
12634         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
12635         gl_linked_search. Add start_index, end_index arguments.
12636         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
12637         start_index, end_index arguments.
12638         (gl_linked_remove): Update.
12639         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
12640         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
12641         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
12642         field to 'size_t'.
12643         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
12644         gl_tree_search. Add start_index, end_index arguments.
12645         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
12646         start_index, end_index arguments.
12647         (gl_tree_remove): Update.
12648         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
12649         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
12650         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
12651         function.
12652         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
12653         gl_tree_search. Add start_index, end_index arguments.
12654         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
12655         start_index, end_index arguments.
12656         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
12657         Update.
12658         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
12659
12660 2006-10-05  Bruno Haible  <bruno@clisp.org>
12661
12662         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
12663
12664         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
12665         fwriteerror_temp): New declarations.
12666         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
12667         (descriptors): New variable.
12668         (cleanup): First, close the descriptors.
12669         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
12670         fclose_temp, fwriteerror_temp): New functions.
12671
12672 2006-10-04  Jim Meyering  <jim@meyering.net>
12673
12674         * lib/fts.c (fts_open): Tiny comment change.
12675
12676 2006-10-04  Bruno Haible  <bruno@clisp.org>
12677
12678         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
12679         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
12680         gl_LOCK_BODY.
12681         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
12682         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
12683         gl_LOCK_EARLY_BODY.
12684         (gl_LOCK): Require gl_LOCK_BODY.
12685
12686 2006-10-04  Bruno Haible  <bruno@clisp.org>
12687
12688         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
12689         (gl_oset_search_atleast): New declaration.
12690         (struct gl_oset_implementation): Add field 'search_atleast'.
12691         (gl_oset_search_atleast): New inline function.
12692         * lib/gl_oset.c (gl_oset_search_atleast): New function.
12693         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
12694         (gl_array_oset_implementation): Update.
12695         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
12696         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
12697         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
12698
12699 2006-10-04  Bruno Haible  <bruno@clisp.org>
12700
12701         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
12702
12703 2006-10-03  Bruno Haible  <bruno@clisp.org>
12704
12705         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
12706         from gl_avltreehash_list_implementation.
12707
12708 2006-10-03  Bruno Haible  <bruno@clisp.org>
12709
12710         * lib/gl_oset.c (gl_oset_add): Fix return type.
12711
12712 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
12713
12714         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
12715
12716 2006-10-02  Eric Blake  <ebb9@byu.net>
12717
12718         * modules/strnlen (Depends-on): Add extensions.
12719
12720 2006-10-02  Eric Blake  <ebb9@byu.net>
12721
12722         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
12723         definition in 2.60+.
12724
12725 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
12726
12727         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
12728         checks.
12729
12730 2006-10-02  Bruno Haible  <bruno@clisp.org>
12731
12732         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
12733         to the AUTOMAKE_OPTIONS.
12734         Reported by Jim Meyering.
12735
12736 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
12737
12738         Work around bug in Solaris 10 /proc file system:
12739         /proc/self/fd/NNN/.. isn't the parent directory of
12740         the directory whose file descriptor is NNN.  This needs to
12741         be worked around at run time, not compile time, since a
12742         program might be built on Solaris 8, where things work, and
12743         run on Solaris 10.
12744         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
12745         to use the following interface instead:
12746         (OPENAT_BUFFER_SIZE): New macro.
12747         (openat_proc_name): New function.
12748         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
12749         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
12750         Likewise.
12751         * lib/openat-proc.c: New file.
12752         * modules/openat (Files): Add lib/openat-proc.c.
12753         (Depends-on): Add same-inode, stdbool.
12754         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
12755
12756 2006-09-29  Bruno Haible  <bruno@clisp.org>
12757
12758         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
12759         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
12760         argument. Set stdout_closed before testing for ferror, not after.
12761         (fwriteerror, fwriteerror_no_ebadf): New functions.
12762
12763 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12764
12765         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
12766
12767 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
12768
12769         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
12770         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
12771
12772 2006-09-28  Jim Meyering  <jim@meyering.net>
12773
12774         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
12775         Include <unistd.h>.
12776
12777 2006-09-28  Bruno Haible  <bruno@clisp.org>
12778
12779         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
12780         * modules/linkedhash-list (Depends-on): Likewise.
12781         * modules/rbtreehash-list (Depends-on): Likewise.
12782
12783 2006-09-28  Bruno Haible  <bruno@clisp.org>
12784
12785         * lib/strndup.h: Simplify the redefinition of strndup.
12786         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
12787         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
12788
12789 2006-09-28  Bruno Haible  <bruno@clisp.org>
12790
12791         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
12792         * lib/gl_linkedhash_list.c: Likewise.
12793         * lib/gl_rbtreehash_list.c: Likewise.
12794
12795 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
12796
12797         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
12798         getaddrinfo.
12799
12800         * lib/__fpending.h: Don't include <stdio_ext.h> unless
12801         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
12802         it causes <stdio_ext.h> to cause a compile-time error.
12803         Problem reported by Nelson H. F. Beebe.
12804         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
12805         of HAVE_DECL___PENDING.
12806
12807         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
12808         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
12809         declaration.
12810
12811 2006-09-27  Jim Meyering  <jim@meyering.net>
12812
12813         This file could end up with a definition for a function
12814         named __strndup, rather than rpl_strndup on a system with
12815         incomplete weak_alias support.
12816         * lib/strndup.c (strndup): Rename from __strndup.
12817         Remove #defines that used to map __strndup to strndup.
12818         Don't use K&R prototypes.
12819         Remove LIBC-related code, since this file is not sync'd with glibc.
12820         * lib/strndup.h: Revamp, accordingly.
12821         * m4/strndup.m4: Modernize.
12822
12823 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
12824
12825         * modules/savewd (Depends-on): Add 'raise'.
12826         * lib/savewd.c: Include <signal.h>, for 'raise'.
12827
12828 2006-09-26  Jim Meyering  <jim@meyering.net>
12829
12830         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
12831         when we detect Darwin 8.7.0's acl_get_file bug.
12832         Rearrange to perform the new (below) run-test while $LIBS
12833         contains any acl-related library.  Set USE_ACL at the end.
12834         (gl_ACL_GET_FILE): New function.
12835
12836 2006-09-26  Eric Blake  <ebb9@byu.net>
12837
12838         * lib/verror.c: Include <config.h> unconditionally.
12839
12840 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
12841
12842         * modules/clock-time (Maintainer): Add self.
12843         * modules/getlogin_r (Depends-on): Add extensions.
12844
12845 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12846
12847         * modules/clock-time: New module.
12848         * modules/nanosleep (Depends-on): Add clock-time.
12849         * modules/gethrxtime (Depends-on): Likewise.
12850         * modules/gettime (Depends-on): Likewise.
12851         * modules/settime (Depends-on): Likewise.
12852
12853         * modules/fts-lgpl: Depend on openat.
12854         * modules/mkancesdirs: Depend on savewd.
12855         * modules/mkdir-p: Likewise.
12856
12857 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12858
12859         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
12860
12861         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
12862         `gl_have_arbitrary_file_name_length_limit' to
12863         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
12864         actually works between configure runs.
12865
12866 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12867             Bruno Haible  <bruno@clisp.org>
12868
12869         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
12870
12871 2006-09-25  Jim Meyering  <jim@meyering.net>
12872
12873         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
12874         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
12875
12876 2006-09-25  Eric Blake  <ebb9@byu.net>
12877
12878         * gnulib-tool (func_import, func_create_testdir): Fix typos in
12879         exec's in 2006-09-18 patch when shuffling fds.
12880
12881 2006-09-25  Bruno Haible  <bruno@clisp.org>
12882
12883         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
12884         Reported by Jim Meyering.
12885
12886 2006-09-24  Jim Meyering  <jim@meyering.net>
12887
12888         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
12889         compare a pointer against a literal "0".  That caused failures with
12890         at least HP-UX's hpcc.
12891
12892 2006-09-22  Simon Josefsson  <jas@extundo.com>
12893
12894         * modules/gc-sha1:
12895         * modules/gc-md4:
12896         * modules/gc-hmac-sha1:
12897         * modules/gc-hmac-md5:
12898         * modules/gc-des:
12899         * modules/gc-arcfour: Distribute more files.
12900
12901 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12902
12903         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
12904         (gl_linked_iterator_from_to): Initialize struct completely.
12905         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
12906         (gl_tree_iterator_from_to): Likewise
12907         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
12908         * lib/gl_array_list.c [lint] (gl_array_iterator)
12909         (gl_array_iterator_from_to): Likewise.
12910         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
12911         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
12912         (gl_carray_iterator_from_to): Likewise.
12913
12914         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
12915         * lib/md4.c (md4_process_block): Remove unused variable.
12916         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
12917         parentheses for clarity.
12918
12919 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12920
12921         * modules/bison-i18n (Depends-on): Add gettext.
12922
12923 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12924
12925         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
12926         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
12927         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
12928         also add missing comma that caused broken test.
12929         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
12930         stdlib.h, for `abort'.
12931         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
12932         variables.
12933         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
12934         include unistd.h if present, for `rmdir'.
12935         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
12936         variables.
12937         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
12938         in the process include standard headers for prototypes.
12939         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
12940         gets declared on GNU/Linux.
12941         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
12942         unistd.h, for `rmdir'.
12943         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
12944
12945         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
12946         always true.
12947         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
12948
12949         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
12950
12951 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12952
12953         * gnulib-tool (func_version): Create output all at once.  This
12954         may help avoid triggering unnecessary SIGPIPEs, and at any
12955         rate it doesn't hurt.
12956
12957 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12958             Bruno Haible  <bruno@clisp.org>
12959
12960         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
12961         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12962         * m4/signed.m4 (bh_C_SIGNED): Likewise.
12963
12964         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
12965         (gl_FUNC_VASPRINTF): Invoke it.
12966
12967 2006-09-22  Bruno Haible  <bruno@clisp.org>
12968
12969         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
12970         getloadavg.c as first argument.
12971
12972 2006-09-22  Bruno Haible  <bruno@clisp.org>
12973
12974         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
12975         at the beginning of the gl_INIT macro.
12976         * modules/getloadavg (configure.ac): Pass $gl_source_base to
12977         gl_GETLOADAVG.
12978
12979 2006-09-22  Bruno Haible  <bruno@clisp.org>
12980
12981         * gnulib-tool (func_create_megatestdir): Don't include the config-h
12982         module.
12983         Suggested by Ralf Wildenhues.
12984
12985 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
12986
12987         Import this patch from libc:
12988
12989         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
12990
12991         * lib/regex_internal.c (re_string_reconstruct): Handle
12992         offset < pstr->valid_raw_len && pstr->offsets_needed case.
12993         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
12994         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
12995         re_string_context_at.
12996
12997         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
12998         now requires it.
12999         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
13000         gl_REGEX now does it for us.
13001         (gl_REGEX): Add test taken from
13002         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
13003
13004         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
13005         Check that large offsets work.  Modernize Autoconf usages.
13006         Prefer "yes" to mean a good thing rather than a bad.
13007         Don't put "#define mkstemp" in config.h, as this might interfere
13008         with standard system headers that "#define mkstemp mkstemp64".
13009
13010         * modules/mkstemp (Depends-on): Add extensions, so that
13011         mkstemp is visible on some platforms.
13012         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
13013         (Include): Change to "mkstemp.h" from <stdlib.h>.
13014         (Files): Add mkstemp.h.
13015
13016         * lib/mkstemp.h: New file, since some standard headers
13017         #define mkstemp.
13018         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
13019         Include "mkstemp.h".
13020         Make the _LIBC code resemble glibc original more,
13021         e.g., use K&R style.
13022         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
13023         (mkstemp): Remove, since mkstemp.h does this for us.
13024         * lib/stdlib--.h: Include mkstemp.h.
13025
13026         Import this patch from libc:
13027
13028         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
13029
13030         * lib/tempname.c (__gen_tempname): Change attempts_min
13031         into a macro.  Use preprocessor to decide how to initialize
13032         attempts [Coverity CID 67].
13033
13034 2006-09-20  Bruno Haible  <bruno@clisp.org>
13035
13036         * lib/mkdtemp.c: Import from libc.
13037         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
13038                 * sysdeps/posix/tempname.c (__gen_tempname): Change
13039                 attempts_min into a macro.  Use preprocessor to decide how to
13040                 initialize attempts [Coverity CID 67].
13041         2001-11-27  Paul Eggert  <eggert@twinsun.com>
13042                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
13043                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
13044
13045 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13046
13047         * gnulib-tool (func_exit): New function, to allow to pass the
13048         exit status portably through the trap.  Use everywhere.
13049         (--help, --version): Signal a write error.
13050         (trap): catch SIGPIPE, for write errors.
13051         Exit at the end of the trap, with the correct exit status.
13052
13053 2006-09-19  Karl Berry  <karl@gnu.org>
13054
13055         * doc/gnulib.texi: note about the license texinfo files.
13056
13057 2006-09-19  Eric Blake  <ebb9@byu.net>
13058
13059         * gnulib-tool: Avoid space-tab.
13060
13061 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
13062
13063         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
13064         that prevented coreutils 6.1 from building.  Problem reported
13065         by Petter Reinholdtsen.
13066
13067 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
13068
13069         * gnulib-tool (avoidlist): Fix typo that broke options like
13070         --avoid=lock that are used by coreutils bootstrap.
13071
13072 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
13073
13074         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
13075         more systematically.
13076
13077 2006-09-18  Jim Meyering  <jim@meyering.net>
13078
13079         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
13080
13081 2006-09-18  Bruno Haible  <bruno@clisp.org>
13082
13083         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
13084
13085 2006-09-18  Bruno Haible  <bruno@clisp.org>
13086
13087         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
13088         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
13089         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
13090         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
13091         * m4/gettext.m4: Require autoconf >= 2.52.
13092         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
13093         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
13094         of gl_cv_header_inttypes_h.
13095
13096 2006-09-18  Bruno Haible  <bruno@clisp.org>
13097
13098         * lib/javaversion.c: Include configmake.h.
13099
13100 2006-09-18  Bruno Haible  <bruno@clisp.org>
13101
13102         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
13103         avoid that the while loops be executed in a subshell.
13104
13105 2006-09-18  Bruno Haible  <bruno@clisp.org>
13106
13107         * MODULES.html.sh (func_module): Break long lines.
13108         Suggested by Bruce Korb <bkorb@gnu.org>.
13109
13110 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13111
13112         Speed up by a factor of 1.12.
13113         * gnulib-tool (nl): New variable.
13114         (func_import): Rewrite include directive extraction to only read each
13115         directive once.
13116
13117 2006-09-17  Bruno Haible  <bruno@clisp.org>
13118
13119         * modules/javaversion (Makefile.am): Remove DEFS setting.
13120         (Depends-on): Add configmake, for PKGDATADIR definition.
13121
13122 2006-09-17  Bruno Haible  <bruno@clisp.org>
13123
13124         * gnulib-tool (func_create_testdir): Rewrite all files at once.
13125
13126 2006-09-17  Bruno Haible  <bruno@clisp.org>
13127
13128         * gnulib-tool (func_append): New function, stolen from libtool.m4.
13129         (func_modules_transitive_closure, func_modules_add_dummy,
13130         func_modules_to_filelist, func_import, func_create_testdir,
13131         func_create_megatestdir, ...): Use it wherever possible.
13132         Suggested by Ralf Wildenhues.
13133
13134 2006-09-16  Karl Berry  <karl@gnu.org>
13135
13136         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
13137         to avoid sectioning errors.
13138         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
13139         [ifinfo]: blank line after @center-ed titles.
13140         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
13141         Spell FSF address consistently with others.
13142         (These changes approved by rms.)
13143
13144 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13145
13146         Speed up by a factor of 1.61.
13147         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
13148         already checked module names again.
13149
13150 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13151
13152         Speed up by a factor of 1.13.
13153         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
13154         for new_files, and the input to func_add_or_update.
13155
13156 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13157
13158         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
13159         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
13160
13161 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
13162
13163         * modules/mkancesdirs (Depends-on): Add fcntl.
13164         * modules/savewd: New file.
13165         * MODULES.html.sh (File system functions): Add savewd.
13166
13167         * modules/configmake (Makefile.am): Add support for the
13168         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
13169
13170 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
13171
13172         * m4/savewd.m4: New file.
13173
13174 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
13175
13176         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
13177         (dirchownmod): New arg FD.  All callers changed.
13178         Use FD rather than opening the directory ourself, as opening is
13179         now the caller's responsibility.
13180         * lib/dirchownmod.h: Likewise.
13181         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
13182         hosts that require <sys/types.h> before <sys/stat.h>.  Include
13183         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
13184         (test_dir): Remove.
13185         (mkancesdirs): Return length of prefix of FILE that has already
13186         been made, or -2 if there is a child doing the work.  Redo
13187         algorithm so that it is O(N) rather than O(N**2).  Optimize away
13188         ".", and treat ".." specially since it might stray back into
13189         already-created areas.  Use a subprocess if necessary.  New arg
13190         WD; all users changed.  MAKE_DIR function should now return 1
13191         if it creates a directory that is not readable.  Return -2 if
13192         a child process is spun off.
13193         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
13194         Adjust signature to match code.
13195         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
13196         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
13197         all users changed.
13198         * lib/savewd.c, lib/savewd.h: New files.
13199
13200 2006-09-15  Jim Meyering  <jim@meyering.net>
13201
13202         * modules/rename-dest-slash: New module.
13203         * MODULES.html.sh (posix_compat): Add it here.
13204
13205         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
13206
13207 2006-09-15  Jim Meyering  <jim@meyering.net>
13208
13209         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
13210         file.
13211
13212         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
13213
13214 2006-09-15  Jim Meyering  <jim@meyering.net>
13215
13216         * lib/rename-dest-slash.c (has_trailing_slash): Use
13217         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
13218         (rpl_rename_dest_slash): Perform the cheaper trailing slash
13219         test before testing whether SRC is a directory.
13220         Suggestions from Bruno Haible.
13221
13222         Avoid a warning about an unused variable.
13223         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
13224         into the #ifdef block where it's used.
13225
13226         * lib/rename-dest-slash.c: New file.
13227
13228 2006-09-14  Bruno Haible  <bruno@clisp.org>
13229
13230         * lib/allocsa.c: Include <config.h> unconditionally.
13231         * lib/asnprintf.c: Likewise.
13232         * lib/asprintf.c: Likewise.
13233         * lib/c-strcasecmp.c: Likewise.
13234         * lib/c-strcasestr.c: Likewise.
13235         * lib/c-strncasecmp.c: Likewise.
13236         * lib/c-strstr.c: Likewise.
13237         * lib/classpath.c: Likewise.
13238         * lib/clean-temp.c: Likewise.
13239         * lib/concatpath.c: Likewise.
13240         * lib/copy-file.c: Likewise.
13241         * lib/csharpcomp.c: Likewise.
13242         * lib/csharpexec.c: Likewise.
13243         * lib/execute.c: Likewise.
13244         * lib/fatal-signal.c: Likewise.
13245         * lib/findprog.c: Likewise.
13246         * lib/fwriteerror.c: Likewise.
13247         * lib/gl_array_list.c: Likewise.
13248         * lib/gl_array_oset.c: Likewise.
13249         * lib/gl_avltree_list.c: Likewise.
13250         * lib/gl_avltree_oset.c: Likewise.
13251         * lib/gl_avltreehash_list.c: Likewise.
13252         * lib/gl_carray_list.c: Likewise.
13253         * lib/gl_linked_list.c: Likewise.
13254         * lib/gl_linkedhash_list.c: Likewise.
13255         * lib/gl_list.c: Likewise.
13256         * lib/gl_oset.c: Likewise.
13257         * lib/gl_rbtree_list.c: Likewise.
13258         * lib/gl_rbtree_oset.c: Likewise.
13259         * lib/gl_rbtreehash_list.c: Likewise.
13260         * lib/imaxabs.c: Likewise.
13261         * lib/imaxdiv.c: Likewise.
13262         * lib/javacomp.c: Likewise.
13263         * lib/javaexec.c: Likewise.
13264         * lib/javaversion.c: Likewise.
13265         * lib/linebreak.c: Likewise.
13266         * lib/localcharset.c: Likewise.
13267         * lib/lock.c: Likewise.
13268         * lib/mbchar.c: Likewise.
13269         * lib/mbswidth.c: Likewise.
13270         * lib/mkdtemp.c: Likewise.
13271         * lib/pipe.c: Likewise.
13272         * lib/printf-args.c: Likewise.
13273         * lib/printf-parse.c: Likewise.
13274         * lib/progname.c: Likewise.
13275         * lib/progreloc.c: Likewise.
13276         * lib/readlink.c: Likewise.
13277         * lib/sh-quote.c: Likewise.
13278         * lib/stpcpy.c: Likewise.
13279         * lib/stpncpy.c: Likewise.
13280         * lib/strcasecmp.c: Likewise.
13281         * lib/strcasestr.c: Likewise.
13282         * lib/strcspn.c: Likewise.
13283         * lib/striconv.c: Likewise.
13284         * lib/strncasecmp.c: Likewise.
13285         * lib/strnlen1.c: Likewise.
13286         * lib/strstr.c: Likewise.
13287         * lib/strtok_r.c: Likewise.
13288         * lib/tls.c: Likewise.
13289         * lib/tmpdir.c: Likewise.
13290         * lib/unicodeio.c: Likewise.
13291         * lib/unsetenv.c: Likewise.
13292         * lib/vasnprintf.c: Likewise.
13293         * lib/vasprintf.c: Likewise.
13294         * lib/wait-process.c: Likewise.
13295         * lib/xallocsa.c: Likewise.
13296         * lib/xsetenv.c: Likewise.
13297         * lib/xstriconv.c: Likewise.
13298
13299 2006-09-13  Simon Josefsson  <jas@extundo.com>
13300
13301         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
13302         that internally, suggested by Ralf Wildenhues
13303         <Ralf.Wildenhues@gmx.de>.
13304
13305 2006-09-13  Simon Josefsson  <jas@extundo.com>
13306
13307         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
13308         @LIBOBJS@.
13309         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13310
13311 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
13312
13313         * lib/_fpending.c: Include <config.h> unconditionally, since we no
13314         longer worry about uses that don't define HAVE_CONFIG_H.
13315         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
13316         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
13317         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
13318         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
13319         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
13320         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
13321         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
13322         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
13323         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
13324         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
13325         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
13326         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
13327         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
13328         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
13329         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
13330         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
13331         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
13332         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
13333         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
13334         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
13335         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
13336         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
13337         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
13338         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
13339         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
13340         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
13341         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
13342         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
13343         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
13344         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
13345         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
13346         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
13347         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
13348         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
13349         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
13350         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
13351         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
13352         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
13353         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
13354         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
13355         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
13356         Likewise.
13357
13358 2006-09-13  Eric Blake  <ebb9@byu.net>
13359
13360         * lib/getopt.c: Fix typo in last commit.
13361
13362 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13363
13364         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
13365         dgettext.
13366
13367 2006-09-12  Jim Meyering  <jim@meyering.net>
13368
13369         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
13370         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
13371         Reported by Nelson H. F. Beebe.
13372
13373 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
13374
13375         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
13376         program_invocation_name and program_invocation_short_name are
13377         initialized.
13378         * lib/argp-namefrob.h: Move declarations of program_invocation_name
13379         and program_invocation_short_name to argp.h, so they are visible
13380         to user programs.
13381         * lib/argp.h: Likewise
13382
13383 2006-09-10  Bruno Haible  <bruno@clisp.org>
13384
13385         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
13386         m4/inttypes_h.m4, m4/uintmax_t.m4.
13387
13388 2006-09-10  Bruno Haible  <bruno@clisp.org>
13389
13390         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
13391         gl_AC_TYPE_UINTMAX_T.
13392
13393 2006-09-10  Bruno Haible  <bruno@clisp.org>
13394
13395         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
13396
13397 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13398
13399         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
13400         convention.  Text proposed by Bruno Haible.
13401         (struct argp_option): Document the use of N_() wrappers.
13402
13403         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
13404         '\v', and translate the two parts separately, instead of feeding
13405         the whole string to gettext.  This allows to exclude
13406         '\v' from the strings visible to the translator by writing doc
13407         strings as N_("..") "\v" N_("..").
13408
13409 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
13410
13411         * config/srclist.txt: Undo latest change; the bug was fixed.
13412
13413 2006-09-09  Bruno Haible  <bruno@clisp.org>
13414
13415         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
13416         assignments if building a library without libtool.
13417         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
13418         in func_emit_lib_Makefile_am.
13419         (func_import): When building a static library libfoo.a, arrange to
13420         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
13421         (func_create_testdir): Likewise.
13422         * modules/gc (configure.ac, Makefile.am): If building statically,
13423         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
13424         * modules/iconvme (configure.ac, Makefile.am): Likewise.
13425         * modules/striconv (configure.ac, Makefile.am): Likewise.
13426         Based on a suggestion by Ralf Wildenhues.
13427
13428 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
13429
13430         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
13431         Check for unistd.h too, since Autoconf doesn't assume POSIX.
13432         Also:
13433
13434         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
13435         Add year_2050_test to catch glibc bug 2821
13436         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
13437
13438         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
13439         Prefer #ifdef to #if.
13440
13441         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
13442         Return from 'main' instead of calling 'exit'.
13443
13444 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
13445
13446         * lib/mktime.c (guess_time_tm): Fix bug where mktime
13447         returned the maximum time_t value rather than (time_t) -1.
13448         Problem originally reported by William Bardwell
13449         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
13450
13451         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
13452         Moved to here ...
13453         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
13454         ... from here.
13455
13456 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
13457
13458         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
13459         2821 is fixed.
13460
13461 2006-09-08  Jim Meyering  <jim@meyering.net>
13462
13463         Don't make generated files read-only.  That would bother too many
13464         people.  However, do retain the ability to work when targets are
13465         read-only: remove the destination and temporary files before writing
13466         them (when generated via sed or echo), or by using the -f option for
13467         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
13468         * modules/alloca-opt, modules/argz, modules/arpa_inet:
13469         * modules/byteswap, modules/configmake, modules/fcntl:
13470         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
13471         * modules/localcharset, modules/netinet_in, modules/poll:
13472         * modules/stdbool, modules/stdint, modules/sys_select:
13473         * modules/sys_socket, modules/sys_stat, modules/sysexits:
13474
13475 2006-09-08  Jim Meyering  <jim@meyering.net>
13476
13477         Avoid new build failure on FreeBSD 6.0.
13478         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
13479         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
13480         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
13481
13482 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13483
13484         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
13485
13486 2006-09-07  Jim Meyering  <jim@meyering.net>
13487
13488         Fix global typo in last change: use chmod u-w, not chmod u-x.
13489         Spotted by Paul Eggert and Bruce Korb.
13490         * modules/alloca-opt, modules/argz, modules/arpa_inet:
13491         * modules/byteswap, modules/configmake, modules/fcntl:
13492         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
13493         * modules/localcharset, modules/netinet_in, modules/poll:
13494         * modules/stdbool, modules/stdint, modules/sys_select:
13495         * modules/sys_socket, modules/sys_stat, modules/sysexits:
13496
13497 2006-09-06  Jim Meyering  <jim@meyering.net>
13498
13499         Make generated files be read-only.
13500         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
13501         Ensure that each generated file is now read-only.
13502         * modules/argz: Likewise.
13503         * modules/arpa_inet: Likewise.
13504         * modules/byteswap: Likewise.
13505         * modules/configmake: Likewise.
13506         * modules/fcntl: Likewise.
13507         * modules/fnmatch: Likewise.
13508         * modules/getopt: Likewise.
13509         * modules/glob: Likewise.
13510         * modules/inttypes: Likewise.
13511         * modules/netinet_in: Likewise.
13512         * modules/poll: Likewise.
13513         * modules/stdbool: Likewise.
13514         * modules/stdint: Likewise.
13515         * modules/sys_select: Likewise.
13516         * modules/sys_socket: Likewise.
13517         * modules/sys_stat: Likewise.
13518         * modules/sysexits: Likewise.
13519         * modules/localcharset: Same as above, but continue using temporary
13520         file named "t-$@" (why different?) rather than the "$@-t" used
13521         everywhere else.
13522
13523         * modules/sysexits (Makefile.am): Replace literal occurrences
13524         of "sysexit.h" more readable, and more consistent, "$@".
13525
13526 2006-09-06  Bruno Haible  <bruno@clisp.org>
13527
13528         * modules/striconv: New file.
13529         * modules/xstriconv: New file.
13530         * MODULES.html.sh (Internationalization functions): Add striconv,
13531         xstriconv.
13532
13533 2006-09-06  Bruno Haible  <bruno@clisp.org>
13534
13535         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
13536         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
13537         not using libtool correctly.
13538
13539 2006-09-06  Bruno Haible  <bruno@clisp.org>
13540
13541         * lib/striconv.h: New file.
13542         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
13543         iconvstring.c.
13544         * lib/xstriconv.h: New file.
13545         * lib/xstriconv.c: New file.
13546
13547 2006-09-06  Bruno Haible  <bruno@clisp.org>
13548
13549         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
13550         lib_..._LDFLAGS.
13551
13552 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13553
13554         * lib/argz_.h: Sync from Libtool.
13555
13556         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
13557                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
13558
13559         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
13560
13561 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
13562
13563         * modules/trim: New file.
13564
13565 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
13566
13567         * lib/trim.h: New file.
13568         * lib/trim.c: New file.
13569
13570 2006-09-05  Bruno Haible  <bruno@clisp.org>
13571
13572         * MODULES.html.sh (String handling): Add trim.
13573
13574 2006-09-04  Karl Berry  <karl@gnu.org>
13575
13576         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
13577         until next release.
13578
13579 2006-09-03  Bruno Haible  <bruno@clisp.org>
13580
13581         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
13582         correctly.
13583
13584 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
13585
13586         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
13587         not gl_GETLOADAVG.  Omit unneeded semicolons.
13588         Problems reported by Ralf Wildenhues in
13589         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
13590         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
13591         at the end, which is the usual gnulib style.
13592
13593         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
13594         of doing all the work ourselves.
13595         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
13596         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
13597
13598 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
13599
13600         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
13601         Problem reported by Ralf Wildenhues in
13602         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
13603
13604         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
13605         HAVE_STRUCT_STATFS_F_FSTYPENAME.
13606
13607 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
13608
13609         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
13610         yesterday's patch by changing test -n to test -z.
13611
13612 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
13613
13614         * modules/getloadavg (Files): Add m4/getloadavg.m4.
13615         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
13616         the former is now obsolescent.
13617
13618         * modules/chdir-long (Depends-on): Add fcntl.
13619
13620 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
13621
13622         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
13623         obsolescent, and programs should use gnulib instead.
13624         * m4/getloadavg.m4: New file, with contents taken from Autoconf
13625         but with prefixes changed.
13626
13627 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
13628
13629         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
13630         or stdbool.h, because they might not exist while configuring.
13631
13632         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
13633         Don't include unistd.h or limits.h; not needed, since chdir-long.h
13634         does that for us.
13635         (O_DIRECTORY): Remove.
13636
13637 2006-08-31  Eric Blake  <ebb9@byu.net>
13638
13639         * gnulib-tool: Don't let emacs change spaces to TAB.
13640
13641 2006-08-31  Bruno Haible  <bruno@clisp.org>
13642
13643         * gnulib-tool: When calling func_import more than once, do it in a
13644         subshell.
13645         Reported by Eric Blake <ebb9@byu.net>.
13646
13647 2006-08-31  Bruno Haible  <bruno@clisp.org>
13648
13649         * gnulib-tool (nl): Remove variable.
13650         (sed_transform_lib_file): Use more robust test for config-h module.
13651         (func_import): Fix typo in 2006-08-25 patch.
13652
13653 2006-08-31  Bruno Haible  <bruno@clisp.org>
13654
13655         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
13656         specified, augment Makefile.am variables instead of assigning them.
13657
13658 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         Work around a bug in both the Linux and SunOS 64-bit kernels:
13661         nanosleep mishandles sleeps for longer than 2**31 seconds.
13662         Problem reported by Frank v Waveren in
13663         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
13664         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
13665         Check for nanosleep bug.
13666         (LIB_NANOSLEEP): Append clock_gettime library if needed.
13667
13668 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
13669
13670         Work around a bug in both the Linux and SunOS 64-bit kernels:
13671         nanosleep mishandles sleeps for longer than 2**31 seconds.
13672         Problem reported by Frank v Waveren in
13673         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
13674         * lib/nanosleep.c (BILLION): New constant.
13675         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
13676         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
13677         implementation.
13678
13679 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
13680
13681         * modules/nanosleep (Depends-on): Add gettime.
13682
13683 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
13684         and Simon Josefsson  <jas@extundo.com>
13685         and Oskar Liljeblad  <oskar@osk.mine.nu>
13686
13687         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
13688         * gnulib-tool (func_import): New license type 'unmodifiable license
13689         text'.
13690         * modules/fdl: Use it.  Longer description.
13691         * module/gpl, module/lgpl: New files.
13692
13693 2006-08-30  Jim Meyering  <jim@meyering.net>
13694
13695         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
13696         shadowing the parameter.
13697
13698 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13699
13700         Sync from Libtool:
13701
13702         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13703
13704         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
13705         sharing with gnulib.  Report by Eric Blake.
13706
13707 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
13708
13709         * modules/isapipe: New file.
13710         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
13711
13712 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
13713
13714         * modules/configmake (Makefile.am): Add a comment, and omit
13715         the CONFIGMAKE_ prefix from generated macro names.  Suggested
13716         by Bruno Haible.
13717
13718 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
13719
13720         * m4/isapipe.m4: New file.
13721
13722 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
13723
13724         * lib/isapipe.c, lib/isapipe.h: New files.
13725
13726 2006-08-29  Jim Meyering  <jim@meyering.net>
13727
13728         * modules/configmake (Makefile.am): Make configmake.h depend on
13729         Makefile.  Otherwise, a stale configmake.h could hang around.
13730
13731 2006-08-29  Eric Blake  <ebb9@byu.net>
13732
13733         * lib/error.c (error_at_line, print_errno_message): Match libc, after
13734         resolution of upstream bug 3044.
13735
13736 2006-08-29  Bruno Haible  <bruno@clisp.org>
13737
13738         * modules/localcharset (Depends-on): Add configmake.
13739         (Makefile.am): Remove setting of LIBDIR through DEFS.
13740
13741 2006-08-29  Bruno Haible  <bruno@clisp.org>
13742
13743         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
13744         defined.
13745
13746 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
13747
13748         * modules/fcntl: New file.
13749         * modules/chdir-safer (Depends-on): Add fcntl.
13750         * modules/fts: Likewise.
13751         * modules/mkdir-p: Likewise.
13752
13753         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
13754         This undoes the most recent change, since we're now addressing the
13755         problem in a different way.
13756
13757         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
13758         into output, since the output might be called Makefile.am even
13759         if $makefile_name is something different.
13760         (func_import): Use $makefile_am rather than
13761         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
13762         empty.
13763
13764         * modules/inttypes (Files): Add m4/inttypes-h.m4.
13765
13766 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
13767
13768         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
13769         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
13770         recent change to stdint.m4, since we're now addressing the problem in a
13771         different way.
13772
13773 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
13774
13775         * m4/fcntl_h.m4: New file.
13776
13777 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
13778
13779         * lib/fcntl_.h: New file.
13780         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
13781         the fcntl module.
13782         * lib/dirchownmod.c: Likewise.
13783         * lib/fts.c: Likewise.
13784
13785         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
13786         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
13787         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
13788         just before including <inttypes.h>, to avoid circular inclusion.
13789
13790 2006-08-28  Jim Meyering  <jim@meyering.net>
13791
13792         * doc/visibility.texi: Actually read and correct the grammar of the
13793         sentence affected by yesterday's change.
13794
13795 2006-08-28  Eric Blake  <ebb9@byu.net>
13796
13797         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
13798         needs wrapper.
13799
13800 2006-08-28  Eric Blake  <ebb9@byu.net>
13801
13802         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
13803
13804 2006-08-28  Eric Blake  <ebb9@byu.net>
13805
13806         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
13807
13808 2006-08-28  Bruno Haible  <bruno@clisp.org>
13809
13810         * modules/c-strstr: New file, from GNU gettext.
13811         * MODULES.html.sh (String handling): Add c-strstr.
13812
13813 2006-08-28  Bruno Haible  <bruno@clisp.org>
13814
13815         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
13816         macros.
13817         Reported by Eric Blake.
13818
13819 2006-08-28  Bruno Haible  <bruno@clisp.org>
13820
13821         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
13822         (VASNPRINTF): Return a string of length > INT_MAX without failing.
13823         * lib/vasprintf.c: Include errno.h, limits.h.
13824         (EOVERFLOW): New fallback definition.
13825         (vasprintf): Test here whether the string length is > INT_MAX.
13826         * lib/vsnprintf.c: Include errno.h, limits.h.
13827         (EOVERFLOW): New fallback definition.
13828         (vsnprintf): Fix bug when generated string was too long for the buffer.
13829         Test here whether the string length is > INT_MAX.
13830
13831 2006-08-28  Bruno Haible  <bruno@clisp.org>
13832
13833         * lib/inttypes_.h (SCNX*): Remove definitions.
13834         Reported by Eric Blake.
13835
13836 2006-08-28  Bruno Haible  <bruno@clisp.org>
13837
13838         * lib/c-strstr.h: New file, from GNU gettext.
13839         * lib/c-strstr.c: New file, from GNU gettext.
13840
13841 2006-08-28  Bruno Haible  <bruno@clisp.org>
13842
13843         * gnulib-tool: Reorder some statements.
13844
13845 2006-08-28  Bruno Haible  <bruno@clisp.org>
13846
13847         * gnulib-tool: New option --makefile-name.
13848         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
13849         $makefile_name.
13850         (func_import): Write $makefile_name to the cache file, and read it from
13851         there unless explicitly specified. Use $makefile_name as file name
13852         instead of Makefile.am. Adjust the recommendations accordingly.
13853
13854 2006-08-28  Bruno Haible  <bruno@clisp.org>
13855
13856         * gnulib-tool (func_verify_module): Check against misapplying patch.
13857
13858 2006-08-28  Bruno Haible  <bruno@clisp.org>
13859
13860         * gnulib-tool (func_relativize, func_relconcat): New functions.
13861         Give an error if --local-dir is given with --update.
13862         Remove trailing slashes from $local_gnulib_dir.
13863         (func_import): Store the relativized $local_gnulib_dir in
13864         gnulib-cache.m4, and read it from there if not specified explicitly.
13865
13866 2006-08-28  Bruno Haible  <bruno@clisp.org>
13867
13868         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
13869         is the current directory. Respect also $local_gnulib_dir.
13870
13871 2006-08-28  Bruno Haible  <bruno@clisp.org>
13872             Simon Josefsson  <jas@extundo.com>
13873
13874         BeOS portability.
13875         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
13876
13877 2006-08-27  Jim Meyering  <jim@meyering.net>
13878
13879         * doc/visibility.texi: Remove duplicate word: "pointer".
13880
13881 2006-08-26  Bruno Haible  <bruno@clisp.org>
13882
13883         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
13884         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
13885         (Makefile.am): Create inttypes.h from inttypes_.h.
13886         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
13887
13888         * modules/imaxabs: New file.
13889
13890         * modules/imaxdiv: New file.
13891
13892 2006-08-26  Bruno Haible  <bruno@clisp.org>
13893
13894         * m4/inttypes.m4: New file.
13895         * m4/_inttypes_h.m4: Remove file.
13896         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
13897         PRI_MACROS_BROKEN.
13898         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
13899
13900         * m4/imaxabs.m4: New file.
13901
13902         * m4/imaxdiv.m4: New file.
13903
13904 2006-08-26  Bruno Haible  <bruno@clisp.org>
13905
13906         * lib/inttypes_.h: New file.
13907         * lib/inttypes.h: Remove file.
13908         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
13909
13910         * lib/imaxabs.c: New file.
13911
13912         * lib/imaxdiv.c: New file.
13913
13914 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
13915
13916         New config-h module, so that "make" output needn't be cluttered
13917         by -DHAVE_CONFIG_H.
13918         * MODULES.html.sh (Support for building libraries and executables):
13919         Add config-h.
13920         * modules/config-h: New file.
13921         * gnulib-tool (nl, sed_transform_lib_file): New vars.
13922         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
13923         the config-h module is used.
13924
13925         New configmake module, so that "make" output needn't be cluttered
13926         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
13927         * MODULES.html.sh (Support for building libraries and executables):
13928         Add configmake.
13929         * modules/configmake: New file.
13930
13931 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
13932
13933         * m4/config-h.m4: New file.
13934
13935 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
13936
13937         * config/srclist.txt: Add elisp-comp.
13938
13939 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
13940
13941         * MODULES.html.sh (Support for building libraries and executables):
13942         Add elisp-comp.
13943         * build-aux/elisp-comp: New file.
13944         * modules/elisp-comp: New file.
13945
13946 2006-08-24  Bruno Haible  <bruno@clisp.org>
13947
13948         * gnulib-tool (func_create_testdir): Use non-default values of
13949         sourcebase and m4base.
13950
13951 2006-08-24  Bruno Haible  <bruno@clisp.org>
13952
13953         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
13954         HTML structure.
13955
13956 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
13957
13958         * modules/openat (Depends-on): Add lchown.
13959
13960 2006-08-23  Bruno Haible  <bruno@clisp.org>
13961
13962         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
13963         of gl_LOCK_EARLY instead of gl_LOCK.
13964
13965 2006-08-23  Bruno Haible  <bruno@clisp.org>
13966
13967         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
13968         on OSF/1 to no.
13969         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
13970
13971 2006-08-23  Bruno Haible  <bruno@clisp.org>
13972
13973         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
13974         as unusable.
13975
13976         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
13977         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
13978         (gl_LOCK): New macro.
13979
13980 2006-08-22  Simon Josefsson  <jas@extundo.com>
13981
13982         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
13983         to md5 module.
13984
13985 2006-08-22  Simon Josefsson  <jas@extundo.com>
13986
13987         * MODULES.html.sh: Add "Support for maintaining and release
13988         projects".
13989
13990         * build-aux/gnupload: New file, from coreutils.
13991
13992 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
13993
13994         Avoid the need for AC_LIBSOURCES in m4 macros.
13995         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
13996         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
13997         * modules/check-version (EXTRA_DIST): Add check-version.h.
13998         * modules/crc (EXTRA_DIST): Add crc.h.
13999         * modules/des (EXTRA_DIST): Add des.h.
14000         * modules/gc (EXTRA_DIST): Add gc.h.
14001         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
14002         * modules/getline (EXTRA_DIST): Add getline.h.
14003         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
14004         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
14005         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
14006         * modules/md2 (EXTRA_DIST): Add md2.h.
14007         * modules/md4 (EXTRA_DIST): Add md4.h.
14008         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
14009         * modules/read-file (EXTRA_DIST): Add read-file.h.
14010         * modules/readline (EXTRA_DIST): Add readline.h.
14011         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
14012         rijndael-api-fst.h.
14013
14014 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
14015
14016         * m4/rijndael.m4 (gl_ARCFOUR):
14017         * m4/arctwo.m4 (gl_ARCTWO):
14018         * m4/check-version.m4 (gl_CHECK_VERSION):
14019         * m4/crc.m4 (gl_CRC):
14020         * m4/des.m4 (gl_DES):
14021         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
14022         * m4/gc.m4 (gl_GC):
14023         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
14024         * m4/getline.m4 (gl_FUNC_GETLINE):
14025         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
14026         * m4/hmac-md5.m4 (gl_HMAC_MD5):
14027         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
14028         * m4/md2.m4 (gl_MD2):
14029         * m4/md4.m4 (gl_MD4):
14030         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
14031         * m4/read-file.m4 (gl_FUNC_READ_FILE):
14032         * m4/readline.m4 (gl_FUNC_READLINE):
14033         * m4/rijndael.m4 (gl_RIJNDAEL):
14034         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
14035         to get the necessary .h files and whatnot.
14036
14037 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
14038
14039         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
14040         gnulib rather than the other way around.
14041         * config/srclistvars.sh (COREUTILS): Remove.
14042
14043 2006-08-22  Jim Meyering  <jim@meyering.net>
14044
14045         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
14046
14047         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
14048
14049 2006-08-22  Eric Blake  <ebb9@byu.net>
14050
14051         * modules/regexprops-generic: New file.
14052         * MODULES.html.sh (Support for building documentation): List it.
14053
14054 2006-08-22  Eric Blake  <ebb9@byu.net>
14055
14056         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
14057         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
14058         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
14059         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
14060
14061 2006-08-22  Bruno Haible  <bruno@clisp.org>
14062
14063         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
14064         and lib_LTLIBRARIES like the other lib_* variables.
14065
14066 2006-08-22  Bruno Haible  <bruno@clisp.org>
14067
14068         * build-aux/x-to-1.in: New file, from GNU gettext.
14069
14070 2006-08-22  Bruno Haible  <bruno@clisp.org>
14071
14072         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
14073         <utmpx.h> exists.
14074
14075 2006-08-22  Bruno Haible  <bruno@clisp.org>
14076
14077         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
14078         <utmpx.h> exists.
14079
14080 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
14081
14082         BeOS portability.
14083         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
14084         exist.
14085         Problem reported by Bruno Haible.
14086
14087 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
14088
14089         Avoid the need for AC_LIBSOURCES in m4 macros.
14090         * modules/acl (EXTRA_DIST): Add acl.h.
14091         * modules/argmatch (Files): Add m4/argmatch.m4.
14092         (configure.ac): Add gl_ARGMATCH.
14093         (EXTRA_DIST): Renamed from lib_SOURCES, for
14094         consistency with the other modules.  Remove argmatch.c.
14095         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
14096         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
14097         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
14098         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
14099         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
14100         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
14101         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
14102         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
14103         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
14104         * modules/closeout (EXTRA_DIST): Add closeout.h.
14105         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
14106         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
14107         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
14108         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
14109         dirname.h; remove basename.c and stripslash.c.
14110         * modules/exclude (EXTRA_DIST): Add exclude.h.
14111         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
14112         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
14113         * modules/file-type (EXTRA_DIST): Add file-type.h.
14114         * modules/filemode (EXTRA_DIST): Add filemode.h.
14115         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
14116         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
14117         * modules/fpending (EXTRA_DIST): Add __fpending.h.
14118         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
14119         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
14120         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
14121         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
14122         * modules/getdate (EXTRA_DIST): Add getdate.c.
14123         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
14124         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
14125         * modules/getpass (EXTRA_DIST): Add getpass.h.
14126         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
14127         * modules/group-member (EXTRA_DIST): Add group-member.h.
14128         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
14129         * modules/hash (EXTRA_DIST): Add hash.h.
14130         * modules/human (EXTRA_DIST): Add human.h.
14131         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
14132         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
14133         * modules/lchown (EXTRA_DIST): Add lchown.h.
14134         * modules/long-options (EXTRA_DIST): Add long-options.h.
14135         * modules/lstat (EXTRA_DIST): Add lstat.h.
14136         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
14137         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
14138         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
14139         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
14140         * modules/memxor (EXTRA_DIST): Add memxor.h.
14141         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
14142         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
14143         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
14144         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
14145         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
14146         * modules/physmem (EXTRA_DIST): Add physmem.h.
14147         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
14148         * modules/posixver (EXTRA_DIST): Add posixver.h.
14149         * modules/quote (EXTRA_DIST): Add quote.h.
14150         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
14151         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
14152         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
14153         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
14154         regex_internal.h regexec.c.
14155         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
14156         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
14157         * modules/same (EXTRA_DIST): Add same.h.
14158         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
14159         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
14160         * modules/savedir (EXTRA_DIST): Add savedir.h.
14161         * modules/sha1 (EXTRA_DIST): Add sha1.h.
14162         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
14163         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
14164         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
14165         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
14166         * modules/strdup (EXTRA_DIST): Add strdup.h.
14167         * modules/strftime (EXTRA_DIST): Add strftime.h.
14168         * modules/strndup (EXTRA_DIST): Add strndup.h.
14169         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
14170         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
14171         * modules/time_r (EXTRA_DIST): Add time_r.h.
14172         * modules/timespec (EXTRA_DIST): Add timespec.h.
14173         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
14174         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
14175         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
14176         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
14177         * modules/userspec (EXTRA_DIST): Add userspec.h.
14178         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
14179         * modules/utimens (EXTRA_DIST): Add utimens.h.
14180         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
14181         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
14182         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
14183         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
14184         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
14185         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
14186         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
14187         * modules/yesno (EXTRA_DIST): Add yesno.h.
14188
14189 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
14190
14191         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
14192
14193         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
14194         * m4/dev-ino.m4, same-inode.m4: Remove.
14195
14196         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
14197         * m4/acl.m4 (AC_FUNC_ACL):
14198         * m4/backupfile.m4 (gl_BACKUPFILE):
14199         * m4/c-strtod.m4 (gl_C99_STRTOLD):
14200         * m4/canon-host.m4 (gl_CANON_HOST):
14201         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
14202         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
14203         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
14204         * m4/cloexec.m4 (gl_CLOEXEC):
14205         * m4/close-stream.m4 (gl_CLOSE_STREAM):
14206         * m4/closeout.m4 (gl_CLOSEOUT):
14207         * m4/dirfd.m4 (gl_FUNC_DIRFD):
14208         * m4/dirname.m4 (gl_DIRNAME):
14209         * m4/exclude.m4 (gl_EXCLUDE):
14210         * m4/exitfail.m4 (gl_EXITFAIL):
14211         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
14212         * m4/file-type.m4 (gl_FILE_TYPE):
14213         * m4/filemode.m4 (gl_FILEMODE):
14214         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
14215         * m4/fpending.m4 (gl_FUNC_FPENDING):
14216         * m4/fprintftime.m4 (gl_FPRINTFTIME):
14217         * m4/fts.m4 (gl_FUNC_FTS):
14218         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
14219         * m4/getdate.m4 (gl_GETDATE):
14220         * m4/gethrxtime.m4 (gl_GETHRXTIME):
14221         * m4/getpagesize.m4 (gl_GETPAGESIZE):
14222         * m4/getpass.m4 (gl_FUNC_GETPASS):
14223         * m4/gettime.m4 (gl_GETTIME):
14224         * m4/getugroups.m4 (gl_GETUGROUPS):
14225         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
14226         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
14227         * m4/hard-locale.m4 (gl_HARD_LOCALE):
14228         * m4/hash.m4 (gl_HASH):
14229         * m4/idcache.m4 (gl_IDCACHE):
14230         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
14231         * m4/lchown.m4 (gl_FUNC_LCHOWN):
14232         * m4/long-options.m4 (gl_LONG_OPTIONS):
14233         * m4/lstat.m4 (gl_FUNC_LSTAT):
14234         * m4/md5.m4 (gl_MD5):
14235         * m4/memcasecmp.m4 (gl_MEMCASECMP):
14236         * m4/memcoll.m4 (gl_MEMCOLL):
14237         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
14238         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
14239         * m4/memxor.m4 (gl_MEMXOR):
14240         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
14241         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
14242         * m4/modechange.m4 (gl_MODECHANGE):
14243         * m4/mountlist.m4 (gl_MOUNTLIST):
14244         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
14245         * m4/openat.m4 (gl_FUNC_OPENAT):
14246         * m4/pathmax.m4 (gl_PATHMAX):
14247         * m4/physmem.m4 (gl_PHYSMEM):
14248         * m4/posixtm.m4 (gl_POSIXTM):
14249         * m4/posixver.m4 (gl_POSIXVER):
14250         * m4/quote.m4 (gl_QUOTE):
14251         * m4/quotearg.m4 (gl_QUOTEARG):
14252         * m4/readtokens.m4 (gl_READTOKENS):
14253         * m4/readutmp.m4 (gl_READUTMP):
14254         * m4/regex.m4 (gl_REGEX):
14255         * m4/safe-read.m4 (gl_SAFE_READ):
14256         * m4/safe-write.m4 (gl_SAFE_WRITE):
14257         * m4/same.m4 (gl_SAME):
14258         * m4/save-cwd.m4 (gl_SAVE_CWD):
14259         * m4/savedir.m4 (gl_SAVEDIR):
14260         * m4/settime.m4 (gl_SETTIME):
14261         * m4/sha1.m4 (gl_SHA1):
14262         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
14263         * m4/stat-macros.m4 (gl_STAT_MACROS):
14264         * m4/stat-time.m4 (gl_STAT_TIME):
14265         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
14266         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
14267         * m4/strdup.m4 (gl_FUNC_STRDUP):
14268         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
14269         * m4/strndup.m4 (gl_FUNC_STRNDUP):
14270         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
14271         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
14272         * m4/time_r.m4 (gl_TIME_R):
14273         * m4/timespec.m4 (gl_TIMESPEC):
14274         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
14275         * m4/unlinkdir.m4 (gl_UNLINKDIR):
14276         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
14277         * m4/userspec.m4 (gl_USERSPEC):
14278         * m4/utimecmp.m4 (gl_UTIMECMP):
14279         * m4/utimens.m4 (gl_UTIMENS):
14280         * m4/xalloc.m4 (gl_XALLOC):
14281         * m4/xgetcwd.m4 (gl_XGETCWD):
14282         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
14283         * m4/xreadlink.m4 (gl_XREADLINK):
14284         * m4/xstrtod.m4 (gl_XSTRTOD):
14285         * m4/yesno.m4 (gl_YESNO):
14286         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
14287         to get the necessary .h files and whatnot.
14288
14289 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
14290             Bruno Haible  <bruno@clisp.org>
14291
14292         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
14293         /bin/sh understanding of '!' conditional negation.
14294
14295 2006-08-21  Jim Meyering  <jim@meyering.net>
14296
14297         * modules/openat (Depends-on): Really alphabetize.
14298
14299         * modules/acl (Depends-on): Add error and quote.
14300
14301         * check-module (find_included_lib_files): Add at-func.c to the
14302         ok-to-include-more-than-once white list.
14303
14304         * modules/openat (Depends-on): Add lstat.  Alphabetize.
14305
14306 2006-08-21  Bruno Haible  <bruno@clisp.org>
14307
14308         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14309         Emit a pkgdata_DATA variable only if some snippets add contents to it.
14310         Reported by Martin Lambers <marlam@marlam.de>.
14311
14312 2006-08-21  Bruno Haible  <bruno@clisp.org>
14313
14314         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
14315         specify an installation location, don't emit a noinst_LIBRARIES or
14316         noinst_LTLIBRARIES assignment.
14317
14318 2006-08-21  Bruno Haible  <bruno@clisp.org>
14319
14320         BeOS portability.
14321         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
14322         BeOS has mbrtowc() but no <wctype.h>.
14323
14324 2006-08-21  Bruno Haible  <bruno@clisp.org>
14325
14326         BeOS portability.
14327         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
14328         exist.
14329
14330 2006-08-21  Bruno Haible  <bruno@clisp.org>
14331
14332         BeOS portability.
14333         * lib/mbchar.h: Include <wctype.h> only if it exists.
14334
14335 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
14336
14337         Remove files that are no longer needed by their respective modules.
14338         * m4/obstack.m4: Remove.
14339         * m4/strerror_r.m4: Remove.
14340         * m4/uint32_t.m4: Remove.
14341         * m4/uintptr_t.m4: Remove.
14342         * m4/ullong_max.m4: Remove.
14343         * m4/xstrtoimax.m4: Remove.
14344         * m4/xstrtoumax.m4: Remove.
14345
14346         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
14347         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
14348         dependencies now capture this.
14349
14350         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
14351         Do not use AC_LIBSOURCES, since gnulib modules now do this.
14352         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
14353         * m4/human.m4 (gl_HUMAN): Likewise.
14354         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
14355         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
14356
14357         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
14358
14359         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
14360         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
14361         stdint.
14362         * m4/human.m4 (gl_HUMAN): Likewise.
14363         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
14364         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
14365         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
14366         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
14367         * m4/xstrtol (gl_XSTRTOL): Likewise.
14368
14369         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
14370         AC_TYPE_LONG_LONG_INT.
14371         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
14372         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
14373         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
14374         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
14375
14376         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
14377         on stdbool.
14378
14379         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
14380         (gl_PREREQ_XSTRTOUL): Remove.
14381
14382         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
14383
14384         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
14385         mode.
14386
14387 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
14388
14389         Add and change modules to make it easier for coreutils to use
14390         gnulib-tool.
14391         * modules/backupfile (Files): Remove m4/d-ino.m4.
14392         (Depends-on): Add d-ino.
14393         * modules/cycle-check (Depends-on): Add stdint.
14394         (lib_SOURCES): Add cycle-check.h.
14395         * modules/d-ino: New module.
14396         * modules/d-type: New module.
14397         * modules/error (Files): Remove m4/strerror_r.m4.
14398         * modules/filemode (Files): Add m4/st_dm_mode.m4.
14399         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
14400         m4/inttypes_h.m4, m4/uintmax_t.m4.
14401         (Depends-on): Add stdint.
14402         (lib_SOURCES): Add fsusage.h.
14403         * modules/getcwd (Files): Remove d-ino.m4.
14404         (Depends-on): Add d-ino.
14405         * modules/getndelim2 (Depends-on): Add stdint.
14406         * modules/glob (Files): Remove m4/d-type.m4.
14407         (Depends-on): Add d-type.
14408         * modules/host-os: New module.
14409         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
14410         m4/inttypes_h.m4, m4/uintmax_t.m4.
14411         * Depends-on: Add stdint.
14412         (lib_SOURCES): Add human.h.
14413         * modules/inttostr (Files): Remove m4/intmax_t.m4,
14414         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
14415         m4/uintmax_t.m4, m4/ulonglong.m4.
14416         (Depends-on): Add stdint.
14417         (EXTRA_DIST): Add inttostr.h.
14418         * modules/lchmod: New module.
14419         * modules/link-follow: New module.
14420         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
14421         (Depends-on): Add lchmod.
14422         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
14423         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
14424         (Depends-on): Add stdint.
14425         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
14426         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
14427         (Depends-on): Add stdint.
14428         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
14429         * modules/perl: New module.
14430         * modules/regex (Depends-on): Add stdint.
14431         * modules/rmdir-errno: New module.
14432         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
14433         m4/intmax_t.m4.
14434         (Depends-on): Add stdint.
14435         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
14436         m4/uintmax_t.m4.
14437         (Depends-on): Add stdint.
14438         * modules/unlink-busy: New module.
14439         * modules/utimecmp (Depends-on): Add stdint.
14440         * modules/uptime: New module.
14441         * modules/winsz-ioctl: New module.
14442         * modules/winsz-termios: New module.
14443         * modules/xnanosleep (Depends-on): Add nanosleep.
14444         * modules/ullong_max: Remove.
14445         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
14446         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
14447         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
14448         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
14449         (Depends-on): Add inttypes.
14450         (lib_SOURCES): Add xstrtol.h.
14451         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
14452         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
14453         * MODULES.html.sh: Move 'assert' into the assert section.
14454         Move 'dummy' into the linking section.
14455         Remove ullong_max.
14456         Add section for compatibility checks for POSIX:2001 functions,
14457         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
14458         winsz-ioctl, and winsz-termios into it.
14459         Add lchmod.
14460         Add top-level Misc section and put host-os, perl, and uptime
14461         into it.
14462
14463 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
14464
14465         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
14466         now assume the stdint module.  Do not include inttypes.h.
14467         * lib/fsusage.h: Likewise.
14468         * lib/getndelim2.c: Likewise.
14469         * lib/human.h: Likewise.
14470         * lib/inttostr.h: Likewise.
14471         * lib/obstack.c: Likewise.
14472         * lib/regex_internal.h: Likewise.
14473         * lib/tempname.c: Likewise.
14474         * lib/utimecmp.c: Likewise.
14475         * lib/xstrtol.h: Likewise.
14476
14477         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
14478
14479         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
14480         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
14481         * lib/xtime.h: Likewise.
14482
14483 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14484
14485         * modules/openat (Files): Add lib/fchmodat.c.
14486         Fixes problem reported by Jay Youngman.
14487
14488 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14489
14490         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
14491         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
14492
14493 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
14494             Bruno Haible  <bruno@clisp.org>
14495
14496         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
14497         and is a script that invokes bison. Tighten the code. Add comments.
14498
14499 2006-08-18  Jim Meyering  <jim@meyering.net>
14500
14501         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
14502         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
14503         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
14504         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
14505
14506 2006-08-18  Bruno Haible  <bruno@clisp.org>
14507
14508         * modules/bison-i18n: New file.
14509         * MODULES.html.sh (Internationalization functions): Add it.
14510
14511 2006-08-18  Bruno Haible  <bruno@clisp.org>
14512
14513         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
14514         sys/statvfs.h. When getmntinfo was found, check its declaration and
14515         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
14516
14517 2006-08-18  Bruno Haible  <bruno@clisp.org>
14518
14519         * m4/bison-i18n.m4: New file, from bison.
14520
14521 2006-08-18  Bruno Haible  <bruno@clisp.org>
14522
14523         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
14524         (ME_DUMMY): Treat "kernfs" as a dummy.
14525         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
14526
14527 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
14528
14529         Update from coreutils.
14530
14531         2006-08-15  Jim Meyering  <jim@meyering.net>
14532
14533         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
14534
14535         2006-01-17  Jim Meyering  <jim@meyering.net>
14536
14537         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
14538
14539         2006-01-11  Jim Meyering  <jim@meyering.net>
14540
14541         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
14542         Check for the lchmod function.
14543
14544 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
14545
14546         Update from coreutils.
14547
14548         * lib/__fpending.h: Add copyright notice.
14549         * lib/fprintftime.h: Likewise.
14550         * lib/savedir.c: Use (C) in copyright notice.
14551         * lib/savedir.h: Likewise.
14552
14553         2006-08-15  Jim Meyering  <jim@meyering.net>
14554
14555         * lib/at-func.c: New file, with the logic of all emulated at-functions.
14556         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
14557         in support of the EXPECTED_ERRNO macro.
14558         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
14559         definitions.  Instead, define the appropriate symbols and include
14560         "at-func.c".
14561         * lib/mkdirat.c (mkdirat): Likewise.
14562         * lib/fchmodat.c (fchmodat): Likewise.
14563         (ENOSYS): Remove definition.
14564         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
14565         it.  Don't include "unistd--.h" -- it wasn't ever used.
14566
14567         2006-01-17  Jim Meyering  <jim@meyering.net>
14568
14569         Rewrite fts.c not to change the current working directory,
14570         by using openat, fstatat, fdopendir, etc..
14571
14572         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
14573         (HAVE_OPENAT_SUPPORT): Define.
14574         [_LIBC] (fchdir): Don't undef or define; no longer used.
14575         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
14576         Now, this `function' always succeeds, and consumes its file descriptor
14577         parameter -- so callers must not close such FDs.  Update callers.
14578         (diropen_fd, opendirat, cwd_advance_fd): New functions.
14579         (diropen): Add parameter, SP.  Adjust all callers.
14580         Implement using diropen_fd, rather than open.
14581         (fts_open): Initialize new member, fts_cwd_fd.
14582         Remove fts_rft-setting code.
14583         (fts_close): Close fts_cwd_fd, if necessary.
14584         (__opendir2): Define in terms of opendir or opendirat,
14585         depending on whether the FST_NOCHDIR flag is set.
14586         (fts_build): Since fts_safe_changedir consumes its FD, and since
14587         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
14588         and close the dup'd file descriptor upon failure.
14589         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
14590         (fts_safe_changedir): Tweak semantics to reflect that this function
14591         now calls cwd_advance_fd and hence consumes its FD argument.
14592         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
14593         [struct FTS] (fts_rft): Remove now-unused member.
14594         [struct FTS] (fts_cycle.state): Improve comment.
14595
14596         * lib/openat.c (openat_needs_fchdir): New function.
14597         * lib/openat.h (openat_needs_fchdir): Declare it.
14598
14599 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
14600
14601         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
14602         Problem and fix reported by Pádraig Brady in
14603         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
14604
14605 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
14606
14607         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
14608
14609 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
14610
14611         * lib/memcoll.c (memcoll): Optimize for the common case where the
14612         arguments are bytewise equal.
14613
14614 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
14615
14616         * doc/regexprops-generic.texi: Add a copyright notice.
14617
14618 2006-08-15  Bruno Haible  <bruno@clisp.org>
14619
14620         * modules/tmpdir (License): Change to LGPL.
14621
14622 2006-08-15  Bruno Haible  <bruno@clisp.org>
14623
14624         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
14625         module.
14626
14627 2006-08-14  Simon Josefsson  <jas@extundo.com>
14628
14629         * config/srclist.txt: Add gnupload.
14630
14631 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
14632
14633         Change copyright notice from LGPL 2 to GPL 2, since that's the
14634         standard form used in the gnulib repository.
14635         * tests/test-lock.c: Likewise.
14636         * tests/test-stdint.c: Likewise.
14637         * tests/test-tls.c: Likewise.
14638
14639         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
14640         prelude-manager.  User shorter URLs for GNU projects, without '?'.
14641         Add copyright notice.
14642
14643         * check-module: Add copyright notice.  Output a copyright
14644         notice if "--version" is specified.
14645         * modules/COPYING: New file.
14646         * tests/test-getaddrinfo.c: Add copyright notice.
14647         * tests/test-verify.c: Likewise.
14648
14649 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
14650
14651         Change copyright notice from LGPL 2 to GPL 2, since that's the
14652         standard form used in the gnulib repository.
14653         * lib/lock.c: LGPL -> GPL.
14654         * lib/lock.h: Likewise.
14655         * lib/strnlen1.c: Likewise.
14656         * lib/strnlen1.h: Likewise.
14657         * lib/tls.c: Likewise.
14658         * lib/tls.h: Likewise.
14659         * lib/tmpdir.c: Likewise.
14660
14661         * lib/TODO: Remove; this belongs only in coreutils.
14662
14663 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
14664
14665         Add copyright notices to long-enough files that lack them, since
14666         otherwise the files aren't clearly free.  Use the same notice that
14667         getdate.texi already uses.
14668         * doc/alloca-opt.texi: Add copyright notice.
14669         * doc/alloca.texi: Likewise.
14670         * doc/ctime.texi: Likewise.
14671         * doc/functions.texi: Likewise.
14672         * doc/gcd.texi: Likewise.
14673         * doc/gnulib-tool.texi: Likewise.
14674         * doc/inet_ntoa.texi: Likewise.
14675         * doc/visibility.texi: Likewise.
14676
14677         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
14678         * doc/quote.texi: Add copyright notice.
14679
14680         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
14681         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
14682         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
14683         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
14684         is now obsolete, and give a pointer to the Sun list.
14685         Add copyright notice.
14686
14687 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
14688
14689         * config/srclistvars.sh: Add copyright notice.
14690
14691 2006-08-14  Eric Blake  <ebb9@byu.net>
14692
14693         Import the following change from libc:
14694
14695         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
14696
14697         Upstream bug 2997.
14698         * lib/misc/error.c: Add space between program name and message if file
14699         name is missing.
14700
14701 2006-08-12  Karl Berry  <karl@gnu.org>
14702
14703         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
14704         remove, these originate in gnulib now.
14705
14706 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14707
14708         * doc/Makefile (standards.info standards.html standards.dvi):
14709         Also depend on make-stds.texi.
14710
14711 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14712
14713         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
14714         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
14715
14716         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
14717         in wchar_t.  Problem reported by Eric Blake.
14718
14719         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
14720         LEN is smaller than SIZE.  Suggested by Bruno Haible.
14721         Also, help the compiler to keep LEN in a register.
14722
14723 2006-08-11  Eric Blake  <ebb9@byu.net>
14724
14725         * users.txt: Sort.  Add tar.
14726
14727 2006-08-11  Bruno Haible  <bruno@clisp.org>
14728
14729         * users.txt: New file.
14730
14731 2006-08-11  Bruno Haible  <bruno@clisp.org>
14732
14733         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
14734         before <wchar.h>. Needed for OSF/1 and BSD/OS.
14735
14736 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
14737
14738         * modules/snprintf (Depends-on): Remove minmax.
14739         (Maintainer): Add self and Bruno.
14740
14741 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
14742
14743         * lib/.cppi-disable: Add snprintf.h, socket_.h.
14744         * lib/snprintf.c: Include <errno.h> and <limits.h>.
14745         (EOVERFLOW): Define if the system does not.
14746         Do not include "minmax.h"; it wasn't used.
14747         (snprintf): Don't assume size_t promotes to an unsigned type.
14748         Fix bug when generated string was too long for the buffer: the
14749         buffer's contents are supposed to be the initial prefix of the
14750         output.  Don't assume vasnprintf returns EOVERFLOW if the size
14751         exceeds INT_MAX; do the check ourselves.
14752
14753         Import the following changes from libc:
14754
14755         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
14756
14757         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
14758         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
14759         set wc to the byte which couldn't be converted.
14760         (re_string_reconstruct): Don't clear valid_raw_len before calling
14761         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
14762         tip_context using re_string_context_at.
14763
14764         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
14765
14766         * lib/posix/regex.h: g++ still cannot handled [restrict].
14767
14768         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
14769
14770         * lib/posix/regex.h: Remove special handling for VMS.
14771
14772 2006-08-10  Jim Meyering  <jim@meyering.net>
14773
14774         * modules/same-inode: New module.
14775         * modules/dev-ino: New module.
14776         * modules/cycle-check: Depend on these modules, rather than simply
14777         including their .h files.
14778         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
14779         required via m4/cycle-check.m4.
14780         * modules/same: Depend on new same-inode module, rather than
14781         including same-inode.h.
14782         * modules/chdir-safer: New file.
14783
14784         * modules/chown (Depends-on): Add stat-macros.
14785
14786 2006-08-10  Jim Meyering  <jim@meyering.net>
14787
14788         * m4/cycle-check.m4: New file.
14789         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
14790         * m4/dev-ino.m4, m4/same-inode.m4: New files.
14791
14792 2006-08-10  Eric Blake  <ebb9@byu.net>
14793
14794         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
14795         in from original proposal.
14796
14797 2006-08-10  Eric Blake  <ebb9@byu.net>
14798         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14799
14800         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
14801         namespace.
14802
14803 2006-08-10  Bruno Haible  <bruno@clisp.org>
14804
14805         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
14806         as well.
14807
14808 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14809
14810         Sync from coreutils.
14811
14812         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
14813
14814         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
14815         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
14816
14817 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14818
14819         * modules/restrict: Remove; no longer needed now that we assume
14820         Autoconf 2.59 or later.
14821         * MODULES.html.sh: Remove 'restrict'.
14822         * modules/argp (Depends-on): Remove 'restrict'.
14823         * modules/base64 (Depends-on): Likewise.
14824         * modules/gc (Depends-on): Likewise.
14825         * modules/getaddrinfo (Depends-on): Likewise.
14826         * modules/glob (Depends-on): Likewise.
14827         * modules/inet_ntop (Depends-on): Likewise.
14828         * modules/inet_pton (Depends-on): Likewise.
14829         * modules/memxor (Depends-on): Likewise.
14830         * modules/regex (Depends-on): Likewise.
14831         * modules/strtok_r (Depends-on): Likewise.
14832         * modules/time_r (Depends-on): Likewise.
14833
14834 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14835
14836         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
14837         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
14838         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
14839         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
14840         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
14841         * m4/memxor.m4 (gl_MEMXOR): Likewise.
14842         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
14843         gl_C_RESTRICT replaced by AC_C_RESTRICT.
14844
14845         Merge from coreutils.
14846         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
14847         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
14848         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
14849         * m4/time_r.m4 (gl_TIME_R): Likewise.
14850
14851 2006-08-09  Karl Berry  <karl@gnu.org>
14852
14853         * config/srclist.txt: no more gettext-tools, per Bruno.
14854
14855 2006-08-08  Eric Blake  <ebb9@byu.net>
14856
14857         * modules/verror: New module.
14858         * MODULES.html.sh: Document it.
14859
14860 2006-08-08  Eric Blake  <ebb9@byu.net>
14861
14862         * lib/verror.h, lib/verror.c: New files.
14863
14864 2006-08-08  Eric Blake  <ebb9@byu.net>
14865
14866         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
14867         verror_at_line output complies with GNU Coding Standards even when
14868         file is NULL.
14869
14870 2006-08-07  Bruno Haible  <bruno@clisp.org>
14871
14872         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
14873         versions of AIX.
14874         Reported by Ralf Wildenhues.
14875
14876 2006-08-07  Bruno Haible  <bruno@clisp.org>
14877
14878         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
14879         in an AC_DEFUN. Needed so that the autoconf snippets can use
14880         AC_REQUIRE.
14881
14882 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14883
14884         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14885         Initialize pkgdata_DATA.
14886         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
14887         overriding it.
14888
14889 2006-08-06  Eric Blake  <ebb9@byu.net>
14890
14891         * lib/error.h: Fold in some upstream changes from glibc.
14892         * lib/error.c: Likewise.
14893
14894 2006-08-04  Bruno Haible  <bruno@clisp.org>
14895
14896         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14897         Make the mostlyclean-local rule depend on mostlyclean-generic.
14898         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
14899
14900 2006-07-31  Bruno Haible  <bruno@clisp.org>
14901
14902         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
14903         <stdlib.h>, <string.h>.
14904
14905 2006-07-30  Bruno Haible  <bruno@clisp.org>
14906
14907         * modules/readlink (License): Change to LGPL.
14908
14909 2006-07-30  Bruno Haible  <bruno@clisp.org>
14910
14911         * modules/javaversion (Makefile.am): Distribute javaversion.java and
14912         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
14913         set PKGDATADIR to point to it.
14914
14915 2006-07-30  Bruno Haible  <bruno@clisp.org>
14916
14917         * modules/csharpexec (configure.ac): Comment out macro invocation.
14918         * modules/javaexec (configure.ac): Likewise.
14919         * modules/javacomp-script (configure.ac): Likewise.
14920
14921         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
14922
14923 2006-07-30  Bruno Haible  <bruno@clisp.org>
14924
14925         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
14926         linked-list.
14927
14928 2006-07-30  Bruno Haible  <bruno@clisp.org>
14929
14930         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
14931
14932 2006-07-30  Bruno Haible  <bruno@clisp.org>
14933
14934         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14935         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
14936         get removed.
14937
14938 2006-07-29  Bruno Haible  <bruno@clisp.org>
14939
14940         Make it possible for gnulib-tool to work with locally modified or
14941         augmented gnulib repositories.
14942         * gnulib-tool (func_usage): Document --local-dir option.
14943         (local_gnulib_dir): New variable.
14944         Handle --local-dir option.
14945         (func_lookup_file): New function.
14946         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
14947         (func_get_description, func_get_filelist, func_get_description,
14948         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
14949         func_get_automake_snippet, func_get_include_directive,
14950         func_get_license, func_get_maintainer): Use func_lookup_file.
14951         (func_import, func_create_testdir): Use func_lookup_file.
14952
14953 2006-07-29  Bruno Haible  <bruno@clisp.org>
14954
14955         * modules/setenv (Depends-on): Add unistd.
14956
14957 2006-07-29  Bruno Haible  <bruno@clisp.org>
14958
14959         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
14960
14961 2006-07-29  Bruno Haible  <bruno@clisp.org>
14962
14963         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
14964
14965 2006-07-29  Bruno Haible  <bruno@clisp.org>
14966
14967         * gnulib-tool (import, update): If there is no Makefile.am, look at
14968         aclocal.m4, instead of bailing out.
14969
14970 2006-07-29  Bruno Haible  <bruno@clisp.org>
14971
14972         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
14973         Categorize the options by when they are useful.
14974
14975 2006-07-29  Bruno Haible  <bruno@clisp.org>
14976
14977         * gnulib-tool (func_usage): Document option --no-libtool.
14978         Handle option --no-libtool.
14979         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
14980         for changed semantics of $libtool variable.
14981         (func_import): Likewise. If libtool is not used, show this through
14982         an option --no-libtool.
14983         (func_create_testdir): Update.
14984
14985 2006-07-29  Bruno Haible  <bruno@clisp.org>
14986
14987         * gnulib-tool (func_import): Extend error message about missing
14988         --doc-base.
14989
14990 2006-07-29  Bruno Haible  <bruno@clisp.org>
14991
14992         * gnulib-tool (func_import): Don't create the $docbase directory if
14993         there is no file to store there.
14994
14995 2006-07-29  Bruno Haible  <bruno@clisp.org>
14996
14997         * gnulib-tool (autoconf_minversion): If a --dir option is given and
14998         relevant, look for configure.ac there, not in the current directory.
14999         Also use a simple search for AC_PREREQ, not "autoconf --trace".
15000
15001 2006-07-29  Bruno Haible  <bruno@clisp.org>
15002
15003         * gnulib-tool (SORT): New variable.
15004         (func_usage): Undocument --assume-autoconf option.
15005         Remove --assume-autoconf option handling.
15006         (autoconf_minversion): Determine from the contents of configure.ac.
15007         (func_import): Remove autoconf_minversion handling.
15008         Suggested by Eric Blake.
15009
15010 2006-07-29  Bruno Haible  <bruno@clisp.org>
15011
15012         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
15013
15014 2006-07-29  Bruno Haible  <bruno@clisp.org>
15015
15016         * config/srclist.txt (*setenv.[ch]): Remove rules.
15017
15018 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15019
15020         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
15021
15022 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15023
15024         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
15025         arpa/inet.h.
15026
15027 2006-07-28  Simon Josefsson  <jas@extundo.com>
15028
15029         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
15030         * modules/inet_pton (Depends-on): Likewise.
15031
15032 2006-07-28  Simon Josefsson  <jas@extundo.com>
15033
15034         * m4/netinet_in_h.m4: New file.
15035
15036 2006-07-28  Simon Josefsson  <jas@extundo.com>
15037
15038         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
15039         #include's.
15040
15041 2006-07-28  Simon Josefsson  <jas@extundo.com>
15042
15043         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
15044         #include's.
15045
15046 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
15047
15048         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
15049         setgid on directories only if they set these bits.
15050         * lib/modechange.h: Remove obsolete comment about masks.
15051
15052 2006-07-28  Eric Blake  <ebb9@byu.net>
15053
15054         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
15055         macro expansion.
15056
15057 2006-07-28  Bruno Haible  <bruno@clisp.org>
15058
15059         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
15060
15061 2006-07-28  Bruno Haible  <bruno@clisp.org>
15062
15063         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
15064
15065 2006-07-28  Bruno Haible  <bruno@clisp.org>
15066
15067         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
15068         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
15069         Define fallbacks.
15070         Avoids link error on FreeBSD 4.x.
15071         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15072
15073         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
15074         encoding.
15075         * lib/mbswidth.c (iswcntrl): Likewise.
15076
15077 2006-07-27  Bruno Haible  <bruno@clisp.org>
15078
15079         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
15080         test.
15081
15082 2006-07-27  Bruno Haible  <bruno@clisp.org>
15083
15084         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
15085         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
15086         defined.
15087
15088 2006-07-26  Eric Blake  <ebb9@byu.net>
15089
15090         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
15091
15092 2006-07-26  Eric Blake  <ebb9@byu.net>
15093
15094         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
15095         like mingw that lack mkstemp.
15096         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
15097         avoid compilation warning on mingw.
15098
15099 2006-07-26  Bruno Haible  <bruno@clisp.org>
15100
15101         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
15102         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
15103         INT_FAST*_MIN, INTPTR_MIN.
15104
15105 2006-07-25  Bruno Haible  <bruno@clisp.org>
15106
15107         * modules/version-etc (Depends-on): Add stdarg.
15108
15109 2006-07-25  Bruno Haible  <bruno@clisp.org>
15110
15111         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
15112         complex commands.
15113
15114 2006-07-25  Bruno Haible  <bruno@clisp.org>
15115
15116         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
15117         defined in <stdarg.h> or config.h.
15118
15119 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
15120
15121         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
15122         (gl_STDIO_SAFER): Remove.
15123
15124 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
15125
15126         * MODULES.html.sh (File stream based Input/Output):
15127         Add fopen-safer, tmpfile-safer; remove stdio-safer.
15128         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
15129         * modules/fopen-safer, modules/tmpfile-safer: New files.
15130         * modules/stdio-safer: Remove.
15131
15132 2006-07-24  Bruno Haible  <bruno@clisp.org>
15133
15134         * modules/tmpdir: New file.
15135         * MODULES.html.sh (File system functions): Add it.
15136
15137 2006-07-24  Bruno Haible  <bruno@clisp.org>
15138
15139         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
15140         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
15141
15142 2006-07-24  Bruno Haible  <bruno@clisp.org>
15143
15144         * modules/clean-temp: New file.
15145
15146 2006-07-24  Bruno Haible  <bruno@clisp.org>
15147
15148         * m4/tmpdir.m4: New file, from GNU gettext.
15149
15150 2006-07-24  Bruno Haible  <bruno@clisp.org>
15151
15152         * lib/tmpdir.h: New file, from GNU gettext.
15153         * lib/tmpdir.c: New file, from GNU gettext.
15154
15155 2006-07-24  Bruno Haible  <bruno@clisp.org>
15156
15157         * lib/clean-temp.h: New file, from GNU gettext.
15158         * lib/clean-temp.c: New file, from GNU gettext.
15159
15160 2006-07-23  Eric Blake  <ebb9@byu.net>
15161
15162         * modules/stdio-safer (Files): Add tmpfile-safer.c.
15163         (Depends-on): Add binary-io.
15164
15165 2006-07-23  Eric Blake  <ebb9@byu.net>
15166
15167         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
15168
15169 2006-07-23  Eric Blake  <ebb9@byu.net>
15170
15171         * lib/tmpfile-safer.c: New file.
15172         * lib/stdio-safer.h (fopen_safer): Add prototype.
15173         * lib/stdio--.h (tmpfile): Make safer.
15174
15175 2006-07-23  Bruno Haible  <bruno@clisp.org>
15176
15177         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
15178         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
15179         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
15180         gl_linked_remove_at): Use it.
15181
15182 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15183         and Simon Josefsson <jas@extundo.com>
15184
15185         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
15186
15187         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
15188
15189 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
15190
15191         * modules/close-stream: New file.
15192         * modules/closeout (Description): Make it clear that it exits
15193         with a diagnostic on error.
15194         (Depends-on): Add close-stream.  Remove fpending, stdbool.
15195         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
15196
15197 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
15198
15199         * m4/close-stream.m4: New file.
15200
15201 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
15202
15203         * lib/close-stream.c, lib/close-stream.h: New files.
15204
15205 2006-07-22  Bruno Haible  <bruno@clisp.org>
15206
15207         Merge from GNU gettext 0.15.
15208
15209         2006-05-01  Bruno Haible  <bruno@clisp.org>
15210
15211                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
15212
15213         2006-07-22  Bruno Haible  <bruno@clisp.org>
15214
15215                 * modules/javaversion: New file.
15216                 * MODULES.html.sh (Java): Add javaversion.
15217
15218         2006-03-12  Bruno Haible  <bruno@clisp.org>
15219
15220                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
15221
15222         2005-12-04  Bruno Haible  <bruno@clisp.org>
15223
15224                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
15225                 (untested).
15226
15227         2006-06-21  Bruno Haible  <bruno@clisp.org>
15228
15229                 Avoid warnings from recent versions of mcs.
15230                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
15231                 -o, -L, -r any more. Use options documented since mcs-1.0
15232                 instead. Similarly for -g.
15233
15234         2005-12-04  Bruno Haible  <bruno@clisp.org>
15235
15236                 * build-aux/csharpcomp.sh.in: Suffix for resources is
15237                 .resources, not .resource.
15238
15239         2005-07-09  Bruno Haible  <bruno@clisp.org>
15240
15241                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
15242                 add a .dll suffix.
15243                 Reported by Mark Junker <mjscod@gmx.de>.
15244
15245         2006-07-22  Bruno Haible  <bruno@clisp.org>
15246
15247                 * modules/gettext: Upgrade to gettext-0.15.
15248                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
15249                 m4/visibility.m4.
15250                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
15251
15252 2006-07-22  Bruno Haible  <bruno@clisp.org>
15253
15254         Merge from GNU gettext 0.15.
15255
15256         2006-03-25  Bruno Haible  <bruno@clisp.org>
15257
15258                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
15259
15260         2006-07-21  Bruno Haible  <bruno@clisp.org>
15261
15262                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
15263                 "1.1".
15264
15265         2006-05-09  Bruno Haible  <bruno@clisp.org>
15266
15267                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
15268                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
15269                 for the conftestver execution.
15270
15271         2006-05-01  Bruno Haible  <bruno@clisp.org>
15272
15273                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
15274                 optional target-version argument. Verify that the compiler
15275                 groks source of the specified source-version, or add -source
15276                 option as necessary. Verify that the compiler produces
15277                 bytecode in the specified target-version, or add -target and
15278                 -source options as necessary. Make the result of the test
15279                 available as variable CONF_JAVAC. Also log error output in
15280                 config.log.
15281
15282         2006-03-11  Bruno Haible  <bruno@clisp.org>
15283
15284                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
15285
15286         2006-05-09  Bruno Haible  <bruno@clisp.org>
15287
15288                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
15289                 CLASSPATH_SEPARATOR to a semicolon.
15290
15291         2006-03-12  Bruno Haible  <bruno@clisp.org>
15292
15293                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
15294                 available as variable CONF_JAVA, for subsequent autoconf
15295                 tests. Also log error output in config.log.
15296
15297         2006-07-19  Bruno Haible  <bruno@clisp.org>
15298
15299                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
15300                 that getline works on glibc2 systems. Needed to avoid trouble
15301                 in relocatable.c.
15302                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
15303
15304         2005-12-04  Bruno Haible  <bruno@clisp.org>
15305
15306                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
15307                 launcher (untested).
15308
15309         2005-12-04  Bruno Haible  <bruno@clisp.org>
15310
15311                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
15312
15313         2006-07-22  Bruno Haible  <bruno@clisp.org>
15314
15315                 * gettext.m4: Update from GNU gettext-0.15.
15316                 * nls.m4: Likewise.
15317                 * po.m4: Likewise.
15318                 * inttypes-pri.m4: Likewise.
15319                 * inttypes-h.m4: Renamed from inttypes.m4.
15320                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
15321
15322 2006-07-22  Bruno Haible  <bruno@clisp.org>
15323
15324         Merge from GNU gettext 0.15.
15325
15326         2005-07-05  Bruno Haible  <bruno@clisp.org>
15327
15328                 * printf-args.c (printf_fetchargs): Work around broken
15329                 definition of wint_t on mingw.
15330
15331         2005-02-12  Bruno Haible  <bruno@clisp.org>
15332
15333                 * xallocsa.h: Add extern "C" for C++.
15334
15335         2006-05-17  Bruno Haible  <bruno@clisp.org>
15336
15337                 Cygwin portability.
15338                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
15339
15340         2006-04-30  Bruno Haible  <bruno@clisp.org>
15341
15342                 * progreloc.c: Include <mach-o/dyld.h> if available.
15343                 (find_executable): Use _NSGetExecutablePath when possible.
15344
15345         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
15346
15347                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
15348                 function.
15349
15350         2005-12-29  Bruno Haible  <bruno@clisp.org>
15351
15352                 * progreloc.c (set_program_name_and_installdir): Fix
15353                 compilation error.
15354
15355         2005-12-04  Bruno Haible  <bruno@clisp.org>
15356
15357                 Cygwin portability.
15358                 * progreloc.c: Include <windows.h> also on Cygwin.
15359                 (find_executable): Add support for Cygwin.
15360                 (set_program_name_and_installdir): Handle also platforms with
15361                 nonempty EXEEXT.
15362
15363         2006-07-11  Bruno Haible  <bruno@clisp.org>
15364
15365                 * javacomp.c: Fix a comment.
15366                 Reported by Jim Meyering.
15367
15368         2006-04-30  Bruno Haible  <bruno@clisp.org>
15369
15370                 * javacomp.h (compile_java_class): Add source_version,
15371                 target_version arguments.
15372                 * javacomp.c: Rewritten to choose only a compiler that
15373                 respects the specified source_version and target_version.
15374
15375         2006-06-27  Bruno Haible  <bruno@clisp.org>
15376
15377                 Assume correct S_ISDIR macro.
15378                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
15379
15380         2006-07-22  Bruno Haible  <bruno@clisp.org>
15381
15382                 * javaversion.h: New file, from GNU gettext.
15383                 * javaversion.c: New file, from GNU gettext.
15384                 * javaversion.java: New file, from GNU gettext.
15385                 * javaversion.class: New file, from GNU gettext.
15386
15387         2006-05-17  Bruno Haible  <bruno@clisp.org>
15388
15389                 Cygwin portability.
15390                 * javaexec.c (execute_java_class): Test for jview program
15391                 also on Cygwin.
15392
15393         2006-04-09  Bruno Haible  <bruno@clisp.org>
15394
15395                 * fatal-signal.c: Don't include string.h.
15396                 (at_fatal_signal): Use a copying loop instead of memcpy.
15397
15398         2005-12-04  Bruno Haible  <bruno@clisp.org>
15399
15400                 * csharpexec.c: Add support for 'clix' launcher (untested).
15401                 (execute_csharp_using_sscli): New function.
15402                 (execute_csharp_program): Call it.
15403
15404         2006-06-21  Bruno Haible  <bruno@clisp.org>
15405
15406                 Avoid warnings from recent versions of mcs.
15407                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
15408                 -o, -L, -r any more. Use options documented since mcs-1.0
15409                 instead. Similarly for -g.
15410
15411         2005-07-09  Bruno Haible  <bruno@clisp.org>
15412
15413                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
15414                 add a .dll suffix.
15415                 Reported by Mark Junker <mjscod@gmx.de>.
15416
15417         2006-06-17  Bruno Haible  <bruno@clisp.org>
15418
15419                 * config.charset: Update for NetBSD 3.0.
15420
15421         2006-05-17  Bruno Haible  <bruno@clisp.org>
15422
15423                 Cygwin portability.
15424                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
15425
15426         2006-05-16  Bruno Haible  <bruno@clisp.org>
15427
15428                 * localcharset.c [CYGWIN]: Include <windows.h>.
15429                 (get_charset_aliases): For Cygwin, return the same CPxxx
15430                 aliases list as under WIN32.
15431                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
15432                 the environment variables. Fall back to GetACP().
15433
15434         2006-04-05  Bruno Haible  <bruno@clisp.org>
15435
15436                 * config.charset: Update Juan Manuel Guerrero's address.
15437
15438         2005-02-12  Bruno Haible  <bruno@clisp.org>
15439
15440                 * allocsa.h: Add extern "C" for C++.
15441
15442         2005-02-10  Bruno Haible  <bruno@clisp.org>
15443
15444                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
15445                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
15446
15447         2006-07-22  Bruno Haible  <bruno@clisp.org>
15448
15449                 * gettext.h: Update to GNU gettext-0.15.
15450
15451 2006-07-22  Bruno Haible  <bruno@clisp.org>
15452
15453         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
15454         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
15455         lib-prefix.m4, longdouble.m4, ssize_t.m4.
15456
15457 2006-07-21  Eric Blake  <ebb9@byu.net>
15458
15459         * modules/stdlib-safer: New file.
15460         * MODULES.html.sh (File stream based Input/Output): Add
15461         stdlib-safer.
15462
15463 2006-07-21  Eric Blake  <ebb9@byu.net>
15464
15465         * lib/stdlib-safer.h: New file from coreutils, required by
15466         stdlib--.h.
15467
15468 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
15469
15470         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
15471
15472 2006-07-20  Bruno Haible  <bruno@clisp.org>
15473
15474         * gnulib-tool: Recognize new option --assume-autoconf.
15475         (autoconf_minversion): New variable.
15476         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
15477
15478 2006-07-20  Bruno Haible  <bruno@clisp.org>
15479
15480         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
15481
15482 2006-07-19  Derek R. Price  <derek@ximbiot.com>
15483
15484         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
15485         Reindent and repaginate.
15486
15487 2006-07-19  Derek Price  <derek@ximbiot.com>
15488
15489         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
15490         Correct grammar.
15491
15492 2006-07-17  Bruno Haible  <bruno@clisp.org>
15493
15494         * modules/list: New file.
15495         * modules/array-list: New file.
15496         * modules/carray-list, modules/carray-list-tests: New files.
15497         * modules/linked-list, modules/linked-list-tests: New files.
15498         * modules/avltree-list, modules/avltree-list-tests: New files.
15499         * modules/rbtree-list, modules/rbtree-list-tests: New files.
15500         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
15501         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
15502         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
15503         * modules/oset: New file.
15504         * modules/array-oset: New file.
15505         * modules/avltree-oset, modules/avltree-oset-tests: New files.
15506         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
15507         * tests/test-carray_list.c: New file.
15508         * tests/test-linked_list.c: New file.
15509         * tests/test-avltree_list.c: New file.
15510         * tests/test-rbtree_list.c: New file.
15511         * tests/test-linkedhash_list.c: New file.
15512         * tests/test-avltreehash_list.c: New file.
15513         * tests/test-rbtreehash_list.c: New file.
15514         * tests/test-avltree_oset.c: New file.
15515         * tests/test-rbtree_oset.c: New file.
15516         * MODULES.html.sh (Container data structures): New section.
15517
15518 2006-07-17  Bruno Haible  <bruno@clisp.org>
15519
15520         * m4/gl_list.m4: New file.
15521
15522 2006-07-17  Bruno Haible  <bruno@clisp.org>
15523
15524         * lib/gl_list.h: New file.
15525         * lib/gl_list.c: New file.
15526         * lib/gl_array_list.h: New file.
15527         * lib/gl_array_list.c: New file.
15528         * lib/gl_carray_list.h: New file.
15529         * lib/gl_carray_list.c: New file.
15530         * lib/gl_linked_list.h: New file.
15531         * lib/gl_linked_list.c: New file.
15532         * lib/gl_anylinked_list1.h: New file.
15533         * lib/gl_anylinked_list2.h: New file.
15534         * lib/gl_avltree_list.h: New file.
15535         * lib/gl_avltree_list.c: New file.
15536         * lib/gl_anyavltree_list1.h: New file.
15537         * lib/gl_anyavltree_list2.h: New file.
15538         * lib/gl_rbtree_list.h: New file.
15539         * lib/gl_rbtree_list.c: New file.
15540         * lib/gl_anyrbtree_list1.h: New file.
15541         * lib/gl_anyrbtree_list2.h: New file.
15542         * lib/gl_anytree_list1.h: New file.
15543         * lib/gl_anytree_list2.h: New file.
15544         * lib/gl_linkedhash_list.h: New file.
15545         * lib/gl_linkedhash_list.c: New file.
15546         * lib/gl_anyhash_list1.h: New file.
15547         * lib/gl_anyhash_list2.h: New file.
15548         * lib/gl_avltreehash_list.h: New file.
15549         * lib/gl_avltreehash_list.c: New file.
15550         * lib/gl_rbtreehash_list.h: New file.
15551         * lib/gl_rbtreehash_list.c: New file.
15552         * lib/gl_anytreehash_list1.h: New file.
15553         * lib/gl_anytreehash_list2.h: New file.
15554
15555         * lib/gl_oset.h: New file.
15556         * lib/gl_oset.c: New file.
15557         * lib/gl_array_oset.h: New file.
15558         * lib/gl_array_oset.c: New file.
15559         * lib/gl_avltree_oset.h: New file.
15560         * lib/gl_avltree_oset.c: New file.
15561         * lib/gl_rbtree_oset.h: New file.
15562         * lib/gl_rbtree_oset.c: New file.
15563         * lib/gl_anytree_oset.h: New file.
15564
15565 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
15566
15567         * m4/mkancesdirs.m4: New file.
15568         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
15569         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
15570         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
15571         it.
15572
15573 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
15574
15575         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
15576         * lib/mkancesdirs.h: New files.
15577         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
15578         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
15579         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
15580         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
15581         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
15582         callers changed.  Revamp internals significantly, by not
15583         attempting to create directories that are temporarily more
15584         permissive than the final results.  Do not attempt to use
15585         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
15586         This removes some race conditions, fixes some bugs, and simplifies
15587         things.  Use new dirchownmod function to do owner and mode changes.
15588         * lib/mkdir-p.h: Likewise.
15589         * lib/modechange.c (octal_to_mode): New function.
15590         (struct mode_change): New member mentioned.
15591         (make_node_op_equals): New arg mentioned.  All callers changed.
15592         (mode_compile): Keep track of which mode bits the user has explicitly
15593         mentioned.
15594         (mode_adjust): New arg DIR, so that we implement the X op correctly.
15595         New arg PMODE_BITS, to keep track of which mode bits the user
15596         mentioned; it treats S_ISUID and S_ISGID speciall.
15597         All callers changed.
15598         * lib/modechange.h: Likewise.
15599
15600 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
15601
15602         * MODULES.html.sh: Add mkancestors.
15603         * modules/mkancesdirs: New module.
15604         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
15605         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
15606         The chdir-safer and afs files are now orphans; I'll remove them
15607         unless someone speaks up.
15608         Add lib/dirchownmod.c, lib/dirchownmod.h.
15609         (Depends-on): Remove alloca, chown, save-cwd, dirname.
15610         Add lchown, mkancesdirs.
15611         (Maintainer): Add self.
15612
15613 2006-07-15  Karl Berry  <karl@gnu.org>
15614
15615         * gnulib-tool: help message wording/arrangement.
15616
15617 2006-07-14  Simon Josefsson  <jas@extundo.com>
15618
15619         * doc/gnulib.texi (Libtool and Windows): New section.
15620
15621 2006-07-12  Simon Josefsson  <jas@extundo.com>
15622
15623         * modules/gendocs (License): Fix license, approved by Karl.
15624
15625 2006-07-12  Eric Blake  <ebb9@byu.net>
15626
15627         * MODULES.html.sh: Add gendocs.
15628
15629 2006-07-11  Eric Blake  <ebb9@byu.net>
15630
15631         * modules/fdl: New module, to install doc/fdl.texi.
15632         * MODULES.html.sh: Add new section for documentation modules.
15633         * gnulib-tool: Avoid space-tab.
15634         (--doc-base): New option, to manage files from doc.
15635
15636 2006-07-11  Eric Blake  <ebb9@byu.net>
15637
15638         * m4/absolute-header.m4: Fix comments to match recent change.
15639
15640 2006-07-11  Eric Blake  <ebb9@byu.net>
15641
15642         * gnulib-tool: List --doc-base before --tests-base.
15643
15644 2006-07-11  Derek R. Price  <derek@ximbiot.com>
15645
15646         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
15647
15648 2006-07-11  Bruno Haible  <bruno@clisp.org>
15649
15650         * README: Mention where to put documentation.
15651
15652 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15653
15654         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
15655
15656 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
15657
15658         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
15659         to stdint.m4.
15660
15661 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
15662
15663         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
15664         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
15665         "no/such/file/stdint.h" when there is no such file, so that
15666         the resulting C code can be parsed by dodgy compilers.
15667         Problems reported by Bob Proulx.
15668
15669 2006-07-10  Derek R. Price  <derek@ximbiot.com>
15670
15671         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
15672         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
15673         macros into the GNU _D_EXACT_NAMLEN.
15674         * lib/savedir.c:  Likewise.
15675         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
15676
15677 2006-07-10  Derek R. Price  <derek@ximbiot.com>
15678         and Paul Eggert  <eggert@cs.ucla.edu>
15679
15680         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
15681         * m4/savedir.m4:
15682         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
15683         macros into the GNU _D_EXACT_NAMLEN.
15684
15685 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15686
15687         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
15688         around the absolute name, to work around a problem with the HP-UX
15689         11.23 native C compiler, reported by Bob Proulx.
15690
15691 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15692
15693         * doc/maintain.texi, make-stds.texi: Sync from
15694         <http://savannah.gnu.org/projects/gnustandards>.
15695
15696 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15697
15698         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
15699
15700 2006-07-09  Jim Meyering  <jim@meyering.net>
15701
15702         * m4/glob.m4: Remove a doubled word in a comment.
15703
15704 2006-07-09  Jim Meyering  <jim@meyering.net>
15705
15706         * lib/argp-pv.c: Remove a doubled word in a comment.
15707         * lib/check-version.c (check_version): Likewise.
15708         * lib/javacomp.c (compile_java_class): Likewise.
15709
15710 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
15711
15712         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
15713         for the benefit of people using Autoconf 2.60.  If you want to
15714         support older Autoconf versions you can copy m4/onceonly_2_57.m4
15715         (or m4/onceonly.m4, if pre-2.57) manually.
15716
15717 2006-07-08  Jim Meyering  <jim@meyering.net>
15718
15719         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
15720         comment.
15721         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
15722         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
15723         comment.
15724
15725 2006-07-08  Jim Meyering  <jim@meyering.net>
15726
15727         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
15728
15729 2006-07-07  Simon Josefsson  <jas@extundo.com>
15730
15731         * tests/test-crc.c: Change expected crc value, the test vector
15732         were probably computed using the old broken crc.c?
15733
15734 2006-07-06  Simon Josefsson  <jas@extundo.com>
15735
15736         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
15737         now the canonical place for the M4 file).
15738
15739         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
15740         from the sys_socket dependency now.
15741
15742         * modules/inet_pton (Files): Ditto.
15743
15744         * modules/inet_ntop (Files): Ditto.
15745
15746 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
15747
15748         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
15749         not gl_PREREQ_GETUSERSHELL.
15750
15751 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15752
15753         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
15754         with only one argument, for Autoconf 2.60.
15755         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
15756         expand to nothing, so add a shell command to avoid syntax error.
15757         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
15758
15759 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15760
15761         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
15762
15763 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
15764
15765         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
15766         no longer needed.  Check for isblank decl.
15767         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
15768         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
15769         of existence.
15770
15771 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
15772
15773         * lib/getloadavg.c: Use __VMS, not VMS.
15774         * lib/getopt.c: Likewise.
15775         * lib/getpagesize.h: Likewise.
15776         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
15777         and probably does not work.
15778
15779 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
15780
15781         * lib/.cppi-disable: Add wcwidth.
15782         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
15783         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
15784         (ISGRAPH): Remove.  All uses changed to isgraph.
15785         (FOLD) [!defined _LIBC]: Remove special case.
15786         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
15787         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
15788         HAVE_ISBLANK.
15789         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
15790         case.
15791
15792 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
15793
15794         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
15795         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
15796         brackets.  Other minor changes to suppress some compiler
15797         warnings.
15798
15799 2006-07-06  Derek R. Price  <derek@ximbiot.com>
15800         and Paul Eggert  <eggert@cs.ucla.edu>
15801
15802         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
15803         of invoking obsolescent AC_HEADER_DIRENT macro.
15804         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
15805         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
15806         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
15807         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
15808         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
15809         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
15810         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
15811         * m4/readdir.m4: Remove; no longer needed.
15812
15813 2006-07-06  Derek R. Price  <derek@ximbiot.com>
15814         and Paul Eggert  <eggert@cs.ucla.edu>
15815
15816         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
15817         Don't worry about this obsolete case any more.
15818         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
15819         directories.
15820         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
15821         worry about this obsolete case any more.
15822         * lib/fts.c: Likewise.
15823         * lib/getcwd.c: Likewise.
15824         * lib/glob.h: Likewise.
15825         * lib/savedir.c: Likewise.
15826
15827 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
15828
15829         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
15830         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
15831         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
15832         needed.
15833         All uses removed.
15834         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
15835         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
15836         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
15837         needed.
15838         * m4/getdate.m4 (gl_GETDATE): Likewise.
15839         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
15840         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
15841         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
15842         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
15843         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
15844         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
15845         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
15846         needed.
15847
15848 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
15849
15850         * lib/memcasecmp.c: Include <limits.h>.
15851         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
15852         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
15853         Don't assume isdigit succeeds only on '0' through '9'.
15854
15855 2006-07-05  Eric Blake  <ebb9@byu.net>
15856
15857         * modules/getaddrinfo (Depends-on): Add snprintf.
15858
15859 2006-07-05  Eric Blake  <ebb9@byu.net>
15860
15861         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
15862         to avoid 'header present but could not be compiled' on cygwin.
15863
15864 2006-07-05  Eric Blake  <ebb9@byu.net>
15865
15866         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
15867         missing from netdb.h.
15868         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
15869
15870 2006-07-05  Derek R. Price  <derek@ximbiot.com>
15871
15872         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
15873         no longer needed.
15874         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
15875         * m4/getdate.m4 (gl_GETDATE): Likewise.
15876         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
15877         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
15878         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
15879         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
15880         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
15881
15882 2006-07-05  Derek R. Price  <derek@ximbiot.com>
15883
15884         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
15885         All uses of is_space replaced by isspace.
15886         * lib/exit.h: Don't talk about STDC_HEADERS.
15887         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
15888         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
15889         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
15890         replaced by isprint etc.
15891         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
15892         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
15893         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
15894         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
15895         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
15896         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
15897
15898 2006-07-05  Bruno Haible  <bruno@clisp.org>
15899
15900         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
15901         the function exists, before testing against AIX.
15902         Reported by Martin Lambers <marlam@marlam.de>.
15903
15904 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
15905
15906         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
15907         From Mark D. Baushke.
15908
15909 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
15910
15911         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
15912         to the absolute name, not just one, to bypass Sun C 5.8's
15913         "warning: #include of /usr/include/... may be non-portable".
15914
15915 2006-07-04  Eric Blake  <ebb9@byu.net>
15916
15917         * modules/dirname-tests: New test module.
15918         * tests/test-dirname.c: New file, replacing dirname.c
15919         TEST_DIRNAME section that was recently deleted.
15920
15921 2006-07-04  Bruno Haible  <bruno@clisp.org>
15922
15923         Assume ANSI C header files and <ctype.h> functions.
15924         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
15925         (mbsnwidth): Use isprint, iscntrl instead.
15926
15927 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
15928
15929         Merge from coreutils.
15930         * MODULES.html.sh: Add xstrtold.
15931         * modules/xstrtold: New file.
15932         * modules/cycle-check (Files): Add lib/same-inode.h.
15933         * modules/dirname (Files): Add m4/double-slash-root.m4.
15934         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
15935         * modules/mkdir-p (Files): Add lib/same-inode.h.
15936         * modules/same (Files): Add lib/same-inode.h.
15937
15938 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
15939
15940         * m4/absolute-header.m4: Renamed from full-header-path.m4.
15941         This is to keep the terminology clean; POSIX talks about
15942         "absolute pathnames", not "full pathnames", but the GNU
15943         Coding Standards say to use "path" for something else;
15944         so use "absolute" to keep both sides happy.
15945         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
15946         Set gl_absolute_header, not gl_full_header_path.
15947         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
15948         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
15949         All uses changed.
15950
15951         Merge from coreutils.
15952
15953         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
15954
15955         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
15956         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
15957         want to require the building of c-strtod.o.
15958         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
15959         needs -lm directly.
15960         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
15961
15962         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
15963
15964         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
15965         --as-needed option if available.  Problem reported by Albert Chin in
15966         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
15967         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
15968         cc merely issues a bunch of annoying warnings for --as-needed
15969         (this problem was reported by Bob Proulx).  Also, try linking with
15970         -lm to detect a bug in binutils 2.16 (this problem was reported
15971         by Ralf Wildenhues).
15972
15973         2006-06-18  Jim Meyering  <jim@meyering.net>
15974
15975         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
15976         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
15977         macro.
15978         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
15979         also check for glibc-2.4's abort-inducing bug.
15980
15981         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
15982         Low-probability clean-up should be to use rmdir to get rid of
15983         the just-created directory, not unlink.
15984
15985         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
15986         configure fail, and request a bug report to inform us about it.
15987         Add a comment that, barring reports to the contrary, in 2007 we'll
15988         assume ftruncate is universally available.
15989
15990         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
15991
15992         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
15993
15994         2006-03-12  Jim Meyering  <jim@meyering.net>
15995
15996         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
15997         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
15998         * m4/same.m4 (gl_SAME): Likewise.
15999         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
16000
16001         2006-03-11  Eric Blake  <ebb9@byu.net>
16002
16003         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
16004         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
16005         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
16006         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
16007
16008 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
16009
16010         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
16011         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
16012         reported by Mark D. Baushke, one in
16013         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
16014
16015         Merge from coreutils.
16016
16017         * lib/.cppi-disable: Add stdint_.h.
16018         * lib/.cvsignore: Add stdint.h.
16019
16020         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
16021
16022         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
16023         both double and long double versions.
16024         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
16025         * lib/xstrtold.c: New file.
16026         * lib/xstrtod.h (xstrtold): New decl.
16027
16028         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
16029
16030         * lib/filemode.c (setst): Remove.
16031         (strmode): Rewrite to avoid setst.  This makes the code shorter,
16032         (arguably) clearer, and the generated code is a bit smaller on my
16033         Debian GNU/Linux stable x86 host.
16034
16035         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
16036
16037         * lib/filemode.c: Include "filemode.h" first, to test the interface.
16038         Assume that filemode.h includes sys/types.h and sys/stat.h.
16039         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
16040         (ftypelet): Reorder to put common cases first, for efficiency.
16041         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
16042         to do 'M'.
16043         (strmode): Renamed from mode_string, and now stores 12 bytes instead
16044         of 10, for compatibility with FreeBSD.  All callers changed.
16045         (filemodestring): Now stores 12 bytes instead of 10, and sets file
16046         types that can't be deduced solely from st_mode.  First arg is now a
16047         const pointer.
16048         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
16049         (strmode): Renamed from mode_string.
16050         (filemodestring): New decl.
16051         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
16052         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
16053         needed.
16054         (S_ISPORT, S_ISWHT): New macros, if not already defined.
16055
16056         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
16057
16058         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
16059         fsusage.h now does that.  Include fsusage.h first, to test interface.
16060         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
16061         at most one method (the old code could have generated decls that
16062         didn't conform to C89, not that this was ever exercised).
16063         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
16064
16065         2006-03-19  Jim Meyering  <jim@meyering.net>
16066
16067         Work even in a chroot where d_ino values for entries in "/"
16068         don't match the stat.st_ino values for the same names.
16069         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
16070         number, iterate through all entries again, using lstat instead.
16071         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
16072         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
16073
16074         * lib/getcwd.c (__getcwd): Clarify a comment.
16075         Use memcpy in place of a call to strcpy.
16076
16077         2006-03-12  Jim Meyering  <jim@meyering.net>
16078
16079         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
16080         matches that of the current directory (which we're about to chdir ".."
16081         out of), then save the dev-ino of the parent, instead.
16082
16083         * lib/same-inode.h (SAME_INODE): New file/macro.
16084         * lib/chdir-safer.c (SAME_INODE): Remove definition.
16085         Include "same-inode.h", instead.
16086         * lib/same.c: Likewise.
16087         * lib/cycle-check.h: Include "same-inode.h".
16088         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
16089         * lib/cycle-check.c (SAME_INODE): Remove definition.
16090         * lib/root-dev-ino.h: Include "same-inode.h".
16091
16092         2006-03-11  Eric Blake  <ebb9@byu.net>
16093
16094         * lib/same.c (same_name): s/base_name/last_component/
16095         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
16096         * lib/filenamecat.c (file_name_concat): Likewise.
16097
16098         2006-03-11  Eric Blake  <ebb9@byu.net>,
16099                     Paul Eggert  <eggert@cs.ucla.edu>
16100
16101         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
16102         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
16103         drive prefix.
16104         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
16105         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
16106         (last_component): New method.
16107         * lib/dirname.c (dir_len): Determine when drive letters need a
16108         subsequent slash.  Preserve // when it is special.
16109         (dir_name): Don't append dot when drive letter is absolute.
16110         [TEST_DIRNAME]: Move into a full-blown gnulib test.
16111         * lib/basename.c (base_name): New semantics - malloc the result.
16112         Preserve // when it is special.  Preserve relative files that look
16113         like drive letters.
16114         (base_len): Preserve // when it is special.
16115         (last_component): New method, similar to old base_name semantics.
16116         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
16117         base_name.  Strip redundant slashes from ///.
16118
16119 2006-07-03  Jim Meyering  <jim@meyering.net>
16120
16121         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
16122         macro is used before the first cycle_check call.
16123
16124 2006-07-03  Eric Blake  <ebb9@byu.net>
16125
16126         * modules/dirname (Depends-on): Add xstrndup.
16127
16128 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
16129
16130         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
16131         test cases, so that config.log is a bit easier to follow.
16132
16133 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
16134
16135         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
16136         both are 64 bits, since this seems to be the tradition, and this
16137         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
16138         we ever run into a host that prefers long long to long in this
16139         case, we'll need another configure-time test.  Problem reported by
16140         Jim Meyering.
16141
16142 2006-07-02  Eric Blake  <ebb9@byu.net>
16143
16144         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
16145
16146 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
16147
16148         * modules/inttypes (Depends-on): No longer depends on stdint.
16149         * modules/stdint (Description): Say more about assumptions.
16150         Say that the fast types might differ.  Say macros are used.
16151         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
16152         (Makefile.am): Revise list of substituted symbols to match
16153         new stdint.m4.
16154         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
16155         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
16156         * tests/test-stdint.c (verify_same_types)
16157         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
16158         the code conforms to C99/C89.
16159         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
16160         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
16161
16162 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
16163
16164         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
16165         but fix a bug, by requiring at least 64 bits.
16166         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
16167         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
16168         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
16169         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
16170
16171         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
16172         changes.  Make 2.59 a prerequisite.  Check and substitute for
16173         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
16174         inttypes.h.  Do not use special include files; just use the
16175         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
16176         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
16177         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
16178         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
16179         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
16180         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
16181         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
16182         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
16183         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
16184         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
16185         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
16186         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
16187         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
16188         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
16189         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
16190         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
16191         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
16192         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
16193         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
16194         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
16195         WINT_MAX.  Check for C99 conformance more strictly, by detecting
16196         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
16197         not check for things that C99 does not require, e.g., int8_t.  If
16198         a test isn't needed unless <stdint.h> isn't working, and is
16199         unlikely to be needed for any other reason, then don't do it
16200         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
16201         size_t, since we assume C89 freestanding at least.  Do not check
16202         for sig_atomic_t, wchar_t, or wint_t, since the code now does
16203         the right thing even if the types are not defined.  Instead use:
16204         (gl_STDINT_TYPE_PROPERTIES): New macro.
16205         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
16206         testing whether <sys/types.h> clashes, as Autoconf does this for
16207         us now.  All uses removed.
16208         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
16209         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
16210         (gl_CHECK_TYPE_SAME):
16211         Remove; no longer needed.
16212         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
16213         exists, since we'll return 0 anyway in that case.
16214         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
16215
16216 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
16217
16218         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
16219         possible collision with system files.
16220         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
16221         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
16222         WCHAR_MIN and WCHAR_MAX in this case.
16223         (<stddef.h>): Do not include; no longer needed.
16224         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
16225         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
16226         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
16227         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
16228         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
16229         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
16230         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
16231         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
16232         !defined(__c99))]: Include in this case too, since it's harmless
16233         now.
16234         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
16235         dangerous to do so.
16236         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
16237         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
16238         (_STDINT_MIN, _STDINT_MAX): New macros.
16239         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
16240         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
16241         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
16242         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
16243         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
16244         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
16245         macros, not typedefs; this simplifies things quite a bit.
16246         Use long int for all types narrower than int64_t.
16247         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
16248         Define in terms of long long int or int64_t or long int,
16249         not int64_t or int32_t.  This saves some compile-time testing.
16250         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
16251         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
16252         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
16253         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
16254         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
16255         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
16256         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
16257         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
16258         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
16259         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
16260         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
16261         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
16262         undef any previous version and define our own version, for
16263         simplicity and consistency with the new macros for types.
16264         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
16265         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
16266         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
16267         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
16268         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
16269         @WINT_T_SUFFIX@ to keep things simple here.
16270         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
16271         Simplify by assuming typical 8/16/32/64 host, since we're
16272         already doing that elsewhere anyway.
16273         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
16274         and assume long long int is 64 bits if available.  This
16275         speeds up 'configure'.
16276
16277 2006-07-01  Eric Blake  <ebb9@byu.net>
16278
16279         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
16280         Reported by Andreas Buening.
16281
16282 2006-07-01  Eric Blake  <ebb9@byu.net>
16283
16284         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
16285
16286 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
16287
16288         * lib/getaddrinfo.c: fixed typo
16289
16290 2006-06-29  Jim Meyering  <jim@meyering.net>
16291
16292         * modules/strftime (Maintainer): Add my name, since with the
16293         FPRINTFTIME changes strftime.c has forked from glibc.
16294
16295 2006-06-29  Eric Blake  <ebb9@byu.net>
16296
16297         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
16298
16299 2006-06-29  Eric Blake  <ebb9@byu.net>
16300
16301         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
16302
16303 2006-06-29  Eric Blake  <ebb9@byu.net>
16304
16305         * lib/stat_.h: New file.
16306
16307 2006-06-29  Eric Blake  <ebb9@byu.net>
16308
16309         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
16310         unused static function.
16311
16312 2006-06-29  Eric Blake  <ebb9@byu.net>
16313
16314         * doc/functions.texi (Function Portability): Document missing lstat
16315         on mingw.
16316
16317 2006-06-29  Eric Blake  <ebb9@byu.net>
16318
16319         * MODULES.html.sh: Add sys_stat.
16320         * modules/sys_stat: New module.
16321         * modules/mkstemp (Depends-on): Add sys_stat.
16322
16323 2006-06-29  Derek R. Price  <derek@ximbiot.com>
16324
16325         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
16326
16327 2006-06-29  Derek R. Price  <derek@ximbiot.com>
16328
16329         * m4/c-bs-a.m4: Removed.
16330
16331 2006-06-29  Derek R. Price  <derek@ximbiot.com>
16332
16333         * lib/strftime.c: Assume strftime() exists.
16334
16335 2006-06-29  Derek Price  <derek@ximbiot.com>
16336
16337         * modules/c-bs-a: Removed - \a is C89.
16338         * MODULES.html.sh: Remove c-bs-a.
16339
16340 2006-06-29  Bruno Haible  <bruno@clisp.org>
16341
16342         * modules/wcwidth (License): Change to LGPL.
16343
16344 2006-06-28  Simon Josefsson  <jas@extundo.com>
16345
16346         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
16347         on _WIN32.
16348
16349         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
16350         getnameinfo.
16351
16352 2006-06-28  Simon Josefsson  <jas@extundo.com>
16353
16354         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
16355
16356 2006-06-28  Simon Josefsson  <jas@extundo.com>
16357
16358         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
16359         functions there.  It will succeed on Windows XP, but on Windows
16360         2000 and (presumably) earlier, it will fail, and use the internal
16361         re-implementation.
16362         (use_win32_p): New function.
16363         (getaddrinfo): Use strtoul on servname, to support numeric ports.
16364         Support AI_NUMERICSERV to disable getservbyname.
16365         (getnameinfo): New function, only supports
16366         NI_NUMERICHOST|NI_NUMERICSERV for now.
16367
16368         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
16369         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
16370         getnameinfo.
16371
16372 2006-06-28  Eric Blake  <ebb9@byu.net>
16373
16374         * modules/wcwidth: New file.
16375         * modules/mbchar (Depends-on): Add wcwidth.
16376         * modules/mbswidth (Depends-on): Add wcwidth.
16377         * MODULES.html.sh: Add wcwidth.
16378
16379 2006-06-28  Eric Blake  <ebb9@byu.net>
16380
16381         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
16382         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
16383
16384 2006-06-28  Eric Blake  <ebb9@byu.net>
16385
16386         * lib/xvasprintf.h: Fix comments.
16387
16388 2006-06-28  Eric Blake  <ebb9@byu.net>
16389
16390         * lib/mbchar.h (wcwidth): Include wcwidth.h.
16391         * lib/mbswidth.c (wcwidth): Move from here...
16392         * lib/wcwidth.h: ...to this new file.
16393
16394 2006-06-28  Derek R. Price  <derek@ximbiot.com>
16395
16396         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
16397
16398         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
16399         it's obsolete.
16400         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
16401
16402 2006-06-28  Derek R. Price  <derek@ximbiot.com>
16403
16404         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
16405         Autoconf 2.60 says this stuff was obsolete.
16406
16407 2006-06-28  Bruno Haible  <bruno@clisp.org>
16408
16409         * modules/wcwidth (Files): Add m4/wchar_t.m4.
16410
16411 2006-06-28  Bruno Haible  <bruno@clisp.org>
16412
16413         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
16414         gt_TYPE_WCHAR_T.
16415
16416 2006-06-28  Bruno Haible  <bruno@clisp.org>
16417
16418         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
16419         declaration for wcwidth.
16420         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
16421
16422 2006-06-28  Bruno Haible  <bruno@clisp.org>
16423
16424         * lib/mkdtemp.c [MINGW]: Include <io.h>.
16425         (mkdir): Define using _mkdir.
16426
16427 2006-06-28  Bruno Haible  <bruno@clisp.org>
16428
16429         * lib/getaddrinfo.h: Fix POSIX URL.
16430         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
16431         _WIN32.
16432         (use_win32_p): Make static.
16433         (getaddrinfo): Reject service name if it is empty or does not consist
16434         solely of decimal digits, or if its value is > 65535.
16435         (getnameinfo): Remove useless casts.
16436
16437 2006-06-27  Simon Josefsson  <jas@extundo.com>
16438
16439         * modules/sys_select: New file, suggested by Bruno Haible, Paul
16440         Eggert and Martin Lambers.
16441
16442 2006-06-27  Simon Josefsson  <jas@extundo.com>
16443
16444         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
16445         Eggert and Martin Lambers.
16446
16447 2006-06-27  Bruno Haible  <bruno@clisp.org>
16448
16449         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
16450         result to 0, not to empty.
16451         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
16452
16453 2006-06-27  Bruno Haible  <bruno@clisp.org>
16454
16455         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
16456
16457 2006-06-26  Simon Josefsson  <jas@extundo.com>
16458
16459         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
16460         present.
16461
16462 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
16463
16464         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
16465         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
16466         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
16467
16468 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
16469
16470         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
16471
16472 2006-06-26  Bruno Haible  <bruno@clisp.org>
16473
16474         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
16475
16476 2006-06-26  Bruno Haible  <bruno@clisp.org>
16477
16478         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
16479
16480 2006-06-26  Bruno Haible  <bruno@clisp.org>
16481
16482         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
16483         SGI C compiler in pre-C99 mode.
16484         Suggested by Mark D. Baushke and Larry Jones.
16485
16486 2006-06-26  Bruno Haible  <bruno@clisp.org>
16487
16488         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
16489         WCHAR_MAX.
16490         Reported by Mark D. Baushke and Larry Jones.
16491
16492 2006-06-26  Bruno Haible  <bruno@clisp.org>
16493
16494         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
16495         in pre-C99 mode.
16496         Suggested by Mark D. Baushke and Larry Jones.
16497
16498 2006-06-23  Simon Josefsson  <jas@extundo.com>
16499             Bruno Haible  <bruno@clisp.org>
16500
16501         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
16502         Emit mostlyclean-local rule.
16503         (func_emit_tests_Makefile_am): Likewise.
16504         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
16505
16506 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
16507
16508         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
16509
16510 2006-06-23  Bruno Haible  <bruno@clisp.org>
16511
16512         * tests/test-stdint.c: Update to match ISO C 99 Technical
16513         Corrigendum 1.
16514
16515 2006-06-23  Bruno Haible  <bruno@clisp.org>
16516
16517         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
16518
16519 2006-06-23  Bruno Haible  <bruno@clisp.org>
16520
16521         * lib/stdint_.h: Treat IRIX like OpenBSD.
16522
16523 2006-06-23  Bruno Haible  <bruno@clisp.org>
16524
16525         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
16526         ISO C 99 Technical Corrigendum 1.
16527
16528 2006-06-22  Simon Josefsson  <jas@extundo.com>
16529
16530         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
16531         MinGW.
16532
16533 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16534
16535         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
16536         needed.  Some compiler complained about some of them.  Problem reported
16537         by Larry Jones in
16538         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
16539
16540 2006-06-21  Simon Josefsson  <jas@extundo.com>
16541
16542         * tests/test-getaddrinfo.c: New file.
16543
16544         * modules/getaddrinfo-tests: New file.
16545
16546         * MODULES.html.sh: Add inet_pton.
16547
16548         * modules/inet_pton: New file.
16549
16550 2006-06-21  Simon Josefsson  <jas@extundo.com>
16551
16552         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
16553         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
16554         of using the (limited) gnulib implementation on Windows XP.
16555
16556         * m4/inet_pton.m4: New file.
16557
16558 2006-06-21  Simon Josefsson  <jas@extundo.com>
16559
16560         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
16561         variable.
16562
16563         * lib/socket_.h: Don't define WINVER.
16564
16565         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
16566         slightly modified to work in gnulib.
16567
16568 2006-06-21  Simon Josefsson  <jas@extundo.com>
16569
16570         * doc/gnulib.texi (Windows sockets): Add.
16571
16572 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
16573
16574         * lib/read-file.c (fread_file): Start with buffer allocation of
16575         0 bytes rather than 1 byte; this simplifies the code.
16576         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
16577         code to free buffer and save/restore errno.
16578         (internal_read_file): Remove unused local.
16579
16580 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
16581
16582         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
16583         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
16584         Problem reported by Denis Excoffier in
16585         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
16586
16587 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16588
16589         * modules/sys_socket, modules/socklen: Include sys/types since
16590         FreeBSD 4.x's sys/socket.h needs it.
16591
16592 2006-06-19  Simon Josefsson  <jas@extundo.com>
16593
16594         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
16595
16596 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
16597
16598         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
16599
16600 2006-06-19  Bruno Haible  <bruno@clisp.org>
16601
16602         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
16603         and FULL_PATH_INTTYPES_H in angle brackets.
16604         Reported by Mark D. Baushke <mdb@gnu.org>.
16605
16606 2006-06-17  Eric Blake  <ebb9@byu.net>
16607
16608         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
16609         errno.
16610
16611 2006-06-17  Bruno Haible  <bruno@clisp.org>
16612
16613         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
16614         <sys/inttypes.h>.
16615
16616 2006-06-17  Bruno Haible  <bruno@clisp.org>
16617
16618         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
16619         whether errno is declared. Assume <errno.h> declares errno.
16620
16621 2006-06-17  Bruno Haible  <bruno@clisp.org>
16622
16623         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
16624
16625 2006-06-17  Bruno Haible  <bruno@clisp.org>
16626
16627         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
16628         problem on Solaris 2.5.1.
16629
16630 2006-06-16  Eric Blake  <ebb9@byu.net>
16631
16632         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
16633         * lib/unicodeio.c [!defined errno]: Likewise.
16634         * lib/strtol.c [!defined errno]: Likewise.
16635         * lib/strtod.c [!defined errno]: Likewise.
16636
16637 2006-06-15  Eric Blake  <ebb9@byu.net>
16638
16639         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
16640
16641 2006-06-15  Eric Blake  <ebb9@byu.net>
16642
16643         * config/srclist.txt (ssize_t.m4): Lose sync.
16644
16645 2006-06-15  Bruno Haible  <bruno@clisp.org>
16646
16647         * modules/stdint (Files): Include m4/full-header-path.m4,
16648         m4/size_max.m4, m4/wchar_t.m4.
16649         (Makefile.am): Many more substitutions.
16650         * modules/stdint-tests: New file.
16651         * tests/test-stdint.c: New file.
16652
16653 2006-06-15  Bruno Haible  <bruno@clisp.org>
16654
16655         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
16656         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
16657         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
16658         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
16659         gl_CHECK_TYPE_SAME): New macros.
16660
16661 2006-06-15  Bruno Haible  <bruno@clisp.org>
16662
16663         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
16664
16665 2006-06-15  Bruno Haible  <bruno@clisp.org>
16666
16667         * lib/stdint_.h: Rewritten to be fully auto-configured.
16668         Fixes bug on HP-UX/IA64.
16669
16670 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
16671
16672         * lib/getdate.y (__attribute__): Don't define if already defined.
16673         Problem reported by Larry Jones.
16674         * lib/utimens.c (__attribute__): Likewise.
16675
16676 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
16677
16678         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
16679         reported by Andreas Schwab.
16680
16681 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16682             Bruno Haible  <bruno@clisp.org>
16683
16684         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
16685         check for the declaration of strnlen and a run test that exposes the
16686         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
16687         rpl_strndup.
16688
16689 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16690             Bruno Haible  <bruno@clisp.org>
16691
16692         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
16693
16694 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16695
16696         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
16697         compile test, for Tru64 4.0D.
16698
16699 2006-05-28  Karl Berry  <karl@gnu.org>
16700
16701         * config/srclist.txt (printf-args.c): lose sync.
16702
16703 2006-05-26  Martin Lambers  <marlam@marlam.de>
16704
16705         * lib/getpass.c: Updates the test for the native W32 API, and adds
16706         missing includes, thus fixing compilation warnings.
16707
16708 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
16709
16710         * lib/exclude.c (exclude_fnmatch): New function.
16711         (excluded_file_name): Call exclude_fnmatch.
16712         * lib/exclude.h (excluded_file_name): New prototype
16713
16714 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
16715
16716         * lib/tempname.c (small_open, large_open): New macros.
16717         (__open, __open64) [!_LIBC]: Remove.
16718         (__gen_tempname): Use small_open and large_open instead of __open
16719         and __open64.  This fixes a portability bug on HP-UX 11.11i
16720         reported by Simon Wing-Tang in
16721         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
16722
16723 2006-05-24  Bruno Haible  <bruno@clisp.org>
16724
16725         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
16726         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
16727         Reported by Thorsten Maerz <torte@netztorte.de> via
16728         Aaron Stone <aaron@serendipity.cx>.
16729
16730 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
16731
16732         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
16733         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
16734         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
16735         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
16736         not really conditional on the cache.
16737         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
16738
16739 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
16740
16741         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
16742         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
16743         (my_usleep): Don't mishandle maximum value.
16744
16745 2006-05-19  Jim Meyering  <jim@meyering.net>
16746
16747         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
16748
16749 2006-05-17  Bruno Haible  <bruno@clisp.org>
16750
16751         Cygwin portability.
16752         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
16753
16754 2006-05-17  Bruno Haible  <bruno@clisp.org>
16755
16756         * lib/stdint_.h: Fix recognition of Cygwin.
16757
16758 2006-05-15  Bruno Haible  <bruno@clisp.org>
16759
16760         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
16761         on libtool patch by Ralf Wildenhues.
16762
16763 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
16764
16765         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
16766         test for C99 conformance; (bool) 0.5 is an integer constant
16767         expression, but (bool) -0.5 is not.  Problem reported by Fedor
16768         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
16769
16770 2006-05-11  Simon Josefsson  <jas@extundo.com>
16771
16772         * m4/xvasprintf.m4: Fix obvious typo.
16773
16774 2006-05-11  Jim Meyering  <jim@meyering.net>
16775
16776         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
16777         James Lemley.
16778
16779 2006-05-10  Simon Josefsson  <jas@extundo.com>
16780
16781         * lib/md4.c: Typo fix, update copyright years.
16782         (K1, K2): Don't use L because it turn computations into 64-bit on
16783         64-bit platforms.
16784
16785 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
16786
16787         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
16788         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
16789         unwanted sign propagation, e.g., on hosts with 64-bit int.
16790         There still are some problems with reeelly weird theoretical hosts
16791         (e.g., 33-bit int) but it's not worth worrying about now.
16792         * lib/sha1.c (rol): Likewise.
16793         (K1, K2, K3, K4): Remove unnecessary L suffix.
16794
16795 2006-05-10  Bruno Haible  <bruno@clisp.org>
16796
16797         * lib/des.c: Cast to avoid warnings.
16798
16799 2006-05-09  Bruno Haible  <bruno@clisp.org>
16800
16801         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
16802         (Depends-on): Depend also on xsize, stdarg.
16803         (configure.ac): Add gl_XVASPRINTF.
16804
16805 2006-05-09  Bruno Haible  <bruno@clisp.org>
16806
16807         * m4/xvasprintf.m4: New file.
16808
16809 2006-05-09  Bruno Haible  <bruno@clisp.org>
16810
16811         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
16812         (EOVERFLOW): Define fallback value.
16813         (xstrcat): New function.
16814         (xvasprintf): Recognize the special case of a string concatenation.
16815
16816 2006-05-08  Eric Blake  <ebb9@byu.net>
16817
16818         * gnulib-tool (func_version): Base copyright year on CVS date.
16819         (func_emit_copyright_notice): New function.
16820         (func_emit_lib_Makefile_am): Use it.
16821         (func_emit_tests_Makefile_am): Likewise.
16822         (func_import): Likewise.
16823
16824 2006-05-08  Bruno Haible  <bruno@clisp.org>
16825
16826         * modules/stdarg: New file.
16827         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
16828
16829 2006-05-08  Bruno Haible  <bruno@clisp.org>
16830
16831         * m4/stdarg.m4: New file, from GNU gettext.
16832
16833 2006-05-08  Bruno Haible  <bruno@clisp.org>
16834
16835         * config/srclist.txt (build-aux/config.rpath): different from latest
16836         release.
16837
16838 2006-05-08  Bruno Haible  <bruno@clisp.org>
16839
16840         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
16841
16842 2006-05-05  Jim Meyering  <jim@meyering.net>
16843
16844         * m4/warning.m4: New file, derived from bison's file by the same name.
16845
16846 2006-05-03  Bruno Haible  <bruno@clisp.org>
16847
16848         * lib/stdint_.h: Shorter URL.
16849         * lib/inttypes.h: Likewise.
16850
16851 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
16852
16853         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
16854
16855 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
16856
16857         * lib/verify.h: Document the internals better.  Most of this change
16858         was written by Bruno Haible.
16859
16860 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
16861
16862         * doc/verify.texi: New file, partly based on a proposal by
16863         Bruno Haible.
16864
16865 2006-05-02  Bruno Haible  <bruno@clisp.org>
16866
16867         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
16868         test from here...
16869         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
16870
16871 2006-04-29  Bruno Haible  <bruno@clisp.org>
16872
16873         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
16874         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
16875
16876 2006-04-29  Bruno Haible  <bruno@clisp.org>
16877
16878         * gnulib-tool: Make --update option actually work.
16879
16880 2006-04-29  Bruno Haible  <bruno@clisp.org>
16881
16882         * doc/gcd.texi: New file.
16883         * doc/gnulib.texi: Include it.
16884
16885 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
16886
16887         * lib/getdate.y (get_date): When adding relative date, start with the
16888         initial time, not with the result of the first mktime call.
16889
16890 2006-04-25  Bruno Haible  <bruno@clisp.org>
16891
16892         * gnulib-tool (func_import): Output the include directives in three
16893         blocks, sorted separately.
16894         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16895
16896 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
16897
16898         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
16899         to define main with arguments, for C++.  Reported by Eric Blake.
16900         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
16901         Prefer 'int main ()' to 'int main (void)', for C++.
16902         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
16903         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
16904         for 'main', for C99 and C++.
16905
16906 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
16907
16908         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
16909         Don't assume that exit status -1 is valid.
16910         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
16911         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
16912         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
16913         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
16914         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
16915         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
16916         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
16917         functions can be used without declaring them, or that you can
16918         exit with status -1.
16919         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
16920
16921 2006-04-24  Karl Berry  <karl@gnu.org>
16922
16923         * config/srclist.txt (longdouble.m4): sync lost.
16924
16925 2006-04-24  Eric Blake  <ebb9@byu.net>
16926
16927         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
16928
16929 2006-04-24  Bruno Haible  <bruno@clisp.org>
16930
16931         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
16932         poll() implementation in AIX.
16933         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16934
16935 2006-04-24  Bruno Haible  <bruno@clisp.org>
16936
16937         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
16938         assigned exactly once.
16939
16940 2006-04-23  Claudio Fontana  <claudio@gnu.org>
16941             Bruno Haible  <bruno@clisp.org>
16942
16943         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
16944         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
16945         for AM_CPPFLAGS.
16946
16947 2006-04-23  Bruno Haible  <bruno@clisp.org>
16948
16949         * modules/copy-file: Depend on unistd.
16950         * modules/execute: Likewise.
16951         * modules/fatal-signal: Likewise.
16952         * modules/findprog: Likewise.
16953         * modules/mkdtemp : Likewise.
16954         * modules/pipe: Likewise.
16955         * modules/wait-process: Likewise.
16956
16957 2006-04-23  Bruno Haible  <bruno@clisp.org>
16958
16959         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
16960         condition was already detected.
16961         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16962
16963 2006-04-23  Bruno Haible  <bruno@clisp.org>
16964
16965         * lib/copy-file.c: Include <unistd.h> unconditionally.
16966         * lib/execute.c: Likewise.
16967         * lib/fatal-signal.c: Likewise.
16968         * lib/findprog.c: Likewise.
16969         * lib/mkdtemp.c: Likewise.
16970         * lib/pipe.h: Likewise.
16971         * lib/pipe.c: Likewise.
16972         * lib/wait-process.h: Likewise.
16973
16974 2006-04-23  Bruno Haible  <bruno@clisp.org>
16975
16976         * gnulib-tool (func_usage): Fix --import description. Document
16977         --update.
16978         (func_import): Create temporary file in a temporary directory, if
16979         --dry-run is specified. Silence errors from 'grep' when there are no
16980         m4 files in $m4dir.
16981         (func_create_testdir): Silence errors from 'grep' when there are no
16982         m4 files in $m4dir.
16983         Reported by Karl Berry <karl@freefriends.org>.
16984
16985 2006-04-20  Bruno Haible  <bruno@clisp.org>
16986
16987         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
16988         one argument, so that the code will be portable to Autoconf 2.60.
16989         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
16990         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
16991         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
16992
16993 2006-04-19  Derek Price  <derek@ximbiot.com>
16994             Eric Blake  <ebb9@byu.net>
16995
16996         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
16997         rather than "/full/path.h".  Update comment to match.  Shorten &
16998         generalize m4_translit call via AS_TR_CPP.
16999
17000 2006-04-19  Derek Price  <derek@ximbiot.com>
17001             Eric Blake  <ebb9@byu.net>
17002
17003         * lib/inttypes.h: Correct grammar in comment.
17004
17005 2006-04-18  Derek Price  <derek@ximbiot.com>
17006             Paul Eggert  <eggert@cs.ucla.edu>
17007
17008         * modules/inttypes: New file.
17009         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
17010
17011 2006-04-18  Derek Price  <derek@ximbiot.com>
17012             Paul Eggert  <eggert@cs.ucla.edu>
17013
17014         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
17015         New files.
17016
17017 2006-04-18  Derek Price  <derek@ximbiot.com>
17018             Paul Eggert  <eggert@cs.ucla.edu>
17019
17020         * lib/inttypes.h: New file.
17021         * lib/strtoimax.c: Assume <inttypes.h>.
17022
17023 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
17024
17025         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
17026         isn't mounted.  Problem reported by Kir Kolyshkin.
17027
17028 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
17029
17030         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
17031         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
17032         Derek R. Price.
17033         * lib/regex.h (RE_DUP_MAX): Update comment to match current
17034         implementation.
17035
17036 2006-04-12  Eric Blake  <ebb9@byu.net>
17037
17038         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
17039         is now done automatically by the corresponding Autoconf macro.
17040
17041 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
17042
17043         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
17044         time_r.h.
17045
17046 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
17047
17048         Merge regex changes from libc, removing some of our
17049         POSIX-conformance changes that were rejected and redoing them in a
17050         less-intrusive way.
17051
17052         * lib/regcomp.c (re_compile_internal, init_dfa):
17053         Length arg is now size_t, not Idx.  All uses changed.
17054         (peek_token): Forward decl now says internal_function.
17055         (__re_error_msgid, __re_error_msgid_idx):
17056         Now static rather than extern with attribute_hidden.
17057         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
17058         For some reason libc prefers K&R style defns for external functions.
17059         (regerror) [!defined _LIBC]: Likewise.
17060         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
17061         (seek_collating_symbol_entry, lookup_collation_sequence_value):
17062         (build_range_exp, build_collating_symbol):
17063         Use K&R-style defn.
17064         (re_compile_fastmap): Use '\0' to memset, not 0.
17065         (utf8_sb_map): Make the calculations more obvious.
17066         (init_dfa, parse_bracket_exp, build_charclass_op):
17067         Call calloc and cast result, as glibc does.
17068         (init_word_char, fetch_token, peek_token, peek_token_bracket):
17069         (build_range_exp, build_collating_symbol):
17070         Now internal functions.
17071
17072         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
17073
17074         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
17075         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
17076         Don't depend on VMS; depend on __VMS instead, for POSIX
17077         namespace cleanness.
17078         (regoff_t): Define to ssize_t, not long int.
17079
17080         Remove the REG_ macros named below.  Instead, make the old names
17081         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
17082         __USE_GNU_REGEX.
17083         (REG_BACKSLASH_ESCAPE_IN_LISTS):
17084         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
17085         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
17086         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
17087         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
17088         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
17089         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
17090         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
17091         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
17092         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
17093         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
17094         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
17095         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
17096         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
17097         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
17098         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
17099         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
17100         (REG_NREGS):
17101         Remove.  All uses replaced by the old RE_* names.
17102         (RE_BACKSLASH_ESCAPE_IN_LISTS):
17103         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
17104         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
17105         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
17106         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
17107         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
17108         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
17109         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
17110         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
17111         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
17112         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
17113         Don't bother having these macros be independent of each others'
17114         values, since they no longer exist in the POSIX name space.
17115
17116         Rename the following member names back to their old names,
17117         unless !__USE_GNU_REGEX.  All uses changed back.
17118         (buffer): Renamed from re_buffer.
17119         (allocated): Renamed from re_allocated.
17120         (used): Renamed from re_used.
17121         (syntax): Renamed from re_syntax.
17122         (fastmap): Renamed from re_fastmap.
17123         (translate): Renamed from re_translate.
17124         (can_be_null): Renamed from re_can_be_null.
17125         (regs_allocated): Renamed from re_regs_allocated.
17126         (fastmap_accurate): Renamed from re_fastmap_accurate.
17127         (no_sub): Renamed from re_no_sub.
17128         (not_bol): Renamed from re_not_bol.
17129         (not_eol): Renamed from re_not_eol.
17130         (newline_anchor): Renamed from re_newline_anchor.
17131         (num_regs): Renamed from rm_num_regs.
17132         (start): Renamed from rm_start.
17133         (end): Renamed from rm_end.
17134
17135         (free_state): Move up a bit.
17136
17137         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
17138         #define to be empty.
17139         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
17140         when that is what is intended.
17141         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
17142         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
17143         (MAX): New macro.
17144         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
17145         All uses changed back to re_malloc, etc.  It's now the caller's
17146         responsibility to check for overflow; all callers changed.
17147         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
17148         (re_x2nrealloc): Remove.
17149         (free_state): Remove decl.
17150
17151         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
17152         (re_set_registers, re_exec):
17153         Use K&R-style defn.
17154
17155         2006-01-31  Roland McGrath  <roland@redhat.com>
17156
17157         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
17158         Reported by Mike Frysinger <vapier@gentoo.org>.
17159
17160         2006-01-15  Andreas Jaeger  <aj@suse.de>
17161
17162         [BZ #1950]
17163         * lib/regex_internal.c (re_string_reconstruct): Adjust for
17164         build_wcs_upper_buffer change.
17165         (build_wcs_upper_buffer): Change return type.
17166
17167         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
17168
17169         * lib/regex_internal.h: Include <stdint.h> if available.
17170
17171         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
17172
17173         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
17174
17175         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
17176
17177         * lib/regcomp.c: Adjust for changed secondary hash function.
17178
17179         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
17180
17181         * lib/regex.h: Pretty printing.
17182         Clean up namespace a bit.
17183
17184         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
17185
17186         * lib/regexec.c (update_cur_sifted_state, check_arrival,
17187         check_arrival_add_next_nodes): Avoid using uninitialized variable.
17188
17189         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17190                     Ulrich Drepper  <drepper@redhat.com>
17191
17192         [BZ #1302]
17193         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
17194         changed.
17195         (bitset_word_t): Renamed from bitset_word.  All uses changed.
17196
17197         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
17198
17199         [BZ #281]
17200         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
17201         * lib/regcomp.c: Remove unnecessary uses of
17202         unsigned RE_TRANSLATE_TYPE.
17203         * lib/regex_internal.h: Likewise.
17204         * lib/regex_internal.c: Likewise.
17205         * lib/regexec.c: Likewise.
17206         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
17207
17208         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
17209
17210         * lib/regexec.c (find_recover_state): Remove unnecessary
17211         initialization.
17212         (transit_state_bkref): Make DFA a const pointer.
17213         (get_subexp): Likewise.
17214         (check_arrival): Likewise.
17215         (update_cur_sifted_state): Likewise.
17216         (re_search_internal): Likewise.
17217         (prune_impossible_nodes): Likewise.
17218         (acquire_init_state_context): Likewise.
17219         (proceed_next_node): Likewise.
17220         (set_regs): Likewise.
17221         (free_fail_stack_return): Likewise.
17222         (check_arrival_expand_ecl): Mark DFA parameter as const.
17223         (check_arrival_expand_ecl_sub): Likewise.
17224         (check_subexp_limits): Likewise.
17225         (sub_epsilon_src_nodes):  Likewise.
17226         (add_epsilon_src_nodes):  Likewise.
17227         (merge_state_array): Likewise.
17228         (update_regs): Likewise.
17229         (build_trtable): Likewise.
17230         (sift_states_backward): Mark MCTX parameter as const.
17231         (build_sifted_states): Likewise.
17232         (update_cur_sifted_state): Likewise.
17233         (sift_states_mkref): Likewise.
17234         (check_arrival_expand_ecl): Mark eclosure as const.
17235         (check_dst_limits_calc_pos_1): Likewise.
17236         * lib/regex_internal.h (re_match_context_t): Make dfa a const
17237         pointer.
17238
17239         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
17240
17241         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
17242         (transit_state_sb): Likewise.
17243         (transit_state_mb): Likewise.
17244         (sift_states_iter_mb): Likewise.
17245         (check_arrival_add_next_nodes): Likewise.
17246         (check_node_accept_bytes): Change first parameter to pointer-to-const.
17247         [_LIBC] (re_search_2_stub): Use mempcpy.
17248
17249         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
17250         mbrtowc for very simple UTF-8 case.
17251
17252         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
17253         a pointer-to-const.
17254         (re_acquire_state_context): Likewise.
17255         * lib/regex_internal.h: Adjust prototypes.
17256
17257         * lib/regex.c: Prevent using C++ compilers.
17258
17259         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
17260         (re_acquire_state_context): Likewise.
17261
17262 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
17263
17264         * modules/regex (Depends-on): Add ssize_t.
17265
17266 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
17267
17268         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
17269         translation table.
17270
17271 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
17272
17273         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
17274
17275 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
17276             Bruno Haible  <bruno@clisp.org>
17277
17278         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
17279         <sys/types.h> and <inttypes.h>.
17280
17281 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17282
17283         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
17284         `__error_t_defined', so argp.h will not typedef the former.
17285
17286 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
17287
17288         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
17289         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
17290         glibc names.  Even if glibc is changed to conform to POSIX, the
17291         traditional names will be available anyway, since regex depends on
17292         the extensions module.  Also, fix a longstanding typo in the
17293         implementation of Spencer ERE test #75 from grep 2.3.  Problems
17294         reported by Emanuele Giaquinta.  Also, change sense of cached
17295         variable, so that the message makes sense.
17296
17297 2006-03-24  Simon Josefsson  <jas@extundo.com>
17298
17299         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
17300         including some doc fixes.
17301         (base64_encode_alloc): Fix +1 bug on allocation failures.
17302
17303 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17304
17305         * lib/base64.c (base64_encode): Do not read past end of array with
17306         unsanitized input on systems with CHAR_BIT > 8.
17307
17308 2006-03-24  Eric Blake  <ebb9@byu.net>
17309
17310         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
17311
17312 2006-03-22  Karl Berry  <karl@gnu.org>
17313
17314         * config/srclist.txt (*setenv.[ch]): get from coreutils.
17315         * config/srclistvars.sh (COREUTILS): new var.
17316
17317 2006-03-17  Jim Meyering  <jim@meyering.net>
17318
17319         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
17320         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
17321
17322 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
17323
17324         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
17325         no longer needs it.  Instead, check that regoff_t is as least
17326         as wide as ptrdiff_t.
17327
17328         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
17329         so that our regex.h stays compatible with the installed regex.
17330         This is helpful for installers who configure --without-included-regex.
17331         Problem reported by Emanuele Giaquinta.
17332
17333 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
17334
17335         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
17336         Typedef to long int, not to off_, as POSIX will likely change
17337         in that direction.
17338
17339 2006-03-15  Eric Blake  <ebb9@byu.net>
17340
17341         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
17342
17343 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
17344
17345         * lib/argp-help.c (validate_uparams): Fix typo
17346         * lib/argp-parse.c (argp_default_options): Consistently begin help
17347         messages with a lowercase letter.
17348
17349 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
17350
17351         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
17352         overrun buffers and shouldn't be used (much as gets shouldn't be
17353         used).
17354         * lib/time_r.c (asctime_r, ctime_r): Likewise.
17355
17356 2006-03-08  Simon Josefsson  <jas@extundo.com>
17357
17358         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
17359         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17360
17361 2006-03-08  Simon Josefsson  <jas@extundo.com>
17362
17363         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
17364         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17365
17366 2006-03-08  Simon Josefsson  <jas@extundo.com>
17367
17368         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
17369         signal that configure disabled the device.
17370
17371 2006-03-08  Simon Josefsson  <jas@extundo.com>
17372
17373         * build-aux/maint.mk: Fix refresh-po, to handle no translated
17374         languages.
17375
17376 2006-03-07  Simon Josefsson  <jas@extundo.com>
17377
17378         * modules/getopt (Depends-on): Add unistd.
17379
17380         * modules/unistd: New file.
17381
17382 2006-03-07  Simon Josefsson  <jas@extundo.com>
17383
17384         * modules/gc-random: New file.
17385
17386 2006-03-07  Simon Josefsson  <jas@extundo.com>
17387
17388         * m4/unistd_h.m4: New file.
17389
17390 2006-03-07  Simon Josefsson  <jas@extundo.com>
17391
17392         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
17393         test to be side-effect free by storing the result in the cache
17394         variable gl_cv_lib_readline, and moving the assignment of
17395         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
17396         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17397
17398 2006-03-07  Simon Josefsson  <jas@extundo.com>
17399
17400         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
17401         error on missing devices (the functions will return an error).
17402
17403         * m4/gc.m4: Move random stuff to gc-random.m4
17404
17405 2006-03-07  Simon Josefsson  <jas@extundo.com>
17406
17407         * lib/unistd_.h: New file.
17408
17409 2006-03-07  Simon Josefsson  <jas@extundo.com>
17410
17411         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
17412
17413 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
17414
17415         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
17416         Problem reported by Juan Manuel Guerrero.
17417
17418 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
17419
17420         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
17421         the unistd module.
17422         * lib/getlogin_r.c: Likewise.
17423         * lib/getlogin_r.h: Likewise.
17424         * lib/glob.c: Likewise.
17425         * lib/pagealign_alloc.c: Likewise.
17426         * lib/unistd_.h: Remove; no longer needed.
17427
17428 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
17429
17430         * MODULES.html.sh (Support for systems lacking POSIX:2001):
17431         Add unistd.
17432         * modules/c-stack (Depends-on): Add unistd.
17433         * modules/getlogin_r: Likewise.
17434         * modules/glob: Likewise.
17435         * modules/pagealign_alloc: Likewise.
17436         * modules/unistd (Files): Remove lib/unistd_.h.
17437         (EXTRA_DIST): Remove.
17438         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
17439         need unistd_.h.
17440         (MOSTLYCLEANFILES): Remove unistd.h-t.
17441
17442 2006-03-03  Simon Josefsson  <jas@extundo.com>
17443
17444         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
17445
17446 2006-03-03  Simon Josefsson  <jas@extundo.com>
17447
17448         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
17449         libidn and bison.
17450
17451 2006-03-03  Simon Josefsson  <jas@extundo.com>
17452
17453         * build-aux/maint.mk: Add indent target.
17454
17455 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
17456
17457         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
17458         our replacement poll.h in any case, to avoid a differing
17459         declaration from a system header.  Seen on AIX.
17460
17461 2006-03-01  Simon Josefsson  <jas@extundo.com>
17462
17463         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
17464         <kasal@ucw.cz>.
17465
17466 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
17467
17468         * modules/gettime (Depends-on): Add extensions module.
17469         * modules/nanosleep (Depends-on): Likewise.
17470         * modules/settime (Depends-on): Likewise.
17471
17472 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
17473
17474         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
17475         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
17476         pedantically.
17477         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
17478         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
17479
17480         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
17481         not "==".  Reported by Ralf Wildenhues.
17482
17483 2006-03-01  Karl Berry  <karl@gnu.org>
17484
17485         * doc/Copyright/request-*: new files, synced from gnuorg.
17486
17487 2006-03-01  Karl Berry  <karl@gnu.org>
17488
17489         * config/srclist.txt (Copyright/*): new entries.
17490
17491 2006-02-28  Simon Josefsson  <jas@extundo.com>
17492
17493         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
17494
17495 2006-02-27  Simon Josefsson  <jas@extundo.com>
17496
17497         * lib/base64.h: Indent #define's.  From Jim Meyering
17498         <jim@meyering.net>.
17499
17500 2006-02-27  Jim Meyering  <jim@meyering.net>
17501
17502         Revert the change of 2006-02-24, so these files can continue
17503         to be sync'd from gettext.
17504         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
17505         of `config.h'.
17506
17507 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
17508
17509         * modules/intprops: New file.
17510         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
17511         Add intprops.
17512         * modules/getloadavg (Files): Remove lib/intprops.h.
17513         (Depends-on): Add intprops.
17514         * modules/human: Likewise.
17515         * modules/inttostr: Likewise.
17516         * modules/openat: Likewise.
17517         * modules/sig2str: Likewise.
17518         * modules/userspec: Likewise.
17519         * modules/utimecmp: Likewise.
17520         * modules/xnanosleep: Likewise.
17521         * modules/xstrtol: Likewise.
17522
17523 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
17524
17525         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
17526         * modules/lock-tests (TESTS): Use $(EXEEXT).
17527         * modules/tls-tests: Likewise.
17528         * modules/argp-tests: Likewise.
17529         (check_PROGRAMS): New var, replacing...
17530         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
17531
17532 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17533
17534         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
17535         `config.h'.
17536
17537 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
17538
17539         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
17540
17541 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17542
17543         Sync from coreutils.
17544         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
17545         gl_CHDIR_SAFER.
17546
17547 2006-02-22  Jim Meyering  <jim@meyering.net>
17548
17549         Sync from coreutils.
17550         * m4/chdir-safer.m4: New file.
17551
17552 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
17553
17554         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
17555         AT_FDCWD exceeds INT_MAX.
17556         * lib/openat.h (AT_FDCWD): Likewise.
17557
17558 2006-02-17  Eric Blake  <address@hidden>
17559
17560         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
17561
17562 2006-02-16  Simon Josefsson  <jas@extundo.com>
17563
17564         * modules/getaddrinfo (Depends-on): Add sys_socket.
17565
17566 2006-02-15  Simon Josefsson  <jas@extundo.com>
17567
17568         * build-aux/maint.mk: Add dsyntax-check rule.
17569
17570 2006-02-15  Eric Blake  <ebb9@byu.net>
17571
17572         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
17573         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
17574         'present but cannot compile' warnings on cygwin.
17575         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
17576         use ws2tcpip.h if sys/socket.h works.
17577         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
17578         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
17579
17580 2006-02-14  Simon Josefsson  <jas@extundo.com>
17581
17582         * modules/maintainer-makefile (Files): Rename.
17583
17584         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
17585         and (the local) Makefile.cfg to maint-cfg.mk.
17586
17587         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
17588         to the latter.
17589
17590         * modules/maintainer-makefile: New module.
17591
17592         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
17593         severaly stripped to make it possible to build it up from scratch
17594         with reliable tests.
17595
17596         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
17597         fixes to permit overriding the default actions when configure and
17598         makefile are not available.
17599
17600 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
17601
17602         Sync from coreutils.
17603         * modules/lstat (Depends-on): Don't depend on xalloc.
17604         (License): Change from GPL to LGPL, since this is now simply a
17605         replacement for a libc function.
17606
17607 2006-02-14  Jim Meyering  <jim@meyering.net>
17608
17609         Sync from coreutils.
17610
17611         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
17612         failure on deficient systems, and simplify gnulib lgpl dependencies.
17613         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
17614         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
17615
17616         * lib/xalloc-die.c: Remove unused definition of N_.
17617
17618 2006-02-14  Jim Meyering  <jim@meyering.net>
17619
17620         Sync from coreutils.
17621         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
17622         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
17623         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
17624         double-quote uses of that variable, to accommodate the rare case in
17625         which getmntent is available in none of the libraries checked.  This
17626         happens at least on FreeBSD 5.0.
17627
17628 2006-02-13  Simon Josefsson  <jas@extundo.com>
17629
17630         * gnulib-tool (Usage): Fix --import, from
17631         karl@freefriends.org (Karl Berry).
17632
17633 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
17634
17635         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
17636
17637 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
17638
17639         * lib/argp-namefrob.h: Restore changes accidentally lost during the
17640         "autoupdate" on 2005-12-12.
17641
17642 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
17643
17644         * modules/closeout (Depends-on): Remove atexit.
17645
17646 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
17647
17648         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
17649         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
17650
17651 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
17652
17653         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
17654         __EXTENSIONS__ if this causes compilation to fail.  Problem
17655         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
17656         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
17657
17658 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
17659
17660         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
17661         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
17662         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
17663         All uses changed.
17664
17665 2006-01-26  Simon Josefsson  <jas@extundo.com>
17666
17667         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
17668         prototype is visible on mingw32.
17669
17670         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
17671         for mingw32.
17672
17673         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
17674         mingw32).
17675
17676 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
17677
17678         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
17679         attempt to open for write; this always fails, at least on POSIX
17680         hosts.  This reinstates the 2006-01-09 change, which was
17681         inadvertently removed.
17682
17683 2006-01-26  Bruno Haible  <bruno@clisp.org>
17684
17685         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
17686         Reported by Paul Eggert.
17687
17688 2006-01-26  Bruno Haible  <bruno@clisp.org>
17689             Paul Eggert  <eggert@cs.ucla.edu>
17690
17691         * lib/stdbool_.h (_Bool)
17692         [(! (defined __cplusplus || defined __BEOS__)
17693           && !defined __GNUC__
17694           && !(defined __HP_cc || defined __xlc__
17695                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
17696                || defined __sgi))]:
17697         #define to signed char in these cases too; this simplifies
17698         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
17699         etc., separately) and makes it more conservative.
17700
17701 2006-01-25  Simon Josefsson  <jas@extundo.com>
17702
17703         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
17704         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
17705         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
17706
17707 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
17708
17709         * lib/argp-namefrob.h: Bugfix. Remove stray #
17710
17711 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
17712
17713         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
17714         so that we test the test.
17715         Check for yet another HP-UX cc bug involving *bool |= bool.
17716
17717 2006-01-25  Karl Berry  <karl@gnu.org>
17718
17719         * config/srclist.txt (vasnprintf.c): sync lost.
17720
17721 2006-01-25  Jim Meyering  <jim@meyering.net>
17722
17723         Sync from the stable (b5) branch of coreutils:
17724
17725         * lib/fts.c (fts_children): Don't let close() clobber errno from
17726         failed fchdir().
17727
17728         * lib/fts.c (fts_stat): When following a symlink-to-directory,
17729         don't necessarily interpret stat-fails+lstat-succeeds as indicating
17730         a dangling symlink.  That can also happen at least for ELOOP.
17731         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
17732         FYI, this bug predates the inclusion of fts.c in coreutils.
17733
17734         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
17735         in their own block, so pre-c99 compilers don't object.
17736
17737         Avoid the double-free (first in fts_read, second in fts_close) that
17738         would occur when an `active' directory is made inaccessible (e.g.,
17739         via chmod a-x) during a traversal.
17740         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
17741         before returning.  Reproduce this failure by
17742         mkdir -p a/b; cd a; chmod a-x . b
17743         Reported by Stavros Passas.
17744
17745 2006-01-25  Jim Meyering  <jim@meyering.net>
17746
17747         * lib/fileblocks.c: Remove more useless parentheses.
17748         * lib/readutmp.h: Likewise.
17749
17750 2006-01-25  Bruno Haible  <bruno@clisp.org>
17751
17752         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
17753         warnings.
17754         Reported by Paul Eggert.
17755
17756 2006-01-25  Bruno Haible  <bruno@clisp.org>
17757
17758         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
17759         rid of a trap command. For Solaris sh.
17760         Reported by Mark D. Baushke <mdb@gnu.org>.
17761
17762 2006-01-24  Simon Josefsson  <jas@extundo.com>
17763
17764         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
17765         Bruno.
17766
17767 2006-01-24  Karl Berry  <karl@gnu.org>
17768
17769         * config/srclist.txt (argp-namefrob.h): sync lost.
17770
17771 2006-01-24  Jim Meyering  <jim@meyering.net>
17772
17773         * modules/openat (Files): Add lib/intprops.h.
17774         From Mark D. Baushke.
17775
17776 2006-01-24  Jim Meyering  <jim@meyering.net>
17777
17778         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
17779         Reported by Mark D. Baushke.
17780
17781 2006-01-24  Jim Meyering  <jim@meyering.net>
17782
17783         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
17784
17785 2006-01-24  Bruno Haible  <bruno@clisp.org>
17786
17787         * modules/strnlen (Maintainer): Change from glibc to all.
17788
17789 2006-01-24  Bruno Haible  <bruno@clisp.org>
17790
17791         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
17792         Patch by Paul Eggert.
17793
17794 2006-01-24  Bruno Haible  <bruno@clisp.org>
17795
17796         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
17797         already has it.
17798         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
17799         2005-11-26.
17800
17801         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
17802         'signed char' to avoid problems with the built-in _Bool type.
17803         Reported by Paul Eggert on 2005-11-26.
17804
17805 2006-01-24  Bruno Haible  <bruno@clisp.org>
17806
17807         * gnulib-tool (func_import): Avoid constructing complicated sed
17808         expressions inside backquote.
17809         Report and solution by Mark D. Baushke <mdb@gnu.org>.
17810
17811 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
17812
17813         These changes imported from libc.
17814         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
17815         test and two separate function calls.
17816         * lib/strndup.c (__strndup): Add libc_hidden_def.
17817
17818 2006-01-23  Simon Josefsson  <jas@extundo.com>
17819
17820         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
17821         Remove the test_*_SOURCES variable: automake infers it by default.
17822         * modules/tls-tests: Likewise.
17823
17824 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
17825
17826         Work around porting bugs reported by Dieter in
17827         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
17828         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
17829         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
17830         Include "getopt.h" first, to check interface.
17831         (getenv): Declare only if defined HAVE_DECL_GETENV &&
17832         !HAVE_DECL_GETENV.
17833         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
17834         (__strndup): Revert to K&R-style function dfns, the glibc style.
17835         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
17836         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
17837         Include strnlen.h first, to get prototype properly.
17838         (strnlen): Renamed from __strnlen.
17839         Remove weak alias.
17840
17841 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
17842
17843         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
17844
17845 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
17846
17847         * config/srclist.txt: Adjust to reflect glibc reorganization.
17848         This affects only comments.
17849
17850 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17851
17852          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
17853          Reported by Bruce Korb <bkorb@gnu.org>.
17854
17855 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
17856
17857         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
17858         to pacify gcc -Wswitch-default.
17859
17860 2006-01-22  Bruno Haible  <bruno@clisp.org>
17861
17862         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
17863         temporary buffer for sprintf, take into account the precision also
17864         for 'd', 'i', 'u', 'o', 'x', 'X'.
17865
17866 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
17867
17868         * modules/argp-tests: New module
17869         * tests/test-argp.c: New file
17870         * tests/test-argp-2.sh: New file
17871
17872 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
17873
17874         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
17875         (__argp_base_name): Removed
17876         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
17877         typo.
17878         (__argp_base_name): Provide macro definition or extern declaration
17879         depending on the configuration
17880
17881 2006-01-20  Simon Josefsson  <jas@extundo.com>
17882
17883         * modules/inet_ntop (Depends-on): Depend on sys_socket.
17884
17885 2006-01-20  Simon Josefsson  <jas@extundo.com>
17886
17887         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
17888
17889 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
17890
17891         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
17892         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
17893         Suggested by Bruno Haible.
17894
17895 2006-01-20  Karl Berry  <karl@gnu.org>
17896
17897         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
17898         until changes propagate, I guess.
17899
17900 2006-01-19  Simon Josefsson  <jas@extundo.com>
17901
17902         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
17903
17904 2006-01-19  Simon Josefsson  <jas@extundo.com>
17905
17906         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
17907
17908 2006-01-19  Simon Josefsson  <jas@extundo.com>
17909
17910         * gnulib-tool: Set check_PROGRAMS.
17911
17912         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
17913         modules/des-tests, modules/gc-arcfour-tests,
17914         modules/gc-arctwo-tests, modules/gc-des-tests,
17915         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
17916         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
17917         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
17918         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
17919         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
17920         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
17921         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
17922         test_*_SOURCES.
17923
17924 2006-01-18  Simon Josefsson  <jas@extundo.com>
17925
17926         * modules/socklen (Depends-on): Depend on sys_socket.
17927
17928 2006-01-18  Simon Josefsson  <jas@extundo.com>
17929
17930         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
17931         modules/des-tests, modules/gc-arcfour-tests,
17932         modules/gc-arctwo-tests, modules/gc-des-tests,
17933         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
17934         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
17935         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
17936         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
17937         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
17938         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
17939         $(EXEEXT) to automake TESTS variable, for mingw32.
17940
17941 2006-01-17  Simon Josefsson  <jas@extundo.com>
17942
17943         * modules/socklen (Include): Need sys/socket.h.
17944
17945 2006-01-17  Bruno Haible  <bruno@clisp.org>
17946
17947         * modules/ssize_t (Include): Add <sys/types.h>.
17948
17949 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
17950
17951         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
17952         it's not portable and it doesn't work with cross-compiles.
17953         Problem reported by Bruno Haible.  Fix missing-$ typo in
17954         'test "gl_cv_ignore_unused_libraries" ...' that prevented
17955         -zignore from being used with Sun's C compiler.
17956
17957 2006-01-12  Simon Josefsson  <jas@extundo.com>
17958
17959         * lib/base64.c: Fix warning, reported by Bruno Haible
17960         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
17961
17962 2006-01-12  Bruno Haible  <bruno@clisp.org>
17963
17964         * modules/ldd: New file.
17965         * build-aux/ldd.sh.in: New file.
17966         * MODULES.html.sh (Support for building libraries and executables): Add
17967         ldd.
17968
17969 2006-01-12  Bruno Haible  <bruno@clisp.org>
17970
17971         * m4/ldd.m4: New file.
17972
17973 2006-01-12  Bruno Haible  <bruno@clisp.org>
17974
17975         * gnulib-tool (func_import, func_create_testdir): Don't go into an
17976         endless loop while replacing $auxdir with build-aux.
17977
17978 2006-01-11  Simon Josefsson  <jas@extundo.com>
17979
17980         * lib/stdint_.h (SIZE_MAX): Add missing (.
17981
17982 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
17983
17984         Sync from coreutils.
17985         * lib/md5.c: Fix commentary typos.
17986         (alignof, UNALIGNED_P): No need for a GCC-specific version.
17987         * lib/md5.h (__attribute__): Remove; unused.
17988         * lib/sha1.c: Fix commentary to match md5 better.
17989         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
17990         so that we don't need to worry about alignment.  All uses changed.
17991         This merges the 2005-10-28 md5 change into sha1.
17992
17993 2006-01-11  Jim Meyering  <jim@meyering.net>
17994
17995         Sync from coreutils.
17996         * lib/md5.c (OP): Fix spacing.
17997
17998 2006-01-11  Bruno Haible  <bruno@clisp.org>
17999
18000         Ensure automatic ordering between gl_LOCK and gl_ARGP.
18001         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
18002         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
18003
18004 2006-01-11  Bruno Haible  <bruno@clisp.org>
18005
18006         Ensure automatic ordering between gl_LOCK and gl_ARGP.
18007         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
18008         the "early" section as well.
18009
18010 2006-01-11  Bruno Haible  <bruno@clisp.org>
18011
18012         Avoid "ar: no archive members specified" error on MacOS X.
18013         * gnulib-tool (func_modules_add_dummy): New function.
18014         (func_import, func_create_testdir): Invoke it.
18015
18016 2006-01-11  Bruno Haible  <bruno@clisp.org>
18017
18018         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
18019         with $auxdir in AC_CONFIG_FILES statements.
18020
18021 2006-01-11  Bruno Haible  <bruno@clisp.org>
18022
18023         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
18024         Initialize also noinst_HEADERS to empty.
18025
18026 2006-01-11  Bruno Haible  <bruno@clisp.org>
18027
18028         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
18029         variables.
18030         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
18031         autoreconf.
18032
18033 2006-01-11  Bruno Haible  <bruno@clisp.org>
18034
18035         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
18036         overridable by the user.
18037         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18038
18039 2006-01-10  Simon Josefsson  <jas@extundo.com>
18040
18041         * modules/sys_socket: New file.
18042
18043 2006-01-10  Simon Josefsson  <jas@extundo.com>
18044
18045         * m4/sys_socket_h.m4: New file.
18046
18047 2006-01-10  Simon Josefsson  <jas@extundo.com>
18048
18049         * lib/socket_.h: New file.
18050
18051 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18052
18053         * modules/readutmp (Maintainer): Add myself.
18054
18055 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18056
18057         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
18058         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
18059         People who are still concerned with buggy memcmp implementations
18060         can invoke gl_FUNC_MEMCMP themselves.
18061
18062 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18063
18064         * lib/regex_internal.h (BITSET_WORD_BITS):
18065         Work around a bug in 64-bit PGC (before version 6.1-2), where the
18066         preprocessor mishandles large unsigned values as if they were signed.
18067         Problem reported by Claudio Fontana in
18068         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
18069
18070 2006-01-10  Jim Meyering  <jim@meyering.net>
18071
18072         Avoid the double-free (first in fts_read, second in fts_close) that
18073         would occur when an `active' directory is made inaccessible (e.g.,
18074         via chmod a-x) during a traversal.
18075         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
18076         before returning.  Reproduce this failure by
18077         mkdir -p a/b; cd a; chmod a-x . b
18078         Reported by Stavros Passas.
18079
18080         Sync from coreutils.
18081         * lib/sha1.c: Tweak grammar in a comment.
18082
18083 2006-01-10  Jim Meyering  <jim@meyering.net>
18084
18085         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
18086         Patch by Joerg Sonnenberger.
18087
18088 2006-01-10  Bruno Haible  <bruno@clisp.org>
18089
18090         * modules/readutmp: Depend on module free.
18091         * modules/strtok_r: Depend on module restrict.
18092
18093 2006-01-10  Bruno Haible  <bruno@clisp.org>
18094
18095         * modules/gettext (configure.ac): Add an invocation of
18096         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
18097
18098 2006-01-10  Bruno Haible  <bruno@clisp.org>
18099
18100         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
18101         Reported by Werner Lemberg <wl@gnu.org>.
18102
18103 2006-01-10  Bruno Haible  <bruno@clisp.org>
18104
18105         * lib/localcharset.c: Update from GNU gettext.
18106
18107 2006-01-10  Bruno Haible  <bruno@clisp.org>
18108
18109         * lib/argp.h (__const): Remove macro. Use const instead.
18110         * lib/argp-fmtstream.h (__const): Likewise.
18111         * lib/glob_.h (__const): Remove macro.
18112         * lib/glob-libc.h: Use const instead of __const.
18113
18114 2006-01-10  Bruno Haible  <bruno@clisp.org>
18115
18116         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
18117         variable.
18118         Needed to avoid an automake error regarding the 'gettext' module.
18119
18120 2006-01-09  Simon Josefsson  <jas@extundo.com>
18121
18122         * modules/inet_ntop (Depends-on): Add restrict.
18123
18124 2006-01-09  Simon Josefsson  <jas@extundo.com>
18125
18126         * modules/gc-rijndael-tests (License): Put under LGPL.
18127
18128         * modules/gc-des-tests (License): Likewise.
18129
18130         * modules/gc-arcfour-tests (License): Likewise.
18131
18132         * modules/gc-arctwo-tests (License): Likewise.
18133
18134         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
18135
18136         * modules/gc-hmac-sha1-tests (Files): Likewise.
18137
18138         * modules/gc-hmac-md5-tests (License): Likewise.
18139
18140         * modules/gc-sha1-tests (License): Likewise.
18141
18142         * modules/gc-md5-tests (License): Likewise.
18143
18144         * modules/gc-md4-tests (License): Likewise.
18145
18146         * modules/gc-md2-tests (License): Likewise.
18147
18148         * modules/gc-tests (License): Likewise.
18149
18150         * modules/des-tests (License): Likewise.
18151
18152         * modules/md4-tests (License): Likewise.
18153
18154         * modules/md2-tests (License): Likewise.
18155
18156 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
18157
18158         Sync from coreutils:
18159
18160         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
18161         * modules/lib-ignore: New file.
18162         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
18163         chdir-safer.m4, lchmod.m4.
18164         * modules/openat: Add mkdirat.c, openat-priv.h.
18165
18166 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
18167
18168         Sync from coreutils.
18169         * m4/lib-ignore.m4: New file.
18170         * m4/lchmod.m4: New file.
18171
18172 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
18173
18174         Sync from coreutils.
18175         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
18176         for write access: POSIX says that must fail.
18177         * lib/fts.c (diropen): Likewise.
18178         * lib/save-cwd.c (save_cwd): Likewise.
18179         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
18180         well, for minor improvements on hosts that lack O_DIRECTORY.
18181         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
18182         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
18183         Fall back on chown if open failed with EACCES.
18184
18185         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
18186         Report an error at compile-time if only a 1-second nominal clock
18187         resolution is found.
18188
18189         * lib/lchmod.h: New file.
18190         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
18191         (make_dir_parents): Use lchown rather than chown, and
18192         lchmod rather than chmod.
18193
18194         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
18195         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
18196         "proc" reported by n0dalus.
18197
18198         * lib/mountlist.c: Include <limits.h>.
18199         (dev_from_mount_options)
18200         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
18201         New function.  It no longer assumes "dev=" has the System V meaning
18202         on Linux (since it doesn't).  It also parses "dev=" more carefully.
18203         (read_file_system_list)
18204         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
18205         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
18206         dev= in that case.
18207
18208         * lib/posixtm.h (PDS_PRE_2000): New macro.
18209         * lib/posixtm.c (year): Arg is now syntax_bits rather than
18210         allow_century.  All usages changed.  Reject dates outside the range
18211         1969-1999 if PDS_PRE_2000 is used.
18212
18213 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
18214
18215         Sync from coreutils.
18216         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
18217         (Time of day items): Mention the possibility of leap seconds.
18218         Problem reported by Dr. David Alan Gilbert.
18219
18220 2006-01-09  Jim Meyering  <jim@meyering.net>
18221
18222         Sync from coreutils.
18223
18224         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
18225
18226         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
18227
18228         * lib/modechange.c (mode_compile): Reject an invalid mode string
18229         that starts with an octal digit.  From Andreas Gruenbacher.
18230
18231         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
18232         and dup to open_safer and dup_safer, respectively.
18233         (openat_permissive): Fix typo in comment.
18234
18235         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
18236         "gettext.h"; either no longer needed or are guaranteed by openat.h.
18237         (_): Remove; no longer needed.
18238         (openat): Renamed from rpl_openat; no need for rpl_openat
18239         since openat.h renames openat for us.
18240         Replace most of the body with a call to openat_permissive,
18241         to avoid duplicate code.
18242         Port to (probably hypothetical) environments were mode_t is
18243         wider than int.
18244         (openat_permissive): Require mode arg, so that we can check
18245         types better.  Put it just after flags.  Change cwd failure
18246         indicator from pointer-to-bool to pointer-to-errno-value.
18247         All callers changed.
18248         Invoke openat_save_fail and/or openat_restore_fail if
18249         cwd_errno is null, so that openat can call us.
18250         (openat_permissive, fdopendir, fstatat, unlinkat):
18251         Simplify errno handling to avoid some duplicate code,
18252         as it's OK to set errno on success.
18253         * lib/openat.h: Revamp code so that function macros depend on
18254         __OPENAT_PREFIX only, not also on AT_FDCWD.
18255         (openat_ro): Remove.  Caller changed to use openat_permissive.
18256         (openat_permissive): Now a macro, if not a function.
18257         (openat_restore_fail, openat_save_fail): Now always functions,
18258         since mkdirat needs them even if __OPENAT_PREFIX is defined.
18259
18260         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
18261         and openat.c.
18262         * lib/mkdirat.c: Include openat-priv.h.
18263         Remove definitions of macros defined therein.
18264         * lib/openat.c: Likewise.
18265
18266         * lib/mkdirat.c (mkdirat): New file and function.
18267         * lib/openat.h (mkdirat): Declare.
18268
18269         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
18270
18271         * lib/openat.h (openat_permissive): Declare.
18272         (openat_ro): Define.
18273
18274         * lib/openat.c (EXPECTED_ERRNO): New macro.
18275         (openat_permissive): New function -- used in remove.c rewrite.
18276         (all functions): Set errno just before returning, only if there
18277         was an actual failure.
18278         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
18279
18280         Emulate openat-family functions using Linux's procfs, if possible.
18281         Idea and some code based on Ulrich Drepper's glibc changes.
18282
18283         * lib/openat.c: (BUILD_PROC_NAME): New macro.
18284         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
18285         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
18286         before falling back on save_cwd and restore_cwd.
18287         (fdopendir, fstatat, unlinkat): Likewise.
18288
18289         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
18290         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
18291
18292         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
18293         as second argument to va_arg.  Otherwise, some versions of gcc
18294         warn that `if this code is reached, the program will abort'.
18295
18296 2006-01-09  Jim Meyering  <jim@meyering.net>
18297
18298         Sync from coreutils.
18299         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
18300         Require openat-priv.h.
18301
18302 2006-01-09  Bruno Haible  <bruno@clisp.org>
18303
18304         * modules/strnlen (Include): Use strnlen.h.
18305
18306 2006-01-09  Bruno Haible  <bruno@clisp.org>
18307
18308         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
18309
18310 2006-01-09  Bruno Haible  <bruno@clisp.org>
18311
18312         * lib/sysexit_.h (EX_OK): New macro.
18313         Suggested by Martin Lambers <marlam@marlam.de>.
18314
18315 2006-01-09  Bruno Haible  <bruno@clisp.org>
18316
18317         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
18318         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
18319
18320 2006-01-09  Bruno Haible  <bruno@clisp.org>
18321
18322         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
18323         numbers.
18324
18325 2006-01-09  Bruno Haible  <bruno@clisp.org>
18326
18327         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
18328         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
18329         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
18330         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
18331
18332 2006-01-09  Bruno Haible  <bruno@clisp.org>
18333
18334         * build-aux/javacomp.sh.in: New file, moved from lib/.
18335         * modules/javacomp-script (Files): Update.
18336         (configure.ac): Add AC_CONFIG_FILES invocation.
18337         (EXTRA_DIST): Remove variable.
18338
18339         * build-aux/javaexec.sh.in: New file, moved from lib/.
18340         * modules/javaexec (Files): Update.
18341         (configure.ac): Add AC_CONFIG_FILES invocation.
18342         (EXTRA_DIST): Remove javaexec.sh.in.
18343
18344         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
18345         * modules/csharpcomp-script (Files): Update.
18346         (configure.ac): Add AC_CONFIG_FILES invocation.
18347         (EXTRA_DIST): Remove variable.
18348
18349         * build-aux/csharpexec.sh.in: New file, moved from lib/.
18350         * modules/csharpexec (Files): Update.
18351         (configure.ac): Add AC_CONFIG_FILES invocation.
18352         (EXTRA_DIST): Remove csharpexec.sh.in.
18353
18354 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
18355
18356         Sync from coreutils.
18357
18358         Add POSIX ACL support
18359         * lib/acl.h (copy_acl, set_acl): Add declarations.
18360         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
18361         systems other than Linux.
18362         (chmod_or_fchmod): New function: use fchmod when possible,
18363         and chmod otherwise.
18364         (file_has_acl): Add a POSIX ACL implementation, with a
18365         Linux-specific subcase.
18366         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
18367         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
18368         acls are unsupported.
18369         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
18370         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
18371         are unsupported.
18372
18373 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
18374
18375         Sync from coreutils.
18376         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
18377
18378 2006-01-07  Bruno Haible  <bruno@clisp.org>
18379
18380         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
18381         gl_EARLY.
18382
18383 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
18384
18385         * lib/strftime.c (tzname): Don't declare if it is already #defined.
18386         Problem reported for Mingw by Mark Junker.
18387
18388 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
18389
18390         * README: Gnulib normally doesn't generate a tarball.
18391
18392 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
18393
18394         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
18395         long int, not int, for nanosecond counts, so that people who are
18396         used to POSIX struct timespec won't be surprised.  Reported by Jim
18397         Meyering.
18398
18399 2005-12-28  Bruno Haible  <bruno@clisp.org>
18400
18401         * build-aux/config.rpath: Update from GNU gettext.
18402
18403 2005-12-16  Jim Meyering  <jim@meyering.net>
18404
18405         * modules/fprintftime: New module.
18406         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
18407
18408 2005-12-16  Jim Meyering  <jim@meyering.net>
18409
18410         * m4/fprintftime.m4: New file.
18411
18412 2005-12-16  Jim Meyering  <jim@meyering.net>
18413
18414         * lib/fprintftime.c, lib/fprintftime.h: New files.
18415
18416 2005-12-15  Simon Josefsson  <jas@extundo.com>
18417
18418         * modules/socklen (configure.ac): Fix M4 macro name, to align with
18419         new m4/socklen.m4.
18420
18421 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
18422
18423         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
18424         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
18425
18426 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
18427
18428         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
18429         * lib/argp-help.c (fill_in_uparams): Check if the constructed
18430         struct uparams is valid. Fall back to the default values if it is
18431         not.
18432
18433 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18434
18435         * modules/argp (Files): Add argp-pin.c
18436         (Depends-on): dirname
18437         (lib_SOURCES): Add argp-pin.c
18438
18439 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18440
18441         * m4/argp.m4:  Check if program_invocation_name and
18442         program_invocation_short_name are declared and define appropriate
18443         macros if they are not.
18444
18445 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18446
18447         * lib/argp-help.c (__argp_base_name): New function
18448         (__argp_short_program_name): Rewrite using __argp_base_name
18449         * lib/argp-namefrob.h: Define program_invocation_name and
18450         program_invocation_short_name if requested
18451         (__argp_base_name): Add prototype
18452         * lib/argp-parse.c (argp_def): Use gettext wrappers
18453         (argp_default_parser): Use __argp_base_name
18454         * lib/argp-pin.c: New file. Defines program_invocation_name and
18455         program_invocation_short_name on systems that lack them.
18456
18457 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
18458
18459         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
18460         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
18461         porting problem reported by Georg Schwarz in
18462         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
18463
18464 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
18465
18466         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
18467         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
18468         porting problem reported by Georg Schwarz in
18469         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
18470
18471 2005-12-05  Bruno Haible  <bruno@clisp.org>
18472
18473         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
18474         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
18475         Reported by Mark Junker <mjscod@gmx.de>.
18476
18477 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
18478
18479         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
18480         Use implementation from Albert Chin, with some
18481         comments/corrections by Stepan Kasal and myself.
18482
18483 2005-12-02  Bruno Haible  <bruno@clisp.org>
18484
18485         * gnulib-tool (func_import): Accept GPLed build tool modules when
18486         --lgpl is given.
18487         * modules/csharpcomp-script: New file.
18488         * modules/csharpcomp: Depend on it.
18489         * modules/javacomp-script: New file.
18490         * modules/javacomp: Depend on it.
18491         Suggested by Simon Josefsson.
18492
18493 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
18494
18495         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
18496         statement, to work around an HP-UX 10.20 compiler bug reported by
18497         Peter O'Gorman.
18498
18499 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
18500
18501         * modules/savedir (Depends-on): Add openat.
18502
18503 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
18504
18505         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
18506         (uintmax_t) [defined uintmax_t]: Do not declare.
18507         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
18508         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
18509         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
18510         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
18511         sake of portability to weird hosts that C allows (though we don't
18512         know of any practical examples).
18513
18514         * lib/savedir.h (fdsavedir): New decl.
18515         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
18516         contains most of the former guts of savedir.
18517         (savedir): Use savedirstream.
18518         Include "openat.h".
18519
18520 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
18521
18522         * modules/obstack (Files): Add m4/ulonglong.m4.
18523         Problem reported by Davide Angelocola.
18524
18525 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
18526
18527         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
18528         coreutils no longer futzes with rounding modes.
18529
18530 2005-11-14  Jim Meyering  <jim@meyering.net>
18531
18532         * lib/mkstemp-safer.c: Include <config.h>, required for possible
18533         replacement of mkstemp.
18534
18535 2005-11-10  Simon Josefsson  <jas@extundo.com>
18536
18537         * lib/readline.c: Remove EOL.
18538
18539 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
18540
18541         * modules/gethrxtime (Depends-on): Add gettime.
18542
18543 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
18544
18545         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
18546         or gettimeofday; no longer needed.
18547
18548 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
18549
18550         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
18551         time business.
18552         (gethrxtime) [! (HAVE_NANOUPTIME
18553         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
18554         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
18555         our own approximation.
18556
18557 2005-11-08  Eric Blake  <ebb9@byu.net>
18558
18559         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
18560
18561 2005-11-08  Eric Blake  <ebb9@byu.net>
18562
18563         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
18564
18565 2005-11-04  Bruno Haible  <bruno@clisp.org>
18566
18567         * gnulib-tool: Implement --update mode.
18568
18569 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
18570
18571         Fix porting problem reported by Theodoros V. Kalamatianos.
18572         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
18573         Don't assume that futimes failing means we must fail.
18574
18575 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
18576
18577         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
18578         variables to suggest the intended function of the PATH_MAX check.
18579
18580 2005-10-30  Kean Johnston  <jkj@sco.com>
18581
18582         Trivial changes to support SCO systems.
18583         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
18584         as PATH_MAX.
18585         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
18586         where __ptr is null when no I/O is pending.
18587
18588 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
18589
18590         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
18591         leave errno alone.  Problem reported by Dmitry V. Levin.
18592
18593 2005-10-28  Simon Josefsson  <jas@extundo.com>
18594
18595         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
18596         Test more.
18597
18598         * tests/test-gc-md2.c, tests/test-md2.c: New files.
18599
18600         * modules/md2, modules/md2-tests: New files.
18601
18602 2005-10-28  Simon Josefsson  <jas@extundo.com>
18603
18604         * m4/inet_ntop.m4: More tests.
18605
18606         * m4/gc-md2.m4, md2.m4: New file.
18607
18608 2005-10-28  Simon Josefsson  <jas@extundo.com>
18609
18610         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
18611         "restrict" keywords, as per POSIX.  Protect the function
18612         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
18613         Don't use K&R prototypes.  Check the sprintf return values.
18614         Re-define EAFNOSUPPORT if not present.  Indent.
18615
18616         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
18617         suggested by Bruno Haible <bruno@clisp.org>.
18618
18619         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
18620
18621         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
18622
18623         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
18624         libgcrypt).
18625
18626         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
18627
18628         * lib/md2.h, lib/md2.c: New files.
18629
18630 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
18631
18632         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
18633         errno alone.  Problem reported by Frederic Jolliton.
18634
18635 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
18636
18637         * modules/verify (License): Change from GPL to LGPL.  This is a
18638         tiny module and there are apparently near-equivalents that are
18639         under the BSD license.
18640
18641 2005-10-24  Simon Josefsson  <jas@extundo.com>
18642
18643         * modules/sha1: Relicense to LGPL.
18644
18645 2005-10-24  Simon Josefsson  <jas@extundo.com>
18646
18647         * lib/md4.h: Shrink buffer size, now that we changed the type.
18648
18649 2005-10-23  Simon Josefsson  <jas@extundo.com>
18650
18651         * gnulib-tool (func_import): Fix --tests-base.
18652
18653 2005-10-22  Simon Josefsson  <jas@extundo.com>
18654
18655         * modules/arcfour (Depends-on): Need stdint.
18656
18657 2005-10-22  Simon Josefsson  <jas@extundo.com>
18658
18659         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
18660         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
18661
18662 2005-10-22  Simon Josefsson  <jas@extundo.com>
18663
18664         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
18665         suggested by Bruno Haible <bruno@clisp.org>.
18666
18667 2005-10-22  Simon Josefsson  <jas@extundo.com>
18668
18669         * lib/crc.h: Include stddef.h, for size_t.
18670
18671 2005-10-22  Simon Josefsson  <jas@extundo.com>
18672
18673         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
18674         arcfour_context struct (simplify test vector testing in GNU
18675         Shishi).
18676
18677 2005-10-21  Simon Josefsson  <jas@extundo.com>
18678
18679         * modules/des, modules/des-tests: New files.
18680
18681         * modules/gc-des, modules/gc-des-tests: New files.
18682
18683         * tests/test-des.c, tests/test-gc-des.c: New file.
18684
18685 2005-10-21  Simon Josefsson  <jas@extundo.com>
18686
18687         * modules/arctwo, modules/arctwo-tests: New files.
18688
18689         * tests/test-arctwo.c: New file.
18690
18691         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
18692
18693         * tests/test-gc-arctwo.c: New file.
18694
18695 2005-10-21  Simon Josefsson  <jas@extundo.com>
18696
18697         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
18698         Bruno Haible <bruno@clisp.org>.
18699
18700         * m4/gc-des.m4: New file.
18701
18702 2005-10-21  Simon Josefsson  <jas@extundo.com>
18703
18704         * m4/arctwo.m4: New file.
18705
18706         * m4/gc-arctwo.m4: New file.
18707
18708 2005-10-21  Simon Josefsson  <jas@extundo.com>
18709
18710         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
18711         block.
18712
18713 2005-10-21  Simon Josefsson  <jas@extundo.com>
18714
18715         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
18716         <bruno@clisp.org>.
18717
18718         * lib/hmac-sha1.c (hmac_sha1): Likewise.
18719
18720         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
18721         Bruno Haible <bruno@clisp.org>.
18722
18723         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
18724         <bruno@clisp.org>.
18725
18726 2005-10-21  Simon Josefsson  <jas@extundo.com>
18727
18728         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
18729
18730 2005-10-21  Simon Josefsson  <jas@extundo.com>
18731
18732         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
18733
18734 2005-10-21  Simon Josefsson  <jas@extundo.com>
18735
18736         * lib/des.h, lib/des.c: New files.
18737
18738         * lib/gc-gnulib.c: Support DES.c
18739
18740 2005-10-21  Simon Josefsson  <jas@extundo.com>
18741
18742         * lib/arctwo.h, lib/arctwo.c: New files.
18743
18744         * lib/gc-gnulib.c: Support ARCTWO.
18745
18746 2005-10-21  Simon Josefsson  <jas@extundo.com>
18747
18748         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
18749         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18750
18751 2005-10-21  Simon Josefsson  <jas@extundo.com>
18752
18753         * gnulib-tool (func_import, func_create_testdir): Define automake
18754         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
18755         Makefile.am snippet),
18756         suggested by Bruno Haible <bruno@clisp.org>.
18757
18758         * modules/gc (Makefile.am): Use it.
18759
18760 2005-10-21  Bruno Haible  <bruno@clisp.org>
18761
18762         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
18763         patch.
18764
18765 2005-10-19  Simon Josefsson  <jas@extundo.com>
18766
18767         * tests/test-gc-rijndael.c: New file.
18768
18769         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
18770
18771 2005-10-19  Simon Josefsson  <jas@extundo.com>
18772
18773         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
18774         interface too.
18775
18776 2005-10-19  Simon Josefsson  <jas@extundo.com>
18777
18778         * tests/test-gc-arcfour.c: New file.
18779
18780         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
18781
18782 2005-10-19  Simon Josefsson  <jas@extundo.com>
18783
18784         * modules/gc-md4, modules/gc-md4-tests: New file.
18785
18786         * tests/test-gc-md4.c: New file.
18787
18788 2005-10-19  Simon Josefsson  <jas@extundo.com>
18789
18790         * m4/gc-md4.m4: New file.
18791
18792 2005-10-19  Simon Josefsson  <jas@extundo.com>
18793
18794         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
18795         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
18796         <kasal@ucw.cz>.
18797
18798 2005-10-19  Simon Josefsson  <jas@extundo.com>
18799
18800         * m4/gc-arcfour.m4: New file.
18801
18802         * m4/gc-rijndael.m4: New file.
18803
18804 2005-10-19  Simon Josefsson  <jas@extundo.com>
18805
18806         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
18807
18808 2005-10-19  Simon Josefsson  <jas@extundo.com>
18809
18810         * lib/gc-gnulib.c: Support ARCFOUR.
18811
18812 2005-10-19  Simon Josefsson  <jas@extundo.com>
18813
18814         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
18815         support.
18816
18817         * lib/gc.h: Add ECB enum type.
18818
18819         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
18820
18821 2005-10-18  Simon Josefsson  <jas@extundo.com>
18822
18823         * tests/test-md5.c: New file.
18824
18825         * modules/md5-tests: New file.
18826
18827 2005-10-18  Simon Josefsson  <jas@extundo.com>
18828
18829         * tests/test-md4.c: New file.
18830
18831         * modules/md4, modules/md4-tests: New files.
18832
18833 2005-10-18  Simon Josefsson  <jas@extundo.com>
18834
18835         * m4/md4.m4: New file.
18836
18837 2005-10-18  Simon Josefsson  <jas@extundo.com>
18838
18839         * lib/md4.h, lib/md4.c: New files, based on md5.?.
18840
18841 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
18842
18843         * gnulib-tool (func_create_testdir): Omit the second check whether
18844         BUILT_SOURCES in nonempty.
18845
18846 2005-10-17  Simon Josefsson  <jas@extundo.com>
18847
18848         * tests/test-rijndael.c: New file.
18849
18850 2005-10-17  Simon Josefsson  <jas@extundo.com>
18851
18852         * modules/sha1: Depend on stdint instead of md5.
18853
18854         * modules/md5: Depend on stdint, remove uint32_t.
18855
18856 2005-10-17  Simon Josefsson  <jas@extundo.com>
18857
18858         * modules/gc-sha1-tests: New file.
18859
18860         * tests/test-gc-sha1.c: New file.
18861
18862 2005-10-17  Simon Josefsson  <jas@extundo.com>
18863
18864         * m4/md5.m4: Remove call to uint32_t.m4.
18865
18866 2005-10-17  Simon Josefsson  <jas@extundo.com>
18867
18868         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
18869
18870         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
18871         md5.h.
18872
18873         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
18874
18875         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
18876
18877 2005-10-17  Simon Josefsson  <jas@extundo.com>
18878
18879         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
18880
18881 2005-10-17  Simon Josefsson  <jas@extundo.com>
18882
18883         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
18884
18885 2005-10-17  Simon Josefsson  <jas@extundo.com>
18886
18887         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
18888
18889         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
18890
18891 2005-10-17  Bruno Haible  <bruno@clisp.org>
18892
18893         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
18894         that it can also be used in a test.
18895
18896 2005-10-16  Bruno Haible  <bruno@clisp.org>
18897
18898         * gnulib-tool (func_emit_tests_Makefile_am): Also define
18899         TESTS_ENVIRONMENT, so that individual tests can augment it.
18900
18901         * gnulib-tool (func_create_testdir): Use an intermediate target for
18902         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
18903         macros, like $(ALLOCA_H), which cannot be passed through the command
18904         line.
18905
18906 2005-10-15  Simon Josefsson  <jas@extundo.com>
18907
18908         * modules/rijndael-tests: New file.
18909
18910         * modules/rijndael: New file.
18911
18912 2005-10-15  Simon Josefsson  <jas@extundo.com>
18913
18914         * m4/rijndael.m4: New file.
18915
18916 2005-10-15  Simon Josefsson  <jas@extundo.com>
18917
18918         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
18919
18920         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
18921
18922 2005-10-14  Simon Josefsson  <jas@extundo.com>
18923
18924         * tests/test-arcfour.c: New file.
18925
18926         * modules/arcfour, modules/arcfour-tests: New files.
18927
18928 2005-10-14  Simon Josefsson  <jas@extundo.com>
18929
18930         * m4/arcfour.m4: New file.
18931
18932 2005-10-14  Simon Josefsson  <jas@extundo.com>
18933
18934         * lib/arcfour.h, lib/arcfour.c: New files.
18935
18936 2005-10-14  Roland McGrath  <roland@redhat.com>
18937
18938         Import from libc.  [BZ #1331]
18939         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
18940         macro argument.
18941         Reported by Matej Vela <vela@debian.org>.
18942
18943 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
18944
18945         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
18946         include <wchar.h>; no longer needed.
18947
18948 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
18949
18950         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
18951
18952 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
18953         and  Ulrich Drepper  <drepper@redhat.com>
18954
18955         Import from libc.
18956         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
18957         instead of inline stream orientation test and two separate
18958         function calls.  Pay no attention to USE_IN_LIBIO.
18959
18960 2005-10-13  Simon Josefsson  <jas@extundo.com>
18961
18962         * modules/gc-hmac-md5-tests: New file.
18963
18964         * tests/test-gc-hmac-sha1.c: New file.
18965
18966         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
18967
18968         * modules/gc-hmac-md5-tests: New file.
18969
18970         * tests/test-gc-md5.c: New file.
18971
18972         * modules/gc-md5-tests: New file.
18973
18974 2005-10-13  Simon Josefsson  <jas@extundo.com>
18975
18976         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
18977         Move memory allocation outside of loop.
18978
18979 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
18980
18981         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
18982         intermediate directory is in a read-only file system.  Problem
18983         reported by Eric Blake.
18984
18985 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
18986
18987         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
18988
18989 2005-10-12  Simon Josefsson  <jas@extundo.com>
18990
18991         * tests/test-hmac-sha1.c: New file.
18992
18993         * modules/hmac-sha1-tests: New file.
18994
18995         * modules/hmac-sha1: New file.
18996
18997 2005-10-12  Simon Josefsson  <jas@extundo.com>
18998
18999         * modules/gc-sha1: New file.
19000
19001 2005-10-12  Simon Josefsson  <jas@extundo.com>
19002
19003         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
19004
19005         * tests/test-gc-pbkdf2-sha1.c: New file.
19006
19007 2005-10-12  Simon Josefsson  <jas@extundo.com>
19008
19009         * modules/gc-md5, modules/gc-hmac-md5: New files.
19010
19011         * modules/gc (Files): Remove md5, memxor and hmac files.
19012
19013 2005-10-12  Simon Josefsson  <jas@extundo.com>
19014
19015         * m4/gc-pbkdf2-sha1.m4: New file.
19016
19017         * m4/gc-hmac-sha1.m4: New file.
19018
19019         * m4/gc-sha1: New file.
19020
19021         * m4/hmac-sha1.m4: New file.
19022
19023 2005-10-12  Simon Josefsson  <jas@extundo.com>
19024
19025         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
19026
19027         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
19028
19029 2005-10-12  Simon Josefsson  <jas@extundo.com>
19030
19031         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
19032         suggested by Bruno Haible <bruno@clisp.org>.
19033
19034 2005-10-12  Simon Josefsson  <jas@extundo.com>
19035
19036         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
19037
19038 2005-10-12  Simon Josefsson  <jas@extundo.com>
19039
19040         * lib/gc-pbkdf2-sha1.c: New file.
19041
19042         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
19043
19044 2005-10-12  Simon Josefsson  <jas@extundo.com>
19045
19046         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
19047
19048         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
19049
19050 2005-10-12  Simon Josefsson  <jas@extundo.com>
19051
19052         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
19053         GC_USE_HMAC_MD5, respectively.
19054
19055         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
19056         (gc_md5): Fix typo.
19057
19058         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
19059
19060         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
19061
19062         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
19063
19064 2005-10-12  Bruno Haible  <bruno@clisp.org>
19065
19066         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
19067         Reported by Stepan Kasal <kasal@ucw.cz>.
19068
19069 2005-10-11  Simon Josefsson  <jas@extundo.com>
19070
19071         * tests/test-crc.c: New file.
19072
19073         * modules/crc, modules/crc-tests: New files.
19074
19075 2005-10-11  Simon Josefsson  <jas@extundo.com>
19076
19077         * m4/crc.m4: New file.
19078
19079 2005-10-11  Simon Josefsson  <jas@extundo.com>
19080
19081         * lib/gc.h: Add gc_hash and gc_hash_buffer.
19082
19083         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
19084
19085         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
19086
19087 2005-10-11  Simon Josefsson  <jas@extundo.com>
19088
19089         * lib/crc.h, lib/crc.c: New files.
19090
19091         * lib/gc.h (gc_hash_buffer): Add doc.
19092
19093 2005-10-11  Bruno Haible  <bruno@clisp.org>
19094
19095         * modules/c-strcasestr: New file.
19096         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
19097
19098 2005-10-11  Bruno Haible  <bruno@clisp.org>
19099
19100         * modules/c-strcase: New file.
19101         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
19102
19103 2005-10-11  Bruno Haible  <bruno@clisp.org>
19104
19105         * lib/strcasecmp.c: Include limits.h.
19106         (strcasecmp): Avoid integer overflow on exotic platforms.
19107         * lib/strncasecmp.c: Include limits.h.
19108         (strncasecmp): Avoid integer overflow on exotic platforms.
19109         Reported by Paul Eggert.
19110
19111 2005-10-11  Bruno Haible  <bruno@clisp.org>
19112
19113         * lib/c-strcasestr.h: New file, from GNU gettext.
19114         * lib/c-strcasestr.c: New file, from GNU gettext.
19115
19116 2005-10-11  Bruno Haible  <bruno@clisp.org>
19117
19118         * lib/c-strcase.h: New file, from GNU gettext.
19119         * lib/c-strcasecmp.c: New file, from GNU gettext.
19120         * lib/c-strncasecmp.c: New file, from GNU gettext.
19121
19122 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
19123
19124         * modules/mempcpy (License): GPL -> LGPL.
19125         * modules/strchrnul (License): Likewise.
19126         * modules/sysexits (License): Likewise.
19127
19128 2005-10-08  Simon Josefsson  <jas@extundo.com>
19129
19130         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
19131
19132 2005-10-07  Simon Josefsson  <jas@extundo.com>
19133
19134         * m4/memxor.m4: Remove gl_C_RESTRICT call.
19135
19136 2005-10-06  Simon Josefsson  <jas@extundo.com>
19137
19138         * tests/test-hmac-md5.c: New file.
19139
19140         * modules/hmac-md5-tests: New file.
19141
19142         * modules/hmac-md5: New file.
19143
19144 2005-10-06  Simon Josefsson  <jas@extundo.com>
19145
19146         * m4/hmac-md5.m4: New file.
19147
19148         * m4/memxor.m4: Require gl_C_RESTRICT.
19149
19150 2005-10-06  Simon Josefsson  <jas@extundo.com>
19151
19152         * lib/memxor.c (memxor): Avoid casts and warnings.
19153
19154 2005-10-06  Simon Josefsson  <jas@extundo.com>
19155
19156         * lib/hmac-md5.c: New file.
19157
19158         * lib/hmac.h: New file.
19159
19160 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
19161
19162         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
19163         promotes to int, not unsigned int, to catch the AIX 5.3
19164         compiler bug.
19165
19166 2005-10-05  Simon Josefsson  <jas@extundo.com>
19167
19168         * modules/memxor: New file.
19169
19170         * modules/iconv (Files): Move config.rpath to havelib, it is used
19171         there.
19172
19173         * modules/havelib (Files): Add config.rpath.
19174
19175 2005-10-05  Simon Josefsson  <jas@extundo.com>
19176
19177         * m4/memxor.m4: New file.
19178
19179 2005-10-05  Simon Josefsson  <jas@extundo.com>
19180
19181         * lib/memxor.c (memxor): Fix compiler error.
19182
19183         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
19184         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
19185
19186         * lib/memxor.h, lib/memxor.c: New files.
19187
19188         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
19189         we assume all systems have it, suggested by Jim Meyering
19190         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
19191         any systems lack sys/socket.h; mingw32 is known to lack it, but we
19192         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
19193         same reasons.
19194
19195 2005-10-05  Simon Josefsson  <jas@extundo.com>
19196
19197         * config/srclist.txt: Add glibc bug 1423 for md5.h.
19198
19199 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
19200
19201         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
19202         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
19203         needed, since the source code now assumes these .h files.
19204
19205 2005-10-05  Derek Price  <derek@ximbiot.com>
19206
19207         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
19208
19209 2005-10-05  Bruno Haible  <bruno@clisp.org>
19210
19211         * modules/stdint (License): Change to LGPL.
19212
19213 2005-10-04  Simon Josefsson  <jas@extundo.com>
19214
19215         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
19216         D. Baushke" <mdb@gnu.org>.
19217
19218 2005-10-04  Bruno Haible  <bruno@clisp.org>
19219
19220         * lib/verify.h (verify_true): Provide alternative definition for C++.
19221
19222 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
19223
19224         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
19225         (SSIZE_MAX): New macro, if not already defined.
19226         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
19227         than 2 GiB.
19228
19229 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
19230
19231         Sync from coreutils.
19232         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
19233         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
19234         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
19235         ULLONG_MAX doesn't work with 2.7.2.1.
19236
19237 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
19238
19239         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
19240         From Ben Pfaff.
19241
19242         * modules/exclude (Depends-on): Depend on verify.
19243         * modules/strtoimax (Depends-on): Likewise.
19244         * modules/utimecmp (Depends-on): Likewise.
19245
19246 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
19247
19248         * lib/exclude.c: Include verify.h.
19249         (verify): Remove.  All callers changed to use verify.h's version.
19250         * lib/strtoimax.c: Likewise.
19251         * lib/utimecmp.c: Likewis.e
19252
19253         Sync from coreutils.
19254         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
19255         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
19256         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
19257         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
19258         bother returning ENOSYS if settimeofday or stime fails; just let
19259         them return whatever errno they want to return.
19260         * lib/utimens.c: Include unistd.h, for dup2.
19261         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
19262         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
19263
19264 2005-10-02  Jim Meyering  <jim@meyering.net>
19265
19266         Sync from coreutils.
19267         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
19268         from glibc-2.2.5 that fails for read-only files.
19269
19270 2005-10-02  Jim Meyering  <jim@meyering.net>
19271
19272         Sync from coreutils.
19273         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
19274         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
19275         `#if HAVE_CONFIG_H'.
19276         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
19277         Remove AT_FDCWD test.
19278         Do not consume the fd unless successful.
19279         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
19280         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
19281         block, so that we don't even try to compile it if settimeofday is
19282         available.  This works around a compilation failure on OSF1 V5.1,
19283         due to stime requiring a `long int*' while tv_sec is `int'.
19284
19285 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
19286
19287         Sync from coreutils.
19288         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
19289         against `yes', rather than just testing for nonempty.
19290
19291 2005-10-01  Simon Josefsson  <jas@extundo.com>
19292
19293         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
19294         and Darwin.
19295
19296         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
19297         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
19298         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
19299         freeaddrinfo and gai_strerror are declared by the POSIX headers.
19300         Check if struct addrinfo is declared.
19301
19302 2005-10-01  Simon Josefsson  <jas@extundo.com>
19303
19304         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
19305         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
19306         AI_* and EAI_* definitions.  Protect function declarations.
19307
19308 2005-10-01  Jim Meyering  <jim@meyering.net>
19309
19310         Sync from coreutils.
19311
19312         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
19313         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
19314         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
19315         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
19316         in the inet and nsl libraries.  Required on Solaris 5.7.
19317
19318 2005-10-01  Jim Meyering  <jim@meyering.net>
19319
19320         Sync from coreutils.
19321         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
19322         in the inet and nsl libraries.  Required on Solaris 5.7.
19323
19324 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
19325
19326         * lib/getdelim.c (getdelim): Remove unused variables.
19327
19328 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
19329
19330         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
19331         so that the code works even with ancient cpp.  Portability problem
19332         with GCC 2.7.2.1 reported by Thomas M.Ott.
19333
19334 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
19335
19336         * modules/regex (Depends-on): Add strcase.
19337
19338         * modules/gethostname (Licence): Change from GPL to LGPL, since
19339         gethostname.c is a trivial implementation of a standard library
19340         function.
19341         * modules/poll (License): Change from GPL to LGPL, since it's
19342         derived from LGPL code.
19343
19344 2005-09-27  Jim Meyering  <jim@meyering.net>
19345
19346         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
19347         HAVE_CONFIG_H.
19348
19349         * lib/intprops.h (signed_type_or_expr__): Define.
19350         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
19351         for unsigned types.
19352
19353 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
19354
19355         * lib/verify.h (verify_expr): Remove, replacing with:
19356         (verify_true): New macro that returns true instead of void.
19357         (verify_type__): Remove.
19358         (verify): Use verify_true rather than verify_type__.
19359
19360 2005-09-26  Bruno Haible  <bruno@clisp.org>
19361
19362         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
19363         is necessary.
19364         (lib_SOURCES): Remove mbchar.c.
19365         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
19366         (Files): Add m4/mbrtowc.m4.
19367         * modules/mbiter: Likewise.
19368         * modules/mbuiter: Likewise.
19369
19370 2005-09-26  Bruno Haible  <bruno@clisp.org>
19371
19372         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
19373         compile mbchar.c if they are not both present.
19374         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
19375         * m4/mbiter.m4 (gl_MBITER): Likewise.
19376         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
19377         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
19378         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
19379
19380 2005-09-25  Jim Meyering  <jim@meyering.net>
19381
19382         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
19383         also uses socklen_t.
19384
19385 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
19386
19387         * lib/utimens.c (ENOSYS): Define if not already defined.
19388         (futimens): Support having a null PATH if the file descriptor
19389         is nonnegative.
19390
19391         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
19392         Remove.
19393         (__attribute): Define to empty unless GCC 3.1 or later.
19394         This works around a core dump on OpenBSD 3.4, which has GCC
19395         2.95.3, which dumps core when given __attribute__(()).  It also
19396         simplifies other tests, since we really don't want to bother with
19397         worrying about which ancient version of GCC supported what.
19398         Original problem reported by Yoann Vandoorselaere, with part of
19399         the fix suggested by Derek Price.
19400
19401 2005-09-24  Jim Meyering  <jim@meyering.net>
19402
19403         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
19404         so we can once again use a positive bitfield width of 1 -- now we
19405         don't have to explain why we were using a bitfield width of 2.
19406
19407 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
19408
19409         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
19410         and similarly for the other external symbols.  Problem reported
19411         by James Gallager.
19412
19413         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
19414         bug reported by Jim Meyering.
19415
19416         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
19417         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
19418         not needed, since socklen is a prerequisite module.
19419
19420 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
19421
19422         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
19423         Problem reported by Eric Blake.
19424         (getaddrinfo): Initialize se so that it's not garbage.
19425         Redo internal storage allocation so that it doesn't make unportable
19426         assumptions about alignment.
19427         Fix a memory leak.
19428
19429         * lib/utimens.c (futimens): Use futimesat if available.
19430         Prefer it to futimes since it doesn't have the futimes bug.
19431
19432         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
19433         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
19434         Instead, declare a function that returns a pointer to an array,
19435         and use verify_type__ to declare the size of the array.
19436         Problem and germ of a solution reported by Bruno Haible.
19437         (verify_type__): Use 2, not 1, for bitfield size, to avoid
19438         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
19439
19440 2005-09-23  Jim Meyering  <jim@meyering.net>
19441
19442         Sync from coreutils.
19443         Correct build failure (socklen_t not defined) on at least
19444         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
19445         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
19446
19447 2005-09-23  Jim Meyering  <jim@meyering.net>
19448
19449         * modules/getaddrinfo (Depends-on): Add socklen.
19450
19451 2005-09-23  Bruno Haible  <bruno@clisp.org>
19452
19453         * tests/test-verify.c: New file.
19454
19455 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
19456
19457         Sync from coreutils.
19458
19459         * modules/argmatch (Depends-on): Add verify.
19460         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
19461         unistd-safer.
19462         * modules/save-cwd (Depends-on): Likewise.
19463
19464         * modules/openat (Files): Add lib/openat-die.c.
19465         (Depends-on): Remove error, exitfail.
19466         Add dirname.
19467
19468         * modules/verify: New file.
19469         * MODULES.html.sh (Diagnostics <assert.h>): New section,
19470         with "verify" module.
19471
19472 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
19473
19474         Sync from coreutils.
19475
19476         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
19477         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
19478         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
19479         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
19480         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
19481         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
19482         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
19483         Don't bother checking for string.h, stdlib.h, unistd.h.
19484         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
19485         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
19486         module's job.
19487         * m4/jm-macros.m4 (gl_MACROS): Likewise.
19488         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
19489
19490         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
19491         (gl_GETDATE): Use it.
19492
19493         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
19494
19495 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
19496
19497         Sync from coreutils.
19498
19499         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
19500         stat-time.h.
19501         * lib/argmatch.h: Include verify.h
19502         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
19503         (ARGMATCH_ASSERT): Remove; unused.
19504         * lib/canonicalize.c: Assume STDC_HEADERS.
19505         * lib/exclude.c: Include "strcase.h".
19506         * lib/regex_internal.h [!defined _LIBC]: Likewise.
19507         * lib/getusershell.c: Include stdio--.h rather than stdio.h
19508         and stdio-safer.h.
19509         (getusershell): Call fopen, not fopen_safer.
19510         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
19511         Do not include unistd-safer.h.
19512         (save_cwd): Don't call fd_safer; no longer needed
19513         now that we include fcntl--.h.
19514
19515         * lib/getdate.y (relative_time): New type.
19516         (RELATIVE_TIME_0): New constant.
19517         (parser_control): Use relative_time instead of doing it ourselves.
19518         (%union): Add new relative_time rel member.
19519         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
19520         Now typeless.
19521         (relunit, relunit_snumber): Now of type rel.
19522         (zone, rel, relunit, get_date): Adjust to above changes.
19523
19524         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
19525         Do not include unistd-safer.h.
19526         (getloadavg): Don't call fd_safer; no longer needed
19527         now that we include fcntl--.h.
19528
19529         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
19530         (make_dir_parents): Treat ENOSYS like EEXIST.
19531
19532         Improve quality of diagnostics on restore_cwd failure.
19533         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
19534         (make_dir_parents): Last arg is now int * (for errno), not bool *.
19535         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
19536         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
19537         each time through the loop.  Do not diagnose restore_cwd failure;
19538         that is the caller's job (and perhaps the caller does not care).
19539
19540         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
19541         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
19542         If the file already exists but is not a directory, don't bother
19543         to try to make its parents.
19544         Close potential file descriptor leak if we can't chdir("/") (!).
19545         Don't always return true if chdir($PWD) fails; return true only
19546         if the requested action was done successfully (except for the
19547         chdir($PWD)).
19548         Don't log final directory unless we actually made it.
19549         Refactor to avoid duplicate code to fix up permissions.
19550         Don't attempt to fix up parent permissions if chdir($PWD) fails.
19551
19552         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
19553         to make it a bit faster and (I hope) clearer.
19554         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
19555         Fix bug in formats like %2N.
19556
19557         * lib/verify.h: New file.
19558
19559 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
19560
19561         Sync from coreutils.
19562         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
19563
19564 2005-09-22  Jim Meyering  <jim@meyering.net>
19565
19566         Sync from coreutils.
19567
19568         * m4/lstat.m4 (gl_FUNC_LSTAT):
19569         Use AC_LIBSOURCES to require lstat.c and lstat.h.
19570         Remove obsolete comment.
19571         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
19572         * m4/xstrtod.m4: Likewise.
19573
19574         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
19575
19576 2005-09-22  Jim Meyering  <jim@meyering.net>
19577
19578         Sync from coreutils.
19579
19580         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
19581
19582         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
19583         the .tm_year member, since otherwise gcc-4.0 would now warn about
19584         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
19585
19586         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
19587         order to avoid an unsuppressible warning from gcc on 64-bit systems.
19588
19589         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
19590         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
19591         when run in a time zone for which daylight savings time is in effect
19592         for the starting date.
19593
19594         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
19595         stop us from restricting permissions of just-created absolute-named
19596         directories.
19597         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
19598         to restore initial working directory.
19599         * lib/mkdir-p.c (make_dir_parents): New parameter:
19600         different_working_dir, to tell caller if/when we change the working
19601         directory and are unable to return to the initial one.
19602         * lib/mkdir-p.h (make_dir_parents): Update prototype.
19603         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
19604         `return false'.  This fixes a bug introduced on 2004-07-30.
19605
19606         * lib/openat.c (fdopendir): Be sure to close the supplied
19607         file descriptor before returning.  This makes our replacement
19608         implementation a little closer to Solaris's, where fdopendir
19609         ties the file descriptor to the returned DIR* pointer.
19610         * lib/openat.c (unlinkat): New function.
19611         * lib/openat.h (unlinkat): Add prototype.
19612         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
19613         (openat_restore_fail): Rename from openat_restore_die.
19614         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
19615
19616         Provide an alternative to exiting immediately upon save_cwd or
19617         restore_cwd failure.  Now, an application can arrange e.g.,
19618         to perform a longjump in that case.
19619         * lib/openat.c: Include dirname.h.
19620         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
19621         (rpl_openat, fdopendir, fstatat): Call openat_save_die
19622         and openat_restore_die rather than calling error directly.
19623         Don't include "error.h" or "exitfail.h"; they're no longer needed.
19624
19625         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
19626         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
19627         define.
19628
19629         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
19630         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
19631                             int utc, int nanoseconds);
19632         Background:
19633         date should not have to allocate a megabyte of virtual memory to
19634         handle a format argument like +%1048575T.  When implemented with
19635         strftime, it must allocate such a buffer, use strftime to fill it
19636         in, print it, then free it.
19637         With fprintftime, it simply prints everything and exits.
19638         With no need for memory allocation, that's one fewer way to fail.
19639         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
19640         optional field width, not before, so we accept %9:z, not %:9z.
19641         (my_strftime): Be sure to use L_('x') for literals.
19642
19643         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
19644         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
19645         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
19646         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
19647         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
19648         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
19649         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
19650         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
19651         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
19652         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
19653         * lib/xgethostname.c, lib/xreadlink.c:
19654         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
19655
19656         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
19657         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
19658         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
19659         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
19660         and don't include <sys/file.h>).
19661
19662 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
19663
19664         Sync from coreutils.
19665
19666         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
19667         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
19668         [!LDAV_DONE]: Avoid unused variable warning.
19669
19670 2005-09-21  Bruno Haible  <bruno@clisp.org>
19671
19672         * lib/unicodeio.h (unicode_to_mb): New declaration.
19673
19674 2005-09-20  Derek Price  <derek@ximbiot.com>
19675
19676         * lib/getaddrinfo.c: Don't include <netdb.h> included from
19677         getaddrinfo.h.
19678
19679 2005-09-20  Bruno Haible  <bruno@clisp.org>
19680
19681         * gnulib-tool: Remove trailing slashes from the values specified for
19682         --source-base, --m4-base, --tests-base, --aux-dir.
19683         Suggested by Simon Josefsson <jas@extundo.com>.
19684
19685 2005-09-20  Bruno Haible  <bruno@clisp.org>
19686
19687         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
19688         func_modules_to_filelist, func_import, func_create_testdir): Make all
19689         sorting results locale-independent, so that gnulib-cache.m4 doesn't
19690         change when gnulib-tool is invoked in a different locale.
19691
19692 2005-09-19  Simon Josefsson  <jas@extundo.com>
19693
19694         * m4/socklen.m4: Fix typo.
19695
19696 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19697
19698         Use a consistent style for including <config.h>.
19699         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
19700         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
19701         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
19702         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
19703         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
19704         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
19705         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
19706         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
19707         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
19708         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
19709         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
19710         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
19711         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
19712         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
19713         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
19714         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
19715         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
19716         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
19717         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
19718         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
19719         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
19720         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
19721         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
19722         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
19723         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
19724         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
19725         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
19726         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
19727         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
19728         lib/xstrtoumax.c, lib/yesno.c:
19729         Standardize inclusion of config.h.
19730         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
19731         lib/inttostr.h:  Removed inclusion of config.h from header files.
19732         * lib/inttostr.c:  Adjusted in-tree users.
19733         * lib/timespec.h: Remove superfluous warning to include config.h.
19734         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
19735         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
19736         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
19737         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
19738         config.h with HAVE_CONFIG_H.
19739
19740 2005-09-19  Jim Meyering  <jim@meyering.net>
19741
19742         * modules/pathmax (License): Change to LGPL.
19743
19744 2005-09-19  Derek Price  <derek@ximbiot.com>
19745
19746         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
19747
19748 2005-09-19  Bruno Haible  <bruno@clisp.org>
19749
19750         * gnulib-tool (import): Provide default for --tests-base.
19751
19752 2005-09-19  Bruno Haible  <bruno@clisp.org>
19753
19754         * doc/quote.texi: New file, extracted from gnulib.texi.
19755         * doc/ctime.texi: New file, extracted from gnulib.texi.
19756         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
19757         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
19758         * doc/gnulib.texi: Include them.
19759
19760 2005-09-18  Bruno Haible  <bruno@clisp.org>
19761
19762         Portability fix.
19763         * gnulib-tool (func_readlink): New function.
19764         (func_ln_if_changed): Use it.
19765
19766 2005-09-18  Bruno Haible  <bruno@clisp.org>
19767
19768         * gnulib-tool: Support --with-tests also with --import.
19769         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
19770         (func_import): Use variables $testsbase and $inctests. Emit a
19771         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
19772         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
19773         SUBDIRS += $testsdir.
19774         (func_create_testdir): Update.
19775
19776 2005-09-18  Bruno Haible  <bruno@clisp.org>
19777
19778         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
19779         instead of $dry_run.
19780         (func_cp_if_changed, func_mv_if_changed): Remove functions.
19781         (func_ln_if_changed): Don't handle dry-run here.
19782         (func_import): In dry-run mode, detect more precisely which actions
19783         would be performed, and don't use "...ing" verbs.
19784
19785 2005-09-18  Bruno Haible  <bruno@clisp.org>
19786
19787         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
19788         (func_import): Use join on two temporary files instead of three nested
19789         loops, in order to determine which files are new or old.
19790
19791 2005-09-18  Bruno Haible  <bruno@clisp.org>
19792
19793         * gnulib-tool (func_import): Comment out code that spits out the
19794         new files with --dry-run.
19795
19796 2005-09-18  Bruno Haible  <bruno@clisp.org>
19797
19798         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
19799
19800 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
19801
19802         * lib/stat-time.h: New file.
19803         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
19804         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
19805         in a different way.
19806         (timespec_cmp): New function.
19807         * lib/utimecmp.c: Include stat-time.h.
19808         (SYSCALL_RESOLUTION): Depend on whether various struct stat
19809         members exist, not on the obsolescent ST_MTIM_NSEC.
19810         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
19811
19812 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
19813
19814         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
19815
19816 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
19817
19818         * MODULES.html.sh (File system functions): Add stat-time.
19819         * modules/stat-time: New file.
19820         * modules/timespec (Files): Remove m4/st_mtim.m4; this
19821         is now done in a different way, by the stat-time module.
19822         * modules/utimecmp (Depends-on): Add stat-time.
19823
19824 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
19825
19826         * m4/st_mtim.m4: Remove.  Superseded by...
19827         * m4/stat-time.m4: New file.
19828         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
19829         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
19830
19831 2005-09-15  Derek Price  <derek@ximbiot.com>
19832
19833         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
19834
19835 2005-09-15  Derek Price  <derek@ximbiot.com>
19836
19837         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
19838         * lib/regex_internal.c: Ditto, using this...
19839         (__GNUC_PREREQ): ...new macro.
19840         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
19841         using...
19842         (__GNUC_PREREQ): ...this new macro.
19843
19844         * lib/strstr.h: Include string.h. Define strstr as a macro here.
19845
19846 2005-09-15  Derek Price  <derek@ximbiot.com>
19847             Paul Eggert  <eggert@cs.ucla.edu>
19848
19849         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
19850         changes, consolidating in...
19851         * lib/regex_internal.h: ...this file.
19852
19853 2005-09-13  Jim Meyering  <jim@meyering.net>
19854
19855         * lib/canon-host.c: Filter through gnu indent and reword comments
19856         slightly.
19857         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
19858
19859 2005-09-13  Derek Price  <derek@ximbiot.com>
19860
19861         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
19862         failure.
19863         Reported by Jim Meyering  <jim@meyering.net>.
19864
19865 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
19866
19867         * lib/base64.c: Typo.
19868         (base64_encode): Put b64str in initialized data section.
19869
19870 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
19871
19872         Merge glibc and coreutils changes into gnulib, plus a few
19873         extra fixes.
19874         * lib/md5.c: Use #error rather than a string.
19875         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
19876         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
19877         (__attribute__): Define to empty for non recent-GCC.
19878         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
19879         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
19880         Renamed from their non-__ counterparts, with new macros replacing
19881         them if not _LIBC.  Add __THROW attribute.
19882         (rol): Remove.
19883         (struct md5_ctx): Align buffer if using GCC.
19884         * lib/sha1.h (struct sha1_ctx): Likewise.
19885         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
19886         The old name was backwards.
19887         (NOTSWAP): Remove; not used.
19888         (rol): New macro, moved here from md5.h.
19889         (sha1_process_block): Remove a FIXME that doesn't make sense.
19890
19891 2005-09-12  Derek Price  <derek@ximbiot.com>
19892
19893         Return usable errors from canon-host.
19894         * lib/canon-host.h: New file.
19895         * lib/canon-host.c (canon_host): Wrap...
19896         (canon_host_r): ...this new function, which now relies exclusively on
19897         getaddrinfo.
19898         (ch_strerror): New function.
19899         (last_cherror): New global.
19900         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
19901         interface.
19902         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
19903         void *.
19904         (freeaddrinfo): Free ai->ai_canonname when set.
19905
19906 2005-09-12  Derek Price  <derek@ximbiot.com>
19907
19908         Make canon-host require getaddrinfo.
19909         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
19910         AC_LIBSOURCE canon-host.h.  Call...
19911         (gl_PREREQ_CANON_HOST): ...this new function, which requires
19912         gl_GETADDRINFO.
19913         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
19914
19915 2005-09-12  Derek Price  <derek@ximbiot.com>
19916
19917         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
19918         LGPL.
19919         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
19920
19921 2005-09-12  Derek Price  <derek@ximbiot.com>
19922
19923         * lib/gai_strerror.c: Include config.h when available.  Include
19924         getaddrinfo.h before other headers to test interface.
19925         Reported by Larry Jones <lawrence.jones@ugs.com>.
19926
19927 2005-09-12  Derek Price  <derek@ximbiot.com>
19928             Paul Eggert  <eggert@cs.ucla.edu>
19929
19930         * modules/glob (Files): Add glob-libc.h.
19931
19932 2005-09-12  Derek Price  <derek@ximbiot.com>
19933             Paul Eggert  <eggert@cs.ucla.edu>
19934
19935         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
19936         glob_.h, glob-libc.h.
19937         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
19938
19939 2005-09-12  Derek Price  <derek@ximbiot.com>
19940             Paul Eggert  <eggert@cs.ucla.edu>
19941
19942         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
19943         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
19944         protecting things that should be done only in gnulib contexts.
19945         * lib/glob_.h: New file, containing only the glob things needed for
19946         gnulib.
19947         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
19948         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
19949         (glob, globfree, glob_pattern_p): Now defined simply in terms of
19950         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
19951         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
19952         and to respect the namespace rules better.
19953
19954 2005-09-08  Simon Josefsson  <jas@extundo.com>
19955
19956         * modules/socklen: New file.
19957
19958 2005-09-08  Simon Josefsson  <jas@extundo.com>
19959
19960         * m4/socklen.m4: New file.
19961
19962 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19963
19964         * modules/utimens (Files): Add m4/utimbuf.m4, since
19965         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
19966         Reported by Sergey Poznyakoff.
19967
19968 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19969
19970         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
19971         definitions, since that's the preferred style in glibc.
19972         Fix a minor spacing issue, and update copyright notice to match
19973         glibc's.
19974
19975 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19976
19977         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
19978
19979 2005-09-06  Simon Josefsson  <jas@extundo.com>
19980
19981         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
19982         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
19983
19984 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
19985
19986         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
19987         warning.
19988
19989 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
19990
19991         * config/srclist.txt: Add glibc bug 1302.
19992
19993 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
19994
19995         Change bitset word type from unsigned int to unsigned long int,
19996         as this has better performance on typical 64-bit hosts.
19997         Port bitset code to hosts with unusual word sizes.
19998         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
19999         (build_collating_symbol):
20000         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
20001         argument is a bitset.  This is merely a style issue, but it makes
20002         it clearer that an entire array is expected.
20003         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
20004         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
20005         Port to the case where bitset_word is not the same as unsigned int.
20006         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
20007         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
20008         Likewise.
20009         * lib/regexec.c (check_dst_limits_calc_pos_1,
20010         check_subexp_matching_top):
20011         (build_trtable, group_nodes_into_DFAstates):
20012         Likewise.
20013         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
20014         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
20015         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
20016         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
20017         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
20018         * lib/regcomp.c (optimize_subexps, lower_subexp):
20019         Work even if bitset_word has holes in its bitwise representation.
20020         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
20021         * lib/regexec.c (check_dst_limits_calc_pos_1,
20022         check_subexp_matching_top):
20023         Likewise.
20024         * lib/regex_internal.c (re_string_reconstruct):
20025         Don't assume UCHAR_MAX == 255.
20026         * lib/regex_internal.h (bitset_set_all): Likewise.
20027         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
20028         All uses changed.
20029         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
20030         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
20031         All uses changed.
20032         (BITSET_WORD_MAX): New macro.
20033         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
20034         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
20035         (bitset_empty, bitset_copy):
20036         Prefer sizeof (bitset) to multiplying it out ourselves.
20037         (bitset_not_merge): Remove; unused.
20038         (bitset_contain): Return bool, not unsigned int with one bit on.
20039         All callers changed.
20040         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
20041         alignment than re_node_set; do this by defining a new internal
20042         type struct dests_alloc and using it to allocate memory.
20043
20044 2005-09-05  Bruno Haible  <bruno@clisp.org>
20045
20046         * gnulib-tool (func_import): Fix comparison in handling of symbolic
20047         links.
20048
20049 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
20050
20051         * modules/size_max (Makefile.am): Add size_max.h
20052
20053 2005-09-04  Derek Price  <derek@ximbiot.com>
20054
20055         * gnulib-tool (func_import): Fix reversed $symbolic logic.
20056
20057 2005-09-03  Simon Josefsson  <jas@extundo.com>
20058
20059         * gnulib-tool: Fix typo.
20060
20061 2005-09-03  Simon Josefsson  <jas@extundo.com>
20062
20063         * config/srclist.txt: Add glibc bug 1293.
20064
20065 2005-09-03  Derek Price  <derek@ximbiot.com>
20066
20067         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
20068         From Larry Jones <lawrence.jones@ugs.com>.
20069
20070 2005-09-02  Simon Josefsson  <jas@extundo.com>
20071
20072         * modules/socklen: New file.
20073
20074 2005-09-02  Simon Josefsson  <jas@extundo.com>
20075
20076         * modules/havelib: New module.
20077
20078         * modules/gettext, modules/iconv, modules/lock, modules/readline:
20079         Use havelib.
20080
20081 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
20082
20083         Check for arithmetic overflow when calculating sizes, to prevent
20084         some buffer-overflow issues.  These patches are conservative, in the
20085         sense that when I couldn't determine whether an overflow was possible,
20086         I inserted a run-time check.
20087         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
20088         macros.
20089         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
20090         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
20091         (re_xnrealloc, re_x2nrealloc): New inline functions.
20092         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
20093         parse_bracket_exp):
20094         (build_equiv_class, build_charclass): Check for arithmetic overflow
20095         in size expression calculations.
20096         * lib/regex_internal.c (re_string_realloc_buffers):
20097         (build_wcs_upper_buffer, re_node_set_add_intersect):
20098         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
20099         (re_dfa_add_node, register_state): Likewise.
20100         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
20101         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
20102         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
20103         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
20104
20105 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
20106
20107         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
20108         m4/ulonglong.m4.  Problem reported by Martin Lambers.
20109
20110 2005-09-02  Bruno Haible  <bruno@clisp.org>
20111
20112         Support for lib vs. lib64 distinction on biarch platforms.
20113         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
20114         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
20115         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
20116
20117 2005-09-02  Bruno Haible  <bruno@clisp.org>
20118
20119         * gnulib-tool (import): In the other first-use case, provide defaults
20120         as well.
20121
20122 2005-09-02  Bruno Haible  <bruno@clisp.org>
20123
20124         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
20125         patches not yet found in the latest gettext release.
20126
20127 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
20128
20129         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
20130         to avoid a collision with bits/local_lim.h in glibc.
20131         All uses changed.  Problem reported by Dmitry V. Levin in
20132         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
20133
20134         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
20135         bugs in int versus size_t comparisons.
20136         (re_string_context_at): Fix bug where the code assumed that
20137         Idx is signed.
20138
20139         Use bool where appropriate.
20140         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
20141         All callers changed.
20142         (calc_eclosure_iter): Likewise, for ROOT arg.
20143         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
20144         (build_charclass_op): Likewise, for NON_MATCH arg.
20145         * lib/regex_internal.c (re_string_allocate, re_string_construct):
20146         (re_string_construct_common): Likewise, for ICASE arg.
20147         * lib/regexec.c (re_search_2_stub, re_search_stub):
20148         Likewise, for RET_LEN arg.
20149         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
20150         (set_regs): Likewise, for FL_BACKTRACK arg.
20151         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
20152         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
20153         (calc_eclosure_iter, parse_bracket_exp):
20154         Use bool for internal variables that are booleans.
20155         * lib/regexec.c (re_search_internal, check_matching,
20156         proceed_next_node):
20157         (set_regs, build_sifted_states, sift_states_bkref):
20158         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
20159         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
20160         (find_collation_sequence_value):
20161         Likewise.
20162         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
20163         (re_node_set_compare):
20164         Return bool, not int. All callers changed.
20165         * lib/regexec.c (check_halt_node_context, check_dst_limits):
20166         (build_trtable, check_node_accept): Likewise.
20167         * lib/regex_internal.h: Include stdbool.h.
20168
20169         Fix bugs uncovered when converting to bool.
20170         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
20171         failure instead of charging ahead blindly.
20172         * lib/regex_internal.c (register_state): Likewise.
20173         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
20174         for freeing internal storage.
20175         (group_nodes_into_DFA_states): Use unsigned int, not int, for
20176         bitset pieces used as boolean, to avoid undefined behavior
20177         on hosts that do int overflow checking.
20178
20179 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
20180
20181         * config/srclist.txt: Add glibc bugs 1285-1287.
20182
20183 2005-09-01  Jim Meyering  <jim@meyering.net>
20184
20185         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
20186         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
20187         Require gl_STAT_MACROS, too.
20188
20189 2005-09-01  Bruno Haible  <bruno@clisp.org>
20190
20191         * gnulib-tool (import): In the first-use case, provide defaults.
20192
20193 2005-09-01  Bruno Haible  <bruno@clisp.org>
20194
20195         * gnulib-tool (func_import): Remove the .tmp files.
20196
20197 2005-09-01  Bruno Haible  <bruno@clisp.org>
20198
20199         * gnulib-tool (func_import): Fix handling of symbolic links.
20200
20201 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20202
20203         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
20204         old glibc regex code mishandles strings longer than 2**31 bytes.
20205         This patch fixes this when the regex code is used in gnulib
20206         (i.e., outside glibc).
20207
20208         This patch should not affect the use of the regex code inside
20209         glibc.  No doubt this problem also needs to be handled for glibc
20210         as well, but the result will be an incompatible change to the
20211         glibc ABI, and the old ABI will have to be supported too.  That
20212         can be the the subject for another patch.
20213
20214         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
20215         governing whether the rest of this patch is active.  By default,
20216         the macro is disabled and the patch has no effect.
20217         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
20218         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
20219         (struct re_pattern_buffer, re_search, re_search_2, re_match):
20220         (re_match_2, re_set_registers): Use the new types.
20221         * lib/regex_internal.h (Idx, re_hashval_t): New types.
20222         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
20223         New macros.
20224         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
20225         (re_string_context_at, bin_tree_t, re_dfastate_t):
20226         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
20227         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
20228         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
20229         (re_string_char_size_at, re_string_wchar_at):
20230         (re_string_elem_size_at):
20231         Use the new types and macros to port to 64-bit hosts.
20232         Use unsigned types for internal values, so that the code
20233         mostly works even for arrays larger than SSIZE_MAX.
20234         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
20235         (search_duplicated_node, calc_eclosure_iter, fetch_number):
20236         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
20237         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
20238         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
20239         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
20240         (calc_inveclosure, parse_dup_op, build_range_exp):
20241         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
20242         (fetch_number, create_token_tree, mark_opt_subexp):
20243         Likewise.
20244         * lib/regex_internal.c (re_string_construct_common,
20245         create_ci_newstate):
20246         (create_cd_newstate, re_string_allocate, re_string_construct):
20247         (re_string_realloc_buffers, build_wcs_upper_buffer):
20248         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
20249         (re_string_reconstruct, re_string_peek_byte_case):
20250         (re_string_fetch_byte_case, re_string_context_at):
20251         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
20252         (re_node_set_init_copy, re_node_set_add_intersect):
20253         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
20254         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
20255         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
20256         (re_acquire_state, re_acquire_state_context, register_state):
20257         Likewise.
20258         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
20259         search_cur_bkref_entry):
20260         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
20261         (re_search_internal, re_search_2_stub, re_search_stub)
20262         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
20263         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
20264         (update_cur_sifted_state, check_dst_limits):
20265         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
20266         (check_subexp_limits, sift_states_bkref, merge_state_array):
20267         (check_subexp_matching_top, get_subexp, get_subexp_sub):
20268         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
20269         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
20270         (expand_bkref_cache, check_node_accept_bytes):
20271         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
20272         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
20273         (acquire_init_state_context, check_halt_node_context):
20274         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
20275         (sift_states_backward, clean_state_log_if_needed):
20276         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
20277         (find_recover_state, transit_state_sb, transit_state_mb):
20278         (transit_state_bkref, build_trtable, match_ctx_clean):
20279         Likewise.
20280         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
20281         to work around an assumption that REG_MISSING is negative.
20282
20283         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
20284         (seek_collating_symbol_entry) [defined _LIBC]:
20285         (lookup_collation_sequence_value) [defined _LIBC]:
20286         (build_range_exp, build_collating_symbol) [defined _LIBC]:
20287         Use prototypes rather than old-style function definitions.
20288         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
20289         (transit_state_sb) [0]:
20290         (find_collation_sequence_value) [defined _LIBC]: Likewise.
20291
20292         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
20293         rm_eo.
20294
20295         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
20296         (optimize_subexps, lower_subexp):
20297         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
20298         since the signed shift might overflow.  Use 1u<<31 instead.
20299         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
20300         Likewise.
20301         * lib/regexec.c (check_dst_limits_calc_pos_1,
20302         check_subexp_matching_top): Likewise.
20303
20304         * lib/regcomp.c (optimize_subexps, lower_subexp):
20305         Use CHAR_BIT rather than 8, for clarity.
20306         * lib/regexec.c (check_dst_limits_calc_pos_1):
20307         (check_subexp_matching_top): Likewise.
20308         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
20309         have to worry about portability issues when shifting it left.
20310         Remove no-longer-needed test for table_size > 0.
20311         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
20312         in a word, as the resulting behavior is undefined.
20313         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
20314         in one case, a <= should have been an <, and in another case the
20315         whole test was missing.
20316         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
20317         the standard name CHAR_BIT.
20318         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
20319         this is not true on one's complement and signed-magnitude hosts.
20320
20321         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
20322         next_last_offset.
20323         (struct re_dfa_t): Remove unused member states_alloc.
20324         * lib/regcomp.c (init_dfa): Don't initialize unused members.
20325
20326 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20327
20328         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
20329         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
20330         and large-file glibc and in 32-bit large-file Solaris.
20331
20332 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20333
20334         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
20335         lengths fit in regoff_t; this isn't true if regoff_t is the same
20336         width as size_t.
20337         * lib/regex.c (re_search_internal): 5th arg is LAST_START
20338         (= START + RANGE) instead of RANGE.  This avoids overflow
20339         problems when regoff_t is the same width as size_t.
20340         All callers changed.
20341         (re_search_2_stub): Check for overflow when adding the
20342         sizes of the two strings.
20343         (re_search_stub): Check for overflow when adding START
20344         to RANGE; if it occurs, substitute the extreme value.
20345
20346 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20347
20348         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
20349
20350 2005-08-31  Jim Meyering  <jim@meyering.net>
20351
20352         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
20353         a pointer-to-const.
20354         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
20355         (register_state): Likewise.
20356         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
20357         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
20358         (group_nodes_into_DFAstates): Likewise.
20359
20360 2005-08-31  Jim Meyering  <jim@meyering.net>
20361
20362         * check-module: Add a FIXME comment.
20363
20364 2005-08-31  Eric Blake  <ebb9@byu.net>
20365
20366         * modules/unistd-safer (Files): Add unistd--.h.
20367         * modules/stdio-safer (Files): Add stdio--.h.
20368
20369 2005-08-31  Derek Price  <derek@ximbiot.com>
20370
20371         * lib/getdelim.c (getdelim): Return EOF on EOF.
20372         Reported by Larry Jones <lawrence.jones@ugs.com>.
20373
20374 2005-08-31  Bruno Haible  <bruno@clisp.org>
20375
20376         Avoid unnecessary diffs in the generated lib/Makefile.am.
20377         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
20378         the generated files.
20379         (func_import): Don't set cmd.
20380
20381 2005-08-31  Bruno Haible  <bruno@clisp.org>
20382
20383         * lib/strstr.c: Include <stddef.h>, for NULL.
20384         * lib/strcasestr.c: Likewise.
20385         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20386
20387 2005-08-31  Bruno Haible  <bruno@clisp.org>
20388
20389         * gnulib-tool: New option --macro-prefix.
20390         (func_import): Use macro_prefix.
20391         (import): Handle option --macro-prefix.
20392
20393 2005-08-31  Bruno Haible  <bruno@clisp.org>
20394
20395         * gnulib-tool (import): Rename most ac_* variables to cached_*.
20396         Also use new variables cached_lgpl, cached_libtool.
20397
20398 2005-08-31  Bruno Haible  <bruno@clisp.org>
20399
20400         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
20401         always instantiating them.
20402
20403 2005-08-31  Bruno Haible  <bruno@clisp.org>
20404
20405         * gnulib-tool (func_import): Read the previous cached settings
20406         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
20407         earlier added by gnulib but are now dropped. Warn when a gnulib file
20408         overwrites a non-gnulib file.
20409
20410 2005-08-31  Bruno Haible  <bruno@clisp.org>
20411
20412         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
20413         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
20414         projects that don't keep autogenerated files in CVS. Put into
20415         actioncmd only the specified modules, not the transitive closure.
20416
20417 2005-08-31  Bruno Haible  <bruno@clisp.org>
20418
20419         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
20420         Create directories that shall be filled.
20421         (import): Don't look for gl_* macros in configure.ac. Recurse across
20422         all directories containing a gnulib-cache.m4 files, if meaningful.
20423
20424 2005-08-31  Bruno Haible  <bruno@clisp.org>
20425
20426         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
20427         (import): Set seen_libtool when we see gl_LIBTOOL.
20428
20429 2005-08-31  Bruno Haible  <bruno@clisp.org>
20430
20431         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
20432         declaration macro definitions from generated gnulib.m4.
20433
20434 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
20435
20436         * lib/iconvme.h: Add prototype for iconv_alloc.
20437
20438 2005-08-29  Simon Josefsson  <jas@extundo.com>
20439
20440         * lib/iconvme.c: Fix errno.
20441
20442 2005-08-29  Bruno Haible  <bruno@clisp.org>
20443
20444         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
20445         that it works when the directory contains spaces.
20446
20447 2005-08-29  Bruno Haible  <bruno@clisp.org>
20448
20449         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
20450
20451 2005-08-29  Bruno Haible  <bruno@clisp.org>
20452
20453         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
20454         Emit more advice.
20455
20456 2005-08-29  Bruno Haible  <bruno@clisp.org>
20457         and Stepan Kasal  <kasal@ucw.cz>
20458
20459         * check-module: If more parameters are given, check each of them
20460         separately; add more exceptions, as noted by Jim Meyering.
20461         (check_module): New procedure.
20462         (%exempt_header): Now contains all exceptions.
20463
20464 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
20465
20466         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
20467
20468 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
20469
20470         * lib/iconvme.c: Split iconv_string into iconv_alloc.
20471
20472 2005-08-28  Bruno Haible  <bruno@clisp.org>
20473
20474         * m4/gnulib-tool.m4: New file.
20475
20476 2005-08-27  Jim Meyering  <jim@meyering.net>
20477
20478         * modules/unistd-safer (Files): Add pipe-safer.c.
20479         * modules/fcntl-safer (Files): Add creat-safer.c.
20480
20481 2005-08-27  Jim Meyering  <jim@meyering.net>
20482
20483         * m4/stdlib-safer.m4: New file.  From coreutils.
20484         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
20485         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
20486         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
20487         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
20488         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
20489
20490 2005-08-27  Jim Meyering  <jim@meyering.net>
20491
20492         * lib/fopen-safer.c: Merge minor changes from coreutils.
20493         * lib/dup-safer.c: Likewise.
20494         * lib/fd-safer.c: Likewise.
20495
20496         Merge from coreutils.
20497         * lib/stdio--.h: New file.
20498         * lib/stdlib--.h: New file.
20499         * lib/mkstemp-safer.c: New file.
20500
20501         GNU tar needs these.
20502         * lib/pipe-safer.c: New file.
20503         * lib/creat-safer.c: New file.
20504         * lib/fcntl--.h (creat): Define to creat_safer.
20505         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
20506         * lib/unistd--.h (pipe): Define to pipe_safer.
20507         * lib/unistd-safer.h: Declare pipe_safer.
20508
20509 2005-08-26  Simon Josefsson  <jas@extundo.com>
20510
20511         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
20512         Haible <bruno@clisp.org>.
20513
20514 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
20515
20516         * lib/regex_internal.h: Remove all references to
20517         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
20518         or better.
20519         (bitset_not, bitset_merge, bitset_not_merge):
20520         (bitset_mask, re_string_allocate, re_string_construct):
20521         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
20522         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
20523         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
20524         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
20525         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
20526         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
20527         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
20528         (re_acquire_state_context):
20529         Remove unnecessary forward decls.
20530         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
20531         Put __attribute at function definition,
20532         now that the function decl has been removed.
20533         * lib/regex_internal.c (re_string_peek_byte_case):
20534         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
20535         Likewise.
20536
20537 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
20538
20539         * m4/regex.m4: Add AC_PREREQ(2.50).
20540         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
20541
20542 2005-08-25  Simon Josefsson  <jas@extundo.com>
20543
20544         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
20545         __fsetlocking.
20546
20547 2005-08-25  Simon Josefsson  <jas@extundo.com>
20548
20549         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
20550         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
20551         GLIBC specific code.
20552
20553 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20554
20555         Make regex safe for g++.  This fixes one real bug (an "err"
20556         that should have been "*err").  g++ problem reported by
20557         Sam Steingold.
20558         * lib/regex_internal.h (re_calloc): New macro, consistent with
20559         re_malloc etc.  All callers of calloc changed to use re_calloc.
20560         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
20561         not int.  All callers changed.
20562         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
20563         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
20564         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
20565         (find_recover_state): Change "err" to "*err"; this fixes what
20566         appears to be a real bug.
20567         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
20568         versus int.
20569
20570 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20571
20572         * modules/regex (Depends-on): Add malloc, since the code
20573         assumes that !malloc(0) means failure.
20574
20575 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20576
20577         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
20578
20579         alloca modernization/simplification for regex.
20580         * lib/regex.c: Remove portability cruft for alloca.  This no longer
20581         needs to be at the start of the file, and can be moved into
20582         regex_internal.h and simplified.
20583         * lib/regex_internal.h: Include <alloca.h>.
20584         (__libc_use_alloca) [!defined _LIBC]: New macro.
20585         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
20586         now works outside glibc.
20587
20588 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20589
20590         * config/srclist.txt: Add glibc bugs 1241, 1245.
20591
20592 2005-08-25  Jim Meyering  <jim@meyering.net>
20593
20594         * lib/open-safer.c: Include <config.h>.
20595         Otherwise, we'd lose LARGEFILE support in any file using
20596         e.g. "fcntl--.h"
20597
20598 2005-08-25  Bruno Haible  <bruno@clisp.org>
20599
20600         * m4/minmax.m4: Require autoconf 2.52.
20601         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
20602         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
20603         alternatives of translit over the alphabet.
20604         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
20605
20606 2005-08-24  Simon Josefsson  <jas@extundo.com>
20607
20608         * tests/test-getpass.c: New file.
20609
20610 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
20611
20612         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
20613         for GNU regex features.
20614
20615 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
20616
20617         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
20618         * lib/regex.h (regerror): Likewise.
20619
20620         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
20621         requires this.  (The code never needed it.)
20622
20623         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
20624         All uses of recently-renamed identifiers changed to use the new,
20625         POSIX-compliant names.  The code will build and run just fine
20626         without these changes, but it's better to eat our own dog food
20627         and use the standard-conforming names.
20628
20629         * lib/regex.h: Fix a multitude of POSIX name space violations.
20630         These changes have an effect only for programs that define
20631         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
20632         do not change anything for programs compiled in the normal way.
20633         Also, there is no effect on the ABI.
20634
20635         (_REGEX_SOURCE): New macro.
20636         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
20637         defined and _GNU_SOURCE is not; this fixes a name space violation.
20638
20639         Rename the following macros to obey POSIX requirements.
20640         The old names are still visible as macros if _REGEX_SOURCE is defined.
20641         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
20642         RE_BACKSLASH_ESCAPE_IN_LISTS.
20643         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
20644         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
20645         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
20646         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
20647         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
20648         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
20649         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
20650         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
20651         (REG_INTERVALS): renamed from RE_INTERVALS.
20652         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
20653         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
20654         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
20655         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
20656         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
20657         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
20658         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
20659         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
20660         RE_UNMATCHED_RIGHT_PAREN_ORD.
20661         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
20662         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
20663         (REG_DEBUG): renamed from RE_DEBUG.
20664         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
20665         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
20666         unusual, since we can't clash with the POSIX REG_ICASE.
20667         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
20668         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
20669         (REG_NO_SUB): renamed from RE_NO_SUB.
20670         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
20671         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
20672         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
20673         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
20674         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
20675         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
20676         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
20677         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
20678         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
20679         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
20680         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
20681         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
20682         RE_SYNTAX_POSIX_MINIMAL_BASIC.
20683         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
20684         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
20685         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
20686         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
20687         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
20688         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
20689         (REG_FIXED): Renamed from REGS_FIXED.
20690         (REG_NREGS): Renamed from RE_NREGS.
20691
20692         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
20693         of other REG_* macros, since POSIX says the user is allowed to
20694         #undef these macros selectively.
20695
20696         (reg_errcode_t): Update comment stating what other tables need
20697         to be consistent.
20698
20699         Rename the following enum values to obey POSIX requirements.
20700         The old names are still visible as macros.
20701         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
20702         is not defined, since GNU is supposed to be a superset of POSIX as
20703         much as possible, and since we want reg_errcode_t to be a signed
20704         type for implementation consistency.
20705         (_REG_NOERROR): Renamed from REG_NOERROR.
20706         (_REG_NOMATCH): Renamed from REG_NOMATCH.
20707         (_REG_BADPAT): Renamed from REG_BADPAT.
20708         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
20709         (_REG_ECTYPE): Renamed from REG_ECTYPE.
20710         (_REG_EESCAPE): Renamed from REG_EESCAPE.
20711         (_REG_ESUBREG): Renamed from REG_ESUBREG.
20712         (_REG_EBRACK): Renamed from REG_EBRACK.
20713         (_REG_EPAREN): Renamed from REG_EPAREN.
20714         (_REG_EBRACE): Renamed from REG_EBRACE.
20715         (_REG_BADBR): Renamed from REG_BADBR.
20716         (_REG_ERANGE): Renamed from REG_ERANGE.
20717         (_REG_ESPACE): Renamed from REG_ESPACE.
20718         (_REG_BADRPT): Renamed from REG_BADRPT.
20719         (_REG_EEND): Renamed from REG_EEND.
20720         (_REG_ESIZE): Renamed from REG_ESIZE.
20721         (_REG_ERPAREN): Renamed from REG_ERPAREN.
20722         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
20723         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
20724         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
20725         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
20726
20727         (_REG_RE_NAME, _REG_RM_NAME): New macros.
20728         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
20729         changed.  But support the old name if the new one is not defined
20730         and if _REGEX_SOURCE.
20731
20732         Change the following member names in struct re_pattern_buffer.
20733         The old names are still supported if !_REGEX_SOURCE.
20734         The new names are always supported, regardless of _REGEX_SOURCE.
20735         (re_buffer): Renamed from buffer.
20736         (re_allocated): Renamed from allocated.
20737         (re_used): Renamed from used.
20738         (re_syntax): Renamed from syntax.
20739         (re_fastmap): Renamed from fastmap.
20740         (re_translate): Renamed from translate.
20741         (re_can_be_null): Renamed from can_be_null.
20742         (re_regs_allocated): Renamed from regs_allocated.
20743         (re_fastmap_accurate): Renamed from fastmap_accurate.
20744         (re_no_sub): Renamed from no_sub.
20745         (re_not_bol): Renamed from not_bol.
20746         (re_not_eol): Renamed from not_eol.
20747         (re_newline_anchor): Renamed from newline_anchor.
20748
20749         Change the following member names in struct re_registers.
20750         The old names are still supported if !_REGEX_SOURCE.
20751         The new names are always supported, regardless of _REGEX_SOURCE.
20752         (rm_num_regs): Renamed from num_regs.
20753         (rm_start): Renamed from start.
20754         (rm_end): Renamed from end.
20755
20756         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
20757         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
20758         Prepend __ to parameter names.
20759
20760         Undo yesterday's changes.
20761
20762 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
20763
20764         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
20765         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
20766         lib/regex.c.
20767
20768 2005-08-24  Jim Meyering  <jim@meyering.net>
20769
20770         Sync from coreutils.
20771         * m4/fcntl-safer.m4: New file.
20772
20773         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
20774         and object files for this module.
20775
20776 2005-08-24  Jim Meyering  <jim@meyering.net>
20777
20778         Sync from coreutils.
20779         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
20780
20781 2005-08-24  Jim Meyering  <jim@meyering.net>
20782
20783         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
20784         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
20785
20786 2005-08-24  Jim Meyering  <jim@meyering.net>
20787
20788         * modules/fcntl-safer: New module.
20789         * modules/fts (Depends-on): Add fcntl-safer.
20790         * MODULES.html.sh (File descriptor based Input/Output):
20791         Add fcntl-safer.
20792
20793 2005-08-24  Bruno Haible  <bruno@clisp.org>
20794
20795         Support for unit test modules.
20796         * modules/README: Mention tests modules.
20797         * modules/TEMPLATE-TESTS: New file.
20798         * gnulib-tool: New options --extract-tests-module, --with-tests and
20799         --tests-base (unused for the moment).
20800         (testsbase, inctests): New variables.
20801         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
20802         (func_verify_module): Exclude TEMPLATE-TESTS.
20803         (func_verify_nontests_module, func_verify_tests_module): New functions.
20804         (func_get_dependencies): Add implicit dependency for tests modules.
20805         (func_get_tests_module): New function.
20806         (func_modules_transitive_closure): When --with-tests was specified,
20807         include the unit tests as well, unless explicitly avoided.
20808         (func_emit_lib_Makefile_am): Ignore the tests modules here.
20809         (func_emit_tests_Makefile_am): New function.
20810         (func_create_testdir): When --with-tests was specified, emit a
20811         tests/ directory.
20812         * MODULES.html.sh (Future developments): Update.
20813
20814 2005-08-24  Bruno Haible  <bruno@clisp.org>
20815
20816         * modules/tls-tests: New file.
20817         * tests/test-tls.c: New file, from GNU gettext.
20818
20819 2005-08-24  Bruno Haible  <bruno@clisp.org>
20820
20821         * modules/lock-tests: New file.
20822         * tests/test-lock.c: New file, from GNU gettext.
20823
20824 2005-08-24  Bruno Haible  <bruno@clisp.org>
20825
20826         * lib/lock.h: Add multiple inclusion guard.
20827         * lib/tls.h: Add multiple inclusion guard.
20828
20829 2005-08-24  Bruno Haible  <bruno@clisp.org>
20830
20831         * gnulib-tool: Add support for the --aux-dir option to
20832         --create-testdir, --create-megatestdir, --test, --megatest.
20833         (func_create_testdir, func_create_megatestdir): Optionally emit a
20834         AC_CONFIG_AUX_DIR directive.
20835         (create-testdir, create-megatestdir, test, megatest): Provide a
20836         default value for $auxdir.
20837
20838 2005-08-24  Bruno Haible  <bruno@clisp.org>
20839
20840         * gnulib-tool (import): Use compound statement instead of subshell
20841         where possible.
20842
20843 2005-08-24  Bruno Haible  <bruno@clisp.org>
20844
20845         * gnulib-tool (import): Change --aux-dir default to "build-aux".
20846
20847 2005-08-24  Bruno Haible  <bruno@clisp.org>
20848
20849         * gnulib-tool (func_version): Update.
20850
20851 2005-08-24  Bruno Haible  <bruno@clisp.org>
20852
20853         * gnulib-tool (func_import, func_create_testdir,
20854         func_create_megatestdir): Quote all autoconf macro arguments.
20855
20856 2005-08-24  Bruno Haible  <bruno@clisp.org>
20857
20858         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
20859         option --force, because --force causes the aclocal.m4 of each
20860         subdirectory to be newer than the corresponding config.h.in.
20861
20862 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
20863
20864         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
20865         All contents moved to gl_REGEX.
20866         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
20867         assume that it does.
20868
20869 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
20870
20871         * lib/regex.h (REG_NOSYS)
20872         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
20873         Define, since POSIX requires it as of 2001.
20874         (_REG_ENOSYS)
20875         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
20876         New private symbol, used to keep the enum signed in all cases.
20877         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
20878         Youngman in
20879         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
20880
20881         * lib/regex_internal.c (re_string_skip_chars, register_state):
20882         (calc_state_hash):
20883         Remove forward decls; no longer needed now that we use prototypes.
20884         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
20885         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
20886         (clean_state_log_if_needed): Likewise.
20887
20888 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
20889
20890         * config/srclist.txt: Add glibc bugs 1231-1233.
20891
20892 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20893
20894         Fix problems reported by Sam Steingold in
20895         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
20896         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
20897         assumed that reg_errcode_t is a signed type, which is not
20898         necessarily true if _XOPEN_SOURCE is not defined.
20899         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
20900         since some compilers warn about it otherwise.
20901
20902 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20903
20904         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
20905         (init_word_char, create_initial_state, duplicate_node_closure):
20906         (fetch_token, peek_token_bracket, build_range_exp):
20907         (build_collating_symbol): Remove forward decls; no longer needed
20908         now that we use prototypes.
20909
20910         * lib/regcomp.c:
20911         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
20912         (re_compile_fastmap_iter, regcomp, regerror, regfree):
20913         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
20914         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
20915         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
20916         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
20917         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
20918         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
20919         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
20920         (build_range_exp, build_collating_symbol, parse_bracket_exp):
20921         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
20922         (build_charclass, build_charclass_op, fetch_number, create_tree):
20923         (create_token_tree, mark_opt_subexp, duplicate_tree):
20924         Use prototypes rather than old-style definitions.
20925
20926         * lib/regex_internal.c:
20927         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
20928         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
20929         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
20930         (re_string_reconstruct, re_string_peek_byte_case):
20931         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
20932         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
20933         (re_node_set_init_copy, re_node_set_add_intersect):
20934         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
20935         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
20936         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
20937         (re_acquire_state, re_acquire_state_context, register_state):
20938         (create_ci_newstate, create_cd_newstate, free_state):
20939         Likewise.
20940         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
20941         re_search_2):
20942         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
20943         (re_search_internal, prune_impossible_nodes):
20944         (acquire_init_state_context, check_matching, static):
20945         (check_halt_node_context, check_halt_state_context, proceed_next_node):
20946         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
20947         (update_regs, sift_states_backward, build_sifted_states):
20948         (clean_state_log_if_needed, merge_state_array):
20949         (update_cur_sifted_state, add_epsilon_src_nodes):
20950         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
20951         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
20952         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
20953         (find_recover_state, check_subexp_matching_top, transit_state_mb):
20954         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
20955         (check_arrival, check_arrival_add_next_nodes):
20956         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
20957         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
20958         (check_node_accept_bytes, check_node_accept, extend_buffers):
20959         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
20960         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
20961         (sift_ctx_init):
20962         Likewise.
20963
20964         * lib/regex_internal.h:
20965         (re_string_allocate, re_string_construct, re_string_reconstruct):
20966         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
20967         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
20968         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
20969         (re_string_context_at, re_string_peek_byte_case):
20970         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
20971         is defined, since we now use prototypes always.
20972
20973         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
20974         C89 or better.  All uses removed.
20975
20976 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20977
20978         * config/srclist.txt: Add glibc bugs 1220-1227.
20979
20980 2005-08-20  Jim Meyering  <jim@meyering.net>
20981
20982         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
20983         of unused local, dfa.
20984
20985 2005-08-20  Bruno Haible  <bruno@clisp.org>
20986
20987         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
20988
20989 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20990
20991         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
20992         (re_node_set_insert_last, re_dfa_add_node):
20993         Rename local variables to avoid GCC shadowing warnings.
20994
20995 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20996
20997         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
20998         [defined lint]: Suppress bogus uninitialized-variable warnings.
20999
21000         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
21001         and let the caller return REG_ESPACE if out of space.  This
21002         removes an uninitialied-variable warning with GCC 4.0.1, and also
21003         avoids taking the address of a local variable.  All callers
21004         changed.
21005
21006 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21007
21008         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
21009         $LIBCSRC/posix/regexec.c.
21010         Add glibc bug 1217 for regcomp.c.
21011
21012 2005-08-19  Jim Meyering  <jim@meyering.net>
21013
21014         * lib/regexec.c (proceed_next_node): Redo local variables to
21015         avoid GCC shadowing warnings.
21016
21017 2005-08-18  Bruno Haible  <bruno@clisp.org>
21018
21019         * lib/strstr.c (strstr): Fix return value in multibyte case.
21020         * lib/strcasestr.c (strcasestr): Likewise.
21021
21022 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
21023
21024         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
21025
21026 2005-08-17  Jim Meyering  <jim@meyering.net>
21027
21028         Make the %s format (seconds since the epoch) work for a negative
21029         number and when used with a zero-padded field width, e.g. %015s.
21030
21031         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
21032         label so that it precedes the code to set `digits'.  Otherwise,
21033         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
21034         print `00-22'.  Now, it prints `-0022', as it should.
21035
21036 2005-08-17  Bruno Haible  <bruno@clisp.org>
21037
21038         * modules/strstr (Files): Add m4/mbrtowc.m4.
21039         (Depends-on): Add mbuiter.
21040
21041 2005-08-17  Bruno Haible  <bruno@clisp.org>
21042
21043         * modules/strcasestr: New file.
21044         * MODULES.html.sh (String handling, based on ANSI C 89): Add
21045         strcasestr.
21046
21047 2005-08-17  Bruno Haible  <bruno@clisp.org>
21048
21049         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
21050
21051 2005-08-17  Bruno Haible  <bruno@clisp.org>
21052
21053         * modules/mbuiter: New file.
21054         * MODULES.html.sh (Extended multibyte and wide character utilities):
21055         Add mbuiter.
21056
21057 2005-08-17  Bruno Haible  <bruno@clisp.org>
21058
21059         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
21060         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
21061
21062 2005-08-17  Bruno Haible  <bruno@clisp.org>
21063
21064         * m4/strcasestr.m4: New file.
21065
21066 2005-08-17  Bruno Haible  <bruno@clisp.org>
21067
21068         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
21069         * lib/strstr.c: Completely rewritten, with multibyte locale support.
21070
21071 2005-08-17  Bruno Haible  <bruno@clisp.org>
21072
21073         * lib/strcasestr.h: New file.
21074         * lib/strcasestr.c: New file.
21075
21076 2005-08-17  Bruno Haible  <bruno@clisp.org>
21077
21078         * lib/strcasecmp.c: Use mbuiter.h.
21079
21080 2005-08-17  Bruno Haible  <bruno@clisp.org>
21081
21082         * lib/mbuiter.h: New file.
21083
21084 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
21085
21086         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
21087         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
21088         and gl_GETOPT are both invoked via different paths (as happens
21089         with GNU tar CVS because it uses both argp and getopt), the former
21090         wins.
21091
21092 2005-08-16  Bruno Haible  <bruno@clisp.org>
21093
21094         * modules/tls: New file.
21095         * MODULES.html.sh (Multithreading): Add tls.
21096
21097 2005-08-16  Bruno Haible  <bruno@clisp.org>
21098
21099         * modules/strnlen1: New file.
21100         * MODULES.html.sh (String handling): Add strnlen1.
21101
21102 2005-08-16  Bruno Haible  <bruno@clisp.org>
21103
21104         * modules/strcase (Files): Add m4/mbrtowc.m4.
21105         (Depends-on): Add strnlen1, mbchar.
21106
21107 2005-08-16  Bruno Haible  <bruno@clisp.org>
21108
21109         * modules/mbiter: New file.
21110         * MODULES.html.sh (Extended multibyte and wide character utilities):
21111         Add mbiter.
21112
21113 2005-08-16  Bruno Haible  <bruno@clisp.org>
21114
21115         * modules/mbfile: New file.
21116         * MODULES.html.sh (Extended multibyte and wide character utilities):
21117         Add mbfile.
21118
21119 2005-08-16  Bruno Haible  <bruno@clisp.org>
21120
21121         * modules/mbchar: New file.
21122         * MODULES.html.sh (Extended multibyte and wide character utilities):
21123         New section.
21124
21125 2005-08-16  Bruno Haible  <bruno@clisp.org>
21126
21127         * m4/tls.m4: New file, from GNU gettext.
21128
21129 2005-08-16  Bruno Haible  <bruno@clisp.org>
21130
21131         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
21132         always.
21133         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
21134
21135 2005-08-16  Bruno Haible  <bruno@clisp.org>
21136
21137         * m4/mbiter.m4: New file.
21138
21139 2005-08-16  Bruno Haible  <bruno@clisp.org>
21140
21141         * m4/mbfile.m4: New file.
21142
21143 2005-08-16  Bruno Haible  <bruno@clisp.org>
21144
21145         * m4/mbchar.m4: New file.
21146
21147 2005-08-16  Bruno Haible  <bruno@clisp.org>
21148
21149         * lib/tls.h: New file, from GNU gettext.
21150         * lib/tls.c: New file, from GNU gettext.
21151
21152 2005-08-16  Bruno Haible  <bruno@clisp.org>
21153
21154         * lib/strnlen1.h: New file.
21155         * lib/strnlen1.c: New file.
21156
21157 2005-08-16  Bruno Haible  <bruno@clisp.org>
21158
21159         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
21160         (mbi_init): Update.
21161         (mbi_avail, mbi_advance): Let the iteration end before the terminating
21162         NUL byte, not after it.
21163
21164 2005-08-16  Bruno Haible  <bruno@clisp.org>
21165
21166         * lib/strcase.h (strcasecmp): Add note in comments.
21167         * lib/strncasecmp.c: Use code from strcasecmp.c.
21168         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
21169         (strcasecmp): Work correctly in multibyte locales.
21170
21171 2005-08-16  Bruno Haible  <bruno@clisp.org>
21172
21173         * lib/mbiter.h: New file.
21174
21175 2005-08-16  Bruno Haible  <bruno@clisp.org>
21176
21177         * lib/mbfile.h: New file.
21178
21179 2005-08-16  Bruno Haible  <bruno@clisp.org>
21180
21181         * lib/mbchar.h: New file.
21182         * lib/mbchar.c: New file.
21183
21184 2005-08-16  Bruno Haible  <bruno@clisp.org>
21185
21186         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
21187         the valid ones. Makes the comparison operations transitive:
21188         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
21189         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
21190
21191 2005-08-15  Simon Josefsson  <jas@extundo.com>
21192
21193         * modules/ssize_t (License): Change to 'unlimited'.
21194
21195         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
21196
21197 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
21198
21199         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
21200         Add comments for each pending glibc patch.
21201
21202 2005-08-15  Bruno Haible  <bruno@clisp.org>
21203
21204         * lib/regex.h (__restrict_arr): Don't define to __restrict if
21205         __cplusplus is defined.
21206
21207 2005-08-14  Jim Meyering  <jim@meyering.net>
21208
21209         Sync from coreutils.
21210
21211         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
21212         Use the hash-table-based cycle-detection code not just when
21213         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
21214         Reported by James Youngman in
21215         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
21216         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
21217         FTS_TIGHT_CYCLE_CHECK.
21218         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
21219         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
21220         once again.
21221         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
21222         * lib/fts.c (fd_safer): Remove decl.
21223         Include fcntl--.h rather than unistd-safer.h
21224         (fts_safe_changedir): Don't call fd_safer; no longer needed
21225         now that we include fcntl--.h.
21226
21227 2005-08-12  Simon Josefsson  <jas@extundo.com>
21228
21229         * modules/getndelim2: Use ssize_t module.
21230         * modules/getnline: Likewise.
21231         * modules/safe-read: Likewise.
21232         * modules/xreadlink: Likewise.
21233
21234         * modules/ssize_t: New file.
21235
21236 2005-08-12  Simon Josefsson  <jas@extundo.com>
21237
21238         * m4/readline.m4: Look for termcap, curses or ncurses if required.
21239
21240 2005-08-12  Simon Josefsson  <jas@extundo.com>
21241
21242         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21243         ssize_t.
21244
21245 2005-08-12  Simon Josefsson  <jas@extundo.com>
21246
21247         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
21248         readline, getdelim and check_version.
21249         (Support for systems lacking ISO C 99: Sizes of integer types):
21250         Add size_max.
21251
21252 2005-08-12  Bruno Haible  <bruno@clisp.org>
21253
21254         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
21255
21256 2005-08-11  Simon Josefsson  <jas@extundo.com>
21257
21258         * modules/readline: New file.
21259
21260         * modules/strnlen (Files): Add strnlen.h.
21261
21262 2005-08-11  Simon Josefsson  <jas@extundo.com>
21263
21264         * m4/readline.m4: New file.
21265
21266 2005-08-11  Simon Josefsson  <jas@extundo.com>
21267
21268         * lib/readline.h, readline.c: New file.
21269
21270 2005-08-11  Simon Josefsson  <jas@extundo.com>
21271
21272         * doc/gnulib.texi (Initial import, Finishing touches): Mention
21273         gl_AVOID.
21274
21275 2005-08-11  Bruno Haible  <bruno@clisp.org>
21276
21277         * lib/strnlen.h (strnlen): Change parameter name to match comment.
21278
21279 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
21280
21281         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
21282
21283 2005-08-10  Simon Josefsson  <jas@extundo.com>
21284
21285         * tests/test-iconvme.c: New file.
21286
21287 2005-08-10  Simon Josefsson  <jas@extundo.com>
21288
21289         * m4/strnlen.m4: New file.
21290
21291         * m4/strndup.m4: Don't check for strnlen declaration, done in
21292         strnlen.m4.
21293
21294 2005-08-10  Simon Josefsson  <jas@extundo.com>
21295
21296         * lib/strndup.c: Use strnlen.h.
21297
21298         * lib/strnlen.h: New file.
21299
21300 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
21301
21302         * README: Typos.
21303
21304 2005-08-02  Simon Josefsson  <jas@extundo.com>
21305
21306         * modules/readline: New file.
21307
21308 2005-08-02  Simon Josefsson  <jas@extundo.com>
21309
21310         * modules/getdelim: New file.
21311
21312         * modules/getline: Rewrite, don't use getndelim2.
21313
21314 2005-08-02  Simon Josefsson  <jas@extundo.com>
21315
21316         * m4/getline.m4: Separate out getdelim stuff into separate module.
21317
21318         * m4/getdelim.m4: New file.
21319
21320 2005-08-02  Simon Josefsson  <jas@extundo.com>
21321
21322         * lib/getline.h, getline.c: Rewrite.
21323
21324         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
21325
21326 2005-07-31  Bruno Haible  <bruno@clisp.org>
21327
21328         * lib/lock.h (gl_lock_initializer): New macro.
21329         (gl_lock_define_initialized): Use it.
21330         (gl_rwlock_initializer): New macro.
21331         (gl_rwlock_define_initialized): Use it.
21332         (gl_recursive_lock_initializer): New macro.
21333         (gl_recursive_lock_define_initialized): Use it.
21334
21335 2005-07-30  Karl Berry  <karl@gnu.org>
21336
21337         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
21338         Report from Ben Pfaff, regarding getopt.
21339
21340 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
21341
21342         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
21343         normal way.
21344         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
21345         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
21346         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
21347         (gl_GETOPT): Use the new macros.  Most of the implementation
21348         is moved to the new macros.  This is for programs like Emacs
21349         that don't want all the functionality of gl_GETOPT.
21350
21351 2005-07-26  Bruno Haible  <bruno@clisp.org>
21352
21353         * m4/lock.m4: Update from GNU gettext.
21354
21355 2005-07-26  Bruno Haible  <bruno@clisp.org>
21356
21357         * lib/lock.h: Update from GNU gettext.
21358         * lib/lock.c: Update from GNU gettext.
21359
21360 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
21361
21362         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
21363         obsolescent AC_TRY_RUN.  Include the default includes files, for
21364         'exit'.
21365
21366 2005-07-24  Bruno Haible  <bruno@clisp.org>
21367
21368         * modules/visibility: New file.
21369         * MODULES.html.sh (Misc): Add visibility.
21370
21371 2005-07-24  Bruno Haible  <bruno@clisp.org>
21372
21373         * m4/visibility.m4: New file.
21374
21375 2005-07-24  Bruno Haible  <bruno@clisp.org>
21376
21377         * doc/visibility.texi: New file.
21378
21379 2005-07-22  Bruno Haible  <bruno@clisp.org>
21380
21381         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
21382         $(ALLOCA_H), redundant through BUILT_SOURCES.
21383         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
21384         redundant through BUILT_SOURCES.
21385         * modules/byteswap (Makefile.am): Remove explicit dependency on
21386         $(BYTESWAP_H), redundant through BUILT_SOURCES.
21387         * modules/fnmatch (Makefile.am): Remove explicit dependency on
21388         $(FNMATCH_H), redundant through BUILT_SOURCES.
21389         * modules/getopt (Makefile.am): Remove explicit dependency on
21390         $(GETOPT_H), redundant through BUILT_SOURCES.
21391         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
21392         redundant through BUILT_SOURCES.
21393         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
21394         redundant through BUILT_SOURCES.
21395         * modules/stdbool (Makefile.am): Remove explicit dependency on
21396         $(STDBOOL_H), redundant through BUILT_SOURCES.
21397         * modules/stdint (Makefile.am): Remove explicit dependency on
21398         $(STDINT_H), redundant through BUILT_SOURCES.
21399         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
21400         Remove explicit dependency on $(SYSEXITS_H).
21401         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
21402
21403 2005-07-18  Simon Josefsson  <jas@extundo.com>
21404
21405         * lib/check-version.c (check_version): Accept identical versions too.
21406
21407 2005-07-18  Bruno Haible  <bruno@clisp.org>
21408
21409         * modules/lock: New file.
21410         * MODULES.html.sh (Multithreading): New section.
21411
21412 2005-07-18  Bruno Haible  <bruno@clisp.org>
21413
21414         * m4/lock.m4: New file, from GNU gettext.
21415
21416 2005-07-18  Bruno Haible  <bruno@clisp.org>
21417
21418         * lib/lock.h: New file, from GNU gettext.
21419         * lib/lock.c: New file, from GNU gettext.
21420
21421 2005-07-18  Bruno Haible  <bruno@clisp.org>
21422
21423         * lib/lock.h (gl_once_t): New type.
21424         (gl_once_define, gl_once): New macros.
21425         * lib/lock.c (fresh_once): New variable.
21426         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
21427         functions.
21428
21429 2005-07-16  Simon Josefsson  <jas@extundo.com>
21430
21431         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
21432         workaround, suggested by Bruno.
21433
21434 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
21435
21436         * modules/xalloc (Depends-on): Add xalloc-die.
21437         * modules/xvasprintf (Depends-on): Add xalloc-die.
21438
21439 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
21440
21441         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
21442         with a minor change.
21443
21444 2005-07-15  Bruno Haible  <bruno@clisp.org>
21445
21446         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
21447         When using lib/poll.c, define poll as rpl_poll.
21448
21449 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
21450
21451         * modules/argp (Depends-on): Remove unlocked-io.
21452
21453 2005-07-14  Derek Price  <derek@ximbiot.com>
21454
21455         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
21456         for glob symlink bug.
21457
21458 2005-07-14  Bruno Haible  <bruno@clisp.org>
21459
21460         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
21461         Instead, test for *_unlocked function declarations directly.
21462
21463 2005-07-11  Simon Josefsson  <jas@extundo.com>
21464
21465         * modules/size_max: New file.
21466
21467         * modules/xsize: Depend on size_max module for size_max.m4.
21468
21469 2005-07-11  Simon Josefsson  <jas@extundo.com>
21470
21471         * lib/size_max.h: New file.
21472
21473 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
21474
21475         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
21476         copyright symbol and the year.
21477         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
21478         (version_etc_va): Use parameterized copyright notice.
21479         Reword to conform to the current GNU coding standards.
21480
21481 2005-07-11  Karl Berry  <karl@gnu.org>
21482
21483         * doc/gnulib.texi (Quoting): new node.
21484         (Initial import): more info, from Patrice.
21485
21486 2005-07-11  Bruno Haible  <bruno@clisp.org>
21487
21488         * gnulib-tool (func_usage): Document option --avoid.
21489         (Command line options): Handle --avoid.
21490         (func_acceptable): New function.
21491         (func_modules_transitive_closure): Use it.
21492
21493 2005-07-11  Bruno Haible  <bruno@clisp.org>
21494
21495         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
21496         Reported by Jim Meyering.
21497
21498 2005-07-10  Bruno Haible  <bruno@clisp.org>
21499
21500         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
21501         Needed when size_t is smaller than 'unsigned int'.
21502         Reported by Paul Eggert.
21503
21504 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
21505
21506         * modules/argp (Depends-on): Add unlocked-io
21507
21508 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
21509
21510         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
21511         block of defines.
21512
21513 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
21514
21515         * config/srclist.txt: Comment out regcomp.c, since we have a porting
21516         fix now.
21517
21518 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
21519         and Paul Eggert  <eggert@cs.ucla.edu>
21520
21521         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
21522         in wint_t, not wchar_t.  Remove now-unnecessary cast.
21523
21524 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
21525
21526         * modules/regex (Files): Add lib/regex_internal.c,
21527         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
21528         (Depends-on): Add extensions.
21529         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
21530
21531 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
21532
21533         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
21534         pathconf.
21535         * m4/same.m4 (gl_SAME): Likewise.
21536         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
21537
21538         * m4/regex.m4: Adjust to new libc regex implementation.
21539         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
21540         all the .c and .h parts of (the new) regex.
21541         Quote the m4 stuff better.
21542         Check for RE_ICASE bug of old gnulib.
21543         Check for REG_STARTEND of recent libc.
21544         Rename local variables from jm_* to gl_*.
21545         Quote operand of "test -f".
21546         Say "recent enough" version of libc, not "version 2".
21547         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
21548         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
21549         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
21550         Remove check for btowc, isascii.
21551         Require AM_LANGINFO_CODESET.
21552
21553 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
21554
21555         * lib/regex.c, regex.h: Sync from libc.
21556         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
21557         * lib/regexec.c:
21558         New files, synced from libc, except that regex_internal.h
21559         currently has a small porting fix.
21560
21561 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
21562
21563         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
21564         regex_internal.c, regexec.c.
21565         Add regex_internal.h too, but as a comment, since the libc version
21566         is currently broken in gnulib mode.
21567
21568 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
21569
21570         Support programs like Emacs that use gnulib but not gettext.
21571         * MODULES.html.sh (Internationalization functions): Add gettext-h.
21572         * modules/gettext-h: New file.
21573         * modules/gettext (Files): Remove lib/gettext.h.
21574         (Depends-on): Add gettext-h.
21575         (Makefile.am): Remove lib_SOURCES.
21576         * modules/argmatch, modules/c-stack, modules/closeout:
21577         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
21578         * modules/execute, modules/file-type, modules/getaddrinfo:
21579         * modules/getopt, modules/human, modules/javacomp:
21580         * modules/javaexec, modules/mkdir-p, modules/obstack:
21581         * modules/openat, modules/pagealign_alloc, modules/pipe:
21582         * modules/quotearg, modules/regex, modules/rpmatch:
21583         * modules/unicodeio, modules/userspec, modules/version-etc:
21584         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
21585         * modules/xsetenv:
21586         Depend on gettext-h, not gettext.
21587
21588 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
21589
21590         * gnulib-tool (func_import): Add support for 'public domain' license.
21591         * modules/alloca, modules/atexit, modules/memmove:
21592         Now public domain, not GPL.
21593         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
21594         * modules/realloc, modules/strerror, modules/strtod:
21595         Now LGPL, not GPL.
21596
21597 2005-07-05  Bruno Haible  <bruno@clisp.org>
21598
21599         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
21600         autoconf CVS. Needed for mingw.
21601
21602 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21603
21604         Remove the dependency of the strftime module on the tzset module.
21605         * modules/strftime (Depends-on): Remove dependency on tzset.
21606
21607 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21608
21609         Remove the dependency of the strftime module on the tzset module.
21610         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
21611         gl_FUNC_TZSET_CLOBBER.
21612
21613 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21614
21615         Remove the dependency of the strftime module on the tzset module.
21616         * lib/strftime.c (my_strftime)
21617         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
21618         Copy the input structure, to work around some of the bug with
21619         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
21620         Solaris releases, you should also use the tzset module, but we won't
21621         require it as a dependency any more since we don't want LGPLed code
21622         to depend on GPLed code.
21623
21624 2005-07-02  Jim Meyering  <jim@meyering.net>
21625
21626         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
21627         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
21628         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
21629         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
21630
21631 2005-07-02  Jim Meyering  <jim@meyering.net>
21632
21633         * lib/backupfile.c (backup_args): Change a `0' to NULL.
21634
21635 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21636
21637         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
21638         declares only 'struct timespec;' (!).
21639
21640 2005-07-01  Jim Meyering  <jim@meyering.net>
21641
21642         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
21643         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
21644         * lib/save-cwd.c, tempname.c:
21645         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
21646         and don't include <sys/file.h>).
21647
21648 2005-06-29  Jim Meyering  <jim@meyering.net>
21649
21650         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
21651         type name.  Use the variable name instead.
21652         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
21653         Likewise.
21654
21655 2005-06-28  Simon Josefsson  <jas@extundo.com>
21656
21657         * modules/check-version (Files): Add check-version.m4.
21658
21659 2005-06-28  Simon Josefsson  <jas@extundo.com>
21660
21661         * m4/check-version.m4: New file, suggested by Jim Meyering
21662         <jim@meyering.net>.
21663
21664 2005-06-28  Simon Josefsson  <jas@extundo.com>
21665
21666         * lib/check-version.h, lib/check-version.c: New files.
21667
21668 2005-06-28  Simon Josefsson  <jas@extundo.com>
21669
21670         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
21671         collision with global variable.  Better indentation.  Don't
21672         increment buffer pointer beyond buffer end.  Based on comments
21673         from Paul Eggert <eggert@cs.ucla.edu>.
21674
21675         * lib/base64.h: Indent.
21676
21677 2005-06-28  Simon Josefsson  <jas@extundo.com>
21678
21679         * doc/gnulib.texi (Library version handling): New section.
21680
21681 2005-06-28  Jim Meyering  <jim@meyering.net>
21682
21683         * check-module (find_included_lib_files): Hard-code another
21684         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
21685         but modules/fts-lgpl (correctly) does not list those files.
21686
21687         * modules/canonicalize (Files): Add lib/pathmax.h.
21688
21689 2005-06-25  Simon Josefsson  <jas@extundo.com>
21690
21691         * modules/check-version: New file.
21692
21693 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
21694
21695         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
21696         initializer of struct addrinfo, as an indication that we don't
21697         care how many members the structure has.
21698
21699 2005-06-24  Derek Price  <derek@ximbiot.com>
21700         and Bruno Haible  <bruno@clisp.org>
21701
21702         Remove stat module & update lstat.
21703         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
21704         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
21705         * m4/stat.m4: Remove this file.
21706
21707 2005-06-24  Derek Price  <derek@ximbiot.com>
21708         and Bruno Haible  <bruno@clisp.org>
21709
21710         Remove stat module & update lstat.
21711         * lib/stat.c: Remove this file...
21712         (slash_aware_lstat): ...moving this content and its support...
21713         * lib/lstat.c (rpl_lstat): ...into here.
21714         * lib/lstat.h: New file.
21715
21716 2005-06-24  Derek Price  <derek@ximbiot.com>
21717         and Bruno Haible  <bruno@clisp.org>
21718
21719         Remove stat module & update lstat.
21720         * config/srclist.txt (libc sources): Remove stat.
21721
21722 2005-06-24  Derek Price  <derek@ximbiot.com>
21723         and Bruno Haible  <bruno@clisp.org>
21724
21725         Remove stat module & update lstat.
21726         * MODULES.html.sh (stat): Remove.
21727         * MODULES.html: Regenerated.
21728         * modules/lstat (Description): Correct function name.
21729         (Files): Add "lstat.h".
21730         (Depends-on): Remove stat, add xalloc, stat-macros.
21731         * modules/stat: Remove this file.
21732         (Include): Add "lstat.h", remove <sys/stat.h>.
21733
21734 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
21735
21736         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
21737         (ranged_convert): Don't save conversion in a temporary struct.
21738         This causes a warning with GCC 4.0.0, and anyway in the typical
21739         case it's not worth the extra 100 bytes or so of code.
21740         (ranged_convert, __mktime_internal): When calling a function via a
21741         pointer P, use P () rather than (*P) (), as we now assume C89 or
21742         better.
21743
21744 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21745
21746         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
21747         "who -r" failed to give output.  Problem reported by Tim Waugh.
21748
21749         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
21750         (xcalloc): Use it to avoid needless tests.
21751         Problem reported by Jim Meyering.
21752
21753 2005-06-20  Derek Price  <derek@ximbiot.com>
21754
21755         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
21756         unnecessary for Autoconfs > 2.59c.
21757
21758 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21759
21760         * lib/argp.h (__option_is_short): Check upper limit of
21761         __key. Isprint() requires its argument to have the value
21762         of an unsigned char or EOF.
21763
21764 2005-06-16  Jim Meyering  <jim@meyering.net>
21765
21766         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
21767         when either N or S is zero.
21768
21769 2005-06-16  Derek Price  <derek@ximbiot.com>
21770
21771         * m4/bison.m4: Declare YACC & YFLAGS precious.
21772
21773 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
21774
21775         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
21776         multibyte string or pattern, fall back on unibyte matching.
21777         Problem reported by James Youngman.
21778
21779 2005-06-08  Bruno Haible  <bruno@clisp.org>
21780
21781         * modules/csharpcomp: New file.
21782         * MODULES.html.sh (C#): Add csharpcomp.
21783
21784 2005-06-08  Bruno Haible  <bruno@clisp.org>
21785
21786         * m4/csharpcomp.m4: New file, from GNU gettext.
21787
21788 2005-06-08  Bruno Haible  <bruno@clisp.org>
21789
21790         * lib/csharpcomp.h: New file, from GNU gettext.
21791         * lib/csharpcomp.c: New file, from GNU gettext.
21792         * lib/csharpcomp.sh.in: New file, from GNU gettext.
21793
21794 2005-06-08  Bruno Haible  <bruno@clisp.org>
21795
21796         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
21797         warning on mingw.
21798
21799 2005-06-07  Derek Price  <derek@ximbiot.com>
21800
21801         Sync from CVS.
21802         * lib/glob_.h: Indent nested #ifdef.
21803
21804 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
21805
21806         Sync from coreutils.
21807         Use "file name" when talking about file names, instead of "filename"
21808         or "path", as per the GNU coding standards.
21809         * lib/mkdir-p.c: Renamed from makepath.c.
21810         (make_dir_parents): Renamed from make_path.  All callers changed.
21811         * lib/mkdir-p.h: Likewise.  All includers changed.
21812         * lib/filenamecat.c: Renamed from path-concat.c.
21813         (file_name_concat): Renamed from path_concat.  All callers changed.
21814         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
21815         * lib/filenamecat.h: Likewise.  All includers changed.
21816         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
21817         in comments or local variable names.
21818         * lib/basename.c: Likewise.
21819         * lib/canonicalize.c, canonicalize.h: Likewise.
21820         * lib/dirname.c, dirname.h: Likewise.
21821         * lib/euidaccess.c: Likewise.
21822         * lib/exclude.c: Likewise
21823         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
21824         * lib/fsusage.c, fsuage.h: Likewise.
21825         * lib/fts.c, fts_.h: Likewise.
21826         * lib/getcwd.c: Likewise.
21827         * lib/getloadavg.c: Likewise.
21828         * lib/mkstemp.c: Likewise.
21829         * lib/mountlist.c, mountlist.h: Likewise.
21830         * lib/openat.c, openat.h: Likewise.
21831         * lib/readlink-stub.c: Likewise.
21832         * lib/readutmp.c, readutmp.h: Likewise.
21833         * lib/rename.c: Likewise.
21834         * lib/rmdir.c: Likewise.
21835         * lib/same.c: Likewise.
21836         * lib/savedir.c: Likewise.
21837         * lib/stripslash.c: Likewise.
21838         * lib/tempname.c: Likewise.
21839         * lib/xreadlink.c: Likewise.
21840         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
21841         All uses changed.
21842         * lib/exclude.h: Likewise.
21843
21844         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
21845         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
21846         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
21847         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
21848         * lib/pathmax.h: Include <limits.h> unconditionally, since other
21849         files have been getting away with it for years (MORE/BSD 4.3
21850         is extinct now).
21851         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
21852         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
21853
21854         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
21855         Define to 256, not 255, as per modern POSIX.
21856
21857 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
21858
21859         Sync from coreutils.
21860         Use "file name" when talking about file names, instead of "filename"
21861         or "path", as per the GNU coding standards.
21862         * MODULES.html.sh: mkdir-p renamed from makepath.
21863         filenamecat renamed from path-concat.
21864         * modules/filenamecat: Renamed from modules/path-concat.
21865         (Files): filenamecat.h and filenamecat.c renamed from
21866         path-concat.h and path-concat.c.
21867         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
21868         (Include): filenamecat.h, not path-concat.h.
21869         * modules/mkdir-p: Renamed from modules/makepath.
21870         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
21871         makepath.c.
21872         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
21873         (Include): mkdir-p.h, not makepath.h.
21874
21875 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
21876
21877         Sync from coreutils.
21878         * m4/mkdir-p.m4: Renamed from makepath.m4.
21879         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
21880         Rename files from makepath.c to mkdir-p.c, and from
21881         makepath.h to mkdir-p.h.
21882         * m4/filenamecat.m4: Renamed from path-concat.m4.
21883         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
21884         Rename files from path-concat.c to filenamecat.c,
21885         and from path-concat.h to filenamecat.h.
21886         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
21887         "file name" in local variables or comments.
21888         * m4/rename.m4: Likewise.
21889
21890 2005-06-01  Bruno Haible  <bruno@clisp.org>
21891
21892         * modules/csharpexec: New file.
21893         * MODULES.html.sh (C#): New section.
21894
21895 2005-06-01  Bruno Haible  <bruno@clisp.org>
21896
21897         * m4/csharp.m4: New file, from GNU gettext.
21898         * m4/csharpexec.m4: New file, from GNU gettext.
21899
21900 2005-06-01  Bruno Haible  <bruno@clisp.org>
21901
21902         * lib/csharpexec.h: New file, from GNU gettext.
21903         * lib/csharpexec.c: New file, from GNU gettext.
21904         * lib/csharpexec.sh.in: New file, from GNU gettext.
21905
21906 2005-05-31  Derek Price  <derek@ximbiot.com>
21907             Paul Eggert  <eggert@cs.ucla.edu>
21908
21909         Sync from cvs.
21910         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
21911
21912 2005-05-31  Derek Price  <derek@ximbiot.com>
21913             Paul Eggert  <eggert@cs.ucla.edu>
21914
21915         Sync from cvs.
21916         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
21917
21918 2005-05-29  Derek Price  <derek@ximbiot.com>
21919
21920         * config/srclist.txt (glob_.h, glob.c): Add these files.
21921
21922 2005-05-29  Derek Price  <derek@ximbiot.com>
21923
21924         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
21925         * modules/glob: New file.
21926         * modules/getlogin_r: Add link to POSIX spec in description.
21927
21928 2005-05-29  Derek Price  <derek@ximbiot.com>
21929             Paul Eggert  <eggert@cs.ucla.edu>
21930
21931         * m4/glob.m4: New file.
21932
21933 2005-05-29  Derek Price  <derek@ximbiot.com>
21934             Paul Eggert  <eggert@cs.ucla.edu>
21935
21936         * lib/glob_.h, lib/glob.c: New files.
21937
21938 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
21939
21940         * modules/fts (Files): Remove m4/inttypes-pri.m4.
21941         * modules/fts-lgpl (Depends-on): Remove gettext.
21942
21943 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
21944
21945         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
21946         and don't require gt_INTTYPES_PRI.
21947
21948 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
21949
21950         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
21951
21952         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
21953         the configuration hassle isn't worth it.
21954         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
21955         (LONGEST_MODIFIER, PRIuMAX): Remove.
21956
21957 2005-05-27  Bruno Haible  <bruno@clisp.org>
21958
21959         * lib/getlogin_r.h: Remove second include of <stddef.h>.
21960
21961 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
21962
21963         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
21964         _POSIX_PTHREAD_SEMANTICS for Solaris.
21965
21966 2005-05-25  Derek Price  <derek@ximbiot.com>
21967
21968         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
21969
21970 2005-05-25  Derek Price  <derek@ximbiot.com>
21971             Paul Eggert  <eggert@cs.ucla.edu>
21972
21973         * modules/getlogin_r, m4/getlogin_r.m4: New files.
21974         * lib/getlogin_r.c, getlogin_r.h: New files.
21975
21976 2005-05-25  Bruno Haible  <bruno@clisp.org>
21977             Derek Price  <derek@ximbiot.com>
21978
21979         * lib/getlogin_r.h: Simplify API documentation.
21980
21981 2005-05-23  Derek Price  <derek@ximbiot.com>
21982
21983         * modules/minmax (Files): Add m4/minmax.m4.
21984         (configure.ac): Add gl_MINMAX.
21985
21986 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
21987
21988         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
21989         so that unistd-safer.h (GPL'ed code) need not be included.
21990
21991 2005-05-22  Bruno Haible  <bruno@clisp.org>
21992
21993         * m4/minmax.m4: New file.
21994         Based on a patch by Derek Price <derek@ximbiot.com>.
21995
21996 2005-05-22  Bruno Haible  <bruno@clisp.org>
21997
21998         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
21999         (INT64_MIN): Fix definition.
22000         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
22001
22002         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
22003         NEED_SIGNED_INT_TYPES.
22004
22005         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
22006         HAVE_SYSTEM_INTTYPES.
22007
22008 2005-05-22  Bruno Haible  <bruno@clisp.org>
22009
22010         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
22011         Also include <sys/param.h> if it defines MIN, MAX.
22012         Based on a patch by Derek Price <derek@ximbiot.com>.
22013
22014 2005-05-21  Jim Meyering  <jim@meyering.net>
22015
22016         * modules/fts (Files): Add m4/inttypes-pri.m4.
22017         (Depends-on): Add lstat and remove gettext.  Alphabetize.
22018
22019 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
22020
22021         New fts module.
22022         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
22023         (setup_dir, free_dir): New functions.
22024         (enter_dir, leave_dir): Define trivial
22025         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
22026         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
22027         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
22028         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
22029         Move to fts-cycle.c.
22030         (fts_open): Use setup_dir.
22031         (fts_close): Use free_dir.
22032         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
22033         This adds a label and some gotos, but the alternatives were messier.
22034         Check for memory allocation failure when entering a dir.
22035         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
22036         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
22037         (FTS): New member fts_cycle, that is a union that contains the
22038         old active_dir_ht and cycle_state.  All uses changed to mention
22039         fts_cycle.ht and fts_cycle.state.
22040         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
22041         fts.c, with the following changes:
22042         (setup_dir, free_dir): New functions.
22043         (enter_dir): Now returns bool.  Return true if successful, false
22044         if memory exhausted.  All callers changed.
22045         Do not bother partly cleaning up on
22046         memory allocation failure; that is free_dir's job.
22047         However, free ad if hash_insert fails, to avoid memory leak.
22048         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
22049         fts->fts_options to see which union member to use.
22050
22051 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
22052
22053         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
22054         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
22055
22056 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
22057
22058         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
22059
22060 2005-05-20  Jim Meyering  <jim@meyering.net>
22061
22062         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
22063         Now a macro, to pacify GCC.
22064
22065 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
22066
22067         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
22068         of -1.
22069
22070 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
22071
22072         * lib/chown.c (rpl_chown): Return -1 on failure.
22073
22074 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
22075
22076         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
22077         Don't check for stddef.h.
22078         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
22079         don't use its results.
22080         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
22081         since we include them unconditionally.  Don't require
22082         AM_STDBOOL_H, since stdbool is a prerequisite.
22083         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
22084         since we assume C89 or better.
22085         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
22086         as we don't use their results.
22087         Don't check for fchdir, memmove, memset, strrchr, as we use
22088         them unconditionally.
22089         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
22090         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
22091
22092 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
22093
22094         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
22095         Include <stddef.h> unconditionally, since we assume C89 now.
22096         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
22097         * lib/fts.c: Include fts_.h first, to check interface.
22098         Do not include intprops.h; no longer needed.
22099         Include cycle-check.h and hash.h, since fts_.h no longer does.
22100         Remove unnecessary casts of closedir to void.
22101         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
22102         decide whether to decrement nlinks.
22103         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
22104         (FTS): Use struct hash_table * instead of Hash_table, so that
22105         we no longer need to include hash.h here.
22106
22107 2005-05-18  Jim Meyering  <jim@meyering.net>
22108
22109         * modules/dirfd (License): Change to LGPL.  Most of the code
22110         is already in the public domain.
22111
22112 2005-05-18  Jim Meyering  <jim@meyering.net>
22113
22114         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
22115         Reported by Yoann Vandoorselaere.
22116
22117 2005-05-17  Jim Meyering  <jim@meyering.net>
22118
22119         * m4/fts.m4: New file, from coreutils.
22120
22121 2005-05-17  Jim Meyering  <jim@meyering.net>
22122
22123         * lib/fts.c, lib/fts_.h: New files, from coreutils.
22124
22125 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
22126
22127         Sync from coreutils.
22128         * m4/unlinkdir.m4: New file.
22129
22130 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
22131
22132         Sync from coreutils.
22133         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
22134         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
22135         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
22136         White space changes only.
22137         * lib/makepath.c (make_path): Port to hosts where leading "//" is
22138         special.
22139         * lib/yesno.c: Include getline.h, not ctype.h.
22140         (yesno): Don't remove leading white space; POSIX doesn't allow it.
22141         Use getline to remove arbitrary restriction on response length.
22142
22143 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
22144
22145         * config/srclist-update: Spell out "Street" in FSF postal
22146         mail address; this is the style the FSF seems to prefer.
22147
22148         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
22149         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
22150         this updates FSF postal mail address.
22151
22152         Sync from coreutils.
22153         * modules/unlinkdir: New file.
22154         * modules/yesno (Depends-on): Add getline.
22155         * MODULES.html.sh (File system functions): Add unlinkdir.
22156
22157 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22158
22159         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
22160         lib/strsep.h:
22161         Change the initial comment to refer to GPL, not LGPL.
22162         gnulib-tool will change it to LGPL as needed.
22163
22164         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
22165         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
22166         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
22167         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
22168         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
22169         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
22170         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
22171         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
22172         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
22173         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
22174         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
22175         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
22176         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
22177         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
22178         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
22179         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
22180         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
22181         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
22182         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
22183         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
22184         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
22185         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
22186         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
22187         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
22188         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
22189         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
22190         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
22191         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
22192         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
22193         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
22194         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
22195         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
22196         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
22197         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
22198         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
22199         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
22200         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
22201         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
22202         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
22203         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
22204         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
22205         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
22206         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
22207         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
22208         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
22209         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
22210         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
22211         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
22212         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
22213         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
22214         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
22215         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
22216         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
22217         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
22218         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
22219         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
22220         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
22221         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
22222         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
22223         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
22224         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
22225         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
22226         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
22227         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
22228         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
22229         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
22230         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
22231         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
22232         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
22233         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
22234         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
22235         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
22236         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
22237         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
22238         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
22239         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
22240         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
22241         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
22242         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
22243         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
22244         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
22245         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
22246         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
22247         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
22248         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
22249         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
22250         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
22251         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
22252         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
22253         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
22254         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
22255         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
22256         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
22257         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
22258         lib/yesno.c, lib/yesno.h:
22259         Update FSF postal mail address.
22260
22261 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22262
22263         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
22264         tests/test-memmem.c, tests/test-stpncpy.c:
22265         Update FSF postal mail address.
22266
22267 2005-05-13  Bruno Haible  <bruno@clisp.org>
22268
22269         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
22270         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
22271         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
22272         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
22273         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
22274         Add support for 64-bit integers in the MSVC compiler.
22275
22276 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
22277
22278         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
22279
22280 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
22281
22282         * gnulib-tool (func_import): Sort and uniquify recommended includes.
22283
22284 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
22285
22286         * doc/getdate.texi (General date syntax): Don't say that date
22287         date --iso-8601=ns generates acceptable dates; it doesn't yet.
22288         Problem reported by Nic Ferrier.
22289
22290 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22291
22292         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
22293         specified in ai_socktype. Fix invalid ai_protocol
22294         check. ai_protocol is usually set to 0 or depending on
22295         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
22296         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
22297         ai_socktype / ai_protocol in the returned addrinfo structure.
22298
22299 2005-05-10  Simon Josefsson  <jas@extundo.com>
22300
22301         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
22302         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22303
22304 2005-05-10  Karl Berry  <karl@gnu.org>
22305
22306         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
22307         (from http://www.gnu.org/licenses).
22308         * doc/COPYING.LIB: also rename to COPYING.LESSER.
22309         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
22310         fdl.texi suffices.
22311
22312 2005-05-10  Karl Berry  <karl@gnu.org>
22313
22314         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
22315         (COPYING.DOC): remove.
22316
22317         * config/srclist-update: new FSF address.
22318
22319 2005-05-10  Derek Price  <derek@ximbiot.com>
22320
22321         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
22322         possible.
22323
22324 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22325             Bruno Haible  <bruno@clisp.org>
22326
22327         * modules/inet_ntop: New file.
22328         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
22329         inet_ntop.
22330
22331 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22332             Bruno Haible  <bruno@clisp.org>
22333
22334         * m4/inet_ntop.m4: New file.
22335
22336 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22337             Bruno Haible  <bruno@clisp.org>
22338
22339         * lib/inet_ntop.h: New file.
22340         * lib/inet_ntop.c: New file, from glibc with modifications.
22341
22342 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
22343
22344         * modules/time_r (License): Change to LGPL.
22345         * modules/extensions (License): Change to LGPL.  Actually,
22346         the license is more permissive than that, but currently gnulib-tool
22347         doesn't know how to handle more-permissive licenses.
22348
22349         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
22350         Problem reported by Dave Love.
22351
22352 2005-05-08  Jim Meyering  <jim@meyering.net>
22353
22354         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
22355         blank.
22356
22357 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
22358
22359         * modules/argmatch (Depends-on): Add stdbool.
22360         * modules/backupfile (Depends-on): Likewise.
22361         * modules/chdir-long (Depends-on): Likewise.
22362         * modules/closeout (Depends-on): Likewise.
22363         * modules/cycle-check (Depends-on): Likewise.
22364         * modules/dirname (Depends-on): Likewise.
22365         * modules/fnmatch (Depends-on): Likewise.
22366         * modules/fsusage (Depends-on): Likewise.
22367         * modules/fwriteerror (Depends-on): Likewise.
22368         * modules/getcwd (Depends-on): Likewise.
22369         * modules/getloadavg (Depends-on): Likewise.
22370         * modules/hard-locale (Depends-on): Likewise.
22371         * modules/makepath (Depends-on): Likewise.
22372         * modules/mountlist (Depends-on): Likewise.
22373         * modules/nanosleep (Depends-on): Likewise.
22374         * modules/posixtm (Depends-on): Likewise.
22375         * modules/quotearg (Depends-on): Likewise.
22376         * modules/readtokens (Depends-on): Likewise.
22377         * modules/readtokens0 (Depends-on): Likewise.
22378         * modules/readutmp (Depends-on): Likewise.
22379         * modules/save-cwd (Depends-on): Likewise.
22380         * modules/strftime (Depends-on): Likewise.
22381         * modules/userspec (Depends-on): Likewise.
22382         * modules/utimecmp (Depends-on): Likewise.
22383         * modules/xgetcwd (Depends-on): Likewise.
22384         * modules/xnanosleep (Depends-on): Likewise.
22385         * modules/xstrtod (Depends-on): Likewise.
22386         * modules/yesno (Depends-on): Likewise.
22387
22388 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
22389
22390         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
22391         needless checks.
22392
22393 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
22394
22395         Merge from coreutils.  Among other things,
22396         add bulletproofing for cases where stdin, stdout, or stderr are closed.
22397         * lib/fd-safer.c: New file.
22398         * lib/fcntl-safer.h, open-safer.c: Remove.
22399         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
22400         * lib/dup-safer.c: Include unistd-safer.h first.
22401         Don't include errno.h.
22402         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
22403         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
22404         * lib/file-type.c: Rely on file-type.h change.
22405         * lib/getloadavg.c: Include unistd-safer.h.
22406         (getloadavg): Use safer open.
22407         * lib/getusershell.c: Include "stdio-safer.h".
22408         (getusershell): Use safer fopen.
22409         * lib/long-options.c (long_options): Use NULL rather than 0.
22410         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
22411         'free'.
22412         * lib/modechange.c: Likewise.
22413         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
22414         (MODE_DONE): New constant.
22415         (struct mode_change): Remove 'next' member.
22416         (make_node_op_equals): New function; like the old one of the
22417         same name, except it allocates an array.
22418         (mode_compile, mode_create_from_ref): Use it.
22419         (mode_compile): Allocate result as an array, not a linked list.
22420         Parse octal string ourself, so that we catch mistakes like "+0".
22421         (mode_adjust): Arg is an array, not a linked list.
22422         * lib/modechange.c: Include stat-macros.h, xalloc.h.
22423         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
22424         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
22425         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
22426         Remove.  This is now stat-macros.h's job.
22427         (talloc): Remove.  All callers replaced by xalloc, so that
22428         our invokers don't have to worry about reporting memory failures.
22429         (make_node_op_equals): Remove.
22430         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
22431         New constants.
22432         (struct mode_change): Moved here from modechange.h.
22433         (mode_append_entry): Remove.
22434         (mode_compile): Remove MASKED_OPS arg, since it encouraged
22435         apps to have incorrect behavior.  Use simpler algorithm for head
22436         and tail.  Don't futz with umask; that's now the job of mode_adjust.
22437         Detect more invalid usages rather than having somewhat-random behavior.
22438         Don't insert an "a=" action, as that leads to incorrect behavior.
22439         (mode_compile, mode_create_from_ref): Return NULL on error instead
22440         of an enum, since now there's only one way to have an error.  All
22441         callers changed.
22442         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
22443         at the correct time.  Simplify calculation of "+u" and its ilk.
22444         Don't mishandle "+X".
22445         (mode_free): Remove "register" and localize decls.
22446         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
22447         (struct mode_change): Move to modechange.c; callers don't
22448         need to see this stuff.
22449         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
22450         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
22451         (mode_change, mode_adjust): Reflect the new signatures noted above.
22452         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
22453         that might redefine system include files.
22454         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
22455         (my_usleep): Use NULL rather than (void *) 0.
22456         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
22457         Use siginterrupt to specify that system calls should be interrupted.
22458         (rpl_nanosleep): Move initialization of suspended closer to call of
22459         my_usleep.
22460         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
22461         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
22462         (desirable_utmp_entry): New function.
22463         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
22464         using x2nrealloc, to simplify logic.
22465         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
22466         size calculation.  Do not assume utmp file is a regular file.
22467         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
22468         (READ_UTMP_CHECK_PIDS): New constant.
22469         * lib/save-cwd.c: Include unistd-safer.h.
22470         (save_cwd): Use fd_safer.
22471         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
22472         [!_LIBC] Include "stat-macros.h" instead.
22473         * lib/unistd-safer.h (fd_safer): New decl.
22474
22475 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
22476
22477         * modules/getloadavg (Depends-on): Add unistd-safer.
22478         * modules/getusershell (Depends-on): Add stdio-safer.
22479         * modules/lstat (Depends-on): Remove xalloc.
22480         * modules/mkstemp (Depends-on): Add stat-macros.
22481         * modules/modechange (Depends-on): Remove xstrtol.
22482         Add stat-macros, xalloc.
22483         * modules/save-cwd (Depends-on): Add unistd-safer.
22484         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
22485         * modules/unistd-safer (Files): Add lib/fd-safer.c
22486         (Makefile.am): Remove lib_SOURCES.
22487
22488         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
22489         Remove fcntl-safer; unistd-safer supersedes it.
22490
22491 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
22492
22493         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
22494         AC_HEADER_STAT.
22495         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
22496         (gl_PREREQ_CHOWN): Remove.
22497         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
22498         it.  Don't require AC_HEADER_STAT.
22499         (gl_PREREQ_LSTAT): Remove.
22500         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
22501         Don't require AC_HEADER_STAT.
22502         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
22503         (gl_PREREQ_RMDIR): Remove.
22504         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
22505         mention stat-macros.h or AC_HEADER_STAT, since we'll make
22506         the stat-macros module a prerequisite.
22507         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
22508         * m4/filemode.m4 (gl_FILEMODE): Likewise.
22509         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
22510         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
22511         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
22512         variable names.
22513         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
22514         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
22515         variable prefixes.
22516         * m4/fcntl-safer.m4: Remove.
22517         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
22518         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
22519         Invoke gl_PREREQ_FD_SAFER.
22520         (gl_PREREQ_FD_SAFER): New macro.
22521         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
22522         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
22523         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
22524         Remove duplicate call to AC_LIBOBJ(readutmp).
22525         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
22526
22527         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
22528         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
22529
22530 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
22531
22532         * MODULES.html.sh (Misc): Add byteswap.
22533
22534 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
22535
22536         * modules/getcwd (Depends-on): Add extensions.
22537         * modules/openat (Depends-on): Likewise.
22538
22539 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
22540
22541         * modules/byteswap: New file.
22542
22543 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
22544
22545         * m4/byteswap.m4: New file.
22546
22547 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
22548
22549         * lib/byteswap_.h: New file.
22550
22551 2005-04-25  Karl Berry  <karl@gnu.org>
22552
22553         * m4/gettext.m4: Update from GNU gettext 0.14.4.
22554
22555 2005-04-25  Albert Chin  <china@thewrittenword.com>
22556
22557         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
22558         Toolkit C bug.
22559
22560 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
22561
22562         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
22563         (func_ln_if_changed) Remove forcibly for no error message
22564         in case file does not exist.
22565
22566 2005-04-19  Simon Josefsson  <jas@extundo.com>
22567
22568         * gnulib-tool (Options): Make --symlink mean --symbolic.
22569
22570 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
22571
22572         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
22573
22574 2005-04-16  Simon Josefsson  <jas@extundo.com>
22575
22576         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
22577
22578 2005-04-15  Simon Josefsson  <jas@extundo.com>
22579
22580         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
22581
22582 2005-04-15  Simon Josefsson  <jas@extundo.com>
22583
22584         * gnulib-tool: Rename --symlink to --symbolic.
22585
22586 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
22587
22588         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
22589         symbolic links to files instead of copying/moving.  Add --aux-dir,
22590         specifying directory relative --dir where auxiliary build tools
22591         are placed.
22592
22593 2005-04-14  Bruno Haible  <bruno@clisp.org>
22594
22595         * modules/allocsa (License): Change to LGPL.
22596         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
22597
22598 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
22599
22600         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
22601         that "UTC +1 second" continues to work.  Problem reported
22602         by Dmitry V. Levin.
22603         (relunit_snumber): New rule.
22604         (relunit): Use it.
22605
22606 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
22607
22608         * lib/getdate.y (universal_time_zone_table): New constant.
22609         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
22610         universal_time_zone_table.
22611         (lookup_zone): Prefer universal_time_zone_table to
22612         local_time_zone_table, so that "GMT" time stamps are allowed in
22613         London during the summer.  Problem reported by Ian Abbott.
22614
22615 2005-04-12  Jim Meyering  <jim@meyering.net>
22616
22617         * lib/human.c (humblock): Set *options even when returning due to
22618         xstrtoumax conversion failure.  Thanks to a used-uninitialized
22619         warning from gcc-4.
22620
22621 2005-04-09  Jim Meyering  <jim@meyering.net>
22622
22623         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
22624         -Wuninitialized: initialize tm0.tm_year.
22625
22626 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
22627
22628         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
22629         count, since there's no maximum.  All uses changed.
22630         Add member dsts_seen.
22631         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
22632         not being INT_MAX.
22633         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
22634         Use pc_rels_seen to decide whther a date is absolute.
22635
22636         * lib/getdate.y (number): Don't overwrite year.
22637         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
22638         check.
22639
22640 2005-04-02  Simon Josefsson  <jas@extundo.com>
22641
22642         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
22643         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
22644
22645 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
22646
22647         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
22648         where no absolute path name can be longer than PATH_MAX.
22649
22650 2005-03-27  Jim Meyering  <jim@meyering.net>
22651
22652         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
22653
22654 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
22655
22656         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
22657         "one's complement" -> "ones' complement" in comment, as per Knuth.
22658         "value of type" -> "type or expression" in comment.
22659         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
22660
22661 2005-03-26  Jim Meyering  <jim@meyering.net>
22662
22663         Comment nits.
22664         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
22665         Correct typos: s/or/of/.
22666
22667 2005-03-26  Jim Meyering  <jim@meyering.net>
22668
22669         * modules/check-include-files: Move to ../ and rename to...
22670         * check-module: ...this.
22671
22672 2005-03-25  Jim Meyering  <jim@meyering.net>
22673
22674         * modules/xvasprintf (Files): Add xalloc.h.
22675
22676 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
22677
22678         * modules/gettext (Files): config/config.rpath ->
22679         build-aux/config.rpath
22680         * modules/iconv (Files): Likewise.
22681         Problem reported by Oskar Liljeblad.
22682
22683 2005-03-23  Jim Meyering  <jim@meyering.net>
22684
22685         * modules/check-include-files: New script to check for
22686         missing dependencies, multiple includes, etc.
22687
22688         * modules/c-strtold (Depends-on): Add xalloc.
22689         * modules/c-strtod (Depends-on): Add xalloc.
22690         * modules/hash (Depends-on): Add xalloc.
22691         (Files): Remove lib/xalloc.h.
22692
22693         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
22694         * modules/userspec (Files): Add lib/inttostr.h.
22695
22696 2005-03-23  Jim Meyering  <jim@meyering.net>
22697
22698         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
22699
22700 2005-03-22  Jim Meyering  <jim@meyering.net>
22701
22702         * modules/stat-macros: New module.
22703         * modules/canonicalize, modules/euidaccess, modules/file-type,
22704         * modules/filemode, modules/lchown, modules/makepath,
22705         * modules/rmdir, modules/stat: Depend on new stat-macros module
22706         rather than listing lib/stat-macros.h manually.
22707         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
22708
22709 2005-03-22  Jim Meyering  <jim@meyering.net>
22710
22711         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
22712
22713 2005-03-22  Bruno Haible  <bruno@clisp.org>
22714
22715         * config/srclist.txt: Replace target directory 'config' with
22716         'build-aux'.
22717         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
22718         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
22719         ../build-aux/.
22720
22721 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
22722
22723         * modules/chdir-long (Depends-on): Add mempcpy.
22724
22725         * modules/acl, modules/backupfile, modules/c-strtod,
22726         modules/c-strtold, modules/canon-host, modules/canonicalize,
22727         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
22728         modules/exclude, modules/exitfail, modules/file-type,
22729         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
22730         modules/getdate, modules/getline, modules/getpagesize,
22731         modules/getpass, modules/getugroups, modules/group-member,
22732         modules/hard-locale, modules/hash, modules/human, modules/idcache,
22733         modules/inttostr, modules/long-options, modules/makepath,
22734         modules/md5, modules/memcasecmp, modules/memcoll,
22735         modules/modechange, modules/mountlist, modules/path-concat,
22736         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
22737         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
22738         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
22739         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
22740         modules/strftime, modules/strndup, modules/strverscmp,
22741         modules/timespec, modules/unlocked-io, modules/userspec,
22742         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
22743         modules/yesno:
22744         Remove lib_SOURCES line from Makefile.am section, as this is now
22745         done automatically by the corresponding Autoconf macro.
22746
22747 2005-03-21  Jim Meyering  <jim@meyering.net>
22748
22749         Changes imported from coreutils.
22750
22751         * lib/cycle-check.c: Don't include xalloc.h.
22752
22753         * lib/path-concat.c: Don't include assert.h.
22754         (path_concat): Remove assertion that would have triggered
22755         for ABASE starting with more than one slash.
22756         Reported by Andreas Schwab.
22757
22758         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
22759         properly when ABASE is an absolute file name.
22760         Correct the description of this function.
22761         Include <assert.h>.
22762         Add an assertion and a test driver.
22763         This fixes a bug introduced on 2004-07-02.
22764         Andreas Schwab reported the resulting failure of cp --parents:
22765         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
22766
22767 2005-03-21  Jim Meyering  <jim@meyering.net>
22768
22769         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
22770         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
22771
22772 2005-03-21  Jim Meyering  <jim@meyering.net>
22773         and  Paul Eggert  <eggert@cs.ucla.edu>
22774
22775         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
22776         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
22777         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
22778         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
22779         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
22780         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
22781         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
22782         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
22783         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
22784         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
22785         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
22786         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
22787         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
22788         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
22789         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
22790         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
22791         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
22792         for these modules.
22793
22794 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
22795
22796         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
22797         (which shouldn't happen), generate nothing instead of returning 0
22798         immediately, so that nstrftime (NULL, ...) doesn't return 0.
22799
22800 2005-03-16  Bruno Haible  <bruno@clisp.org>
22801
22802         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
22803         HAVE_LONGLONG_64BIT.
22804
22805 2005-03-16  Bruno Haible  <bruno@clisp.org>
22806
22807         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
22808         HAVE_LONGLONG_64BIT.
22809
22810 2005-03-16  Bruno Haible  <bruno@clisp.org>
22811
22812         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
22813         HAVE_LONGLONG_64BIT.
22814
22815 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
22816
22817         * lib/strftime.c (my_strftime): Prepend space to format so that we can
22818         reliably distinguish strftime failure from empty output on POSIX
22819         hosts.
22820
22821 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
22822
22823         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
22824         (iconv_string): Don't guess a size-zero buffer, as that might cause
22825         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
22826         result would be 'too large', where 'too large' is (heuristically)
22827         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
22828         overflow concerns.  This will prevent some unwanted malloc failures
22829         when the inputs are very large.
22830
22831 2005-03-15  Karl Berry  <karl@gnu.org>
22832
22833         * config/srclist.txt (config.rpath): from gettext.
22834         * config/config.rpath: update.
22835
22836 2005-03-15  Bruno Haible  <bruno@clisp.org>
22837
22838         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
22839         to 'negate'.
22840
22841         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
22842         variable.
22843
22844         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
22845         results.
22846
22847 2005-03-14  Simon Josefsson  <jas@extundo.com>
22848
22849         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
22850         <fx@gnu.org>.
22851
22852 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
22853
22854         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
22855         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
22856         intprops.h.
22857         * lib/strtol.c: Likewise.
22858
22859 2005-03-14  Jim Meyering  <jim@meyering.net>
22860
22861         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
22862         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
22863         to be nonzero so that we (and caller) can detect the difference
22864         between a valid zero-length expansion and an error return, even
22865         when the underlying strftime fails before writing anything into
22866         that location.
22867
22868 2005-03-14  Bruno Haible  <bruno@clisp.org>
22869
22870         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
22871         Update from GNU gettext 0.14.3.
22872
22873 2005-03-10  Jim Meyering  <jim@meyering.net>
22874
22875         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
22876
22877 2005-03-10  Jim Meyering  <jim@meyering.net>
22878
22879         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
22880         so that this module works on systems without fchdir.
22881
22882 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
22883
22884         Factor int-properties macros into a single file, except for
22885         glibc-related files.
22886         * lib/intprops.h: New file.
22887         * lib/getloadavg.c: Include it instead of limits.h.
22888         (INT_STRLEN_BOUND): Remove.
22889         * lib/human.c: Include intprops.h.
22890         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
22891         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
22892         302/1000.
22893         * lib/inttostr.h: Include intprops.h instead of limits.h.
22894         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
22895         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
22896         for consistency with intprops.h.
22897         (time_t_is_integer, twos_complement_arithmetic): Use them.
22898         * lib/sig2str.h: Include <signal.h>, intprops.h.
22899         (INT_STRLEN_BOUND): Remove.
22900         * lib/strftime.c (TYPE_SIGNED): Remove.
22901         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
22902         * lib/strtol.c: Adjust comments to match intprops.h.
22903         * lib/userspec.c: Include intprops.h.
22904         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
22905         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
22906         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
22907         instead of rolling our own expressions.
22908         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
22909
22910         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
22911         instead of int.
22912         (my_strftime): Do not mishandle years close to INT_MAX, by doing
22913         the right thing even if adding 1900 would overflow.  Similarly
22914         for tm_mon + 1 and tm_yday + 1.
22915         Make %Y always equivalent to %C%y, and similarly for %G and %g.
22916         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
22917         (DO_SIGNED_NUMBER): New macro.
22918         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
22919
22920 2005-03-07  Bruno Haible  <bruno@clisp.org>
22921
22922         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
22923
22924 2005-03-07  Bruno Haible  <bruno@clisp.org>
22925
22926         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
22927
22928 2005-03-04  Derek R. Price  <derek@ximbiot.com>
22929
22930         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
22931         (func_import): Only replace files via --import when they have actually
22932         changed.
22933
22934 2005-03-03  Derek R. Price  <derek@ximbiot.com>
22935
22936         * m4/mmap-anon.m4: New file.
22937         * m4/pagealign_alloc.m4: New file.
22938
22939 2005-03-03  Derek R. Price  <derek@ximbiot.com>
22940             Bruno Haible  <bruno@clisp.org>
22941
22942         * modules/pagealign_alloc: New file.
22943         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
22944
22945 2005-03-03  Derek R. Price  <derek@ximbiot.com>
22946             Bruno Haible  <bruno@clisp.org>
22947
22948         * lib/pagealign_alloc.h: New file.
22949         * lib/pagealign_alloc.c: New file.
22950
22951 2005-03-03  Bruno Haible  <bruno@clisp.org>
22952
22953         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
22954         Use an all-permissive copyright notice, recommended by RMS.
22955
22956 2005-03-02  Bruno Haible  <bruno@clisp.org>
22957
22958         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
22959         of AIX, the replacement has to be done only after <string.h> is
22960         included, therefore not in config.h. stpncpy.h does the replacement,
22961         and stpncpy.c uses it.
22962
22963 2005-03-02  Bruno Haible  <bruno@clisp.org>
22964
22965         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
22966         stpncpy.c uses it.
22967
22968 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22969
22970         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
22971         The workaround isn't strictly needed for POSIX conformance, and
22972         it's too much of a pain to configure and maintain.  We'll ask
22973         people to fix their kernels instead.
22974         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
22975         (NANOSLEEP_BUG_WORKAROUND): Remove.
22976         (xnanosleep): Remove the workaround.
22977
22978 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22979
22980         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
22981         Reported by Derek Price.
22982         (Include): Add "timespec.h".
22983
22984         * modules/xnanosleep (Depends-on): Remove gethrxtime.
22985
22986 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22987
22988         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
22989         to detect nanosleep bug.
22990
22991 2005-03-01  Bruno Haible  <bruno@clisp.org>
22992
22993         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
22994
22995 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
22996
22997         * modules/gethrxtime: New file.
22998         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
22999         (Depends-on): Add gethrxtime.
23000         (configure.ac): Add gl_XNANOSLEEP.
23001         (Makefile.am): Remove lib_SOURCES line.
23002
23003 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
23004
23005         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
23006         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
23007
23008 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
23009
23010         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
23011         * lib/timespec.h (gettime): Return void, since it always
23012         succeeds now.  All uses changed.
23013         * lib/gettime.c (gettime) Likewise.
23014         [HAVE_NANOTIME]: Prefer nanotime.
23015         Assume gettimeofday succeeds, as POSIX requires.
23016         Assime time () succeeds, since other code already does.
23017         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
23018         (timespec_subtract): Remove.
23019         (NANOSLEEP_BUG_WORKAROUND): New constant.
23020         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
23021         things considerably.  Use it only on GNU/Linux hosts, since the
23022         workaround shouldn't be needed elsewhere.
23023
23024 2005-02-24  Bruno Haible  <bruno@clisp.org>
23025
23026         * modules/gettext (Files): Add m4/glibc2.m4.
23027
23028 2005-02-24  Bruno Haible  <bruno@clisp.org>
23029
23030         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
23031         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
23032         * m4/progtest.m4:
23033         Update from GNU gettext 0.14.2.
23034         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
23035
23036 2005-02-24  Bruno Haible  <bruno@clisp.org>
23037
23038         * lib/localcharset.c: Update from GNU gettext 0.14.2.
23039         * lib/config.charset: Update from GNU gettext 0.14.2.
23040
23041 2005-02-24  Bruno Haible  <bruno@clisp.org>
23042
23043         * lib/gettext.h: Update from GNU gettext 0.14.2.
23044
23045 2005-02-23  Simon Josefsson  <jas@extundo.com>
23046
23047         * m4/iconvme.m4: New file.
23048
23049 2005-02-23  Jim Meyering  <jim@meyering.net>
23050
23051         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
23052         change.
23053         Thanks to Bruno Haible for catching it.
23054
23055 2005-02-22  Simon Josefsson  <jas@extundo.com>
23056
23057         * modules/iconvme: New file.
23058
23059         * MODULES.html.sh: Add iconvme.
23060
23061 2005-02-22  Simon Josefsson  <jas@extundo.com>
23062
23063         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
23064
23065 2005-02-22  Simon Josefsson  <jas@extundo.com>
23066
23067         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
23068
23069 2005-02-22  Jim Meyering  <jim@meyering.net>
23070
23071         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
23072         s/ifndef/ifdef/.
23073
23074 2005-02-20  Neil Conway  <neilc@samurai.com>
23075
23076         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
23077         returned by OSX/Darwin if the specified buffer is not large
23078         enough for the hostname.
23079
23080 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23081
23082         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
23083         pass it to _help, otherwise the latter coredumps trying to
23084         dereference state.root_argp.
23085
23086 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
23087
23088         * modules/chdir-long (Depends-on): Add memrchr.
23089         * modules/memrchr (Files): Add lib/memrchr.h.
23090         (Include): "memrchr.h".
23091
23092 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
23093
23094         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
23095
23096 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
23097
23098         * lib/memrchr.h: New file.
23099         * lib/chdir-long.c: Include it.
23100         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
23101         Don't bother including stddef.h.
23102
23103 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
23104
23105         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
23106         inclusion.
23107         Include <sys/types.h>, for dev_t.
23108         (ME_DUMMY, ME_REMOTE): Move from here....
23109         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
23110         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
23111         Dmitry V. Levin.
23112         Include mountlist.h first, to test the interface.
23113
23114 2005-01-29  Bruno Haible  <bruno@clisp.org>
23115
23116         * lib/progname.c (program_name): Initialize.
23117         Needed when linking statically on MacOS X.
23118
23119 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
23120
23121         Sync from coreutils.
23122         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
23123         (Depends-on): Add c-strtod.
23124         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
23125
23126 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
23127
23128         Sync from coreutils.
23129         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
23130
23131         Remove files that are specific to coreutils.
23132         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
23133
23134 2005-01-28  Bruno Haible  <bruno@clisp.org>
23135
23136         * modules/javacomp: New file.
23137         * MODULES.html.sh (Java): Add javacomp.
23138
23139 2005-01-28  Bruno Haible  <bruno@clisp.org>
23140
23141         * m4/javacomp.m4: New file, from GNU gettext.
23142
23143 2005-01-28  Bruno Haible  <bruno@clisp.org>
23144
23145         * lib/javacomp.sh.in: New file, from GNU gettext.
23146         * lib/javacomp.h: New file, from GNU gettext.
23147         * lib/javacomp.c: New file, from GNU gettext.
23148
23149 2005-01-26  Simon Josefsson  <jas@extundo.com>
23150
23151         * lib/gai_strerror.c: Use GPL in header.
23152
23153 2005-01-26  Bruno Haible  <bruno@clisp.org>
23154
23155         * modules/javaexec: New file.
23156         * MODULES.html.sh (Java): Add javaexec.
23157
23158 2005-01-26  Bruno Haible  <bruno@clisp.org>
23159
23160         * m4/javaexec.m4: New file, from GNU gettext.
23161
23162 2005-01-26  Bruno Haible  <bruno@clisp.org>
23163
23164         * lib/javaexec.sh.in: New file, from GNU gettext.
23165         * lib/javaexec.h: New file, from GNU gettext.
23166         * lib/javaexec.c: New file, from GNU gettext.
23167
23168 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23169
23170         * modules/lchown (Depends-on): Remove lchown.h
23171
23172 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23173
23174         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
23175         must be defined if the header file was not found, in order
23176         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
23177
23178 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23179
23180         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
23181         initializers for struct pentry_state.
23182         (__argp_error): Check return value of __asprintf
23183         (__argp_failure): Translate error message
23184
23185         * lib/argp-parse.c: Removed braces around the expansion of N_()
23186
23187 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
23188
23189         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
23190         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
23191         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
23192         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
23193         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
23194         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
23195         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
23196         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
23197         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
23198         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
23199         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
23200         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
23201         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
23202         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
23203         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
23204         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
23205         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
23206         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
23207         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
23208         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
23209         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
23210         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
23211         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
23212         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
23213         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
23214         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
23215         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
23216         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
23217         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
23218         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
23219         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
23220         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
23221         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
23222         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
23223         xstrtol.m4, xstrtoumax.m4, yesno.m4:
23224         Use an all-permissive copyright notice, recommended by RMS.
23225
23226 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
23227
23228         * modules/chdir-long (Depends-on): Remove mempcpy.
23229
23230 2005-01-21  Jim Meyering  <jim@meyering.net>
23231
23232         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
23233         same value as for Solaris 9.
23234
23235         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
23236         component length.  This included changing the parameter to be
23237         of type `char *' rather than `char const *'.
23238         * lib/chdir-long.h (chdir_long): Update prototype.
23239
23240         * lib/openat.c (fdopendir, fstatat): New functions.
23241         * lib/openat.h: Include headers required for use of DIR and struct
23242         stat.
23243         [AT_SYMLINK_NOFOLLOW]: Define.
23244         (fdopendir, fstatat): Add prototypes.
23245
23246 2005-01-21  Bruno Haible  <bruno@clisp.org>
23247
23248         * modules/classpath: New file.
23249         * MODULES.html.sh (Java): Add classpath.
23250
23251 2005-01-21  Bruno Haible  <bruno@clisp.org>
23252
23253         * lib/classpath.h: New file, from GNU gettext.
23254         * lib/classpath.c: New file, from GNU gettext.
23255
23256 2005-01-20  Simon Josefsson  <jas@extundo.com>
23257
23258         * modules/version-etc-fsf: New file.
23259
23260 2005-01-20  Simon Josefsson  <jas@extundo.com>
23261
23262         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
23263         * lib/version-etc.c: Remove version_etc_copyright.
23264         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
23265         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
23266
23267 2005-01-20  Simon Josefsson  <jas@extundo.com>
23268
23269         * lib/base64.h (isbase64): Add.
23270
23271         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
23272         using a unsigned prototype, don't inline.
23273         (base64_decode): Use it.
23274
23275 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
23276
23277         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
23278         it.
23279
23280 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
23281
23282         * lib/save-cwd.c (save_cwd): Remove code to support the case
23283         where fchdir is missing or flaky.
23284
23285 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
23286
23287         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
23288
23289 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
23290
23291         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
23292         AC_LIBSOURCES now does this.
23293         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
23294         with new ullong_max module.
23295
23296 2005-01-19  Bruno Haible  <bruno@clisp.org>
23297
23298         * modules/sh-quote: New file.
23299         * MODULES.html.sh (Executing programs): Add sh-quote.
23300
23301 2005-01-19  Bruno Haible  <bruno@clisp.org>
23302
23303         * lib/sh-quote.h: New file, from GNU gettext.
23304         * lib/sh-quote.c: New file, from GNU gettext.
23305
23306 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
23307
23308         Merge from coreutils.
23309         * m4/ullong_max.m4: New file.
23310         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
23311         (gl_MACROS): Assume localeconv exists.
23312
23313 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
23314
23315         Merge changes from coreutils, as described below in several
23316         changelogs dated today.
23317
23318         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
23319         (O_DIRECTORY): Remove; not needed here, since "." must be
23320         a directory.  All uses removed.
23321         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
23322         universal on Suns, and we also need to test for IRIX.
23323         Revamp code to use 'if' rather than '#if'.
23324         Avoid unnecessary comparison of cwd->desc to 0.
23325
23326         * lib/utimens.c (futimens): Robustify the previous patch, by checking
23327         for known valid error numbers rather than observed invalid ones.
23328
23329 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
23330
23331         * modules/ullong_max: New file.
23332
23333         * modules/chdir-long, modules/openat: New files.
23334         * modules/save-cwd (Depends-on): Depend on chdir-long.
23335         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
23336
23337 2005-01-18  Jim Meyering  <jim@meyering.net>
23338
23339         Merge from coreutils.
23340         * m4/chdir-long.m4, m4/openat.m4: New files.
23341         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
23342         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
23343         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
23344         is sane and DOES follow symlinks.  Besides, testing 20 different
23345         systems found no broken chown implementations.
23346         Prompted by a change in rsync's copy of this macro.
23347         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
23348
23349         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
23350
23351         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
23352         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
23353         NULL-means-set-to-current-time semantics.
23354         Remove temporary file immediately, rather than waiting
23355         for configure's at-exit trap code to do it.
23356
23357 2005-01-18  Jim Meyering  <jim@meyering.net>
23358
23359         * lib/version-etc.c (version_etc_copyright): Update copyright date.
23360
23361         * lib/utimens.c (futimens): Account for the fact that futimes
23362         can also fail with errno == ENOSYS or errno == ENOENT.
23363         Patch from Dmitry V. Levin.
23364
23365         Change the name of the robust chdir function from chdir to chdir_long.
23366         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
23367         (restore_cwd): Use chdir_long, not chdir.
23368         * lib/chdir-long.c: Renamed from chdir.c.
23369         * lib/chdir-long.h: Renamed from chdir.h.
23370         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
23371         Hurd.
23372
23373 2005-01-18  Bruno Haible  <bruno@clisp.org>
23374
23375         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
23376         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
23377         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
23378         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
23379         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
23380         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
23381         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
23382         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
23383         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
23384         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
23385         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
23386         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
23387         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
23388         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
23389         Use an all-permissive copyright notice, recommended by RMS.
23390
23391 2005-01-18  Bob Proulx  <bob@proulx.com>
23392
23393         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
23394         simplify offsetof() macro construct to avoid compile failure with
23395         native HP-UX 11.0 ANSI C compiler.
23396
23397 2005-01-17  Bruno Haible  <bruno@clisp.org>
23398
23399         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
23400         redundant because stpncpy.m4 takes care of it.
23401
23402 2005-01-17  Bruno Haible  <bruno@clisp.org>
23403
23404         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
23405
23406 2005-01-17  Bruno Haible  <bruno@clisp.org>
23407
23408         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
23409         used.
23410
23411 2005-01-17  Bruno Haible  <bruno@clisp.org>
23412
23413         * lib/fwriteerror.h (fwriteerror): Change specification to include
23414         fclose.
23415         * lib/fwriteerror.c: Include <stdbool.h>.
23416         (fwriteerror): At the end, close the file stream. Record whether
23417         stdout was already closed.
23418
23419 2005-01-17  Bruno Haible  <bruno@clisp.org>
23420
23421         * lib/execute.c (environ): Declare if needed.
23422         * lib/pipe.c (environ): Likewise.
23423         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
23424
23425 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23426
23427         * modules/argp: Depend on vsnprintf
23428
23429 2005-01-10  Jim Meyering  <jim@meyering.net>
23430
23431         * modules/closeout (Depends-on): Add atexit.
23432
23433 2005-01-06  Bruno Haible  <bruno@clisp.org>
23434
23435         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
23436
23437 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23438
23439         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
23440         definitions to be after all include files, to avoid collisions.
23441         Problem reported by Bob Proulx.
23442
23443 2005-01-04  Jim Meyering  <jim@meyering.net>
23444
23445         Changes imported from coreutils.
23446         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
23447         as the mkstemp template, use a temporary directory and an
23448         8.3-friendly template to avoid trouble on systems like DJGPP.
23449         Reported by Juan M. Guerrero via Stepan Kasal.
23450         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
23451         close. Remove the temporary directory right away, rather than waiting
23452         for configure's at-exit trap code to do it.
23453         Suggestion from Stepan Kasal.
23454
23455 2005-01-01  Simon Josefsson  <jas@extundo.com>
23456
23457         * gnulib-tool: Print #include directives when --import'ing.
23458
23459 2004-12-28  Simon Josefsson  <jas@extundo.com>
23460
23461         * tests/test-base64.c: Include required header files.  Remove
23462         unused variables.
23463
23464 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
23465
23466         * modules/error (Depends-on): Remove gettext.
23467
23468 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
23469
23470         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
23471         not needed.  This removes a dependency on the gettext module.
23472         [defined _LIBC]: Do not include <libintl.h>; not needed.
23473
23474 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
23475
23476         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
23477         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
23478
23479 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
23480
23481         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
23482         HAVE_DECL_STRTOLD.
23483
23484 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
23485
23486         * modules/getdate (Depends-on): Remove alloca-opt.
23487
23488 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
23489
23490         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
23491
23492 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
23493
23494         * lib/argp-parse.c: Include <stddef.h>.
23495         (alignof, alignto): New macros.
23496         (parser_init): Don't assume that void * is aligned sufficiently
23497         for struct option.
23498
23499         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
23500         need to extend the stack.
23501         (YYINITDEPTH): New macro, so that the initial stack isn't overly
23502         large.
23503
23504 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23505
23506         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
23507
23508 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
23509
23510         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
23511         (2004-10-24) change.  Apparently this was a false alarm.
23512
23513         * modules/getdate: Depend on alloca-opt, not alloca.
23514
23515 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
23516
23517         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
23518         Remove now-obsolete comment about AIX.
23519         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
23520         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
23521         (YYMAXDEPTH): New macro.
23522
23523 2004-12-18  Simon Josefsson  <jas@extundo.com>
23524
23525         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
23526
23527 2004-12-18  Bruno Haible  <bruno@clisp.org>
23528
23529         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
23530
23531 2004-12-18  Bruno Haible  <bruno@clisp.org>
23532
23533         * lib/fatal-signal.c (fatal_signals): Make non-const.
23534         (init_fatal_signals): New function.
23535         (uninstall_handlers, install_handlers): Ignore signals that were set to
23536         SIG_IGN.
23537         (at_fatal_signal): Call init_fatal_signals.
23538         (init_fatal_signal_set): Likewise. Ignore signals that were set to
23539         SIG_IGN.
23540         Reported by Paul Eggert.
23541
23542 2004-12-18  Bruno Haible  <bruno@clisp.org>
23543
23544         * doc/alloca.texi: New file.
23545         * doc/alloca-opt.texi: New file.
23546
23547 2004-12-17  Jim Meyering  <jim@meyering.net>
23548
23549         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
23550         Otherwise, install-sh could exit with improper exit status when
23551         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
23552
23553 2004-12-16  Simon Josefsson  <jas@extundo.com>
23554
23555         * tests/test-base64.c: Add license.
23556
23557 2004-12-15  Stepan Kasal  <address@hidden>
23558
23559         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
23560
23561 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
23562
23563         * modules/getcwd (Files): Add m4/d-ino.m4.
23564         Suggested by Mark D. Baushke.
23565
23566 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
23567
23568         * lib/getdate.y (textint): New member "negative".
23569         (time_zone_hhmm): New function.
23570         Expect 14 shift-reduce conflicts, not 13.
23571         (o_colon_minutes): New rule.
23572         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
23573         (yylex): Set the "negative" member of signed numbers.
23574
23575 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
23576
23577         * doc/getdate.texi (Time of day items, Time zone items):
23578         Describe new formats +00:00, UTC+00:00.
23579
23580 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
23581
23582         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
23583         spurious "-l"s.  Problem reported by Stepan Kasal.
23584
23585 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
23586
23587         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
23588         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
23589
23590 2004-12-04  Simon Josefsson  <jas@extundo.com>
23591
23592         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
23593         Vandoorselaere <yoann@prelude-ids.org>.
23594
23595 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
23596
23597         Changes imported from coreutils.
23598         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
23599         exist.
23600         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
23601
23602 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
23603
23604         Changes imported from coreutils.
23605         * lib/hard-locale.c: Assume <locale.h> exists.
23606         Include "strdup.h".
23607         (GLIBC_VERSION): New macro.
23608         (hard_locale): Assume setlocale exists.
23609         Rewrite to avoid #ifdef.
23610         Use strdup rather than malloc + strcpy.
23611         * lib/human.c: Assume <locale.h> exists.
23612         (human_readable): Assume localeconv exists.
23613
23614 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
23615
23616         * modules/hard-locale (Depends-on): Add strdup.
23617
23618 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
23619
23620         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
23621         convert T2, not T.  (Imported from libc.)
23622
23623 2004-11-30  Simon Josefsson  <jas@extundo.com>
23624
23625         * modules/restrict (License): Change to LGPL.
23626
23627 2004-11-30  Simon Josefsson  <jas@extundo.com>
23628
23629         * m4/restrict.m4: Add copyright and copying conditions.
23630
23631 2004-11-30  Simon Josefsson  <jas@extundo.com>
23632
23633         * m4/base64.m4: New file.
23634
23635 2004-11-30  Simon Josefsson  <jas@extundo.com>
23636
23637         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
23638         base64.
23639
23640         * tests/test-base64.c: New file.
23641
23642         * modules/base64: New file.
23643
23644 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
23645
23646         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
23647         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
23648
23649         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
23650
23651 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
23652
23653         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
23654         (__getcwd.c): Don't restore errno; glibc doesn't.
23655         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
23656         first, falling back to our code only if its results look suspicious.
23657         Ensure that the resulting buffer is only as large as necessary.
23658
23659         * lib/readutmp.c: Include readutmp.h first.
23660         Include <errno.h>, since readutmp.h no longer does that.
23661         * lib/readutmp.h: Don't include <errno.h>,
23662         <sys/param.h>, <time.h>; not needed to establish interface.
23663         (errno): Remove decl.
23664         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
23665         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
23666         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
23667
23668 2004-11-28  Simon Josefsson  <jas@extundo.com>
23669
23670         * lib/base64.h, base64.c: New file.
23671
23672 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
23673
23674         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
23675
23676 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
23677
23678         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
23679         (Depends-on): Remove pathmax, same.  Add mempcpy.
23680         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
23681         (Makefile.am): Append getcwd.h to lib_SOURCES.
23682         (Include): Add getcwd.h.
23683         (Maintainer): Change from Jim Meyering to "all, glibc",
23684         since getdate now uses intended-for-glibc code.
23685         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
23686         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
23687
23688 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
23689
23690         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
23691         HP's ANSI C compiler.
23692         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
23693         Declaring int functions causes warnings on some modern systems and
23694         shouldn't be needed to compile on ancient ones.
23695         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
23696         defined.
23697
23698         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
23699         with the following changes.
23700         (__set_errno): Parenthesize properly.
23701         Include <stdbool.h>.
23702         (MIN, MAX, MATCHING_INO): New macros.
23703         (__getcwd): Define with prototype, not K&R form.
23704         Use heuristics to allocate default buffer on stack if possible.
23705         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
23706         behavior, and to avoid the PATH_MAX limit when computing
23707         ../../../../...
23708         Use MATCHING_INO to compare inode number to file.
23709         Check for arithmetic overflow in size calculations.
23710         Fix bug in reallocation of dot array that caused getcwd to fail
23711         on directories nested deeper than 75.
23712         Be more careful about saving errno on error.
23713         Do not use realloc; use only free+malloc, as this is a bit
23714         more flexible and avoids a needless copy operation.
23715         Do not inspect st_dev and st_ino for symbolic links; POSIX
23716         doesn't specify the latter.
23717         Check for closedir errors.
23718         Avoid needless casts.
23719         Use "#ifdef weak_alias" around weak_alias, to be like other
23720         glibc code.
23721         The following changes to getcwd.c have effect only when used in
23722         gnulib; they have no effect inside glibc proper.
23723         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
23724         as alloca isn't used.
23725         (alloca, __alloca): Likewise.
23726         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
23727         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
23728         unconditionally, as gnulib assumes C89 or better.
23729         Do not include <sys/param.h>.
23730         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
23731         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
23732         better.
23733         (NULL) [!defined NULL]: Remove; we assume C89 or better.
23734         Include <dirent.h> in a way that is compatible with modern Autoconf.
23735         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
23736         New macros, if not already defined.
23737         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
23738         Use "_LIBC", not "defined _LIBC", for consistency.
23739         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
23740         a mempcpy module.
23741         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
23742         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
23743         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
23744         credit only to Jim Meyering and adjust the copyright dates.
23745         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
23746         <stdlib.h>, <unistd.h>, "pathmax.h".
23747         Instead, include "xgetcwd.h" (first) and "getcwd.h".
23748         (INITIAL_BUFFER_SIZE): Remove.
23749         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
23750
23751 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
23752
23753         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
23754         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
23755         Use the _ONCE methods, for efficiency.
23756         Check for fcntl.h.  In test program, include <errno.h>
23757         and <fcntl.h> if available.  Remove old K&R cruft from
23758         test program.  Check for common errors in GNU/Linux,
23759         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
23760         don't do AC_LIBOBJ, as that's getcwd.m4's job.
23761         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
23762         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
23763         name accordingly.
23764         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
23765         accommodate new getcwd.c.
23766         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
23767         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
23768         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
23769         that's all we need now.
23770
23771 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23772
23773         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
23774         argp-parse.c depends on getopt internals, that means we should
23775         always use our getopt, to be on the safe side.
23776         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
23777         order not to spoil the result of an eventual previous invocation
23778         of gl_GETOPT_SUBSTITUTE.
23779
23780 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
23781
23782         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
23783         redefinition warnings. To avoid them, include the defines
23784         in `#if !defined __need_getopt ... #endif'. The only place
23785         where __getopt_argv_const is used is in definitions
23786         of getopt_long and getopt_long_only below, which are as well
23787         protected by `#ifndef __need_getopt'.
23788         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
23789         __need_getopt after including <stdio.h> and <unistd.h> These
23790         headers might have defined it.
23791
23792 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
23793
23794         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
23795
23796 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
23797
23798         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
23799         (futimens): New function, which uses futimes if available.
23800         (futimens, utimens): Support timespec==NULL, with same semantics
23801         as utime and utimens.
23802         * lib/utimens.h (futimens): New decl.
23803
23804 2004-11-23  Jim Meyering  <jim@meyering.net>
23805
23806         * lib/getopt_.h: Remove trailing blanks.
23807
23808 2004-11-23  Jim Meyering  <jim@meyering.net>
23809
23810         * lib/__fpending.c: Add comment.
23811
23812 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
23813
23814         * modules/canonicalize (Depends-on): Add xreadlink.
23815         Problem reported by James Youngman.
23816
23817 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
23818
23819         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
23820         New macros.
23821         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
23822         optopt): Use them instead of invoking ## directly; otherwise, the
23823         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
23824
23825 2004-11-19  Bruno Haible  <bruno@clisp.org>
23826
23827         * lib/strtok_r.c: Move comments from here...
23828         * lib/strtok_r.h: ... to here.
23829
23830 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
23831
23832         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
23833         implementations that mishandle size_t overflow.
23834
23835 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
23836
23837         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
23838         might fail.  Problem reported by Yoann Vandoorselaere.
23839         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
23840         implementations that mishandle size_t overflow.
23841
23842 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
23843
23844         * modules/canon-host (Depends-on): Add strdup.
23845
23846 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
23847
23848         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
23849
23850 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
23851
23852         * lib/canon-host.c: Include "strdup.h".
23853         (canon_host): Use getaddrinfo if available, so that IPv6 works.
23854         Use strdup instead of malloc/strcpy to duplicate strings.
23855
23856         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
23857         (human_space_before_unit): New constant.
23858         * lib/human.c (human_readable): Support it.
23859
23860         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
23861         (xgetcwd): Set errno correctly when failing.
23862         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
23863         the failure is actually due to a PATH_MAX problem.
23864
23865         Further getopt changes to make it more likely that glibc will
23866         buy the changes back.
23867         * lib/getopt.c (POSIXLY_CORRECT): New constant.
23868         (getopt): Use it, so to preserve glibc semantic
23869         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
23870         when compiling for libc.
23871         * lib/getopt_.h (__getopt_argv_const): Bring it back.
23872         (getopt_long, getopt_long_only): Use it.
23873
23874         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
23875         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
23876         (getopt): Argv is now char * const *, as per standard.
23877         (_getopt_internal_r, _getopt_internal): Argv is now char **,
23878         not char *__getopt_argv_const *.
23879         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
23880         _getopt_long_only_r): Likewise.
23881         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
23882         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
23883         _getopt_long_r, _getopt_long_only_r): Likewise.
23884         * lib/getopt_.h (__getopt_argv_const): Remove.
23885         (getopt): Argv is now char * const *, as per standard.
23886
23887         * lib/getdate.y (tORDINAL): New token.
23888         (day, relunit): Allow it for relative times.
23889         (relative_time_table): Use tORDINAL for ordinals.
23890
23891 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
23892
23893         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
23894         Document that "second" isn't allowed as an ordinal number.
23895
23896 2004-11-16  Jim Meyering  <jim@meyering.net>
23897
23898         * modules/closeout (Depends-on): Add fpending.
23899
23900 2004-11-15  Jim Meyering  <jim@meyering.net>
23901
23902         * lib/closeout.c: Include "__fpending.h" once again.
23903         Include <stdbool.h>.
23904         (close_stdout): Don't fail just because stdout was closed initially,
23905         since some programs don't write to stdout in the normal course of
23906         operation (other than --version and --help), and we don't want this
23907         function to make e.g. `touch file >&-' fail.
23908         But do fail if it was closed and someone has tried to write to it.
23909         E.g., `printf foo >&-' must fail.
23910
23911 2004-11-13  Jim Meyering  <jim@meyering.net>
23912
23913         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
23914
23915 2004-11-12  Simon Josefsson  <jas@extundo.com>
23916
23917         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
23918         small doc fix is still pending.
23919
23920 2004-11-11  Simon Josefsson  <jas@extundo.com>
23921
23922         * modules/strtok_r: New file.
23923
23924         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23925         strtok_r.
23926
23927 2004-11-11  Simon Josefsson  <jas@extundo.com>
23928
23929         * m4/strtok_r.m4: New file.
23930
23931         * m4/getopt.m4: Replace opterr.
23932
23933 2004-11-11  Simon Josefsson  <jas@extundo.com>
23934
23935         * lib/strtok_r.h, strtok_r.c: New file.
23936
23937 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
23938
23939         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
23940         of replacing opterr, getopt, etc.  This should handle the
23941         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
23942
23943 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
23944
23945         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
23946         we can stop lying to compilers about the constness of argv when we
23947         are compiled outside glibc.
23948         (getopt, getopt_long, getopt_long_only): Use it.
23949         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
23950         _getopt_internal, getopt): Likewise.
23951         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
23952         _getopt_long_only_r): Likewise.
23953         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
23954         _getopt_long_r, _getopt_long_only_r): Likewise.
23955
23956         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
23957         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
23958         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
23959         the other external symbols.
23960         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
23961         declaration, since the above renaming now works around collisions.
23962
23963 2004-11-11  Jim Meyering  <jim@meyering.net>
23964
23965         * lib/linebreak.c: Remove trailing blanks.
23966         * lib/alloca_.h: Likewise.
23967         * lib/acosl.c: Likewise.
23968         * lib/euidaccess.c: Likewise.
23969         * lib/allocsa.h: Likewise.
23970
23971 2004-11-10  Simon Josefsson  <jas@extundo.com>
23972
23973         * m4/getaddrinfo.m4: New file.
23974
23975 2004-11-10  Simon Josefsson  <jas@extundo.com>
23976
23977         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
23978
23979 2004-11-10  Simon Josefsson  <jas@extundo.com>
23980
23981         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23982         getaddrinfo.
23983
23984         * modules/getaddrinfo: New file.
23985
23986 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23987
23988         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
23989
23990 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23991
23992         * lib/mktime.c (SHR): New macro, which is a portable
23993         substitute for >> that should work even on Crays.
23994         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
23995         Problem reported by Mark D. Baushke in
23996         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
23997         * lib/getdate.y (SHR): Likewise.
23998         (tm_diff): Use it.
23999         * lib/strftime.c (SHR): Likewise.
24000         (tm_diff): Use it.
24001         * lib/quotearg.c (struct quoting_options): Use unsigned int for
24002         quote_these_too, so that right shifts are well defined.  All uses
24003         changed.
24004
24005 2004-11-10  Jim Meyering  <jim@meyering.net>
24006
24007         Ensure that no close failure goes unreported.
24008         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
24009         return early when it seems there's nothing to flush.
24010         Don't include __fpending.h.
24011
24012 2004-11-10  Jim Meyering  <jim@meyering.net>
24013
24014         * modules/closeout (Depends-on): Remove fpending.
24015
24016 2004-11-10  Jim Meyering  <jim@meyering.net>
24017
24018         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
24019
24020 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
24021
24022         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
24023         gl_FUNC_STRFTIME.
24024         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
24025         and AC_REQUIRE when possible, to avoid duplicate checks.
24026         Check for <wchar.h>.
24027
24028 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
24029
24030         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
24031
24032 2004-11-09  Bruno Haible  <bruno@clisp.org>
24033
24034         * m4/sockpfaf.m4: New file.
24035
24036 2004-11-05  Bruno Haible  <bruno@clisp.org>
24037
24038         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
24039         Reported by Mark D. Baushke <mdb@cvshome.org>.
24040
24041 2004-11-04  Bruno Haible  <bruno@clisp.org>
24042
24043         2004-09-11  Bruno Haible  <bruno@clisp.org>
24044                 * allocsa.valgrind: New file.
24045         2004-02-06  Bruno Haible  <bruno@clisp.org>
24046                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
24047                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
24048                 Reported by Christopher Seip <chris.seip@hp.com>.
24049
24050 2004-11-04  Bruno Haible  <bruno@clisp.org>
24051
24052         * modules/allocsa (Files): Add lib/allocsa.valgrind.
24053         (Makefile.am): Distribute it.
24054
24055 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
24056
24057         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
24058         with errno == ERANGE if the buffer is too small.
24059         Problem reported by Mark D. Baushke.
24060
24061 2004-11-03  Albert Chin  <china@thewrittenword.com>
24062             Paul Eggert  <eggert@cs.ucla.edu>
24063
24064         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
24065         equivalent, substitute $ac_type for equivalent type rather than
24066         blindly using uint32_t *always* which won't work if uint32_t is not
24067         available.  Define _UINT32_T to work around typedef of uint32_t if
24068         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
24069         2.5.1.
24070
24071 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
24072
24073         * m4/jm-macros.m4: Sync from coreutils.
24074         (gl_MACROS): Check for mbrlen, for pathchk.
24075         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
24076
24077 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
24078
24079         * lib/xreadlink.c (MAXSIZE): New macro.
24080         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
24081         size does not exceed MAXSIZE.  Avoid cast.
24082         As suggested by Mark D. Baushke in
24083         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
24084         if readlink fails with buffer size just under MAXSIZE, try again
24085         with MAXSIZE.
24086
24087 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
24088
24089         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
24090
24091 2004-11-02  Derek R. Price  <derek@ximbiot.com>
24092         and  Paul Eggert  <eggert@cs.ucla.edu>
24093
24094         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
24095         (get_date): Overparenthesize to avoid GCC warning.
24096
24097 2004-11-02  Bruno Haible  <bruno@clisp.org>
24098
24099         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
24100         returns void.
24101
24102 2004-11-02  Bruno Haible  <bruno@clisp.org>
24103
24104         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
24105         function returns void.
24106
24107 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
24108
24109         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
24110         fflush_unlocked, flockfile, funlockfile, funlockfile,
24111         fputs_unlocked, putc_unlocked.
24112
24113 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
24114
24115         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
24116         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
24117         already declared.
24118
24119 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
24120
24121         * modules/getdate (Files): Add doc/getdate.texi.
24122         (Depends-on): Add setenv, xalloc.
24123
24124 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
24125
24126         * lib/getdate.y: Add support for TZ="foo" within a date string.
24127         Fix some bugs near time_t boundaries.  Reject dates with
24128         out-of-range components, e.g., "Sept 31".
24129         Include <stdlib.h>, "setenv.h", "xalloc.h".
24130         (ISDIGIT_LOCALE): Remove; unused.
24131         Note that the TZ and time functions used here are not reentrant.
24132         (mktime_ok, get_tz): New functions.
24133         (TZBUFSIZE): New constant.
24134         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
24135         This requires that we sometimes generate our own TZ="XXX..." setting.
24136
24137 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
24138
24139         * doc/getdate.texi: New file, from coreutils with modifications for
24140         the new TZ parsing.
24141
24142 2004-10-27  Derek R. Price  <derek@ximbiot.com>
24143
24144         * lib/mktime.c (not_equal_tm): Remove redundant check.
24145
24146 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
24147
24148         * modules/regex (lib_SOURCES): Add regex.c.
24149         Reported by James Youngman in
24150         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
24151
24152 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
24153
24154         * lib/getdate.y: Use Bison 1.875 features, and some minor
24155         code cleanups.  This change does not affect semantics.
24156         Don't include <stdlib.h>; no longer needed.
24157         Don't include unlocked-io.h; only the "#if TEST" code uses
24158         stdio, and performance isn't crucial there.
24159         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
24160         Bison 1.875 features as described below.
24161         All uses of "PC." replaced by "pc->".
24162         (YYSTYPE): Add a forward declaration.
24163         (yylex, yyerror): Use full prototypes in forward decls.
24164         Use "%pure-parser" rather than obsolescent "%pure_parser".
24165         Use %parse-param and %lex-param instead of obsolescent
24166         YYPARSE_PARAM and YYLEX_PARAM.
24167         (meridian_table, month_and_day_table, time_units_table,
24168         relative_time_table, time_zone_table, military_table,
24169         lookup_zone, lookup_word, get_date):
24170         Use NULL instead of 0 where appropriate.
24171         (to_hour): Avoid abort (), to avoid a dependency on
24172         stdlib.h.
24173         (yyerror, yylex): Now accepts parser_control * arg.
24174         (main) [TEST]: Use '\0' rather than 0 for char.
24175
24176 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
24177
24178         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
24179
24180 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
24181
24182         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
24183         It's now the caller's responsibility to handle the case where
24184         !HAVE_GETPAGESIZE && !defined getpagesize.
24185
24186         * lib/mktime.c (leapyear): Arg is long int, not int.
24187
24188 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
24189
24190         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
24191
24192 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
24193
24194         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
24195         missing.  Problem reported by James Youngman.
24196
24197 2004-10-16  Simon Josefsson  <jas@extundo.com>
24198
24199         * gnulib-tool: Fix comments.  Fix parse problem.
24200         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
24201
24202 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
24203
24204         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
24205         implementation of getopt_long.  Problem reported by Alexander Taler in:
24206         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
24207
24208 2004-10-15  Bruno Haible  <bruno@clisp.org>
24209
24210         * gnulib-tool: Untabify. Initialize supplied_libname.
24211         (func_usage): More homogenous output.
24212         (func_modules_transitive_closure, func_modules_to_filelist,
24213         func_emit_lib_Makefile_am): New functions.
24214         (func_import): New function, extracted from big case statement. Use
24215         func_get_license, func_modules_transitive_closure,
24216         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
24217         opt_lgpl. Don't use test -a, as it's not portable.
24218         (func_create_testdir): Use func_modules_transitive_closure,
24219         func_modules_to_filelist, func_emit_lib_Makefile_am.
24220
24221 2004-10-15  Bruno Haible  <bruno@clisp.org>
24222
24223         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
24224
24225 2004-10-15  Bruno Haible  <bruno@clisp.org>
24226
24227         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
24228         the portions belonging to each module.
24229         Suggested by Derek Robert Price <derek@ximbiot.com>.
24230
24231 2004-10-12  Simon Josefsson  <jas@extundo.com>
24232
24233         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
24234         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
24235         to real functions.
24236
24237 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24238
24239         * modules/vsnprintf: New file.
24240
24241 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24242
24243         * m4/vsnprintf.m4: New file.
24244
24245 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24246
24247         * lib/vsnprintf.h: New file.
24248         * lib/vsnprintf.c: New file.
24249
24250 2004-10-11  Bruno Haible  <bruno@clisp.org>
24251
24252         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
24253         vsnprintf.
24254
24255 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
24256
24257         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
24258
24259 2004-10-07  Bruno Haible  <bruno@clisp.org>
24260
24261         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
24262         fits into the provided buffer.
24263
24264 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
24265
24266         * lib/diacrit.c, diacrit.h: Add GPL notice.
24267
24268         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
24269         notice.
24270         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
24271         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
24272         This avoids a potential constant-folding bug.
24273
24274 2004-10-05  Bruno Haible  <bruno@clisp.org>
24275
24276         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
24277         for the declaration of strsep.
24278
24279 2004-10-05  Bruno Haible  <bruno@clisp.org>
24280
24281         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
24282
24283 2004-10-04  Simon Josefsson  <jas@extundo.com>
24284
24285         * modules/memmem: New file.
24286         * tests/test-memmem.c: New file.
24287         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
24288
24289 2004-10-04  Simon Josefsson  <jas@extundo.com>
24290
24291         * m4/memmem.m4: New file.
24292
24293 2004-10-04  Simon Josefsson  <jas@extundo.com>
24294
24295         * lib/memmem.h: New file.
24296         * lib/memmem.c: New file, taken from glibc.
24297
24298 2004-10-04  Simon Josefsson  <jas@extundo.com>
24299
24300         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
24301         '#ifdef USE_UNLOCKED_IO'.
24302
24303 2004-10-04  Simon Josefsson  <jas@extundo.com>
24304
24305         * config/srclist.txt: Add memmem from glibc.
24306
24307 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
24308
24309         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
24310
24311         * modules/argmatch, modules/argp, modules/closeout, modules/error,
24312         modules/exclude, modules/getdate, modules/getline,
24313         modules/getndelim2, modules/getpass, modules/getpass-gnu,
24314         modules/getusershell, modules/linebuffer, modules/md5,
24315         modules/mountlist, modules/posixtm, modules/readtokens,
24316         modules/readutmp, modules/regex, modules/sha1,
24317         modules/version-etc, modules/yesno:
24318         Remove dependency on unlocked-io.
24319
24320 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
24321
24322         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
24323
24324         * m4/unlocked-io.m4: Add copyright notice.
24325         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
24326
24327 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
24328
24329         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
24330         * lib/xmalloc.c (xmemdup): Likewise.
24331         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
24332         XFREE): Remove these long-obsolescent macros.
24333         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
24334         * lib/xstrdup.c: Remove.
24335
24336         * lib/regex.c (re_comp): Cast gettext return value to char *,
24337         Problem reported by Martin Neitzel via Mark D. Baushke.
24338
24339 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
24340
24341         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
24342         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
24343         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
24344         regex.c, sha1.c, version-etc.c, yesno.c:
24345         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
24346         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
24347         the includer's responsibility.
24348
24349         Sync from coreutils.
24350
24351         * lib/modechange.c (mode_compile): Don't decrement a pointer that
24352         points to the start of a string, as the C Standard says the
24353         resulting behavior is undefined.
24354
24355         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
24356         simple -> simple_backups, numbered_existing ->
24357         numbered_existing_backups, numbered -> numbered_backups
24358         to avoid shadowing problems.  All uses changed.
24359         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
24360         * lib/backupfile.c (check_extension, numbered_backup):
24361         Rename locals to avoid shadowing 'basename'.
24362         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
24363         once.
24364
24365         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
24366         * lib/.cvsignore: Add getopt.h.
24367
24368 2004-10-04  Bruno Haible  <bruno@clisp.org>
24369
24370         * modules/README: New file.
24371         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
24372         not a module.
24373
24374 2004-10-02  Jim Meyering  <jim@meyering.net>
24375
24376         * lib/dirfd.h, getpagesize.h: Add copyright notice.
24377
24378 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24379
24380         * modules/strsep: New file.
24381
24382 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24383
24384         * m4/strsep.m4: New file.
24385
24386 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24387
24388         * lib/strsep.h: New file.
24389         * lib/strsep.c: New file.
24390
24391 2004-10-01  Simon Josefsson  <jas@extundo.com>
24392
24393         * lib/snprintf.c (snprintf): Handle size==0.
24394
24395 2004-10-01  Simon Josefsson  <jas@extundo.com>
24396             Bruno Haible  <bruno@clisp.org>
24397
24398         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
24399         (snprintf): Declare 'args'.
24400
24401 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
24402
24403         * lib/snprintf.c: Remove comments as to why each header is needed.
24404
24405 2004-10-01  Bruno Haible  <bruno@clisp.org>
24406
24407         * MODULES.html.sh: Add strsep.
24408
24409 2004-09-30  Simon Josefsson  <jas@extundo.com>
24410
24411         * modules/snprintf: New file.
24412
24413 2004-09-30  Simon Josefsson  <jas@extundo.com>
24414
24415         * m4/snprintf.m4: New file.
24416
24417 2004-09-30  Simon Josefsson  <jas@extundo.com>
24418
24419         * lib/snprintf.h, lib/snprintf.c: New files.
24420
24421 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
24422
24423         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
24424         (hol_entry_help): Never translate an empty string.
24425         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
24426         * lib/argp.h (OPTION_NO_TRANS): New option.
24427
24428 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
24429
24430         * modules/argp (Maintainer): Replace Simon Josefsson
24431         by Sergey Poznyakoff.
24432
24433 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
24434
24435         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
24436         changes merged back into glibc.
24437
24438 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
24439
24440         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
24441
24442 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
24443
24444         * lib/xvasprintf.c: Include xalloc.h.
24445         (xvasprintf): Use xalloc_die, not xmalloc_die.
24446
24447 2004-09-29  Bruno Haible  <bruno@clisp.org>
24448
24449         * modules/alloca-opt: New file, derived from modules/alloca.
24450         * modules/allocsa: Depend on alloca-opt instead of alloca.
24451         * modules/setenv: Likewise.
24452         * modules/vasnprintf: Likewise.
24453         * MODULES.html.sh: Add alloca-opt.
24454
24455 2004-09-28  Simon Josefsson  <jas@extundo.com>
24456
24457         * gnulib-tool: New parameter --lgpl, to asseert that modules are
24458         LGPL, and to replace license template from GPL to LGPL.
24459
24460 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
24461
24462         * modules/dummy: Change license to LGPL.
24463
24464 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
24465
24466         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
24467
24468 2004-09-24  Simon Josefsson  <jas@extundo.com>
24469
24470         * modules/minmax (License): Change from GPL to LGPL.
24471
24472 2004-09-23  Simon Josefsson  <jas@extundo.com>
24473
24474         * gnulib-tool (--import): Typo.
24475
24476 2004-09-23  Simon Josefsson  <jas@extundo.com>
24477
24478         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
24479
24480 2004-09-22  Bruno Haible  <bruno@clisp.org>
24481
24482         * modules/*: Add 'License' field.
24483         * gnulib-tool: Accept --extract-license option.
24484         (func_get_license): New function.
24485
24486 2004-09-21  Bruno Haible  <bruno@clisp.org>
24487
24488         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
24489         Reported by Simon Josefsson.
24490
24491 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
24492
24493         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
24494         gl_AC_TYPE_LONG_LONG.
24495
24496 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
24497
24498         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
24499
24500 2004-09-18  Simon Josefsson  <jas@extundo.com>
24501         and  Paul Eggert  <eggert@cs.ucla.edu>
24502
24503         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
24504         calls with autoreconf.  Define GL_LIB.
24505
24506 2004-09-14  Karl Berry  <karl@gnu.org>
24507
24508         * config/srclist.txt: unsync setenv.c, sigh.
24509
24510 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
24511
24512         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
24513         Problem reported by Bruno Haible in:
24514         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
24515
24516 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
24517
24518         * config/srclist.txt: Comment out argp-pvh.c.
24519
24520 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
24521
24522         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
24523         in case some system header has #define'd it.  Problem reported by
24524         Soeren D. Schulze in
24525         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
24526
24527 2004-09-09  Karl Berry  <karl@gnu.org>
24528
24529         * regex.[ch]: delete from the root.  These were supposed to be
24530                 synced with emacs cvs, but this has not happened for about
24531                 a year, and anyway nothing else uses emacs regex.[ch].
24532                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
24533                 lib/regex[.ch] is untouched.
24534
24535 2004-09-09  Bruno Haible  <bruno@clisp.org>
24536
24537         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
24538
24539 2004-09-09  Bruno Haible  <bruno@clisp.org>
24540
24541         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
24542         modifications.
24543         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
24544
24545 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
24546
24547         * modules/xvasprintf: New file.
24548         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
24549
24550 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
24551
24552         * lib/xvasprintf.h: New file.
24553         * lib/xvasprintf.c: New file.
24554         * lib/xasprintf.c: New file.
24555
24556 2004-09-08  Bruno Haible  <bruno@clisp.org>
24557
24558         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
24559
24560 2004-09-08  Bruno Haible  <bruno@clisp.org>
24561
24562         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
24563         length is > INT_MAX.
24564         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
24565         more.
24566
24567 2004-09-08  Bruno Haible  <bruno@clisp.org>
24568
24569         * lib/stdint_.h: New file, taken from GNU clisp.
24570
24571 2004-09-08  Bruno Haible  <bruno@clisp.org>
24572             Oskar Liljeblad  <oskar@osk.mine.nu>
24573
24574         * modules/stdint: New file.
24575         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
24576
24577 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
24578
24579         Import from coreutils.
24580         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
24581         strings on unbounded length.  alloca's performance benefits aren't
24582         that important here.
24583         (V_STRDUP): Remove.
24584         (parse_with_separator): New function, with most of the internals
24585         of the old parse_user_spec.  Allow user to omit both user and group,
24586         for compatibility with FreeBSD.
24587         Clone only the user name, not the entire spec.
24588         Do not set *uid, *gid unless entirely successful.
24589         Avoid memory leak in some failing cases.
24590         Fix regression for USER.GROUP reported by Dmitry V. Levin in
24591         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
24592         (parse_user_spec): Rewrite to use parse_with_separator.
24593
24594 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
24595
24596         * modules/userspec: Don't depend on alloca.
24597
24598 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
24599
24600         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
24601
24602 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
24603
24604         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
24605         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
24606         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
24607
24608 2004-08-16  Simon Josefsson  <jas@extundo.com>
24609
24610         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
24611         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
24612         Add --dry-run for --import.
24613         Let user provided command line parameters override configure.ac
24614         settings.
24615
24616 2004-08-12  Simon Josefsson  <jas@extundo.com>
24617
24618         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
24619         as discussed with Paul Eggert in threads rooted at
24620         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
24621         and
24622         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
24623         Before, the test was empty, and relied on ELIDE_CODE in source
24624         code.)
24625         (gl_PREREQ_GETOPT): New macro.
24626         (gl_GETOPT): Use them.
24627
24628 2004-08-12  Simon Josefsson  <jas@extundo.com>
24629
24630         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
24631         * lib/getopt_.h: Renamed from getopt.h.
24632
24633 2004-08-12  Simon Josefsson  <jas@extundo.com>
24634
24635         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
24636         Change default library name from libfoo to libgnu.
24637         Now, if you have a configure.ac that says:
24638                 gl_SOURCE_BASE(gl)
24639                 gl_M4_BASE(gl/m4)
24640                 gl_MODULES(error getopt etcetera)
24641                 gl_INIT
24642         you can import all you need by running:
24643                 ../gnulib/gnulib-tool --import
24644
24645         * modules/getopt (Files): Rename getopt.h to getopt_.h.
24646         (Makefile.am): Rewrite, use logic from argz.
24647         (Include): Use <getopt.h> instead of "getopt.h".
24648
24649 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
24650
24651         * modules/argp (Files): Add m4/unlocked-io.m4.
24652         (Depends-on): Add extensions.
24653
24654 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
24655
24656         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
24657         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
24658         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
24659         Check for program_invocation_name, program_invocation_short_name,
24660         flockfile, funlockfile, features.h, _getopt_long_only_r.
24661
24662 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
24663
24664         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
24665         its complicated substitute.
24666         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
24667         and program_invocation_name.
24668         (__argp_basename) [!_LIBC]: Remove; the only use was
24669         replaced by its body.
24670         (__argp_short_program_name): Change condition from
24671         !defined __argp_short_program_name to
24672         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
24673         to match argp-namefrob.h.
24674         (__argp_failure): Don't assume strerror_r returns char *.
24675         * lib/argp-parse.c (N_): Define unconditionally.
24676         (argp_default_options): Fill out initializers with 0 to avoid
24677         gcc warnings.
24678
24679 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
24680
24681         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
24682         getopt1.c.
24683
24684 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
24685
24686         Merge from coreutils.
24687
24688         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
24689
24690         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
24691         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
24692
24693 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
24694
24695         Merge from coreutils.
24696
24697         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
24698         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
24699         for Reliant Unix 5.43.
24700
24701         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
24702         (union fooround): Use uintmax_t, not long int.
24703         The rest is a merge from libc:
24704         [defined _LIBC]: Include <shlib-compat.h>.
24705         (_obstack) [defined _LIBC]: Remove after 2.3.4.
24706
24707         * lib/settime.c (settime): Recode to avoid warning with
24708         Sun Forte C 6U2.
24709
24710         * lib/strverscmp.c: Convert to UTF-8.
24711
24712 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
24713
24714         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
24715         m4/uintmax_t.m4.
24716
24717 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
24718
24719         * modules/xalloc-die: New file.
24720         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
24721
24722         * modules/md5 (Files): Add m4/uint32_t.m4.
24723         * modules/sha1: Renamed from modules/sha.
24724         (Files):
24725         Rename lib/sha.h to lib/sha1.h.
24726         Rename lib/sha.c to lib/sha1.c.
24727         Rename m4/sha.m4 to m4/sha1.m4.
24728         (lib_SOURCES): Likewise.
24729         (configure.ac): Rename gl_SHA to gl_SHA1.
24730         (Include): sha.h -> sha1.h.
24731
24732 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
24733
24734         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
24735         * m4/sha1.m4: Renamed from sha.m4.
24736         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
24737
24738 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
24739
24740         * lib/obstack.h (obstack_empty_p):
24741         Don't assume that chunk->contents is suitably aligned.
24742         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
24743         Likewise. Problem reported by Benno in
24744         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
24745
24746         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
24747         readable.  This could be improved further but it'd take some work.
24748
24749 2004-08-08  Simon Josefsson  <jas@extundo.com>
24750
24751         * modules/xgethostname (Depends-on): Remove exit and error (not
24752         used).
24753
24754         * modules/getpass-gnu: Add getpass.h.
24755         (Depends-on): Add stdbool.
24756         * modules/getpass: Add getpass.h.
24757
24758 2004-08-08  Simon Josefsson  <jas@extundo.com>
24759
24760         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
24761         Check getpass declaration.
24762
24763 2004-08-08  Simon Josefsson  <jas@extundo.com>
24764
24765         * lib/xgethostname.c: Don't include error.h (not used).
24766
24767         * lib/getpass.h: Add.
24768         * lib/getpass.c: Include getpass.h first.
24769
24770 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
24771
24772         * lib/xalloc-die.c: New file.
24773         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
24774         All uses removed.
24775         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
24776         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
24777         xalloc-die.c.
24778         (_, N_, xalloc_die): Move to xalloc-die.c.
24779         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
24780         so that we needn't mess with xalloc_msg_memory_exhausted.
24781
24782         * lib/sha1.h: Renamed from sha.h.
24783         (SHA1_H): Renamed from _SHA_H.
24784         (sha1_ctx): Renamed from sha_ctx.
24785         (sha1_init_ctx): Renamed from sha_init_ctx.
24786         (sha1_process_block): Renamed from sha_process_block.
24787         (sha1_process_bytes): Renamed from sha_process_bytes.
24788         (sha1_finish_ctx): Renamed from sha_finish_ctx.
24789         (sha1_read_ctx): Renamed from sha_read_ctx.
24790         (sha1_stream): Renamed from sha_stream.
24791         (sha1_buffer): Renamed from sha_buffer.
24792         * lib/sha1.c: Likewise; renamed from sha.c.
24793         Do not include <sys/types.h>.
24794         Include <stddef.h> rather than <stdlib.h>.
24795
24796 2004-08-08  Bruno Haible  <bruno@clisp.org>
24797
24798         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
24799         FILESYSTEM_PREFIX_LEN.
24800         * lib/progreloc.c: Likewise.
24801         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
24802
24803 2004-08-06  Simon Josefsson  <jas@extundo.com>
24804
24805         * modules/progname (Depends-on): Don't depend on stdbool.
24806
24807 2004-08-06  Simon Josefsson  <jas@extundo.com>
24808
24809         * modules/getsubopt: New file.
24810         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24811         getsubopt.
24812
24813 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
24814
24815         More merge from coreutils.
24816
24817         * m4/utimens.m4, m4/utimecmp.m4: New files.
24818         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
24819         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
24820         prereq.m4, sha.m4: Import changes from coreutils.
24821
24822 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
24823
24824         More merge from coreutils.
24825         * modules/raise, modules/readtokens0, modules/utimens:
24826         * modules/utimecmp, module/xnanosleep: New files.
24827         * modules/strftime: Add lib/strftime.h.
24828         Change include from <time.h> to "strftime.h".
24829         * modules/yesno: Add lib/yesno.h.
24830         * modules/backupfile: Remove lib/addext.c.
24831         * modules/euidaccess: Add stat-macros.h.
24832         * modules/canonicalize, modules/euidaccess,
24833         modules/filemode, modules/lchown, modules/makepath,
24834         modules/rmdir, modules/stat: Likewise.
24835
24836 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
24837
24838         Merge from tar.
24839         * lib/argp-help.c (make_hol, hol_append): Don't assume that
24840         SIZE_MAX is a valid preprocessor constant.
24841         (__argp_basename): Change from "#ifndef _LIBC"
24842         to "#ifndef __argp_short_program_name", so that
24843         we don't compile these functions for tar.
24844
24845         More merges from coreutils.
24846         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
24847         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
24848         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
24849         * lib/addext.c: Remove; no longer needed.
24850         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
24851         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
24852         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
24853         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
24854         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
24855         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
24856         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
24857         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
24858         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
24859         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
24860         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
24861         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
24862         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
24863         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
24864         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
24865         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
24866         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
24867         Import changes from coreutils.
24868
24869 2004-08-05  Simon Josefsson  <jas@extundo.com>
24870
24871         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
24872
24873 2004-08-05  Simon Josefsson  <jas@extundo.com>
24874
24875         * m4/getsubopt.m4: New file.
24876
24877 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
24878
24879         Merge from coreutils.
24880
24881         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
24882         * m4/getcwd-path-max.m4: New files.
24883
24884         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
24885         FILESYSTEM_PREFIX_LEN ->
24886         FILE_SYSTEM_PREFIX_LEN.
24887         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
24888         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
24889         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
24890         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
24891
24892         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
24893         prerequisite modules now handle the DOS stuff.
24894         Don't check for unistd.h.
24895
24896 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
24897
24898         Merge from coreutils.
24899
24900         * lib/.gdb-history: Remove; this doesn't belong here.
24901
24902         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
24903         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
24904         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
24905         * lib/getcwd.c: New files.
24906
24907         * lib/dirname.h: Include <stdbool.h>.
24908         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
24909         for consistency with POSIX terminology.  All uses changed.
24910         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
24911         (strip_trailing_slashes): Use bool for booleans.
24912         * lib/stripslash.c (strip_trailing_slashes): Likewise.
24913
24914         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
24915         sometimes returns a positive errno value even when it succeeds.
24916         (print_errno_message) [!LIBC]: Fall back on strerror if
24917         __strerror_r fails.
24918
24919         * lib/path-concat.c (mempcpy): Don't define if a system header defines
24920         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
24921         (longest_relative_suffix): New function.
24922         (path_concat): Use it.  Assume first argument is not NULL.
24923         Port to DOS.  Omit redundant separators.
24924         Report an error instead of returning NULL.
24925         Use mempcpy instead of memcpy.
24926         (xpath_concat): Remove: not declared or used.
24927
24928         * lib/same.h: Include <stdbool.h>
24929         (same_name): Return bool, not int.
24930         * lib/same.c (same_name): Likewise.
24931         (errno): Don't declare; we assume C89 or better now.
24932
24933         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
24934         if not already defined.
24935
24936         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
24937         * lib/dup-safer.c (errno): Likewise.
24938
24939 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
24940
24941         Merge from coreutils.
24942         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
24943         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
24944         * modules/path-concat: Don't depend on strdup.
24945
24946 2004-08-03  Simon Josefsson  <jas@extundo.com>
24947
24948         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
24949         * lib/progname.h: Don't include stdbool.h.
24950
24951 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
24952
24953         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
24954         * MODULES.html.sh (func_all_modules): Remove fatal.
24955
24956 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
24957
24958         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
24959
24960 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
24961
24962         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
24963         working.
24964
24965 2004-08-02  Simon Josefsson  <jas@extundo.com>
24966
24967         * lib/getsubopt.h: New file, with comments from Bruno Haible.
24968         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
24969         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
24970
24971 2004-08-01  Simon Josefsson  <jas@extundo.com>
24972
24973         * lib/xgetdomainname.c: Include stdlib.h, for free().
24974
24975 2004-07-19  Bruno Haible  <bruno@clisp.org>
24976
24977         * MODULES.html.sh (func_all_modules): Add dummy.
24978
24979 2004-07-16  Simon Josefsson  <jas@extundo.com>
24980
24981         * modules/dummy: New file.
24982
24983 2004-07-16  Simon Josefsson  <jas@extundo.com>
24984
24985         * lib/dummy.c: New file.
24986
24987 2004-07-16  Bruno Haible  <bruno@clisp.org>
24988
24989         * lib/backupfile.h: Add extern "C" for C++.
24990         * lib/closeout.h: Likewise.
24991         * lib/copy-file.h: Likewise.
24992         * lib/findprog.h: Likewise.
24993         * lib/full-write.h: Likewise.
24994         * lib/pathname.h: Likewise.
24995         * lib/progname.h: Likewise.
24996         * lib/stpcpy.h: Likewise.
24997         * lib/stpncpy.h: Likewise.
24998         * lib/strcase.h: Likewise.
24999         * lib/strstr.h: Likewise.
25000         * lib/xalloc.h: Likewise.
25001
25002         * lib/mbswidth.h: Add extern "C" for C++.
25003         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
25004
25005 2004-07-13  Robert Millan  <robertmh@gnu.org>
25006
25007         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
25008
25009 2004-07-09  Simon Josefsson  <jas@extundo.com>
25010
25011         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
25012         failed without this.)
25013
25014 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
25015
25016         * modules/chown (Files): Add lib/fchown-stub.c, since
25017         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
25018
25019 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
25020
25021         * lib/fchown-stub.c: New file.
25022
25023 2004-06-24  Jim Meyering  <jim@meyering.net>
25024
25025         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
25026
25027 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25028
25029         * modules/argz: Omit "#include".
25030
25031         * MODULES.html.sh (func_all_modules): Add calloc, to match
25032         2004-06-01 addition of calloc module.
25033
25034 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25035
25036         * m4/argz.m4: New file, which is autoupdated from libtool.
25037
25038 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25039
25040         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
25041         libtool.
25042
25043 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25044
25045         * config/srclist-update: Don't insist on "USA." before the
25046         close-comment, as libtool omits the period and puts the */ on a
25047         separate line.
25048         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
25049         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
25050
25051 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
25052
25053         * modules/argz: New file.
25054         * MODULES.html.sh (func_all_modules): Add argz.
25055
25056 2004-06-12  Jim Meyering  <jim@meyering.net>
25057         and  Paul Eggert  <eggert@cs.ucla.edu>
25058
25059         * modules/hash (Files): Add lib/xalloc.h.
25060         * modules/pipe (Depends-on): Add wait-process.
25061         * modules/stat (Depends-on): Add xalloc.
25062         * modules/userspec (Files): Add lib/userspec.h.
25063         * modules/xstrto
25064
25065         Upgrade from gettext-0.13.
25066         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
25067         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
25068         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
25069
25070 2004-06-10  Jim Meyering  <jim@meyering.net>
25071
25072         * lib/calloc.c: New file.
25073
25074 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
25075
25076         * lib/getdate.y (yylex): Allow space between sign and number.
25077         Problem reported by Dan Jacobson.
25078
25079 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
25080
25081         Merge from coreutils CVS.
25082
25083         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
25084         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
25085         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
25086         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
25087         xstrtol.m4: Fix copyright date and/or serial number.
25088
25089         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
25090         See if we need an fchown replacement.
25091         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
25092         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
25093         and use the replacement function if we detect either defect.
25094
25095         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
25096         gl_UTIMECMP.
25097
25098 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
25099         and  Jim Meyering  <jim@meyering.net>
25100
25101         Merge from coreutils CVS.
25102
25103         * lib/stat-macros.h: New file, with contents from file-type.h
25104         and coreutils' system.h.
25105         * lib/file-type.c: Include "stat-macros.h".
25106         * lib/file-type.h (file_type): Move all macro definitions to new file,
25107         stat-macros.h.
25108
25109         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
25110         Wrap old code with this conditional.
25111         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
25112         function that does not dereference symlinks.
25113         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
25114
25115         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
25116         dependency problems.
25117         (xreadlink): Accept new arg SIZE, for efficiency.
25118         All decls and uses changed.
25119         * lib/xreadlink.h: Include <stddef.h>, for size_t.
25120
25121         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
25122         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
25123
25124         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
25125         sysexits.h.
25126
25127 2004-06-01  Jim Meyering  <jim@meyering.net>
25128
25129         * m4/calloc.m4: New file.
25130
25131 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
25132
25133         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
25134         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
25135         Also, fix a typo in a diagnostic.
25136
25137 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
25138
25139         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
25140         or AC_FUNC_REALLOC.
25141
25142 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
25143
25144         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
25145         macros to be defined.
25146         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
25147         the allocator returns NULL because the requested size is zero.
25148
25149 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
25150
25151         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
25152         var.  Add comment explaining why libc still defines it.  This
25153         merges the following patch from glibc:
25154         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
25155
25156 2004-05-20  Andreas Schwab  <schwab@suse.de>
25157
25158         * m4/free.m4: Replace free if it not known to work, not the other
25159         way round.
25160
25161 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25162
25163         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
25164         present in glibc since revision 1.1 of this file.
25165         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
25166         obstack_alignment_mask, obstack_alloc, obstack_base,
25167         obstack_blank, obstack_blank_fast, obstack_chunk_size,
25168         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
25169         obstack_grow0, obstack_init, obstack_int_grow,
25170         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
25171         obstack_next_free, obstack_object_size, obstack_ptr_grow,
25172         obstack_ptr_grow_fast, obstack_room): Remove declarations of
25173         nonexistent functions.
25174
25175 2004-05-18  Karl Berry  <karl@gnu.org>
25176
25177         * config/srclist.txt: break link for vasnprintf.c.
25178
25179 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
25180
25181         Port obstack to the AS/400, where pointers are 16 bytes wide and
25182         you cannot cast an integer to a valid pointer.  This patch is
25183         currently waiting to be integrated into glibc; see
25184         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
25185
25186         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
25187         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
25188         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
25189         (struct obstack): temp member is now a union of a pointer and
25190         an integer, instead of an integer.  All integer uses changed.
25191         This does not affect the physical layout of struct obstack,
25192         except on hosts (like the AS/400) where the size or alignment of
25193         void * is greater than that of ptrdiff_t.
25194         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
25195         __STDC__)]: Store temporary in pointer member of union, not
25196         integer member.
25197         * lib/obstack.c: Include <stddef.h>, for offsetof.
25198         (struct fooalign): Remove; it doesn't need a name.
25199         (union fooround): Change double to long double, and add void *.
25200         (DEFAULT_ALIGNMENT): Use offsetof to compute.
25201         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
25202         not a macro.  Hence the values are always int; so remove all
25203         casts-to-int in uses.
25204
25205 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
25206
25207         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
25208         we can get this patch merged into glibc.
25209
25210 2004-05-17  Derek R. Price  <derek@ximbiot.com>
25211             Paul Eggert  <eggert@cs.ucla.edu>
25212
25213         * m4/argp: Depend on alloca.
25214
25215 2004-05-17  Derek R. Price  <derek@ximbiot.com>
25216             Paul Eggert  <eggert@cs.ucla.edu>
25217
25218         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
25219         freecoding.
25220
25221 2004-05-17  Bruno Haible  <bruno@clisp.org>
25222
25223         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
25224         precision that consists of a '.' followed by an empty digit string.
25225         Patch by Tor Lillqvist <tml@iki.fi>.
25226
25227 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
25228
25229         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
25230         for backward compatibility with older code.  We need our own
25231         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
25232         it under some other name, and our alloca.h will define it.
25233
25234 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
25235             Derek Price  <derek@ximbiot.com>
25236
25237         * lib/alloca.c: Include <alloca.h>, to get our interface.
25238         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
25239         include <alloca.h> first.  Use C89 prototype for alloca; this
25240         requires including <stddef.h> for size_t.  Use extern "C" if C++.
25241         Use #elif for simplicity, since we can assume C89 now.
25242         Don't try to source the system alloca.h since it will not be found
25243         and to prevent recursively including its replacement.
25244         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
25245         * lib/regex.c: Likewise.
25246
25247 2004-05-16  Derek Price  <derek@ximbiot.com>
25248             Paul Eggert  <eggert@cs.ucla.edu>
25249
25250         getline cleanup.  This changes the getndelim2 API: both order of
25251         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
25252         no delimiter).
25253
25254         * lib/getline.c: Don't include stddef.h or stdio.h, since our
25255         interface does that.
25256         (getline): Always use getdelim, so that we don't have two
25257         copies of this code.
25258         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
25259         if available.
25260         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
25261         (GETNDELIM2_MAXIMUM): New macro.
25262         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
25263         instead of the old practice of delim2==0.  All callers changed.
25264         Return -1 on overflow, instead of returning junk.
25265         Do not set *linesize unless allocation succeeds.
25266         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
25267         that we include sys/types.h.
25268         * lib/getnline.h: Likewise.
25269         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
25270         (getndelim2): Reorder arguments.
25271         * lib/getnline.c (getnline, getndelim):
25272         Don't discard the NMAX argument.
25273         (getnline): Invoke getndelim, to avoid code duplication.
25274         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
25275         of (size_t) -1 by callers of the getnline family.
25276
25277 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
25278
25279         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
25280         Check for gettimeofday.
25281         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
25282         Check for settimeofday, stime.
25283
25284 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
25285
25286         * lib/nanosleep.c (suspended): Change its type from int to
25287         sig_atomic_t volatile.
25288         (first_call): Make it private to rpl_nanosleep, and have it
25289         be zero initially as that's a bit faster.
25290         (my_usleep): Round up fractional times instead of truncating them,
25291         as this is the usual meaning for 'sleep'.
25292
25293         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
25294         doesn't work.
25295         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
25296         (ENOSYS): Define if not defined.
25297         (settime): Fall back on stime if it exists and settimeofday fails.
25298         But don't bother with fallbacks if a method fails with errno == EPERM.
25299
25300 2004-05-11  Jim Meyering  <jim@meyering.net>
25301
25302         Prior to this change, the save_cwd caller required read access to the
25303         current directory on most systems (ones with the fchdir function).
25304
25305         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
25306         fails, try write-only, and finally, resort to using xgetcwd.
25307
25308 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
25309
25310         * lib/obstack.c, obstack.h: Import changes from libc.
25311
25312 2004-04-28  Bruno Haible  <bruno@clisp.org>
25313
25314         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
25315         also implicitly appends .exe to executables.
25316         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
25317         accepts Windows pathnames.
25318         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
25319         Treat Cygwin like Windows, since it now accepts Windows pathnames.
25320         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
25321         Treat Cygwin like Windows, since it now accepts Windows pathnames.
25322         Reported by Derek Robert Price <derek@ximbiot.com>.
25323
25324 2004-04-21  Karl Berry  <karl@gnu.org>
25325
25326         * config/srclist.txt (localcharset.c): break sync.
25327
25328 2004-04-20  Paul Eggert  <eggert@twinsun.com>
25329
25330         * m4/host-os.m4: Add a copyright notice.
25331
25332 2004-04-20  Jim Meyering  <jim@meyering.net>
25333
25334         Change UTILS_ to gl_ in AC_DEFINE'd names.
25335         Change utils_- and jm_-prefixed variables, too.
25336         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
25337         UTILS_FUNC_MKDIR_TRAILING_SLASH.
25338         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
25339
25340         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
25341         Don't emit trailing blanks.
25342         Also rename jm_-prefixed variables to have gl_ prefix.
25343
25344         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
25345         Also rename jm_-prefixed variables to have gl_ prefix.
25346
25347         * m4/jm-macros.m4: Reflect the renamings.
25348         * m4/prereq.m4: Likewise.
25349
25350 2004-04-20  Jim Meyering  <jim@meyering.net>
25351
25352         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
25353         memory.
25354
25355 2004-04-20  Jim Meyering  <jim@meyering.net>
25356             Bruno Haible  <bruno@clisp.org>
25357
25358         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
25359         memory when realloc fails.
25360
25361 2004-04-19  Jim Meyering  <jim@meyering.net>
25362
25363         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
25364         now that readutmp.c may call `free (0)'.
25365
25366 2004-04-19  Bruno Haible  <bruno@clisp.org>
25367
25368         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
25369         * m4/inttypes_h.m4: Likewise.
25370         * m4/stdint_h.m4: Likewise.
25371         * m4/intmax_t.m4: Likewise.
25372         * m4/uintmax_t.m4: Likewise.
25373
25374 2004-04-18  Jim Meyering  <jim@meyering.net>
25375
25376         * m4/prereq.m4: Don't forbid jm_ prefix.
25377
25378         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
25379         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
25380         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
25381         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
25382         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
25383         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
25384         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
25385         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
25386         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
25387         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
25388         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
25389         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
25390         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
25391         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
25392         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
25393         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
25394         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
25395         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
25396         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
25397
25398 2004-04-18  Jim Meyering  <jim@meyering.net>
25399
25400         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
25401         failure, don't leak memory and do call END_UTMP_ENT.
25402
25403 2004-04-16  Jim Meyering  <jim@meyering.net>
25404
25405         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
25406         coreutils' stat program.
25407         (gl_PREREQ): Don't require jm_PREREQ_STAT.
25408
25409 2004-04-11  Paul Eggert  <eggert@twinsun.com>
25410
25411         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
25412         C89.
25413         (CHAR_BIT): Remove, since we assume C89.
25414         Include <stdint.h> if available, as per current Autoconf CVS advice.
25415
25416 2004-03-31  Jim Meyering  <jim@meyering.net>
25417
25418         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
25419         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
25420         * m4/xalloc.m4: Likewise.
25421
25422 2004-03-30  Paul Eggert  <eggert@twinsun.com>
25423
25424         Merge from coreutils.
25425
25426         * m4/inttostr.m4: New file.
25427         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
25428         Require AM_STDBOOL_H and gl_TIMESPEC instead.
25429         Require gl_CLOCK_TIME.
25430         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
25431
25432 2004-03-30  Paul Eggert  <eggert@twinsun.com>
25433
25434         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
25435         not bool, to be more consistent with Unix conventions.
25436         Suggested by Bruno Haible.
25437
25438         Merge from coreutils.
25439
25440         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
25441         * lib/umaxtostr.c: New files.
25442
25443         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
25444         the usual <time.h> dance.
25445         (get_date): Change signature to support fractional time stamps.
25446         All callers changed.
25447         * lib/getdate.y: Include "getdate.h" first, as we can now
25448         assume C89 and don't need to worry about 'const'.
25449         Similarly, include "unlocked-io.h" near start, not in middle.
25450         Include <limits.h>.
25451         (textint.value): Use long int rather than int.
25452         (textint.digits): Use size_t rather than int.
25453         (BILLION, LOG10_BILLION): New constants.
25454         (parser_control): New member rel_ns.  Members day_ordinal,
25455         time_zone, month, day, hour, minutes, rel_year, rel_month,
25456         rel_day, rel_hour, rel_minutes, rel_seconds
25457         are now long int, not int.  Member seconds is now struct timespec,
25458         not int.  New member timespec_seen.  Members dates_seen, days_seen,
25459         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
25460         not int.
25461         (%union.intval): Now long int, not int.
25462         New member timespec.
25463         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
25464         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
25465         (spec): Now is a timespec or an item list.
25466         (timespec, items): New nonterminals.
25467         (time, rel, relunit, number, get_date):
25468         Add support for fractional seconds.
25469         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
25470         (gmtime, localtime, mktime): Remove decls; not needed with C89.
25471         (to_hour): First arg is now long int, not int.
25472         (to_year): Returns long int, not int.
25473         Don't treat year -70 like 70.
25474         (tm_diff): Returns long int, not int.
25475         (lookup_word): Use bool instead of int when appropriate.
25476         (yylex): Use size_t for count, not int.
25477         Detect overflow when parsing large integer constants.
25478         Add support for fractions.
25479         (get_date): Make pointers 'const' if possible.
25480         Use more-portable code to detect integer overflow.
25481         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
25482         Don't use ctime; it's not reliable if the year has >4 digits.
25483
25484         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
25485         This is for compatibility with BSD.
25486
25487         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
25488         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
25489         From coreutils' system.h.
25490
25491         * lib/userspec.c: Don't include "posixver.h".
25492         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
25493         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
25494         compatible extension.  Simplify code by removing a boolean int
25495         that was always nonzero if a string was nonnull.
25496
25497 2004-03-30  Jim Meyering  <jim@meyering.net>
25498
25499         Merge from coreutils.
25500
25501         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
25502         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
25503         on some systems one must include <grp.h> before it.
25504         Reported by Christian Krackowizer.
25505
25506 2004-03-30  Jim Meyering  <jim@meyering.net>
25507
25508         Merge from coreutils.
25509
25510         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
25511
25512         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
25513         an empty input stream.
25514
25515         * lib/readtokens.c: Include <stdbool.h>.
25516         (readtoken): Use `size_t' rather than int/long.
25517         All callers adjusted.
25518         Use `bool' rather than `int' where appropriate.
25519         Use memset rather than an explicit loop.
25520         Use x2nrealloc rather than xrealloc.
25521         Allow the use of `\0' as a delimiter.
25522         (readtokens): Likewise.
25523         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
25524
25525 2004-03-30  Jim Meyering  <jim@meyering.net>
25526
25527         * m4/realloc.m4: Remove file, since now it does no more than
25528         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
25529         the `configure.ac' section of module/realloc.
25530         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
25531
25532 2004-03-30  Bruno Haible  <bruno@clisp.org>
25533
25534         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
25535         nonnull.
25536
25537 2004-03-29  Paul Eggert  <eggert@twinsun.com>
25538
25539         Merge changes to getloadavg.c from coreutils and Emacs.
25540
25541         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
25542         Define to an expression, not to the empty string.
25543         Include cloexec.h and xalloc.h.
25544         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
25545         Use set_cloexec_flag rather than rolling our own.
25546         * lib/cloexec.c, lib/cloexec.h: New files.
25547
25548 2004-03-29  Paul Eggert  <eggert@twinsun.com>
25549
25550         * m4/cloexec.m4: New file.
25551
25552 2004-03-18  Paul Eggert  <eggert@twinsun.com>
25553
25554         * lib/getopt.h: Sync with libc CVS.
25555
25556 2004-03-18  Paul Eggert  <eggert@twinsun.com>
25557             Bruno Haible  <bruno@clisp.org>
25558
25559         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
25560         mbswidth.
25561
25562 2004-03-18  Paul Eggert  <eggert@twinsun.com>
25563             Bruno Haible  <bruno@clisp.org>
25564
25565         * lib/mbswidth.h: Include <wchar.h> only if
25566         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
25567         <wchar.h>.
25568         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
25569
25570 2004-03-09  Paul Eggert  <eggert@twinsun.com>
25571
25572         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
25573         Sync with libc CVS.
25574         * lib/getopt_int.h: New file, also synced from libc.
25575
25576 2004-03-09  Paul Eggert  <eggert@twinsun.com>
25577
25578         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
25579         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
25580         Bring back getopt.c, getopt.h, getopt1.c.
25581
25582 2004-03-07  Paul Eggert  <eggert@twinsun.com>
25583
25584         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
25585         All uses changed.  Check for sa_sigaction member; this fixes
25586         a bug first reported by Jason Andrade in
25587         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
25588
25589 2004-03-07  Paul Eggert  <eggert@twinsun.com>
25590
25591         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
25592         '#if' expressions.  Unlike the code it replaces, it does not
25593         depend on (defined _SC_PAGESIZE).  However, it does depend on
25594         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
25595         first reported by Jason Andrade in
25596         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
25597
25598 2004-02-25  Simon Josefsson  <jas@extundo.com>
25599
25600         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
25601
25602 2004-02-25  Simon Josefsson  <jas@extundo.com>
25603
25604         * lib/strdup.h: New file.
25605         * lib/strdup.c: Include it.
25606         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
25607         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
25608
25609 2004-02-23  Karl Berry  <karl@gnu.org>
25610
25611         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
25612         (from fencepost.gnu.org:/gd/gnuorg).
25613
25614 2004-02-23  Karl Berry  <karl@gnu.org>
25615
25616         * config/srclistvars.sh (GNUORG) [karl]: redefine.
25617         * config/srclist.txt: add maintain/standards documents.
25618
25619 2004-02-18  Bruno Haible  <bruno@clisp.org>
25620
25621         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
25622         Reported by Derek Robert Price <derek@ximbiot.com>.
25623
25624 2004-02-16  Karl Berry  <karl@gnu.org>
25625
25626         * config/mkinstalldirs, install-sh: update from automake.
25627
25628 2004-02-06  Karl Berry  <karl@gnu.org>
25629
25630         * m4/po.m4: update from gettext 0.14.1.
25631
25632 2004-02-06  Karl Berry  <karl@gnu.org>
25633
25634         * lib/config.charset: update from gettext 0.14.1.
25635
25636 2004-02-05  Paul Eggert  <eggert@twinsun.com>
25637
25638         Add comments and code, prompted by suggestions from Bruno Haible
25639         for sh-quote.
25640         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
25641         describing the enum quoting_style values.
25642         * lib/quotearg.c (quotearg_alloc): New function.
25643         (quotearg_buffer_restyled): Treat lone { and } as special.
25644         Treat = as special.  Work around bug with older shells
25645         that "see" a '\' that is really the 2nd byte of a multibyte char.
25646         Quote empty string with shell_quoting_style.
25647
25648 2004-02-03  Bruno Haible  <bruno@clisp.org>
25649
25650         * m4/pipe.m4: New file, from GNU gettext.
25651
25652 2004-02-03  Bruno Haible  <bruno@clisp.org>
25653
25654         * lib/pipe.h: New file, from GNU gettext.
25655         * lib/pipe.c: New file, from GNU gettext.
25656
25657 2004-01-27  Bruno Haible  <bruno@clisp.org>
25658
25659         * m4/execute.m4: New file, from GNU gettext.
25660
25661 2004-01-27  Bruno Haible  <bruno@clisp.org>
25662
25663         * lib/execute.h: New file, from GNU gettext.
25664         * lib/execute.c: New file, from GNU gettext.
25665         * lib/w32spawn.h: New file, from GNU gettext.
25666
25667 2004-01-24  Paul Eggert  <eggert@twinsun.com>
25668
25669         Merge from diffutils.
25670
25671         * lib/file-type.c (file_type): Add typed memory objects.
25672         * lib/file-type.h (S_TYPEISTMO): New macro.
25673
25674         * lib/c-stack.h (c_stack_action): Remove argv argument.
25675         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
25676         (die): Don't calculate message unless segv_action returns.
25677         (get_stack_location, min_address_from_argv, max_address_from_argv,
25678         volatile stack_base, volatile_stack_size): Remove.
25679         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
25680         that every segmentation violation is a stack overflow.  (Ouch!)
25681         See Debian bug 136249 (still outstanding) for more info about why
25682         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
25683
25684 2004-01-24  Paul Eggert  <eggert@twinsun.com>
25685
25686         Exit-status fix from coreutils.
25687
25688         Use exit_failure consistently in place of EXIT_FAILURE,
25689         so that program exit statuses are consistent on failure.
25690
25691         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
25692         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
25693         * lib/argmatch.h: Comment fix to match the above.
25694         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
25695         Now a macro referring to exit_failure, instead of a separate
25696         variable.  Include "exitfail.h" to get it.
25697         * lib/xstrtol.h: Include "exitfail.h".
25698         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
25699
25700         * lib/long-options.c (parse_long_options): Use prototype
25701         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
25702         for clarity.
25703
25704 2004-01-21  Jim Meyering  <jim@meyering.net>
25705
25706         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
25707         so as not to conflict with a different-sized __mktime_internal
25708         function in GNU libc.
25709         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
25710         Problem building statically-linked `ls' reported by Michael Brunnbauer.
25711
25712 2004-01-20  Karl Berry  <karl@gnu.org>
25713
25714         * config/config.guess: update from config.
25715
25716         * config/srclistvars.sh: GNUWWWLICENSES for karl.
25717
25718 2004-01-20  Bruno Haible  <bruno@clisp.org>
25719
25720         Safer stack allocation.
25721         * lib/setenv.c: Include allocsa.h.
25722         (alloca): Remove fallback definition.
25723         (freea): Remove macro.
25724         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
25725         instead of freea.
25726
25727 2004-01-20  Bruno Haible  <bruno@clisp.org>
25728
25729         * m4/eealloc.m4: New file, from GNU gettext.
25730
25731 2004-01-20  Bruno Haible  <bruno@clisp.org>
25732
25733         * m4/allocsa.m4: New file, from GNU gettext.
25734
25735 2004-01-20  Bruno Haible  <bruno@clisp.org>
25736
25737         * lib/xallocsa.h: New file, from GNU gettext.
25738         * lib/xallocsa.c: New file, from GNU gettext.
25739
25740 2004-01-20  Bruno Haible  <bruno@clisp.org>
25741
25742         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
25743
25744 2004-01-20  Bruno Haible  <bruno@clisp.org>
25745
25746         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
25747         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
25748         specially.
25749
25750 2004-01-20  Bruno Haible  <bruno@clisp.org>
25751
25752         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
25753         patch.
25754
25755 2004-01-20  Bruno Haible  <bruno@clisp.org>
25756
25757         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
25758
25759 2004-01-20  Bruno Haible  <bruno@clisp.org>
25760
25761         * lib/eealloc.h: New file.
25762
25763 2004-01-20  Bruno Haible  <bruno@clisp.org>
25764
25765         * lib/binary-io.h: Avoid warnings on Cygwin.
25766
25767 2004-01-20  Bruno Haible  <bruno@clisp.org>
25768
25769         * lib/allocsa.h: New file, from GNU gettext.
25770         * lib/allocsa.c: New file, from GNU gettext.
25771
25772 2004-01-18  Karl Berry  <karl@gnu.org>
25773
25774         * doc/gpl.texi, doc/lgpl.texi: new files.
25775
25776 2004-01-18  Karl Berry  <karl@gnu.org>
25777
25778         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
25779         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
25780
25781 2004-01-15  Paul Eggert  <eggert@twinsun.com>
25782
25783         Merge from coreutils.
25784
25785         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
25786         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
25787         (gl_DEFAULT_POSIX2_VERSION): Move
25788         the documentation from 'configure' into 'config.hin',
25789         so that 'configure --help' isn't burdened by it and
25790         we don't have to worry about its formatting there.
25791         Reword the documentation so that it's more succinct
25792         and can be run together into a single paragraph.
25793         * m4/same.m4 (gl_SAME): Check for pathconf.
25794
25795 2004-01-15  Paul Eggert  <eggert@twinsun.com>
25796
25797         Merge from coreutils.
25798
25799         * lib/posixver.c: Include posixver.h.
25800
25801         * lib/same.c: Include <stdbool.h>, <limits.h>.
25802         (_POSIX_NAME_MAX): Define if not defined.
25803         (MIN): New macro.
25804         (same_name): If file names are silently truncated, report
25805         that the file names are the same if they are the same after
25806         the silent truncation.
25807
25808         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
25809         conversion function.
25810         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
25811         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
25812         longer needed.
25813
25814 2004-01-15  Jim Meyering  <jim@meyering.net>
25815
25816         Merge from coreutils.
25817
25818         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
25819         if no library is required.
25820         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
25821         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
25822         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
25823         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
25824         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
25825         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
25826         value, $ac_cv_search_crypt, if it's "none required".
25827         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
25828         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
25829         not gl_FUNC_GETLOADAVG.
25830         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
25831         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
25832
25833 2004-01-15  Jim Meyering  <jim@meyering.net>
25834
25835         Merge from coreutils.
25836
25837         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
25838         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
25839         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
25840
25841         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
25842         optional configure-time default.
25843
25844         * lib/version-etc.c (version_etc_copyright): Update copyright date.
25845
25846         * lib/xreadlink.c (xreadlink): Correct outdated comment.
25847
25848 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
25849
25850         Merge from coreutils.
25851
25852         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
25853         value, $ac_cv_search_nanosleep, if it's "none required".
25854
25855 2004-01-14  Paul Eggert  <eggert@twinsun.com>
25856
25857         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
25858         with like-named macro in fnmatch.c.
25859         (EXT): Use an internal constant instead.
25860
25861         Merge fnmatch patches from glibc.
25862         * lib/fnmatch.c (mbsinit): Remove define.
25863         Add libc_hidden_ver (__fnmatch, fnmatch).
25864         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
25865         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
25866
25867 2004-01-14  Karl Berry  <karl@gnu.org>
25868
25869         * config/install-sh: update from automake.
25870
25871 2004-01-13  Karl Berry  <karl@gnu.org>
25872
25873         * config/install-sh: update from automake.
25874
25875 2004-01-09  Karl Berry  <karl@gnu.org>
25876
25877         * config/install-sh: update from automake.
25878
25879 2004-01-05  Karl Berry  <karl@gnu.org>
25880
25881         * config/config.{sub,guess}: update from config.
25882
25883 2003-12-31  Karl Berry  <karl@gnu.org>
25884
25885         * config/depcomp: update from automake.
25886
25887 2003-12-14  Karl Berry  <karl@gnu.org>
25888
25889         * lib/config.charset: update from gettext-runtime.
25890
25891 2003-12-03  Paul Eggert  <eggert@twinsun.com>
25892
25893         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
25894         Bug reported by Alfred M. Szmidt.
25895
25896 2003-12-03  Bruno Haible  <bruno@clisp.org>
25897
25898         * m4/gettext.m4: Upgrade from gettext-0.13.
25899         * m4/po.m4: Upgrade from gettext-0.13.
25900         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
25901         * m4/intmax.m4: New file, from gettext-0.13.
25902         * m4/printf-posix.m4: New file, from gettext-0.13.
25903
25904 2003-11-29  Karl Berry  <karl@gnu.org>
25905
25906         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
25907
25908 2003-11-25  Paul Eggert  <eggert@twinsun.com>
25909             Bruno Haible  <bruno@clisp.org>
25910
25911         * lib/printf-parse.h: Don't include sys/types.h.
25912         (ARG_NONE): New macro.
25913         (char_directive): Change type of *arg_index fields to size_t.
25914         * lib/printf-parse.c: Don't include sys/types.h.
25915         (SSIZE_MAX): Remove macro.
25916         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
25917         Remove unnecessary overflow check.
25918         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
25919         fields.
25920
25921 2003-11-25  Bruno Haible  <bruno@clisp.org>
25922
25923         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
25924
25925 2003-11-25  Bruno Haible  <bruno@clisp.org>
25926
25927         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
25928         gt_TYPE_SSIZE_T.
25929
25930 2003-11-24  Paul Eggert  <eggert@twinsun.com>
25931
25932         * modules/alloca: Remove dependency on xalloc.
25933
25934 2003-11-24  Paul Eggert  <eggert@twinsun.com>
25935
25936         * lib/alloca.c: Remove dependency on xalloc module.
25937         (xalloc_die): Remove.
25938         (memory_full) [!defined emacs]: New macro.
25939         [!defined emacs]: Don't include xalloc.h.
25940         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
25941         address arithmetic overflows.  Change datatypes a bit to avoid
25942         unnecessary casts.
25943
25944 2003-11-22  Jim Meyering  <jim@meyering.net>
25945
25946         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
25947         s/size/size_t/.
25948
25949 2003-11-21  Karl Berry  <karl@gnu.org>
25950
25951         * config/config.{sub,guess}: update from config.
25952
25953 2003-11-18  Karl Berry  <karl@gnu.org>
25954
25955         * config/config.{sub,guess}: update from config.
25956
25957         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
25958
25959 2003-11-17  Paul Eggert  <eggert@twinsun.com>
25960
25961         * README: Mention that S+T cannot overflow if S is the size of
25962         an existing object and T is sufficiently small.
25963
25964 2003-11-17  Jim Meyering  <jim@meyering.net>
25965
25966         On systems without utime and without a utimes function capable of
25967         dealing with a NULL struct utimbuf* argument, this utime replacement
25968         could -- in unusual circumstances -- leak a file descriptor.
25969         * lib/utime.c: Include <unistd.h> and <errno.h>.
25970         (utime_null): Be sure to close `fd' and to preserve errno.
25971         Reported by Geoff Collyer via Arnold Robbins.
25972
25973 2003-11-17  Bruno Haible  <bruno@clisp.org>
25974
25975         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
25976         (Depends-on): Add xsize.
25977
25978 2003-11-17  Bruno Haible  <bruno@clisp.org>
25979
25980         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
25981
25982 2003-11-17  Bruno Haible  <bruno@clisp.org>
25983
25984         * lib/vasnprintf.c (alloca): Remove fallback definition.
25985         (freea): Remove definition.
25986         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
25987         Reported by Paul Eggert.
25988
25989 2003-11-16  Paul Eggert  <eggert@twinsun.com>
25990             Bruno Haible  <bruno@clisp.org>
25991
25992         Protect against address arithmetic overflow.
25993         * lib/printf-args.h: Include stddef.h.
25994         (arguments): Change type of field 'count' to size_t.
25995         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
25996         'unsigned int' where appropriate.
25997         * lib/printf-parse.h: Include sys/types.h.
25998         (char_directive): Change type of *arg_index fields to ssize_t.
25999         (char_directives): Change type of fields 'count', max_*_length to
26000         size_t.
26001         * lib/printf-parse.c: Include sys/types.h and xsize.h.
26002         (SSIZE_MAX): Define fallback value.
26003         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
26004         instead of 'int' where appropriate. Check a_allocated, d_allocated
26005         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
26006         * lib/vasnprintf.c: Include xsize.h.
26007         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
26008         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
26009         overflow. Avoid wraparound when converting a width or precision from
26010         decimal to binary.
26011
26012 2003-11-16  Bruno Haible  <bruno@clisp.org>
26013
26014         Update from GNU gettext.
26015         * lib/printf-parse.c: Generalize to it can be compiled for wide
26016         strings.
26017         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
26018         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
26019         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
26020         SNPRINTF): New macros.
26021         Don't include <alloca.h> if the file is used inside libintl.
26022         (local_wcslen): New function, for Solaris 2.5.1.
26023         (VASNPRINTF): Use it instead of wcslen.
26024
26025 2003-11-16  Bruno Haible  <bruno@clisp.org>
26026
26027         * lib/xsize.h (xmax): New function.
26028         (xsum, xsum3, xsum4): Declare as "pure" functions.
26029
26030 2003-11-12  Paul Eggert  <eggert@twinsun.com>
26031
26032         * modules/xalloc (Files): Undo latest change, since xalloc.h
26033         no longer needs SIZE_MAX or PTRDIFF_MAX.
26034
26035 2003-11-12  Paul Eggert  <eggert@twinsun.com>
26036
26037         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
26038         gl_PTRDIFF_MAX.
26039
26040 2003-11-12  Paul Eggert  <eggert@twinsun.com>
26041
26042         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
26043         "return", to pacify some unknown compiler.  Problem reported
26044         by Joerg Schilling.
26045
26046 2003-11-12  Paul Eggert  <eggert@twinsun.com>
26047
26048         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
26049         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
26050         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
26051         heuristic is just as accurate as far as we know, and it removes a
26052         dependency on size_max.m4 and ptrdiff_max.m4.
26053
26054 2003-11-11  Bruno Haible  <bruno@clisp.org>
26055
26056         * modules/xsize (Files): Add m4/size_max.m4.
26057         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
26058
26059 2003-11-11  Bruno Haible  <bruno@clisp.org>
26060
26061         * m4/size_max.m4: New file.
26062         * m4/ptrdiff_max.m4: New file.
26063         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
26064         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
26065         (gl_XALLOC): Invoke it.
26066
26067 2003-11-11  Bruno Haible  <bruno@clisp.org>
26068
26069         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
26070         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
26071         defined.
26072
26073 2003-11-10  Paul Eggert  <eggert@twinsun.com>
26074
26075         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
26076         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
26077         rejected some allocations of exactly SIZE_MAX - 2 bytes.
26078         From Bruno Haible.
26079         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
26080         not (size_t) -1, since it's defined here.
26081
26082 2003-11-09  Karl Berry  <karl@gnu.org>
26083
26084         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
26085
26086 2003-11-06  Paul Eggert  <eggert@twinsun.com>
26087
26088         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
26089         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
26090         Reject sizes of exactly SIZE_MAX bytes.
26091         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
26092         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
26093
26094 2003-11-05  Bruno Haible  <bruno@clisp.org>
26095
26096         * lib/xsize.h: Include limits.h, to avoid a possible collision with
26097         SIZE_MAX defined in <limits.h> on Solaris.
26098
26099 2003-11-04  Jim Meyering  <jim@meyering.net>
26100
26101         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
26102         variable names, rather than @VAR@.
26103         * modules/poll: Likewise.
26104
26105 2003-11-04  Bruno Haible  <bruno@clisp.org>
26106
26107         * modules/xsize: New file.
26108         * modules/linebreak: Depend on xsize.
26109         * MODULES.html.sh (func_all_modules): Add xsize.
26110
26111 2003-11-04  Bruno Haible  <bruno@clisp.org>
26112
26113         * m4/xsize.m4: New file.
26114
26115 2003-11-04  Bruno Haible  <bruno@clisp.org>
26116
26117         * lib/xsize.h: New file.
26118         * lib/linebreak.c: Include xsize.h.
26119         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
26120         argument for overflow.
26121         Suggested by Paul Eggert.
26122
26123 2003-11-03  Karl Berry  <karl@gnu.org>
26124
26125         * config/config.{guess,sub}: update from config.
26126
26127 2003-11-03  Jim Meyering  <jim@meyering.net>
26128
26129         * modules/userspec (lib_SOURCES): Add userspec.h.
26130         (Include): Add "userspec.h".
26131         Improve description.
26132
26133 2003-11-03  Jim Meyering  <jim@meyering.net>
26134
26135         * lib/userspec.c: Include "userspec.h".
26136         * lib/userspec.h: New file.
26137
26138 2003-11-03  Bruno Haible  <bruno@clisp.org>
26139
26140         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
26141
26142 2003-11-03  Bruno Haible  <bruno@clisp.org>
26143
26144         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
26145         available, to avoid (extremely rare) race condition.
26146         Suggested by Paul Eggert.
26147
26148 2003-11-02  Karl Berry  <karl@gnu.org>
26149
26150         * config/srclist.txt (vasprintf.c): sync broken, sigh.
26151
26152 2003-10-31  Paul Eggert  <eggert@twinsun.com>
26153
26154         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
26155         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
26156         (read_filesystem_list): Set and use me_type_malloced.
26157         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
26158         whatever the type happens to be), for brevity and consistency.
26159         Check for size calculation overflow on Alphas running OSF/1.
26160
26161 2003-10-31  Jim Meyering  <jim@meyering.net>
26162
26163         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
26164
26165         * lib/linebuffer.c: Include <string.h> for declaration of memset.
26166
26167 2003-10-30  Paul Eggert  <eggert@twinsun.com>
26168             Bruno Haible  <bruno@clisp.org>
26169
26170         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
26171         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
26172
26173 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
26174
26175         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
26176         netbsd*-gnu*.  Suggested by Robert Millan.
26177
26178 2003-10-29  Paul Eggert  <eggert@twinsun.com>
26179
26180         * modules/group-member: Depend on stdbool.
26181
26182 2003-10-29  Paul Eggert  <eggert@twinsun.com>
26183
26184         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
26185
26186 2003-10-29  Paul Eggert  <eggert@twinsun.com>
26187
26188         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
26189         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
26190         after the 'gnu' in these cases.  This fixes some bugs in the
26191         previous change, and is based on suggestions by Robert Millan.
26192
26193 2003-10-29  Paul Eggert  <eggert@twinsun.com>
26194
26195         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
26196         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
26197         no longer needed.
26198         * lib/quotearg.c (quotearg_n_options): Use it.
26199         * lib/group-member.c: Include <stdbool.h>.
26200         (free_group_info): Arg is now const *; don't free arg.
26201         (get_group_info): Now returns bool and accepts struct group_info *,
26202         rather than returning a malloc'ed struct group_info *.
26203         All uses changed.  Check for overflow in internal size calculation.
26204
26205         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
26206         rather than xmalloc/xrealloc.
26207         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
26208         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
26209         conformance bug: the old code used a pointer after freeing the
26210         storage that it addressed.
26211         * lib/hash.c (hash_initialize): Simplify the code by using
26212         xalloc_oversized rather than doing it by hand.
26213         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
26214         the buffer preserved.  Use free and xmalloc instead.
26215         * lib/quotearg.c (quotearg_n_options): Likewise.
26216         Use a simpler test for size overflow.  Don't use xalloc_oversized
26217         because unsigned int might be wider than size_t (!); this suggests
26218         that we should switch from unsigned int to size_t for slot numbers.
26219
26220 2003-10-28  Paul Eggert  <eggert@twinsun.com>
26221
26222         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
26223         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
26224         NetBSD kernels.  Requested by Richard Stallman.
26225
26226 2003-10-27  Paul Eggert  <eggert@twinsun.com>
26227
26228         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
26229         to allocate the returned structure.  Do not allocate a subarray,
26230         as x2nrealloc will do that.
26231         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
26232         instead of xnrealloc.
26233         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
26234
26235 2003-10-27  Bruno Haible  <bruno@clisp.org>
26236
26237         * lib/stdbool_.h: Better support for BeOS.
26238
26239 2003-10-26  Paul Eggert  <eggert@twinsun.com>
26240
26241         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
26242         now uses inline.
26243
26244 2003-10-26  Paul Eggert  <eggert@twinsun.com>
26245
26246         * lib/xalloc.h (xalloc_oversized): New static inline function, for
26247         callers that want to do their own size-overflow checking.  Include
26248         <stdbool.h>, since xalloc_oversized returns bool.
26249         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
26250         to use xalloc_oversized.
26251
26252         Add two functions x2realloc, x2nrealloc, for programs that grow
26253         arrays dynamically by doubling their sizes.
26254         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
26255         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
26256         New functions.
26257
26258         Port to C99 semantics for 'inline' of external functions.
26259         Bug reported by Bruno Haible.
26260         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
26261         with the old contents of xnmalloc.
26262         (xnmalloc, xmalloc): Use it.
26263         (xnrealloc_inline): New static inline function,
26264         with the old contents of xnrealloc.
26265         (xnrealloc, xrealloc): Use it.
26266
26267         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
26268         that.
26269
26270 2003-10-26  Karl Berry  <karl@gnu.org>
26271
26272         * config/srclist.txt (COPYING.DOC): no longer available from
26273         /gd/gnuorg; don't know where the ultimate source is.
26274
26275 2003-10-25  Paul Eggert  <eggert@twinsun.com>
26276
26277         Fix several address-calculation bugs in the hash modules,
26278         plus some minor code cleanup.
26279
26280         * lib/hash.h: Include <stdbool.h>, for bool.
26281         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
26282         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
26283         hash_get_n_entries, hash_get_max_bucket_length,
26284         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
26285         hash_rehash): Use size_t rather than unsigned.
26286         * lib/hash.c (struct hash_table, hash_get_n_buckets,
26287         hash_get_n_buckets_used, hash_get_n_entries,
26288         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
26289         hash_get_entries, hash_do_for_each, hash_string, is_prime,
26290         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
26291         Likewise.
26292         (SIZE_MAX): Define if not defined.
26293         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
26294         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
26295         hash_print):
26296         Use const * when possible.
26297         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
26298         (check_tuning): Fix bug: if tuning parameters were very close to
26299         0 or 1, rounding errors could have caused subscript violations.
26300         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
26301         (hash_initialize): Add 'fail:' label
26302         to free table and return NULL, and use it to simplify code.
26303         Use calloc rather than clearing the storage ourself.
26304         (hash_initialize, hash_rehash): Check for arithmetic overflow in
26305         buffer size calculations.
26306         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
26307         Include <stddef.h>, for size_t.
26308         * lib/hash-pjw.c (hash_pjw): Likewise.
26309         Switch to method described by Bruno Haible.
26310         Include <limits.h>, for CHAR_BIT.
26311         (SIZE_BITS): New macro.
26312
26313 2003-10-23  Paul Eggert  <eggert@twinsun.com>
26314
26315         * m4/getline.m4 (AM_FUNC_GETLINE):
26316         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
26317         hosts.  Problem reported by Derek Robert Price in
26318         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
26319         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
26320         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
26321
26322 2003-10-21  Paul Eggert  <eggert@twinsun.com>
26323
26324         * lib/getndelim2.c (getndelim2): When size calculation overflows,
26325         ceiling the allocation at NMAX bytes rather than silently
26326         discarding input bytes before NMAX is reached.  This makes
26327         a difference only if NMAX exceeds SIZE_MAX / 2.
26328
26329         * lib/obstack.c: Merge from glibc.
26330         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
26331         Add libc_hidden_def (_obstack_newchunk).
26332         (_obstack_free) [! defined _LIBC]: Remove.
26333         [defined _LIBC]: Make a strong alias from obstack_free, rather than
26334         a clone of the function body.
26335         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
26336         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
26337
26338         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
26339         glibc.
26340         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
26341         arg to memcpy.
26342
26343         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
26344         (obstack_ptr_grow_fast, obstack_int_grow_fast):
26345         Don't use lvalue casts, as GCC plans to remove support for them
26346         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
26347         was also present in the non-GCC version, indicating that this
26348         code had always been buggy and had never been widely used.
26349         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
26350         Use the fast variant of each macro, rather than copying the
26351         definiens of the fast variant; that way, we'll be more likely to
26352         catch future bugs in the fast variants.
26353
26354 2003-10-20  Bruno Haible  <bruno@clisp.org>
26355
26356         * modules/wait-process: New file.
26357         * MODULES.html.sh (func_all_modules): Add wait-process.
26358
26359 2003-10-20  Bruno Haible  <bruno@clisp.org>
26360
26361         * m4/wait-process.m4: New file.
26362
26363 2003-10-20  Bruno Haible  <bruno@clisp.org>
26364
26365         * lib/wait-process.h: New file, from GNU gettext.
26366         * lib/wait-process.c: New file, from GNU gettext.
26367
26368 2003-10-19  Jim Meyering  <jim@meyering.net>
26369
26370         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
26371         HPUX 10.20.
26372
26373 2003-10-18  Karl Berry  <karl@gnu.org>
26374
26375         * config/config.guess: update from config.
26376
26377 2003-10-16  Paul Eggert  <eggert@twinsun.com>
26378
26379         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
26380         (getgroups): First arg is int, not size_t.
26381         Don't let 'free' mangle errno.
26382
26383 2003-10-16  Paul Eggert  <eggert@twinsun.com>
26384
26385         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
26386
26387 2003-10-16  Karl Berry  <karl@gnu.org>
26388
26389         * config/config.{guess,sub}: update from config.
26390
26391 2003-10-16  Jim Meyering  <jim@meyering.net>
26392
26393         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
26394         memcpy.
26395
26396 2003-10-15  Paul Eggert  <eggert@twinsun.com>
26397
26398         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
26399         (SIZE_MAX): Remove.
26400         (new_exclude, add_exclude_file): Initial size no longer needs to
26401         be a power of 2.
26402         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
26403         our own address arithmetic overflow checking.
26404
26405         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
26406         (fnmatch): Do not alloca more than 2000 wide characters;
26407         instead, use malloc for large buffers.
26408         Check for address arithmetic overflow, and return -1
26409         with errno set to ENOMEM in that case.
26410         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
26411         (NEW_PATTERN): Do not alloca more than 8000 bytes;
26412         instead, return -1.  Check for address arithmetic overflow.
26413
26414 2003-10-14  Paul Eggert  <eggert@twinsun.com>
26415
26416         Handle invalid suffixes and overflow independently, so that
26417         callers can treat them independently as needed.  Fix some bugs in
26418         suffix handling, e.g., "100k@" was not diagnosed as an invalid
26419         suffix for a human-readable blocksize.  The major caller-visible
26420         change is the addition of a new
26421         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
26422         that both overflow and suffix chars were found.
26423
26424         * lib/human.c (humblock): Don't check separately for invalid suffix
26425         char; that is xstrtoumax's job (now that its bug is fixed).
26426         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
26427         INTMAX_MAX]: New macros.
26428         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
26429         TYPE_MAXIMUM): New macros.
26430         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
26431         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
26432         if overflow occurs, as it's what __strtol does and it's more useful
26433         in practice.
26434         (__xstrtol): If __strtol reports some error other than ERANGE,
26435         reflect it to the caller as LONGINT_INVALID.  If it reports
26436         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
26437         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
26438         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
26439         value.
26440         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
26441         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
26442         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
26443         [defined UINTMAX_MAX]: New macros.
26444
26445 2003-10-14  Bruno Haible  <bruno@clisp.org>
26446
26447         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
26448
26449 2003-10-14  Bruno Haible  <bruno@clisp.org>
26450
26451         * m4/sig_atomic_t: New file, from GNU gettext.
26452         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
26453
26454 2003-10-14  Bruno Haible  <bruno@clisp.org>
26455
26456         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
26457         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
26458         Also use volatile where needed.
26459
26460 2003-10-12  Paul Eggert  <eggert@twinsun.com>
26461
26462         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
26463         Change maintainer from Bruno Haible to 'all'.
26464
26465 2003-10-12  Paul Eggert  <eggert@twinsun.com>
26466
26467         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
26468
26469 2003-10-12  Paul Eggert  <eggert@twinsun.com>
26470
26471         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
26472         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
26473         and define in terms of the other primitives.
26474         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
26475         (SIZE_MAX): Define if not already defined.
26476         (array_size_overflow): New function.
26477         (xalloc_die): Abort instead of exiting if 'error' returns.
26478         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
26479         (xmalloc, xrealloc): Use them.
26480         (xcalloc): Check for address arithmetic overflow.
26481         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
26482         a bit faster than strcpy.
26483
26484 2003-10-10  Simon Josefsson  <jas@extundo.com>
26485
26486         * modules/argp (Depends-on): Add restrict and strcase.
26487
26488 2003-10-10  Simon Josefsson  <jas@extundo.com>
26489
26490         * m4/argp.m4: Add AC_C_INLINE.
26491
26492 2003-10-08  Paul Eggert  <eggert@twinsun.com>
26493
26494         Merge getpass from libc, plus a few fixes.
26495
26496         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
26497         Include <stdbool.h>.
26498         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
26499         __fsetlocking to empty.
26500         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
26501         do include <bits/libc-lock.h>.
26502         Do not include <fcntl.h>; not needed.
26503         [_LIBC]: Include <wchar.h>.
26504         (NOTCANCEL_MODE): New macro.
26505         (flockfile, funlockfile) [_LIBC]: New macros.
26506         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
26507         [!_LIBC]: New macros.
26508         (call_fclose): New function.
26509         (getpass): Use it.  Save tty stream separately; this simplifies the
26510         code and makes it more reliable if stdin happens to equal stdout.
26511         Invoke __fsetlocking on tty.
26512         Handle thread cancellation if needed.
26513         Namespace cleanup (use __tcgetattr, __getline).
26514         Use bool for Booleans.
26515         [USE_IN_LIBIO]: Handle wide streams.
26516         [!_LIBC]: Unconditionally do the fseek, since we don't know what
26517         stream might go where.
26518
26519         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
26520         doesn't have to include <stdio.h> before us.
26521         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
26522         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
26523         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
26524         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
26525         if not declared, so that we can use getpass.c code from libc without
26526         rewriting it.
26527         (flockfile, ftrylockfile, funlockfile): New macros.
26528
26529 2003-10-08  Paul Eggert  <eggert@twinsun.com>
26530
26531         * modules/getpass: Depend on stdbool.
26532
26533 2003-10-08  Paul Eggert  <eggert@twinsun.com>
26534
26535         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
26536
26537 2003-10-07  Karl Berry  <karl@gnu.org>
26538
26539         * config/config.{guess,sub}: update from config.
26540
26541 2003-10-06  Jim Meyering  <jim@meyering.net>
26542             Bruno Haible  <bruno@clisp.org>
26543
26544         This lets translators provide better translations for the
26545         "Written by ..." part of --version output.
26546         * lib/version-etc.h: Include stdarg.h.
26547         (version_etc_copyright): Declare as readonly.
26548         (version_etc): Make this function variadic with a NULL-terminated list
26549         of author name strings.
26550         (version_etc_va): New declaration.
26551         * lib/version-etc.c: Include stdarg.h, stdlib.h.
26552         (version_etc_copyright): Declare as readonly.
26553         (version_etc_va): New function. Provide a different translatable string
26554         for each possible number of authors < 10. Abbreviate when there are 10
26555         authors or more.
26556         (version_etc): Make this function variadic. Call version_etc_va.
26557         Suggestion from Gary V. Vaughan.
26558
26559         * lib/long-options.h (parse_long_options): Change prototype: the
26560         authors string is moved to the end and becomes variadic.
26561         * lib/long-options.c: Include stdarg.h.
26562         (parse_long_options): Make this function variadic, too.
26563         Call version_etc_va, not version_etc.
26564
26565 2003-10-06  Bruno Haible  <bruno@clisp.org>
26566
26567         * modules/version-etc-2: Remove file.
26568         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
26569
26570 2003-10-06  Bruno Haible  <bruno@clisp.org>
26571
26572         * modules/fatal-signal: New file.
26573         * MODULES.html.sh (func_all_modules): Add fatal-signal.
26574
26575 2003-10-06  Bruno Haible  <bruno@clisp.org>
26576
26577         * m4/fatal-signal.m4: New file.
26578         * m4/signalblocking.m4: New file, from GNU gettext.
26579
26580 2003-10-06  Bruno Haible  <bruno@clisp.org>
26581
26582         * lib/version-etc-2.h: Remove file.
26583         * lib/version-etc-2.c: Remove file.
26584
26585 2003-10-06  Bruno Haible  <bruno@clisp.org>
26586
26587         * lib/fatal-signal.h: New file, from GNU gettext.
26588         * lib/fatal-signal.c: New file, from GNU gettext.
26589
26590 2003-10-05  Paul Eggert  <eggert@twinsun.com>
26591
26592         * README: Rework advice for preventing empty .o files.
26593         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
26594         not <sys/types.h>.
26595
26596 2003-10-04  Karl Berry  <karl@gnu.org>
26597
26598         * lib/argp*: update from libc.
26599
26600 2003-10-04  Karl Berry  <karl@gnu.org>
26601
26602         * config/config.{guess,sub}: update from config.
26603
26604 2003-10-02  Bruno Haible  <bruno@clisp.org>
26605
26606         * modules/lchown (Include): Add lchown.h.
26607         * modules/time_r (Include): Use "..." syntax.
26608         * modules/xgetdomainname (Include): Add xgetdomainname.h.
26609
26610 2003-10-01  Simon Josefsson  <jas@extundo.com>
26611
26612         * MODULES.html.sh (func_all_modules): Move gethostname from section
26613         'based on' to section 'lacking' POSIX:2001.
26614
26615 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
26616
26617         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
26618         to output mode on the same stream.
26619
26620 2003-09-29  Paul Eggert  <eggert@twinsun.com>
26621
26622         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
26623         Fix arg typo in previous patch.
26624
26625 2003-09-28  Jim Meyering  <jim@meyering.net>
26626
26627         * lib/error.c: Correct cpp indentation.
26628
26629 2003-09-27  Paul Eggert  <eggert@twinsun.com>
26630
26631         * modules/free: New file.
26632
26633 2003-09-27  Paul Eggert  <eggert@twinsun.com>
26634
26635         * m4/free.m4: New file.
26636
26637 2003-09-27  Paul Eggert  <eggert@twinsun.com>
26638
26639         * lib/minmax.h (MIN, MAX)
26640         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
26641         Omit the special code that used __typeof__, since we worry that
26642         it could be more trouble than it's worth.  See:
26643         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
26644         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
26645
26646         * lib/free.c: New file.
26647
26648 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
26649
26650         Trivial fixes to Makefile.am parts of module listings.
26651         * modules/strstr: Append strstr.h to lib_SOURCES.
26652         * modules/strcase: Likewise, for strcase.h.
26653
26654 2003-09-27  Karl Berry  <karl@gnu.org>
26655
26656         * config/mkinstalldirs: update from automake.
26657
26658 2003-09-26  Paul Eggert  <eggert@twinsun.com>
26659
26660         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
26661         (error_tail): Do not loop, reallocating temporary buffer, since
26662         the output cannot contain more wide characters than the input
26663         contains bytes, the size must be big enough already.  This avoids
26664         one potential size overflow calculation.  Check for size overflow
26665         when calculating temporary buffer size.  Free temporary buffer
26666         when done, if it was allocated with malloc; this plugs a memory
26667         leak.  Remove casts from void * to pointers, that are no longer
26668         needed now that we're assuming C89 or better.
26669
26670         Merge error changes from glibc.
26671
26672         * lib/error.c, error.h: Update copyright notice header to match glibc.
26673         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
26674         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
26675         Disable cancellation while printing error.
26676         * lib/error.h: Prepend __ to parameter names.
26677
26678 2003-09-26  Jim Meyering  <jim@meyering.net>
26679
26680         * lib/error.c (error_tail): Move some declarations
26681         into inner scope where the local variables are used.
26682
26683 2003-09-26  Bruno Haible  <bruno@clisp.org>
26684
26685         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
26686         stpncpy().
26687         Don't define stpncpy through config.h; it's now done through stpncpy.h.
26688
26689 2003-09-26  Bruno Haible  <bruno@clisp.org>
26690
26691         * lib/stpncpy.h (gnu_stpncpy): New declaration.
26692         (stpncpy): Define as alias for gnu_stpncpy.
26693         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
26694
26695 2003-09-25  Simon Josefsson  <jas@extundo.com>
26696
26697         * lib/xgetdomainname.h: New file.
26698         * lib/xgetdomainname.c: New file.
26699
26700 2003-09-25  Simon Josefsson  <jas@extundo.com>
26701             Bruno Haible  <bruno@clisp.org>
26702
26703         * modules/getdomainname: New file.
26704         * modules/xgetdomainname: New file.
26705         * MODULES.html.sh (func_all_modules): Add getdomainname,
26706         xgetdomainname.
26707
26708 2003-09-25  Simon Josefsson  <jas@extundo.com>
26709             Bruno Haible  <bruno@clisp.org>
26710
26711         * m4/getdomainname.m4: New file.
26712
26713 2003-09-25  Simon Josefsson  <jas@extundo.com>
26714             Bruno Haible  <bruno@clisp.org>
26715
26716         * lib/getdomainname.h: New file.
26717         * lib/getdomainname.c: New file.
26718
26719 2003-09-25  Karl Berry  <karl@gnu.org>
26720
26721         * lib/argp-fmtstream.c, argp-help.c: update from libc.
26722
26723 2003-09-25  Karl Berry  <karl@gnu.org>
26724
26725         * config/install-sh: update from automake.
26726
26727 2003-09-25  Bruno Haible  <bruno@clisp.org>
26728
26729         * modules/version-etc-2: New file, from modules/version-etc with
26730         modifications.
26731         * MODULES.html.sh (func_all_modules): Add version-etc-2.
26732
26733 2003-09-25  Bruno Haible  <bruno@clisp.org>
26734
26735         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
26736         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
26737
26738 2003-09-24  Simon Josefsson  <jas@extundo.com>
26739
26740         * modules/xgethostname: Add xgethostname.h.
26741
26742 2003-09-24  Paul Eggert  <eggert@twinsun.com>
26743
26744         * lib/linebuffer.c (freebuffer): Don't free the argument, just
26745         the buffer associated with the argument.  Bug reported by
26746         Simon Josefsson.
26747
26748 2003-09-24  Paul Eggert  <eggert@twinsun.com>
26749
26750         * README: Document assumptions that 'int' is at least 32 bits
26751         wide, that integer arithmetic is 2's complement without overflow,
26752         that there are no holes in integer values, that adding sizes of
26753         two nonoverlapping objects can't overflow, and that all-bits-zero
26754         yields scalar zero.  Fix spelling and capitalization typos.
26755
26756 2003-09-19  Karl Berry  <karl@gnu.org>
26757
26758         * lib/argp.h: update from libc.
26759
26760 2003-09-17  Paul Eggert  <eggert@twinsun.com>
26761
26762         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
26763         to avoid spurious warnings like "AC_RUN_IFELSE was called before
26764         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
26765
26766 2003-09-17  Paul Eggert  <eggert@twinsun.com>
26767
26768         * gnulib-tool: Use "test -h", not "test -L", for portability
26769         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
26770         (tags_regexp): Remove, since \| doesn't conform to POSIX.
26771         (sed_extract_prog): Issue s commands one-by-one, rather than
26772         using \| in one s command.
26773
26774 2003-09-16  Paul Eggert  <eggert@twinsun.com>
26775
26776         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
26777         input error, instead of returning NULL the next time we are called
26778         (and therefore losing track of errno).
26779
26780 2003-09-16  Bruno Haible  <bruno@clisp.org>
26781
26782         * gnulib-tool (func_create_testdir): Warn about duplicated
26783         dependencies.
26784
26785 2003-09-15  Paul Eggert  <eggert@twinsun.com>
26786
26787         * modules/argmatch, modules/fatal, modules/obstack,
26788         modules/xalloc, modules/xgethostname: Sort dependencies by
26789         importance, not alphabetically.
26790
26791 2003-09-15  Paul Eggert  <eggert@twinsun.com>
26792
26793         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
26794         fails, so that the caller gets the proper errno.
26795
26796         * lib/readutmp.c (read_utmp): Likewise.
26797         Check for fstat error.  Close stream and free storage
26798         when failing.
26799
26800 2003-09-14  Karl Berry  <karl@gnu.org>
26801
26802         * config/srclist.txt (strdup.c): disable for c89 changes.
26803
26804 2003-09-14  Jim Meyering  <jim@meyering.net>
26805
26806         * lib/getloadavg.c: Correct cpp indentation.
26807         * lib/strdup.c: Likewise.
26808         * lib/vasnprintf.c: Likewise.
26809
26810 2003-09-14  Bruno Haible  <bruno@clisp.org>
26811
26812         * modules/fwriteerror: New file.
26813         * MODULES.html.sh (func_all_modules): Add fwriteerror.
26814
26815 2003-09-14  Bruno Haible  <bruno@clisp.org>
26816
26817         * lib/fwriteerror.h: New file.
26818         * lib/fwriteerror.c: New file.
26819
26820 2003-09-12  Paul Eggert  <eggert@twinsun.com>
26821
26822         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
26823         modules/xgethostname, modules/xalloc: Depend on exit.
26824
26825 2003-09-12  Paul Eggert  <eggert@twinsun.com>
26826
26827         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
26828
26829         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
26830         and AC_MINIX, too, so that their extensions are available.
26831
26832         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
26833         This macro has been superseded by gl_BACKUPFILE.
26834
26835         More patches to assume C89 or better.
26836
26837         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
26838
26839         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
26840         unconditionally.
26841         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
26842         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
26843         Include <string.h>, <stdlib.h> unconditionally.
26844         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
26845         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
26846         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
26847         headers or for string.h.
26848         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
26849         or strtoul.
26850
26851         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
26852         headers.
26853         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
26854         * m4/userspec.m4 (gl_USERSPEC): Likewise.
26855         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
26856         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
26857         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
26858         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
26859         memcpy, memset.
26860         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
26861         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
26862         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
26863         strtol.
26864         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
26865         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
26866         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
26867         strtoul.
26868
26869 2003-09-12  Paul Eggert  <eggert@twinsun.com>
26870
26871         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
26872         * lib/obstack.c [!defined _LIBC]: Likewise.
26873         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
26874         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
26875         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
26876
26877         More changes to assume C89 or better.
26878
26879         * lib/error.c (error_tail): Assume vprintf.
26880
26881         * lib/argmatch.c (getenv): Remove decl.
26882         * lib/progreloc.c (get_full_program_name): Define via prototype.
26883         * lib/setenv.c (clearenv): Likewise.
26884         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
26885         needed.
26886         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
26887         (malloc, memcpy): Remove decls.
26888         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
26889         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
26890         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
26891         (memcpy): Remove macro.
26892         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
26893         (__P): Remove.  All uses removed.
26894         (PTR): Remove.  All uses changed to void *.
26895         (CHAR_BIT, NULL): Remove.
26896         (spaces, zeros, memset_space, memset_zero)
26897         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
26898         Remove.
26899         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
26900         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
26901         Define with prototype.
26902         Remove now-unnecessary prototype decl.
26903         (extra_args_spec): Assume ANSI C.  All uses changed.
26904         (extra_args_spec_iso): Remove.
26905         (my_strftime, emacs_strftimeu): Define via prototype.
26906         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
26907         unconditionally.
26908         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
26909         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
26910         (strtoul, strtol): Remove decls.
26911         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
26912         LONG_MAX): Remove.
26913         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
26914         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
26915         (LOCALE_PARAM_PROTO): New macro.
26916         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
26917         (INTERNAL (strtol), strtol): Define with a prototype.
26918         (PARAMS): Remove.  All uses removed.
26919         * lib/tempname.c: Include <string.h> unconditionally.
26920         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
26921         * lib/xgethostname.c (main): Define with a prototype.
26922         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
26923         Include <stdlib.h> unconditionally.
26924         (calloc, malloc, realloc, free): Remove decls.
26925         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
26926         Include <stdlib.h> unconditionally.  Sort include file names.
26927         (strtod): Remove.
26928         (xstrtod): Define with a prototype.
26929         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
26930         (strtol, strtoul): Remove decls.
26931
26932 2003-09-11  Paul Eggert  <eggert@twinsun.com>
26933
26934         More patches to assume C89 or better.
26935         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
26936         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
26937         string.h, memchr, STDC_HEADERS.
26938
26939 2003-09-11  Paul Eggert  <eggert@twinsun.com>
26940
26941         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
26942         Include <stdlib.h>, <string.h> unconditionally.
26943         Remove now-unnecessary cast to char *.
26944         * lib/strnlen.c: Include <string.h> unconditionally.
26945         * lib/yesno.c (yesno): Define with a prototype.
26946
26947 2003-09-11  Bruno Haible  <bruno@clisp.org>
26948
26949         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
26950
26951 2003-09-10  Jim Meyering  <jim@meyering.net>
26952
26953         * lib/error.c: Correct indentation of cpp directives.
26954
26955 2003-09-10  Bruno Haible  <bruno@clisp.org>
26956
26957         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
26958         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
26959         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
26960         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
26961         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
26962         <stdlib.h> and <string.h> checks.
26963         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
26964         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
26965
26966 2003-09-10  Bruno Haible  <bruno@clisp.org>
26967
26968         * lib/strcspn.c: Include <string.h> unconditionally.
26969         * lib/strpbrk.c: Include <string.h> unconditionally.
26970         * lib/strstr.c: Include <string.h> unconditionally.
26971         * lib/unicodeio.c: Include <string.h> unconditionally.
26972         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
26973         * lib/unsetenv.c: Likewise.
26974         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
26975         * lib/yesno.c: Include <stdlib.h> unconditionally.
26976         (rpmatch): Add prototype.
26977
26978 2003-09-09  Paul Eggert  <eggert@twinsun.com>
26979
26980         More patches to assume C89 or better.
26981         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
26982         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
26983         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
26984         or for string.h.
26985         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
26986         stdlib.h.
26987         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
26988         C headers.
26989         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
26990         string.h.
26991         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
26992         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
26993         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
26994         or for string.h.
26995         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
26996         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
26997         C headers.
26998         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
26999         memcpy.
27000         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
27001         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
27002         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
27003         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
27004         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
27005         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
27006         string.h, free.
27007         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
27008         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
27009         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
27010         C headers, or for string.h.
27011         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
27012         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
27013         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
27014         headers, memory.h, stdlib.h, string.h, strings.h.
27015         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
27016         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
27017         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
27018         strchr.
27019         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
27020         headers, memory.h, string.h.
27021         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
27022         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
27023         free.
27024         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
27025         headers.
27026         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
27027         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
27028         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
27029         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
27030         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
27031
27032 2003-09-09  Paul Eggert  <eggert@twinsun.com>
27033
27034         More K&R removal.
27035
27036         * lib/acosl.c (main): Use a prototype.
27037         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
27038         tanl.c: Likewise.
27039
27040         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
27041
27042         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
27043         (getopt, etopt_long, getopt_long_only, _getopt_internal)
27044         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
27045         with a prototype.
27046         * lib/getopt.c (const): Remove macro.
27047         Include <string.h> unconditionally.
27048         (my_index): Remove; all uses changed to strchr.
27049         (strlen): Remove decl.
27050         (exchange): Remove forward decl; no longer needed.
27051         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
27052         Define with prototype.
27053         * lib/getopt1.c (const): Remove macro.
27054         (getopt_long, getopt_long_only, main): Define with prototype.
27055
27056         * lib/getugroups.c: Include <string.h> unconditionally.
27057
27058         * lib/getusershell.c: Include <stdlib.h> unconditionally.
27059         (getusershell, setusershell, endusershell, readname, main):
27060         Define with prototypes.
27061
27062         * lib/group-member.c: Include group-member.h first.
27063         Include <stdlib.h> unconditionally.
27064
27065         * lib/hard-locale.c: Include hard-locale.h first.
27066         Include <stdlib.h>, <string.h> unconditionally.
27067
27068         * lib/hash.c (free, malloc): Remove decls.
27069         Include <stdlib.h> unconditionally.
27070
27071         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
27072         (getenv): Do not declare.
27073
27074         * lib/idcache.c: Include <string.h> unconditionally.
27075
27076         * lib/long-options.c: Include long-options.h first, to test interface.
27077         Include <stdlib.h> unconditionally.
27078
27079         * lib/makepath.c: Include makepath.h first, to test interface.
27080         Include <stdlib.h> and <string.h> unconditionally.
27081
27082         * lib/linebuffer.c: Include <stdlib.h>.
27083         (free): Remove decl.
27084
27085         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
27086         stddef.h. rpl_malloc returns void *, not char *.
27087         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
27088         prototype.
27089
27090         * lib/md5.h: Include <limits.h> unconditionally.
27091         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
27092         (__P): Remove; all uses removed.
27093         * lib/md5.c: Include "md5.h" first.
27094         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
27095         md5_buffer, md5_process_bytes, md5_process_block):
27096         Define with prototypes.
27097         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
27098         * lib/sha.c: Include "sha.h" first.
27099         Include <stdlib.h>, <string.h> unconditionally.
27100
27101         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
27102         * lib/memcmp.c (__ptr_t): Likewise.
27103         * lib/memrchr.c (__ptr_t): Likewise.
27104         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
27105         Include <string.h> unconditionally.
27106         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
27107         * lib/memchr.c: Include <stdlib.h> unconditionally.
27108         * lib/memchr.c (LONG_MAX): Remove.
27109         * lib/memrchr.c (LONG_MAX): Likewise.
27110         * lib/memchr.c (__memchr): Define via a prototype.
27111         * lib/memrchr.c (__memrchr): Likewise.
27112         * lib/memcmp.c (__P): Remove, and remove all uses.
27113         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
27114         Remove forward decls; no longer needed.
27115         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
27116         Use types required by C89 in prototype.
27117
27118         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
27119         * lib/savedir.c: Likewise.
27120         * lib/mkdir.c (free): Remove decl.
27121         * lib/rmdir.c (rmdir): Define with a prototype.
27122         * lib/savedir.c: Include savedir.h first, to test interface.
27123
27124         * lib/mktime.c (STDC_HEADERS): Remove.
27125         Include <stdlib.h>, <string.h> unconditionally.
27126
27127         * lib/modechange.c: Include <stdlib.h> unconditionally.
27128         (malloc): Remove decl.
27129
27130         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
27131         (free): Remove decl.
27132
27133         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
27134         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
27135         (This type really should be intptr_t, but that's a C99ism.)
27136         (_obstack_memcpy): Remove: all uses changed to memcpy.
27137         Include <string.h> unconditionally.
27138         (struct obstack): Assume __STDC__ for types of members
27139         chunkfun, freefun, extra_arg.
27140         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
27141         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
27142         obstack_begin, obstack_specify_allocation,
27143         obstack_specify_allocation_with_arg, obstack_chunkfun,
27144         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
27145         Remove unprototyped decls and the macros that use them.
27146         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
27147         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
27148         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
27149         (defined __STDC__ && __STDC__)]:
27150         Remove nonprototyped code.
27151         Include <stdlib.h> unconditionally.
27152         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
27153         _obstack_allocated_p, _obstack_free, obstack_free,
27154         _obstack_memory_used, print_and_abort):
27155         Define using prototypes.
27156         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
27157         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
27158         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
27159         obstack_next_free, obstack_object_size, obstack_room) [0]:
27160         Remove unused, unprototyped code.
27161
27162         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
27163
27164         * lib/physmem.c (physmem_total, physmem_available, main): Define
27165         with prototypes.
27166
27167         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
27168         (main): Define with a prototype.
27169
27170         * lib/posixver.c (getenv): Remove decl.
27171
27172         * lib/putenv.c (malloc): Returns void *, not char *.
27173         Include <string.h> unconditionally.
27174         (strchr, memcpy, NULL): Do not define.
27175
27176         * lib/readtokens.c: Include readtokens.h first, to test interface.
27177         Include <stdlib.h>, <string.h> unconditionally.
27178         (init_tokenbuffer): Define with a prototype.
27179
27180         * lib/regex.c (PARAMS): Remove.  All uses removed.
27181         All uses of _RE_ARGS removed, too.
27182         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
27183         unconditionally.
27184         (bzero): Assume memset exists.
27185         (memcmp, memcpy, NULL): Remove.
27186         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
27187         char, or assignments to local vars of type signed char.
27188         (init_syntax_once, PREFIX(extract_number_and_incr),
27189         PREFIX(print_partial_compiled_pattern),
27190         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
27191         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
27192         PREFIX(regex_grow_registers), PREFIX(regex_compile),
27193         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
27194         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
27195         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
27196         wcs_compile_range, byte_compile_range, truncate_wchar,
27197         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
27198         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
27199         count_mbs_length, wcs_re_match_2_internal,
27200         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
27201         PREFIX(alt_match_null_string_p),
27202         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
27203         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
27204         regfree, PREFIX(extract_number)): Define with prototype.  Remove
27205         now-unnecessary declaration, if any.
27206         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
27207         regcomp, regexec):
27208         Remove now-unnecessary casts among pointer types.
27209         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
27210
27211         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
27212         (free): Remove decl.
27213
27214         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
27215
27216         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
27217         (free): Remove decl.
27218
27219         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
27220         * lib/xgetcwd.c: Likewise.
27221
27222         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
27223         (free): Remove decl.
27224
27225         * lib/strchrnul.c (strchrnul): Define with a prototype.
27226         Fix bug: c_in was not converted to char before searching.
27227
27228         The following changes are not K&R related:
27229
27230         * lib/group-member.h: Include <sys/types.h>, so that this file is
27231         self-contained.
27232         * lib/makepath.h: Likewise.
27233
27234         * lib/getusershell.c (readname, default_index, line_size, readname):
27235         Use size_t, not int, for sizes.
27236         (readname): If the size overflows, report an error instead of
27237         looping forever.
27238
27239 2003-09-09  Paul Eggert  <eggert@twinsun.com>
27240
27241         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
27242         libc.
27243
27244 2003-09-09  Paul Eggert  <eggert@twinsun.com>
27245
27246         * README: New section: portability guidelines.
27247
27248 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
27249
27250         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
27251         C89 spec.
27252
27253 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
27254
27255         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
27256
27257 2003-09-08  Paul Eggert  <eggert@twinsun.com>
27258
27259         Assume C89 or better; remove K&R cruft.
27260         A few of these changes were first proposed by Derek Robert Price
27261         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
27262
27263         * lib/addext.c: Include <string.h> unconditionally.
27264         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
27265         Don't declare getenv or malloc.
27266
27267         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
27268         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
27269         (NULL): Remove.
27270         (find_stack_direction, alloca): Use prototypes.
27271
27272         * lib/atexit.c (atexit): Define using a prototype.
27273
27274         * lib/basename.c, dirname.c, stripslash.c:
27275         Include <string.h> unconditionally.
27276
27277         * lib/bcopy.c: Include <stddef.h>.
27278         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
27279
27280         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
27281
27282         * lib/error.h (error, error_at_line, error_print_progname)
27283         [! (defined (__STDC__) && __STDC__)]: Remove decls.
27284         * lib/error.c: Include error.h first, to check interface.
27285         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
27286         (VA_START): Remove; all uses changeed to va_start.
27287         (exit, strerror): Remove decls.
27288         (error_print_progname): Prototype uncondionally.
27289         Don't include <errno.h>; no longer needed.
27290         (private_strerror): Remove.
27291         (error_tail): Always define.
27292         (error, error_at_line): Assume C89 or better; always use prototypes.
27293         * lib/fatal.c: Include "fatal.h" first, to test interface.
27294         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
27295         (VA_START): Remove; all uses changed to va_start.
27296         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
27297         this case.
27298         (exit): Remove decl.
27299         (fatal): Prototype unconditionally.  Assume va_start works.
27300         Abort at end, to pacify gcc.
27301
27302         * lib/euidaccess.c (main): Define with a prototype.
27303
27304         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
27305
27306         * lib/exitfail.c: Include <stdlib.h> unconditionally.
27307
27308         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
27309         prototypes.
27310         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
27311         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
27312         (getenv): Remove decl.
27313         (fnmatch): Define using a prototype.
27314         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
27315         (FCT): Define using a prototype.
27316
27317         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
27318
27319         * lib/gethostname.c: Include <stddef.h>.
27320         (gethostname): Define with prototype.  Length is size_t, not int.
27321
27322 2003-09-08  Paul Eggert  <eggert@twinsun.com>
27323
27324         Assume C89 or better; remove K&R cruft.
27325         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
27326         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
27327         string.h, getenv, malloc.
27328         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
27329         headers.
27330         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
27331         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
27332         do not check for strerror.
27333         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
27334         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
27335         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
27336         do not check for doprnt or vprintf.
27337         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
27338         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
27339
27340 2003-09-08  Paul Eggert  <eggert@twinsun.com>
27341
27342         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
27343         getversion.c should have been removed then, but was accidentally
27344         preserved.
27345
27346         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
27347         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
27348
27349 2003-09-08  Karl Berry  <karl@gnu.org>
27350
27351         * config/config.sub, config.guess, srclistvars.sh: update from savannah
27352                 config, forget about prep.
27353
27354         * config/depcomp, missing: update from automake.
27355
27356 2003-09-07  Paul Eggert  <eggert@twinsun.com>
27357
27358         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
27359         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
27360
27361 2003-09-07  Paul Eggert  <eggert@twinsun.com>
27362
27363         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
27364         copy_tm_result.  Bug reported by Simon Josefsson in
27365         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
27366
27367 2003-09-06  Paul Eggert  <eggert@twinsun.com>
27368
27369         * m4/time_r.m4: New file.
27370         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
27371         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
27372         is. Check for timegm declaration.
27373         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
27374         Do not check for gmtime_r.
27375         Replace mktime if __mktime_internal does not exist and if mktime
27376         hasn't been replaced already.
27377
27378 2003-09-06  Paul Eggert  <eggert@twinsun.com>
27379
27380         * lib/time_r.c, lib/time_r.h: New files.
27381
27382         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
27383         __localtime_r.
27384         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
27385         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
27386
27387         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
27388         __gmtime_r.
27389         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
27390         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
27391         Include <time_r.h>.
27392
27393         * lib/timegm.c: Switch to glibc implementation, with the following
27394         changes:
27395         [defined HAVE_CONFIG_H]: Include <config.h>.
27396         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
27397         (__mktime_internal) [!defined _LIBC]: New decl.
27398         (__gmtime_r) [!defined _LIBC]: New macro and function.
27399         (timegm): Use a prototype, since gnulib assumes C89.
27400         Do not bother declaring tmp to be const, as it's not really usefu.
27401         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
27402         (timegm): Declare only if HAVE_DECL_TIMEGM.
27403
27404 2003-09-06  Paul Eggert  <eggert@twinsun.com>
27405
27406         * MODULES.html.sh (func_all_modules): Add time_r.
27407         * modules/time_r: New file.
27408         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
27409         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
27410
27411 2003-09-03  Paul Eggert  <eggert@twinsun.com>
27412
27413         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
27414         Bug reported by Lute Kamstra in
27415         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
27416
27417         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
27418         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
27419         course with correspondingly smaller numbers for tomorrow and
27420         yesterday.  From Tadayoshi Funaba.  Originally installed into
27421         sh-utils on 1999-08-07, but the patch got lost (I guess during the
27422         coreutils merge?).
27423
27424 2003-08-31  Simon Josefsson  <jas@extundo.com>
27425
27426         * modules/timegm: New file.
27427         * MODULES.html.sh (func_all_modules): Add timegm.
27428
27429 2003-08-31  Simon Josefsson  <jas@extundo.com>
27430
27431         * m4/timegm.m4: New file.
27432
27433 2003-08-31  Simon Josefsson  <jas@extundo.com>
27434
27435         * lib/timegm.h: New file.
27436         * lib/timegm.c: New file.  Based on
27437         wget-1.8.2/src/http.c:mktime_from_utc.
27438
27439 2003-08-31  Karl Berry  <karl@gnu.org>
27440
27441         * lib/argp.h: update from libc.
27442
27443 2003-08-28  Bruno Haible  <bruno@clisp.org>
27444
27445         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
27446         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
27447         followed by '#define fnmatch fnmatch_posix' gives an error.
27448
27449 2003-08-28  Bruno Haible  <bruno@clisp.org>
27450
27451         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
27452         warning on QNX, which defines O_BINARY to 000000.
27453
27454 2003-08-27  Jim Meyering  <jim@meyering.net>
27455
27456         * m4/mkstemp.m4: Require that the system mkstemp be able to create
27457         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
27458         would fail after 32.  Reported by Danny Levinson.  Details here:
27459         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
27460
27461 2003-08-24  Bruno Haible  <bruno@clisp.org>
27462
27463         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
27464         MSVC7 <stdio.h> is included later.
27465
27466 2003-08-22  Simon Josefsson  <jas@extundo.com>
27467
27468         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
27469
27470 2003-08-20  Karl Berry  <karl@gnu.org>
27471
27472         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
27473
27474 2003-08-20  Bruno Haible  <bruno@clisp.org>
27475
27476         * modules/progname: New file.
27477         * MODULES.html.sh (func_all_modules): Add progname.
27478
27479 2003-08-20  Bruno Haible  <bruno@clisp.org>
27480
27481         * lib/progname.h: New file, from GNU gettext.
27482         * lib/progname.c: New file, from GNU gettext.
27483         * lib/progreloc.c: New file, from GNU gettext.
27484
27485 2003-08-19  Jim Meyering  <jim@meyering.net>
27486
27487         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
27488         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
27489
27490 2003-08-19  Bruno Haible  <bruno@clisp.org>
27491
27492         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
27493         more.
27494
27495 2003-08-19  Bruno Haible  <bruno@clisp.org>
27496
27497         * lib/xstrdup.c: Assume <string.h> exists.
27498
27499 2003-08-18  Paul Eggert  <eggert@twinsun.com>
27500
27501         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
27502         in makefile rules.
27503
27504 2003-08-18  Jim Meyering  <jim@meyering.net>
27505
27506         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
27507         * m4/lib-ld.m4: Likewise.
27508
27509 2003-08-18  Jim Meyering  <jim@meyering.net>
27510
27511         * lib/setenv.h: Indent nested cpp directive.
27512         * lib/vasnprintf.c: Remove trailing blanks.
27513
27514 2003-08-17  Simon Josefsson  <jas@extundo.com>
27515
27516         * modules/xstrndup: New file.
27517         * MODULES.html.sh (func_all_modules): Add xstrndup.
27518
27519 2003-08-17  Simon Josefsson  <jas@extundo.com>
27520
27521         * modules/argp: Fix autoconf macro name. Add more dependencies.
27522
27523 2003-08-17  Simon Josefsson  <jas@extundo.com>
27524
27525         * m4/xstrndup.m4: New file.
27526
27527 2003-08-17  Simon Josefsson  <jas@extundo.com>
27528
27529         * m4/argp.m4: New file.
27530
27531 2003-08-17  Simon Josefsson  <jas@extundo.com>
27532             Bruno Haible  <bruno@clisp.org>
27533
27534         * lib/xstrndup.h: New file.
27535         * lib/xstrndup.c: New file.
27536
27537 2003-08-17  Bruno Haible  <bruno@clisp.org>
27538
27539         * modules/strndup (Files, Include): Add lib/strndup.h.
27540
27541 2003-08-17  Bruno Haible  <bruno@clisp.org>
27542
27543         * modules/euidaccess (Files): Add lib/euidaccess.h.
27544
27545 2003-08-17  Bruno Haible  <bruno@clisp.org>
27546
27547         * lib/strndup.h: New file.
27548
27549 2003-08-17  Bruno Haible  <bruno@clisp.org>
27550
27551         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
27552         like AC_GNU_SOURCE.
27553         * modules/extensions (configure.ac): Comment out the invocation of
27554         gl_USE_SYSTEM_EXTENSIONS.
27555
27556 2003-08-16  Paul Eggert  <eggert@twinsun.com>
27557
27558         Merges from coreutils, etc.
27559         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
27560         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
27561         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
27562         fixing a typo.
27563         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
27564         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
27565
27566 2003-08-16  Paul Eggert  <eggert@twinsun.com>
27567
27568         Document merge from coreutils.
27569         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
27570         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
27571         * modules/utime: Add m4/utimes-null.m4.
27572
27573 2003-08-16  Paul Eggert  <eggert@twinsun.com>
27574
27575         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
27576         space, undoing this 2003-08-12 change:
27577         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
27578
27579 2003-08-16  Paul Eggert  <eggert@twinsun.com>
27580
27581         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
27582         strtoul.c from libc, undoing this 2003-08-12 change:
27583         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
27584
27585 2003-08-16  Jim Meyering  <jim@meyering.net>
27586
27587         Merges from coreutils.
27588         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
27589         prefix.  Adjust cache variables similarly.  Create 500 rather than
27590         just 300 files, to exercise bug on Darwin6.5, too.
27591         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
27592         $missing_dir.
27593         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
27594         AM_SYS_POSIX_TERMIOS.
27595         Reported by mkc@mathdogs.com.
27596         Also change use of $am_cv_sys_posix_termios
27597         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
27598         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
27599         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
27600         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
27601         in /proc/mounts until it finds one with matching device number.  This
27602         is unnecessary when the FILE argument *is* a mount point.  No stat call
27603         is necessary in that case.  So, disable the statvfs-testing code on
27604         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
27605         as RedHat bug# 84846.
27606         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
27607         to 1MB, so as not to render systems with no stack size limit (e.g.,
27608         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
27609         Include <unistd.h>.  On some systems,
27610         it is required for the definition of _SC_PAGESIZE.
27611
27612 2003-08-16  Jim Meyering  <jim@meyering.net>
27613
27614         Merge from coreutils.
27615         * lib/xstrtoimax.c: #else #if -> #elif.
27616         * lib/xstrtoumax.c: Likewise.
27617
27618 2003-08-16  Jim Meyering  <jim@meyering.net>
27619
27620         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
27621         * m4/utimes.m4: Removed.
27622         * m4/utimes-null.m4: Renamed from utimes.m4.
27623
27624         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
27625         to 1MB, so as not to render systems with no stack size limit (e.g.,
27626         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
27627         Include <unistd.h>.  On some systems,
27628         it is required for the definition of _SC_PAGESIZE.
27629
27630 2003-08-16  Jim Meyering  <jim@meyering.net>
27631         and Paul Eggert  <eggert@cs.ucla.edu>
27632
27633         Merges from coreutils, etc.
27634
27635         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
27636         using the latest version from cvs.  This avoids problems with #line
27637         directives using a vendor (Sun) compiler.
27638         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
27639         Don't set GETGROUPS_LIB here; now it's
27640         done via getgroups.m4's wrapper function.
27641         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
27642         rather than just in sh-util/configure.in, so that the
27643         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
27644         same.
27645         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
27646         AC_FUNC_GETLOADAVG where to find getloadavg.c.
27647         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
27648         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
27649         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
27650         Remove code that is now done by the newly-required macros.
27651         Append $(EXEEXT) to DF_PROG.
27652         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
27653         Do not invoke or require the following here,
27654         since prereq.m4 or some gnulib .m4 now does this for us:
27655         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
27656         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
27657         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
27658         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
27659         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
27660         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
27661         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
27662         AC_FUNC_OBSTACK.
27663         Do not replace the following functions, as this is now the job
27664         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
27665         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
27666         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
27667         atexit getpass, strdup, getpagesize.
27668         Replace 'raise'.
27669         Do not check for the following functions, as this is now the job
27670         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
27671         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
27672         setregid.
27673         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
27674         Check for sys/sysctl.h.
27675         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
27676         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
27677         of checking for ssize_t ourselves.
27678
27679         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
27680         Require every macro that gnulib/modules/* suggests for us.
27681         (jm_PREREQ_ADDEXT): New macro.
27682         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
27683         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
27684
27685         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
27686         (gl_PHYSMEM): Use it.
27687         Also check for `table' function.
27688         Check for new headers and functions.
27689         Add check for sys/sysmp.h.
27690         With suggestions from Kaveh Ghazi.
27691         Ignore headers that are present but cannot be compiled.  This
27692         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
27693         C 5.4.
27694
27695 2003-08-15  Paul Eggert  <eggert@twinsun.com>
27696
27697         Document merge from coreutils.
27698         * modules/userspec: Depend on posixver.
27699         * modules/strftime: Depend on tzset.
27700
27701 2003-08-15  Paul Eggert  <eggert@twinsun.com>
27702
27703         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
27704         rather than tab, after '#' in shell-script copyright notices.
27705         Suggested by Bruno Haible.
27706
27707 2003-08-15  Paul Eggert  <eggert@twinsun.com>
27708
27709         * config/srclist-update: Use three spaces, rather than tab, after '#'
27710         in shell-script copyright notices.  Suggested by Bruno Haible.
27711         Remove unnecessary parenthesization in regular expression.
27712
27713 2003-08-15  Jim Meyering  <jim@meyering.net>
27714
27715         Merge from coreutils.
27716         * lib/xgethostname.c: Include <stdlib.h>.
27717         (xghostname): Don't exit for anything other than memory-related
27718         failure; just return NULL.
27719         * lib/userspec.c: Include "posixver.h".
27720         (parse_user_spec): Accept `.' as a separator only
27721         in pre-POSIX-200112 mode.
27722         * lib/strtoimax.c: Use #elif rather than #else #if.
27723         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
27724         Remove function, now that we can rely on a working tzset function.
27725         [!_LIBC]: Ensure that the required autoconf test has been run.
27726         [!defined _NL_CURRENT && HAVE_STRFTIME]:
27727         Use underlying_strftime for %r.
27728         * lib/sha.c: Merge in some clean-up and optimization changes from
27729         glibc.
27730         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
27731         Ensure that it is a multiple of 64.
27732         Rearrange loop exit tests so as to avoid performing an
27733         additional fread after encountering an error or EOF.
27734         * lib/realloc.c: Update copyright date.
27735
27736 2003-08-15  Jim Meyering  <jim@meyering.net>
27737         and Paul Eggert  <eggert@twinsun.com>
27738
27739         Merge from coreutils.
27740         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
27741         member but strut utmpx does not.  Needed for AIX 4.3.3.
27742         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
27743
27744 2003-08-15  Jim Meyering  <jim@meyering.net>
27745         and Paul Eggert  <eggert@cs.ucla.edu>
27746
27747         Merges from coreutils, etc.
27748         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
27749         Require gl_FUNC_TZSET_CLOBBER.
27750         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
27751         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
27752         members.
27753
27754 2003-08-14  Paul Eggert  <eggert@twinsun.com>
27755
27756         Help the merge from coreutils.
27757         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
27758         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
27759         * m4/tzset.m4: Use it too.
27760
27761 2003-08-14  Paul Eggert  <eggert@twinsun.com>
27762
27763         * modules/tzset: New file.
27764
27765 2003-08-14  Jim Meyering  <jim@meyering.net>
27766
27767         Merges from coreutils.
27768         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
27769         variable names, rather than @FNMATCH_H@.
27770         * modules/alloca: Likewise for $(ALLOCA_H).
27771
27772         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
27773         the three copies of the literal target, `fnmatch.h'.
27774         * modules/alloca (alloca.h): Likewise.
27775
27776 2003-08-14  Jim Meyering  <jim@meyering.net>
27777
27778         Merge from coreutils.
27779         * m4/tzset.m4: New file.
27780         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
27781         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
27782         otherwise, AIX 5.1 systems would end up using the latter.
27783         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
27784         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
27785         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
27786         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
27787
27788 2003-08-14  Jim Meyering  <jim@meyering.net>
27789
27790         Merge from coreutils.
27791         * lib/obstack.h: Whitespace changes.
27792         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
27793         and xcalloc return values.
27794         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
27795         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
27796         hang on OSF/1 5.1 for DIR on both local and remote file systems.
27797         Reported by (and fix confirmed by) Nelson H. F. Beebe.
27798         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
27799         error from mntctl.
27800         Use mntctl's return value to drive the entry-processing loop, since
27801         we can't rely on the value of the vmt_length member in the last
27802         entry.  On some systems doing so could result in exhausting
27803         virtual memory.  Based in part on a patch from Mike Jetzer.
27804
27805 2003-08-14  Jim Meyering  <jim@meyering.net>
27806         and Paul Eggert  <eggert@twinsun.com>
27807
27808         Merges from coreutils, plus other fixes.
27809         * lib/physmem.c: Merge in portability changes from gcc/libiberty
27810         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
27811         for credits and details.  Thanks to Kaveh Ghazi for helping
27812         to keep these files in sync.
27813         (ARRAY_SIZE): Define it.
27814         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
27815         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
27816         (memcasecmp): Don't assume size_t fits in unsigned int.
27817         Remove casts and duplicate code.
27818         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
27819         (memcpy): Remove definition.
27820         Merge in some clean-up and optimization changes from glibc.
27821         [BLOCKSIZE]: Move definition to top of file.
27822         Ensure that it is a multiple of 64.
27823         Rearrange loop exit tests so as to avoid performing an
27824         additional fread after encountering an error or EOF.
27825         * lib/md5.h (md5_uintptr): Define.
27826         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
27827         return to the initial working directory.  Preserve errno
27828         for caller.
27829         * lib/idcache.c: Include "xalloc.h".
27830         (xmalloc, xrealloc): Remove decls.
27831         (getuser): Remove casts no longer required in C89.
27832         * lib/human.c: Include stdio.h, for sprintf.
27833         * lib/group-member.c: Include "xalloc.h".
27834         (xmalloc, xrealloc): Remove decls.
27835         (get_group_info): Remove casts no longer required in C89.
27836         * lib/getusershell.c (readname): Remove casts no longer required in
27837         C89.
27838         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
27839         * lib/getline.c: Whitespace fix, from coreutils.
27840
27841 2003-08-13  Paul Eggert  <eggert@twinsun.com>
27842
27843         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
27844         Check for isascii.
27845
27846         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
27847         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
27848         Undo previous (whitespace-only) change.
27849
27850 2003-08-13  Paul Eggert  <eggert@twinsun.com>
27851
27852         * lib/exclude.c: Include <ctype.h>
27853         (IN_CTYPE_DOMAIN): New macro.
27854         (is_space): New fn.
27855         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
27856         and empty lines.
27857
27858         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
27859         Undo previous (whitespace-only) change.
27860
27861 2003-08-13  Paul Eggert  <eggert@twinsun.com>
27862
27863         * config/srclist-update: Change update back to the old behavior,
27864         leaving whitespace alone.  Use one 'sed' command rather than a
27865         pipeline.
27866         (fixlicense): Now a variable, not a function.
27867         (remove_trailing_blanks): Remove.
27868         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
27869         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
27870         Undo previous (whitespace-only) change.
27871
27872 2003-08-12  Paul Eggert  <eggert@twinsun.com>
27873
27874         Merge from coreutils.
27875         * modules/euidaccess: Add lib_SOURCES, include for new
27876         file euidaccess.h
27877
27878 2003-08-12  Paul Eggert  <eggert@twinsun.com>
27879
27880         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
27881         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
27882         Normalize leading white space and remove trailing white space.
27883
27884         Merge from coreutils
27885         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
27886
27887         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
27888         0.12.1.  These files are now being upgraded automatically by
27889         ../config/srclist-update.
27890
27891 2003-08-12  Paul Eggert  <eggert@twinsun.com>
27892
27893         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
27894         Normalize leading white space and remove trailing white space.
27895         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
27896         notice, as per ../config/srclist-update.
27897
27898         Merge from coreutils.
27899         * lib/euidaccess.h: New file.
27900         * lib/euidaccess.c: Include it.
27901         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
27902         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
27903         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
27904
27905 2003-08-12  Paul Eggert  <eggert@twinsun.com>
27906
27907         * config/srclist-update: Add copyright notice.
27908         (remove_id_lines, remove_trailing_blanks): New constants.
27909         (fixfile): Use them to normalize spacing a bit in copied files.
27910         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
27911         Normalize leading white space and remove trailing white space.
27912
27913         * config/texinfo.tex: Sync with texinfo.
27914
27915         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
27916         strtoul.c from libc, to merge coreutils whitespace changes.
27917
27918         * config/srclist.txt: Get the following m4 files from gettext:
27919         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
27920         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
27921         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
27922         wint_t.m4.
27923
27924 2003-08-12  Karl Berry  <karl@gnu.org>
27925
27926         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
27927         been made.
27928
27929 2003-08-11  Paul Eggert  <eggert@twinsun.com>
27930
27931         * modules/gnu-source, m4/gnu-source.m4:
27932         Remove; we're assuming Autoconf 2.54 or later now.
27933         Suggested by Bruno Haible.
27934         * MODULES.html.sh (func_all_modules): Remove gnu-source.
27935
27936 2003-08-11  Bruno Haible  <bruno@clisp.org>
27937
27938         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
27939
27940 2003-08-11  Bruno Haible  <bruno@clisp.org>
27941
27942         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
27943         (vasnprintf): Use it instead of wcslen.
27944
27945 2003-08-11  Bruno Haible  <bruno@clisp.org>
27946
27947         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
27948         value to ensure that _Bool promotes to int. Use #define for _Bool when
27949         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
27950
27951 2003-08-10  Karl Berry  <karl@gnu.org>
27952
27953         * lib/regex.h: update from libc (whitespace fix).
27954
27955 2003-08-09  Paul Eggert  <eggert@twinsun.com>
27956
27957         Merge some files from coreutils.  These changes were
27958         originally made by Jim Meyering.
27959         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
27960         many older Unixes require this.
27961         * lib/alloca.c (alloca): Remove cast to argument of free;
27962         no longer needed in C89.
27963         * lib/alloca_.h, regex.h: Fix white space to match
27964         what GNU indent does.
27965
27966 2003-08-09  Paul Eggert  <eggert@twinsun.com>
27967
27968         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
27969         apparently Emacs's Unicode mode got confused before my 2003-08-05
27970         checkin.
27971
27972 2003-08-08  Paul Eggert  <eggert@twinsun.com>
27973
27974         * m4/extensions.m4: New file.
27975         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
27976         Require gl_USE_SYSTEM_EXTENSIONS.
27977         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
27978         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
27979
27980 2003-08-08  Paul Eggert  <eggert@twinsun.com>
27981
27982         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
27983         * modules/extensions, modules/gnu-source: New files.
27984         * modules/timespec, modules/unlocked-io: Depend on extensions.
27985
27986 2003-08-07  Paul Eggert  <eggert@twinsun.com>
27987
27988         * modules/restrict: New file.
27989         * MODULES.html.sh (func_all_modules): Add restrict.
27990         * modules/regex: Depend on restrict.
27991
27992 2003-08-07  Paul Eggert  <eggert@twinsun.com>
27993
27994         * m4/restrict.m4: New file.
27995         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
27996
27997 2003-08-07  Bruno Haible  <bruno@clisp.org>
27998
27999         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
28000         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
28001
28002 2003-08-07  Bruno Haible  <bruno@clisp.org>
28003
28004         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
28005         makes the module 'getndelim2' compatible with the module 'getline'.
28006
28007 2003-08-05  Paul Eggert  <eggert@twinsun.com>
28008
28009         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
28010         byte with "\201" to avoid glitches when editing that source file
28011         with multi-gnome-terminal.
28012
28013 2003-08-05  Paul Eggert  <eggert@twinsun.com>
28014
28015         * lib/bumpalloc.h: Remove.
28016
28017 2003-08-05  Paul Eggert  <eggert@twinsun.com>
28018
28019         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
28020         * modules/bumpalloc: Remove.
28021
28022 2003-08-04  Paul Eggert  <eggert@twinsun.com>
28023
28024         * lib/getloadavg.c: Change copyright notice and spacing to conform to
28025         GNU coding style.
28026
28027         Merge from coreutils.
28028         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
28029         1. From glibc.
28030         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
28031         from Karl Berry, implemented by Jim Meyering.
28032         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
28033         from Dmitry V. Levin.
28034         Remove anachronistic cast of xrealloc.
28035         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
28036         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
28037         type. Otherwise, it wouldn't compile with at least /bin/cc on
28038         ymp-cray-unicos9.0.2.X.
28039         Combine two mostly-identical uses of alloca into one.
28040         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
28041
28042 2003-08-04  Dave Love  <d.love@dl.ac.uk>
28043
28044         [From Emacs.]
28045
28046         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
28047         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
28048         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
28049         obsolete NLIST_NAME_UNION.
28050         [__GNU__]: Undef BSD and FSCALE.
28051         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
28052
28053 2003-08-03  Paul Eggert  <eggert@twinsun.com>
28054
28055         * lib/stdbool_.h (_Bool): Make it signed char, instead of
28056         an enum type, so that it's guaranteed to promote to int.  See:
28057         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
28058
28059 2003-08-03  Karl Berry  <karl@gnu.org>
28060
28061         * config/depcomp: update from automake.
28062
28063 2003-07-31  Paul Eggert  <eggert@twinsun.com>
28064
28065         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
28066         (strerror): Don't assume that a printable int fits in 14 bytes.
28067
28068 2003-07-31  Bruno Haible  <bruno@clisp.org>
28069
28070         * modules/getpass-gnu: New file.
28071         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
28072
28073 2003-07-31  Bruno Haible  <bruno@clisp.org>
28074
28075         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
28076
28077 2003-07-24  Karl Berry  <karl@gnu.org>
28078
28079         * config/missing: update from automake.
28080
28081 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
28082             Bruno Haible  <bruno@clisp.org>
28083
28084         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
28085         * lib/getline.c (getline, getdelim): Likewise.
28086         Remove _GNU_SOURCE define; now it's defined in config.h through
28087         m4/getline.m4.
28088
28089 2003-07-23  Karl Berry  <karl@gnu.org>
28090
28091         * config/config.sub: update from prep.
28092
28093 2003-07-22  Paul Eggert  <eggert@twinsun.com>
28094
28095         * modules/xalloc (Depends-on): Add exitfail.
28096         * modules/xmemcoll: Likewise.
28097
28098 2003-07-22  Paul Eggert  <eggert@twinsun.com>
28099
28100         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
28101         over-parenthesization in macros.
28102
28103         Sync with coreutils.
28104
28105         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
28106         required by C99.
28107
28108         Use `exit_failure' for xalloc and xmemcoll instead of their own
28109         private exit-failure variables.
28110         * lib/xalloc.h (xalloc_exit_failure): Remove.
28111         * lib/xmalloc.c: Likewise.  Include exitfail.h.
28112         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
28113         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
28114         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
28115         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
28116
28117 2003-07-20  Jim Meyering  <jim@meyering.net>
28118
28119         * modules/closeout (Depends-on): Add exitfail.
28120         Suggestion from Bruno Haible.
28121
28122 2003-07-19  Karl Berry  <karl@gnu.org>
28123
28124         * config/config.sub: update from prep.
28125
28126 2003-07-18  Paul Eggert  <eggert@twinsun.com>
28127
28128         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
28129         Remove.
28130         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
28131         to test that it can stand by itself.  Include "exitfail.h".
28132         Clients should set exit_failure instead.
28133         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
28134
28135 2003-07-18  Bruno Haible  <bruno@clisp.org>
28136
28137         * modules/getndelim2: New file.
28138         * modules/getline: Share files with module getndelim2.
28139         * modules/getnline: Depend on getndelim2 instead of sharing files with
28140         it. Add getnline.c to lib_SOURCES.
28141         * MODULES.html.sh (func_all_modules): Add getndelim2.
28142
28143 2003-07-18  Bruno Haible  <bruno@clisp.org>
28144
28145         * m4/getndelim2.m4: New file.
28146         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
28147         invoke gl_PREREQ_GETNDELIM2.
28148         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
28149         gl_PREREQ_GETNDELIM2.
28150         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
28151         gl_GETNDELIM2.
28152
28153 2003-07-18  Bruno Haible  <bruno@clisp.org>
28154
28155         * lib/getndelim2.h: New file.
28156         * lib/getndelim2.c: Make into a module of its own. Include config.h,
28157         getndelim2.h.
28158         (getndelim2): Make non-static. Change return type to ssize_t.
28159         * lib/getline.h: Change argument names.
28160         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
28161         * lib/getnline.c: Include getndelim2.h.
28162
28163 2003-07-18  Andreas Schwab  <schwab@suse.de>
28164
28165         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
28166
28167 2003-07-17  Karl Berry  <karl@gnu.org>
28168
28169         * config/config.sub: update from prep.
28170
28171 2003-07-17  Bruno Haible  <bruno@clisp.org>
28172
28173         * modules/getnline: New file.
28174         * modules/getline: Add lib/getndelim2.c to source file list.
28175         * MODULES.html.sh (func_all_modules): Add getnline.
28176
28177 2003-07-17  Bruno Haible  <bruno@clisp.org>
28178
28179         * m4/getnline.m4: New file.
28180
28181 2003-07-17  Bruno Haible  <bruno@clisp.org>
28182
28183         * m4/Makefile.am.in: Remove file.
28184         * m4/Makefile.am: Remove file.
28185         * m4/Makefile.in: Remove file.
28186
28187 2003-07-17  Bruno Haible  <bruno@clisp.org>
28188
28189         * lib/getnline.h: New file.
28190         * lib/getnline.c: New file.
28191         * lib/getndelim2.c: New file, extracted from getline.c.
28192         (getndelim2): Renamed from getdelim2, with added nmax argument.
28193         * lib/getline.c: Include getndelim2.c.
28194         (getdelim2): Moved out to getndelim2.c.
28195         (getline, getdelim): Update.
28196
28197 2003-07-17  Bruno Haible  <bruno@clisp.org>
28198
28199         * lib/Makefile.am: Remove file.
28200         * lib/Makefile.in: Remove file.
28201
28202 2003-07-17  Bruno Haible  <bruno@clisp.org>
28203
28204         * configure.in: Remove file.
28205         * Makefile.in: Remove file.
28206
28207 2003-07-17  Bruno Haible  <bruno@clisp.org>
28208
28209         * MODULES.html.sh: Put the </BODY> right before </HTML>.
28210
28211 2003-07-16  Karl Berry  <karl@gnu.org>
28212
28213         * config/srclist-update: was running fixlicense twice, which caused
28214                 texinfo.tex to be nullified for some reason.  Simplify,
28215                 $gplsrc is no longer needed as far as I can see?
28216
28217 2003-07-16  Jim Meyering  <jim@meyering.net>
28218
28219         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
28220
28221 2003-07-15  Paul Eggert  <eggert@twinsun.com>
28222
28223         * config/srclist.txt: Get the following files from gettext-runtime/intl
28224         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
28225         ref-del.sin.  From Bruno Haible.
28226         * config/srclist-update (fixfile): Change grep pattern again, since the
28227         previous fix didn't work (there was another trailing $).  Use
28228         '[$]' to escape the $s.
28229
28230 2003-07-15  Karl Berry  <karl@gnu.org>
28231
28232         * lib/vasnprintf.c: update from gettext.
28233
28234 2003-07-15  Karl Berry  <karl@gnu.org>
28235
28236         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
28237         gets expanded when surrounded by '$'.
28238
28239 2003-07-15  Jim Meyering  <jim@meyering.net>
28240
28241         * modules/save-cwd: Don't depend on error.  From Derek Price.
28242
28243 2003-07-15  Jim Meyering  <jim@meyering.net>
28244
28245         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
28246
28247 2003-07-14  Simon Josefsson  <jas@extundo.com>
28248
28249         * modules/mempcpy: New file.
28250         * MODULES.html.sh (func_all_modules): Add mempcpy.
28251
28252 2003-07-14  Simon Josefsson  <jas@extundo.com>
28253
28254         * m4/mempcpy.m4: New file.
28255
28256 2003-07-14  Simon Josefsson  <jas@extundo.com>
28257
28258         * lib/mempcpy.h: New file.
28259         * lib/mempcpy.c: New file.
28260
28261 2003-07-14  Paul Eggert  <eggert@twinsun.com>
28262
28263         * modules/getdate, modules/posixtm: Depend on mktime.
28264
28265 2003-07-14  Paul Eggert  <eggert@twinsun.com>
28266
28267         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
28268         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
28269         unicodeio.c, unicodeio.h, unlocked-io.h:
28270         Switch from LGPL to GPL.
28271
28272 2003-07-14  Paul Eggert  <eggert@twinsun.com>
28273
28274         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
28275         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
28276         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
28277         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
28278         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
28279         updated automatically by ../config/srclist-update.  This changes
28280         their license from LPGL to GPL.
28281
28282 2003-07-14  Paul Eggert  <eggert@twinsun.com>
28283
28284         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
28285         assumed to refer to the root of the most recent stable gettext version.
28286         * config/srclistvars.sh: Add defaults for eggert.
28287         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
28288         Match "This program" as well as "The program".  This is needed
28289         for gettext.
28290
28291 2003-07-14  Jim Meyering  <jim@meyering.net>
28292
28293         Don't emit diagnostics.  Let callers do that.
28294         * lib/save-cwd.c: Don't include "error.h".
28295         (save_cwd): Don't call error.  Ensure that errno is valid
28296         when returning nonzero.
28297
28298         * lib/save-cwd.h (restore_cwd): Update prototype.
28299         * lib/save-cwd.c (restore_cwd): Remove two parameters.
28300         Simplify.  Don't call error upon failure.  Let callers do that.
28301         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
28302         when auditing is enabled.  But don't bother updating the #if.
28303
28304 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
28305
28306         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
28307         it breaks C++ compilation.
28308         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
28309
28310 2003-07-10  Simon Josefsson  <jas@extundo.com>
28311
28312         * modules/strchrnul (Makefile.am): Add strchrnul.h.
28313
28314 2003-07-10  Jim Meyering  <jim@meyering.net>
28315
28316         * m4/clock_time.m4: Remove trailing blank.
28317         * m4/intmax_t.m4: Likewise.
28318
28319 2003-07-10  Jim Meyering  <jim@meyering.net>
28320
28321         * lib/vasnprintf.c: Remove trailing blanks.
28322         Make cpp indentation consistent.
28323
28324 2003-07-09  Paul Eggert  <eggert@twinsun.com>
28325
28326         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
28327         posixver.c, strftime.c, strnlen.c, strverscmp.c:
28328         Switch from LGPL to GPL.
28329
28330 2003-07-09  Paul Eggert  <eggert@twinsun.com>
28331
28332         * config/srclist.txt: Sort sublists.  Add
28333         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
28334         that differ from gnulib for one reason or another; we'd like this list
28335         to be smaller but for now let's document what we have.
28336
28337 2003-07-08  Paul Eggert  <eggert@twinsun.com>
28338
28339         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
28340         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
28341         and sweeter "eval x=$x".
28342         * config/srclist.txt: Get lib/argp* from glibc.
28343
28344 2003-07-07  Paul Eggert  <eggert@twinsun.com>
28345
28346         * lib/mktime.c: Fix some boundary cases and remove need for floating
28347         point.
28348
28349         Issue a compile-time diagnostic if time_t is floating point, or if
28350         two's complement arithmetic is not in effect, or if arithmetic
28351         right shift does not propagate the sign.  These assumptions were
28352         all in the original code but they weren't checked.
28353
28354         (TIME_T_MIDPOINT, verify): New macros.
28355         (__isleap): Remove; it has integer overflow problems.
28356         (leapyear): New function, without those problems.
28357         (ydhms_tm_diff): Remove; splitting into two parts.
28358         (ydhms_diff): New function, containing the arithmetic part of
28359         the old ydhms_tm_diff function.  Issue a compile-time
28360         diagnostic if we are not using C99 integer division.
28361         Avoid casts when possible.
28362         (guess_time_tm): New function, containing the checking part of
28363         the old ydhms_tm_diff function.  Return the new value, rather than
28364         the difference between it and the old.  Accept a new argument T
28365         so that *T specifies the old value.  Check for overflow in the result.
28366
28367         (__mktime_internal): Use a time_t offset, not a long int offset.
28368         This undoes the 2003-06-04 change, which is no longer needed now
28369         that we have better overflow checking.
28370         (localtime_offset): Likewise.
28371
28372         (__mktime_internal): Avoid harmful overflow on hosts where time_t
28373         and long are 64-bit but int is only 32-bit.
28374         (ydhms_diff): Use long int to store year1 and yday1.
28375         Issue a compile-time diagnostic if long int is not wide enough.
28376
28377         (__mktime_internal): Use long int to store adjusted year and yday.
28378         Use plain C rather than preprocessor commands, if that doesn't
28379         affect efficiency.
28380         Check for overflow (and try to repair) after each probe
28381         rather than checking only at the very end.  This avoids some bugs
28382         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
28383         does not equal GMT offset at maximum time).
28384         Use integer to check for overflow rather than floating point; this
28385         is more portable to non-IEEE hosts, and is a tad faster.
28386         When we detect that we are oscillating between two values,
28387         don't check whether tm_isdst has the requested value, since
28388         we already know the answer.  When tm_isdst has the wrong value,
28389         use a different heuristic to find the right one, based on the
28390         extreme values actually observed in practice in tz2003a,
28391         rather than the (overly optimistic) "previous 3 calendar quarters".
28392
28393         (not_equal_tm, print_tm, check_result): Use "const T" rather than
28394         "T const" to accommodate glibc style.
28395         (check_result): Use less-confusing report format.  "long" -> "long int.
28396         (main): Likewise.
28397         Don't loop if the iteration overflows time_t.
28398         Allow a negative step in the iteration.
28399
28400 2003-07-06  Karl Berry  <karl@gnu.org>
28401
28402         * config/depcomp: update from automake.
28403         * config/config.sub: update from prep.
28404
28405 2003-07-03  Karl Berry  <karl@gnu.org>
28406
28407         * config/config.guess: update from prep.
28408
28409 2003-07-01  Paul Eggert  <eggert@twinsun.com>
28410
28411         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
28412         xreadlink.c now includes it unconditionally.
28413
28414 2003-07-01  Paul Eggert  <eggert@twinsun.com>
28415
28416         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
28417         having it depend on HAVE_SYS_TYPES_H.
28418
28419 2003-07-01  Bruno Haible  <bruno@clisp.org>
28420
28421         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
28422         <sys/types.h> should be sufficient.
28423         Reported by Paul Eggert.
28424
28425 2003-06-26  Karl Berry  <karl@gnu.org>
28426
28427         * config/depcomp: update from automake.
28428
28429 2003-06-26  Bruno Haible  <bruno@clisp.org>
28430
28431         * modules/human: Depend on module stdbool.
28432
28433 2003-06-25  Bruno Haible  <bruno@clisp.org>
28434
28435         * modules/readlink: New file.
28436         * modules/xreadlink: Depend on it.
28437         * MODULES.html.sh (func_all_modules): Add readlink.
28438
28439 2003-06-25  Bruno Haible  <bruno@clisp.org>
28440
28441         * m4/readlink.m4: New file.
28442
28443 2003-06-25  Bruno Haible  <bruno@clisp.org>
28444
28445         * lib/readlink.c: New file.
28446
28447 2003-06-22  Karl Berry  <karl@gnu.org>
28448
28449         * config/srclist.txt: update mkinstalldirs from automake.
28450         * config/mkinstalldirs: update.
28451
28452 2003-06-22  Bruno Haible  <bruno@clisp.org>
28453
28454         Portability to mingw32.
28455         * m4/ssize_t.m4: New file, from GNU gettext.
28456         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
28457         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
28458
28459 2003-06-22  Bruno Haible  <bruno@clisp.org>
28460
28461         * modules/safe-read: Add m4/ssize_t.m4.
28462         * modules/xreadlink: Add m4/ssize_t.m4.
28463
28464 2003-06-20  Bruno Haible  <bruno@clisp.org>
28465
28466         Assume C89, so PARAMS isn't needed.
28467         * lib/unicodeio.h (PARAMS): Remove.
28468         * lib/unicodeio.c: Don't use PARAMS.
28469
28470 2003-06-18  Karl Berry  <karl@gnu.org>
28471
28472         * config/config.{guess,sub}: update from prep.
28473
28474 2003-06-18  Jim Meyering  <jim@meyering.net>
28475
28476         Merge changes from coreutils.
28477         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
28478         Remove explicit declarations of xmalloc and realloc.
28479         Include xalloc.h.
28480         (read_utmp): Remove anachronistic cast of xmalloc.
28481
28482 2003-06-17  Paul Eggert  <eggert@twinsun.com>
28483
28484         Assume C89, so PARAMS isn't needed.
28485         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
28486         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
28487         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
28488         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
28489         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
28490         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
28491         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
28492         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
28493         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
28494         lib/xstrtod.h, lib/xstrtol.h: Likewise.
28495         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
28496         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
28497         no longer needed. Anyway, config.h should always be included before any
28498         other file.
28499
28500 2003-06-11  Simon Josefsson  <jas@extundo.com>
28501
28502         * modules/sysexits: New file.
28503         * MODULES.html.sh (func_all_modules): Add sysexits.
28504
28505 2003-06-11  Simon Josefsson  <jas@extundo.com>
28506
28507         * lib/sysexit_.h: New file.
28508
28509 2003-06-11  Derek Price  <derek@ximbiot.com>
28510
28511         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
28512         necessary.
28513
28514 2003-06-11  Bruno Haible  <bruno@clisp.org>
28515
28516         * m4/sysexits.m4: New file.
28517
28518 2003-06-10  Simon Josefsson  <jas@extundo.com>
28519
28520         * lib/argp.h: New file, from glibc.
28521         * lib/argp-ba.c: New file, from glibc.
28522         * lib/argp-eexst.c: New file, from glibc.
28523         * lib/argp-fmtstream.c: New file, from glibc.
28524         * lib/argp-fmtstream.h: New file, from glibc.
28525         * lib/argp-fs-xinl.c: New file, from glibc.
28526         * lib/argp-help.c: New file, from glibc.
28527         * lib/argp-namefrob.h: New file, from glibc.
28528         * lib/argp-parse.c: New file, from glibc.
28529         * lib/argp-pv.c: New file, from glibc.
28530         * lib/argp-pvh.c: New file, from glibc.
28531         * lib/argp-xinl.c: New file, from glibc.
28532
28533 2003-06-10  Simon Josefsson  <jas@extundo.com>
28534
28535         * modules/strchrnul: New file.
28536
28537 2003-06-10  Simon Josefsson  <jas@extundo.com>
28538
28539         * modules/argp: New file.
28540
28541 2003-06-10  Simon Josefsson  <jas@extundo.com>
28542
28543         * m4/strchrnul.m4: New file.
28544
28545 2003-06-10  Simon Josefsson  <jas@extundo.com>
28546
28547         * lib/strchrnul.h: New file.
28548         * lib/strchrnul.c: New file.
28549
28550 2003-06-10  Bruno Haible  <bruno@clisp.org>
28551
28552         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
28553
28554 2003-06-07  Karl Berry  <karl@gnu.org>
28555
28556         * config/config.{guess,sub}: update from prep.
28557
28558 2003-06-07  Jim Meyering  <jim@meyering.net>
28559
28560         * modules/strtod: Use $(...) notation, not @...@ for
28561         AC_REPLACE'd variables.
28562         * modules/localcharset: Likewise.
28563
28564 2003-06-07  Jim Meyering  <jim@meyering.net>
28565
28566         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
28567         in place of my name in the copyright comment.
28568         Remove definition and uses of __P.
28569
28570         From coreutils.
28571         * lib/stat.c: Don't declare xmalloc explicitly.
28572         Instead, include "xalloc.h".
28573         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
28574         xrealloc, and xcalloc return values.
28575         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
28576         Improve comment.
28577         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
28578
28579 2003-06-07  Bruno Haible  <bruno@clisp.org>
28580
28581         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
28582         avoid AC_CONFIG_LINKS.
28583         * modules/fnmatch (Makefile.am): Use explicit creation rule for
28584         fnmatch.h, to avoid AC_CONFIG_LINKS.
28585         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
28586
28587 2003-06-07  Bruno Haible  <bruno@clisp.org>
28588
28589         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
28590         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
28591         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
28592         directory.
28593         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
28594         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
28595         directory.
28596
28597 2003-06-06  Jim Meyering  <jim@meyering.net>
28598
28599         Merge from coreutils.
28600         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
28601         Consolidate declarations and initializations of *_base* locals.
28602
28603         Merge from coreutils.
28604         This avoids a core dump on systems without GNU putenv,
28605         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
28606         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
28607         (unsetenv): New static function, from GNU libc.
28608         (rpl_putenv): Use it.
28609
28610         * lib/modechange.c: Remove trailing blanks.
28611
28612         Merge from coreutils.
28613         * lib/fsusage.c: Remove declaration of statfs.
28614         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
28615
28616         * lib/posixtm.c: Include <stdbool.h> unconditionally.
28617
28618 2003-06-06  Jim Meyering  <jim@meyering.net>
28619
28620         * lib/stdbool_.h: Renamed from stdbool.h.in.
28621
28622 2003-06-06  Jim Meyering  <jim@meyering.net>
28623             Bruno Haible  <bruno@clisp.org>
28624
28625         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
28626         Adjust Makefile.am snippet not to redirect directly to target.
28627         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
28628
28629 2003-06-05  Paul Eggert  <eggert@twinsun.com>
28630
28631         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
28632         mismatch, look in future quarters as well as past.  This fixes a
28633         bug when processing fall-backwards gaps immediately after a long
28634         period of daylight-saving time.
28635
28636         * lib/mktime.c: Assume freestanding C89 or better.
28637         (HAVE_LIMITS_H): Remove.  Assume it's 1.
28638         (__P): Remove; not used.
28639         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
28640         (mktime, not_equal_tm, print_tm, check_result,
28641         main): Use prototypes.  Use const * where appropriate.
28642         (main): Fix typo in testing code that uncovered by above changes.
28643         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
28644
28645 2003-06-04  Paul Eggert  <eggert@twinsun.com>
28646
28647         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
28648         locale.h, localeconv.  This merges changes from coreutils.
28649
28650         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
28651         It can be removed after the next Autoconf is released.
28652         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
28653         needed.
28654
28655 2003-06-04  Paul Eggert  <eggert@twinsun.com>
28656
28657         * lib/mktime.c: Fix Debian bug 177940
28658         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
28659         (localtime_offset): Now long int, not time_t, because we want it
28660         to be guaranteed to be signed.  All uses changed.
28661         (__mktime_internal): If overflow would occur when adding offset,
28662         don't add it.
28663
28664         Merge 'human' changes from coreutils.  Rewrite to support
28665         locale-specific notations like thousands separators.
28666         * lib/human.c: Simplify authorship notice.
28667         Include human.h immediately after config.h.
28668         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
28669         <limits.h>: Do not include, since human.h does.
28670         (SIZE_MAX, UINTMAX_MAX): New macros.
28671         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
28672         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
28673         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
28674         (power_letter): Renamed from suffixes.
28675         (generate_suffix_backwards): Remove.
28676         (adjust_value): Now takes int style (because of human.h changes)
28677         and long double value (for greater precision on some platforms).
28678         (group_number): New function.
28679         (human_readable): Use it.  Use integer options, not enum.
28680         Put the options before the sizes in the arg list.
28681         Support all the new options.
28682         The old human_readable function has been removed;
28683         use inttostr.h instead.
28684         (human_readable, default_block_size, humblock):
28685         Use uintmax_t, not int, for block sizes.
28686         (human_readable_inexact, block_size_types): Remove.
28687         (block_size_opts): New constant.
28688         (human_options): Renamed from human_block_size, with new signature
28689         that allows block sizes up to UINTMAX_MAX.  All callers changed.
28690         * lib/human.h: Add copyright and authorship notice.
28691         Include <limits.h> and <stdbool.h> unconditionally.
28692         (PARAMS): Remove.  All uses removed.
28693         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
28694         (enum human_inexact_style): Remove tag; now a nameless enum.
28695         (human_floor, human_ceiling, human_round_to_even): Now have
28696         values 2, 0, 1 rather than -1, 1, 0.
28697         (human_group_digits, human_suppress_point_zero, human_autoscale,
28698         human_base_1024, human_SI, human_B): New constants.
28699         (human_readable_inexact, human_block_size): Remove.
28700         (human_readable): Size args are now uintmax_t, not int.
28701         (human_options): New decl.
28702
28703         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
28704         unnecessary now that we assume C89 or better.  This change
28705         imported from coreutils.
28706
28707         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
28708         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
28709         in the 2003-05-30 sync from glibc.
28710
28711         .h files should stand alone, but we shouldn't include <sys/types.h>
28712         if we can get away with just <stddef.h>.
28713
28714         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
28715         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
28716         rather than <sys/types.h>, as we merely need size_t.
28717         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
28718         to get size_t.
28719         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
28720         Include <stdio.h>, to get FILE.
28721         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
28722         memcasecmp.h has included <stddef.h> and all we need is size_t.
28723         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
28724         our interface, instead of including <sys/types.h>
28725
28726 2003-06-04  Paul Eggert  <eggert@twinsun.com>
28727
28728         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
28729         now, as glibc mktime is buggy on non-glibc systems.
28730
28731 2003-06-03  Karl Berry  <karl@gnu.org>
28732
28733         * config/config.sub: update from prep.
28734
28735 2003-06-02  Paul Eggert  <eggert@twinsun.com>
28736
28737         [from coreutils]
28738         Fix some minor time-related bugs with POSIX time arguments.
28739         Some valid time stamps were being rejected (notably -1, and
28740         time stamps before 1900 on 64-bit hosts).  And some invalid
28741         time stamps were being accepted, e.g. September 31.
28742
28743         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
28744         that we can return (time_t) -1 successfully.
28745         * lib/posixtm.c: Likewise.
28746         [HAVE_STDBOOL_H]: Include <stdbool.h>.
28747         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
28748         (t): Remove static var.
28749         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
28750         of static var.  All uses changed.
28751         (year): Do not reject years before 1900; they can occur with
28752         64-bit time_t.
28753         (posix_time_parse): Do not check for out-of-range components;
28754         that is now the caller's responsibility, since our checks were
28755         only approximations.
28756         (posixtime): Use mktime to check for out-of-range components,
28757         since it knows them exactly.
28758         If mktime returns (time_t) -1, check whether an error actually occurred
28759         by invoking localtime on -1.
28760         (main) [TEST_POSIXTIME]: Check for input data errors, and report
28761         posixtime failures better.
28762         Improve the test data (in comments only).
28763
28764 2003-06-02  Karl Berry  <karl@gnu.org>
28765
28766         * config/mkinstalldirs (version): new variable.
28767         (--version): new option.
28768         (usage): improve message.
28769
28770 2003-05-30  Karl Berry  <karl@gnu.org>
28771
28772         * lib/mktime.c: update from libc.
28773
28774 2003-05-30  Bruno Haible  <bruno@clisp.org>
28775
28776         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
28777         * config/config.rpath: Upgrade to gettext-0.12.1.
28778
28779 2003-05-30  Bruno Haible  <bruno@clisp.org>
28780
28781         * m4/gettext.m4: Upgrade to gettext-0.12.1.
28782         * m4/nls.m4: New file, from gettext-0.12.1.
28783         * m4/po.m4: New file, from gettext-0.12.1.
28784         * m4/progtest.m4: Upgrade to gettext-0.12.1.
28785
28786 2003-05-30  Bruno Haible  <bruno@clisp.org>
28787
28788         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
28789         * lib/localcharset.h: Likewise.
28790         * lib/localcharset.c: Likewise.
28791
28792 2003-05-29  Karl Berry  <karl@gnu.org>
28793
28794         * config/config.rpath: update from gettext.
28795
28796 2003-05-28  Paul Eggert  <eggert@twinsun.com>
28797
28798         Assume the headers required for C89 freestanding compilers.
28799         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
28800         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
28801         * m4/human.m4 (gl_HUMAN): Likewise.
28802         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
28803         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
28804         * m4/userspec.m4 (gl_USERSPEC): Likewise.
28805         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
28806         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
28807         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
28808
28809 2003-05-28  Paul Eggert  <eggert@twinsun.com>
28810
28811         Assume the headers required for C89 freestanding compilers.
28812         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
28813         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
28814         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
28815         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
28816         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
28817         define, since <limits.h> is guaranteed to do that.
28818         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
28819         * lib/exclude.c: Include <stdbool.h> unconditionally.
28820         * lib/tempname.c: Include <stddef.h> unconditionally.
28821         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
28822         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
28823         <stddef.h> does that.
28824         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
28825         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
28826         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
28827         needed.
28828         * lib/xstrtol.c: Likewise.
28829         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
28830         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
28831
28832         * lib/addext.c (addext): Use assignment rather than cast, to avoid
28833         warnings on some platforms.
28834
28835         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
28836         arbitrarily.
28837
28838 2003-05-26  Jim Meyering  <jim@meyering.net>
28839
28840         Merge in a change from coreutils:
28841         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
28842         that is guaranteed to be `no'.  Use `no_such_member' to indicate
28843         that condition, rather than `-1' which is slightly misleading.
28844         Change the name of the cache variable to have the gl_ prefix.
28845         Prompted by a patch from Richard Dawe for DJGPP.
28846
28847 2003-05-24  Karl Berry  <karl@gnu.org>
28848
28849         * config/config.guess: update from prep.
28850
28851 2003-05-22  Karl Berry  <karl@gnu.org>
28852
28853         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
28854
28855 2003-05-20  Karl Berry  <karl@gnu.org>
28856
28857         * config/config.guess: update from prep.
28858
28859 2003-05-18  Karl Berry  <karl@gnu.org>
28860
28861         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
28862         might actually be set by the user.
28863
28864         * config/depcomp, install-sh, mdate-sh: update from automake.
28865
28866 2003-05-17  Bruno Haible  <bruno@clisp.org>
28867
28868         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
28869         invalid expansion for AC_EGREP_CPP.
28870         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
28871         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
28872         Suggested by Akim Demaille <akim@epita.fr> in
28873         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
28874
28875 2003-05-12  Jim Meyering  <jim@meyering.net>
28876
28877         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
28878         the space-padded-by-default conversion specifiers, %e, %k, %l.
28879
28880 2003-05-12  Bruno Haible  <bruno@clisp.org>
28881
28882         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
28883         the string is longer than 4 KB.
28884
28885 2003-05-11  Karl Berry  <karl@gnu.org>
28886
28887         * config/config.{guess,sub}: update from prep.
28888
28889 2003-05-09  Bruno Haible  <bruno@clisp.org>
28890
28891         * modules/error: Add m4/strerror_r.m4 to file list.
28892
28893 2003-05-03  Bruno Haible  <bruno@clisp.org>
28894
28895         Upgrade to Unicode-4.0.
28896         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
28897         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
28898         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
28899         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
28900         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
28901         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
28902         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
28903         Change width of U+E0100..U+E01EF from 1 to 0.
28904
28905 2003-04-25  Jim Meyering  <jim@meyering.net>
28906
28907         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
28908         of type size_t, not int.
28909
28910 2003-04-25  Bruno Haible  <bruno@clisp.org>
28911
28912         * lib/copy-file.c: Include <stddef.h>, for size_t.
28913
28914 2003-04-21  Paul Eggert  <eggert@twinsun.com>
28915
28916         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
28917         code which expansion is under static control.  Patch imported from
28918         Akim Demaille's patch to Bison; see
28919         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
28920
28921 2003-04-14  Bruno Haible  <bruno@clisp.org>
28922
28923         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
28924
28925 2003-04-11  Jim Meyering  <jim@meyering.net>
28926
28927         Merge changes from Coreutils.
28928
28929         2003-03-22  Jim Meyering  <jim@meyering.net>
28930
28931         * lib/strftime.c (widen): Cast alloca return value to proper type.
28932
28933         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
28934
28935         From GNU libc.
28936         * lib/strftime.c (my_strftime): Handle very large width
28937         specifications for numeric values correctly.  Improve checks for
28938         overflow.
28939
28940         2003-01-19  Jim Meyering  <jim@meyering.net>
28941
28942         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
28943         definitions.
28944         (nl_get_alt_digit) [! defined my_strftime]: Define.
28945         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
28946         _nl_get_alt_digit and _nl_get_walt_digit.
28947
28948         * lib/strftime.c (my_strftime): Merge in locale-related changes from
28949         libc. These changes have no effect outside of _LIBC.
28950
28951 2003-04-10  Bruno Haible  <bruno@clisp.org>
28952
28953         * modules/findprog: New file.
28954         * MODULES.html.sh (func_all_modules): Add it.
28955
28956 2003-04-10  Bruno Haible  <bruno@clisp.org>
28957
28958         * m4/findprog.m4: New file.
28959         * m4/eaccess.m4: New file.
28960
28961 2003-04-10  Bruno Haible  <bruno@clisp.org>
28962
28963         * lib/findprog.h: New file, from GNU gettext.
28964         * lib/findprog.c: New file, from GNU gettext.
28965
28966 2003-04-05  Jim Meyering  <jim@meyering.net>
28967
28968         Merge changes from Coreutils.
28969
28970         * lib/exclude.h (PARAMS): Remove definition and uses.
28971         * lib/exclude.c: Remove uses of `PARAMS'.
28972
28973         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
28974         Add test-cases for DOS filenames. Declare program_name.
28975         (main): Set up program_name.  Patch by Rich Dawe.
28976
28977         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
28978         error from mntctl.
28979         Use mntctl's return value to drive the entry-processing loop, since
28980         we can't rely on the value of the vmt_length member in the last
28981         entry.  On some systems doing so could result in exhausting
28982         virtual memory.  Based in part on a patch from Mike Jetzer.
28983
28984 2003-04-04  Bruno Haible  <bruno@clisp.org>
28985
28986         * modules/linebreak: New file.
28987         * MODULES.html.sh (func_all_modules): Add it.
28988
28989 2003-04-04  Bruno Haible  <bruno@clisp.org>
28990
28991         * m4/linebreak.m4: New file.
28992
28993 2003-04-04  Bruno Haible  <bruno@clisp.org>
28994
28995         * lib/linebreak.h: New file, from GNU gettext.
28996         * lib/linebreak.c: New file, from GNU gettext with slight
28997         modifications.
28998         * lib/lbrkprop.h: New file, from GNU gettext.
28999
29000 2003-04-03  Bruno Haible  <bruno@clisp.org>
29001
29002         * modules/utf8-ucs4: New file.
29003         * modules/utf16-ucs4: New file.
29004         * modules/ucs4-utf8: New file.
29005         * modules/ucs4-utf16: New file.
29006         * MODULES.html.sh (func_all_modules): Add them.
29007
29008 2003-04-03  Bruno Haible  <bruno@clisp.org>
29009
29010         * m4/utf-ucs4.m4: New file.
29011         * m4/ucs4-utf.m4: New file.
29012
29013 2003-04-03  Bruno Haible  <bruno@clisp.org>
29014
29015         * lib/utf8-ucs4.h: New file, from GNU gettext.
29016         * lib/utf16-ucs4.h: New file, from GNU gettext.
29017         * lib/ucs4-utf8.h: New file, from GNU gettext.
29018         * lib/ucs4-utf16.h: New file, from GNU gettext.
29019
29020 2003-04-02  Bruno Haible  <bruno@clisp.org>
29021
29022         * modules/binary-io: New file.
29023         * MODULES.html.sh (func_all_modules): Add it.
29024
29025 2003-04-02  Bruno Haible  <bruno@clisp.org>
29026
29027         * lib/binary-io.h: New file, from GNU gettext.
29028
29029 2003-04-01  Bruno Haible  <bruno@clisp.org>
29030
29031         * modules/pathname: New file.
29032         * MODULES.html.sh (func_all_modules): Add it.
29033
29034 2003-04-01  Bruno Haible  <bruno@clisp.org>
29035
29036         * lib/pathname.h: New file, from GNU gettext.
29037         * lib/concatpath.c: New file, from GNU gettext.
29038
29039 2003-03-30  Bruno Haible  <bruno@clisp.org>
29040
29041         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
29042
29043 2003-03-30  Bruno Haible  <bruno@clisp.org>
29044
29045         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
29046         function chown() doesn't exist.
29047
29048 2003-03-28  Bruno Haible  <bruno@clisp.org>
29049
29050         * modules/copy-file: New file.
29051         * MODULES.html.sh (func_all_modules): Add it.
29052
29053 2003-03-28  Bruno Haible  <bruno@clisp.org>
29054
29055         * m4/copy-file.m4: New file.
29056
29057 2003-03-28  Bruno Haible  <bruno@clisp.org>
29058
29059         * lib/copy-file.h: New file, from GNU gettext.
29060         * lib/copy-file.c: New file, from GNU gettext.
29061
29062 2003-03-18  Jim Meyering  <jim@meyering.net>
29063
29064         * lib/quote.c (quote_n): Fix typo in comment.
29065
29066 2003-03-18  Bruno Haible  <bruno@clisp.org>
29067
29068         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
29069         checking.
29070         * m4/onceonly_2_57.m4: Likewise.
29071
29072 2003-03-17  Bruno Haible  <bruno@clisp.org>
29073
29074         * m4/onceonly.m4: Require autoconf 2.54 or newer.
29075         (m4_quote): Remove macro.
29076         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
29077
29078 2003-03-14  Jim Meyering  <jim@meyering.net>
29079
29080         Merge changes from Coreutils.
29081         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
29082         to be const, in order to avoid warnings.
29083         (obstack_room): Likewise.
29084         (obstack_empty_p): Likewise.
29085
29086 2003-03-14  Bruno Haible  <bruno@clisp.org>
29087
29088         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
29089         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
29090
29091 2003-03-13  Paul Eggert  <eggert@twinsun.com>
29092
29093         Merge changes from Bison.
29094         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
29095         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
29096         when compiling Bison 1.875's `bitset bset = obstack_alloc
29097         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
29098         * lib/hash.c: Include <stdbool.h> unconditionally.
29099
29100 2003-03-13  Paul Eggert  <eggert@twinsun.com>
29101
29102         * m4/onceonly.m4 (m4_quote): New macro.
29103         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
29104         Quote AC_FOREACH variable-expansions properly.
29105
29106 2003-03-13  Paul Eggert  <eggert@twinsun.com>
29107
29108         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
29109
29110 2003-03-09  Paul Eggert  <eggert@twinsun.com>
29111
29112         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
29113         Reported by Bruce Becker; see:
29114         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
29115
29116 2003-03-03  Paul Eggert  <eggert@twinsun.com>
29117             Bruno Haible  <bruno@clisp.org>
29118
29119         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
29120         Reported by John Hughes, see
29121         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
29122
29123 2003-02-20  Bruno Haible  <bruno@clisp.org>
29124
29125         * MODULES.html.sh (func_all_modules): Add poll.
29126
29127 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
29128
29129         * modules/poll: New file.
29130
29131 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
29132
29133         * lib/poll_.h: New file.
29134         * lib/poll.c: New file.
29135
29136 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
29137
29138         * m4/poll.m4: New file.
29139
29140 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
29141
29142         * modules/mathl: New file.
29143
29144 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
29145
29146         * lib/mathl.h: New file.
29147         * lib/acosl.c: New file.
29148         * lib/asinl.c: New file.
29149         * lib/atanl.c: New file.
29150         * lib/ceill.c: New file.
29151         * lib/cosl.c: New file.
29152         * lib/expl.c: New file.
29153         * lib/floorl.c: New file.
29154         * lib/frexpl.c: New file.
29155         * lib/ldexpl.c: New file.
29156         * lib/logl.c: New file.
29157         * lib/sincosl.c: New file.
29158         * lib/sinl.c: New file.
29159         * lib/sqrtl.c: New file.
29160         * lib/tanl.c: New file.
29161         * lib/trigl.c: New file.
29162         * lib/trigl.h: New file.
29163
29164 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
29165
29166         * m4/mathl.m4: New file.
29167
29168 2003-02-18  Bruno Haible  <bruno@clisp.org>
29169
29170         * MODULES.html.sh (func_all_modules): Add mathl.
29171
29172 2003-02-17  Bruno Haible  <bruno@clisp.org>
29173
29174         * modules/mkdtemp: New module.
29175         * MODULES.html.sh (func_all_modules): Add it.
29176
29177 2003-02-17  Bruno Haible  <bruno@clisp.org>
29178
29179         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
29180
29181 2003-02-17  Bruno Haible  <bruno@clisp.org>
29182
29183         * lib/mkdtemp.h: New file, from GNU gettext.
29184         * lib/mkdtemp.c: New file, from GNU gettext.
29185
29186 2003-02-02  Jim Meyering  <jim@meyering.net>
29187
29188         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
29189         e.g. glibc-2.2.93.
29190
29191 2003-01-31  Bruno Haible  <bruno@clisp.org>
29192
29193         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
29194         'rpl_rename'.
29195         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
29196         'rpl_strnlen'.
29197         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
29198         'rpl_strtod'.
29199         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
29200         'rpl_utime'.
29201
29202 2003-01-31  Bruno Haible  <bruno@clisp.org>
29203
29204         * lib/rename.c: #undef rename before defining rpl_rename.
29205         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
29206
29207 2003-01-30  Bruno Haible  <bruno@clisp.org>
29208
29209         * modules/vasnprintf, modules/vasprintf: New modules.
29210         * MODULES.html.sh (func_all_modules): Add them.
29211
29212 2003-01-30  Bruno Haible  <bruno@clisp.org>
29213
29214         * m4/signed.m4: New file, from GNU gettext.
29215         * m4/longdouble.m4: New file, from GNU gettext.
29216         * m4/wchar_t.m4: New file, from GNU gettext.
29217         * m4/wint_t.m4: New file, from GNU gettext.
29218         * m4/vasnprintf.m4: New file.
29219         * m4/vasprintf.m4: New file.
29220
29221 2003-01-30  Bruno Haible  <bruno@clisp.org>
29222
29223         * lib/printf-args.h: New file, from GNU gettext.
29224         * lib/printf-args.c: New file, from GNU gettext.
29225         * lib/printf-parse.h: New file, from GNU gettext.
29226         * lib/printf-parse.c: New file, from GNU gettext.
29227         * lib/vasnprintf.h: New file, from GNU gettext.
29228         * lib/vasnprintf.c: New file, from GNU gettext.
29229         * lib/asnprintf.c: New file, from GNU gettext.
29230         * lib/vasprintf.h: New file, from GNU gettext with modifications.
29231         * lib/vasprintf.c: New file, from GNU gettext.
29232         * lib/asprintf.c: New file, from GNU gettext.
29233
29234 2003-01-29  Bruno Haible  <bruno@clisp.org>
29235
29236         * modules/stpncpy: New module.
29237         * MODULES.html.sh (func_all_modules): Add it.
29238
29239 2003-01-29  Bruno Haible  <bruno@clisp.org>
29240
29241         * m4/stpncpy.m4: New file.
29242
29243 2003-01-29  Bruno Haible  <bruno@clisp.org>
29244
29245         * lib/stpncpy.h: New file, from GNU gettext with modifications.
29246         * lib/stpncpy.c: New file, from GNU gettext with modifications.
29247
29248 2003-01-28  Bruno Haible  <bruno@clisp.org>
29249
29250         * modules/c-ctype: New module.
29251         * MODULES.html.sh (func_all_modules): Add it.
29252
29253 2003-01-28  Bruno Haible  <bruno@clisp.org>
29254
29255         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
29256         Paul Eggert.
29257         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
29258         Paul Eggert.
29259
29260 2003-01-27  Bruno Haible  <bruno@clisp.org>
29261
29262         * modules/xsetenv: New module.
29263         * MODULES.html.sh (func_all_modules): Add it.
29264
29265 2003-01-27  Bruno Haible  <bruno@clisp.org>
29266
29267         * lib/xsetenv.h: New file, from GNU gettext.
29268         * lib/xsetenv.c: New file, from GNU gettext.
29269
29270 2003-01-23  Jim Meyering  <jim@meyering.net>
29271
29272         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
29273         from working on systems without dirfd (at least Irix and OSF1/Tru64).
29274
29275 2003-01-23  Bruno Haible  <bruno@clisp.org>
29276
29277         * modules/minmax: New module.
29278         * MODULES.html.sh (func_all_modules): Add it.
29279
29280 2003-01-23  Bruno Haible  <bruno@clisp.org>
29281
29282         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
29283         Eggert.
29284
29285 2003-01-22  Bruno Haible  <bruno@clisp.org>
29286
29287         * modules/exit: New module.
29288         * MODULES.html.sh (func_all_modules): Add it.
29289
29290 2003-01-22  Bruno Haible  <bruno@clisp.org>
29291
29292         * lib/exit.h: New file, from GNU gettext.
29293
29294 2003-01-19  Bruno Haible  <bruno@clisp.org>
29295
29296         * gnulib-tool: Recognize option --extract-maintainer.
29297         (func_get_maintainer): New function.
29298         * modules/*: Add Maintainer entry.
29299
29300 2003-01-16  Jim Meyering  <jim@meyering.net>
29301
29302         * m4/regex.m4: The `regex' struct is both input and output.
29303         Initialize it before each use.  Patch by Tim Waugh.
29304
29305 2003-01-16  Bruno Haible  <bruno@clisp.org>
29306
29307         * MODULES.html.sh: Add a table of contents. Add the module name as
29308         leftmost column. Add hyperlinks.
29309
29310 2003-01-15  Bruno Haible  <bruno@clisp.org>
29311
29312         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
29313
29314 2003-01-15  Bruno Haible  <bruno@clisp.org>
29315
29316         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
29317         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
29318         suffix.
29319
29320 2003-01-15  Bruno Haible  <bruno@clisp.org>
29321
29322         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
29323
29324 2003-01-15  Bruno Haible  <bruno@clisp.org>
29325
29326         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
29327         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
29328
29329 2003-01-14  Jim Meyering  <jim@meyering.net>
29330
29331         * lib/same.c (same_name): Tweak a comment.
29332
29333 2003-01-14  Bruno Haible  <bruno@clisp.org>
29334
29335         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
29336         when a string comparison is sufficient.
29337
29338 2003-01-14  Bruno Haible  <bruno@clisp.org>
29339
29340         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
29341         'unsigned int'.
29342
29343 2003-01-14  Bruno Haible  <bruno@clisp.org>
29344
29345         * lib/hash-pjw.c: Add comment about low quality of this function.
29346
29347 2003-01-13  Bruno Haible  <bruno@clisp.org>
29348
29349         * modules/stpcpy: Distribute lib/stpcpy.h.
29350         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
29351
29352 2003-01-13  Bruno Haible  <bruno@clisp.org>
29353
29354         * modules/*: Add a description.
29355         * modules/strpbrk: Fix Makefile.am snippet.
29356         * modules/strtoimax: Fix dependencies.
29357         * modules/strtoumax: Likewise.
29358
29359 2003-01-13  Bruno Haible  <bruno@clisp.org>
29360
29361         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
29362         * modules/alloca (Makefile.am): All object files depend on alloca.h.
29363         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
29364
29365 2003-01-13  Bruno Haible  <bruno@clisp.org>
29366
29367         * gnulib-tool (func_create_testdir): Store config/* files in the main
29368         directory.
29369         * config.rpath: Move to ...
29370         * config/config.rpath: ... here.
29371         * modules/gettext: Contains config/config.rpath, not config.rpath.
29372         * modules/iconv: Likewise.
29373
29374 2003-01-12  Paul Eggert  <eggert@twinsun.com>
29375
29376         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
29377         to avoid collisions with libcurses and libreadline.
29378
29379         * m4/getstr.m4: Remove.
29380         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
29381
29382 2003-01-12  Paul Eggert  <eggert@twinsun.com>
29383
29384         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
29385         to avoid collisions with libcurses and libreadline.
29386
29387         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
29388         * lib/getstr.h, getstr.c: Remove.
29389         * lib/getline.c: Include "getline.h", to check interface.
29390         Move body of old getstr.c here: this defines MIN_CHUNK and
29391         declares getdelim2, which is renamed from getstr.
29392         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
29393
29394         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
29395         All uses changed.
29396         * lib/linebuffer.h: Likewise.
29397         (readline): Remove backward-compatibility macro.
29398
29399 2003-01-12  Paul Eggert  <eggert@twinsun.com>
29400
29401         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
29402         to avoid collisions with libcurses and libreadline.
29403         * getstr: Remove.
29404         * MODULES.html.sh: Remove getstr.
29405         * modules/getline: Depend on unlocked-io, not getstr.
29406
29407 2003-01-12  Jim Meyering  <jim@meyering.net>
29408
29409         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
29410
29411 2003-01-10  Bruno Haible  <bruno@clisp.org>
29412
29413         * modules/alloca: Change Makefile.am requirements. Simplify Include
29414         requirements. Add lib/alloca_.h to file list.
29415
29416 2003-01-10  Bruno Haible  <bruno@clisp.org>
29417
29418         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
29419
29420 2003-01-10  Bruno Haible  <bruno@clisp.org>
29421
29422         * lib/alloca_.h: New file.
29423         * lib/getdate.y: Unconditionally include alloca.h.
29424         * lib/makepath.c: Likewise.
29425         * lib/setenv.c: Likewise.
29426         * lib/userspec.c: Likewise.
29427
29428 2003-01-09  Karl Berry  <karl@gnu.org>
29429
29430         * MODULES.html.sh: include `dirname $0` in PATH, to find
29431         gnulib-tool.
29432
29433 2003-01-09  Bruno Haible  <bruno@clisp.org>
29434
29435         * modules/stdbool: Change configure.ac, Makefile.am requirements.
29436         Simplify Include requirements. Add lib/stdbool.h.in to file list.
29437
29438 2003-01-09  Bruno Haible  <bruno@clisp.org>
29439
29440         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
29441
29442 2003-01-09  Bruno Haible  <bruno@clisp.org>
29443
29444         * lib/stdbool.h.in: New file.
29445
29446 2003-01-09  Bruno Haible  <bruno@clisp.org>
29447
29448         * gnulib-tool (func_all_modules): Ignore files ending in ~.
29449         * MODULES.html.sh: Likewise.
29450
29451 2003-01-08  Jim Meyering  <jim@meyering.net>
29452
29453         * lib/full-write.c: Undefine and define-away `const' after inclusion
29454         of errno.h, not before.  Suggestion from Bruno Haible.
29455
29456 2003-01-08  Bruno Haible  <bruno@clisp.org>
29457
29458         * modules/full-read: Depend on full-write.
29459
29460 2003-01-08  Bruno Haible  <bruno@clisp.org>
29461
29462         * lib/safe-read.c: Include specification header first, to ensure its
29463         selfcontainedness.
29464         * lib/full-write.c: Likewise.
29465
29466 2003-01-07  Jim Meyering  <jim@meyering.net>
29467
29468         * lib/full-write.c: Rework so that it may serve to define full_read,
29469         too.
29470         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
29471
29472 2003-01-07  Bruno Haible  <bruno@clisp.org>
29473
29474         * lib/strtoimax.c: Include <stdint.h> as an alternative to
29475         <inttypes.h>.
29476         * lib/xstrtol.h: Likewise.
29477         * lib/xstrtoimax.c: Likewise.
29478         * lib/xstrtoumax.c: Likewise.
29479         * lib/human.h: Likewise.
29480
29481         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
29482         on systems that have <inttypes.h> but not <stdint.h>.
29483
29484 2003-01-07  Bruno Haible  <bruno@clisp.org>
29485
29486         * MODULES.html.sh: Add copyright notice.
29487         (missed_files): Omit CVS directory entries.
29488         (func_module): Make it work with sed-3.02.
29489         * MODULES.txt: Remove file.
29490
29491 2003-01-06  Jim Meyering  <jim@meyering.net>
29492
29493         * lib/version-etc.c: Update year in translatable copyright string.
29494
29495 2003-01-03  Karl Berry  <karl@gnu.org>
29496
29497         * config/config.{guess,sub}: update from prep.
29498
29499 2003-01-02  Karl Berry  <karl@gnu.org>
29500
29501         * doc/COPYING.DOC: belatedly updated to 1.2.
29502
29503 2003-01-01  Karl Berry  <karl@gnu.org>
29504
29505         * gnulib-tool (func_verify_module): report module name $module in
29506         error message, not $1.
29507         * gnulib-tool (create-testdir): don't complain if destdir couldn't
29508         be created, only if it doesn't exist.
29509         * gnulib-tool (last_checkin_date): don't expand the $Date here.
29510
29511 2002-12-31  Paul Eggert  <eggert@twinsun.com>
29512
29513         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
29514
29515 2002-12-31  Paul Eggert  <eggert@twinsun.com>
29516
29517         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
29518         memcmp if strcoll doesn't work.
29519
29520 2002-12-31  Bruno Haible  <bruno@clisp.org>
29521
29522         * lib/utime.c (utime_null): No need to call ftruncate if the file was
29523         nonempty.
29524
29525 2002-12-31  Bruno Haible  <bruno@clisp.org>
29526
29527         * lib/memcoll.c (STRCOLL): New macro.
29528         (memcoll): Use it.
29529
29530 2002-12-31  Bruno Haible  <bruno@clisp.org>
29531
29532         * lib/localcharset.h: New file.
29533         * lib/localcharset.c: Include it.
29534         * lib/unicodeio.c: Likewise.
29535
29536 2002-12-31  Bruno Haible  <bruno@clisp.org>
29537
29538         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
29539         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
29540
29541 2002-12-31  Bruno Haible  <bruno@clisp.org>
29542
29543         * lib/getline.h: Include <stddef.h>, for size_t.
29544
29545         * lib/unicodeio.h: Include <stddef.h>, for size_t.
29546         * lib/unicodeio.c: Don't include <stddef.h>.
29547
29548 2002-12-31  Bruno Haible  <bruno@clisp.org>
29549
29550         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
29551         HAVE_TM_ZONE.
29552
29553 2002-12-24  Karl Berry  <karl@gnu.org>
29554
29555         * config/config.guess: update from prep.
29556
29557 2002-12-24  Bruno Haible  <bruno@clisp.org>
29558
29559         General infrasructure.
29560         * m4/README: Rewritten.
29561         * m4/onceonly.m4: New file.
29562         * m4/onceonly_2_57.m4: New file.
29563
29564         Module atexit.
29565         * m4/atexit.m4: New file.
29566
29567         Module strtod.
29568         * m4/strtod.m4: New file.
29569
29570         Module strtol.
29571         * m4/strtol.m4: New file.
29572
29573         Module strtoul.
29574         * m4/strtoul.m4: New file.
29575
29576         Module memchr.
29577         * m4/memchr.m4: New file.
29578
29579         Module memcmp.
29580         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
29581         (jm_FUNC_MEMCMP): Invoke it.
29582
29583         Module memcpy.
29584         * m4/memcpy.m4: New file.
29585
29586         Module memmove.
29587         * m4/memmove.m4: New file.
29588
29589         Module memset.
29590         * m4/memset.m4: New file.
29591
29592         Module strcspn.
29593         * m4/strcspn.m4: New file.
29594
29595         Module strpbrk.
29596         * m4/strpbrk.m4: New file.
29597
29598         Module strstr.
29599         * m4/strstr.m4: New file.
29600
29601         Module strerror.
29602         * m4/strerror.m4: New file.
29603
29604         Module mktime.
29605         * m4/mktime.m4: Renamed from jm-mktime.m4.
29606         (gl_PREREQ_MKTIME): New macro.
29607         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
29608
29609         Module malloc.
29610         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
29611         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
29612         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
29613
29614         Module realloc.
29615         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
29616         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
29617         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
29618
29619         Module strftime.
29620         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
29621         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
29622         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
29623         gl_TM_GMTOFF.
29624         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
29625
29626         Module xalloc.
29627         * m4/xalloc.m4: New file.
29628
29629         Module alloca.
29630         * m4/alloca.m4: New file.
29631
29632         Module putenv.
29633         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
29634         (jm_FUNC_PUTENV): Invoke it.
29635
29636         Module setenv.
29637         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
29638         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
29639         when invoked twice.
29640         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
29641         gt_FUNC_SETENV.
29642
29643         Module memrchr.
29644         * m4/memrchr.m4: New file.
29645
29646         Module stpcpy.
29647         * m4/stpcpy.m4: New file.
29648
29649         Module strcase.
29650         * m4/strcase.m4: New file.
29651
29652         Module strdup.
29653         * m4/strdup.m4: New file.
29654
29655         Module strnlen.
29656         * m4/strnlen.m4: New file.
29657
29658         Module strndup.
29659         * m4/strndup.m4: New file.
29660
29661         Module xstrtod.
29662         * m4/xstrtod.m4: New file.
29663
29664         Module xstrtol.
29665         * m4/xstrtol.m4: New file.
29666
29667         Module getdate.
29668         * m4/getdate.m4: New file.
29669
29670         Module unlocked-io.
29671         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
29672         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
29673         * m4/jm-glibc-io.m4n: Remove file.
29674
29675         Module long-options.
29676         * m4/long-options.m4: New file.
29677
29678         Module md5.
29679         * m4/md5.m4: New file.
29680
29681         Module sha.
29682         * m4/sha.m4: New file.
29683
29684         Module getstr.
29685         * m4/getstr.m4: New file.
29686
29687         Module getline.
29688         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
29689         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
29690         <sys/types.h>, for size_t. Use the function name gnu_getline, not
29691         simply getline. Infoke gl_PREREQ_GETLINE.
29692
29693         Module obstack.
29694         * m4/obstack.m4: New file.
29695
29696         Module hash.
29697         * m4/hash.m4: New file.
29698
29699         Module readtokens.
29700         * m4/readtokens.m4: New file.
29701
29702         Module strverscmp.
29703         * m4/strverscmp.m4: New file.
29704
29705         Module stdbool.
29706         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
29707         OSF/1.
29708
29709         Module strtoll.
29710         * m4/strtoll.m4: New file.
29711
29712         Module strtoull.
29713         * m4/strtoull.m4: New file.
29714
29715         Module strtoimax.
29716         * m4/strtoimax.m4: New file.
29717
29718         Module strtoumax.
29719         * m4/strtoumax.m4: New file.
29720
29721         Module xstrtoimax.
29722         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
29723         jm_AC_PREREQ_XSTRTOIMAX.
29724         Moved the strtol prerequisites to strtol.m4.
29725         Moved the strtoll prerequisites to strtoll.m4.
29726         Moved the strtoimax prerequisites to strtoimax.m4.
29727
29728         Module xstrtoumax.
29729         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
29730         jm_AC_PREREQ_XSTRTOUMAX.
29731         Moved the strtoul prerequisites to strtoul.m4.
29732         Moved the strtoull prerequisites to strtoull.m4.
29733         Moved the strtoumax prerequisites to strtoumax.m4.
29734
29735         Module chown.
29736         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
29737         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
29738
29739         Module dup2.
29740         * m4/dup2.m4: New file.
29741
29742         Module ftruncate.
29743         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
29744         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
29745
29746         Module getgroups.
29747         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
29748         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
29749
29750         Module gettimeofday.
29751         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
29752         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
29753         gl_PREREQ_GETTIMEOFDAY.
29754
29755         Module mkdir.
29756         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
29757         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
29758
29759         Module mkstemp.
29760         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
29761         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
29762         jm_AC_TYPE_UINTMAX_T.
29763         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
29764
29765         Module stat.
29766         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
29767         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
29768
29769         Module lstat.
29770         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
29771         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
29772
29773         Module timespec.
29774         * m4/timespec.m4 (gl_TIMESPEC): New macro.
29775         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
29776         * m4/st_mtim.m4: Indentation.
29777
29778         Module nanosleep.
29779         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
29780         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
29781         gl_PREREQ_NANOSLEEP.
29782
29783         Module regex.
29784         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
29785         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
29786         (gl_REGEX): New macro.
29787
29788         Module rename.
29789         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
29790         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
29791
29792         Module rmdir.
29793         * m4/rmdir.m4: New file.
29794
29795         Module utime.
29796         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
29797         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
29798         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
29799
29800         Module dirname.
29801         * m4/dirname.m4: New file.
29802
29803         Module getopt.
29804         * m4/getopt.m4: New file.
29805
29806         Module unistd-safer.
29807         * m4/unistd-safer.m4: New file.
29808
29809         Module fnmatch.
29810         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
29811         declaration.
29812         (gl_PREREQ_FNMATCH_EXTRA): New macro.
29813         (gl_FUNC_FNMATCH_POSIX): New macro.
29814         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
29815         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
29816         simply fnmatch.
29817
29818         Module exclude.
29819         * m4/exclude.m4: New file.
29820
29821         Module human.
29822         * m4/human.m4: New file.
29823
29824         Module acl.
29825         * m4/acl.m4: Nop.
29826
29827         Module backupfile.
29828         * m4/backupfile.m4: New file.
29829         * m4/d-ino.m4: Indentation.
29830
29831         Module fsusage.
29832         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
29833         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
29834         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
29835
29836         Module dirfd.
29837         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
29838         requirements.
29839
29840         Module euidaccess.
29841         * m4/euidaccess.m4: New file.
29842
29843         Module file-type.
29844         * m4/file-type.m4: New file.
29845
29846         Module fileblocks.
29847         * m4/fileblocks.m4: New file.
29848
29849         Module filemode.
29850         * m4/filemode.m4: New file.
29851
29852         Module isdir.
29853         * m4/isdir.m4: New file.
29854
29855         Module lchown.
29856         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
29857         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
29858
29859         Module makepath.
29860         * m4/makepath.m4: New file.
29861
29862         Module modechange.
29863         * m4/modechange.m4: New file.
29864
29865         Module mountlist.
29866         * m4/mountlist.m4: New file.
29867         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
29868         Indentation.
29869
29870         Module path-concat.
29871         * m4/path-concat.m4: New file.
29872
29873         Module pathmax.
29874         * m4/pathmax.m4: New file.
29875
29876         Module same.
29877         * m4/same.m4: New file.
29878
29879         Module save-cwd.
29880         * m4/save-cwd.m4: New file.
29881
29882         Module savedir.
29883         * m4/savedir.m4: New file.
29884
29885         Module xgetcwd.
29886         * m4/xgetcwd.m4: New file.
29887         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
29888
29889         Module xreadlink.
29890         * m4/xreadlink.m4: New file.
29891
29892         Module safe-read.
29893         * m4/safe-read.m4: New file.
29894
29895         Module safe-write.
29896         * m4/safe-write.m4: New file.
29897
29898         Module closeout.
29899         * m4/closeout.m4: New file.
29900
29901         Module stdio-safer.
29902         * m4/stdio-safer.m4: New file.
29903
29904         Module getpass.
29905         * m4/getpass.m4: New file.
29906
29907         Module getugroups.
29908         * m4/getugroups.m4: New file.
29909
29910         Module group-member.
29911         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
29912         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
29913
29914         Module idcache.
29915         * m4/idcache.m4: New file.
29916
29917         Module userspec.
29918         * m4/userspec.m4: New file.
29919
29920         Module gettime.
29921         * m4/clock_time.m4: New file.
29922         * m4/gettime.m4: New file.
29923
29924         Module settime.
29925         * m4/settime.m4: New file.
29926
29927         Module posixtm.
29928         * m4/posixtm.m4: New file.
29929
29930         Module gethostname.
29931         * m4/gethostname.m4: New file.
29932
29933         Module canon-host.
29934         * m4/canon-host.m4: New file.
29935
29936         Module gettext.
29937         * m4/codeset.m4: New file, from gettext-0.11.5.
29938         * m4/gettext.m4: New file, from gettext-0.11.5.
29939         * m4/glibc21.m4: New file, from gettext-0.11.5.
29940         * m4/iconv.m4: New file, from gettext-0.11.5.
29941         * m4/intdiv0.m4: New file, from gettext-0.11.5.
29942         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
29943         * m4/inttypes.m4: New file, from gettext-0.11.5.
29944         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
29945         * m4/isc-posix.m4: New file, from gettext-0.11.5.
29946         * m4/lcmessage.m4: New file, from gettext-0.11.5.
29947         * m4/lib-ld.m4: New file, from gettext-0.11.5.
29948         * m4/lib-link.m4: New file, from gettext-0.11.5.
29949         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
29950         * m4/progtest.m4: New file, from gettext-0.11.5.
29951         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
29952         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
29953         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
29954
29955         Module localcharset.
29956         * m4/localcharset.m4: New file.
29957
29958         Module hard-locale.
29959         * m4/hard-locale.m4: New file.
29960
29961         Module mbswidth.
29962         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
29963         onceonly macros.
29964         * m4/mbrtowc.m4: Add comment.
29965
29966         Module memcasecmp.
29967         * m4/memcasecmp.m4: New file.
29968
29969         Module memcoll.
29970         * m4/memcoll.m4: New file.
29971
29972         Module unicodeio.
29973         * m4/unicodeio.m4: New file.
29974
29975         Module rpmatch.
29976         * m4/rpmatch.m4: New file.
29977
29978         Module yesno.
29979         * m4/yesno.m4: New file.
29980
29981         Module exitfail.
29982         * m4/exitfail.m4: New file.
29983
29984         Module c-stack.
29985         * m4/c-stack.m4 (gl_C_STACK): New macro.
29986         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
29987
29988         Module error.
29989         * m4/error.m4 (gl_ERROR): New macro.
29990         (jm_PREREQ_ERROR): Use onceonly macros.
29991
29992         Module fatal.
29993         * m4/fatal.m4: New file.
29994
29995         Module getloadavg.
29996         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
29997         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
29998
29999         Module getpagesize.
30000         * m4/getpagesize.m4: New file.
30001
30002         Module getusershell.
30003         * m4/getusershell.m4: New file.
30004
30005         Module physmem.
30006         * m4/physmem.m4: New file.
30007
30008         Module posixver.
30009         * m4/posixver.m4: New file.
30010
30011         Module quotearg.
30012         * m4/quotearg.m4: New file.
30013
30014         Module quote.
30015         * m4/quote.m4: New file.
30016
30017         Module readutmp.
30018         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
30019
30020         Module sig2str.
30021         * m4/sig2str.m4: New file.
30022
30023         Other.
30024         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
30025         ulonglong.m4.
30026         * m4/intmax_t.m4: New file.
30027         * m4/d-type.m4: Indentation.
30028         * m4/jm-macros.m4: Update.
30029         * m4/prereq.m4 (jm_PREREQ): Update.
30030         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
30031         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
30032         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
30033         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
30034         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
30035         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
30036         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
30037         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
30038         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
30039         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
30040         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
30041         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
30042         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
30043         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
30044         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
30045         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
30046         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
30047         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
30048         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
30049
30050 2002-12-24  Bruno Haible  <bruno@clisp.org>
30051
30052         * MODULES.txt: Update according to m4/ changes.
30053
30054         Module gettext.
30055         * config.rpath: New file, from gettext-0.11.5.
30056
30057         * modules/*: New module descriptions.
30058         * gnulib-tool: New file.
30059         * MODULES.html.sh: New file.
30060
30061 2002-12-21  Karl Berry  <karl@gnu.org>
30062
30063         * doc/fdl.texi: update to version 1.2.
30064
30065 2002-12-19  Karl Berry  <karl@gnu.org>
30066
30067         * config/config.guess: update from prep.
30068
30069 2002-12-18  Bruno Haible  <bruno@clisp.org>
30070
30071         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
30072         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
30073
30074 2002-12-17  Bruno Haible  <bruno@clisp.org>
30075
30076         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
30077         stdlib.h, string.h.
30078
30079 2002-12-17  Bruno Haible  <bruno@clisp.org>
30080
30081         * lib/canon-host.c (strdup): Remove unused declaration.
30082
30083         * lib/fsusage.c: Include full_read.h.
30084         (get_fs_usage): Use full_read instead of safe_read.
30085
30086         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
30087
30088 2002-12-12  Karl Berry  <karl@gnu.org>
30089
30090         * config/config.guess: update from prep.
30091
30092 2002-12-11  Bruno Haible  <bruno@clisp.org>
30093
30094         * m4/setenv.m4: New file, from gettext-0.11.5.
30095
30096 2002-12-11  Bruno Haible  <bruno@clisp.org>
30097
30098         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
30099         not unsetenv().
30100         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
30101         modifications:
30102
30103         2002-12-11  Bruno Haible  <bruno@clisp.org>
30104
30105                 * setenv.c (alloca): Fall back to malloc.
30106                 (freea): New macro.
30107                 (setenv): Use freea() to free memory allocated with alloca().
30108
30109         2002-11-13  Bruno Haible  <bruno@clisp.org>
30110
30111                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
30112                 function declarations.
30113                 * unsetenv.c (unsetenv): Likewise.
30114
30115         2002-03-04  Bruno Haible  <bruno@clisp.org>
30116
30117                 Portability to AIX 4.3.3.
30118                 * unsetenv.c: New file, extracted from setenv.c.
30119                 * setenv.c: Move the unsetenv() function to unsetenv.c.
30120
30121         2001-12-20  Bruno Haible  <bruno@clisp.org>
30122
30123                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
30124                 use malloc instead. For SunOS 4.
30125
30126         2001-12-11  Bruno Haible  <bruno@clisp.org>
30127
30128                 * setenv.c: Declare alloca.
30129                 (compar_fn_t): New typedef.
30130                 (KNOWN_VALUE, STORE_VALUE): Use it.
30131
30132         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
30133         setenv.h.
30134
30135 2002-12-10  Paul Eggert  <eggert@twinsun.com>
30136
30137         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
30138         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
30139         Choose values that are less likely to collide with system fnmatch
30140         options.
30141         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
30142         defined (e.g., a pure POSIX system).
30143         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
30144         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
30145
30146 2002-12-06  Paul Eggert  <eggert@twinsun.com>
30147
30148         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
30149         a pain in practice to deal with generated m4 files.  This change
30150         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
30151
30152         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
30153         and jm-glibc-io.m4, as they are no longer a special case.
30154         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
30155         kludge and the auto-generation stuff.  Check only whether the
30156         functions are declared, not whether they exist, since older hosts
30157         that don't declare the functions can't use the optimization anyway.
30158
30159 2002-12-06  Jim Meyering  <jim@meyering.net>
30160
30161         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
30162
30163         Merge in changes from libc's misc/error.c, in preparation
30164         for the merge of gnulib's changes back into libc.
30165
30166         * lib/error.c (_): Define only if not already defined.
30167         Move definition to follow all #include directives.
30168         Include unlocked-io.h only if !_LIBC.
30169         [_LIBC]: Include <libio/libioP.h>.
30170         [USE_IN_LIBIO]: Include <libio/iolibio.h>
30171         (fflush): Tweak definition to use INTUSE.
30172         (putc): Define.
30173
30174 2002-12-05  Paul Eggert  <eggert@twinsun.com>
30175
30176         * lib/alloca.c [defined emacs]: Include "lisp.h".
30177         (xalloc_die) [defined emacs]: New macro.
30178         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
30179         [! defined emacs]: Include <xalloc.h>.
30180         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
30181         (pointer): Typedef to POINTER_TYPE *.
30182         (malloc): Remove decl; we now always use xmalloc.
30183         (alloca): Use old-style definition, since Emacs needs this.
30184         Check for arithmetic overflow when computing combined size.
30185
30186 2002-12-04  Paul Eggert  <eggert@twinsun.com>
30187
30188         Do not generate unlocked-io.h automatically, since it's easier to
30189         maintain it by hand.
30190
30191         * lib/unlocked-io.h: New file, from GNU diffutils,
30192         but with proper copyright notice and attribution.
30193         * lib/gen-uio: Remove.
30194         * lib/Makefile.am: Add copyright notice.
30195         (libfetish_a_SOURCES): Add unlocked-io.h.
30196         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
30197         (DISTCLEANFILES, io_functions): Remove macros.
30198         (EXTRA_DIST): Remove gen_uio.
30199         (unlocked-io.h): Remove rule.
30200
30201 2002-12-04  Jim Meyering  <jim@meyering.net>
30202
30203         Reflect the fact that stat.c and lstat.c are no longer generated.
30204         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
30205         (DISTCLEANFILES): Likewise.
30206         (EXTRA_DIST): Likewise.
30207         (all_local): Don't depend on stat.c or lstat.c.
30208         (stat.c, lstat.c): Remove rules.
30209         (EXTRA_DIST): Remove xstat.in.
30210
30211         * lib/xstat.in: Remove file.  Contents moved into stat.c.
30212         * lib/stat.c: New file.  Contents mostly from xstat.in.
30213         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
30214         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
30215
30216         * lib/safe-read.c: Rework so that it may serve to define safe_write,
30217         too.
30218         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
30219
30220 2002-12-03  Jim Meyering  <jim@meyering.net>
30221
30222         * lib/safe-read.c, safe-write.c: Change variable names and comments,
30223         but not semantics, to minimize the differences between these two files.
30224         (safe_read): Change comment to mention SAFE_READ_ERROR.
30225
30226         * lib/safe-read.c (IS_EINTR): Define.
30227         (safe_read): Use IS_EINTR in place of in-function cpp directives.
30228
30229 2002-12-02  Jim Meyering  <jim@meyering.net>
30230
30231         * lib/safe-read.c (EINTR): Define.
30232         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
30233         (INT_MAX): Provide fallback.
30234         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
30235
30236         * lib/safe-read.h (SAFE_READ_ERROR): Define.
30237
30238 2002-12-02  Bruno Haible  <bruno@clisp.org>
30239
30240         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
30241         Define, taken from safe-read.c.
30242         (INT_MAX): Provide fallback.
30243         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
30244         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
30245
30246         * lib/safe-read.c (EINTR): Remove definition.
30247         (safe_read): Don't use EINTR if it is absent.
30248
30249 2002-12-01  Jim Meyering  <jim@meyering.net>
30250
30251         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
30252         zero.
30253         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
30254
30255 2002-11-27  Paul Eggert  <eggert@twinsun.com>
30256
30257         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
30258         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
30259         with `if (! (value < limit)) abort ();', for readability.
30260
30261 2002-11-26  Karl Berry  <karl@gnu.org>
30262
30263         * lib/strdup.c: copy from libc again, with jim's ok.
30264         * lib/.cppi-disable: re-add strdup.c
30265
30266 2002-11-25  Karl Berry  <karl@gnu.org>
30267
30268         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
30269         instead of "strtol.c".
30270
30271 2002-11-25  Karl Berry  <karl@gnu.org>
30272
30273         * config/install-sh: update from automake for variable quoting, $0 in
30274         error msgs, etc.
30275
30276         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
30277         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
30278         entry.
30279
30280 2002-11-25  Jim Meyering  <jim@meyering.net>
30281
30282         * lib/mktime.c: Sync from libc, now that it has the latest fix.
30283
30284 2002-11-24  Karl Berry  <karl@gnu.org>
30285
30286         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
30287         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
30288
30289 2002-11-24  Jim Meyering  <jim@meyering.net>
30290
30291         Update from coreutils:
30292
30293         * lib/mktime.c: Merge in changes from libc.
30294
30295         Avoid a link-time failure on some Linux systems.
30296         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
30297         (otherwise).
30298         (__mon_yday): Declare with the STATIC attribute.
30299         (__mktime_internal): Likewise.
30300         Based on a report from Greg Schafer.
30301
30302 2002-11-23  Jim Meyering  <jim@meyering.net>
30303
30304         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
30305         Use `unsigned', not `int', as type of index.
30306
30307         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
30308
30309         * lib/fsusage.c: Remove unneeded parentheses around operands of
30310         `defined'.
30311
30312 2002-11-22  Paul Eggert  <eggert@twinsun.com>
30313
30314         * lib/quotearg.h: Allow multiple inclusion by surrounding with
30315         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
30316         so that we can be included first.
30317         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
30318         * lib/quotearg.c: Include quotearg.h immediately after config.h.
30319         No need to include stddef.h or sys/types.h any more.
30320         Surround local include files with "", not "<>".
30321         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
30322         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
30323         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
30324         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
30325         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
30326         (ISPRINT): Remove; no longer needed now that we assume C89.
30327
30328         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
30329         Preserve errno.
30330
30331         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
30332         quotearg_char): Use SIZE_MAX rather than
30333         (size_t) -1 when we are talking about "infinity".
30334
30335         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
30336
30337 2002-11-22  Paul Eggert  <eggert@twinsun.com>
30338
30339         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
30340         hint that one should use `if (! x) abort ();' rather than `assert
30341         (x);', and anyway it's one less thing to worry about configuring.
30342         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
30343         hash_rehash, hash_insert): Use abort rather than assert.
30344
30345 2002-11-22  Bruno Haible  <bruno@clisp.org>
30346
30347         * lib/safe-read.h: Assume C89. Add comments.
30348         (safe_read): Change return type to size_t.
30349         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
30350         byte counts > SSIZE_MAX correctly.
30351         * lib/safe-write.h: New file.
30352         * lib/safe-write.c: New file.
30353         * lib/full-read.h: New file.
30354         * lib/full-read.c: New file.
30355         * lib/full-write.h: Assume C89. Add comments.
30356         * lib/full-write.c: Include safe-write.h.
30357         (full_write): Rewritten to use safe_write.
30358         Suggested by Jim Meyering and Paul Eggert.
30359
30360 2002-11-21  Jim Meyering  <jim@meyering.net>
30361
30362         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
30363
30364         Merge in changes from the coreutils.
30365
30366         2002-09-25  Paul Eggert  <eggert@twinsun.com>
30367         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
30368         <stdint.h>.
30369         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
30370         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
30371         int.  Work more efficiently if X is the same width as uintmax_t.
30372         Do not compare X to -1, to avoid bogus compiler warning.
30373         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
30374         Don't assume that f_frsize and f_bsize are the same type.
30375
30376         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
30377         warning on FreeBSD.
30378
30379         * lib/makepath.c (make_path): Restore umask *before* creating the final
30380         component.
30381         (make_path): Minor reformatting.
30382
30383         * lib/xmalloc.c: Adjust to work with new autoconf macros,
30384         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
30385         HAVE_MALLOC/HAVE_REALLOC.
30386
30387         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
30388         dummy ones.  At least on GNU/Linux systems, `auto' means something
30389         else.
30390         From Michael Stone.
30391
30392 2002-11-21  Bruno Haible  <bruno@clisp.org>
30393
30394         Remove case insensitive option matching.
30395         * lib/argmatch.h (argcasematch): Remove declaration.
30396         (ARGCASEMATCH): Remove macro.
30397         (__xargmatch_internal): Remove case_sensitive argument.
30398         (XARGMATCH): Update.
30399         (XARGCASEMATCH): Remove macro.
30400         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
30401         case_sensitive argument.
30402         (argcasematch): Remove function.
30403         (__xargmatch_internal): Remove case_sensitive argument.
30404         (main): Use XARGMATCH instead of XARGCASEMATCH.
30405
30406         * lib/xmalloc.c: Change compile-time error message. Add comment about
30407         required autoconf version.
30408
30409 2002-11-20  Paul Eggert  <eggert@twinsun.com>
30410
30411         Merge argmatch cleanups from Bison.  Assume C89.
30412
30413         * lib/argmatch.c: Include config.h here, not in argmatch.h.
30414         Include stdlib.h, for EXIT_FAILURE.
30415         Always include <string.h>, since we assume C89.
30416         (EXIT_FAILURE): Remove pre-C89 bug workaround.
30417         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
30418         Include <stddef.h> instead, since it's all we need for size_t.
30419         (PARAMS): Remove.  All uses removed.
30420         (ARRAY_CARDINALITY): Do not bother to #undef.
30421         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
30422         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
30423         Remove unnecessary parentheses.
30424         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
30425         Insert necessary parentheses.
30426         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
30427         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
30428
30429 2002-11-19  Bruno Haible  <bruno@clisp.org>
30430
30431         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
30432         * lib/mbswidth.h: Include <stddef.h>, for size_t.
30433
30434         * lib/mbswidth.h (PARAMS): Remove macro.
30435         (mbswidth, mbsnwidth): Use ANSI C function declarations.
30436         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
30437
30438         * lib/gcd.h (PARAMS): Remove macro.
30439         (gcd): Use ANSI C function declarations.
30440         * lib/gcd.c (gcd): Likewise.
30441
30442 2002-11-15  Bruno Haible  <bruno@clisp.org>
30443
30444         * lib/strcspn.c: Include <stddef.h>.
30445         (strcspn): Use ANSI C function declaration. Change return type to
30446         size_t. Use NULL.
30447         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
30448         (strpbrk): Use NULL.
30449         * lib/strpbrk.h (PARAMS): Remove macro.
30450         (strpbrk): Use ANSI C function declaration.
30451         * lib/strstr.c: Don't include <sys/types.h>.
30452         * lib/strstr.h (PARAMS): Remove macro.
30453         (strstr): Use ANSI C function declarations.
30454
30455 2002-11-14  Karl Berry  <karl@gnu.org>
30456
30457         * config/mkinstalldirs: `do' on separate line, instead of
30458         `for var; do'.
30459
30460 2002-11-06  Bruno Haible  <bruno@clisp.org>
30461
30462         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
30463         * lib/gcd.c (gcd): Likewise.
30464
30465 2002-11-05  Bruno Haible  <bruno@clisp.org>
30466
30467         * lib/gcd.h: New file, from gettext-0.11.5.
30468         * lib/gcd.c: New file, from gettext-0.11.5.
30469
30470 2002-11-05  Bruno Haible  <bruno@clisp.org>
30471
30472         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
30473         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
30474         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
30475         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
30476
30477         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
30478         <libintl.h>.
30479         * lib/makepath.c: Include gettext.h instead of <locale.h> and
30480         <libintl.h>.
30481
30482         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
30483         * lib/human.c: Include gettext.h instead of <libintl.h>.
30484         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
30485         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
30486         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
30487         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
30488         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
30489         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
30490         (textdomain): Remove definition.
30491         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
30492
30493         * lib/long-options.c: Remove include of <libintl.h> and definition of
30494         _.
30495         * lib/same.c: Remove include of <libintl.h> and definition of _.
30496
30497 2002-11-04  Owen Taylor  <otaylor@redhat.com>
30498
30499         * lib/config.charset: A few additions for Solaris.
30500
30501 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
30502
30503         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
30504         * lib/localcharset.c (locale_charset): Declare as extern "C".
30505
30506 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
30507
30508         * lib/config.charset: msdos in uk_UA uses CP1125.
30509
30510 2002-11-04  Bruno Haible  <bruno@clisp.org>
30511
30512         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
30513         * lib/strcase.h: New file, from GNU gettext-0.11.5.
30514         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
30515         * lib/strstr.h: New file, from GNU gettext-0.11.5.
30516         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
30517
30518 2002-11-04  Bruno Haible  <bruno@clisp.org>
30519
30520         * lib/localcharset.c (locale_charset): Don't return an empty string.
30521
30522 2002-11-04  Bruno Haible  <bruno@clisp.org>
30523
30524         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
30525         aliases.
30526
30527 2002-11-04  Bruno Haible  <bruno@clisp.org>
30528
30529         * lib/config.charset: Update for newest glibc. Add canonical names
30530         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
30531
30532 2002-11-04  Bruno Haible  <bruno@clisp.org>
30533
30534         * lib/config.charset: Add support for NetBSD.
30535
30536 2002-11-04  Bruno Haible  <bruno@clisp.org>
30537
30538         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
30539
30540 2002-11-01  Bruno Haible  <bruno@clisp.org>
30541
30542         * configure.in: Add AC_CONFIG_AUX_DIR call.
30543         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
30544         test/Makefile.
30545         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
30546
30547 2002-09-28  Karl Berry  <karl@gnu.org>
30548
30549         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
30550         installed automake until the next release, since changes have been
30551         made.
30552
30553 2002-09-25  Karl Berry  <karl@gnu.org>
30554
30555         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
30556         * lib/getopt*: copy from libc/posix.
30557         * lib/gettext.h: copy from gettext.
30558         * lib/.cppi-disable: add strdup.c, gettext.h.
30559
30560 2002-09-25  Karl Berry  <karl@gnu.org>
30561
30562         * config/srclist.txt: enable gettext.h check.
30563         * config/config.{guess,sub}: update from prep.
30564         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
30565                 from automake 1.6.3.
30566         See srclist*.
30567
30568 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
30569
30570         * regex.c (PATFETCH): Remove the translating fetch.
30571         (PATFETCH_RAW): Rename to PATFETCH.
30572         (set_image_of_range): New fun.
30573         (SET_RANGE_TABLE_WORK_AREA): Use it.
30574         (regex_compile): Don't translate the pattern chars so eagerly.
30575         Only do it when inserting an `exactn' bytecode or when handling
30576         a char-range.
30577         (mutually_exclusive_p): Avoid empty statement.
30578
30579 2002-07-06  Jim Meyering  <meyering@lucent.com>
30580
30581         * m4/README: Don't mention Makefile.am.in.
30582         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
30583
30584 2002-07-01  Jim Meyering  <meyering@lucent.com>
30585
30586         * lib/c-stack.c: Include sys/time.h.
30587         From Volker Borchert.
30588
30589 2002-06-26  Paul Eggert  <eggert@twinsun.com>
30590
30591         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
30592
30593 2002-06-26  Paul Eggert  <eggert@twinsun.com>
30594
30595         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
30596         New macro.  Use it uniformly instead of
30597         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
30598         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
30599         reported by Vin Shelton.
30600
30601 2002-06-22  Paul Eggert  <eggert@twinsun.com>
30602
30603         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
30604         Do not assume SA_SIGINFO behavior.
30605         Bug reported by Jim Meyering on NetBSD 1.5.2.
30606
30607 2002-06-22  Jim Meyering  <meyering@lucent.com>
30608
30609         * m4/c-stack.m4: New file, from diffutils-2.8.2.
30610         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
30611
30612         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
30613         now that configure.ac uses AC_GNU_SOURCE.
30614         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
30615         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
30616
30617         Update to latest tools.  Suggestions from Paul Eggert.
30618         * m4/stdbool.m4: New file, from diffutils-2.8.2.
30619         * m4/gnu-source.m4: Update from diffutils-2.8.2.
30620         * m4/fnmatch.m4: Likewise.
30621         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
30622         to AC_HEADER_STDBOOL
30623
30624 2002-06-22  Jim Meyering  <meyering@lucent.com>
30625
30626         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
30627         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
30628
30629 2002-06-22  Jim Meyering  <meyering@lucent.com>
30630
30631         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
30632
30633         * lib/exitfail.c, exitfail.h: Likewise.
30634         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
30635
30636         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
30637         of fnmatch.h.
30638         (EXTRA_DIST): Add fnmatch_loop.c.
30639         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
30640
30641         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
30642         * lib/fnmatch.c: Update from diffutils-2.8.2.
30643         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
30644         * lib/fnmatch.h: Remove file.
30645
30646 2002-06-21  Jim Meyering  <meyering@lucent.com>
30647
30648         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
30649         * m4/mbrtowc.m4: Likewise.
30650
30651         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
30652         * m4/mbswidth.m4: Reflect name change:
30653         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
30654         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
30655
30656         * m4/lib-link.m4: Update from gettext-0.11.2.
30657         * m4/gettext.m4: Likewise.
30658
30659         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
30660         From Alfred M. Szmidt.
30661
30662 2002-06-18  Paul Eggert  <eggert@twinsun.com>
30663
30664         * lib/file-type.h: Report an error if neither S_ISREG nor
30665         S_IFREG is defined, instead of using a test specific to glibc
30666         2.2.  This should be safe, since POSIX requires S_ISREG and
30667         Unix Version 7 had S_IFREG.  We don't need to check for
30668         <sys/types.h> since we don't use any symbols that it defines.
30669
30670 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
30671
30672         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
30673         $@-t, so that each temporary file name is unique and valid in the first
30674         8 characters, for operation under DOS.
30675
30676 2002-06-15  Paul Eggert  <eggert@twinsun.com>
30677
30678         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
30679
30680 2002-06-15  Jim Meyering  <meyering@lucent.com>
30681
30682         Work even with DJGPP 2.03, which lacks support for symlinks.
30683         From Richard Dawe.
30684         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
30685         is defined.
30686         * lib/lchown.c (S_ISLNK): Likewise.
30687
30688 2002-06-15  Jim Meyering  <meyering@lucent.com>
30689
30690         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
30691         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
30692         have been included before this file.
30693
30694 2002-06-14  Jim Meyering  <meyering@lucent.com>
30695
30696         * lib/file-type.h: Use the version from diffutils-2.8.2.
30697         * lib/file-type.c: Likewise.
30698
30699 2002-06-07  Jim Meyering  <meyering@lucent.com>
30700
30701         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
30702         They're needed at least for NetBSD 1.5.2.
30703         ($statxfs_includes): Include those same headers.
30704         ($statxfs_includes): Include sys/vfs.h if available.
30705         ($statxfs_includes): Likewise for sys/statvfs.h.
30706         Check for the following members in both structs statfs and statvfs:
30707         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
30708
30709 2002-06-01  Jim Meyering  <meyering@lucent.com>
30710
30711         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
30712         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
30713
30714 2002-05-28  Jim Meyering  <meyering@lucent.com>
30715
30716         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
30717         Reported by Volker Borchert.
30718
30719 2002-05-27  Jim Meyering  <meyering@lucent.com>
30720
30721         Fix a problem seen only on nonconforming systems whereby ls.c's
30722         use of localtime, and then of gettimeofday would cause trouble:
30723         the localtime call used to initialize rpl_gettimeofday's save
30724         mechanism would clobber ls's current local time information so
30725         that in any long listing the first file would always be listed
30726         with date 1970-01-01.  Analysis by Volker Borchert.
30727
30728         * lib/gettimeofday.c (localtime): Undefine.
30729         (rpl_localtime): New function.
30730
30731 2002-05-27  Jim Meyering  <meyering@lucent.com>
30732
30733         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
30734         localtime.
30735
30736         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
30737         use the replacement function; it wouldn't resolve at link time.
30738         Reported by Volker Borchert.
30739
30740 2002-05-22  Jim Meyering  <meyering@lucent.com>
30741
30742         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
30743         file-type.h.
30744         * lib/file-type.h: New file.
30745         * lib/file-type.c (file_type): New file/function.  Extracted from
30746         diffutils.
30747
30748 2002-04-30  Jim Meyering  <meyering@lucent.com>
30749
30750         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
30751
30752 2002-04-29  Paul Eggert  <eggert@twinsun.com>
30753
30754         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
30755
30756 2002-04-29  Paul Eggert  <eggert@twinsun.com>
30757
30758         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
30759         Do not check for alloca.h (no longer used) or stdbool.h (was never
30760         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
30761
30762 2002-04-29  Paul Eggert  <eggert@twinsun.com>
30763
30764         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
30765
30766 2002-04-29  Jim Meyering  <meyering@lucent.com>
30767
30768         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
30769         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
30770         Use AC_FUNC_STRNLEN here instead.
30771
30772         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
30773         With autoconf-2.53a, it's part of AC_PROG_CC.
30774
30775 2002-04-28  Paul Eggert  <eggert@twinsun.com>
30776
30777         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
30778         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
30779
30780 2002-04-28  Paul Eggert  <eggert@twinsun.com>
30781
30782         * lib/sig2str.h, lib/sig2str.c: New files.
30783         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
30784
30785 2002-04-28  Paul Eggert  <eggert@twinsun.com>
30786
30787         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
30788         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
30789         of 127, since 64 is the largest conceivable number for ancient
30790         nonstandard hosts.
30791         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
30792
30793 2002-04-28  Jim Meyering  <meyering@lucent.com>
30794
30795         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
30796
30797 2002-04-24  Jim Meyering  <meyering@lucent.com>
30798
30799         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
30800         (jm_PREREQ): Use it.
30801
30802         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
30803         mach/mach.h fcntl.h.
30804         Check for this function: setlocale.
30805
30806 2002-04-24  Jim Meyering  <meyering@lucent.com>
30807
30808         * lib/gettext.h: New file, from Gettext.
30809         * lib/Makefile.am (INCLUDES): Remove -I../intl.
30810         (libfetish_a_SOURCES): Add gettext.h.
30811
30812 2002-04-16  Jim Meyering  <meyering@lucent.com>
30813
30814         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
30815         ut_pid, ut_id, ut_exit.
30816
30817 2002-04-16  Jim Meyering  <meyering@lucent.com>
30818
30819         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
30820         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
30821         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
30822
30823 2002-04-12  Jim Meyering  <meyering@lucent.com>
30824
30825         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
30826         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
30827         existence of the getmntinfo function.  Needed for Darwin 5.3.
30828
30829         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
30830         This is necessary at least on Darwin 5.3.
30831
30832         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
30833         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
30834         strnlen.o in the library, and that makes some versions of ranlib
30835         object.
30836
30837 2002-04-12  Jim Meyering  <meyering@lucent.com>
30838
30839         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
30840
30841 2002-04-09  Jim Meyering  <meyering@lucent.com>
30842
30843         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
30844         to be more precise.  Rather than saying we're checking whether the
30845         function `works', say what we're testing.
30846         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
30847         Reported by Bruno Haible.
30848
30849 2002-03-10  Jim Meyering  <meyering@lucent.com>
30850
30851         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
30852         Suggestion from Santiago Vila.
30853
30854 2002-03-08  Jim Meyering  <meyering@lucent.com>
30855
30856         * lib/rename.c: Mention that this wrapper is needed also on
30857         mips-dec-ultrix4.4 systems.
30858
30859 2002-03-02  Jim Meyering  <meyering@lucent.com>
30860
30861         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
30862         not HAVE_CLOCK_SETTIME.
30863
30864 2002-02-27  Paul Eggert  <eggert@twinsun.com>
30865
30866         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
30867         Check for clock_settime.
30868
30869 2002-02-27  Paul Eggert  <eggert@twinsun.com>
30870
30871         * lib/nanosleep.h: Rename to....
30872         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
30873
30874         * lib/gettime.c: New file.
30875         * lib/settime.c: New file.
30876         * lib/stime.c: Remove.
30877
30878         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
30879         timespec.h.  Remove nanosleep.h.
30880
30881 2002-02-25  Paul Eggert  <eggert@twinsun.com>
30882
30883         * m4/acl.m4: New file.
30884         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
30885         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
30886
30887 2002-02-25  Paul Eggert  <eggert@twinsun.com>
30888
30889         * lib/acl.c, lib/acl.h: New files.
30890         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
30891
30892 2002-02-24  Jim Meyering  <meyering@lucent.com>
30893
30894         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
30895         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
30896         cause trouble.  Reported by Nelson Beebe.
30897
30898 2002-02-23  Paul Eggert  <eggert@twinsun.com>
30899
30900         * lib/path-concat.c (xpath_concat): Reorder code to pacify
30901         compilers that don't know that xalloc_die never returns.
30902
30903 2002-02-20  Jim Meyering  <meyering@lucent.com>
30904
30905         * lib/getdate.c: Regenerate using bison-1.33.
30906
30907 2002-02-17  Jim Meyering  <meyering@lucent.com>
30908
30909         * config/config.guess (main): Don't use `head -1'; it's no longer
30910         portable. Use `sed 1q' instead.
30911
30912 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
30913
30914         * m4/codeset.m4: Upgrade to gettext-0.11.
30915         * m4/gettext.m4: Upgrade to gettext-0.11.
30916         * m4/glibc21.m4: Upgrade to gettext-0.11.
30917         * m4/iconv.m4: Upgrade to gettext-0.11.
30918         * m4/isc-posix.m4: Upgrade to gettext-0.11.
30919         * m4/lcmessage.m4: Upgrade to gettext-0.11.
30920         * m4/lib-ld.m4: New file, from gettext-0.11.
30921         * m4/lib-link.m4: New file, from gettext-0.11.
30922         * m4/lib-prefix.m4: New file, from gettext-0.11.
30923         * m4/progtest.m4: Upgrade to gettext-0.11.
30924
30925 2002-02-15  Paul Eggert  <eggert@twinsun.com>
30926
30927         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
30928         (jm_PREREQ): Use it.
30929
30930 2002-02-15  Paul Eggert  <eggert@twinsun.com>
30931
30932         * lib/posixver.c, lib/posixver.h: New files.
30933         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
30934
30935 2002-02-02  Paul Eggert  <eggert@twinsun.com>
30936             Bruno Haible  <bruno@clisp.org>
30937
30938         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
30939         (fwrite_success_callback): New declaration.
30940         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
30941         print_unicode_char. Call failure callback instead of error.
30942         (fwrite_success_callback): New function.
30943         (exit_failure_callback): New function.
30944         (fallback_failure_callback): New function.
30945         (print_unicode_char): Call unicode_to_mb.
30946
30947 2002-01-26  Jim Meyering  <meyering@lucent.com>
30948
30949         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
30950         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
30951
30952 2002-01-26  Jim Meyering  <meyering@lucent.com>
30953
30954         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
30955
30956 2002-01-22  Paul Eggert  <eggert@twinsun.com>
30957
30958         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
30959
30960 2002-01-22  Jim Meyering  <meyering@lucent.com>
30961
30962         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
30963         Otherwise, some versions of automake would omit the rule that makes
30964         Makefile from Makefile.in.
30965
30966 2002-01-21  Paul Eggert  <eggert@twinsun.com>
30967
30968         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
30969         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
30970         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
30971         (memcoll): Set errno to zero if there is no error.
30972
30973         * lib/quotearg.c (quotearg_buffer_restyled):
30974         Fix bug with quoting buffers containing NUL when backslashing escapes.
30975         This bug was exposed by the other changes in this patch.
30976         (quotearg_n_options): New arg ARGSIZE.
30977         All callers changed.
30978         (quoting_options_from_style): New function.
30979         (quotearg_n_style): Use it.
30980         (quotearg_n_style_mem): New function.
30981
30982         * lib/quotearg.h (quotearg_n_style_mem): New function.
30983
30984 2002-01-19  Jim Meyering  <meyering@lucent.com>
30985
30986         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
30987         Remove useless quotes: DF_PROG="df".
30988         * m4/strnlen.m4: New file.
30989
30990 2002-01-16  Paul Eggert  <eggert@twinsun.com>
30991
30992         * lib/backupfile.c (ISDIGIT): Comment fix.
30993         * lib/getdate.y (ISDIGIT): Likewise.
30994         * lib/posixtm.c (ISDIGIT, year): Likewise.
30995         * lib/strverscmp.c (ISDIGIT): Likewise.
30996         * lib/userspec.c (ISDIGIT): Likewise.
30997
30998 2002-01-16  Jim Meyering  <meyering@lucent.com>
30999
31000         * lib/getdate.y: Add three semicolons, each just before a closing
31001         brace. Bison (as of version 1.31) no longer papers over that mistake.
31002
31003 2002-01-05  Jim Meyering  <meyering@lucent.com>
31004
31005         * lib/version-etc.c (version_etc_copyright): Update copyright year.
31006
31007 2001-12-19  Paul Eggert  <eggert@twinsun.com>
31008
31009         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
31010         not silently exit merely because the output buffer happens to
31011         have nothing pending.
31012
31013 2001-12-18  Paul Eggert  <eggert@twinsun.com>
31014
31015         See the big note in ../ChangeLog.
31016         * lib/human.c (suffixes): Prefer K to k for 1024.
31017         (generate_suffix_backwards): New function.
31018         (human_readable_inexact): Use it.
31019         * lib/xstrtol.c (__xstrtol): If there is no number but there
31020         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
31021         Accept 'K' as well as 'k'.
31022
31023 2001-12-15  Jim Meyering  <meyering@lucent.com>
31024
31025         * lib/regex.h (__restrict_arr): Update from libc.
31026
31027         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
31028         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
31029         (STREQ): Define.
31030
31031 2001-12-14  Jim Meyering  <meyering@lucent.com>
31032
31033         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
31034         Suggestion from Bruno Haible.
31035
31036 2001-12-10  Jim Meyering  <meyering@lucent.com>
31037
31038         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
31039         xrealloc, Instead, include "xalloc.h".
31040         (initbuffer): Don't cast xmalloc return value to char*.
31041         (readline): Reword comment.
31042         Don't cast xrealloc return value to char*
31043         Return NULL, not 0.
31044
31045 2001-12-09  Jim Meyering  <meyering@lucent.com>
31046
31047         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
31048         about `signed and unsigned type in conditional expression'.
31049         * lib/posixtm.c (posix_time_parse): Likewise.
31050
31051         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
31052
31053         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
31054         to avoid a pedantic warning.
31055
31056         * lib/getstr.c: Don't include assert.h.
31057         (getstr): Remove warning-evoking assertions.
31058         Return -1 if offset parameter is out of bounds.
31059         Change the type of a local from int to size_t.
31060
31061         * lib/strftime.c (my_strftime_localtime_r): Include this function
31062         definition in the `#if ! HAVE_TM_GMTOFF' block.
31063
31064         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
31065         Include xalloc.h instead.
31066
31067 2001-12-02  Jim Meyering  <meyering@lucent.com>
31068
31069         * lib/tempname.c: Don't declare getenv, thus reverting the change of
31070         2001-11-18.  It's no longer necessary, now that stdlib.h is always
31071         included.
31072
31073         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
31074         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
31075
31076 2001-11-30  Akim Demaille  <akim@epita.fr>
31077
31078         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
31079         before being defined.
31080
31081 2001-11-27  Paul Eggert  <eggert@twinsun.com>
31082
31083         * lib/quotearg.h (quotearg_n, quotearg_n_style):
31084         First arg is int, not unsigned.
31085         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
31086         (SIZE_MAX, UINT_MAX): New macros.
31087         (quotearg_n_options): Abort if N is negative.
31088         Avoid overflow check on hosts where size_t is 64 bits and int
31089         is 32 bits, as overflow is impossible there.
31090         Fix off-by-one typo that caused unnecessary reallocation.
31091
31092 2001-11-27  Jim Meyering  <meyering@lucent.com>
31093
31094         * lib/tempname.c: Merge with version from libc.
31095         * lib/regex.c: Likewise.
31096
31097         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
31098         systems for which STDC_HEADERS is 0, it was not included, resulting in
31099         a warning about an integer-to-pointer conversion problem with getenv.
31100         Reported by Volker Borchert.
31101
31102 2001-11-26  Jim Meyering  <meyering@lucent.com>
31103
31104         * lib/gtod.h: Remove file.
31105         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
31106         * lib/gettimeofday.c: Don't include gtod.h.
31107         (GTOD_init): Remove function.
31108         (rpl_gettimeofday): Do its job here instead, rather than aborting.
31109         Suggestion from Volker Borchert.
31110
31111 2001-11-23  Jim Meyering  <meyering@lucent.com>
31112
31113         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
31114         it.
31115         * lib/hash.c (struct hash_table): Define it here instead.
31116
31117 2001-11-22  Jim Meyering  <meyering@lucent.com>
31118
31119         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
31120
31121 2001-11-20  Jim Meyering  <meyering@lucent.com>
31122
31123         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
31124         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
31125
31126 2001-11-19  Jim Meyering  <meyering@lucent.com>
31127
31128         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
31129         directory.  Use "conftestXXXXXX" as the template.
31130         Suggestion from Paul Eggert.
31131
31132         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
31133         immediately, so the test doesn't mistakenly hit the max-open-files
31134         limit.
31135
31136 2001-11-18  Paul Eggert  <eggert@twinsun.com>
31137
31138         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
31139         (TEMPORARIES): New macro.
31140         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
31141         removes an artificial limitation (e.g. HP-UX 10.20, where
31142         TMP_MAX is 17576).
31143
31144 2001-11-18  Jim Meyering  <meyering@lucent.com>
31145
31146         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
31147
31148 2001-11-18  Jim Meyering  <meyering@lucent.com>
31149
31150         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
31151         on SunOS 4.
31152
31153         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
31154         files will be created before anything else.
31155
31156 2001-11-17  Paul Eggert  <eggert@twinsun.com>
31157
31158         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
31159         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
31160
31161 2001-11-17  Jim Meyering  <meyering@lucent.com>
31162
31163         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
31164         Prompted by a report from Bob Proulx.
31165
31166         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
31167         Instead, require UTILS_FUNC_MKSTEMP.
31168
31169 2001-11-17  Jim Meyering  <meyering@lucent.com>
31170
31171         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
31172         Now, that's done as part of AC_FUNC_STRTOD.
31173
31174 2001-11-17  Jim Meyering  <meyering@lucent.com>
31175
31176         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
31177         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
31178         rather than group writable.  Patch by Juan F. Codagnone.
31179
31180         * lib/readtokens.c: Remove explicit declarations of xmalloc and
31181         xrealloc, Instead, include "xalloc.h".
31182
31183         * lib/mountlist.c: Include unlocked-io.h after all system headers.
31184         Remove explicit declarations of xmalloc, xrealloc,
31185         and xstrdup.  Instead, include "xalloc.h".
31186
31187         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
31188         unlocked-io.h.
31189         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
31190         Likewise.
31191         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
31192
31193         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
31194         Reported by Padraig Brady.
31195
31196         * lib/mkstemp.c: #undef mkstemp.
31197         Include config.h.
31198         (rpl_mkstemp): Rename from mkstemp.
31199         Protoize.
31200
31201 2001-11-16  Jim Meyering  <meyering@lucent.com>
31202
31203         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
31204         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
31205         determine the amount of total physical memory, use pstat_getstatic.
31206         HPUX-11 doesn't define _SC_PHYS_PAGES.
31207         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
31208         If sysconf couldn't be used to determine the amount of available
31209         physical memory, use both pstat_getstatic and pstat_getdynamic.
31210         Based on a patch from Bob Proulx.
31211
31212 2001-11-10  Jim Meyering  <meyering@lucent.com>
31213
31214         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
31215         (jm_PREREQ): Use it.
31216
31217 2001-11-09  Jim Meyering  <meyering@lucent.com>
31218
31219         * m4/jm-macros.m4: Require autoconf-2.52f.
31220         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
31221         Use these AC_-prefixed names, not the AM_-prefixed ones.
31222
31223         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
31224
31225 2001-11-05  Jim Meyering  <meyering@lucent.com>
31226
31227         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
31228
31229 2001-11-04  Jim Meyering  <meyering@lucent.com>
31230
31231         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
31232         $DEFS.
31233
31234 2001-11-03  Jim Meyering  <meyering@lucent.com>
31235
31236         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
31237         of AC_DEFUN.
31238
31239         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
31240         know the name of the variable in the macro definition.
31241
31242 2001-11-03  Jim Meyering  <meyering@lucent.com>
31243
31244         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
31245         in argmatch_to_argument call.
31246
31247         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
31248         argument.
31249
31250         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
31251         e.g., a fault due to an attempt to free a NULL pointer.
31252
31253 2001-11-01  Jim Meyering  <meyering@lucent.com>
31254
31255         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
31256         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
31257
31258 2001-11-01  Jim Meyering  <meyering@lucent.com>
31259
31260         * lib/dirfd.c, lib/dirfd.h: New files.
31261         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
31262
31263         * lib/hash.c (hash_print) [TESTING]: Clean up.
31264
31265 2001-10-22  Paul Eggert  <eggert@twinsun.com>
31266
31267         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
31268         to avoid a warning if -Wall.
31269
31270 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
31271
31272         * README: New file
31273         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
31274         (per RMS's instructions, this is now the canonical source)
31275         * lgpl/, gpl/: New directories.
31276
31277 2001-10-21  Paul Eggert  <eggert@twinsun.com>
31278
31279         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
31280
31281 2001-10-21  Jim Meyering  <meyering@lucent.com>
31282
31283         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
31284         this code would end up calling gettext even in packages built
31285         with --disable-nls.
31286         * lib/getopt.c (_): Likewise.
31287         * lib/regex.c (_): Likewise.
31288
31289 2001-10-20  Paul Eggert  <eggert@twinsun.com>
31290
31291         * m4/error.m4 (jm_PREREQ_ERROR):
31292         Do not invoke AC_CHECK_FUNCS with strerror_r, as
31293         AC_FUNC_STRERROR_R does that.
31294         Check for strerror declaration.
31295
31296         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
31297         are supposed to have them these days.
31298         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
31299         Merge changes from latest Autoconf CVS.
31300         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
31301         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
31302         POSIX decided to standardize on the int flavor of strerror_r.
31303
31304 2001-10-20  Paul Eggert  <eggert@twinsun.com>
31305
31306         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
31307         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
31308         Use strerror_r that is only a macro, even if it is not a function.
31309         (strerror): Check for HAVE_DECL_STRERROR before declaring.
31310         (private_strerror): Use prototypes, not old-style function definition.
31311         (print_errno_message): New function.
31312         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
31313         char*-flavored one.
31314         (error_tail, error, error_at_line): Use it.
31315
31316 2001-10-11  Jim Meyering  <meyering@lucent.com>
31317
31318         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
31319         and quote_n (1, ... to avoid clobbering a buffer.
31320
31321 2001-10-05  Jim Meyering  <meyering@lucent.com>
31322
31323         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
31324         hash-pjw.h.
31325         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
31326         * lib/hash-pjw.h: New file.
31327
31328 2001-09-30  Jim Meyering  <meyering@lucent.com>
31329
31330         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
31331         `struct fsstat' has the `f_fstypename' member.
31332         Use that to define FS_TYPE, which is now used to make
31333         the getfsstat link test tighter.
31334
31335 2001-09-30  Jim Meyering  <meyering@lucent.com>
31336
31337         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
31338         Include <sys/ucred.h>, for Apple Darwin.
31339         Include sys/mount.h and sys/fs_types.h only if available.
31340         (FS_TYPE): Define.
31341         (read_filesystem_list): Use FS_TYPE.
31342
31343 2001-09-29  Paul Eggert  <eggert@twinsun.com>
31344
31345         * lib/exclude.c (excluded_filename): 0 -> false, since it's
31346         a boolean context.
31347
31348 2001-09-29  Jim Meyering  <meyering@lucent.com>
31349
31350         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
31351         [one-argument getmntent function]): Include stdio.h before mntent.h.
31352         SunOS 4.1.x needs it for the declaration of `FILE'.
31353         Patch by Volker Borchert.
31354
31355         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
31356         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
31357         sys/fs_types.h, and make the link-test for getfsstat guard #include
31358         directives with appropriate #if HAVE_*_H tests so that we can
31359         detect getfsstat on Apple Darwin1.3.7 systems.
31360         Reported by Nelson Beebe.
31361         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
31362
31363 2001-09-28  Paul Eggert  <eggert@twinsun.com>
31364
31365         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
31366         #defines strtoimax.  Also treat the other strto* functions
31367         like strtoimax.
31368
31369         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
31370         Check for strtoul and strtoumax,
31371         as those declarations are made even in the signed case.
31372         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
31373         Likewise, for strtol and strtoimax.
31374
31375 2001-09-28  Paul Eggert  <eggert@twinsun.com>
31376
31377         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
31378         #defines strtoimax.  Also treat the other strto* functions
31379         like strtoimax.
31380
31381         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
31382         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
31383         (strtoimax, strtoumax): Do not declare if already defined as a macro.
31384
31385 2001-09-26  Jim Meyering  <meyering@lucent.com>
31386
31387         Most macros in unlocked-io.h had the wrong number of arguments.
31388         * lib/gen-uio: New script.
31389         (USE_UNLOCKED_IO): Define to 1 if not already defined.
31390         * lib/unlocked-io.hin: Remove file.
31391         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
31392         rather than trying to embed it here.
31393         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
31394         Reported by Padraig Brady.
31395
31396 2001-09-25  Volker Borchert  <bt@teknon.de>
31397
31398         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
31399         `result'.
31400
31401 2001-09-24  Jim Meyering  <meyering@lucent.com>
31402
31403         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
31404
31405 2001-09-23  Jim Meyering  <meyering@lucent.com>
31406
31407         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
31408         instead of the mere test for existence of mntent.h.  The latter
31409         would get a false-positive on AIX 3.4 systems.
31410         In the outer getmntent if-block, don't die if neither of the getmntent
31411         tests succeeds.  Instead, just fall through and continue with the
31412         remaining tests.
31413
31414 2001-09-23  Jim Meyering  <meyering@lucent.com>
31415
31416         * lib/mountlist.c: Remove useless parentheses in #if directives.
31417         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
31418         the deprecated MOUNTED symbol is no longer defined in mntent.h.
31419
31420 2001-09-22  Jim Meyering  <meyering@lucent.com>
31421
31422         * m4/gettext.m4: New file.  From gettext.
31423         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
31424         * m4/progtest.m4: Likewise
31425         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
31426         * m4/glibc21.m4: Likewise.
31427
31428         * m4/libintl.m4: Remove.  No longer used.
31429
31430 2001-09-22  Jim Meyering  <meyering@lucent.com>
31431
31432         * lib/localcharset.c: Update from latest gettext.
31433         * lib/config.charset: Likewise.
31434
31435 2001-09-20  Jim Meyering  <meyering@lucent.com>
31436
31437         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
31438         strtoimax.
31439         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
31440         strtoumax.
31441
31442 2001-09-20  Jim Meyering  <meyering@lucent.com>
31443
31444         * lib/xstrtol.c (strtoimax): Guard declaration with
31445         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
31446         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
31447         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
31448         (strtoumax): Likewise, for completeness (it wasn't necessary).
31449
31450 2001-09-17  Paul Eggert  <eggert@twinsun.com>
31451
31452         * lib/strtoimax.c (HAVE_LONG_LONG):
31453         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
31454         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
31455         to work around bug in IBM C compiler.
31456
31457 2001-09-17  Jim Meyering  <meyering@lucent.com>
31458
31459         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
31460         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
31461         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
31462         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
31463         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
31464         whenever the right hand side need not be expanded by the shell.
31465
31466 2001-09-16  Paul Eggert  <eggert@twinsun.com>
31467
31468         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
31469         library.  It's not correct, as some older glibcs are buggy.
31470         fnmatch wasn't fixed until glibc 2.2.
31471
31472         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
31473         special shell magic here.
31474
31475 2001-09-16  Jim Meyering  <meyering@lucent.com>
31476
31477         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
31478         * m4/jm-macros.m4: Require it.
31479
31480 2001-09-16  Jim Meyering  <meyering@lucent.com>
31481
31482         * lib/mkdir.c: New file.
31483
31484 2001-09-15  Jim Meyering  <meyering@lucent.com>
31485
31486         * m4/jm-macros.m4: Check for help2man.
31487
31488 2001-09-11  Jim Meyering  <meyering@lucent.com>
31489
31490         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
31491         The body, by Paul Eggert, was moved here from configure.in.
31492         * m4/jm-macros.m4: Require UTILS_HOST_OS.
31493
31494 2001-09-04  Paul Eggert  <eggert@twinsun.com>
31495
31496         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
31497         (jm_PREREQ): Use it.
31498
31499 2001-09-04  Paul Eggert  <eggert@twinsun.com>
31500
31501         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
31502         Use ssize_t, not int, to store result of readlink.
31503         Check for ssize_t overflow as well as size_t overflow,
31504         as POSIX says the result of readlink is implementation-defined
31505         when ssize_t overflows.
31506         Remove unnecessary cast to char*.
31507         Use free+malloc instead of realloc, as the storage doesn't need
31508         to be preserved and it's clearer and can be more efficient that way.
31509         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
31510         * lib/xreadlink.h (xreadlink): Update prototype.
31511
31512 2001-09-04  Paul Eggert  <eggert@twinsun.com>
31513
31514         * lib/xgetcwd.c: Revert some of the previous change; intead,
31515         fix the HAVE_GETCWD_NULL code to behave more like the
31516         !HAVE_GETCWD_NULL code used to.
31517
31518         Include "xalloc.h".
31519         (xgetcwd): Do not return NULL when memory is exhausted; instead,
31520         invoke xalloc_die.
31521
31522 2001-09-03  Paul Eggert  <eggert@twinsun.com>
31523
31524         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
31525         sys/param.h, as pathmax.h includes them.
31526
31527 2001-09-03  Paul Eggert  <eggert@twinsun.com>
31528
31529         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
31530         (jm_PREREQ_XGETCWD): New macro.
31531
31532         * m4/getcwd.m4: New file.
31533
31534 2001-09-03  Paul Eggert  <eggert@twinsun.com>
31535
31536         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
31537         like the HAVE_GETCWD_NULL code.
31538         Include pathmax.h if not HAVE_GETCWD.
31539         Do not include xalloc.h.
31540         (INITIAL_BUFFER_SIZE): New symbol.
31541         Do not use xmalloc / xrealloc, since the caller is responsible for
31542         handling errors.  Preserve errno around `free' during failure.
31543         Do not overrun buffer when using getwd.
31544
31545 2001-09-03  Paul Eggert  <eggert@twinsun.com>
31546
31547         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
31548         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
31549         getcwd (NULL, 0).
31550
31551 2001-09-03  Paul Eggert  <eggert@twinsun.com>
31552
31553         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
31554         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
31555         spotted by Jim Meyering.
31556
31557 2001-09-03  Jim Meyering  <meyering@lucent.com>
31558
31559         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
31560         failure.
31561
31562 2001-09-02  Jim Meyering  <meyering@lucent.com>
31563
31564         * lib/error.c: Update from GNU libc.
31565
31566 2001-09-01  Jim Meyering  <meyering@lucent.com>
31567
31568         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
31569         Used by df.
31570
31571 2001-09-01  Jim Meyering  <meyering@lucent.com>
31572
31573         * lib/xreadlink.c: New file.
31574         * lib/xreadlink.h: New file.
31575         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
31576         xreadlink.h.
31577
31578         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
31579         doesn't conflict with sparc Solaris 7's definition in
31580         /usr/include/sys/int_types.h.
31581
31582         * lib/exclude.c: Use `""', not `<>' to #include non-system header
31583         files.
31584         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
31585         and strncasecmp as r-values.  Unixware didn't have declarations.
31586
31587 2001-08-31  Paul Eggert  <eggert@twinsun.com>
31588
31589         * lib/xstrtol.h: Add copyright notice.
31590         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
31591         LONGINT_INVALID_SUFFIX_CHAR.
31592
31593 2001-08-31  Paul Eggert  <eggert@twinsun.com>
31594
31595         * lib/xstrtol.c (strtoimax): New decl.
31596
31597 2001-08-31  Paul Eggert  <eggert@twinsun.com>
31598
31599         * lib/xgetcwd.c: Don't include pathmax.h.
31600         Include stdlib.h and unistd.h if available.
31601         Include xalloc.h.
31602         (xmalloc, xstrdup, free): Remove decls.
31603         (xgetcwd): Don't assume sizes fit in unsigned.
31604         Check for overflow when computing sizes.
31605         Simplify reallocation code.
31606
31607 2001-08-31  Paul Eggert  <eggert@twinsun.com>
31608
31609         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
31610         a directory's st_size can have an arbitrary value, so the old
31611         usage could waste an arbitrary amount of memory.  All uses
31612         changed.
31613         * lib/savedir.h: Update prototype.
31614
31615 2001-08-31  Paul Eggert  <eggert@twinsun.com>
31616
31617         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
31618
31619         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
31620         old strtoimax.c.
31621
31622         Also, make the following further changes to make this file's
31623         configuration more similar to that of strtol.c:
31624         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
31625         (strtoumax, uintmax_t, strtoull, strtol): Remove.
31626         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
31627         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
31628         changed to signed values.
31629
31630         And make the following changes as well:
31631         Fix copyright notice, as 1999 was missing.
31632         (verify): New macro.
31633         (strtoimax): Check sizes at compile-time, not run-time.
31634         Prefer strtol to strtoll if both work.
31635         (main): Remove; it was not that useful and was a pain to maintain.
31636
31637         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
31638
31639 2001-08-31  Jim Meyering  <meyering@lucent.com>
31640
31641         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
31642         Use an initial, malloc'd, buffer of length 128 rather than
31643         a statically allocated one of length 1024.
31644
31645 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31646
31647         Simplify code, partly by assuming autoconf 2.52 semantics.
31648
31649         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
31650
31651         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
31652         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
31653         All uses removed.
31654         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
31655         Move AC_REQUIRE to next-to-top level, to avoid confusion.
31656         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
31657         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
31658         jm_AC_HEADER_INTTYPES_H.
31659         * m4/jm-macros.m4 (jm_MACROS): Likewise.
31660
31661         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
31662
31663         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
31664         Quote first arg of AC_DEFUN.
31665         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
31666         since they are needed to parse the include file even if we need
31667         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
31668         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
31669         but with opposite signedness.
31670
31671 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31672
31673         Merge 'exclude' changes from tar 1.13.22.
31674         This fixes one or two unlikely storage allocation overflow bugs,
31675         but doesn't change user-visible behavior otherwise.
31676
31677 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31678
31679         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
31680         (jm_PREREQ_EXCLUDE): New macro.
31681
31682 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31683
31684         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
31685         tm to be declared.
31686
31687 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31688
31689         * lib/hash.c: Remove '2001' from copyright notice.
31690
31691 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31692
31693         * lib/full-write.h: New file.
31694         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
31695         * lib/full-write.c: Correct credits, as cccp.c no longer
31696         exists and anyway it was so heavily changed from the old cccp
31697         code as to be unrecognizable.  Include full-write.h.
31698         (full_write) Return size_t, with short writes meaning failure.
31699         All callers changed.  This fixes a bug with large buffers
31700         on 64-bit hosts.
31701         * lib/utime.c: Include full-write.h.
31702
31703 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31704
31705         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
31706         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
31707         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
31708         Include if available.
31709         (<xalloc.h>): Include
31710         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
31711         (verify): New macro.  Use it to verify that EXCLUDE macros do not
31712         collide with FNM macros.
31713         (struct patopts): New struct.
31714         (struct exclude): Use it, as exclude patterns now come with options.
31715         (new_exclude): Support above changes.
31716         (new_exclude, add_exclude_file):
31717         Initial size must now be a power of two to simplify overflow checking.
31718         (free_exclude, fnmatch_no_wildcards): New function.
31719         (excluded_filename): No longer requires options arg, as the options
31720         are determined by add_exclude.  Now returns bool, not int.
31721         (excluded_filename, add_exclude):
31722         Add support for the fancy new exclusion options.
31723         (add_exclude, add_exclude_file): Now takes int options arg.
31724         Check for arithmetic overflow when computing sizes.
31725         (add_exclude_file): xrealloc might modify errno, so don't
31726         realloc until after errno might be used.
31727
31728         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
31729         New macros.
31730         (free_exclude): New decl.
31731         (add_exclude, add_exclude_file): Now takes int options arg.
31732         (excluded_filename): No longer requires options arg, as the options
31733         are determined by add_exclude.  Now returns bool, not int.
31734
31735 2001-08-30  Paul Eggert  <eggert@twinsun.com>
31736
31737         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
31738
31739 2001-08-27  Jim Meyering  <meyering@lucent.com>
31740
31741         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
31742
31743         * lib/version-etc.c (N_): Remove definition.
31744         Revert most of last change.
31745         Instead, simply don't mark the `Copyright...' string for translation.
31746         Based on advice from Paul Eggert.
31747
31748         * lib/strtoxmax.c: Tweak comment.
31749
31750 2001-08-26  Jim Meyering  <meyering@lucent.com>
31751
31752         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
31753
31754         * m4/xstrtoimax.m4: New file.
31755         * m4/xstrtoumax.m4: Add comments explaining why we
31756         AC_REPLACE_FUNCS(strtol).
31757
31758 2001-08-26  Jim Meyering  <meyering@lucent.com>
31759
31760         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
31761         of copyright with `%s' so translators don't get an untranslated
31762         message in 2002.
31763         (COPYRIGHT_YEAR): Define.
31764         (version_etc): Use fprintf rather than fputs.
31765         Suggestion from Ulrich Drepper.
31766
31767         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
31768
31769         * lib/strtoll.c: New file, from GNU libc.
31770         * lib/xstrtoimax.c: New file.
31771
31772         * lib/xstrtol.h: Add xstrtoimax.
31773         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
31774         * lib/strtoimax.c: New file.  Likewise, but first define
31775         STRTOUXMAX_SIGNED.
31776
31777         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
31778         ...
31779         * lib/strtoxmax.c: ... then renamed to this.
31780
31781 2001-08-18  Paul Eggert  <eggert@twinsun.com>
31782
31783         * m4/inttypes.m4: Add AC_PREREQ(2.13).
31784         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
31785         (jm_AC_TYPE_INTMAX_T): New macro.
31786         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
31787
31788         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
31789
31790         * m4/longlong.m4: Renamed from ulonglong.m4.
31791         * m4/inttypes.m4: Renamed from inttypes_h.m4.
31792         * m4/uintmax_t.m4: Removed.
31793
31794 2001-08-13  Paul Eggert  <eggert@twinsun.com>
31795
31796         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
31797         Port to Solaris 8, where 'sed' requires a space after the 'r'
31798         command, and where sh dislikes "$/".  Clean up the spacing a bit.
31799         Redirect output to $tmp just once.
31800
31801 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
31802
31803         * lib/addext.c (<errno.h>): Include.
31804         (errno): Declare if not defined.
31805         (addext): Work correctly when pathconf returns -1 and leaves
31806         errno alone because there is no limit.  Also, work even if
31807         pathconf returns a value greater than SIZE_MAX.
31808
31809 2001-08-12  Jim Meyering  <meyering@lucent.com>
31810
31811         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
31812         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
31813         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
31814         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
31815         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
31816         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
31817         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
31818         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
31819         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
31820         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
31821         utime.m4, utimes.m4, xstrtoumax.m4:
31822         Quote the first argument in each use of AC_DEFUN.
31823
31824 2001-08-12  Jim Meyering  <meyering@lucent.com>
31825
31826         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
31827         Simply `return getcwd (NULL, 0);'.
31828         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
31829         Use 1300 as initial value for length, not PATH_MAX.
31830
31831         * lib/pathmax.h: Clean up cpp syntax.
31832
31833 2001-08-12  Jim Meyering  <meyering@lucent.com>
31834
31835         * lib/gettimeofday.c: New file.
31836         * lib/gtod.h: New file.
31837         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
31838
31839 2001-08-05  Jim Meyering  <meyering@lucent.com>
31840
31841         * m4/jm-macros.m4: Require autoconf-2.52.
31842
31843 2001-08-04  Jim Meyering  <meyering@lucent.com>
31844
31845         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
31846         stmt, to get in sync with glibc.
31847
31848 2001-08-03  Paul Eggert  <eggert@twinsun.com>
31849
31850         The following changes are from gettext 0.10.39 as maintained by
31851         Bruno Haible.
31852
31853         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
31854         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
31855         with inverted sense.  All uses changed.
31856
31857         * lib/mbswidth.c: Don't include <limits.h>.
31858         Include <stdlib.h> and <string.h> unconditionally.
31859         (iswcntrl, mbsinit, ISCNTRL): New macros.
31860         (mbsnwidth): Use K&R style function declarations.
31861         Don't bother checking for MB_LEN_MAX == 1, since the compiler
31862         can optimize it when MB_CUR_MAX == 1.
31863         The width of control characters is zero, not 1.
31864
31865 2001-08-03  Paul Eggert  <eggert@twinsun.com>
31866
31867         The following changes are from gettext 0.10.39 as maintained by
31868         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
31869
31870         * m4/codeset.m4: Upgrade to serial AM1.
31871         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
31872         all uses changed.  Quote first arg of AC_DEFUN.
31873         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
31874
31875         * m4/iconv.m4: Upgrade to serial AM2.
31876         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
31877         Add --with-libconv-prefix.
31878         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
31879         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
31880         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
31881         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
31882         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
31883
31884         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
31885         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
31886         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
31887         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
31888         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
31889         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
31890         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
31891         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
31892         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
31893
31894         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
31895         string.h any more.
31896
31897         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
31898         not the default value.
31899
31900         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
31901         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
31902         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
31903         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
31904         Also check for iswcntrl, used for wcwidth fallback.
31905         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
31906         to Autoconf 2.13.
31907
31908 2001-08-03  Jim Meyering  <meyering@lucent.com>
31909
31910         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
31911         as it was in the original.  Reported by Paul Eggert.
31912
31913 2001-07-16  Jim Meyering  <meyering@lucent.com>
31914
31915         * m4/gettimeofday.m4: New file.
31916         Prompted by a report from Bernhard Baehr.
31917
31918 2001-07-15  Jim Meyering  <meyering@lucent.com>
31919
31920         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
31921         stuff. Now it's in ../Makefile.cfg.
31922
31923 2001-07-15  Jim Meyering  <meyering@lucent.com>
31924
31925         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
31926         (BUILT_SOURCES): Add unlocked-io.h.
31927         (io_functions): Define.
31928         (unlocked-io.h): New rule.
31929         (DISTCLEANFILES): Add unlocked-io.h.
31930         (all-local): Depend on unlocked-io.h, to ensure it is created.
31931
31932         * lib/unlocked-io.hin: New file
31933
31934         * lib/regex.c: Update from glibc.
31935
31936 2001-07-05  Jim Meyering  <meyering@lucent.com>
31937
31938         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
31939         recommendation.
31940         (libfetish_a_SOURCES): Put all .h files here instead.
31941         Remove a thus-exposed (better checks in automake) duplicate and
31942         two unnecessary .h files.
31943
31944 2001-07-04  Jim Meyering  <meyering@lucent.com>
31945
31946         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
31947         that generates jm-glibc-io.m4 so that it doesn't trigger any make
31948         distcheck failure.
31949
31950 2001-07-02  Jim Meyering  <meyering@lucent.com>
31951
31952         The following changes were prompted by suggestions from Bruno Haible.
31953
31954         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
31955         is now generated.
31956         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
31957         definition of EXTRA_DIST.
31958         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
31959         ensure that the generated file is created/updated whenever the list
31960         of $(unlocked_functions) is changed.
31961         (jm-glibc-io.m4): New rule.
31962         (unlocked-io.h): New rule -- currently unused.
31963
31964 2001-06-24  Jim Meyering  <meyering@lucent.com>
31965
31966         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
31967         unmatched right bracket, rather than kludging it with an extra,
31968         falsely-matching quote in a comment.  Patch by Akim Demaille.
31969
31970 2001-06-11  Jim Meyering  <meyering@lucent.com>
31971
31972         * lib/regex.c: Update from GNU libc.
31973
31974 2001-05-27  Jim Meyering  <meyering@lucent.com>
31975
31976         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
31977         Check for ut_type in struct utmp.
31978
31979 2001-05-27  Jim Meyering  <meyering@lucent.com>
31980
31981         * lib/readutmp.h (UT_TYPE): Define.
31982
31983 2001-05-24  Jim Meyering  <meyering@lucent.com>
31984
31985         * lib/argmatch.c: Include "quote.h".
31986         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
31987         quote function.  Reported by Göran Uddeborg.
31988
31989 2001-05-22  Jim Meyering  <meyering@lucent.com>
31990
31991         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
31992         now that we use the package-supplied version unconditionally.
31993         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
31994
31995 2001-05-21  Jim Meyering  <meyering@lucent.com>
31996
31997         * m4/regex.m4: Change a couple backticks to single quotes to avoid
31998         shell syntax errors.
31999
32000 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
32001
32002         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
32003
32004 2001-05-20  Paul Eggert  <eggert@twinsun.com>
32005
32006         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
32007         Don't bother to check library strftime, since
32008         we'll be using our own my_strftime function anyway.
32009         Define my_strftime instead of strftime.
32010
32011 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
32012
32013         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
32014         which is not yet declared.
32015
32016 2001-05-15  Jim Meyering  <meyering@lucent.com>
32017
32018         * m4/regex.m4: Use proper quoting so brackets appear in the test
32019         program.
32020         Reported by, and with help from, Bruno Haible.
32021
32022 2001-05-13  Jim Meyering  <meyering@lucent.com>
32023
32024         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
32025         undefined.
32026
32027 2001-05-11  Paul Eggert  <eggert@twinsun.com>
32028
32029         dirname code cleanup.  base_name now behaves more compatibly
32030         with POSIX basename when given file names that have trailing
32031         slashes, and similarly for dir_name.  Add new primitives
32032         base_len and dir_len.  Put the directory-name-related decls
32033         into dirname.h.
32034
32035         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
32036         * lib/backupfile.c (base_name): Likewise.
32037         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
32038         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
32039         * lib/makepath.c (strip_trailing_slashes): Likewise.
32040         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
32041         ISSLASH): Likewise.
32042         * lib/rename.c (strip_trailing_slashes): Likewise.
32043         * lib/same.c (base_name): Likewise.
32044         * lib/stripslash.c (ISSLASH): Likewise.
32045
32046         * lib/addext.c: Include <dirname.h> after size_t is defined.
32047         * lib/backupfile.c: Likewise.
32048
32049         * lib/addext.c (addext): Use base_len to trim redundant
32050         trailing slashes instead of doing it ourselves.
32051         But do not trim the last slash if it is not redundant.
32052
32053         * lib/backupfile.c (find_backup_file_name,
32054         max_backup_version): Use base_len instead of rolling it ourselves.
32055         Handle the case of "" and (on DOS) "C:" correctly.
32056
32057         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
32058         needed. Include <string.h>, <dirname.h>.
32059         (base_name): Allow file names ending in slashes, other than names
32060         that are all slashes.  In this case, return the basename followed
32061         by the slashes.  This is more general, and can be used in places
32062         where the original base_name purposely had an assertion failure.
32063         (base_len): New function.
32064
32065         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
32066         Do not include <assert.h>; no longer needed.
32067         Include xalloc.h.
32068         (memrchr): Remove decl.
32069         (dir_name_r): Remove.
32070         (dir_len): Renamed from dirlen.  All callers changed.
32071         Rewrite in terms of base_name, for simplicity and consistency.
32072         (dir_name): Never return NULL.  All callers changed.
32073         Do not include <stdlib.h> in test program; no longer needed.
32074         return 0; is fine for test program.
32075
32076         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
32077         New macros.
32078         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
32079
32080         * lib/path-concat.c (path_concat): Use base_len to compute
32081         base length, not strlen; this means we cannot rely on memcpy
32082         to null-terminate.
32083
32084         * lib/same.c (STREQ): Remove.
32085         (same_name): Handle the case where the basename ends in trailing '/'.
32086
32087         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
32088         a slash was stripped.  Do not strip the last slash after a
32089         file system prefix.
32090
32091 2001-05-11  Paul Eggert  <eggert@twinsun.com>
32092
32093         * lib/Makefile.am (libfetish_a_SOURCES):
32094         Add strftime.c, since we now compile it on all hosts.
32095
32096         * lib/strftime.c (my_strftime):
32097         Define to nstrftime if emacs, but only if my_strftime is not defined.
32098         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
32099         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
32100         Add one more extra argument: a nanoseconds value.
32101         All uses changed.
32102         (ns): New macro.
32103         (my_strftime function): Add %N format.
32104         (emacs_strftimeu): Renamed from emacs_strftime,
32105         with extra ut argument.
32106
32107 2001-05-09  Paul Eggert  <eggert@twinsun.com>
32108
32109         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
32110
32111 2001-04-21  Jim Meyering  <meyering@lucent.com>
32112
32113         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
32114         doesn't interfere.
32115
32116 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
32117
32118         * m4/ftruncate.m4: Check for chsize.
32119         Link with ftruncate.o unconditionally if ftruncate is missing.
32120         This was required when cross-compiling to i586-mingw32msvc.
32121
32122 2001-04-08  Jim Meyering  <meyering@lucent.com>
32123
32124         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
32125         recomputed; that's necessary when the offset spans a DST transition.
32126         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
32127
32128 2001-04-02  Jim Meyering  <meyering@lucent.com>
32129
32130         * lib/regex.h, regex.c: Update from GNU libc.
32131
32132 2001-03-24  Jim Meyering  <meyering@lucent.com>
32133
32134         * m4/jm-macros.m4: Require autoconf-2.49d.
32135
32136 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
32137
32138         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
32139
32140 2001-03-19  Paul Eggert  <eggert@twinsun.com>
32141
32142         * lib/version-etc.c (version_etc_copyright): Update to 2001.
32143
32144 2001-03-17  Jim Meyering  <meyering@lucent.com>
32145
32146         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
32147         now that the version in autoconf is equivalent.
32148         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
32149
32150         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
32151         Suggestion from Akim Demaille.
32152
32153         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
32154         (jm_PREREQ_TEMPNAME): New function.
32155
32156 2001-03-16  Paul Eggert  <eggert@twinsun.com>
32157
32158         * lib/tempname.c (uint64_t): Define to uintmax_t if
32159         not defined, and if UINT64_MAX is not defined.
32160         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
32161         Reported by John David Anglin.
32162
32163 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
32164
32165         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
32166         resolve alias if codeset is empty.
32167         * lib/config.charset (BeOS): Use wildcard syntax.
32168
32169 2001-03-13  Jim Meyering  <meyering@lucent.com>
32170
32171         * lib/path-concat.c (path_concat)
32172         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
32173         concatenating e.g., `C:' and `foo'.
32174         From Bruno Haible.
32175
32176 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
32177
32178         * lib/localcharset.c (locale_charset): Don't use
32179         setlocale(LC_CTYPE,NULL). Don't return NULL.
32180         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
32181
32182 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
32183
32184         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
32185         support for DOS/DJGPP.
32186
32187 2001-03-01  Paul Eggert  <eggert@twinsun.com>
32188
32189         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
32190         lacks mkstemp.  Compile our own tempname.c if we compile our own
32191         mkstemp.c, as mkstemp relies on tempname.
32192
32193 2001-03-01  Jim Meyering  <meyering@lucent.com>
32194
32195         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
32196         AH_VERBATIM really does output its argument verbatim.
32197
32198 2001-02-28  Paul Eggert  <eggert@twinsun.com>
32199
32200         * lib/Makefile.am (libfetish_a_SOURCES):
32201         Add dup-safer.c, fopen-safer.c.
32202         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
32203
32204         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
32205         * lib/unistd-safer.h: New files.
32206
32207 2001-02-25  Paul Eggert  <eggert@twinsun.com>
32208
32209         The mkstemp replacement is taken from glibc 2.2.2, with some
32210         portability fixes for use outside glibc, as follows:
32211
32212         * lib/tempname.c (struct_stat64): New macro.
32213         (direxists, __gen_tempname): Use it.
32214         This avoids a portability problem with Solaris 8.
32215
32216         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
32217         (<stddef.h>, <stdint.h>, <string.h>):
32218         Include only if STDC_HEADERS || _LIBC.
32219         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
32220         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
32221         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
32222         (__set_errno): Define this macro if <errno.h> doesn't.
32223         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
32224         Define these macros if <stdio.h> doesn't.
32225         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
32226         Define these macros if <sys/stat.h>
32227         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
32228         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
32229         __xstat64): Define if not _LIBC.
32230         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
32231         (__gen_tempname): Invoke gettimeofday only if
32232         HAVE_GETTIMEOFDAY || _LIBC;
32233         otherwise, fall back on plain "time".
32234         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
32235
32236         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
32237
32238         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
32239
32240 2001-02-18  Paul Eggert  <eggert@twinsun.com>
32241
32242         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
32243
32244 2001-02-17  Paul Eggert  <eggert@twinsun.com>
32245
32246         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
32247         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
32248         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
32249         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
32250
32251 2001-02-17  Paul Eggert  <eggert@twinsun.com>
32252
32253         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
32254         Remove workaround macros for hosts that have mbrtowc but not
32255         mbstate_t, as we now insist on proper declarations for both
32256         before using mbrtowc.
32257
32258 2001-02-17  Jim Meyering  <meyering@lucent.com>
32259
32260         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
32261         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
32262         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
32263         UnixWare 7.1.1.
32264
32265         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
32266         rather than AC_CACHE_VAL.
32267
32268 2001-02-17  Jim Meyering  <meyering@lucent.com>
32269
32270         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
32271         around included file name.
32272
32273         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
32274
32275         * lib/strftime.c: Update from GNU libc (the only changes were to
32276         comments).
32277
32278 2001-02-17  Jim Meyering  <meyering@lucent.com>
32279
32280         * lib/regex.c: Update from libc.
32281
32282 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
32283
32284         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
32285         clash.
32286
32287 2001-02-16  Paul Eggert  <eggert@twinsun.com>
32288
32289         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
32290         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
32291         Reported by Mark Hounschell via Paul Eggert.
32292
32293 2001-02-07  Jim Meyering  <meyering@lucent.com>
32294
32295         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
32296
32297 2001-02-05  Jim Meyering  <meyering@lucent.com>
32298
32299         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
32300         it includes the patch required for `large file' support with at least
32301         HP-UX's 10.20 /bin/cc.
32302
32303 2001-02-03  Jim Meyering  <meyering@lucent.com>
32304
32305         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
32306         AS_IF, now that it works once again (mysteriously).
32307         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
32308
32309 2001-01-30  Jim Meyering  <meyering@lucent.com>
32310
32311         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
32312         * m4/chown.m4: Rename conftestchown to conftest.chown.
32313         * m4/rename.m4: s/conftestdir/conftest.d1/ and
32314         s/conftestdir2/conftest.d2/.
32315         * m4/utimes.m4: s/conftestdata/conftest.data/
32316         Inspired by Pavel Roskin's change in autoconf.
32317
32318 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
32319
32320         * lib/config.charset: Update for FreeBSD 4.2.
32321
32322 2001-01-27  Jim Meyering  <meyering@lucent.com>
32323
32324         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
32325         a use of AS_IF.
32326         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
32327
32328 2001-01-26  Jim Meyering  <meyering@lucent.com>
32329
32330         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
32331         quotearg.c includes it.
32332
32333 2001-01-26  Jim Meyering  <meyering@lucent.com>
32334
32335         * lib/quotearg.c: Include stddef.h.
32336         * lib/quote.c: Include stddef.h.
32337         Reported by Axel Kittenberger.
32338
32339         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
32340         line in double quotes so that it evokes a better diagnostic.
32341         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
32342         Reported by Axel Kittenberger.
32343
32344 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
32345
32346         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
32347         as if it was a `charset'.
32348
32349 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
32350
32351         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
32352         has const.
32353
32354 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
32355
32356         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
32357         to avoid a warning.  Add back 'const' to inptr.
32358
32359 2001-01-20  Jim Meyering  <meyering@lucent.com>
32360
32361         Be sure that headers are checked before used in code compiled
32362         for the type checks.
32363         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
32364         In place of that, invoke jm_CHECK_ALL_TYPES.
32365         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
32366         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
32367         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
32368         The check for ssize_t was mistakenly run before the test for unistd.h.
32369
32370         The configure-time check for stdbool.h was missing.
32371         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
32372         (jm_PREREQ_HASH): New function.
32373
32374 2001-01-17  Jim Meyering  <meyering@lucent.com>
32375
32376         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
32377         for autoconf-2.49c.
32378         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
32379
32380 2001-01-16  Jim Meyering  <meyering@lucent.com>
32381
32382         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
32383         From Bruno Haible.
32384
32385 2001-01-14  Jim Meyering  <meyering@lucent.com>
32386
32387         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
32388         foo and bar.  Create conftestdir/ in the script, not in the C code.
32389         Remove directories in the script, not in the C code.
32390         Remove conftestdir{,2} before trying to create the directory.
32391         Make the entire configure script fail if the mkdir fails.
32392
32393 2001-01-14  Jim Meyering  <meyering@lucent.com>
32394
32395         * lib/rename.c: New file.  From Volker Borchert.
32396         Include stdlib.h, string.h or strings.h, and xalloc.h.
32397         Use strip_trailing_slashes rather than open-coding it.
32398
32399 2001-01-03  Paul Eggert  <eggert@twinsun.com>
32400
32401         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
32402
32403 2001-01-03  Jim Meyering  <meyering@lucent.com>
32404
32405         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
32406         of local `inptr' to avoid warning with some system declarations of
32407         iconv.
32408
32409 2001-01-02  Volker Borchert  <bt@teknon.de>
32410
32411         * m4/rename.m4: New file.
32412         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
32413
32414 2001-01-01  Jim Meyering  <meyering@lucent.com>
32415
32416         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
32417         even on systems with utmpx.h.  It's necessary for the declaration of
32418         utmp's ut_user member.  Reported by Andreas Jaeger.
32419
32420         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
32421         available. They are required for the declarations of getgrgid and
32422         getpwuid resp.
32423         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
32424         Reported by Andreas Jaeger.
32425
32426 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
32427
32428         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
32429         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
32430         so `make install' also works in VPATH builds.
32431
32432 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
32433
32434         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
32435         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
32436         can be used in subdirectories.
32437
32438 2000-12-29  Paul Eggert  <eggert@twinsun.com>
32439
32440         * lib/modechange.c: Do not assume that mode_t uses the
32441         traditional octal encoding.  E.g. "chmod 1 FOO" should set
32442         the other-execute bit of FOO even if S_IXOTH != 1.
32443
32444         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
32445         WOTH, XOTH, ALLM): New macros.
32446         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
32447          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
32448         Use them.
32449         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
32450         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
32451         (mode_compile):
32452         No need to use uintmax_t; unsigned long is long enough.
32453         Don't bother to get suffix since we don't use it.
32454
32455 2000-12-26  Jim Meyering  <meyering@lucent.com>
32456
32457         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
32458         better with autoheader.
32459
32460 2000-12-24  Jim Meyering  <meyering@lucent.com>
32461
32462         * lib/hash.c (is_prime): Return explicit boolean values.
32463         (hash_get_first): Return NULL to appease Irix5.6's 89.
32464         Reported by Nelson Beebe.
32465
32466 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
32467
32468         * lib/localcharset.c (locale_charset): Add support for Win32.
32469
32470 2000-12-18  Paul Eggert  <eggert@twinsun.com>
32471
32472         * lib/physmem.h, lib/physmem.c: New files.
32473
32474         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
32475         (noinst_HEADERS): Add physmem.h.
32476
32477         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
32478         't' for compatibility with Solaris 8 sort.
32479
32480 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
32481
32482         * lib/config.charset: Add support for BeOS.
32483
32484 2000-12-17  Jim Meyering  <meyering@lucent.com>
32485
32486         * m4/dos.m4 (jm_AC_DOS): New file and macro.
32487         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
32488
32489 2000-12-16  Jim Meyering  <meyering@lucent.com>
32490
32491         This bug had a serious impact on chown: `chown N:M FILE' (for integer
32492         N and M) would have treated it like `chown N:N FILE'.
32493
32494         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
32495
32496 2000-12-16  Jim Meyering  <meyering@lucent.com>
32497
32498         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
32499         SHELLS_FILE to a file name that's useful on djgpp systems.
32500         Include stdlib.h.
32501         (ADDITIONAL_DEFAULT_SHELLS): Define.
32502         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
32503         Based mostly on a patch from Prashant TR.
32504
32505 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
32506
32507         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
32508         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
32509         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
32510
32511 2000-12-08  Andreas Schwab  <schwab@suse.de>
32512
32513         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
32514         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
32515
32516 2000-12-07  Jim Meyering  <meyering@lucent.com>
32517
32518         * lib/stripslash.c (ISSLASH): Define.
32519         (strip_trailing_slashes): Use ISSLASH rather than comparing against
32520         `/'.
32521         From Prashant TR.
32522
32523         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
32524         (dir_name_r): Declare this function as static.
32525         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
32526         manifest itself on a name containing a mix of slashes and
32527         backslashes.
32528         Make this function work with names starting with a DOS-style
32529         drive letter and colon prefix.
32530         (dir_name): Append `.' if necessary.
32531         Based mostly on patches from Prashant TR and Eli Zaretskii.
32532
32533         * lib/dirname.h (dir_name_r): Remove prototype.
32534
32535 2000-12-06  Paul Eggert  <eggert@twinsun.com>
32536
32537         * m4/off_t-format.m4: Remove this file.
32538         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
32539
32540 2000-12-06  Jim Meyering  <meyering@lucent.com>
32541
32542         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
32543         replacement strtoull, we may well need the replacement strtoul, too.
32544         Check for declarations of strtoul and strtoull.
32545         Check for strtol.  Mainly as a cue to cause automake to include
32546         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
32547         Check for limits.h -- strtol.c needs it.
32548
32549 2000-12-05  Jim Meyering  <meyering@lucent.com>
32550
32551         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
32552
32553 2000-12-04  Jim Meyering  <meyering@lucent.com>
32554
32555         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
32556         Also include memory.h, stdlib.h, unistd.h if appropriate.
32557         Reported by Andreas Jaeger (conflicting declaration of malloc).
32558
32559 2000-12-02  Jim Meyering  <meyering@lucent.com>
32560
32561         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
32562         * m4/jm-macros.m4 (jm_MACROS): require it.
32563
32564 2000-12-02  Jim Meyering  <meyering@lucent.com>
32565
32566         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
32567
32568 2000-12-01  Paul Eggert  <eggert@twinsun.com>
32569
32570         * lib/memrchr.c: Include <config.h> before any system include file.
32571
32572 2000-11-30  Jim Meyering  <meyering@lucent.com>
32573
32574         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
32575
32576 2000-11-30  Jim Meyering  <meyering@lucent.com>
32577
32578         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
32579
32580 2000-11-29  Paul Eggert  <eggert@twinsun.com>
32581
32582         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
32583
32584 2000-11-26  Jim Meyering  <meyering@lucent.com>
32585
32586         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
32587
32588 2000-11-22  Paul Eggert  <eggert@twinsun.com>
32589
32590         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
32591         size of (size_t) -1; it's not portable.
32592
32593 2000-11-17  Jim Meyering  <meyering@lucent.com>
32594
32595         * lib/strstr.c: Update from GNU libc.
32596
32597 2000-11-17  Akim Demaille  <akim@epita.fr>
32598
32599         * lib/obstack.h: Formatting changes.
32600         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
32601         prevent type checking.
32602         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
32603         cast the value to (void *): assigning a `foo *' to a `void *'
32604         variable is valid.
32605         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
32606
32607 2000-11-16  Jim Meyering  <meyering@lucent.com>
32608
32609         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
32610
32611 2000-11-11  Jim Meyering  <meyering@lucent.com>
32612
32613         * lib/error.c: Add a couple #includes, merging from GNU libc version.
32614
32615 2000-11-10  Jim Meyering  <meyering@lucent.com>
32616
32617         * lib/obstack.h: Update from GNU libc.
32618         * lib/obstack.c: Likewise.
32619
32620 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
32621
32622         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
32623
32624 2000-11-06  Paul Eggert  <eggert@twinsun.com>
32625
32626         * lib/getusershell.c (setusershell): Use rewind rather than
32627         fseek/fseeko, to avoid configuration hassles with fseeko.
32628         Don't bother opening SHELLS_FILE if shellstream is NULL;
32629         it's not necessary.
32630
32631 2000-11-05  Jim Meyering  <meyering@lucent.com>
32632
32633         * lib/makepath.h (make_dir): Declare.
32634         * lib/makepath.c (make_dir): Remove `static' attribute.
32635         Tweak a comment.
32636
32637 2000-11-04  Jim Meyering  <meyering@lucent.com>
32638
32639         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
32640
32641 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
32642
32643         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
32644         last one in a bucket, advance to the next bucket.
32645
32646 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
32647
32648         * lib/fnmatch.c: Do not comment out all the code if we are using
32649         the GNU C library, because in some cases we are replacing buggy
32650         code in the GNU C library itself.
32651
32652 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
32653
32654         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
32655         (regex_compile): Catch bogus \(\1\).
32656
32657 2000-10-30  Paul Eggert  <eggert@twinsun.com>
32658
32659         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
32660         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
32661         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
32662
32663 2000-10-30  Paul Eggert  <eggert@twinsun.com>
32664
32665         * lib/error.h, getline.h, modechange.h:
32666         Remove "2000" from Copyright line, as the file hasn't been
32667         changed this year other than in the copyright notice.
32668
32669         * lib/xalloc.h: Add "2000" to Copyright line, as this file
32670         was changed this year.
32671
32672 2000-10-29  Jim Meyering  <meyering@lucent.com>
32673
32674         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
32675         renaming.
32676         * m4/ls-mntd-fs.m4: Likewise
32677
32678 2000-10-29  Jim Meyering  <meyering@lucent.com>
32679
32680         * lib/xstat.in: Fix grammar in comment.
32681
32682 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
32683
32684         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
32685         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
32686         doesn't define __restrict_arr.
32687
32688 2000-10-28  Jim Meyering  <meyering@lucent.com>
32689
32690         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
32691         (jm_PREREQ_MEMCHR): New function.
32692
32693 2000-10-28  Jim Meyering  <meyering@lucent.com>
32694
32695         * lib/memchr.c: Update from libc.
32696         Adjust for portability:
32697         [HAVE_STDLIB_H]: Include stdlib.h.
32698         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
32699         Undef __memchr, too.
32700         [!weak_alias]: Define __memchr to memchr.
32701
32702         * lib/regex.c: Update from libc.
32703         * lib/regex.h: Likewise.
32704         * lib/getopt1.c: Likewise.
32705         * lib/memcmp.c: Likewise.
32706
32707         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
32708         Avoid using fseek, when possible -- it's broken by design.
32709         Patch by Ulrich Drepper.
32710
32711 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
32712
32713         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
32714         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
32715         Giving in to popular pressure to shut up the compiler with casts.
32716
32717 2000-10-26  Jim Meyering  <meyering@lucent.com>
32718
32719         * lib/strftime.c: Update from libc.
32720
32721 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
32722
32723         * regex.c: More `unsigned char' -> `re_char' changes.
32724         Also change several `int' into `re_wchar_t'.
32725         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
32726         (PUSH_FAILURE_POINTER): Don't cast any more.
32727         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
32728         We want GCC to complain, since this piece of code makes
32729         re_match non-reentrant, which *should* be fixed.
32730         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
32731         (EXTEND_BUFFER): Use RETALLOC.
32732         (SET_LIST_BIT): Don't cast.
32733         (re_wchar_t): New type.
32734         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
32735         that those two functions will always properly return.
32736         (IMMEDIATE_QUIT_CHECK): Cast to void.
32737         (analyse_first): Use recursion rather than an explicit stack.
32738         (re_compile_fastmap): Can't fail anymore.
32739         (re_search_2): Don't check re_compile_fastmap for failure.
32740         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
32741         Now also sets the new value (passed in a new argument).
32742         (re_match_2_internal): Use it.
32743         Also, use a new var `reg' of type size_t when looping through regs
32744         rather than reuse the inappropriate `mcnt'.
32745
32746 2000-10-25  Jim Meyering  <meyering@lucent.com>
32747
32748         * lib/obstack.c: Update from libc.
32749
32750 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
32751
32752         * regex.c (regex_compile): Change the way of handling a range from
32753         a char less than 256 to a char not less than 256.
32754
32755 2000-10-24  Andrew Innes  <andrewi@gnu.org>
32756
32757         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
32758         NT-Emacs only.
32759         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
32760         so that re_search functions only quit when callers expect them to.
32761
32762 2000-10-23  Jim Meyering  <meyering@lucent.com>
32763
32764         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
32765         wrong.  That set_locale call must not have any side effects.
32766         From Paul Eggert.
32767
32768 2000-10-22  Jim Meyering  <meyering@lucent.com>
32769
32770         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
32771         [CYCLIC]: Remove now-unused definition.
32772
32773         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
32774         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
32775         Suggestion from Ulrich Drepper.
32776
32777 2000-10-21  Jim Meyering  <meyering@lucent.com>
32778
32779         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
32780         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
32781         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
32782
32783 2000-10-21  Jim Meyering  <meyering@lucent.com>
32784
32785         * lib/dirname.c (memrchr): Declare if necessary.
32786         (dir_name): Remove the restriction that there be no
32787         trailing slashes.  Now, this code skips past them, effectively
32788         ignoring them.
32789         [TEST_DIRNAME] (main): New unit tests.
32790
32791         * lib/memrchr.c: New file from GNU libc.
32792         Undef __memrchr, too.
32793         [!weak_alias]: Define __memrchr to memrchr.
32794         Guard weak_alias use with `#ifdef weak_alias'.
32795
32796 2000-10-21  Jim Meyering  <meyering@lucent.com>
32797
32798         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
32799         (dir_name): Use dir_name_r.
32800         * lib/dirname.h (dir_name_r): Declare it.
32801
32802 2000-10-17  Jim Meyering  <meyering@lucent.com>
32803
32804         * lib/quote.h (PARAMS): Define and use.
32805         Reported by Akim Demaille.
32806
32807         * lib/getopt.c: Update from libc.
32808
32809 2000-10-16  Jim Meyering  <meyering@lucent.com>
32810
32811         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
32812         setlocale.
32813         From Jan Fedak.
32814
32815 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
32816
32817         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
32818
32819 2000-09-25  Jim Meyering  <meyering@lucent.com>
32820
32821         * lib/md5.h (rol): Define (from GnuPG).
32822
32823         * lib/sha.c: Give credit (GnuPG) where due.
32824         (M): Use rol rather than open-coding it.
32825         Add a FIXME comment.
32826
32827 2000-09-21  Jim Meyering  <meyering@lucent.com>
32828
32829         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
32830         Reported by Michael Stone.
32831
32832 2000-09-20  Jim Meyering  <meyering@lucent.com>
32833
32834         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
32835         (noinst_HEADERS): Add sha.h.
32836         Based on code from Scott G. Miller and from GnuPG.
32837
32838 2000-09-18  Jim Meyering  <meyering@lucent.com>
32839
32840         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
32841         LIBS. Otherwise, everyone ends up linking with -lelf for some
32842         configurations.
32843         Reported by Mike Stone.
32844
32845 2000-09-15  Jim Meyering  <meyering@lucent.com>
32846
32847         * lib/regex.c: Update from libc.
32848
32849 2000-09-10  Jim Meyering  <meyering@lucent.com>
32850
32851         * lib/getopt.c (_getopt_internal): Update from glibc.
32852
32853 2000-09-09  Jim Meyering  <meyering@lucent.com>
32854
32855         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
32856         think it should be used as a general replacement for isascii.
32857         * lib/fnmatch.c: Likewise.
32858         * lib/mbswidth.c: Likewise
32859         * lib/regex.c: Likewise.
32860
32861         Don't use atoi.
32862         * lib/userspec.c: Include sys/param.h and limits.h.
32863         Include xstrtol.h.
32864         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
32865         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
32866         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
32867         UID, GID.  Check range.
32868
32869 2000-09-06  Jim Meyering  <meyering@lucent.com>
32870
32871         * lib/getopt.c (_getopt_internal): Update from glibc.
32872
32873 2000-08-30  Jim Meyering  <meyering@lucent.com>
32874
32875         * lib/strftime.c: Merge in changes from GNU libc.
32876
32877 2000-08-26  Jim Meyering  <meyering@lucent.com>
32878
32879         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
32880         * m4/fpending.m4: New file.
32881
32882 2000-08-26  Jim Meyering  <meyering@lucent.com>
32883
32884         * lib/closeout.c: Include "__fpending.h".
32885         (close_stdout_status): Return right away if there's nothing to flush.
32886
32887         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
32888         * lib/__fpending.c: New file.
32889         * lib/__fpending.h: New file.
32890
32891 2000-08-20  Jim Meyering  <meyering@lucent.com>
32892
32893         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
32894         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
32895         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
32896
32897 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
32898
32899         Improve fileutils installation on systems where running
32900         programs (like install) can't be unlinked.
32901         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
32902         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
32903
32904 2000-08-07  Paul Eggert  <eggert@twinsun.com>
32905
32906         Standardize on "memory exhausted" instead of "Memory exhausted"
32907         or "virtual memory exhausted".
32908         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
32909         "virtual memory exhausted".
32910         * lib/same.c (same_name): Invoke xalloc_die instead of printing
32911         our own message.
32912         * lib/userspec.c (parse_user_spec): Likewise.
32913         * lib/bumpalloc.h: comment fix
32914         * lib/same.c, userspec.c: Include xalloc.h.
32915
32916         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
32917         not char *const and pointing to a constant array.
32918         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
32919         (xrealloc): Comment fix.
32920
32921         * lib/userspec.c (parse_user_spec):
32922         Don't translate a message until just before returning,
32923         to avoid unnecessary translation.
32924
32925 2000-08-07  Jim Meyering  <meyering@lucent.com>
32926
32927         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
32928         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
32929         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
32930         getgroups.c, gethostname.c, getopt.h, group-member.c,
32931         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
32932         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
32933         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
32934         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
32935         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
32936         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
32937         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
32938         yesno.c: Back out Copyright date changes for each file with no change
32939         this year.  This eases coordination with other programs using the same
32940         source code modules.  From Paul Eggert.
32941
32942 2000-08-06  Paul Eggert  <eggert@twinsun.com>
32943
32944         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
32945         not char, for compatibility with glibc 2.1.3 strftime.c.
32946
32947 2000-08-03  Greg McGary  <greg@mcgary.org>
32948
32949         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
32950         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
32951         (EXTEND_BUFFER): Use them.
32952
32953 2000-08-01  Jim Meyering  <meyering@lucent.com>
32954
32955         * lib/dirname.c (ISSLASH): Define.
32956         (BACKSLASH_IS_PATH_SEPARATOR): Define.
32957         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
32958         both `\' and `/' may be use as path separators.
32959         Based on a patch from Prashant TR.
32960
32961 2000-07-31  Paul Eggert  <eggert@twinsun.com>
32962
32963         * lib/quotearg.c (quotearg_n_options): Don't make the initial
32964         slot vector a constant, since it might get modified.
32965
32966 2000-07-31  Jim Meyering  <meyering@lucent.com>
32967
32968         * lib/xmalloc.c: Use `virtual memory exhausted', not
32969         `Memory exhausted'.
32970         * lib/obstack.c (print_and_abort): Likewise.
32971
32972 2000-07-30  Paul Eggert  <eggert@twinsun.com>
32973
32974         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
32975         buffer, so that the caller can always quote one small
32976         component of a "memory exhausted" message in slot 0.
32977         From a suggestion by Jim Meyering.
32978
32979 2000-07-30  Jim Meyering  <meyering@lucent.com>
32980
32981         * lib/makepath.c (make_path): Quote the other instance, too.
32982
32983         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
32984         (STATIC_BUF_SIZE): Define.
32985         (quotearg_n_options): Use only statically allocated storage when
32986         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
32987         than STATIC_BUF_SIZE.
32988
32989 2000-07-29  Jim Meyering  <meyering@lucent.com>
32990
32991         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
32992         * lib/dirname.c (dir_name): Likewise.
32993
32994         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
32995         `/'.
32996
32997         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
32998         (dir_name): Assert that there are no trailing slashes.
32999
33000 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
33001
33002         * lib/mbswidth.h (mbswidth): Add a flags argument.
33003         (mbswidth): New declaration.
33004         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
33005         * lib/mbswidth.c (mbswidth): Add a flags argument.
33006         (mbsnwidth): New function.
33007
33008 2000-07-24  Jim Meyering  <meyering@lucent.com>
33009
33010         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
33011
33012 2000-07-23  Paul Eggert  <eggert@twinsun.com>
33013
33014         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
33015
33016 2000-07-23  Paul Eggert  <eggert@twinsun.com>
33017
33018         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
33019         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
33020         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
33021         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
33022         invoke multibyte primitives.
33023
33024 2000-07-23  Paul Eggert  <eggert@twinsun.com>
33025
33026         * lib/quotearg.c:
33027         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
33028         so that mbstate_t is always defined.
33029
33030         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
33031         be 1 in at least one GCC installation, and this configuration
33032         error is likely to be common.  Ignoring MB_LEN_MAX hurts
33033         performance on hosts that have mbrtowc but have only unibyte
33034         locales, but I assume these hosts are rare.
33035
33036 2000-07-23  Paul Eggert  <eggert@twinsun.com>
33037
33038         * lib/mbswidth.c (_XOPEN_SOURCE):
33039         Don't define; this causes problems on Solaris 7.
33040         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
33041
33042 2000-07-23  Jim Meyering  <meyering@lucent.com>
33043
33044         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
33045         too: getgrgid, getpwuid, getuid.
33046
33047 2000-07-23  Jim Meyering  <meyering@lucent.com>
33048
33049         * lib/basename.c (base_name): Add an assertion.
33050
33051 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
33052
33053         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
33054         shadow its mbsinit function.
33055
33056 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
33057
33058         * lib/mbswidth.h: New file.
33059         * lib/mbswidth.c: New file.
33060         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
33061         (noinst_HEADERS): Add mbswidth.h.
33062
33063 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
33064
33065         * lib/config.charset: Add support for FreeBSD. Improve support for
33066         HP-UX and IRIX 6.
33067
33068 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
33069
33070         * m4/mbswidth.m4: New file.
33071         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
33072
33073 2000-07-15  Jim Meyering  <meyering@lucent.com>
33074
33075         * lib/makepath.c: Include quote.h.
33076         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
33077         corresponding argument in a `quote (...)' call.
33078         Give better diagnostics.
33079
33080         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
33081         (noinst_HEADERS): Add quote.h.
33082
33083         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
33084         from tar's src/misc.c.
33085         * lib/quote.h: New file.  Prototypes for same.
33086
33087 2000-07-14  Paul Eggert  <eggert@twinsun.com>
33088
33089         From a suggestion by Bruno Haible.
33090         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
33091         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
33092         to decide whether to define the BeOS workaround macro;
33093         this adjusts to the change to AC_MBSTATE_T.
33094
33095 2000-07-14  Jim Meyering  <meyering@lucent.com>
33096
33097         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
33098         jm_AC_TYPE_UINTMAX_T.
33099
33100 2000-07-13  Paul Eggert  <eggert@twinsun.com>
33101
33102         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
33103
33104         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
33105         quotearg_buffer_restyled): Add support for
33106         clocale_quoting_style.  Undo previous change to
33107         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
33108         and "{RIGHT QUOTATION MARK}" msgids.
33109
33110 2000-07-10  Paul Eggert  <eggert@twinsun.com>
33111
33112         From a suggestion by Bruno Haible.
33113         * m4/mbstate_t.m4 (AC_MBSTATE_T):
33114         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
33115         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
33116         and mbstate_t, to a single-part test that simply defines mbstate_t.
33117         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
33118         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
33119
33120 2000-07-10  Jim Meyering  <meyering@lucent.com>
33121
33122         * m4/strerror_r.m4: Mirror the correction made in autoconf.
33123
33124         * m4/gnu-source.m4: Output to confdefs.h directly.
33125         Suggestion from Akim Demaille.
33126
33127 2000-07-09  Paul Eggert  <eggert@twinsun.com>
33128
33129         The old behavior of quoting `like this' doesn't look good with
33130         newer, ISO-style fonts.  See:
33131         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
33132
33133         Instead, quote "like this" by default.  Let the translator
33134         tailor the locale-specific quoting behavior by providing
33135         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
33136
33137         * lib/quotearg.c (N_): New macro.
33138         (gettext_default): New function.
33139         (quotearg_buffer_restyled): Use
33140         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
33141         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
33142
33143 2000-07-09  Jim Meyering  <meyering@lucent.com>
33144
33145         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
33146         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
33147
33148         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
33149         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
33150
33151 2000-07-09  Jim Meyering  <meyering@lucent.com>
33152
33153         * lib/Most files: Update copyright dates to include 2000.
33154
33155 2000-07-08  Jim Meyering  <meyering@lucent.com>
33156
33157         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
33158         if not defined.
33159         (xgethostname): Remove now-unnecessary #ifdef.
33160         Move declaration of `err' into loop where it's used.
33161
33162 2000-07-05  Paul Eggert  <eggert@twinsun.com>
33163         and Bruno Haible  <haible@clisp.cons.org>
33164
33165         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
33166         only if the test for an object-type mbstate_t fails.  This
33167         prevents us from mistakenly reporting that mbstate_t is a
33168         system object type after we "#define mbstate_t int" to work
33169         around its lack.
33170
33171 2000-07-05  Paul Eggert  <eggert@twinsun.com>
33172         and Bruno Haible  <haible@clisp.cons.org>
33173
33174         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
33175
33176 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
33177
33178         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
33179         to strerror_r.
33180         Include <ctype.h> for use of isalpha.
33181
33182 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
33183
33184         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
33185         by allocating a larger buffer. Test the gethostname return value for
33186         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
33187         returns an error and ENAMETOOLONG isn't defined.
33188
33189 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
33190
33191         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
33192         dimension.
33193
33194 2000-07-04  Jim Meyering  <meyering@lucent.com>
33195
33196         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
33197         of the deprecated AC_CHECKING.
33198
33199 2000-07-04  Jim Meyering  <meyering@lucent.com>
33200
33201         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
33202         Reported by Bruno Haible.
33203
33204 2000-07-04  Jim Meyering  <meyering@lucent.com>
33205
33206         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
33207         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
33208         lacks mbrtowc.
33209
33210 2000-07-03  Paul Eggert  <eggert@twinsun.com>
33211
33212         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
33213         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
33214
33215 2000-07-03  Paul Eggert  <eggert@twinsun.com>
33216         and Bruno Haible  <haible@clisp.cons.org>
33217
33218         * lib/quotearg.c (mbrtowc):
33219         Assign to *pwc, and return 1 only if result is nonzero.
33220         (iswprint): Use ISPRINT when substituting our own mbrtowc.
33221
33222 2000-07-03  Jim Meyering  <meyering@lucent.com>
33223
33224         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
33225
33226 2000-07-03  Jim Meyering  <meyering@lucent.com>
33227
33228         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
33229         This is necessary to get a definition of e.g., UTMP_FILE on
33230         HP-UX 10.20.
33231         From Bob Proulx.
33232
33233 2000-07-02  Jim Meyering  <meyering@lucent.com>
33234
33235         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
33236
33237         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
33238         AC_LIBOBJ(function_name).
33239         * m4/chown.m4: Likewise.
33240         * m4/fnmatch.m4: Likewise.
33241         * m4/ftruncate.m4: Likewise.
33242         * m4/getgroups.m4: Likewise.
33243         * m4/getline.m4: Likewise.
33244         * m4/group-member.m4: Likewise.
33245         * m4/jm-macros.m4: Likewise.
33246         * m4/lstat.m4: Likewise.
33247         * m4/malloc.m4: Likewise.
33248         * m4/memcmp.m4: Likewise.
33249         * m4/nanosleep.m4: Likewise.
33250         * m4/putenv.m4: Likewise.
33251         * m4/realloc.m4: Likewise.
33252         * m4/regex.m4: Likewise.
33253         * m4/stat.m4: Likewise.
33254         * m4/strftime.m4: Likewise.
33255
33256 2000-07-02  Jim Meyering  <meyering@lucent.com>
33257
33258         * lib/quotearg.c (mbstate_t): Don't define here.
33259
33260 2000-07-02  Jim Meyering  <meyering@lucent.com>
33261
33262         * lib/nanosleep.c (SIGCONT): Define if not already defined.
33263
33264 2000-07-01  Jim Meyering  <meyering@lucent.com>
33265
33266         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
33267
33268 2000-07-01  Jim Meyering  <meyering@lucent.com>
33269
33270         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
33271         problem.
33272
33273 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
33274
33275         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
33276         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
33277
33278 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
33279
33280         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
33281         per change in ../m4/ls-mntd-fs.m4.
33282         (read_filesystem_list): Ignore symbolic links.
33283
33284 2000-06-29  Jim Meyering  <meyering@lucent.com>
33285
33286         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
33287         for declaration of strcmp.
33288
33289         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
33290
33291         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
33292         Avoid warning by casting result to `char *' to remove `const'.
33293
33294 2000-06-28  Jim Meyering  <meyering@lucent.com>
33295
33296         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
33297         included by quotearg.c, for which we perform this test.  From
33298         Bruno Haible.
33299
33300 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
33301
33302         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
33303         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
33304         <utmpx.h> exists, put readutmp.o into LIBOBJS.
33305
33306 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
33307
33308         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
33309
33310 2000-06-26  Paul Eggert  <eggert@twinsun.com>
33311
33312         savedir now sets errno on failure and invokes xmalloc to get memory.
33313         Fix a couple of other minor bugs while we're at it.
33314
33315         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
33316         (NAMLEN): Remove macro.
33317         (malloc, realloc): Remove decls.
33318         (stpcpy): Likewise.
33319         ("xalloc.h"): Include.
33320         (NAME_SIZE_DEFAULT): New macro.
33321         (savedir): Use xmalloc / xrealloc to allocate memory.
33322         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
33323         Skip "" directory entries.
33324         Use strlen to calculate directory entry length, since the old method
33325         is rarely used these days and isn't worth supporting.
33326         Don't use a pointer after freeing it.
33327         Check for integer overflow when calculating allocation size.
33328         Use memcpy to copy entries, instead of stpcpy.
33329         Set errno properly when returning NULL.
33330         Check for readdir error.
33331
33332 2000-06-26  Jim Meyering  <meyering@lucent.com>
33333
33334         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
33335
33336 2000-06-25  Jim Meyering  <meyering@lucent.com>
33337
33338         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
33339         Linux header bug when _XOPEN_SOURCE is defined to 500.
33340
33341 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
33342
33343         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
33344         deficiency.
33345
33346 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
33347
33348         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
33349         Include xalloc.h.
33350         Don't include <stdlib.h>.  Don't declare malloc, realloc.
33351
33352 2000-06-24  Jim Meyering  <meyering@lucent.com>
33353
33354         * m4/strerror_r.m4: Revive this file -- to try out an experimental
33355         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
33356         for which strerror does return char*, but which lacks a conveniently
33357         accessible declaration of the function.  If the compile-test says
33358         strerror_r doesn't work, then resort to a `run'-test that works on
33359         BeOS and segfaults on DEC Unix.
33360
33361 2000-06-24  Jim Meyering  <meyering@lucent.com>
33362
33363         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
33364
33365 2000-06-23  Paul Eggert  <eggert@twinsun.com>
33366
33367         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
33368         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
33369
33370 2000-06-23  Paul Eggert  <eggert@twinsun.com>
33371
33372         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
33373         (mbrtowc, mbstate_t): Define substitutes if
33374         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
33375         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
33376         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
33377
33378 2000-06-23  Jim Meyering  <meyering@lucent.com>
33379
33380         * m4/afs.m4: Add missing AC_MSG_RESULT.
33381         Reported by Bruno Haible.
33382
33383         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
33384         Suggestion from Bruno Haible.
33385
33386 2000-06-23  Jim Meyering  <meyering@lucent.com>
33387
33388         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
33389
33390 2000-06-21  Jim Meyering  <meyering@lucent.com>
33391
33392         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
33393
33394 2000-06-21  Jim Meyering  <meyering@lucent.com>
33395
33396         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
33397         (noinst_HEADERS): Add getstr.h.
33398
33399         * lib/getline.c (getstr): Move into a separate file.
33400         * lib/getstr.c (getstr): New file, extracted from getline.c, with
33401         the following changes: new parameter, delim2; both delim[12]
33402         parameters have type `int', not `char'.  The latter would lose
33403         with 8-bit delimiters.
33404         * lib/getstr.h: New file.
33405
33406 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
33407
33408         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
33409         than 1024, return a memory chunk of least possible size, instead
33410         of size PATH_MAX + 2. In the loop, increment the size proportionally.
33411         Use free/xmalloc instead of xrealloc to avoid copying for very long
33412         paths.
33413
33414 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
33415
33416         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
33417         the empty string.
33418
33419 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
33420
33421         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
33422         address, not strdup.  Include <stdlib.h> and don't declare free().
33423
33424 2000-06-19  Jim Meyering  <meyering@lucent.com>
33425
33426         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
33427
33428 2000-06-18  Jim Meyering  <meyering@lucent.com>
33429
33430         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
33431
33432         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
33433         `checking whether...' message to be consistent with that of the
33434         lstat test.
33435
33436 2000-06-18  Jim Meyering  <meyering@lucent.com>
33437
33438         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
33439         Besides, these days every porting target provides a mkdir function.
33440
33441         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
33442         needed. (this snippet comes from src/system.h).
33443
33444 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
33445
33446         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
33447
33448 2000-06-15  Paul Eggert  <eggert@twinsun.com>
33449
33450         * lib/human.c (adjust_value): New function.
33451         (human_readable_inexact): Apply rounding style even when
33452         printing approximate values.
33453
33454 2000-06-14  Paul Eggert  <eggert@twinsun.com>
33455
33456         * lib/human.c (human_readable_inexact): Allow an input block
33457         size that is not a multiple of the output block size, and vice versa.
33458         Reported by Piergiorgio Sartor.
33459
33460 2000-06-14  Paul Eggert  <eggert@twinsun.com>
33461
33462         * lib/getdate.y (get_date): Apply relative times after time
33463         zone indicator, not before.  Reported by Todd A. Jacobs.
33464
33465 2000-06-13  Jim Meyering  <meyering@lucent.com>
33466
33467         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
33468
33469         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
33470
33471 2000-06-12  Paul Eggert  <eggert@twinsun.com>
33472
33473         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
33474
33475 2000-06-12  Jim Meyering  <meyering@lucent.com>
33476
33477         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
33478         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
33479         optional argument.
33480         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
33481         the optional argument, `lib'.
33482
33483 2000-06-08  Jim Meyering  <meyering@lucent.com>
33484
33485         * m4/largefile.m4: Remove file (now that it's part of autoconf).
33486
33487 2000-06-04  Paul Eggert  <eggert@twinsun.com>
33488
33489         Rewrite largefile configuration so that we don't need to run
33490         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
33491         AC_CANONICAL_HOST in configure.in -- jmm]
33492
33493         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
33494         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
33495         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
33496         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
33497         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
33498         All uses changed.
33499         Instead of inspecting the output of getconf, try to compile the
33500         test program without and with the macro definition.
33501         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
33502         for getconf.  Instead, check for the needed flags by compiling
33503         test programs.
33504
33505 2000-06-04  Paul Eggert  <eggert@twinsun.com>
33506
33507         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
33508
33509 2000-06-04  Jim Meyering  <meyering@lucent.com>
33510
33511         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
33512         SunOS 4.1.4 for which gid_t is an unsigned type.
33513
33514 2000-06-03  Jim Meyering  <meyering@lucent.com>
33515
33516         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
33517         now that autoconf requires that.
33518
33519         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
33520         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
33521         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
33522
33523 2000-06-03  Jim Meyering  <meyering@lucent.com>
33524
33525         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
33526
33527 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
33528
33529         * m4/glibc21.m4: New file.
33530         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
33531
33532 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
33533
33534         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
33535         newer, don't install charset.alias.
33536         * lib/config.charset: Change the Linux/glibc rules so they become empty
33537         on glibc-2.1 or newer.
33538
33539 2000-06-02  Jim Meyering  <meyering@lucent.com>
33540
33541         * lib/mountlist.c: Back out last change.  Instead, do this...
33542         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
33543         me_dummy member using the same `ignore'-testing code.
33544         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
33545         fs_type strings.
33546         From Mark D. Roth.
33547
33548 2000-05-29  Jim Meyering  <meyering@lucent.com>
33549
33550         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
33551         mounts with the `ignore' attribute.  Based on a patch from
33552         Mark D. Roth.
33553
33554 2000-05-28  Jim Meyering  <meyering@lucent.com>
33555
33556         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
33557         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
33558         * m4/stat.m4: Likewise.
33559         * m4/lstat.m4: Likewise.
33560         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
33561
33562         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
33563         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
33564
33565 2000-05-26  Jim Meyering  <meyering@lucent.com>
33566
33567         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
33568
33569 2000-05-24  Jim Meyering  <meyering@lucent.com>
33570
33571         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
33572         autoconf requires that.
33573         * m4/lib-check.m4: Likewise.
33574         * m4/jm-macros.m4: Likewise.
33575         * m4/strftime.m4: Likewise.
33576
33577         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
33578         AC_CHECK_DECLS, now that autoconf requires that.
33579
33580 2000-05-22  Jim Meyering  <meyering@lucent.com>
33581
33582         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
33583         * m4/lstat.m4: Likewise.
33584
33585 2000-05-22  Jim Meyering  <meyering@lucent.com>
33586
33587         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
33588
33589 2000-05-20  Jim Meyering  <meyering@lucent.com>
33590
33591         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
33592         (jm_PREREQ): Use it.
33593
33594 2000-05-18  Jim Meyering  <meyering@lucent.com>
33595
33596         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
33597         back, too, since it may have been modified by allocate_entry.
33598         (hash_delete): Rewrite to use neither the assignment operator
33599         nor the comma operator in an if-expression.
33600
33601 2000-05-15  Paul Eggert  <eggert@twinsun.com>
33602
33603         * lib/closeout.c:
33604         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
33605         Remove; no longer needed.
33606         "quotearg.h": Add include.
33607         (file_name): Do not bother to explicitly initialize to NULL; it's less
33608         efficient on some hosts.
33609         (close_stdout_status): Remove test as to whether stdout was already
33610         closed; it breaks for the case "echo x | sort >&-".
33611         Quote file name colons.
33612         Do not assume that _("write error") lacks format strings.
33613
33614 2000-05-15  Jim Meyering  <meyering@lucent.com>
33615
33616         * lib/version-etc.c (version_etc_copyright): Update the copyright
33617         string used in all --version output.
33618
33619 2000-05-14  Jim Meyering  <meyering@lucent.com>
33620
33621         * lib/closeout.c (close_stdout_set_file_name): New function.
33622         (close_stdout_status): Use new file-scoped global.
33623         Return right away if fstat says the stdout file descriptor is invalid.
33624         * lib/closeout.h (close_stdout_set_file_name): Declare.
33625
33626 2000-05-10  Jim Meyering  <meyering@lucent.com>
33627
33628         * lib/closeout.c [default_exit_status]: New file-scoped variable.
33629         (close_stdout_set_status): New function.
33630         * lib/closeout.h (close_stdout_set_status): Declare.
33631
33632 2000-05-09  Jim Meyering  <meyering@lucent.com>
33633
33634         * m4/gettext.m4: Rename this...
33635         * m4/libintl.m4: ...to this.
33636
33637 2000-05-08  Jim Meyering  <meyering@lucent.com>
33638
33639         * lib/long-options.c: Don't include closeout.h.
33640         (parse_long_options): Don't call close_stdout for --version.
33641
33642 2000-05-06  Paul Eggert  <eggert@twinsun.com>
33643
33644         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
33645         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
33646         2.1.3 bug.  This avoids a clash when files like regex.c define
33647         _GNU_SOURCE.
33648
33649 2000-05-06  Jim Meyering  <meyering@lucent.com>
33650
33651         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
33652         (AC_REPLACE_FUNCS): Add strnlen.
33653
33654         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
33655         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
33656
33657         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
33658         AC_SEARCH_LIBS call for nanosleep.
33659         (LIB_NANOSLEEP): Set and AC_SUBST.
33660
33661 2000-05-06  Jim Meyering  <meyering@lucent.com>
33662
33663         * lib/strnlen.c: Undefine __strnlen and strnlen.
33664         [!weak_alias]: Define __strnlen to strnlen.
33665
33666         * lib/atexit.c: New file, from libiberty.
33667
33668 2000-05-06  Jim Meyering  <meyering@lucent.com>
33669
33670         * lib/closeout.c (close_stdout_status): Also check for errors on the
33671         stderr stream.
33672
33673 2000-05-05  Jim Meyering  <meyering@lucent.com>
33674
33675         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
33676         AC_SEARCH_LIBS call for clock_gettime.
33677         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
33678
33679         * m4/search-libs.m4: Update from autoconf.
33680
33681         su doesn't work on Solaris 2.6.
33682         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
33683         <shadow.h>.  Reported by Dragos Harabor.
33684
33685 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
33686
33687         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
33688         memcpy instead of xmalloc, xrealloc, path_concat.
33689         (locale_charset): Treat empty environment variables as absent.
33690         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
33691
33692 2000-05-04  Jim Meyering  <meyering@lucent.com>
33693
33694         * lib/getopt.c: Update from glibc.
33695         * lib/obstack.c: Likewise.
33696         * lib/obstack.h: Likewise.
33697         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
33698         file
33699
33700         * lib/regex.h: Likewise.
33701         * lib/strndup.c: Likewise.
33702         * lib/strnlen.c: New file, from glibc.
33703
33704 2000-05-03  Jim Meyering  <meyering@lucent.com>
33705
33706         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
33707
33708 2000-05-02  Paul Eggert  <eggert@twinsun.com>
33709
33710         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
33711         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
33712         compile-time test, rather than inspecting host and OS, to
33713         decide whether to define _LARGEFILE_SOURCE.
33714
33715 2000-05-01  Jim Meyering  <meyering@lucent.com>
33716
33717         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
33718
33719         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
33720         Based on a patch from Bruno Haible.
33721
33722 2000-05-01  Jim Meyering  <meyering@lucent.com>
33723
33724         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
33725
33726 2000-04-29  Jim Meyering  <meyering@lucent.com>
33727
33728         * lib/path-concat.c: Declare strdup only if it's not defined.
33729         * lib/canon-host.c: Likewise.
33730
33731 2000-04-28  Jim Meyering  <meyering@lucent.com>
33732
33733         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
33734         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
33735         is included first, then limits.h is included by locale.h by libintl.h.
33736         From John David Anglin.
33737
33738 2000-04-25  Jim Meyering  <meyering@lucent.com>
33739
33740         * lib/makepath.c (S_IRWXUGO): Define.
33741         (make_path): Always perform explicit chmod if MODE specifies any
33742         of the `special' permission bits.  Prompted by a bug report against
33743         install from Mate Wierdl and Joost van Baal.
33744
33745 2000-04-18  Jim Meyering  <meyering@lucent.com>
33746
33747         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
33748         (jm_PREREQ): Use it.
33749
33750 2000-04-18  Jim Meyering  <meyering@lucent.com>
33751
33752         * lib/README: New file.
33753
33754         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
33755         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
33756
33757 2000-04-17  Jim Meyering  <meyering@lucent.com>
33758
33759         Get it right :-)
33760         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
33761         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
33762         Suggestion from Akim Demaille.
33763
33764 2000-04-17  Jim Meyering  <meyering@lucent.com>
33765
33766         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
33767         the definition of it to rpl_strftime also defined-away the system's
33768         declaration.
33769
33770 2000-04-15  Jim Meyering  <meyering@lucent.com>
33771
33772         Use `C' to denote so-called `contiguous' files, the same way
33773         that tar does.
33774         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
33775         (ftypelet): Use S_ISCTG.
33776         From Michael Deutschmann.
33777
33778 2000-04-14  Jim Meyering  <meyering@lucent.com>
33779
33780         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
33781         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
33782         clobbered.
33783
33784 2000-04-14  Jim Meyering  <meyering@lucent.com>
33785
33786         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
33787
33788 2000-04-13  Jim Meyering  <meyering@lucent.com>
33789
33790         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
33791         AH_VERBATIM to insert required #ifndef into config.h.in.
33792         Suggestion from Akim Demaille.
33793
33794 2000-04-12  Jim Meyering  <meyering@lucent.com>
33795
33796         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
33797         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
33798         Christian Krackowizer.
33799
33800         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
33801         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
33802         (AC_SYS_LARGEFILE): Require.
33803         (AM_C_PROTOTYPES): Require.
33804
33805 2000-04-08  Jim Meyering  <meyering@lucent.com>
33806
33807         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
33808         names don't conflict.  Reported by Eli Zaretskii.
33809
33810 2000-04-07  Jim Meyering  <meyering@lucent.com>
33811
33812         * lib/putenv.c: Move inclusion of errno.h so it follows that of
33813         sys/types.h, to work around system header problems on AIX 3.2.5.
33814         From Bruno Haible.
33815
33816 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
33817
33818         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
33819         bug.  Deal with the different error behavior of Irix iconv.
33820
33821 2000-04-05  Paul Eggert  <eggert@twinsun.com>
33822
33823         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
33824         IRIX if the installer said otherwise.
33825
33826 2000-04-05  Jim Meyering  <meyering@lucent.com>
33827
33828         Portability tweaks required for ultrix4.3.
33829         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
33830         (jm_CHECK_DECLS): Add getutent to the list of functions.
33831         (_jm_DECL_HEADERS): Add utmpx.h.
33832         From John David Anglin.
33833
33834         * m4/strftime.m4: Back out the 2000-04-02 change.
33835         Instead of that change, simply undefine putenv in the test program.
33836
33837 2000-04-05  Jim Meyering  <meyering@lucent.com>
33838
33839         Portability tweaks required for ultrix4.3.
33840         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
33841         getutent.
33842         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
33843         * lib/canon-host.c: Declare strdup.
33844         * lib/path-concat.c: Likewise.
33845         From John David Anglin.
33846
33847 2000-04-04  Jim Meyering  <meyering@lucent.com>
33848
33849         Be more DOS 8.3-friendly.
33850         * lib/ref-add.sin: Renamed from ref-add.sed.in.
33851         * lib/ref-del.sin: Renamed from ref-del.sed.in.
33852         * lib/Makefile.am: Reflect renaming.
33853         Reported by Eli Zaretskii.
33854
33855         Use a temporary file name that won't clash with `charset.alias'
33856         in the DOS 8.3 name space.
33857         * lib/Makefile.am (charset_tmp): Define.
33858         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
33859         (uninstall-local): Likewise.
33860         Reported by Eli Zaretskii.
33861
33862 2000-04-03  Jim Meyering  <meyering@lucent.com>
33863
33864         * m4/gettext.m4: Fix typo in comment.
33865
33866         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
33867         textutils/configure.in).  Suggestion from Paul Eggert.
33868         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
33869
33870 2000-04-02  Paul Eggert  <eggert@twinsun.com>
33871
33872         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
33873         variable in the shell rather than using putenv, which isn't
33874         portable.  This avoids the configure-time inter-test dependency
33875         on the potentially-renamed putenv function.
33876
33877 2000-03-30  Paul Eggert  <eggert@twinsun.com>
33878
33879         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
33880         before checking struct stat.st_blksize, so that
33881         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
33882
33883 2000-03-29  Paul Eggert  <eggert@twinsun.com>
33884
33885         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
33886         since strftime.c uses HAVE_STRFTIME to decide whether to use
33887         the underlying strftime.
33888
33889 2000-03-29  Paul Eggert  <eggert@twinsun.com>
33890
33891         * lib/time/strftime.c (my_strftime): Make sure we call the system
33892         strftime, not ourselves, when invoking the underlying strftime.
33893
33894 2000-03-24  Jim Meyering  <meyering@lucent.com>
33895
33896         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
33897         (charset_alias): Define.
33898         (install-exec-local): Factor out common code.
33899         (uninstall-local): Split lines longer than 80.
33900         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
33901         (SUFFIXES): Define.
33902         (.sed.in.sed): New rule.  Don't redirect directly to $@.
33903         (CLEANFILES): Add ref-add.sed and ref-del.sed.
33904
33905 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
33906
33907         * lib/config.charset: Output a line containing "Packages using this
33908         file".
33909         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
33910         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
33911         ref-del.sed): New rules.
33912
33913 2000-03-17  Jim Meyering  <meyering@lucent.com>
33914
33915         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
33916         Otherwise, include <strings.h>
33917
33918 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
33919
33920         * lib/unicodeio.c (utf8_wctomb): New function.
33921         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
33922         format instead of in UCS-4 with platform dependent endianness.
33923
33924 2000-03-10  Jim Meyering  <meyering@lucent.com>
33925
33926         * m4/lib-check.m4: Look for getspnam in -lgen, too.
33927         From Marco Franzen.
33928
33929 2000-03-07  Paul Eggert  <eggert@twinsun.com>
33930
33931         * lib/savedir.c (savedir): Work even if directory size is
33932         negative; this can happen with some screwy NFS configurations.
33933
33934 2000-03-06  Jim Meyering  <meyering@lucent.com>
33935
33936         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
33937         if it's NULL (because we ran out of memory).  From Bruno Haible.
33938
33939 2000-03-05  Jim Meyering  <meyering@lucent.com>
33940
33941         * lib/localcharset.c ("path-concat.h"): Include.
33942         (get_charset_aliases): Use path_concat instead of ANSI string
33943         concatenation.
33944
33945         * lib/unicodeio.h (PARAMS): Define.
33946         Use it to guard prototype.
33947
33948 2000-03-04  Jim Meyering  <meyering@lucent.com>
33949
33950         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
33951         for lib/localcharset.c.
33952
33953 2000-03-04  Jim Meyering  <meyering@lucent.com>
33954
33955         * lib/Makefile.am (install-exec-local): Create $(libdir) before
33956         installing into it.
33957         (uninstall-local): Uncomment this rule so `make distcheck' works
33958         once again.
33959
33960         * lib/unicodeio.c (<errno.h>): Include it.
33961         (errno): Declare if not defined.
33962
33963         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
33964
33965         * lib/config.charset: New version, incorporating remarks from a linux
33966         i18n mailing list.  From Bruno Haible.
33967
33968 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
33969
33970         * m4/codeset.m4: New file.
33971         * m4/iconv.m4: New file.
33972         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
33973
33974 2000-03-03  Jim Meyering  <meyering@lucent.com>
33975
33976         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
33977
33978 2000-03-02  Jim Meyering  <meyering@lucent.com>
33979
33980         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
33981         the messages come out on separate lines.
33982
33983         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
33984         rather than jm_CHECK_DECLARATIONS.
33985         * m4/decl.m4: Remove now-unused file.
33986
33987         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
33988         geteuid.
33989
33990 2000-03-02  Jim Meyering  <meyering@lucent.com>
33991
33992         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
33993
33994 2000-03-01  Jim Meyering  <meyering@lucent.com>
33995
33996         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
33997         * lib/unicodeio.c: Likewise.
33998
33999 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
34000
34001         * lib/config.charset: New file.
34002         * lib/localcharset.c: New file.
34003         * lib/unicodeio.h, lib/unicodeio.c: New files.
34004         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
34005         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
34006         (noinst_HEADERS): Add unicodeio.h.
34007         (all-local, install-exec-local, charset.alias): New targets.
34008
34009 2000-02-28  Paul Eggert  <eggert@twinsun.com>
34010
34011         * lib/quotearg.c (ALERT_CHAR): New macro.
34012         (quotearg_buffer_restyled): Use it.
34013
34014 2000-02-27  Jim Meyering  <meyering@lucent.com>
34015
34016         * m4/check-decl.m4: Add getenv to the list.
34017
34018 2000-02-27  Jim Meyering  <meyering@lucent.com>
34019
34020         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
34021         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
34022
34023         * lib/backupfile.c: Guard inclusion of stdlib.h with
34024         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
34025         Declare malloc if needed.
34026
34027         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
34028         `#ifndef HAVE_DECL..'
34029         now that autoconf always defines the HAVE_DECL_ symbols.
34030         * lib/human.c: Likewise.
34031         * lib/same.c: Likewise.
34032         * lib/strtoumax.c: Likewise.
34033
34034         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
34035         declaration check was not run.
34036         * lib/hash.c: Likewise.
34037         * lib/human.c: Likewise.
34038         * lib/same.c: Likewise.
34039         * lib/strtoumax.c: Likewise.
34040
34041         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
34042         `.', then first look up the entire `.'-containing string as a login
34043         name.
34044
34045 2000-02-23  Jim Meyering  <meyering@lucent.com>
34046
34047         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
34048         in place of my hack.
34049
34050 2000-02-18  Paul Eggert  <eggert@twinsun.com>
34051
34052         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
34053         (textint): New typedef.
34054         (parser_control): Member year changed from int to textint.
34055         All uses changed.
34056         (YYSTYPE): Removed; replaced by %union with int and textint members.
34057         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
34058         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
34059         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
34060         (tSNUMBER, tUNUMBER): Now of type <textintval>.
34061         (date, number, to_year): Use width of number in digits, not its value,
34062         to determine whether it's a 2-digit year, or a 2-digit time.
34063         (yylex): Store number of digits of numeric tokens.
34064         Reported by John Kendall.
34065
34066         (parser_control): Changed from struct parser_control to typedef (for
34067         consistency).  All uses changed.
34068
34069         (tID): Removed; not used.
34070         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
34071
34072 2000-02-14  Paul Eggert  <eggert@twinsun.com>
34073
34074         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
34075         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
34076
34077 2000-02-12  Jim Meyering  <meyering@lucent.com>
34078
34079         * lib/userspec.c (ISDIGIT): Define it.
34080         (isdigit): Remove definition.
34081         (is_number): Use ISDIGIT, not isdigit.
34082         <libintl.h>: Include.
34083         (_ and N_): Define.
34084         (parse_user_spec): Mark translatable strings.
34085
34086 2000-02-10  Jim Meyering  <meyering@lucent.com>
34087
34088         With these changes, nanosleep.[ch] are finally enough like the other
34089         lib/* replacement files to compile on a few more losing systems.
34090
34091         * lib/nanosleep.h: Don't include config.h.
34092         Remove prototype from declaration of nanosleep.
34093         (PARAMS): Remove now-unneeded definition.
34094         * lib/nanosleep.c: #undef nanosleep.
34095         (rpl_nanosleep): Rename from nanosleep.
34096
34097 2000-02-10  Jim Meyering  <meyering@lucent.com>
34098
34099         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
34100         gnu_nanosleep to rpl_nanosleep.
34101
34102 2000-02-09  Jim Meyering  <meyering@lucent.com>
34103
34104         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
34105         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
34106
34107 2000-02-08  Akim Demaille  <akim@epita.fr>
34108
34109         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
34110         `[' and `]' and remove uses of `changequote'.
34111         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
34112         (AC_SYS_LARGEFILE): Likewise.
34113         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
34114         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
34115         of changequote.
34116         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
34117         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
34118         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
34119         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
34120
34121 2000-02-05  Jim Meyering  <meyering@lucent.com>
34122
34123         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
34124         Remove explicit use of AC_HEADER_TIME.  It is required by
34125         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
34126         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
34127         in autoconf whereby the expansion of the latter ended up preceding
34128         the expansion of its prerequisite, AC_HEADER_TIME.
34129         Reported by Volker Borchert.
34130
34131 2000-02-03  Jim Meyering  <meyering@lucent.com>
34132
34133         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
34134
34135 2000-02-03  Jim Meyering  <meyering@lucent.com>
34136
34137         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
34138         rather than with `#if HAVE_UTMPNAME'.
34139
34140 2000-02-02  Jim Meyering  <meyering@lucent.com>
34141
34142         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
34143         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
34144         Reported by Eli Zaretskii.
34145
34146 2000-02-01  Jim Meyering  <meyering@lucent.com>
34147
34148         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
34149
34150 2000-01-31  Jim Meyering  <meyering@lucent.com>
34151
34152         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
34153         functions.  Add the time.h and sys/time.h headers along with the
34154         AC_REQUIRE'ment of AC_HEADER_TIME.
34155
34156 2000-01-31  Jim Meyering  <meyering@lucent.com>
34157
34158         * lib/nanosleep.h (nanosleep): Guard declaration with
34159         `#if ! HAVE_DECL_NANOSLEEP'.
34160         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
34161         the declaration in that vendor's sys/timers.h.
34162         Reported by Christian Krackowizer.
34163
34164         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
34165         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
34166         (ISPRINT): Likewise.
34167         Reported by Tom Tromey.
34168
34169 2000-01-30  Jim Meyering  <meyering@lucent.com>
34170
34171         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
34172
34173         * m4/prereq.m4 (utmp_includes): Define.
34174         Check for ut_user and ut_name members in both struct utmpx
34175         and struct utmp.
34176
34177 2000-01-30  Jim Meyering  <meyering@lucent.com>
34178
34179         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
34180         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
34181         header files where only utmpx.ut_user is declared.
34182
34183         * lib/readutmp.h (UT_USER): Define.
34184
34185 2000-01-29  Jim Meyering  <meyering@lucent.com>
34186
34187         * m4/lib-check.m4: New file containing library-related checks from
34188         fileutils and sh-utils (textutils had none).
34189
34190 2000-01-28  Jim Meyering  <meyering@lucent.com>
34191
34192         * m4/perl.m4: Change format of warning message to look more like that
34193         from the missing script.  Suggestion from François Pinard.
34194
34195 2000-01-25  Jim Meyering  <meyering@lucent.com>
34196
34197         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
34198         well as time.h in the compile check.
34199         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
34200         Fix typo in cross-compiling case: s/yes/no/.
34201
34202 2000-01-23  Jim Meyering  <meyering@lucent.com>
34203
34204         * m4/jm-macros.m4: Move df-related tests here from
34205         fileutils/configure.in
34206
34207         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
34208         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
34209
34210         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
34211         s/space/ac_fsusage_space/.
34212         (jm_FILE_SYSTEM_USAGE): Take two parameters.
34213
34214         * m4/ftruncate.m4: New file (derived from part of
34215         fileutils/configure.in).
34216         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
34217         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
34218
34219         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
34220         AC_SUBST these here, rather than just in sh-util/configure.in, so
34221         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
34222         all the same.
34223         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
34224         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
34225         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
34226         (AC_SUBST(POW_LIBM)): Likewise.
34227         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
34228
34229 2000-01-23  Jim Meyering  <meyering@lucent.com>
34230
34231         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
34232         obstack.c.
34233
34234 2000-01-22  Jim Meyering  <meyering@lucent.com>
34235
34236         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
34237
34238         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
34239
34240         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
34241         configure.in
34242         (AC_CHECK_HEADERS): Likewise for sh-utils.
34243         (AC_CHECK_HEADERS): Likewise for textutils.
34244         Merge the three lists of headers.
34245
34246         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
34247         from fileutils' configure.in.
34248
34249         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
34250         code. Moved tests into their own function (_jm_DECL_HEADERS) in
34251         check-decl.m4.
34252
34253         * m4/check-decl.m4: Use #if rather than #ifdef.
34254         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
34255         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
34256         (_jm_DECL_HEADERS): Define new function.
34257         (jm_CHECK_DECLARATIONS): Require it.
34258
34259 2000-01-22  Jim Meyering  <meyering@lucent.com>
34260
34261         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
34262         [! HAVE_DECL_STRTOULL]: Declare strtoull.
34263         Required for some AIX systems.  Reported by Christian Krackowizer.
34264         [TESTING] (main): New function.
34265
34266         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
34267         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
34268         letters.
34269
34270         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
34271         iswprint.
34272
34273         * lib/strverscmp.c (ISDIGIT): Define.
34274         (strverscmp): Use ISDIGIT, not isdigit.
34275
34276 2000-01-19  Jim Meyering  <meyering@lucent.com>
34277
34278         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
34279         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
34280         defines `struct timespec' in <sys/time.h>
34281
34282         * m4/c-bs-a.m4: Remove uses of changequote altogether.
34283         Thanks to Akim for explaining.
34284
34285 2000-01-17  Paul Eggert  <eggert@twinsun.com>
34286
34287         * lib/nanosleep.c (nanosleep):
34288         Don't use SA_INTERRUPT to decide whether to call sigaction, as
34289         POSIX.1 doesn't require SA_INTERRUPT and some systems
34290         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
34291         it's been part of POSIX.1 since day 1 (in 1988).
34292
34293 2000-01-17  Jim Meyering  <meyering@lucent.com>
34294
34295         * lib/interlock: Remove unused file.  Reported by François Pinard.
34296
34297 2000-01-16  Paul Eggert  <eggert@twinsun.com>
34298
34299         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
34300         alert, backslash, formfeed, and vertical tab unnecessarily in
34301         shell quoting style.
34302
34303 2000-01-16  Jim Meyering  <meyering@lucent.com>
34304
34305         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
34306         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
34307         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
34308         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
34309
34310 2000-01-16  Jim Meyering  <meyering@lucent.com>
34311
34312         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
34313         because the latter didn't work.
34314
34315 2000-01-15  Jim Meyering  <meyering@lucent.com>
34316
34317         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
34318         (AC_REPLACE_FUNCS): Add memcpy and memset.
34319         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
34320         Add strpbrk.
34321         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
34322
34323 2000-01-12  Jim Meyering  <meyering@lucent.com>
34324
34325         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
34326         (jm_PREREQ): Use it.
34327         (jm_PREREQ_READUTMP): New macro.
34328         (jm_PREREQ): Use it.
34329
34330 2000-01-11  Paul Eggert  <eggert@twinsun.com>
34331
34332         Quote multibyte characters correctly.
34333         * m4/c-bs-a.m4: New file.
34334         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
34335         (jm_PREREQ): Use it.
34336
34337 2000-01-11  Paul Eggert  <eggert@twinsun.com>
34338
34339         * m4/uintmax_t.m4: Port to autoconf 2.13.
34340
34341 2000-01-08  Jim Meyering  <meyering@ascend.com>
34342
34343         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
34344         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
34345
34346 2000-01-04  Jim Meyering  <meyering@ascend.com>
34347
34348         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
34349         jm_STRUCT_DIRENT_D_TYPE.
34350         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
34351         jm_STRUCT_DIRENT_D_INO.
34352         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
34353         jm_STRUCT_UTIMBUF.
34354         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
34355         renamings.
34356         * m4/utime.m4: Likewise.
34357
34358         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
34359         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
34360
34361 2000-01-03  Paul Eggert  <eggert@twinsun.com>
34362
34363         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
34364         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
34365
34366 2000-01-02  Jim Meyering  <meyering@ascend.com>
34367
34368         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
34369         remember if this is necessary.
34370
34371 1999-12-26  Jim Meyering  <meyering@ascend.com>
34372
34373         * m4/jm-macros.m4: Use it here.
34374         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
34375
34376 1999-12-23  Jim Meyering  <meyering@ascend.com>
34377
34378         * m4/jm-macros.m4: Check for clock_gettime (moved from
34379         fileutils/configure.in)
34380         Check for gettimeofday.
34381
34382 1999-12-20  Jim Meyering  <meyering@ascend.com>
34383
34384         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
34385         autoconf-2.14a-1999-12-20.
34386
34387 1999-12-19  Jim Meyering  <meyering@ascend.com>
34388
34389         * m4/lstat-slash.m4: New file.
34390         * m4/jm-macros.m4: Use the new macro:
34391         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
34392
34393 1999-12-07  Jim Meyering  <meyering@ascend.com>
34394
34395         * m4/perl.m4: Require that File::Compare be available, too.
34396         Too many systems seem to lack it.
34397
34398         * m4/strftime.m4: Add checks for most of the cpp macros tested in
34399         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
34400
34401 1999-11-18  Paul Eggert  <eggert@twinsun.com>
34402
34403         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
34404         problem with the QNX 4.25 shell, which doesn't propagate exit
34405         status of failed commands inside shell assignments.
34406
34407 1999-11-17  Jim Meyering  <meyering@ascend.com>
34408
34409         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
34410
34411 1999-11-07  Jim Meyering  <meyering@ascend.com>
34412
34413         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
34414
34415 1999-11-06  Jim Meyering  <meyering@ascend.com>
34416
34417         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
34418         * m4/jm-macros.m4 (jm_MACROS): Use it here.
34419
34420 1999-11-05  Jim Meyering  <meyering@ascend.com>
34421
34422         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
34423         configure.in of textutils, fileutils, and sh-utils into this one
34424         (shared between those packages) file.
34425         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
34426         AC_STRUCT_ST_BLKSIZE.
34427
34428 1999-11-03  Jim Meyering  <meyering@ascend.com>
34429
34430         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
34431         of AC_CHECK_TYPE checks includes unistd.h.
34432         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
34433         Suggestion from Akim Demaille.
34434
34435 1999-10-30  Jim Meyering  <meyering@ascend.com>
34436
34437         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
34438         m4-quoted string.
34439         * m4/ls-mntd-fs.m4: Likewise.
34440         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
34441         * m4/jm-winsz1.m4: Likewise.
34442
34443         * m4/const.m4: Remove file, since the fix made it into the experimental
34444         version of autoconf.
34445         * m4/mktime.m4: Likewise.
34446
34447         * m4/check-type.m4: Remove file, now that the latest version of
34448         AC_CHECK_TYPE takes a third arg to specify additional #includes.
34449
34450         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
34451         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
34452         AC_CHECK_TYPE.
34453
34454 1999-10-04  Jim Meyering  <meyering@ascend.com>
34455
34456         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
34457
34458 1999-09-22  Paul Eggert  <eggert@twinsun.com>
34459
34460         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
34461         2.95.1 bug with HP-UX 10.20.
34462
34463 1999-09-17  Jim Meyering  <meyering@ascend.com>
34464
34465         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
34466         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
34467         due to missing strdup (against sh-utils-2.0).
34468
34469 1999-08-29  Jim Meyering  <meyering@ascend.com>
34470
34471         * m4/jm-macros.m4: Require jm_BISON.
34472         * m4/bison.m4: New file.
34473
34474 1999-08-17  Paul Eggert  <eggert@twinsun.com>
34475
34476         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
34477         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
34478
34479 1999-08-05  Jim Meyering  <meyering@ascend.com>
34480
34481         * m4/getline.m4: Rename test file from conftestdata to conftest.data
34482         to avoid conflicts with `conftest' on 8+3 filesystems.
34483         Suggestion from Eli Zaretskii.
34484
34485 1999-08-04  Jim Meyering  <meyering@ascend.com>
34486
34487         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
34488         fileutils and sh-utils (textutils's getline test was inadequate).
34489         (AM_FUNC_GETLINE): Run this test.
34490         (AC_CHECK_FUNCS): Check for getdelim.
34491         Reported by Bob Proulx.
34492
34493 1999-08-02  Jim Meyering  <meyering@ascend.com>
34494
34495         * m4/jm-macros.m4: Add a comment.
34496
34497 1999-08-01  Paul Eggert  <eggert@twinsun.com>
34498
34499         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
34500         <inttypes.h> defines strtoumax as a macro (and not as a
34501         function).
34502
34503 1999-08-01  Paul Eggert  <eggert@twinsun.com>
34504
34505         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
34506         that we can shift, multiply and divide unsigned long long
34507         values; Ultrix cc can't do it.
34508
34509 1999-08-01  Paul Eggert  <eggert@twinsun.com>
34510
34511         * m4/mktime.m4: New file, which is a preview of what should appear
34512         in the next public autoconf release.
34513
34514 1999-08-01  Paul Eggert  <eggert@twinsun.com>
34515
34516         * m4/lfs.m4: Remove this file.
34517         * m4/largefile.m4: New file.  It contains the old contents of
34518         lfs.m4, except that all names with prefix AC_LFS have been
34519         changed to use the prefix AC_SYS_LARGEFILE instead, to be
34520         compatible with future autoconf versions.  Also, some minor m4
34521         quoting problems have been fixed.
34522
34523 1999-08-01  Paul Eggert  <eggert@twinsun.com>
34524
34525         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
34526         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
34527         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
34528         and simplify the shell code.
34529
34530 1999-08-01  Jim Meyering  <meyering@ascend.com>
34531
34532         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
34533         m4.
34534
34535 1999-07-20  Jim Meyering  <meyering@ascend.com>
34536
34537         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
34538
34539 1999-07-15  Jim Meyering  <meyering@ascend.com>
34540
34541         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
34542
34543 1999-05-22  Jim Meyering  <meyering@ascend.com>
34544
34545         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
34546
34547 1999-05-20  Jim Meyering  <meyering@ascend.com>
34548
34549         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
34550         Add a colon after each `then' in case $4 is empty.
34551
34552 1999-05-16  Jim Meyering  <meyering@ascend.com>
34553
34554         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
34555
34556 1999-05-10  Jim Meyering  <meyering@ascend.com>
34557
34558         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
34559
34560         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
34561         AC_FUNC_MKTIME.
34562
34563 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
34564
34565         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
34566
34567 1999-05-04  Paul Eggert  <eggert@twinsun.com>
34568
34569         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
34570         not CPPFLAGS, so that linking works correctly in IRIX.
34571
34572 1999-04-30  Paul Eggert  <eggert@twinsun.com>
34573
34574         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
34575
34576 1999-04-20  Paul Eggert  <eggert@twinsun.com>
34577
34578         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
34579         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
34580         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
34581         jm_AC_TYPE_UNSIGNED_LONG_LONG.
34582         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
34583
34584         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
34585
34586 1999-04-20  Jim Meyering  <meyering@ascend.com>
34587
34588         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
34589         AC_REPLACE xstroull if necessary.  From Paul Eggert.
34590         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
34591
34592 1999-04-18  Jim Meyering  <meyering@ascend.com>
34593
34594         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
34595         * m4/jm-macros.m4: Use it.
34596
34597 1999-04-06  Jim Meyering  <meyering@ascend.com>
34598
34599         * m4/strftime.m4: Remove test for %f.
34600
34601 1999-03-29  Jim Meyering  <meyering@ascend.com>
34602
34603         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
34604         superset of the AC_TYPE_* checks in the textutils, fileutils,
34605         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
34606         AC_TYPE_PID_T.
34607
34608 1999-03-28  Jim Meyering  <meyering@ascend.com>
34609
34610         * m4/jm-macros.m4: Define GNU_PACKAGE here.
34611         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
34612         replaced e.g., in the *.sh files of the sh-utils.
34613
34614 1999-03-20  Jim Meyering  <meyering@ascend.com>
34615
34616         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
34617         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
34618         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
34619
34620 1999-03-19  Jim Meyering  <meyering@ascend.com>
34621
34622         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
34623
34624 1999-03-12  Jim Meyering  <meyering@ascend.com>
34625
34626         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
34627
34628 1999-03-07  Jim Meyering  <meyering@ascend.com>
34629
34630         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
34631         declared.
34632
34633 1999-02-17  Jim Meyering  <meyering@ascend.com>
34634
34635         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
34636         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
34637
34638 1999-02-07  Jim Meyering  <meyering@ascend.com>
34639
34640         * m4/group-member.m4: New file -- extracted from sh-utils'
34641         configure.in.
34642
34643         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
34644         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
34645
34646 1999-02-06  Jim Meyering  <meyering@ascend.com>
34647
34648         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
34649         * m4/fnmatch.m4: Likewise.
34650         * m4/getgroups.m4: Likewise.
34651         * m4/lstat.m4: Likewise.
34652         * m4/malloc.m4: Likewise.
34653         * m4/putenv.m4: Likewise.
34654         * m4/realloc.m4: Likewise.
34655         * m4/regex.m4: Likewise.
34656         * m4/stat.m4: Likewise.
34657         * m4/strftime.m4: Likewise.
34658         Suggestion from Alain Magloire.
34659
34660         * m4/chown.m4: Use `.$ac_objext', not `.o'.
34661         * m4/fnmatch.m4: Likewise.
34662         * m4/getgroups.m4: Likewise.
34663         * m4/getline.m4: Likewise.
34664         * m4/lstat.m4: Likewise.
34665         * m4/malloc.m4: Likewise.
34666         * m4/memcmp.m4: Likewise.
34667         * m4/putenv.m4: Likewise.
34668         * m4/realloc.m4: Likewise.
34669         * m4/regex.m4: Likewise.
34670         * m4/stat.m4: Likewise.
34671         * m4/strftime.m4: Likewise.
34672         Suggestion from Alain Magloire.
34673
34674         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
34675         an argument.
34676
34677         * m4/regex.m4: Add a run-time Test for proper operation of
34678         re_compile_pattern.
34679
34680 1999-01-31  Jim Meyering  <meyering@ascend.com>
34681
34682         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
34683
34684 1999-01-30  Jim Meyering  <meyering@ascend.com>
34685
34686         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
34687
34688         * m4/jm-mktime.m4: Make this a wrapper around the official
34689         AM_FUNC_MKTIME rather than my private copy, now that the official one
34690         is up to date.
34691         * m4/mktime.m4: Remove file.
34692
34693         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
34694         * m4/uptime.m4: Likewise.
34695         * m4/uintmax_t.m4: Likewise.
34696
34697 1999-01-28  Jim Meyering  <meyering@ascend.com>
34698
34699         * m4/jm-macros.m4: Use jm_AFS.
34700         * m4/afs.m4: New file (from fileutils' configure.in).
34701
34702         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
34703         * m4/chown.m4: Likewise.
34704         * m4/d-ino.m4: Likewise.
34705         * m4/d-type.m4: Likewise.
34706         * m4/fnmatch.m4: Likewise.
34707         * m4/getgroups.m4: Likewise.
34708         * m4/gettext.m4: Likewise.
34709         * m4/jm-mktime.m4: Likewise.
34710         * m4/jm-winsz2.m4: Likewise.
34711         * m4/lcmessage.m4: Likewise.
34712         * m4/ls-mntd-fs.m4: Likewise.
34713         * m4/malloc.m4: Likewise.
34714         * m4/memcmp.m4: Likewise.
34715         * m4/putenv.m4: Likewise.
34716         * m4/realloc.m4: Likewise.
34717         * m4/st_mtim.m4: Likewise.
34718         * m4/strftime.m4: Likewise.
34719
34720 1999-01-16  Jim Meyering  <meyering@ascend.com>
34721
34722         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
34723         (ARGMATCH_DIE_DECL): Define.
34724
34725 1999-01-12  Jim Meyering  <meyering@ascend.com>
34726
34727         * m4/Makefile.am.in: Rewrite to avoid using fmt.
34728         Reported by Lars Hecking.
34729
34730 1999-01-10  Jim Meyering  <meyering@ascend.com>
34731
34732         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
34733         gross kludge.
34734         * m4/inttypes_h.m4: Likewise.
34735         * m4/lstat.m4: Likewise.
34736         * m4/malloc.m4: Likewise.
34737         * m4/readdir.m4: Likewise.
34738         * m4/realloc.m4: Likewise.
34739         * m4/st_dm_mode.m4: Likewise.
34740         * m4/stat.m4: Likewise.
34741         * m4/utimbuf.m4: Likewise.
34742         * m4/utimes.m4: Likewise.
34743
34744         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
34745         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
34746         comments in config.h.in are meaningful.
34747
34748         * m4/jm-macros.m4: Require autoconf-2.13 here.
34749
34750         * m4/regex.m4: By default, don't use the included regex.c on systems
34751         with glibc 2.  Suggestion from Uli Drepper.
34752
34753 1999-01-02  Jim Meyering  <meyering@ascend.com>
34754
34755         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
34756
34757 1998-12-18  Jim Meyering  <meyering@ascend.com>
34758
34759         * m4/Makefile.am.in (Makefile.am): Simplify rule.
34760         Based on a suggestion from Lars Hecking.
34761
34762 1998-11-16  Paul Eggert  <eggert@twinsun.com>
34763
34764         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
34765
34766 1998-11-16  Jim Meyering  <meyering@ascend.com>
34767
34768         * m4/lfs.m4: Double-quote the `uname...` expression.
34769
34770 1998-11-14  Jim Meyering  <meyering@ascend.com>
34771
34772         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
34773         * m4/stat.m4: Likewise.
34774
34775 1998-11-03  Jim Meyering  <meyering@ascend.com>
34776
34777         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
34778         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
34779
34780 1998-10-18  Jim Meyering  <meyering@ascend.com>
34781
34782         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
34783
34784 1998-10-17  Jim Meyering  <meyering@ascend.com>
34785
34786         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
34787         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
34788         calls for those previously hard-coded headers.  Instead, take a new
34789         parameter.
34790         (jm_CHECK_DECLARATIONS): Reflect interface change.
34791         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
34792         (jm_CHECK_DECL_LOCALTIME_R): New macro.
34793
34794         * m4/mktime.m4: Test for spring-forward gap before long-running test.
34795
34796 1998-10-14  Jim Meyering  <meyering@ascend.com>
34797
34798         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
34799         instead of "TZ=America/Vancouver".  From Paul Eggert.
34800
34801 1998-10-11  Jim Meyering  <meyering@ascend.com>
34802
34803         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
34804         This adds a test for a recently added compatibility fix for mktime.c.
34805         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
34806
34807 1998-09-27  Jim Meyering  <meyering@ascend.com>
34808
34809         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
34810
34811         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
34812         ../configure.in, including a change from Gordon Matzigkeit to allow
34813         cross-compiling for the Hurd.
34814
34815         * m4/glibc.m4: New file/macro to test for the GNU C Library
34816         versions 1 and 2.  From Gordon Matzigkeit.
34817         Indent.
34818
34819 1998-09-21  Jim Meyering  <meyering@ascend.com>
34820
34821         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
34822
34823 1998-08-18  Paul Eggert  <eggert@twinsun.com>
34824
34825         Port nanosecond-resolution times to UnixWare 2.1.2 and
34826         pedantic Solaris 2.6.
34827
34828         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
34829         AC_STRUCT_ST_MTIM.
34830         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
34831         Generate name of ns member, instead of just 1 or undef.
34832         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
34833
34834 1998-08-15  Jim Meyering  <meyering@ascend.com>
34835
34836         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
34837         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
34838         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
34839         instead of jm_TYPE_SSIZE_T.
34840
34841 1998-08-12  Jim Meyering  <meyering@ascend.com>
34842
34843         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
34844
34845 1998-08-02  Jim Meyering  <meyering@ascend.com>
34846
34847         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
34848         in acconfig.h manually.
34849
34850 1998-07-31  Paul Eggert  <eggert@twinsun.com>
34851
34852         * m4/st_mtim.m4: New file.
34853
34854 1998-07-28  Jim Meyering  <meyering@ascend.com>
34855
34856         * m4/utimes.m4: Undef stat.
34857
34858 1998-07-25  Jim Meyering  <meyering@ascend.com>
34859
34860         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
34861         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
34862
34863 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
34864
34865         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
34866         uid and gid actually remain unchanged.
34867
34868 1998-07-07  Jim Meyering  <meyering@ascend.com>
34869
34870         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
34871
34872 1998-07-04  Jim Meyering  <meyering@ascend.com>
34873
34874         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
34875         to prove that this macro can be used in packages without regex.c.
34876
34877 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
34878
34879         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
34880         is to be used.
34881
34882 1998-07-03  Jim Meyering  <meyering@ascend.com>
34883
34884         * m4/gettext.m4: Add -lintl if it's found to be necessary.
34885
34886         * m4/gettext.m4: New file -- from gettext-0.10.35.
34887         * m4/lcmessage.m4: Likewise.
34888         * m4/progtest.m4: Likewise.
34889
34890         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
34891         * m4/jm-macros.m4: Require the new macro.
34892
34893 1998-06-29  Jim Meyering  <meyering@ascend.com>
34894
34895         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
34896         for the definition of NGROUPS (used in a system header included
34897         by sys/mount.h).
34898
34899 1998-06-28  Jim Meyering  <meyering@ascend.com>
34900
34901         * m4/ls-mntd-fs.m4: New file.
34902         * m4/fstypename.m4: New file.
34903
34904         * m4/jm-macros.m4: Require the new macro.
34905         * m4/jm-glibc-io.m4: New file.
34906
34907 1998-05-19  Jim Meyering  <meyering@ascend.com>
34908
34909         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
34910         * m4/lchown.m4: New file.
34911
34912         * m4/Makefile.am.in: New file.
34913         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
34914
34915 1998-05-14  Jim Meyering  <meyering@ascend.com>
34916
34917         * m4/Makefile.am (EXTRA_DIST): Add them.
34918         * m4/jm-macros.m4: New file.
34919         * m4/utimbuf.m4: New file.
34920
34921 1998-05-12  Jim Meyering  <meyering@ascend.com>
34922
34923         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
34924
34925 1998-05-11  Jim Meyering  <meyering@ascend.com>
34926
34927         * m4/isc-posix.m4: New file.
34928
34929 1998-05-10  Jim Meyering  <meyering@ascend.com>
34930
34931         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
34932
34933 1998-05-09  Jim Meyering  <meyering@ascend.com>
34934
34935         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
34936         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
34937         with automake.
34938
34939         * m4/ssize_t.m4: New file.
34940         * m4/mktime.m4: Remove file -- the new automake has this now.
34941
34942 1998-04-26  Jim Meyering  <meyering@ascend.com>
34943
34944         * m4/assert.m4: New file.
34945         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
34946
34947 1998-04-05  Jim Meyering  <meyering@ascend.com>
34948
34949         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
34950         (jm_PREREQ): Use it here.
34951
34952 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
34953
34954         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
34955         in acconfig.h.
34956
34957 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
34958
34959         * m4/prereq.m4: New file.
34960         * m4/error.m4: New file.
34961         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
34962
34963 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
34964
34965         * m4/getline.m4: Don't set am_cv_func_working_getline before the
34966         cache-check for the same variable -- that defeated the purpose of
34967         the test; the test program was never run.  This was a problem only
34968         on systems with losing getline functions -- HP-UX 10.20 is one.
34969         Reported by Bjorn Helgaas.
34970
34971 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
34972
34973         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
34974
34975 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
34976
34977         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
34978
34979         * m4/const.m4: New file.  Use an initializer in this declaration
34980         typedef int charset[2]; const charset x;
34981         Reported by Bob Glickstein.
34982
34983 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
34984
34985         * m4/chown.m4: Fix reversed types on -1 args to chown.
34986         From Kaveh Ghazi.
34987
34988 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
34989
34990         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
34991         Add lseek and memchr.
34992
34993         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
34994         T.E.Dickey <dickey@clark.net> said that some older preprocessors
34995         have a 20-character limit on names.
34996
34997 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
34998
34999         * m4/inttypes_h.m4: New file.
35000         * m4/uintmax_t.m4: New file.
35001         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
35002
35003 Copyright (C) 1997-2007 Free Software Foundation, Inc.
35004 Copying and distribution of this file, with or without modification,
35005 are permitted provided the copyright notice and this notice are preserved.